diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-20 17:31:33 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-22 02:44:36 +0100 |
commit | 34bb0575c164dcbe945add0f314d1c1889f9d23e (patch) | |
tree | da57fd8f76a1dc009bcff1357d773992f268c449 /libavcodec/dsputil.h | |
parent | 713f490467e0d4b64e4d2e8f5ee98034235d2010 (diff) | |
download | ffmpeg-34bb0575c164dcbe945add0f314d1c1889f9d23e.tar.gz |
dsputil: make {add/put/put_signed}_pixels_clamped() non-static.
(cherry picked from commit 484a337cd7cd8bb180c4a1bd3321881f1c874a92)
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index f97b2b5fef..3e55d1338d 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -198,6 +198,10 @@ void ff_emulated_edge_mc(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h); +void ff_add_pixels_clamped_c(const DCTELEM *block, uint8_t *dest, int linesize); +void ff_put_pixels_clamped_c(const DCTELEM *block, uint8_t *dest, int linesize); +void ff_put_signed_pixels_clamped_c(const DCTELEM *block, uint8_t *dest, int linesize); + /** * DSPContext. */ |