diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-01 22:38:15 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-11 15:48:11 +0000 |
commit | a7878c9f73c12cfa685bd8af8f3afcca85f56a8b (patch) | |
tree | 8d78fafcffa217021277ffe000f35edaa9e9adae /libavcodec/vp8data.h | |
parent | 7da48fd0111adf504cfcfc5ebda7fd0681968041 (diff) | |
download | ffmpeg-a7878c9f73c12cfa685bd8af8f3afcca85f56a8b.tar.gz |
VP8: ARM optimised decode_block_coeffs_internal
Approximately 5% faster on Cortex-A8.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r-- | libavcodec/vp8data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h index 5326e21c0c..472b37aa47 100644 --- a/libavcodec/vp8data.h +++ b/libavcodec/vp8data.h @@ -313,7 +313,7 @@ static const uint8_t vp8_dct_cat5_prob[] = { 180, 157, 141, 134, 130, 0 }; static const uint8_t vp8_dct_cat6_prob[] = { 254, 254, 243, 230, 196, 177, 153, 140, 133, 130, 129, 0 }; // only used for cat3 and above; cat 1 and 2 are referenced directly -static const uint8_t * const vp8_dct_cat_prob[] = +const uint8_t * const ff_vp8_dct_cat_prob[] = { vp8_dct_cat3_prob, vp8_dct_cat4_prob, |