diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-27 14:39:06 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:14 +0100 |
commit | f42485dbce614b3f63182845da43db690b427b7c (patch) | |
tree | 7e776eca6a3c8fe0239074481a0310d9eb591919 /libavcodec/h264.h | |
parent | 2ea00e35e4e0b58f7a306dd55d8f72a21c32c946 (diff) | |
download | ffmpeg-f42485dbce614b3f63182845da43db690b427b7c.tar.gz |
h264: use a separate GetBitContext for slice data
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 06a4ab07ea..8483c1597f 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -298,6 +298,7 @@ typedef struct H264Picture { typedef struct H264SliceContext { struct H264Context *h264; + GetBitContext gb; int slice_num; int slice_type; |