comparison rv30data.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 337a95c66190
children 9267436cfb6b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file rv30data.h 23 * @file rv30data.h
24 * miscellaneous RV30 tables 24 * miscellaneous RV30 tables
25 */ 25 */
26 26
27 #ifndef FFMPEG_RV30DATA_H 27 #ifndef AVCODEC_RV30DATA_H
28 #define FFMPEG_RV30DATA_H 28 #define AVCODEC_RV30DATA_H
29 29
30 #include <stdint.h> 30 #include <stdint.h>
31 31
32 /** DC quantizer mapping for RV30 */ 32 /** DC quantizer mapping for RV30 */
33 static const uint8_t rv30_luma_dc_quant[32] = { 33 static const uint8_t rv30_luma_dc_quant[32] = {
169 2, 1, 0, 8, 5, 3, 6, 4, 7, 169 2, 1, 0, 8, 5, 3, 6, 4, 7,
170 2, 1, 6, 0, 8, 4, 5, 7, 3, 170 2, 1, 6, 0, 8, 4, 5, 7, 3,
171 2, 7, 8, 4, 0, 6, 1, 5, 3, 171 2, 7, 8, 4, 0, 6, 1, 5, 3,
172 2, 8, 3, 0, 7, 4, 1, 6, 5, 172 2, 8, 3, 0, 7, 4, 1, 6, 5,
173 }; 173 };
174 #endif /* FFMPEG_RV30DATA_H */ 174 #endif /* AVCODEC_RV30DATA_H */