diff dsputil.h @ 1008:fb6cbb8a04a3 libavcodec

fixing DCTELEM != short
author michaelni
date Wed, 15 Jan 2003 19:21:21 +0000
parents b2cf2a1d9a51
children b4172ff70d27
line wrap: on
line diff
--- a/dsputil.h	Wed Jan 15 18:05:23 2003 +0000
+++ b/dsputil.h	Wed Jan 15 19:21:21 2003 +0000
@@ -25,6 +25,7 @@
 //#define DEBUG
 /* dct code */
 typedef short DCTELEM;
+//typedef int DCTELEM;
 
 void fdct_ifast (DCTELEM *data);
 void ff_jpeg_fdct_islow (DCTELEM *data);
@@ -156,7 +157,7 @@
  * permute block according to permuatation.
  * @param last last non zero element in scantable order
  */
-void ff_block_permute(INT16 *block, UINT8 *permutation, const UINT8 *scantable, int last);
+void ff_block_permute(DCTELEM *block, UINT8 *permutation, const UINT8 *scantable, int last);
 
 #define emms_c()