[FFmpeg-cvslog] dctref: make sure function declarations match between .c and .h file

Diego Biurrun git at videolan.org
Wed Jul 27 10:49:27 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Jul 14 00:00:43 2011 +0200| [9b3139ebca0ee1e97c6f72e25607dee5f4ecdf89] | committer: Diego Biurrun

dctref: make sure function declarations match between .c and .h file

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9b3139ebca0ee1e97c6f72e25607dee5f4ecdf89
---

 libavcodec/dctref.h |    6 ++----
 1 files 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 */



More information about the ffmpeg-cvslog mailing list