comparison mpegaudiodecheader.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 f7cbb7733146
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file mpegaudiodecheader.c 23 * @file mpegaudiodecheader.c
24 * MPEG Audio header decoder. 24 * MPEG Audio header decoder.
25 */ 25 */
26 26
27 #ifndef FFMPEG_MPEGAUDIODECHEADER_H 27 #ifndef AVCODEC_MPEGAUDIODECHEADER_H
28 #define FFMPEG_MPEGAUDIODECHEADER_H 28 #define AVCODEC_MPEGAUDIODECHEADER_H
29 29
30 #include "libavutil/common.h" 30 #include "libavutil/common.h"
31 #include "mpegaudio.h" 31 #include "mpegaudio.h"
32 32
33 33
34 /* header decoding. MUST check the header before because no 34 /* header decoding. MUST check the header before because no
35 consistency check is done there. Return 1 if free format found and 35 consistency check is done there. Return 1 if free format found and
36 that the frame size must be computed externally */ 36 that the frame size must be computed externally */
37 int ff_mpegaudio_decode_header(MPADecodeContext *s, uint32_t header); 37 int ff_mpegaudio_decode_header(MPADecodeContext *s, uint32_t header);
38 38
39 #endif /* FFMPEG_MPEGAUDIODECHEADER_H */ 39 #endif /* AVCODEC_MPEGAUDIODECHEADER_H */