ref: f4b372497678d3c9402410e96c721a49576d4732
parent: 59fefbe7c712a77b88f09d3844becc193f374e69
author: Martin Storsjö <martin@martin.st>
date: Tue Dec 16 06:10:56 EST 2014
Increase the minimum frame size in a test with multiple spatial layers Make sure the input frame size is large enough that the downsampled layers also have a nonzero resolution.
--- a/test/api/encode_decode_api_test.cpp
+++ b/test/api/encode_decode_api_test.cpp
@@ -2057,11 +2057,11 @@
}
TEST_F (EncodeDecodeTestAPI, SetOptionEncParamExt) {
- int iWidth = WelsClip3 ((((rand() % MAX_WIDTH) >> 1) + 1) << 1, 2, MAX_WIDTH);
- int iHeight = WelsClip3 ((((rand() % MAX_HEIGHT) >> 1) + 1) << 1, 2, MAX_HEIGHT);
+ int iSpatialLayerNum = 4;
+ int iWidth = WelsClip3 ((((rand() % MAX_WIDTH) >> 1) + 1) << 1, 1 << iSpatialLayerNum, MAX_WIDTH);
+ int iHeight = WelsClip3 ((((rand() % MAX_HEIGHT) >> 1) + 1) << 1, 1 << iSpatialLayerNum, MAX_HEIGHT);
float fFrameRate = rand() + 0.5f;
int iEncFrameNum = WelsClip3 ((rand() % ENCODE_FRAME_NUM) + 1, 1, ENCODE_FRAME_NUM);
- int iSpatialLayerNum = 4;
int iSliceNum = 1;
encoder_->GetDefaultParams (¶m_);
prepareParam (iSpatialLayerNum, iSliceNum, iWidth, iHeight, fFrameRate);