From 9b3139ebca0ee1e97c6f72e25607dee5f4ecdf89 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 14 Jul 2011 00:00:43 +0200 Subject: [PATCH] dctref: make sure function declarations match between .c and .h file --- libavcodec/dctref.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/dctref.h b/libavcodec/dctref.h index ba89abd..a93b70d 100644 --- a/libavcodec/dctref.h +++ b/libavcodec/dctref.h @@ -22,10 +22,8 @@ #ifndef AVCODEC_DCTREF_H #define AVCODEC_DCTREF_H -#include "dsputil.h" - -void ff_ref_fdct(DCTELEM *block); -void ff_ref_idct(DCTELEM *block); +void ff_ref_fdct(short *block); +void ff_ref_idct(short *block); void ff_ref_dct_init(void); #endif /* AVCODEC_DCTREF_H */ -- 2.7.4