summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2011-02-20 17:31:33 -0500
committerRonald S. Bultje <rsbultje@gmail.com>2011-02-21 10:23:44 -0500
commit484a337cd7cd8bb180c4a1bd3321881f1c874a92 (patch)
tree3672ae7507b2f912e3283a0063cabc6005aba976 /libavcodec/dsputil.h
parentbbfd2e7ab4e2ae0b934657fe51afdbbbaead52b7 (diff)
dsputil: make {add/put/put_signed}_pixels_clamped() non-static.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h4
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.
*/