diff options
author | John Stebbins <[email protected]> | 2016-05-18 09:51:50 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-05-18 09:51:50 -0600 |
commit | cbda99d1beb7372dba8cec961ad22fcec341aeb9 (patch) | |
tree | e926ee0300f9a703fe04f73539bccef899e94624 /libhb/work.c | |
parent | 93ecd810cda833416353f66c88c67e06df8a7129 (diff) |
work: make video decoder input fifo smaller
This prevents audio from getting so far ahead of video which improves
sync's ability to fix discontinuities
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 87ab19f83..2ac7326c0 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -1504,7 +1504,7 @@ static void do_job(hb_job_t *job) else #endif { - job->fifo_mpeg2 = hb_fifo_init( FIFO_LARGE, FIFO_LARGE_WAKE ); + job->fifo_mpeg2 = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE ); job->fifo_raw = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE ); if (!job->indepth_scan) { |