comparison i386/idct_xvid.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 f76581c16848
children 8547a4ae101b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
21 /*! 21 /*!
22 * @file idct_xvid.h 22 * @file idct_xvid.h
23 * header for Xvid IDCT functions 23 * header for Xvid IDCT functions
24 */ 24 */
25 25
26 #ifndef FFMPEG_IDCT_XVID_H 26 #ifndef AVCODEC_I386_IDCT_XVID_H
27 #define FFMPEG_IDCT_XVID_H 27 #define AVCODEC_I386_IDCT_XVID_H
28 28
29 void ff_idct_xvid_mmx(short *block); 29 void ff_idct_xvid_mmx(short *block);
30 void ff_idct_xvid_mmx2(short *block); 30 void ff_idct_xvid_mmx2(short *block);
31 void ff_idct_xvid_sse2(short *block); 31 void ff_idct_xvid_sse2(short *block);
32 void ff_idct_xvid_sse2_put(uint8_t *dest, int line_size, short *block); 32 void ff_idct_xvid_sse2_put(uint8_t *dest, int line_size, short *block);
33 void ff_idct_xvid_sse2_add(uint8_t *dest, int line_size, short *block); 33 void ff_idct_xvid_sse2_add(uint8_t *dest, int line_size, short *block);
34 34
35 #endif /* FFMPEG_IDCT_XVID_H */ 35 #endif /* AVCODEC_I386_IDCT_XVID_H */