comparison h264.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 3749f13a0d02
children a33287a39a55
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 * @file h264.h 23 * @file h264.h
24 * H.264 / AVC / MPEG4 part10 codec. 24 * H.264 / AVC / MPEG4 part10 codec.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef FFMPEG_H264_H 28 #ifndef AVCODEC_H264_H
29 #define FFMPEG_H264_H 29 #define AVCODEC_H264_H
30 30
31 #include "dsputil.h" 31 #include "dsputil.h"
32 #include "cabac.h" 32 #include "cabac.h"
33 #include "mpegvideo.h" 33 #include "mpegvideo.h"
34 #include "h264pred.h" 34 #include "h264pred.h"
433 433
434 int mb_xy; 434 int mb_xy;
435 435
436 }H264Context; 436 }H264Context;
437 437
438 #endif /* FFMPEG_H264_H */ 438 #endif /* AVCODEC_H264_H */