comparison ac3dec.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 6f4d3d307676
children 3085502c4f33
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file ac3.h 23 * @file ac3.h
24 * Common code between the AC-3 and E-AC-3 decoders. 24 * Common code between the AC-3 and E-AC-3 decoders.
25 */ 25 */
26 26
27 #ifndef FFMPEG_AC3DEC_H 27 #ifndef AVCODEC_AC3DEC_H
28 #define FFMPEG_AC3DEC_H 28 #define AVCODEC_AC3DEC_H
29 29
30 #include "libavutil/lfg.h" 30 #include "libavutil/lfg.h"
31 #include "ac3.h" 31 #include "ac3.h"
32 #include "bitstream.h" 32 #include "bitstream.h"
33 #include "dsputil.h" 33 #include "dsputil.h"
177 * Decode mantissas in a single channel for the entire frame. 177 * Decode mantissas in a single channel for the entire frame.
178 * This is used when AHT mode is enabled. 178 * This is used when AHT mode is enabled.
179 */ 179 */
180 void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch); 180 void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch);
181 181
182 #endif /* FFMPEG_AC3DEC_H */ 182 #endif /* AVCODEC_AC3DEC_H */