diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-07 21:43:58 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-07 22:08:19 +0100 |
commit | 35685a3c2a1ec09f3c62dcfc4368fe9e92bcddf6 (patch) | |
tree | 229fc320236aa2c3ba9f3eda4f95f1ffaefa0b46 /libavcodec/dsputil.h | |
parent | 75d5156ac1526c732464d11329cd63a0258b1cae (diff) | |
download | ffmpeg-35685a3c2a1ec09f3c62dcfc4368fe9e92bcddf6.tar.gz |
dsputil: Move ff_shrink* function declarations to separate header
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index aadb9a811a..04f8165caa 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -84,11 +84,6 @@ void ff_avg_rv40_qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride); void ff_put_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride); void ff_avg_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride); -/* 1/2^n downscaling functions from imgconvert.c */ -void ff_shrink22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height); -void ff_shrink44(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height); -void ff_shrink88(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height); - void ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height); |