diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-06-12 20:41:18 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-06-12 20:47:38 +0000 |
commit | f06269dda5cab9d5e5dc591fbe3f752aae2b0a2b (patch) | |
tree | 3943a776162a0653758694486d3c4ee1368dbb36 /libavcodec/bintext.c | |
parent | a7fbc5d004c4ce52bfdf1d7d5063c4637bd19bd3 (diff) | |
download | ffmpeg-f06269dda5cab9d5e5dc591fbe3f752aae2b0a2b.tar.gz |
cosmetics: align more codecs declarations
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/bintext.c')
-rw-r--r-- | libavcodec/bintext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c index e4507e5b42..d0b6cc07da 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -225,7 +225,7 @@ AVCodec ff_bintext_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Binary text"), + .long_name = NULL_IF_CONFIG_SMALL("Binary text"), }; #endif #if CONFIG_XBIN_DECODER @@ -238,7 +238,7 @@ AVCodec ff_xbin_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), + .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), }; #endif #if CONFIG_IDF_DECODER @@ -251,6 +251,6 @@ AVCodec ff_idf_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), + .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), }; #endif |