From 95c0cec03acec0a80cc1c7db48f3b2355d9e767b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 31 Aug 2014 11:45:15 -0700 Subject: idctdsp: Add global function pointers for {add|put}_pixels_clamped functions These function pointers already existed in the ARM code. Adding them globally allows calls to the function pointers to access arch-optimized versions of the functions transparently. --- libavcodec/dct.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/dct.h') diff --git a/libavcodec/dct.h b/libavcodec/dct.h index 3fd4e27..4a31f54 100644 --- a/libavcodec/dct.h +++ b/libavcodec/dct.h @@ -59,5 +59,7 @@ void ff_fdct248_islow_8(int16_t *data); void ff_fdct248_islow_10(int16_t *data); void ff_j_rev_dct(int16_t *data); +void ff_jref_idct_put(uint8_t *dest, int line_size, int16_t *block); +void ff_jref_idct_add(uint8_t *dest, int line_size, int16_t *block); #endif /* AVCODEC_DCT_H */ -- cgit v1.1