summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/common.h1
-rw-r--r--libhb/work.c2
2 files changed, 0 insertions, 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 );
}
}