diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-10 16:48:31 -0700 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-19 23:29:21 +0300 |
commit | 278bd2054ca61ab70dfe38f1774409cda2da5359 (patch) | |
tree | 5059ba9a112a0d3599c525d6e0cf88352b8cec05 /libavcodec/sh4/dsputil_sh4.h | |
parent | bfb41b5039e36b7f873d6ea7d24b31bf3e1a8075 (diff) | |
download | ffmpeg-278bd2054ca61ab70dfe38f1774409cda2da5359.tar.gz |
sh4: hpeldsp: Move half-pel assembly from dsputil to hpeldsp
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/sh4/dsputil_sh4.h')
-rw-r--r-- | libavcodec/sh4/dsputil_sh4.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/sh4/dsputil_sh4.h b/libavcodec/sh4/dsputil_sh4.h index f7dc30bad4..f474f90880 100644 --- a/libavcodec/sh4/dsputil_sh4.h +++ b/libavcodec/sh4/dsputil_sh4.h @@ -25,4 +25,13 @@ void ff_idct_sh4(int16_t *block); void ff_dsputil_init_align(DSPContext* c, AVCodecContext *avctx); +void ff_put_rnd_pixels8_o(uint8_t *dest, const uint8_t *ref, + const ptrdiff_t stride, int height); +void ff_put_rnd_pixels16_o(uint8_t *dest, const uint8_t *ref, + const ptrdiff_t stride, int height); +void ff_avg_rnd_pixels8_o (uint8_t *dest, const uint8_t *ref, + const ptrdiff_t stride, int height); +void ff_avg_rnd_pixels16_o(uint8_t *dest, const uint8_t *ref, + const ptrdiff_t stride, int height); + #endif /* AVCODEC_SH4_DSPUTIL_SH4_H */ |