comparison libpostproc/postprocess.h @ 1066:6ce55cd04783 libavcodec

#ifdef c++
author michael
date Tue, 11 Feb 2003 21:12:16 +0000
parents 8a95bda80fdc
children 3644e555a20a
comparison
equal deleted inserted replaced
1065:92fb44eae6b6 1066:6ce55cd04783
1 /* 1 /*
2 Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) 2 Copyright (C) 2001-2003 Michael Niedermayer (michaelni@gmx.at)
3 3
4 This program is free software; you can redistribute it and/or modify 4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or 6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version. 7 (at your option) any later version.
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */ 17 */
18 18
19 #ifndef NEWPOSTPROCESS_H 19 #ifndef NEWPOSTPROCESS_H
20 #define NEWPOSTPROCESS_H 20 #define NEWPOSTPROCESS_H
21
22 /**
23 * @file postprocess.h
24 * @brief
25 * external api for the pp stuff
26 */
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
21 31
22 #define PP_QUALITY_MAX 6 32 #define PP_QUALITY_MAX 6
23 33
24 #define QP_STORE_T int8_t 34 #define QP_STORE_T int8_t
25 35
54 #define PP_FORMAT_420 (0x00000011|PP_FORMAT) 64 #define PP_FORMAT_420 (0x00000011|PP_FORMAT)
55 #define PP_FORMAT_422 (0x00000001|PP_FORMAT) 65 #define PP_FORMAT_422 (0x00000001|PP_FORMAT)
56 #define PP_FORMAT_411 (0x00000002|PP_FORMAT) 66 #define PP_FORMAT_411 (0x00000002|PP_FORMAT)
57 #define PP_FORMAT_444 (0x00000000|PP_FORMAT) 67 #define PP_FORMAT_444 (0x00000000|PP_FORMAT)
58 68
69 #ifdef __cplusplus
70 }
59 #endif 71 #endif
72
73 #endif