shithub: openh264

Download patch

ref: 42592217c2f8719b0bbdd1f7500ad7b3eae23d10
parent: 73cc5862bad6518709f9a74f194d008fd2150734
author: Martin Storsjö <martin@martin.st>
date: Mon Mar 3 16:32:23 EST 2014

Use the windows INFINITE define instead of manually casting -1 to uint32_t

--- a/codec/common/WelsThreadLib.cpp
+++ b/codec/common/WelsThreadLib.cpp
@@ -123,7 +123,7 @@
 }
 
 WELS_THREAD_ERROR_CODE    WelsMultipleEventsWaitAllBlocking (uint32_t nCount, WELS_EVENT* event_list) {
-  return WaitForMultipleObjects (nCount, event_list, TRUE, (uint32_t) - 1);
+  return WaitForMultipleObjects (nCount, event_list, TRUE, INFINITE);
 }
 
 WELS_THREAD_ERROR_CODE    WelsEventDestroy (WELS_EVENT* event) {