Test all YUV decode paths

This commit is contained in:
DRC
2011-02-22 19:59:05 +00:00
parent e7c15f3e41
commit e005c1f751

View File

@@ -631,8 +631,12 @@ int main(int argc, char *argv[])
yuv=YUVDECODE;
dotest(48, 48, 3, TJ_444, "test");
dotest(35, 39, 3, TJ_444, "test");
dotest(48, 48, 3, TJ_422, "test");
dotest(39, 41, 3, TJ_422, "test");
dotest(48, 48, 3, TJ_420, "test");
dotest(41, 35, 3, TJ_420, "test");
dotest(48, 48, 1, TJ_GRAYSCALE, "test");
dotest(39, 41, 1, TJ_GRAYSCALE, "test");
dotest(35, 39, 1, TJ_GRAYSCALE, "test");
}
return exitstatus;