regression_test.txt
Upload User: lctgjx
Upload Date: 2022-06-04
Package Size: 8887k
Code Size: 1k
Category:

Streaming_Mpeg4

Development Platform:

Visual C++

  1. Here is one test method which checks that the encoder's
  2. view of decoded pictures in the same as the decoder's view.
  3. This ensures that there is no distortion besides what is
  4. inherently caused by compression.
  5. # Install and compile x264 :
  6. svn co svn://svn.videolan.org/x264/trunk x264
  7. cd x264
  8. ./configure
  9. perl -pi -e 's|//(#define DEBUG_DUMP_FRAME)|$1|' encoder/encoder.c # define DEBUG_DUMP_FRAME
  10. make
  11. cd ..
  12. # Install and compile JM reference decoder :
  13. wget http://iphome.hhi.de/suehring/tml/download/jm10.2.zip
  14. unzip jm10.2.zip
  15. cd JM
  16. sh unixprep.sh
  17. cd ldecod
  18. make
  19. cd ../..
  20. ./x264/x264 input.yuv -o output.h264 # this produces fdec.yuv
  21. ./JM/bin/ldecod.exe -i output.h264 -o ref.yuv
  22. diff ref.yuv fdec.yuv