diff options
author | eddyg <[email protected]> | 2008-09-29 22:00:39 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-09-29 22:00:39 +0000 |
commit | 4e8e851f555b7f81d894739f4731f95f99435968 (patch) | |
tree | b3a34734eb6609e0d1d5e063b6ae23aa1411cbb3 /libhb/stream.c | |
parent | 59ae524c2bfccb49200587ba924329aaf9523925 (diff) |
Update ffmpeg from version r14737 to r15462.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1788 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rwxr-xr-x | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 5294919a2..5c8f4f4f7 100755 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -2305,7 +2305,7 @@ static void ffmpeg_add_codec( hb_stream_t *stream, int stream_index ) // read the first packet. AVCodecContext *context = stream->ffmpeg_ic->streams[stream_index]->codec; context->workaround_bugs = FF_BUG_AUTODETECT; - context->error_resilience = 1; + context->error_recognition = 1; context->error_concealment = FF_EC_GUESS_MVS|FF_EC_DEBLOCK; AVCodec *codec = avcodec_find_decoder( context->codec_id ); avcodec_open( context, codec ); |