summaryrefslogtreecommitdiffstats
path: root/libhb/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/sync.c')
-rw-r--r--libhb/sync.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/libhb/sync.c b/libhb/sync.c
index 09ef0d9a2..524ca4d1b 100644
--- a/libhb/sync.c
+++ b/libhb/sync.c
@@ -111,10 +111,13 @@ int syncInit( hb_work_object_t * w, hb_job_t * job )
pv->busy |= 1;
/* Initialize libsamplerate for every audio track we have */
- for( i = 0; i < hb_list_count( title->list_audio ); i++ )
+ if ( ! job->indepth_scan )
{
- pv->busy |= ( 1 << (i + 1) );
- InitAudio( w, i );
+ for( i = 0; i < hb_list_count( title->list_audio ); i++ )
+ {
+ pv->busy |= ( 1 << (i + 1) );
+ InitAudio( w, i );
+ }
}
/* Get subtitle info, if any */