comparison mlp_parser.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 64f7b6e3998b
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file mlp_parser.h 23 * @file mlp_parser.h
24 * MLP parser prototypes 24 * MLP parser prototypes
25 */ 25 */
26 26
27 #ifndef FFMPEG_MLP_PARSER_H 27 #ifndef AVCODEC_MLP_PARSER_H
28 #define FFMPEG_MLP_PARSER_H 28 #define AVCODEC_MLP_PARSER_H
29 29
30 #include "bitstream.h" 30 #include "bitstream.h"
31 31
32 typedef struct MLPHeaderInfo 32 typedef struct MLPHeaderInfo
33 { 33 {
53 } MLPHeaderInfo; 53 } MLPHeaderInfo;
54 54
55 55
56 int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, GetBitContext *gb); 56 int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, GetBitContext *gb);
57 57
58 #endif /* FFMPEG_MLP_PARSER_H */ 58 #endif /* AVCODEC_MLP_PARSER_H */
59 59