comparison postprocess_internal.h @ 110:858be852c955 libpostproc

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 83d51d1fb580
children e86e6ea21776
comparison
equal deleted inserted replaced
109:4c5594af9816 110:858be852c955
21 /** 21 /**
22 * @file postprocess_internal.h 22 * @file postprocess_internal.h
23 * internal api header. 23 * internal api header.
24 */ 24 */
25 25
26 #ifndef FFMPEG_POSTPROCESS_INTERNAL_H 26 #ifndef POSTPROCESS_POSTPROCESS_INTERNAL_H
27 #define FFMPEG_POSTPROCESS_INTERNAL_H 27 #define POSTPROCESS_POSTPROCESS_INTERNAL_H
28 28
29 #include "libavutil/avutil.h" 29 #include "libavutil/avutil.h"
30 #include "postprocess.h" 30 #include "postprocess.h"
31 31
32 #define V_DEBLOCK 0x01 32 #define V_DEBLOCK 0x01
172 } else { 172 } else {
173 memcpy((uint8_t*)dest+(lines-1)*stride, (const uint8_t*)src+(lines-1)*stride, -lines*stride); 173 memcpy((uint8_t*)dest+(lines-1)*stride, (const uint8_t*)src+(lines-1)*stride, -lines*stride);
174 } 174 }
175 } 175 }
176 176
177 #endif /* FFMPEG_POSTPROCESS_INTERNAL_H */ 177 #endif /* POSTPROCESS_POSTPROCESS_INTERNAL_H */