Browse Source

ffv1dec: keep track of errors in slice headers for EC

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
f5af3568f6
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavcodec/ffv1.c

+ 3
- 1
libavcodec/ffv1.c View File

@@ -1610,8 +1610,10 @@ static int decode_slice(AVCodecContext *c, void *arg){
if(f->version > 2){
if(init_slice_state(f, fs) < 0)
return AVERROR(ENOMEM);
if(decode_slice_header(f, fs) < 0)
if(decode_slice_header(f, fs) < 0) {
fs->slice_damaged = 1;
return AVERROR_INVALIDDATA;
}
}
if(init_slice_state(f, fs) < 0)
return AVERROR(ENOMEM);


Loading…
Cancel
Save