comparison h261.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 65b1bfb3a74c
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
23 /** 23 /**
24 * @file h261.c 24 * @file h261.c
25 * h261codec. 25 * h261codec.
26 */ 26 */
27 27
28 #ifndef AVCODEC_H261_H
29 #define AVCODEC_H261_H
30
28 #include "mpegvideo.h" 31 #include "mpegvideo.h"
29 32
30 /** 33 /**
31 * H261Context 34 * H261Context
32 */ 35 */
42 int gob_number; 45 int gob_number;
43 int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read 46 int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read
44 }H261Context; 47 }H261Context;
45 48
46 #define MB_TYPE_H261_FIL 0x800000 49 #define MB_TYPE_H261_FIL 0x800000
50
51 #endif