Browse Source

error_concealment: Check that the picture is not in a half setup state.

Fixes state becoming inconsistent
Fixes a null pointer dereference

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Michael Niedermayer 12 years ago
parent
commit
23318a5735
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/error_resilience.c

+ 6
- 0
libavcodec/error_resilience.c View File

@@ -924,6 +924,12 @@ void ff_er_frame_end(MpegEncContext *s)
return;
};

if ( s->picture_structure == PICT_FRAME
&& s->current_picture.f.linesize[0] != s->current_picture_ptr->f.linesize[0]) {
av_log(s->avctx, AV_LOG_ERROR, "Error concealment not possible, frame not fully initialized\n");
return;
}

if (s->current_picture.f.motion_val[0] == NULL) {
av_log(s->avctx, AV_LOG_ERROR, "Warning MVs not available\n");



Loading…
Cancel
Save