Commit 5964935c authored by Michael Niedermayer's avatar Michael Niedermayer

cbp must be >0 here or we are in troubble

Originally committed as revision 5420 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5d18eaad
......@@ -264,6 +264,7 @@ void ff_h261_encode_mb(MpegEncContext * s,
h->previous_mba = h->current_mba;
if(HAS_CBP(h->mtype)){
assert(cbp>0);
put_bits(&s->pb,h261_cbp_tab[cbp-1][1],h261_cbp_tab[cbp-1][0]);
}
for(i=0; i<6; i++) {
......
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