comparison h261.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 e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 /** 23 /**
24 * @file h261.c 24 * @file h261.c
25 * h261codec. 25 * h261codec.
26 */ 26 */
27 27
28 #ifndef FFMPEG_H261_H 28 #ifndef AVCODEC_H261_H
29 #define FFMPEG_H261_H 29 #define AVCODEC_H261_H
30 30
31 #include "mpegvideo.h" 31 #include "mpegvideo.h"
32 32
33 /** 33 /**
34 * H261Context 34 * H261Context
46 int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read 46 int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read
47 }H261Context; 47 }H261Context;
48 48
49 #define MB_TYPE_H261_FIL 0x800000 49 #define MB_TYPE_H261_FIL 0x800000
50 50
51 #endif /* FFMPEG_H261_H */ 51 #endif /* AVCODEC_H261_H */