diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-16 12:25:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-16 12:25:54 +0000 |
commit | 605315248cb59d9c4213c7035175b6e930d3b66e (patch) | |
tree | 50bcbed1bb3b79681ed78efd12a5f37784e1fe8d /libavformat/avformat.h | |
parent | 31d89e1158612481885f4d635edd819cca4792cf (diff) | |
download | ffmpeg-605315248cb59d9c4213c7035175b6e930d3b66e.tar.gz |
Remove extern C declarations for C++.
FFmpeg is pure C and not all public headers have the declarations.
Originally committed as revision 9037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 1e8028cdcd..d63966662e 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -21,10 +21,6 @@ #ifndef AVFORMAT_H #define AVFORMAT_H -#ifdef __cplusplus -extern "C" { -#endif - #define LIBAVFORMAT_VERSION_INT ((51<<16)+(12<<8)+1) #define LIBAVFORMAT_VERSION 51.12.1 #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT @@ -889,9 +885,5 @@ int match_ext(const char *filename, const char *extensions); #endif /* HAVE_AV_CONFIG_H */ -#ifdef __cplusplus -} -#endif - #endif /* AVFORMAT_H */ |