diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-24 11:16:53 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-25 15:23:56 +0100 |
commit | f4d581cda3897f66c1dda7586b93f86a591dbbef (patch) | |
tree | 2b0ffc804d914fe27b7324f7e21487476df13bda /libavcodec/h264data.h | |
parent | 02cd8bb9cb4381c50f42a9284098cc8a33d397db (diff) | |
download | ffmpeg-f4d581cda3897f66c1dda7586b93f86a591dbbef.tar.gz |
lavc: Deduplicate zigzag_scan table
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index 6b40b39f0a..1196987cea 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -51,13 +51,6 @@ static const uint8_t golomb_to_inter_cbp[48] = { 17, 18, 20, 24, 19, 21, 26, 28, 23, 27, 29, 30, 22, 25, 38, 41 }; -static const uint8_t zigzag_scan[16] = { - 0 + 0 * 4, 1 + 0 * 4, 0 + 1 * 4, 0 + 2 * 4, - 1 + 1 * 4, 2 + 0 * 4, 3 + 0 * 4, 2 + 1 * 4, - 1 + 2 * 4, 0 + 3 * 4, 1 + 3 * 4, 2 + 2 * 4, - 3 + 1 * 4, 3 + 2 * 4, 2 + 3 * 4, 3 + 3 * 4, -}; - static const uint8_t chroma_dc_scan[4] = { (0 + 0 * 2) * 16, (1 + 0 * 2) * 16, (0 + 1 * 2) * 16, (1 + 1 * 2) * 16, |