summaryrefslogtreecommitdiffstats
path: root/libhb/common.h
diff options
context:
space:
mode:
authoreddyg <[email protected]>2009-05-04 04:56:19 +0000
committereddyg <[email protected]>2009-05-04 04:56:19 +0000
commitb2661d006f5b972e8599903b4909a8633ea5d5b3 (patch)
tree64b569cfd77a8c38495962ac340b6b8da30625d3 /libhb/common.h
parent5a1a257865a3156151ca16670f27c2d2f8a3ef56 (diff)
Soft Subs Part 2: Auto-detect CC during scan, add CC to subtitle list in title, if selected then CC's are extracted, MP4 Muxer will dump the subs to the log at the end of encoding. TODO: Translate PTS for buf->start to HB format, add MP4 subtitle track and subs during muxing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2375 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r--libhb/common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libhb/common.h b/libhb/common.h
index f19511027..6a2c8d51d 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -634,7 +634,7 @@ struct hb_work_object_s
hb_esconfig_t * config;
/* Pointer hb_audio_t so we have access to the info in the audio worker threads. */
- hb_audio_t *audio;
+ hb_audio_t * audio;
hb_work_private_t * private_data;
@@ -642,9 +642,10 @@ struct hb_work_object_s
volatile int * done;
int status;
int codec_param;
+ hb_title_t * title;
hb_work_object_t * next;
- int thread_sleep_interval;
+ int thread_sleep_interval;
#endif
};