diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-10-07 11:46:35 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-10-07 11:46:35 +0000 |
commit | d4165a8190b1c1a1667a7d2c24ebcb1a706a6fdd (patch) | |
tree | bfd9a28ffa8e707694a03c69a8bebb3e8554cafb | |
parent | ade6e7f3ae57f31fb2268b86fe03559e6184bbe5 (diff) | |
download | ffmpeg-d4165a8190b1c1a1667a7d2c24ebcb1a706a6fdd.tar.gz |
fix a warning
Originally committed as revision 6575 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/dsputil_altivec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/ppc/dsputil_altivec.h b/libavcodec/ppc/dsputil_altivec.h index 39ef2c938a..3637685733 100644 --- a/libavcodec/ppc/dsputil_altivec.h +++ b/libavcodec/ppc/dsputil_altivec.h @@ -27,6 +27,10 @@ extern int has_altivec(void); +void put_pixels16_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h); + +void avg_pixels16_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h); + // used to build registers permutation vectors (vcprm) // the 's' are for words in the _s_econd vector #define WORD_0 0x00,0x01,0x02,0x03 |