summaryrefslogtreecommitdiffstats
path: root/libhb/common.h
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-09-05 20:01:14 +0000
committerdynaflash <[email protected]>2007-09-05 20:01:14 +0000
commit5d4117bccd9ce796e102842270726eae9fcf07e5 (patch)
treeeaba13aa4509c81e30969d5ceeda0e19d8fbebad /libhb/common.h
parenta963935e4d220ec9153573cef8f9f1b12654f0c3 (diff)
MacGui: New Active Queue implementation courtesy of travistex
- Thanks travistex! - queue is now in a separate window - queue currently shows jobs grouped together as one encode, which is configurable - queue now shows currently encoding job, which is independently cancellable without losing the rest of the queue. - can start and pause encoding in the queue window - queue uses its own nib - progress status needs work - This has a way to go, but needed to get checked in as it changes the current xcode project structure. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@925 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r--libhb/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h
index 0fc36473d..12558871e 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -104,6 +104,11 @@ const char * hb_mixdown_get_short_name_from_mixdown( int amixdown );
*****************************************************************************/
struct hb_job_s
{
+#if JOB_GROUPS
+ /* ID assigned by UI so it can lump jobs together */
+ int sequence_id;
+#endif
+
/* Pointer to the title to be ripped */
hb_title_t * title;