summaryrefslogtreecommitdiff
path: root/libavcodec/dct.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-31 11:45:15 -0700
committerDiego Biurrun <diego@biurrun.de>2014-09-02 14:41:13 -0700
commit95c0cec03acec0a80cc1c7db48f3b2355d9e767b (patch)
treee1ad21afa12a7f9b90b9d14ca0102bc7ab5b5904 /libavcodec/dct.h
parent91d305790ea0f6fe0f54b48236da42181c39c18b (diff)
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.
Diffstat (limited to 'libavcodec/dct.h')
-rw-r--r--libavcodec/dct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dct.h b/libavcodec/dct.h
index 3fd4e27833..4a31f54fcb 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 */