diff options
author | eddyg <[email protected]> | 2009-05-06 04:16:40 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2009-05-06 04:16:40 +0000 |
commit | f79870292926127a3be70c072eca37f653957fc5 (patch) | |
tree | a3b7e466a846b1946b3c8fc0989e81b8f8939cba /libhb/common.h | |
parent | 6add7d899f49abbe2b6cc0702296941e948f5ef5 (diff) |
VOBSUB encoder skeleton for use with mkv VOBSUB pass-through
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2389 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 81877d6d2..dfa1dcabd 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -456,6 +456,7 @@ struct hb_subtitle_s /* Internal data */ 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 */ #endif }; @@ -653,6 +654,7 @@ struct hb_work_object_s extern hb_work_object_t hb_sync; extern hb_work_object_t hb_decmpeg2; extern hb_work_object_t hb_decsub; +extern hb_work_object_t hb_encsub; extern hb_work_object_t hb_render; extern hb_work_object_t hb_encavcodec; extern hb_work_object_t hb_encxvid; |