Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
postprocess.h
Package: Visual C++视频音频开发实用工程案例精选.rar [view]
Upload User: tuheem
Upload Date: 2007-05-01
Package Size: 21889k
Code Size: 1k
Category:
Multimedia Develop
Development Platform:
Visual C++
- #ifndef POSTPROCESS_H
- #define POSTPROCESS_H
- #include "portab.h"
- #define DEBLOCK_HORIZ_USEDC_THR (28 - 8)
- #define DEBLOCK_VERT_USEDC_THR (56 - 16)
- #define QP_STORE_T int
- #ifdef TSINGHUA
- #define QP_STORE_T int16_t
- #endif
- #define PP_DEBLOCK_Y_H_MASK 0x00ff0000
- #define PP_DEBLOCK_Y_V_MASK 0x0000ff00
- #define PP_DERING_Y_MASK 0x000000ff
- 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 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