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:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-05-03 12:15:22 +0300
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-05-03 12:15:22 +0300
commit297e2768dab3b9fdc33b28e12dfd49207e0e2889 (patch)
treefc834b553beedb8dbeb3d8f81b21e0121d9ec0ce /libavcodec/h264data.h
parent80d14de52db8d11064344beff323a2619487ef0a (diff)
parentad9d3384de08f02967d6eb11196ee8c78e8b2dba (diff)
Merge commit 'ad9d3384de08f02967d6eb11196ee8c78e8b2dba'
* commit 'ad9d3384de08f02967d6eb11196ee8c78e8b2dba': svq3: move the dequant buffer to SVQ3Context Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r--libavcodec/h264data.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h
index fb67360ca1..a1d00e27bc 100644
--- a/libavcodec/h264data.h
+++ b/libavcodec/h264data.h
@@ -67,4 +67,11 @@ static const AVRational ff_h264_pixel_aspect[17] = {
{ 3, 2 },
{ 2, 1 },
};
+
+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 */