diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-18 16:42:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-09-17 15:48:20 +0200 |
commit | 34ebbbfeecd6f535c75dfddf2d21d198e1613300 (patch) | |
tree | 05e5f51b6bc97b13883b0d44615bf80be4899cc3 | |
parent | 466b39efaf09adecc7314eaba5904b0ee8442528 (diff) | |
download | ffmpeg-34ebbbfeecd6f535c75dfddf2d21d198e1613300.tar.gz |
xsubenc: reindent
-rw-r--r-- | libavcodec/xsubenc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c index 6f359a1d6e..816e651a67 100644 --- a/libavcodec/xsubenc.c +++ b/libavcodec/xsubenc.c @@ -210,10 +210,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx) } AVCodec ff_xsub_encoder = { - .name = "xsub", - .type = AVMEDIA_TYPE_SUBTITLE, - .id = AV_CODEC_ID_XSUB, - .init = xsub_encoder_init, - .encode_sub= xsub_encode, - .long_name = NULL_IF_CONFIG_SMALL("DivX subtitles (XSUB)"), + .name = "xsub", + .type = AVMEDIA_TYPE_SUBTITLE, + .id = AV_CODEC_ID_XSUB, + .init = xsub_encoder_init, + .encode_sub = xsub_encode, + .long_name = NULL_IF_CONFIG_SMALL("DivX subtitles (XSUB)"), }; |