diff options
author | eddyg <[email protected]> | 2007-09-26 21:49:47 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2007-09-26 21:49:47 +0000 |
commit | 4ddad05461f924ba264ce333006699ca451605b1 (patch) | |
tree | eec37c6500810e3e7e4fffb596f9304dccf54e7d | |
parent | 3443f7cc088d536a646f586d2c2103b362359b18 (diff) |
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
-rw-r--r-- | macosx/Controller.mm | 5 |
1 files changed, 5 insertions, 0 deletions
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 ); |