comparison flac.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 dc4f5c55af40
children 61ae841cd13e
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file flac.h 23 * @file flac.h
24 * FLAC (Free Lossless Audio Codec) decoder/demuxer common functions 24 * FLAC (Free Lossless Audio Codec) decoder/demuxer common functions
25 */ 25 */
26 26
27 #ifndef FFMPEG_FLAC_H 27 #ifndef AVCODEC_FLAC_H
28 #define FFMPEG_FLAC_H 28 #define AVCODEC_FLAC_H
29 29
30 #include "avcodec.h" 30 #include "avcodec.h"
31 31
32 /** 32 /**
33 * Data needed from the Streaminfo header for use by the raw FLAC demuxer 33 * Data needed from the Streaminfo header for use by the raw FLAC demuxer
52 * @param[in] buffer pointer to start of 34-byte streaminfo data 52 * @param[in] buffer pointer to start of 34-byte streaminfo data
53 */ 53 */
54 void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, 54 void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s,
55 const uint8_t *buffer); 55 const uint8_t *buffer);
56 56
57 #endif /* FFMPEG_FLAC_H */ 57 #endif /* AVCODEC_FLAC_H */