diff options
author | Clément Bœsch <u@pkh.me> | 2013-10-04 13:33:20 +0000 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2013-10-04 13:33:20 +0000 |
commit | b46f19100b08af54056abf6fb2351f32fb0d91bd (patch) | |
tree | f9ab188b2987e8db99d584e28b7d2021a8cc7efa /libavcodec/bintext.c | |
parent | ee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff) | |
download | ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.gz |
cosmetics: group remaining .name and .long_name.
See b2bed9325.
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 f8059aa1af..97fceb12b8 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -220,6 +220,7 @@ static av_cold int decode_end(AVCodecContext *avctx) #if CONFIG_BINTEXT_DECODER AVCodec ff_bintext_decoder = { .name = "bintext", + .long_name = NULL_IF_CONFIG_SMALL("Binary text"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_BINTEXT, .priv_data_size = sizeof(XbinContext), @@ -227,12 +228,12 @@ AVCodec ff_bintext_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Binary text"), }; #endif #if CONFIG_XBIN_DECODER AVCodec ff_xbin_decoder = { .name = "xbin", + .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_XBIN, .priv_data_size = sizeof(XbinContext), @@ -240,12 +241,12 @@ AVCodec ff_xbin_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text"), }; #endif #if CONFIG_IDF_DECODER AVCodec ff_idf_decoder = { .name = "idf", + .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_IDF, .priv_data_size = sizeof(XbinContext), @@ -253,6 +254,5 @@ AVCodec ff_idf_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("iCEDraw text"), }; #endif |