shithub: openh264

Download patch

ref: 420778f4d890726729cee6eb384c4c6963cea6b3
parent: 42ac53b5fc92782b020bcf6f5b881d8d9836dc2c
author: sijchen <sijchen@cisco.com>
date: Mon Nov 30 06:33:13 EST 2015

add valid adjustment in test to avoid outputing warning trace

--- a/test/api/encode_decode_api_test.cpp
+++ b/test/api/encode_decode_api_test.cpp
@@ -373,4 +373,3 @@
   return iSkipedBytes;
 }
 
-
--- a/test/api/encode_options_test.cpp
+++ b/test/api/encode_options_test.cpp
@@ -1232,6 +1232,9 @@
   int iSpatialLayerNum = WelsClip3 ((rand() % MAX_SPATIAL_LAYER_NUM), 2, MAX_SPATIAL_LAYER_NUM);
   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);
+  iWidth = VALID_SIZE (iWidth);
+  iHeight = VALID_SIZE (iHeight);
+
   float fFrameRate = 30;
   int iEncFrameNum = WelsClip3 ((rand() % ENCODE_FRAME_NUM) + 1, 1, ENCODE_FRAME_NUM);
   int iSliceNum        = 1;