Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-03-23 12:26:54 +0300
committerAnton Khirnov <anton@khirnov.net>2016-03-28 10:56:09 +0300
commitad9d3384de08f02967d6eb11196ee8c78e8b2dba (patch)
treeeb231b9edaba6d6811df63bea204b61600920f5c /libavcodec/h264data.h
parent549fc77273636d0d02175362af5dcd60c79f7633 (diff)
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.h6
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 */