comparison dvdata.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
21 21
22 /** 22 /**
23 * @file dvdata.h 23 * @file dvdata.h
24 * Constants for DV codec. 24 * Constants for DV codec.
25 */ 25 */
26
27 #ifndef AVCODEC_DVDATA_H
28 #define AVCODEC_DVDATA_H
26 29
27 #include "avcodec.h" 30 #include "avcodec.h"
28 #include "rational.h" 31 #include "rational.h"
29 32
30 /* 33 /*
2723 buf[1] = 0xf0 | /* reserved -- always 1 */ 2726 buf[1] = 0xf0 | /* reserved -- always 1 */
2724 (syb_num & 0x0f); /* SSYB number 0 - 11 */ 2727 (syb_num & 0x0f); /* SSYB number 0 - 11 */
2725 buf[2] = 0xff; /* reserved -- always 1 */ 2728 buf[2] = 0xff; /* reserved -- always 1 */
2726 return 3; 2729 return 3;
2727 } 2730 }
2731
2732 #endif