regression_test.txt 608 B

123456789101112131415161718192021222324
  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. git clone git://git.videolan.org/x264.git x264
  7. cd x264
  8. ./configure
  9. make
  10. cd ..
  11. # Install and compile JM reference decoder :
  12. wget http://iphome.hhi.de/suehring/tml/download/jm17.2.zip
  13. unzip jm17.2.zip
  14. cd JM
  15. sh unixprep.sh
  16. cd ldecod
  17. make
  18. cd ../..
  19. ./x264/x264 input.yuv --dump-yuv fdec.yuv -o output.h264
  20. ./JM/bin/ldecod.exe -i output.h264 -o ref.yuv
  21. diff ref.yuv fdec.yuv