Reduce image size to avoid out of memory

AV1FrameSizeTestsLarge.ValidSize test failed on x86-win32-gcc due to
running out of memory. This commit reduce the image size for the test
to avoid the failure.

Change-Id: Ie081878c7a57b9c453a25e990f446cc3f57704a4
This commit is contained in:
Yaowu Xu 2016-12-16 11:57:01 -08:00
Родитель 6de954c3e0
Коммит 251cf36452
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -74,7 +74,7 @@ TEST_F(AV1FrameSizeTestsLarge, ValidSizes) {
// In total the allocations will exceed 2GiB which may cause a failure with
// mingw + wine, use a smaller size in that case.
#if defined(_WIN32) && !defined(_WIN64) || defined(__OS2__)
video.SetSize(4096, 3072);
video.SetSize(2560, 1440);
#else
video.SetSize(4096, 4096);
#endif