summaryrefslogtreecommitdiffstats
path: root/libhb/sync.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-09-15 16:48:31 +0000
committerjstebbins <[email protected]>2010-09-15 16:48:31 +0000
commitaa377f1ebae6ebb070f2713bb34700eed422186e (patch)
treee2f3d21ae3ca6fc24d104d6e136335f61ca98f44 /libhb/sync.c
parent60f853bbbbee88da9cc9aa24b21705242b6157eb (diff)
remove the 8 audio limit. isn't needed anymore.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3531 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/sync.c')
-rw-r--r--libhb/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/sync.c b/libhb/sync.c
index 9c36ee30a..53b3193a3 100644
--- a/libhb/sync.c
+++ b/libhb/sync.c
@@ -174,7 +174,7 @@ hb_work_object_t * hb_sync_init( hb_job_t * job )
/* Initialize libsamplerate for every audio track we have */
if ( ! job->indepth_scan )
{
- for( i = 0; i < hb_list_count( title->list_audio ) && i < 8; i++ )
+ for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
InitAudio( job, pv->common, i );
}