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
main.cc
Package: dvd-munitions.tar.gz [view]
Upload User: aoeyumen
Upload Date: 2007-01-06
Package Size: 3329k
Code Size: 1k
Category:
DVD
Development Platform:
Unix_Linux
- /*
- File: main.cc
- Description:
- Little test to see if function mpeg2video works.
- */
- #include "athread.hh"
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/time.h>
- #include <fstream.h>
- #include <String.h>
- #ifdef USE_OPENPTC
- #include <ptc/ptc.h>
- #endif
- #include "error.hh"
- #include "debug.hh"
- #include "util.hh"
- #include "sync.hh"
- #include "mpeg2const.hh"
- #include "mpeg2buff.hh"
- #include "display.hh"
- #include "idct.hh"
- #include "vstream.hh"
- #include "layerdata.hh"
- #include "mpeg2video.hh"
- int main(int argc, char* argv[]){
- // create player
- Mpeg2Video* mpeg2video=new Mpeg2Video(0, 0, argc, argv);
- // delete player which will wait for player to finish
- delete mpeg2video;
- exit(0);
- }
- void printbits(int, int, int){ return; }