diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-29 16:55:50 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-29 16:55:50 +0000 |
commit | 4e36a5b46f889f398efb01d5773e9a511908d139 (patch) | |
tree | 45696771730e67dc217d9bcb40cf260ea598d158 /libavcodec/dsputil.h | |
parent | 5b1b014761dcec736c4d699824ca957feb335adf (diff) | |
download | ffmpeg-4e36a5b46f889f398efb01d5773e9a511908d139.tar.gz |
Move declarations of some mmx functions to dsputil_mmx.h
Originally committed as revision 19739 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 1ab4ca28ab..d029689c87 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -618,10 +618,6 @@ void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); extern int mm_flags; -void add_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size); -void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size); -void put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size); - static inline void emms(void) { __asm__ volatile ("emms;":::"memory"); @@ -634,8 +630,6 @@ static inline void emms(void) emms();\ } -void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx); - #elif ARCH_ARM extern int mm_flags; |