comparison h263data.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 1d83e9c34641
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
24 /** 24 /**
25 * @file h263data.h 25 * @file h263data.h
26 * H.263 tables. 26 * H.263 tables.
27 */ 27 */
28 28
29 #ifndef FFMPEG_H263DATA_H 29 #ifndef AVCODEC_H263DATA_H
30 #define FFMPEG_H263DATA_H 30 #define AVCODEC_H263DATA_H
31 31
32 #include <stdint.h> 32 #include <stdint.h>
33 #include "mpegvideo.h" 33 #include "mpegvideo.h"
34 34
35 /* intra MCBPC, mb_type = (intra), then (intraq) */ 35 /* intra MCBPC, mb_type = (intra), then (intraq) */
309 const uint8_t ff_h263_loop_filter_strength[32]={ 309 const uint8_t ff_h263_loop_filter_strength[32]={
310 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 310 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
311 0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9,10,10,10,11,11,11,12,12,12 311 0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9,10,10,10,11,11,11,12,12,12
312 }; 312 };
313 313
314 #endif /* FFMPEG_H263DATA_H */ 314 #endif /* AVCODEC_H263DATA_H */