From 94b58a7b733fac763a8b9c8d4a3f9348540d47aa Mon Sep 17 00:00:00 2001 From: jstebbins Date: Thu, 10 Mar 2011 23:34:08 +0000 Subject: 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 --- libhb/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libhb/stream.c') 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; -- cgit v1.2.3