mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-13 16:40:27 +00:00
ffv1dec: detect errors in bytestream end mismatches for EC
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b0d674ec10
commit
ac9389a663
@ -1648,6 +1648,13 @@ static int decode_slice(AVCodecContext *c, void *arg){
|
||||
}else{
|
||||
decode_rgb_frame(fs, (uint32_t*)p->data[0] + ps*x + y*(p->linesize[0]/4), width, height, p->linesize[0]/4);
|
||||
}
|
||||
if(fs->ac && f->version > 2) {
|
||||
int v = fs->c.bytestream_end - fs->c.bytestream - 3 - 5*f->ec;
|
||||
if(v != -1 && v!= 0) {
|
||||
av_log(f->avctx, AV_LOG_ERROR, "bytestream end mismatching by %d\n", v);
|
||||
fs->slice_damaged = 1;
|
||||
}
|
||||
}
|
||||
|
||||
emms_c();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user