diff options
author | jstebbins <[email protected]> | 2008-12-12 18:54:36 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-12-12 18:54:36 +0000 |
commit | 47b9304671876792e9a2364e867c9601d0432076 (patch) | |
tree | 7db84f17a253b6767552495b92ed6341000af62c /libhb/stream.c | |
parent | cec83b5d831f2c988e5544ddc16602bda903a225 (diff) |
fix a threading issue with avcodec_open/close
these functions can not be called from 2 threads simultaneosly.
made a wrapper function that holds a lock while making the call
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2023 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 abe827ede..2fd308c74 100755 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -2460,7 +2460,7 @@ static void ffmpeg_add_codec( hb_stream_t *stream, int stream_index ) 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 ); + hb_avcodec_open( context, codec ); } // The ffmpeg stream reader / parser shares a lot of state with the |