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/mpeg4videodec.c | |
parent | ee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff) | |
download | ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.gz |
cosmetics: group remaining .name and .long_name.
See b2bed9325.
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r-- | libavcodec/mpeg4videodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index d00688a67b..dd97bd791b 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2390,6 +2390,7 @@ AVCodec ff_mpeg4_decoder = { #if CONFIG_MPEG4_VDPAU_DECODER AVCodec ff_mpeg4_vdpau_decoder = { .name = "mpeg4_vdpau", + .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 (VDPAU)"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_MPEG4, .priv_data_size = sizeof(MpegEncContext), @@ -2398,7 +2399,6 @@ AVCodec ff_mpeg4_vdpau_decoder = { .decode = ff_h263_decode_frame, .capabilities = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU, - .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 (VDPAU)"), .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_VDPAU_MPEG4, AV_PIX_FMT_NONE }, .priv_class = &mpeg4_vdpau_class, |