diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-20 17:31:33 -0500 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-21 10:23:44 -0500 |
commit | 484a337cd7cd8bb180c4a1bd3321881f1c874a92 (patch) | |
tree | 3672ae7507b2f912e3283a0063cabc6005aba976 /libavcodec/dsputil.h | |
parent | bbfd2e7ab4e2ae0b934657fe51afdbbbaead52b7 (diff) | |
download | ffmpeg-484a337cd7cd8bb180c4a1bd3321881f1c874a92.tar.gz |
dsputil: make {add/put/put_signed}_pixels_clamped() non-static.
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. */ |