summaryrefslogtreecommitdiff
path: root/libavcodec/xfacedec.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/xfacedec.c
parentee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff)
downloadffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.gz
cosmetics: group remaining .name and .long_name.
See b2bed9325.
Diffstat (limited to 'libavcodec/xfacedec.c')
-rw-r--r--libavcodec/xfacedec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xfacedec.c b/libavcodec/xfacedec.c
index fbaabdb0c4..d045cb6ef4 100644
--- a/libavcodec/xfacedec.c
+++ b/libavcodec/xfacedec.c
@@ -178,11 +178,11 @@ static int xface_decode_frame(AVCodecContext *avctx,
AVCodec ff_xface_decoder = {
.name = "xface",
+ .long_name = NULL_IF_CONFIG_SMALL("X-face image"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_XFACE,
.priv_data_size = sizeof(XFaceContext),
.init = xface_decode_init,
.decode = xface_decode_frame,
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MONOWHITE, AV_PIX_FMT_NONE },
- .long_name = NULL_IF_CONFIG_SMALL("X-face image"),
};