From 987defc068526a7d926ad734b043ae76065ae373 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 17 May 2016 09:27:34 -0600 Subject: [PATCH] libhb: remove unused subtitle fifo_sync --- libhb/common.h | 1 - libhb/work.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/libhb/common.h b/libhb/common.h index 834b48518..1b4cbc3fe 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -883,7 +883,6 @@ struct hb_subtitle_s hb_fifo_t * fifo_in; /* SPU ES */ hb_fifo_t * fifo_raw; /* Decoded SPU */ - hb_fifo_t * fifo_sync;/* Synced */ hb_fifo_t * fifo_out; /* Correct Timestamps, ready to be muxed */ hb_mux_data_t * mux_data; #endif 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 ); } } -- 2.40.0