From a90c7aced6656b02b0265d83c4a3252e2a49a47d Mon Sep 17 00:00:00 2001 From: jbrjake Date: Tue, 9 Oct 2007 03:22:57 +0000 Subject: [PATCH] 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://localhost/HandBrake/trunk@1014 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhb/internal.h b/libhb/internal.h index 47138f2d..55889fe6 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; -- 2.11.0