diff options
author | jstebbins <[email protected]> | 2009-06-13 18:13:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-13 18:13:53 +0000 |
commit | 287e7975364684cf7d3fdbb4c10fbdb94e03b751 (patch) | |
tree | 005015145baec721417e668e4b91c0401150d125 /libhb/hb.h | |
parent | 4779df6821d2be09a9b02f28f6f4adedbc82560f (diff) |
dvdnav: oops. initialize d->chapter to 0 instead of first chapter
otherwise, we don't get the initial chapter marker event
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2528 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.h')
-rw-r--r-- | libhb/hb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/hb.h b/libhb/hb.h index 080d9795e..234d4b502 100644 --- a/libhb/hb.h +++ b/libhb/hb.h @@ -79,6 +79,8 @@ typedef struct hb_interjob_s int render_dropped; /* frames droped by telecine */ int vrate; /* initial assigned vrate */ int vrate_base; /* initial assigned vrate_base */ + + hb_subtitle_t *select_subtitle; /* foreign language scan subtitle */ } hb_interjob_t; hb_interjob_t * hb_interjob_get( hb_handle_t * ); |