comparison mpc.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 cf4d575b1982
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 * @file mpc.h Musepack decoder 23 * @file mpc.h Musepack decoder
24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples 24 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
25 * divided into 32 subbands. 25 * divided into 32 subbands.
26 */ 26 */
27 27
28 #ifndef FFMPEG_MPC_H 28 #ifndef AVCODEC_MPC_H
29 #define FFMPEG_MPC_H 29 #define AVCODEC_MPC_H
30 30
31 #include "libavutil/random.h" 31 #include "libavutil/random.h"
32 #include "avcodec.h" 32 #include "avcodec.h"
33 #include "bitstream.h" 33 #include "bitstream.h"
34 #include "dsputil.h" 34 #include "dsputil.h"
75 } MPCContext; 75 } MPCContext;
76 76
77 extern void ff_mpc_init(); 77 extern void ff_mpc_init();
78 extern void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst); 78 extern void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
79 79
80 #endif /* FFMPEG_MPC_H */ 80 #endif /* AVCODEC_MPC_H */