comparison mpegvideo.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 5cbf11f56c02
children 8195c970d077
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 /** 23 /**
24 * @file mpegvideo.h 24 * @file mpegvideo.h
25 * mpegvideo header. 25 * mpegvideo header.
26 */ 26 */
27 27
28 #ifndef FFMPEG_MPEGVIDEO_H 28 #ifndef AVCODEC_MPEGVIDEO_H
29 #define FFMPEG_MPEGVIDEO_H 29 #define AVCODEC_MPEGVIDEO_H
30 30
31 #include "dsputil.h" 31 #include "dsputil.h"
32 #include "bitstream.h" 32 #include "bitstream.h"
33 #include "ratecontrol.h" 33 #include "ratecontrol.h"
34 #include "parser.h" 34 #include "parser.h"
861 int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number); 861 int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number);
862 void ff_wmv2_encode_mb(MpegEncContext * s, 862 void ff_wmv2_encode_mb(MpegEncContext * s,
863 DCTELEM block[6][64], 863 DCTELEM block[6][64],
864 int motion_x, int motion_y); 864 int motion_x, int motion_y);
865 865
866 #endif /* FFMPEG_MPEGVIDEO_H */ 866 #endif /* AVCODEC_MPEGVIDEO_H */
867 867