diff dsputil.h @ 480:a7cbee351b55 libavcodec

added ff_idct_put/add
author bellard
date Wed, 05 Jun 2002 18:48:07 +0000
parents 11dbd00682fc
children 873b9075d853
line wrap: on
line diff
--- a/dsputil.h	Wed Jun 05 18:46:25 2002 +0000
+++ b/dsputil.h	Wed Jun 05 18:48:07 2002 +0000
@@ -54,6 +54,8 @@
 /* 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);