summaryrefslogtreecommitdiffstats
path: root/libhb/common.h
diff options
context:
space:
mode:
authoreddyg <[email protected]>2009-05-07 04:37:47 +0000
committereddyg <[email protected]>2009-05-07 04:37:47 +0000
commit5a583fb1d543fd6336dcadd8f653654debba2f74 (patch)
tree7d0697232f4c713f741b21546cca1f2465b36193 /libhb/common.h
parent080a7aef7af9107730d6d0ca9ffcfca6abe32df8 (diff)
Change CC608 decoder to be its own thread
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2396 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r--libhb/common.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libhb/common.h b/libhb/common.h
index f8921f654..516318907 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -443,7 +443,7 @@ struct hb_subtitle_s
int track;
int id;
enum subtype { PICTURESUB, TEXTSUB } format;
- enum subsource { VOBSUB, SRTSUB, CCSUB } source;
+ enum subsource { VOBSUB, SRTSUB, CC608SUB, CC708SUB } source;
enum subdest { RENDERSUB, PASSTHRUSUB } dest;
char lang[1024];
char iso639_2[4];
@@ -654,8 +654,9 @@ 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_decvobsub;
+extern hb_work_object_t hb_encvobsub;
+extern hb_work_object_t hb_deccc608;
extern hb_work_object_t hb_render;
extern hb_work_object_t hb_encavcodec;
extern hb_work_object_t hb_encxvid;