Commit e5021fff authored by Michael Niedermayer's avatar Michael Niedermayer

mpeg1 + trellis quant segfault fix

Originally committed as revision 2346 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8025405f
......@@ -789,7 +789,9 @@ void ff_mpeg1_encode_init(MpegEncContext *s)
s->max_qcoeff= 2047;
}
s->intra_ac_vlc_length=
s->inter_ac_vlc_length= uni_mpeg1_ac_vlc_len;
s->inter_ac_vlc_length=
s->intra_ac_vlc_last_length=
s->inter_ac_vlc_last_length= uni_mpeg1_ac_vlc_len;
}
static inline void encode_dc(MpegEncContext *s, int diff, int component)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment