comparison mpegaudio.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 1d83e9c34641
children 8195c970d077
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
21 /** 21 /**
22 * @file mpegaudio.h 22 * @file mpegaudio.h
23 * mpeg audio declarations for both encoder and decoder. 23 * mpeg audio declarations for both encoder and decoder.
24 */ 24 */
25 25
26 #ifndef FFMPEG_MPEGAUDIO_H 26 #ifndef AVCODEC_MPEGAUDIO_H
27 #define FFMPEG_MPEGAUDIO_H 27 #define AVCODEC_MPEGAUDIO_H
28 28
29 #include "avcodec.h" 29 #include "avcodec.h"
30 #include "bitstream.h" 30 #include "bitstream.h"
31 #include "dsputil.h" 31 #include "dsputil.h"
32 32
150 if ((header & (3<<10)) == 3<<10) 150 if ((header & (3<<10)) == 3<<10)
151 return -1; 151 return -1;
152 return 0; 152 return 0;
153 } 153 }
154 154
155 #endif /* FFMPEG_MPEGAUDIO_H */ 155 #endif /* AVCODEC_MPEGAUDIO_H */