diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-08-03 23:27:50 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-08-03 23:31:45 +0200 |
commit | 933a6fd5a1a2dfe3da58b6e15b394bf05d32f2eb (patch) | |
tree | 8b0d8cc6b1fba33c4629b50b91e0dad0de45d83b /libavcodec/xsubenc.c | |
parent | 9a83adaf346bc5e38183427b2bd11084c11d1c8b (diff) | |
download | ffmpeg-933a6fd5a1a2dfe3da58b6e15b394bf05d32f2eb.tar.gz |
cosmetics: fix indentation/alignment in AVCodec declarations
Diffstat (limited to 'libavcodec/xsubenc.c')
-rw-r--r-- | libavcodec/xsubenc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c index 6e3fed0cd5..b33640dd2c 100644 --- a/libavcodec/xsubenc.c +++ b/libavcodec/xsubenc.c @@ -211,10 +211,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx) } AVCodec ff_xsub_encoder = { - .name = "xsub", - .type = AVMEDIA_TYPE_SUBTITLE, - .id = CODEC_ID_XSUB, - .init = xsub_encoder_init, - .encode = xsub_encode, + .name = "xsub", + .type = AVMEDIA_TYPE_SUBTITLE, + .id = CODEC_ID_XSUB, + .init = xsub_encoder_init, + .encode = xsub_encode, .long_name = NULL_IF_CONFIG_SMALL("DivX subtitles (XSUB)"), }; |