aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-12 19:40:29 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-12 19:40:29 +0200
commit5347de881bf165762ae108a25bd2a87b29dc70ea (patch)
tree66aec22a08696beadde7476a57fceb8987624e65
parentad26aa3623898e63ceb0c009c1ff581895ef021c (diff)
downloadandroid_external_ffmpeg-5347de881bf165762ae108a25bd2a87b29dc70ea.tar.gz
android_external_ffmpeg-5347de881bf165762ae108a25bd2a87b29dc70ea.tar.bz2
android_external_ffmpeg-5347de881bf165762ae108a25bd2a87b29dc70ea.zip
libavcodec/xsubenc.c: Fix duplicate words
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/xsubenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c
index cb2a908cad..a644edfc9b 100644
--- a/libavcodec/xsubenc.c
+++ b/libavcodec/xsubenc.c
@@ -190,7 +190,7 @@ static int xsub_encode(AVCodecContext *avctx, unsigned char *buf,
h->rects[0]->w, h->rects[0]->h >> 1))
return -1;
- // Enforce total height to be be multiple of 2
+ // Enforce total height to be a multiple of 2
if (h->rects[0]->h & 1) {
put_xsub_rle(&pb, h->rects[0]->w, PADDING_COLOR);
avpriv_align_put_bits(&pb);