comparison mpegaudiotab.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 4394344397d8
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
24 /** 24 /**
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
30 #ifndef AVCODEC_MPEGAUDIOTAB_H
31 #define AVCODEC_MPEGAUDIOTAB_H
29 32
30 #include <stdint.h> 33 #include <stdint.h>
31 #include "mpegaudio.h" 34 #include "mpegaudio.h"
32 35
33 #define SQRT2 1.41421356237309514547 36 #define SQRT2 1.41421356237309514547
110 -75, -75, -75, -75, -91, -107, -110, -108 113 -75, -75, -75, -75, -91, -107, -110, -108
111 }; 114 };
112 115
113 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 };
114 117
118 #endif