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 /libpostproc | |
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 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index eed92ba6d5..a240558f72 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -27,10 +27,6 @@ * external api for the pp stuff */ -#ifdef __cplusplus -extern "C" { -#endif - #define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0) #define LIBPOSTPROC_VERSION 51.1.0 #define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT @@ -77,8 +73,4 @@ void pp_free_context(pp_context_t *ppContext); #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale -#ifdef __cplusplus -} -#endif - #endif |