comparison mpeg4data.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
22 22
23 /** 23 /**
24 * @file mpeg4data.h 24 * @file mpeg4data.h
25 * mpeg4 tables. 25 * mpeg4 tables.
26 */ 26 */
27
28 #ifndef AVCODEC_MPEG4DATA_H
29 #define AVCODEC_MPEG4DATA_H
27 30
28 #include <stdint.h> 31 #include <stdint.h>
29 #include "mpegvideo.h" 32 #include "mpegvideo.h"
30 33
31 // shapes 34 // shapes
423 }; 426 };
424 427
425 static const uint8_t mpeg4_dc_threshold[8]={ 428 static const uint8_t mpeg4_dc_threshold[8]={
426 99, 13, 15, 17, 19, 21, 23, 0 429 99, 13, 15, 17, 19, 21, 23, 0
427 }; 430 };
431
432 #endif