# HG changeset patch # User michael # Date 1044997936 0 # Node ID f7be067d683e49baadd32ebd090528a63e240767 # Parent e572a8df7e88789378f6e4422d6809b23c85e999 #ifdef c++ diff -r e572a8df7e88 -r f7be067d683e postproc/postprocess.h --- a/postproc/postprocess.h Tue Feb 11 20:21:52 2003 +0000 +++ b/postproc/postprocess.h Tue Feb 11 21:12:16 2003 +0000 @@ -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 @@ #define PP_FORMAT_411 (0x00000002|PP_FORMAT) #define PP_FORMAT_444 (0x00000000|PP_FORMAT) +#ifdef __cplusplus +} #endif + +#endif