comparison rv34data.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 e6b68d8df66b
children 8621deaff8dc
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file rv34data.h 23 * @file rv34data.h
24 * miscellaneous RV30/40 tables 24 * miscellaneous RV30/40 tables
25 */ 25 */
26 26
27 #ifndef FFMPEG_RV34DATA_H 27 #ifndef AVCODEC_RV34DATA_H
28 #define FFMPEG_RV34DATA_H 28 #define AVCODEC_RV34DATA_H
29 29
30 #include <stdint.h> 30 #include <stdint.h>
31 31
32 /** 32 /**
33 * number of ones in nibble minus one 33 * number of ones in nibble minus one
143 * bits needed to code the slice offset for the given size 143 * bits needed to code the slice offset for the given size
144 * @todo This is the same as ff_mba_length, maybe use it instead. 144 * @todo This is the same as ff_mba_length, maybe use it instead.
145 */ 145 */
146 static const uint8_t rv34_mb_bits_sizes[6] = { 6, 7, 9, 11, 13, 14 }; 146 static const uint8_t rv34_mb_bits_sizes[6] = { 6, 7, 9, 11, 13, 14 };
147 147
148 #endif /* FFMPEG_RV34DATA_H */ 148 #endif /* AVCODEC_RV34DATA_H */