From: eddyg Date: Wed, 26 Sep 2007 21:49:47 +0000 (+0000) Subject: A line went missing from Controller.mm in the reorg of that file, you X-Git-Tag: 0.9.1~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ddad05461f924ba264ce333006699ca451605b1;p=handbrake A line went missing from Controller.mm in the reorg of that file, you must tell the first pass of a two pass to not participate in the subtitle auto select. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@991 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 4d18e9786..1ace6bef4 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1622,6 +1622,11 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It hb_subtitle_t **subtitle_tmp = job->select_subtitle; job->indepth_scan = 0; + /* + * Do not autoselect subtitles on the first pass of a two pass + */ + job->select_subtitle = NULL; + job->pass = 1; job->sequence_id++; // for job grouping hb_add( fHandle, job );