comparison faandct.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 1d83e9c34641
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
24 * @brief 24 * @brief
25 * Floating point AAN DCT 25 * Floating point AAN DCT
26 * @author Michael Niedermayer <michaelni@gmx.at> 26 * @author Michael Niedermayer <michaelni@gmx.at>
27 */ 27 */
28 28
29 #ifndef FFMPEG_FAANDCT_H 29 #ifndef AVCODEC_FAANDCT_H
30 #define FFMPEG_FAANDCT_H 30 #define AVCODEC_FAANDCT_H
31 31
32 #include "dsputil.h" 32 #include "dsputil.h"
33 33
34 #define FAAN_POSTSCALE 34 #define FAAN_POSTSCALE
35 35
36 void ff_faandct(DCTELEM * data); 36 void ff_faandct(DCTELEM * data);
37 void ff_faandct248(DCTELEM * data); 37 void ff_faandct248(DCTELEM * data);
38 38
39 #endif /* FFMPEG_FAANDCT_H */ 39 #endif /* AVCODEC_FAANDCT_H */