comparison atrac3data.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
22 22
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
28 #ifndef AVCODEC_ATRAC3DATA_H
29 #define AVCODEC_ATRAC3DATA_H
27 30
28 #include <stdint.h> 31 #include <stdint.h>
29 32
30 /* VLC tables */ 33 /* VLC tables */
31 34
131 -0.043596379, -0.099384367, 0.13207909, 0.46424159 134 -0.043596379, -0.099384367, 0.13207909, 0.46424159
132 }; 135 };
133 136
134 /* joint stereo related tables */ 137 /* joint stereo related tables */
135 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
140 #endif