comparison mpegvideo_common.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 4866b892ecbe
children 50516d28608a
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
25 /** 25 /**
26 * @file mpegvideo_common.h 26 * @file mpegvideo_common.h
27 * The simplest mpeg encoder (well, it was the simplest!). 27 * The simplest mpeg encoder (well, it was the simplest!).
28 */ 28 */
29 29
30 #ifndef FFMPEG_MPEGVIDEO_COMMON_H 30 #ifndef AVCODEC_MPEGVIDEO_COMMON_H
31 #define FFMPEG_MPEGVIDEO_COMMON_H 31 #define AVCODEC_MPEGVIDEO_COMMON_H
32 32
33 #include "avcodec.h" 33 #include "avcodec.h"
34 #include "dsputil.h" 34 #include "dsputil.h"
35 #include "mpegvideo.h" 35 #include "mpegvideo.h"
36 #include "mjpegenc.h" 36 #include "mjpegenc.h"
896 else 896 else
897 #endif 897 #endif
898 MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir, 898 MPV_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
899 ref_picture, pix_op, qpix_op, 0); 899 ref_picture, pix_op, qpix_op, 0);
900 } 900 }
901 #endif /* FFMPEG_MPEGVIDEO_COMMON_H */ 901 #endif /* AVCODEC_MPEGVIDEO_COMMON_H */