diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-03-23 10:26:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-28 09:56:09 +0200 |
commit | ad9d3384de08f02967d6eb11196ee8c78e8b2dba (patch) | |
tree | eb231b9edaba6d6811df63bea204b61600920f5c /libavcodec/h264data.h | |
parent | 549fc77273636d0d02175362af5dcd60c79f7633 (diff) | |
download | ffmpeg-ad9d3384de08f02967d6eb11196ee8c78e8b2dba.tar.gz |
svq3: move the dequant buffer to SVQ3Context
Remove now unnecesary call to ff_h264_alloc_tables()
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index bb3fb6a7c9..ca9b43dde8 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -48,4 +48,10 @@ extern const PMbInfo ff_h264_p_sub_mb_type_info[4]; extern const PMbInfo ff_h264_b_mb_type_info[23]; extern const PMbInfo ff_h264_b_sub_mb_type_info[13]; +extern const uint8_t ff_h264_dequant4_coeff_init[6][3]; +extern const uint8_t ff_h264_dequant8_coeff_init_scan[16]; +extern const uint8_t ff_h264_dequant8_coeff_init[6][6]; +extern const uint8_t ff_h264_quant_rem6[QP_MAX_NUM + 1]; +extern const uint8_t ff_h264_quant_div6[QP_MAX_NUM + 1]; + #endif /* AVCODEC_H264DATA_H */ |