diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-27 10:40:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-27 10:40:34 +0200 |
commit | f52ad8ceddf3078dbfef7ab437ca8600a1f96ef2 (patch) | |
tree | b2269696636ba3f82fcc6b0e9c2b92a15fb3b793 /libavcodec | |
parent | c617d7b86a69aefafb0a5d6a9f916f9c97974c8f (diff) | |
parent | 001e600c3b8668191f96d7a1e46da0d7fff546de (diff) | |
download | ffmpeg-f52ad8ceddf3078dbfef7ab437ca8600a1f96ef2.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
configure: spelling cosmetics
dctref: make sure function declarations match between .c and .h file
x86: fix build with gcc 4.7
Conflicts:
configure
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dctref.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/dctref.h b/libavcodec/dctref.h index be481f07b0..f6fde8863a 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 */ |