comparison h263data.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 4394344397d8
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
23 23
24 /** 24 /**
25 * @file h263data.h 25 * @file h263data.h
26 * H.263 tables. 26 * H.263 tables.
27 */ 27 */
28
29 #ifndef AVCODEC_H263DATA_H
30 #define AVCODEC_H263DATA_H
28 31
29 #include <stdint.h> 32 #include <stdint.h>
30 #include "mpegvideo.h" 33 #include "mpegvideo.h"
31 34
32 /* intra MCBPC, mb_type = (intra), then (intraq) */ 35 /* intra MCBPC, mb_type = (intra), then (intraq) */
306 const uint8_t ff_h263_loop_filter_strength[32]={ 309 const uint8_t ff_h263_loop_filter_strength[32]={
307 // 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
308 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
309 }; 312 };
310 313
314 #endif