- 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源码
regression_test.txt
资源名称:X264CODEC.rar [点击查看]
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:1k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
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