Commit 54171f49 authored by michael's avatar michael

Take the brain amputated spec litteral if the user asks for it (-strict 1)

That is, add 16 frames delay, cache trashing and av desync.
fixes at least the following reference bitstreams:
CABA3_Sony_C.jsv
CACQP3_Sony_D.jsv
CAMANL1_TOSHIBA_B.264
CANL3_Sony_C.jsv
CVBS3_Sony_C.jsv
CVMANL1_TOSHIBA_B.264


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14308 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5bc9bac3
...@@ -7836,6 +7836,12 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -7836,6 +7836,12 @@ static int decode_frame(AVCodecContext *avctx,
s->low_delay = 0; s->low_delay = 0;
} }
if( s->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT
&& !h->sps.bitstream_restriction_flag){
s->avctx->has_b_frames= MAX_DELAYED_PIC_COUNT;
s->low_delay= 0;
}
pics = 0; pics = 0;
while(h->delayed_pic[pics]) pics++; while(h->delayed_pic[pics]) pics++;
......
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