comparison atrac3data.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 322023e630a6
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 /** 23 /**
24 * @file atrac3data.h 24 * @file atrac3data.h
25 * Atrac 3 AKA RealAudio 8 compatible decoder data 25 * Atrac 3 AKA RealAudio 8 compatible decoder data
26 */ 26 */
27 27
28 #ifndef FFMPEG_ATRAC3DATA_H 28 #ifndef AVCODEC_ATRAC3DATA_H
29 #define FFMPEG_ATRAC3DATA_H 29 #define AVCODEC_ATRAC3DATA_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 32
33 /* VLC tables */ 33 /* VLC tables */
34 34
135 }; 135 };
136 136
137 /* joint stereo related tables */ 137 /* joint stereo related tables */
138 static const float matrixCoeffs[8] = {0.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0}; 138 static const float matrixCoeffs[8] = {0.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0};
139 139
140 #endif /* FFMPEG_ATRAC3DATA_H */ 140 #endif /* AVCODEC_ATRAC3DATA_H */