Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-08-04 03:40:29 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-08-04 03:40:29 +0400
commit64160ef39216b2d40eb34c13421febe045ddcf8a (patch)
treef5d63c19adb037a18baf2689f503f165b9c39aaf /libavcodec/xsubenc.c
parent72b0c9f55f26049e22bf147ab120173bd1d54cd5 (diff)
parentfed6c90b68fa00ad399e0b6d51c1e41d0d3730a0 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: cosmetics: remove some stray comments from AVCodec declarations cosmetics: fix indentation/alignment in AVCodec declarations arm: Avoid using the movw instruction needlessly Move an int64_t down in MpegEncContext Conflicts: libavcodec/arm/ac3dsp_armv6.S Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/xsubenc.c')
-rw-r--r--libavcodec/xsubenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c
index 9a8f7ef1e1..447759b1fe 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)"),
};