diff options
author | John Stebbins <[email protected]> | 2016-05-18 09:31:05 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-05-18 09:31:05 -0600 |
commit | 7d290195368d5229066e2516d597928dd7315514 (patch) | |
tree | 191fc2f5520f109c42d55223effcdd0cfe5ba44c /libhb/sync.c | |
parent | 8964f5b518a16b4b19494b6f138f113f7f27bfb7 (diff) |
work: don't allocate fifos that are not needed for indepth_scan
Diffstat (limited to 'libhb/sync.c')
-rw-r--r-- | libhb/sync.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libhb/sync.c b/libhb/sync.c index 456fc2094..413011913 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -1581,13 +1581,7 @@ static int syncVideoInit( hb_work_object_t * w, hb_job_t * job) pv->stream->video.id = job->title->video_id; w->fifo_in = job->fifo_raw; - // sync performs direct output to fifos w->fifo_out = job->fifo_sync; - if (job->indepth_scan) - { - // When doing subtitle indepth scan, the pipeline ends at sync - w->fifo_out = NULL; - } if (job->pass_id == HB_PASS_ENCODE_2ND) { |