diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-11 21:12:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-11 21:12:16 +0000 |
commit | 6524b641c02550b24ba1ee87ab9a528af66d288d (patch) | |
tree | 720d2dfd9ca6edb834dd95a88be911b94d5278ba /postproc | |
parent | 2720569a9a718d9b32f12261f3a32bb14f39b33b (diff) | |
download | ffmpeg-6524b641c02550b24ba1ee87ab9a528af66d288d.tar.gz |
#ifdef c++
Originally committed as revision 9402 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h index 6726fca0b2..c8af1b11b4 100644 --- a/postproc/postprocess.h +++ b/postproc/postprocess.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) + Copyright (C) 2001-2003 Michael Niedermayer (michaelni@gmx.at) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,6 +19,16 @@ #ifndef NEWPOSTPROCESS_H #define NEWPOSTPROCESS_H +/** + * @file postprocess.h + * @brief + * external api for the pp stuff + */ + +#ifdef __cplusplus +extern "C" { +#endif + #define PP_QUALITY_MAX 6 #define QP_STORE_T int8_t @@ -56,4 +66,8 @@ void pp_free_context(pp_context_t *ppContext); #define PP_FORMAT_411 (0x00000002|PP_FORMAT) #define PP_FORMAT_444 (0x00000000|PP_FORMAT) +#ifdef __cplusplus +} +#endif + #endif |