comparison ac3.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 1a93d3bbe3ee
children 6c2dcc1410bb
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 encoder and decoder. 24 * Common code between the AC-3 encoder and decoder.
25 */ 25 */
26 26
27 #ifndef FFMPEG_AC3_H 27 #ifndef AVCODEC_AC3_H
28 #define FFMPEG_AC3_H 28 #define AVCODEC_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 */
180 int snr_offset, int fast_gain, int is_lfe, 180 int snr_offset, int fast_gain, int is_lfe,
181 int dba_mode, int dba_nsegs, 181 int dba_mode, int dba_nsegs,
182 uint8_t *dba_offsets, uint8_t *dba_lengths, 182 uint8_t *dba_offsets, uint8_t *dba_lengths,
183 uint8_t *dba_values); 183 uint8_t *dba_values);
184 184
185 #endif /* FFMPEG_AC3_H */ 185 #endif /* AVCODEC_AC3_H */