summaryrefslogtreecommitdiff
path: root/libavcodec/dctref.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-07-14 00:00:43 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-27 00:26:13 +0200
commit9b3139ebca0ee1e97c6f72e25607dee5f4ecdf89 (patch)
tree192c7901dc1320d3071eb066a7b3f4fabd34a176 /libavcodec/dctref.h
parentda4c7cce2100a4e4f9276b4f17e260be47b53f41 (diff)
dctref: make sure function declarations match between .c and .h file
Diffstat (limited to 'libavcodec/dctref.h')
-rw-r--r--libavcodec/dctref.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/dctref.h b/libavcodec/dctref.h
index ba89abd752..a93b70d9f2 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 */