- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
postprocess.h
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:
VC书籍
开发平台:
Visual C++
- #ifndef POSTPROCESS_H
- #define POSTPROCESS_H
- /* we're not using <inttypes.h> for now, even on Linux */
- #define int8_t char
- #define uint8_t unsigned char
- #define int16_t short
- #define uint16_t unsigned short
- #define int32_t int
- #define uint32_t unsigned int
- #ifdef WIN32
- #define int64_t __int64
- #define uint64_t unsigned __int64
- #else
- #define int64_t long long
- #define uint64_t unsigned long long
- #endif
- #define DEBLOCK_HORIZ_USEDC_THR (28 - 12)
- #define DEBLOCK_VERT_USEDC_THR (56 - 24)
- #define QP_STORE_T int
- void postprocess(unsigned char * src[], int src_stride,
- unsigned char * dst[], int dst_stride,
- int horizontal_size, int vertical_size,
- QP_STORE_T *QP_store, int QP_stride,
- int mode);
- //#define SHOWDECISIONS_V
- //#define SHOWDECISIONS_H
- #define PP_DEBLOCK_Y_H 0x00000001
- #define PP_DEBLOCK_Y_V 0x00000002
- #define PP_DEBLOCK_C_H 0x00000004
- #define PP_DEBLOCK_C_V 0x00000008
- #define PP_DERING_Y 0x00000010
- #define PP_DERING_C 0x00000020
- #define PP_DONT_COPY 0x10000000
- #endif