diff --git a/CMakeLists.txt b/CMakeLists.txt index b1e135fb..ffffebb2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -320,6 +320,7 @@ endif() add_test(tjunittest tjunittest) add_test(tjunittest-alloc tjunittest -alloc) add_test(tjunittest-yuv tjunittest -yuv) +add_test(tjunittest-yuv-nopad tjunittest -yuv -noyuvpad) add_test(cjpeg-int sharedlib/cjpeg -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm) add_test(cjpeg-int-cmp ${CMAKE_COMMAND} -DMD5=${MD5_JPEG_INT} -DFILE=testoutint.jpg -P ${CMAKE_SOURCE_DIR}/cmakescripts/md5cmp.cmake) add_test(cjpeg-fast sharedlib/cjpeg -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm) @@ -375,6 +376,7 @@ add_test(jpegtran-crop-cmp ${CMAKE_COMMAND} -DMD5=${MD5_JPEG_CROP} -DFILE=testou add_test(tjunittest-static tjunittest-static) add_test(tjunittest-static-alloc tjunittest-static -alloc) add_test(tjunittest-static-yuv tjunittest-static -yuv) +add_test(tjunittest-static-yuv-nopad tjunittest-static -yuv -noyuvpad) add_test(cjpeg-static-int cjpeg-static -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm) add_test(cjpeg-static-int-cmp ${CMAKE_COMMAND} -DMD5=${MD5_JPEG_INT} -DFILE=testoutint.jpg -P ${CMAKE_SOURCE_DIR}/cmakescripts/md5cmp.cmake) add_test(cjpeg-static-fast cjpeg-static -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm) diff --git a/ChangeLog.txt b/ChangeLog.txt index 780cc9e3..c8596564 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,12 @@ +1.4 pre-beta +============ + +[1] The TurboJPEG API can now be used to generate YUV images with an arbitrary +line padding (previously, it only supported 4-byte padding, which was +compatible with X Video.) Also, the decompress-to-YUV function has been +extended to support image scaling. + + 1.3.0 ===== diff --git a/Makefile.am b/Makefile.am index ade5034e..67ac7c12 100644 --- a/Makefile.am +++ b/Makefile.am @@ -205,6 +205,7 @@ endif ./tjunittest ./tjunittest -alloc ./tjunittest -yuv + ./tjunittest -yuv -noyuvpad endif ./cjpeg -dct int -outfile testoutint.jpg $(srcdir)/testimages/testorig.ppm md5/md5cmp $(MD5_JPEG_INT) testoutint.jpg diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 6ad64d9f..2ab025bf 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -19,7 +19,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
1.7.4