comparison simple_idct.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 3c37faa04193
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 /** 23 /**
24 * @file simple_idct.h 24 * @file simple_idct.h
25 * simple idct header. 25 * simple idct header.
26 */ 26 */
27 27
28 #ifndef FFMPEG_SIMPLE_IDCT_H 28 #ifndef AVCODEC_SIMPLE_IDCT_H
29 #define FFMPEG_SIMPLE_IDCT_H 29 #define AVCODEC_SIMPLE_IDCT_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 #include "dsputil.h" 32 #include "dsputil.h"
33 33
34 void ff_simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block); 34 void ff_simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block);
42 42
43 void ff_simple_idct84_add(uint8_t *dest, int line_size, DCTELEM *block); 43 void ff_simple_idct84_add(uint8_t *dest, int line_size, DCTELEM *block);
44 void ff_simple_idct48_add(uint8_t *dest, int line_size, DCTELEM *block); 44 void ff_simple_idct48_add(uint8_t *dest, int line_size, DCTELEM *block);
45 void ff_simple_idct44_add(uint8_t *dest, int line_size, DCTELEM *block); 45 void ff_simple_idct44_add(uint8_t *dest, int line_size, DCTELEM *block);
46 46
47 #endif /* FFMPEG_SIMPLE_IDCT_H */ 47 #endif /* AVCODEC_SIMPLE_IDCT_H */