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/x86/dsputil_mmx.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/x86/dsputil_mmx.h')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/x86/dsputil_mmx.h b/libavcodec/x86/dsputil_mmx.h index 52c5f8dd09..c0ef49b306 100644 --- a/libavcodec/x86/dsputil_mmx.h +++ b/libavcodec/x86/dsputil_mmx.h @@ -150,5 +150,10 @@ extern const double ff_pd_2[2]; "psrlw $15, %%" #regd ::) void dsputilenc_init_mmx(DSPContext* c, AVCodecContext *avctx); +void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx); + +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); #endif /* AVCODEC_X86_DSPUTIL_MMX_H */ |