diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-06-05 18:48:07 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-06-05 18:48:07 +0000 |
commit | 8ee14970d61d19a971050268384911b49a436c2d (patch) | |
tree | cce3198768281ca46dd75343fecef382564266d4 /libavcodec/dsputil.h | |
parent | d36a2466753fc18f3143837a56aa7123f8991f33 (diff) | |
download | ffmpeg-streaming-8ee14970d61d19a971050268384911b49a436c2d.zip ffmpeg-streaming-8ee14970d61d19a971050268384911b49a436c2d.tar.gz |
added ff_idct_put/add
Originally committed as revision 672 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 062b510..8537333 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -54,6 +54,8 @@ void dsputil_init(void); /* pixel ops : interface with DCT */ extern void (*ff_idct)(DCTELEM *block); +extern void (*ff_idct_put)(UINT8 *dest, int line_size, DCTELEM *block); +extern void (*ff_idct_add)(UINT8 *dest, int line_size, DCTELEM *block); extern void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size); extern void (*diff_pixels)(DCTELEM *block, const UINT8 *s1, const UINT8 *s2, int stride); extern void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); |