diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-05-03 10:15:22 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-05-03 10:15:22 +0100 |
commit | 297e2768dab3b9fdc33b28e12dfd49207e0e2889 (patch) | |
tree | fc834b553beedb8dbeb3d8f81b21e0121d9ec0ce /libavcodec/h264data.h | |
parent | 80d14de52db8d11064344beff323a2619487ef0a (diff) | |
parent | ad9d3384de08f02967d6eb11196ee8c78e8b2dba (diff) | |
download | ffmpeg-297e2768dab3b9fdc33b28e12dfd49207e0e2889.tar.gz |
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.h | 7 |
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 */ |