diff options
author | jstebbins <[email protected]> | 2011-03-10 23:34:08 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-10 23:34:08 +0000 |
commit | 94b58a7b733fac763a8b9c8d4a3f9348540d47aa (patch) | |
tree | 4ebac9f35abc34f0b984f0d8887ea631fe7260cc /libhb/stream.c | |
parent | 23518c8922f6d29f5604b8e91b350088eeb0a755 (diff) |
Use ffmpeg's lock manager for locking needed by ffmpeg
This lets ffmpeg tell us when it needs a lock instead of
us trying to guess which functions we need to wrap in a mutex.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3834 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rw-r--r-- | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 3d80a590b..65abcb421 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -2909,7 +2909,7 @@ static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title ) { return 0; } - if ( hb_av_find_stream_info( ic ) < 0 ) + if ( av_find_stream_info( ic ) < 0 ) goto fail; stream->ffmpeg_ic = ic; |