comparison adx.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 b1b3dd3324ae
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
26 * Reference documents: 26 * Reference documents:
27 * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html 27 * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
28 * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/ 28 * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
29 */ 29 */
30 30
31 #ifndef FFMPEG_ADX_H 31 #ifndef AVCODEC_ADX_H
32 #define FFMPEG_ADX_H 32 #define AVCODEC_ADX_H
33 33
34 typedef struct { 34 typedef struct {
35 int s1,s2; 35 int s1,s2;
36 } PREV; 36 } PREV;
37 37
44 44
45 #define BASEVOL 0x4000 45 #define BASEVOL 0x4000
46 #define SCALE1 0x7298 46 #define SCALE1 0x7298
47 #define SCALE2 0x3350 47 #define SCALE2 0x3350
48 48
49 #endif /* FFMPEG_ADX_H */ 49 #endif /* AVCODEC_ADX_H */