diff options
author | eddyg <[email protected]> | 2007-10-08 23:33:32 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2007-10-08 23:33:32 +0000 |
commit | b3178968037a18c721a66e2669ae6f040a12196a (patch) | |
tree | 98e31e044e92fc6eff6aa7121778df45e7c53df6 /libhb/internal.h | |
parent | 803933145cbdd7681e3dcaa0124764657ecaea4f (diff) |
Don't drop subtitles when crossing PTS discontinuities by using buffer sequence numbers to determine where in the stream the buffer came from.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1011 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index d3bbb637d..47138f2d2 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -35,6 +35,8 @@ struct hb_buffer_s uint8_t * data; int cur; + int64_t sequence; + int id; int64_t start; int64_t stop; |