diff options
author | jstebbins <[email protected]> | 2010-06-08 23:47:07 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-06-08 23:47:07 +0000 |
commit | 18089d241a97abbfdaefb18a230defd351e2c0bd (patch) | |
tree | 64995c2ddf2d5541ca09c7656656a51f60e74649 | |
parent | 144923b3dc28cf4c484e5e0f6624cde0a4cd654f (diff) |
CLI: missed another conditional that forces burned subs in mp4
also, print "Foreign Audio Search" instead of "Render/Burn in" in the log
during an indepth_scan.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3373 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/work.c | 1 | ||||
-rw-r--r-- | test/test.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libhb/work.c b/libhb/work.c index c1891a683..c219dd8cd 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -322,6 +322,7 @@ void hb_display_job_info( hb_job_t * job ) subtitle->source == UTF8SUB ? "UTF-8" : subtitle->source == TX3GSUB ? "TX3G" : subtitle->source == SSASUB ? "SSA" : "Unknown", + job->indepth_scan ? "Foreign Audio Search" : subtitle->config.dest == RENDERSUB ? "Render/Burn in" : "Pass-Through", subtitle->config.force ? ", Forced Only" : "", subtitle->config.default_track ? ", Default" : "" ); diff --git a/test/test.c b/test/test.c index 27ff0b92f..fbfbb080b 100644 --- a/test/test.c +++ b/test/test.c @@ -1757,11 +1757,11 @@ static int HandleEvents( hb_handle_t * h ) } force = test_sub_list( subforce, "scan", pos ); - if ( !burn && mux == HB_MUX_MKV ) + if ( !burn ) { job->select_subtitle_config.dest = PASSTHRUSUB; } - else if ( burn ) + else { if ( sub_burned ) { |