summaryrefslogtreecommitdiffstats
path: root/libhb/work.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-05-17 09:27:34 -0600
committerJohn Stebbins <[email protected]>2016-05-17 09:27:34 -0600
commit987defc068526a7d926ad734b043ae76065ae373 (patch)
tree4e58eca0f0af08669437262bf18b1324a03e293a /libhb/work.c
parent94bf236dca4bf1ce41ad5c3cd719e6fe9922deb7 (diff)
libhb: remove unused subtitle fifo_sync
Diffstat (limited to 'libhb/work.c')
-rw-r--r--libhb/work.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libhb/work.c b/libhb/work.c
index e3e41cdb2..0d971f32f 100644
--- a/libhb/work.c
+++ b/libhb/work.c
@@ -1575,7 +1575,6 @@ static void do_job(hb_job_t *job)
// from a file.
subtitle->fifo_in = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
}
- subtitle->fifo_sync = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
subtitle->fifo_out = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
w->fifo_in = subtitle->fifo_in;
@@ -1782,7 +1781,6 @@ cleanup:
{
hb_fifo_close( &subtitle->fifo_in );
hb_fifo_close( &subtitle->fifo_raw );
- hb_fifo_close( &subtitle->fifo_sync );
hb_fifo_close( &subtitle->fifo_out );
}
}