# HG changeset patch # User diego # Date 1203552722 0 # Node ID 04f59a060070c83179d77efa35a46e504b5688a0 # Parent aee6ea2b39eeb0efbc7c2798639fccbf4df2e3ed Add missing multiple inclusion guards. diff -r aee6ea2b39ee -r 04f59a060070 libvo/spuenc.h --- a/libvo/spuenc.h Thu Feb 21 00:10:33 2008 +0000 +++ b/libvo/spuenc.h Thu Feb 21 00:12:02 2008 +0000 @@ -19,6 +19,9 @@ * */ +#ifndef SPUENC_H +#define SPUENC_H + #include #define DATASIZE 53220 @@ -38,3 +41,5 @@ void pixbuf_encode_rle(int x, int y, int w, int h, char *inbuf, int stride, encodedata *ed); void pixbuf_delete(pixbuf* pb); + +#endif /* SPUENC_H */ diff -r aee6ea2b39ee -r 04f59a060070 stream/tvi_def.h --- a/stream/tvi_def.h Thu Feb 21 00:10:33 2008 +0000 +++ b/stream/tvi_def.h Thu Feb 21 00:12:02 2008 +0000 @@ -1,3 +1,6 @@ +#ifndef TVI_DEF_H +#define TVI_DEF_H + #include /* malloc */ #include /* memset */ @@ -103,3 +106,5 @@ memset(buffer,0xC0,len); } } + +#endif /* TVI_DEF_H */ diff -r aee6ea2b39ee -r 04f59a060070 stream/vcd_read.h --- a/stream/vcd_read.h Thu Feb 21 00:10:33 2008 +0000 +++ b/stream/vcd_read.h Thu Feb 21 00:12:02 2008 +0000 @@ -1,3 +1,6 @@ +#ifndef VCD_READ_H +#define VCD_READ_H + #include "libavutil/intreadwrite.h" //=================== VideoCD ========================== #if defined(linux) || defined(sun) || defined(__bsdi__) @@ -221,3 +224,5 @@ #error vcd is not yet supported on this arch... #endif + +#endif /* VCD_READ_H */ diff -r aee6ea2b39ee -r 04f59a060070 stream/vcd_read_darwin.h --- a/stream/vcd_read_darwin.h Thu Feb 21 00:10:33 2008 +0000 +++ b/stream/vcd_read_darwin.h Thu Feb 21 00:12:02 2008 +0000 @@ -1,3 +1,6 @@ +#ifndef VCD_READ_DARWIN_H +#define VCD_READ_DARWIN_H + #include #include #include @@ -200,3 +203,4 @@ return VCD_SECTOR_DATA; } +#endif /* VCD_READ_DARWIN_H */ diff -r aee6ea2b39ee -r 04f59a060070 stream/vcd_read_fbsd.h --- a/stream/vcd_read_fbsd.h Thu Feb 21 00:10:33 2008 +0000 +++ b/stream/vcd_read_fbsd.h Thu Feb 21 00:12:02 2008 +0000 @@ -1,3 +1,6 @@ +#ifndef VCD_READ_FBSD_H +#define VCD_READ_FBSD_H + #include #include #include "libavutil/intreadwrite.h" @@ -230,3 +233,4 @@ return VCD_SECTOR_DATA; } +#endif /* VCD_READ_FBSD_H */