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

This commit is contained in:
Diego Biurrun 2011-07-14 00:00:43 +02:00
parent da4c7cce21
commit 9b3139ebca
1 changed files with 2 additions and 4 deletions

View File

@ -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 */