comparison h263dec.c @ 7831:8195c970d077 libavcodec

Rename error_resilience to error_recognition.
author michael
date Mon, 08 Sep 2008 18:18:49 +0000
parents 3f819263176e
children 0d108ec85620
comparison
equal deleted inserted replaced
7830:3da762190370 7831:8195c970d077
293 /* no markers in M$ crap */ 293 /* no markers in M$ crap */
294 if(s->msmpeg4_version && s->pict_type==FF_I_TYPE) 294 if(s->msmpeg4_version && s->pict_type==FF_I_TYPE)
295 max_extra+= 17; 295 max_extra+= 17;
296 296
297 /* buggy padding but the frame should still end approximately at the bitstream end */ 297 /* buggy padding but the frame should still end approximately at the bitstream end */
298 if((s->workaround_bugs&FF_BUG_NO_PADDING) && s->error_resilience>=3) 298 if((s->workaround_bugs&FF_BUG_NO_PADDING) && s->error_recognition>=3)
299 max_extra+= 48; 299 max_extra+= 48;
300 else if((s->workaround_bugs&FF_BUG_NO_PADDING)) 300 else if((s->workaround_bugs&FF_BUG_NO_PADDING))
301 max_extra+= 256*256*256*64; 301 max_extra+= 256*256*256*64;
302 302
303 if(left>max_extra){ 303 if(left>max_extra){