diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-17 22:28:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:13 +0100 |
commit | e7226984ac13aacb84eae77a372df8ff7685848f (patch) | |
tree | 57ef86e9247fbf9abc8ffea1c830f75df509014b /libavcodec/h264_cavlc.c | |
parent | 30da98adbda6de1f55188f9058a3a5c715049633 (diff) | |
download | ffmpeg-e7226984ac13aacb84eae77a372df8ff7685848f.tar.gz |
h264: move [{top,left}_]cbp into the per-slice context
Diffstat (limited to 'libavcodec/h264_cavlc.c')
-rw-r--r-- | libavcodec/h264_cavlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 5b9939ece4..b16b6b66c2 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -1075,7 +1075,7 @@ decode_intra_mb: if(dct8x8_allowed && (cbp&15) && !IS_INTRA(mb_type)){ mb_type |= MB_TYPE_8x8DCT*get_bits1(&h->gb); } - h->cbp= + sl->cbp= h->cbp_table[mb_xy]= cbp; h->cur_pic.mb_type[mb_xy] = mb_type; |