Module: libav Branch: master Commit: 9b3139ebca0ee1e97c6f72e25607dee5f4ecdf89
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Thu Jul 14 00:00:43 2011 +0200 dctref: make sure function declarations match between .c and .h file --- 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 */ _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
