diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:37:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:37:08 +0000 |
commit | f49747e90473cd2a8d2bb73db416c73e05109258 (patch) | |
tree | 311e77700344c7df1b4991f5fffdeaa9f34b1d82 /libavcodec/x86/vc1dsp_mmx.c | |
parent | 98713e55b4fb373819511c12b52dd2a2d3eea704 (diff) | |
download | ffmpeg-f49747e90473cd2a8d2bb73db416c73e05109258.tar.gz |
x86: move function prototypes to header files
Originally committed as revision 22266 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/vc1dsp_mmx.c')
-rw-r--r-- | libavcodec/x86/vc1dsp_mmx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/x86/vc1dsp_mmx.c b/libavcodec/x86/vc1dsp_mmx.c index ef1ce1a480..e0b1f5b99a 100644 --- a/libavcodec/x86/vc1dsp_mmx.c +++ b/libavcodec/x86/vc1dsp_mmx.c @@ -463,9 +463,6 @@ static void OP ## vc1_mspel_mc(uint8_t *dst, const uint8_t *src, int stride,\ VC1_MSPEL_MC(put_) VC1_MSPEL_MC(avg_) -void ff_put_vc1_mspel_mc00_mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd); -void ff_avg_vc1_mspel_mc00_mmx2(uint8_t *dst, const uint8_t *src, int stride, int rnd); - /** Macro to ease bicubic filter interpolation functions declarations */ #define DECLARE_FUNCTION(a, b) \ static void put_vc1_mspel_mc ## a ## b ## _mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \ |