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:
authorMans Rullgard <mans@mansr.com>2011-02-02 01:38:15 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-13 02:52:51 +0300
commit4ae3ee4ae9d1607d772f9c8e6fe9b167e6761ae4 (patch)
treed81edb54dcbdfd65c15f04b73de6b6f2d4bf2e59 /libavcodec/vp8data.h
parent5da7494dc5b304bc3cb1114b9dabaf047e316e05 (diff)
VP8: ARM optimised decode_block_coeffs_internal
Approximately 5% faster on Cortex-A8. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit a7878c9f73c12cfa685bd8af8f3afcca85f56a8b)
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r--libavcodec/vp8data.h2
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,