diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-11-16 01:12:40 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-12-13 21:02:42 +0100 |
commit | 072be3e8969f24113d599444be4d6a0ed04a6602 (patch) | |
tree | 13b718e04f588a0c81497770abdd7f3cdc8a85ba /libavcodec/h264.h | |
parent | 0ee440fe38e2dc355aeb88e72209747c38aab593 (diff) | |
download | ffmpeg-072be3e8969f24113d599444be4d6a0ed04a6602.tar.gz |
h264: set parameters from SPS whenever it changes
Fixes a crash in the fuzzed sample sample_varPAR.avi_s26638 with
alternating bit depths.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index b8ded57fdc..17f63c4b5b 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -203,6 +203,7 @@ typedef struct SPS { int bit_depth_chroma; ///< bit_depth_chroma_minus8 + 8 int residual_color_transform_flag; ///< residual_colour_transform_flag int constraint_set_flags; ///< constraint_set[0-3]_flag + int new; ///< flag to keep track if the decoder context needs re-init due to changed SPS } SPS; /** @@ -329,6 +330,7 @@ typedef struct H264Context { int emu_edge_width; int emu_edge_height; + unsigned current_sps_id; ///< id of the current SPS SPS sps; ///< current sps /** |