summaryrefslogtreecommitdiff
path: root/libavcodec/yuv4enc.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2013-10-04 13:33:20 +0000
committerClément Bœsch <clement@stupeflix.com>2013-10-04 13:33:20 +0000
commitb46f19100b08af54056abf6fb2351f32fb0d91bd (patch)
treef9ab188b2987e8db99d584e28b7d2021a8cc7efa /libavcodec/yuv4enc.c
parentee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff)
cosmetics: group remaining .name and .long_name.
See b2bed9325.
Diffstat (limited to 'libavcodec/yuv4enc.c')
-rw-r--r--libavcodec/yuv4enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/yuv4enc.c b/libavcodec/yuv4enc.c
index 6e2f9bc0db..8d3907bc7a 100644
--- a/libavcodec/yuv4enc.c
+++ b/libavcodec/yuv4enc.c
@@ -81,11 +81,11 @@ static av_cold int yuv4_encode_close(AVCodecContext *avctx)
AVCodec ff_yuv4_encoder = {
.name = "yuv4",
+ .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:2:0"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_YUV4,
.init = yuv4_encode_init,
.encode2 = yuv4_encode_frame,
.close = yuv4_encode_close,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
- .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:2:0"),
};