comparison mpegaudiotab.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 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
25 * @file mpegaudiotab.h 25 * @file mpegaudiotab.h
26 * mpeg audio layer 2 tables. 26 * mpeg audio layer 2 tables.
27 * Most of them come from the mpeg audio specification. 27 * Most of them come from the mpeg audio specification.
28 */ 28 */
29 29
30 #ifndef FFMPEG_MPEGAUDIOTAB_H 30 #ifndef AVCODEC_MPEGAUDIOTAB_H
31 #define FFMPEG_MPEGAUDIOTAB_H 31 #define AVCODEC_MPEGAUDIOTAB_H
32 32
33 #include <stdint.h> 33 #include <stdint.h>
34 #include "mpegaudio.h" 34 #include "mpegaudio.h"
35 35
36 #define SQRT2 1.41421356237309514547 36 #define SQRT2 1.41421356237309514547
113 -75, -75, -75, -75, -91, -107, -110, -108 113 -75, -75, -75, -75, -91, -107, -110, -108
114 }; 114 };
115 115
116 static const unsigned char nb_scale_factors[4] = { 3, 2, 1, 2 }; 116 static const unsigned char nb_scale_factors[4] = { 3, 2, 1, 2 };
117 117
118 #endif /* FFMPEG_MPEGAUDIOTAB_H */ 118 #endif /* AVCODEC_MPEGAUDIOTAB_H */