diff options
author | Clément Bœsch <u@pkh.me> | 2016-06-19 12:38:28 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-06-19 12:38:28 +0200 |
commit | 34ec084b84817ca0b00544ca8e1029e6073c1e51 (patch) | |
tree | 7adc32b90719b0a4af2c2fcf42f895f1d305f7dd /libavcodec/h264.h | |
parent | 48ea5433c813835907f053d38673f7112cd9c4a6 (diff) | |
download | ffmpeg-34ec084b84817ca0b00544ca8e1029e6073c1e51.tar.gz |
lavc/h264: move history parsing variable to H264ParseContext
This makes h264_find_frame_end() not depend on H264Context anymore.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 1dd4bc1166..bd4b865fe0 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -684,10 +684,6 @@ typedef struct H264Context { int cur_bit_depth_luma; int16_t slice_row[MAX_SLICES]; ///< to detect when MAX_SLICES is too low - uint8_t parse_history[6]; - int parse_history_count; - int parse_last_mb; - int enable_er; H264SEIContext sei; |