Browse Source

50l: Reenable error resilience for H264 (Patch by Dark Shikari).

Originally committed as revision 16434 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Jason Garrett-Glaser Carl Eugen Hoyos 17 years ago
parent
commit
26ef65daf3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.c

+ 1
- 1
libavcodec/h264.c View File

@@ -7646,7 +7646,7 @@ static int decode_frame(AVCodecContext *avctx,
* past end by one (callers fault) and resync_mb_y != 0 * past end by one (callers fault) and resync_mb_y != 0
* causes problems for the first MB line, too. * causes problems for the first MB line, too.
*/ */
if (!avctx->codec_id == CODEC_ID_H264_VDPAU && !FIELD_PICTURE)
if (avctx->codec_id != CODEC_ID_H264_VDPAU && !FIELD_PICTURE)
ff_er_frame_end(s); ff_er_frame_end(s);


MPV_frame_end(s); MPV_frame_end(s);


Loading…
Cancel
Save