diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-24 11:47:15 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-24 11:47:39 +0100 |
commit | a5a6621616aac55b8284002af4fef35b66e2b2d1 (patch) | |
tree | e162517aeeef766d788a645d362e089221681234 /libavcodec/mathops.h | |
parent | 2e67a99fbc6b99315925de40fc6fa7161576be10 (diff) | |
parent | f4d581cda3897f66c1dda7586b93f86a591dbbef (diff) | |
download | ffmpeg-a5a6621616aac55b8284002af4fef35b66e2b2d1.tar.gz |
Merge commit 'f4d581cda3897f66c1dda7586b93f86a591dbbef'
* commit 'f4d581cda3897f66c1dda7586b93f86a591dbbef':
lavc: Deduplicate zigzag_scan table
Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/mathops.h')
-rw-r--r-- | libavcodec/mathops.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 4988f1d3df..5168dc2ce0 100644 --- a/libavcodec/mathops.h +++ b/libavcodec/mathops.h @@ -33,6 +33,7 @@ extern const uint32_t ff_inverse[257]; extern const uint8_t ff_sqrt_tab[256]; extern const uint8_t ff_crop_tab[256 + 2 * MAX_NEG_CROP]; extern const uint8_t ff_zigzag_direct[64]; +extern const uint8_t ff_zigzag_scan[16+1]; #if ARCH_ARM # include "arm/mathops.h" |