summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-16 12:26:47 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-16 12:26:47 +0000
commitc339e74ac883a18adfb75cfc20a8b85937b0e964 (patch)
tree217e4070c64fefbe41ed338ef338c28d1f598040 /libswscale
parented7594a115519efff98dc17b38c520be4c45d534 (diff)
downloadmpv-c339e74ac883a18adfb75cfc20a8b85937b0e964.tar.bz2
mpv-c339e74ac883a18adfb75cfc20a8b85937b0e964.tar.xz
Remove extern C declarations for C++.
FFmpeg is pure C and not all public headers have the declarations. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23322 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index adad02f5a5..aa4c25483c 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -29,10 +29,6 @@
#include "avutil.h"
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
@@ -142,8 +138,4 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
int dstW, int dstH, int dstFormat, int flags,
SwsFilter *srcFilter, SwsFilter *dstFilter, double *param);
-#ifdef __cplusplus
-}
-#endif
-
#endif