comparison postprocess.h @ 44:2ed02a33f02a libpostproc

Remove extern C declarations for C++. FFmpeg is pure C and not all public headers have the declarations.
author diego
date Wed, 16 May 2007 12:25:54 +0000
parents da3bfee1fa67
children e6a94aa12c17
comparison
equal deleted inserted replaced
43:00ab07579dc3 44:2ed02a33f02a
24 /** 24 /**
25 * @file postprocess.h 25 * @file postprocess.h
26 * @brief 26 * @brief
27 * external api for the pp stuff 27 * external api for the pp stuff
28 */ 28 */
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 29
34 #define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0) 30 #define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0)
35 #define LIBPOSTPROC_VERSION 51.1.0 31 #define LIBPOSTPROC_VERSION 51.1.0
36 #define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT 32 #define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT
37 33
75 #define PP_FORMAT_411 (0x00000002|PP_FORMAT) 71 #define PP_FORMAT_411 (0x00000002|PP_FORMAT)
76 #define PP_FORMAT_444 (0x00000000|PP_FORMAT) 72 #define PP_FORMAT_444 (0x00000000|PP_FORMAT)
77 73
78 #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale 74 #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale
79 75
80 #ifdef __cplusplus
81 }
82 #endif 76 #endif
83
84 #endif