aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-07 15:31:58 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-20 02:45:34 +0100
commit5af41713046efed635d202a2d9b641c626561d71 (patch)
tree953e7d955d330442fcbd8aff6d2613daef421756
parent3e36cba430f787170a382855d190e3e360cace9c (diff)
downloadffmpeg-5af41713046efed635d202a2d9b641c626561d71.tar.gz
mpeg12enc: Correctly mask dimensions
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit bcc4ef1a415c2ae646fdc4a8e22ebe0205f270e6) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/mpeg12enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c
index ff839c028d..9726a30ae5 100644
--- a/libavcodec/mpeg12enc.c
+++ b/libavcodec/mpeg12enc.c
@@ -214,8 +214,8 @@ static void mpeg1_encode_sequence_header(MpegEncContext *s)
/* mpeg1 header repeated every gop */
put_header(s, SEQ_START_CODE);
- put_sbits(&s->pb, 12, s->width );
- put_sbits(&s->pb, 12, s->height);
+ put_sbits(&s->pb, 12, s->width & 0xFFF);
+ put_sbits(&s->pb, 12, s->height & 0xFFF);
for(i=1; i<15; i++){
float error= aspect_ratio;