diff options
author | Måns Rullgård | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/dvdata.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index 4484933a01..f493da1be7 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -24,6 +24,9 @@ * Constants for DV codec. */ +#ifndef AVCODEC_DVDATA_H +#define AVCODEC_DVDATA_H + #include "avcodec.h" #include "rational.h" @@ -2725,3 +2728,5 @@ static inline int dv_write_ssyb_id(uint8_t syb_num, uint8_t fr, uint8_t* buf) buf[2] = 0xff; /* reserved -- always 1 */ return 3; } + +#endif |