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
frame.h
Package: chapter15.rar [view]
Upload User: hjq518
Upload Date: 2021-12-09
Package Size: 5084k
Code Size: 1k
Category:
Audio program
Development Platform:
Visual C++
- /*!
- ************************************************************************
- * file frame.h
- *
- * brief
- * headers for frame format related information
- *
- * author
- *
- ************************************************************************
- */
- #ifndef _FRAME_H_
- #define _FRAME_H_
- typedef struct
- {
- int yuv_format; //!< YUV format (0=4:0:0, 1=4:2:0, 2=4:2:2, 3=4:4:4)
- int rgb_format; //!< 4:4:4 format (0: YUV, 1: RGB)
- int width; //!< luma component frame width
- int height; //!< luma component frame height
- int height_cr; //!< chroma component frame width
- int width_cr; //!< chroma component frame height
- int mb_width; //!< luma component frame width
- int mb_height; //!< luma component frame height
- int size_cmp[3]; //!< component sizes
- int size; //!< total image size
- int bit_depth[3]; //!< component bit depth
- int max_value[3]; //!< component max value
- int max_value_sq[3]; //!< component max value squared
- } FrameFormat;
- #endif