summaryrefslogtreecommitdiffstats
path: root/libhb/encavcodecaudio.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2011-06-08 21:20:08 +0000
committerjstebbins <[email protected]>2011-06-08 21:20:08 +0000
commitc3c5052550c010732b5ca31acf563ea1e3349d88 (patch)
tree5bc011e81849ed9eb94e189de0a6312e99c3386d /libhb/encavcodecaudio.c
parent925b90ee9ee13afdc8efbf1bb3e46d564a67bb7e (diff)
libhb: Enable multi-threaded decode in ffmpeg
Enable both slice and frame based mutli-threaded decode in ffmpeg. Uses cpu_count/2 + 1 threads. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4034 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encavcodecaudio.c')
-rw-r--r--libhb/encavcodecaudio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encavcodecaudio.c b/libhb/encavcodecaudio.c
index 86ab66300..9cf9c9831 100644
--- a/libhb/encavcodecaudio.c
+++ b/libhb/encavcodecaudio.c
@@ -93,7 +93,7 @@ static int encavcodecaInit( hb_work_object_t * w, hb_job_t * job )
// Try to set format to float. Fallback to whatever is supported.
hb_ff_set_sample_fmt( context, codec );
- if( hb_avcodec_open( context, codec ) )
+ if( hb_avcodec_open( context, codec, 0 ) )
{
hb_log( "encavcodecaInit: avcodec_open failed" );
return 1;