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/paf.c | |
parent | ee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff) | |
download | ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.gz |
cosmetics: group remaining .name and .long_name.
See b2bed9325.
Diffstat (limited to 'libavcodec/paf.c')
-rw-r--r-- | libavcodec/paf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/paf.c b/libavcodec/paf.c index 300238e339..76c90c9f49 100644 --- a/libavcodec/paf.c +++ b/libavcodec/paf.c @@ -430,6 +430,7 @@ static int paf_aud_decode(AVCodecContext *avctx, void *data, AVCodec ff_paf_video_decoder = { .name = "paf_video", + .long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File Video"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_PAF_VIDEO, .priv_data_size = sizeof(PAFVideoDecContext), @@ -437,15 +438,14 @@ AVCodec ff_paf_video_decoder = { .close = paf_vid_close, .decode = paf_vid_decode, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File Video"), }; AVCodec ff_paf_audio_decoder = { .name = "paf_audio", + .long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File Audio"), .type = AVMEDIA_TYPE_AUDIO, .id = AV_CODEC_ID_PAF_AUDIO, .init = paf_aud_init, .decode = paf_aud_decode, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File Audio"), }; |