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
regression_test.txt
Package: X264CODEC.rar [view]
Upload User: lctgjx
Upload Date: 2022-06-04
Package Size: 8887k
Code Size: 1k
Category:
Streaming_Mpeg4
Development Platform:
Visual C++
- Here is one test method which checks that the encoder's
- view of decoded pictures in the same as the decoder's view.
- This ensures that there is no distortion besides what is
- inherently caused by compression.
- # Install and compile x264 :
- svn co svn://svn.videolan.org/x264/trunk x264
- cd x264
- ./configure
- perl -pi -e 's|//(#define DEBUG_DUMP_FRAME)|$1|' encoder/encoder.c # define DEBUG_DUMP_FRAME
- make
- cd ..
- # Install and compile JM reference decoder :
- wget http://iphome.hhi.de/suehring/tml/download/jm10.2.zip
- unzip jm10.2.zip
- cd JM
- sh unixprep.sh
- cd ldecod
- make
- cd ../..
- ./x264/x264 input.yuv -o output.h264 # this produces fdec.yuv
- ./JM/bin/ldecod.exe -i output.h264 -o ref.yuv
- diff ref.yuv fdec.yuv