diff libmpcodecs/vf_scale.h @ 25553:6ac1ece1f9fe

Add multiple inclusion guards to all header files that lack them.
author diego
date Tue, 01 Jan 2008 21:35:58 +0000
parents f580a7755ac5
children 4129c8cfa742
line wrap: on
line diff
--- a/libmpcodecs/vf_scale.h	Tue Jan 01 21:20:06 2008 +0000
+++ b/libmpcodecs/vf_scale.h	Tue Jan 01 21:35:58 2008 +0000
@@ -1,4 +1,9 @@
 //GPL
 
+#ifndef VF_SCALE_H
+#define VF_SCALE_H
+
 int get_sws_cpuflags(void);
 struct SwsContext *sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat);
+
+#endif /* VF_SCALE_H */