aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/textdec.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/textdec.c
parentee77140afab7c398651ccf1efad28b5fd7b2bb64 (diff)
downloadandroid_external_ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.gz
android_external_ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.tar.bz2
android_external_ffmpeg-b46f19100b08af54056abf6fb2351f32fb0d91bd.zip
cosmetics: group remaining .name and .long_name.
See b2bed9325.
Diffstat (limited to 'libavcodec/textdec.c')
-rw-r--r--libavcodec/textdec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/textdec.c b/libavcodec/textdec.c
index f3e6117aeb..a8f9e40652 100644
--- a/libavcodec/textdec.c
+++ b/libavcodec/textdec.c
@@ -118,8 +118,8 @@ DECLARE_CLASS(text);
AVCodec ff_text_decoder = {
.name = "text",
- .priv_data_size = sizeof(TextContext),
.long_name = NULL_IF_CONFIG_SMALL("Raw text subtitle"),
+ .priv_data_size = sizeof(TextContext),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_TEXT,
.decode = text_decode_frame,
@@ -143,8 +143,8 @@ DECLARE_CLASS(vplayer);
AVCodec ff_vplayer_decoder = {
.name = "vplayer",
- .priv_data_size = sizeof(TextContext),
.long_name = NULL_IF_CONFIG_SMALL("VPlayer subtitle"),
+ .priv_data_size = sizeof(TextContext),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_VPLAYER,
.decode = text_decode_frame,
@@ -159,8 +159,8 @@ DECLARE_CLASS(pjs);
AVCodec ff_pjs_decoder = {
.name = "pjs",
- .priv_data_size = sizeof(TextContext),
.long_name = NULL_IF_CONFIG_SMALL("PJS subtitle"),
+ .priv_data_size = sizeof(TextContext),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_PJS,
.decode = text_decode_frame,
@@ -175,8 +175,8 @@ DECLARE_CLASS(subviewer1);
AVCodec ff_subviewer1_decoder = {
.name = "subviewer1",
- .priv_data_size = sizeof(TextContext),
.long_name = NULL_IF_CONFIG_SMALL("SubViewer1 subtitle"),
+ .priv_data_size = sizeof(TextContext),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_SUBVIEWER1,
.decode = text_decode_frame,