diff options
author | jbrjake <[email protected]> | 2007-10-09 03:22:57 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-10-09 03:22:57 +0000 |
commit | 31d60a64bd4ad376b365e3209ffd977ef0ca54ba (patch) | |
tree | ecec90c2c0252d1bc990bd389b89692be0b12bfc /libhb/internal.h | |
parent | a0d8a7072dec077566fa1d5c67e6a6a99a09cc38 (diff) |
Increases the size of the integer holding MPEG-2 picture flags in the hb_buffer structure to 16 bits. It was 8-bit, and that couldn't hold 256, the REPEAT_FIRST_FIELD flag for soft-telecine.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1014 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 47138f2d2..55889fe6f 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -51,7 +51,7 @@ struct hb_buffer_s #define HB_FRAME_KEY 0x0F #define HB_FRAME_REF 0xF0 uint8_t frametype; - uint8_t flags; + uint16_t flags; /* Holds the output PTS from x264, for use by b-frame offsets in muxmp4.c */ int64_t renderOffset; |