diff options
author | eddyg <[email protected]> | 2007-09-11 06:02:07 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2007-09-11 06:02:07 +0000 |
commit | cf26ca5f77044ec3364edb446635c14b9c9daddc (patch) | |
tree | 9d72d3770415ea9fb0cde26a9f3ab52428fd029d /test | |
parent | 6866dd773f1cff829538c963e8b7ba85fe700be3 (diff) |
Added buffer management and changed fifo sizes. Changed job->subtitle_scan to job->indepth_scan, and fixed memory init bug in denoise.c.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@945 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test.c b/test/test.c index cddcadf8e..a5ddddf25 100644 --- a/test/test.c +++ b/test/test.c @@ -632,7 +632,7 @@ static int HandleEvents( hb_handle_t * h ) job->x264opts = NULL; - job->subtitle_scan = subtitle_scan; + job->indepth_scan = subtitle_scan; fprintf( stderr, "Subtitle Scan Enabled - enabling " "subtitles if found for foreign language segments\n"); job->select_subtitle = malloc(sizeof(hb_subtitle_t*)); @@ -659,7 +659,7 @@ static int HandleEvents( hb_handle_t * h ) job->pass = 1; - job->subtitle_scan = 0; + job->indepth_scan = 0; /* * If turbo options have been selected then append them @@ -702,7 +702,7 @@ static int HandleEvents( hb_handle_t * h ) * selected in the first pass (using the whacky select-subtitle * attribute of the job). */ - job->subtitle_scan = 0; + job->indepth_scan = 0; job->x264opts = x264opts2; @@ -715,7 +715,7 @@ static int HandleEvents( hb_handle_t * h ) * precludes encoding of any actual subtitles. */ - job->subtitle_scan = 0; + job->indepth_scan = 0; job->pass = 0; hb_add( h, job ); } |