Add RGB --> Grayscale YUV decoding test

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@454 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC
2011-02-25 06:21:54 +00:00
parent e4d9b5b76a
commit 88534c50aa

View File

@@ -638,8 +638,10 @@ int main(int argc, char *argv[])
dotest(39, 41, 3, TJ_422, "test");
dotest(48, 48, 3, TJ_420, "test");
dotest(41, 35, 3, TJ_420, "test");
dotest(48, 48, 3, TJ_GRAYSCALE, "test");
dotest(35, 39, 3, TJ_GRAYSCALE, "test");
dotest(48, 48, 1, TJ_GRAYSCALE, "test");
dotest(35, 39, 1, TJ_GRAYSCALE, "test");
dotest(39, 41, 1, TJ_GRAYSCALE, "test");
}
return exitstatus;