comparison ac3.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents b24bcdd0ae86
children 608c8e9ac412
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
22 /** 22 /**
23 * @file ac3.h 23 * @file ac3.h
24 * Common code between AC3 encoder and decoder. 24 * Common code between AC3 encoder and decoder.
25 */ 25 */
26 26
27 #ifndef AC3_H 27 #ifndef FFMPEG_AC3_H
28 #define AC3_H 28 #define FFMPEG_AC3_H
29 29
30 #include "ac3tab.h" 30 #include "ac3tab.h"
31 31
32 #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */ 32 #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
33 #define AC3_MAX_CHANNELS 6 /* including LFE channel */ 33 #define AC3_MAX_CHANNELS 6 /* including LFE channel */
170 int8_t *exp, int start, int end, 170 int8_t *exp, int start, int end,
171 int snroffset, int fgain, int is_lfe, 171 int snroffset, int fgain, int is_lfe,
172 int deltbae,int deltnseg, 172 int deltbae,int deltnseg,
173 uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba); 173 uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba);
174 174
175 #endif /* AC3_H */ 175 #endif /* FFMPEG_AC3_H */