diff options
author | jstebbins <[email protected]> | 2009-05-19 22:27:11 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-05-19 22:27:11 +0000 |
commit | 0ac869507784e807357b06b61fbb4b69f4191278 (patch) | |
tree | a02e240d25553da68c349850db28472b7b16b3e9 /libhb/work.c | |
parent | 568bd4e88feaee724e71cc8cd5bd9e93dd549de0 (diff) |
mkv soft subtitle support
- new libmkv 0.6.4 with subtitle track support
- muxmkv supports vobsub and closed caption subtitles
- added subtitle format, source, and dest initialization to dvdnav
- moved subtitle_force flag into hb_subtitle_t struct as it needs to
be settable per subtitle
- gtk ui added subtitle tab which allows selection of multiple subtitles
- reorgainize subtitle sync code to prevent dropping of subtitles when
multiple subtitles are enabled
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2428 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libhb/work.c b/libhb/work.c index 7b270ca70..59dea5dfe 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -501,16 +501,16 @@ static void do_job( hb_job_t * job, int cpu_count ) * * select_subtitle implies that we did a scan. */ - if( !job->indepth_scan && job->subtitle_force && + if( !job->indepth_scan && subtitle->force && job->select_subtitle ) { if( subtitle->forced_hits == 0 ) { - job->subtitle_force = 0; + subtitle->force = 0; } } - if( (!job->indepth_scan || job->subtitle_force) && + if( (!job->indepth_scan || subtitle->force) && subtitle->source == VOBSUB ) { /* * Don't add threads for subtitles when we are scanning, unless @@ -519,6 +519,7 @@ static void do_job( hb_job_t * job, int cpu_count ) w = hb_get_work( WORK_DECVOBSUB ); w->fifo_in = subtitle->fifo_in; w->fifo_out = subtitle->fifo_raw; + w->subtitle = subtitle; hb_list_add( job->list_work, w ); } @@ -541,6 +542,7 @@ static void do_job( hb_job_t * job, int cpu_count ) w = hb_get_work( WORK_ENCVOBSUB ); w->fifo_in = subtitle->fifo_sync; w->fifo_out = subtitle->fifo_out; + w->subtitle = subtitle; hb_list_add( job->list_work, w ); } } |