diff options
author | jstebbins <[email protected]> | 2010-06-08 20:48:59 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-06-08 20:48:59 +0000 |
commit | 144923b3dc28cf4c484e5e0f6624cde0a4cd654f (patch) | |
tree | 3a2fe4f4aeefc73288d7b145730b582d9fc2cc5a /test | |
parent | b9b461bf10fffde5a77dd930809f2c72f496abcf (diff) |
CLI: subtitle scan was still skipping subs if not burned in mp4
since we now support the Nero spec for vobsubs in mp4, this isn't necessary
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3372 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/test.c b/test/test.c index fb26df9d7..27ff0b92f 100644 --- a/test/test.c +++ b/test/test.c @@ -1769,14 +1769,9 @@ static int HandleEvents( hb_handle_t * h ) } sub_burned = 1; } - if ( !( !burn && mux == HB_MUX_MP4 ) ) - { - job->select_subtitle_config.force = force; - job->select_subtitle_config.default_track = def; - subtitle_scan = 1; - } else { - fprintf( stderr, "Warning: Subtitle Scan for MP4 requires the '--subtitle-burn' option to be selected\n"); - } + job->select_subtitle_config.force = force; + job->select_subtitle_config.default_track = def; + subtitle_scan = 1; } else { |