diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-06-09 10:29:55 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-06-09 11:19:15 +0200 |
commit | 2e4a7bd553ec7c805b4a3b90733405a14ba69072 (patch) | |
tree | 0e78f9b75d78db597371289c7c68b287abd9df98 /libavcodec/h264.h | |
parent | 4f81f8dba735c212efae077c4fec8ad4fe53b352 (diff) | |
download | ffmpeg-2e4a7bd553ec7c805b4a3b90733405a14ba69072.tar.gz |
h264: drop unused H264Context.gb
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index bfbcc81b45..41ff1f95f3 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -31,9 +31,9 @@ #include "libavutil/buffer.h" #include "libavutil/intreadwrite.h" #include "libavutil/thread.h" + #include "cabac.h" #include "error_resilience.h" -#include "get_bits.h" #include "h264_parse.h" #include "h264_sei.h" #include "h2645_parse.h" @@ -445,7 +445,6 @@ typedef struct H264Context { H264DSPContext h264dsp; H264ChromaContext h264chroma; H264QpelContext h264qpel; - GetBitContext gb; H264Picture DPB[H264_MAX_PICTURE_COUNT]; H264Picture *cur_pic_ptr; |