diff --git a/modules/video_capture/windows/device_info_ds.cc b/modules/video_capture/windows/device_info_ds.cc index f9be3f83ef..69d06ca41f 100644 --- a/modules/video_capture/windows/device_info_ds.cc +++ b/modules/video_capture/windows/device_info_ds.cc @@ -439,9 +439,9 @@ int32_t DeviceInfoDS::CreateCapabilityMap(const char* deviceUniqueIdUTF8) } if (hrVC == S_OK) { - LONGLONG* frameDurationList; - LONGLONG maxFPS; - long listSize; + LONGLONG* frameDurationList = NULL; + LONGLONG maxFPS = 0; + long listSize = 0; SIZE size; size.cx = capability.width; size.cy = capability.height; @@ -454,9 +454,10 @@ int32_t DeviceInfoDS::CreateCapabilityMap(const char* deviceUniqueIdUTF8) hrVC = videoControlConfig->GetFrameRateList( outputCapturePin, tmp, size, &listSize, &frameDurationList); - // On some odd cameras, you may get a 0 for duration. - // GetMaxOfFrameArray returns the lowest duration (highest FPS) - if (hrVC == S_OK && listSize > 0 && + // On some odd cameras, you may get a 0 for duration. Some others may + // not update the out vars. GetMaxOfFrameArray returns the lowest + // duration (highest FPS), or 0 if there was no list with elements. + if (hrVC == S_OK && 0 != (maxFPS = GetMaxOfFrameArray(frameDurationList, listSize))) { capability.maxFPS = static_cast(10000000 / maxFPS); capability.supportFrameRateControl = true; diff --git a/modules/video_capture/windows/help_functions_ds.cc b/modules/video_capture/windows/help_functions_ds.cc index b767726107..47fecfe4a1 100644 --- a/modules/video_capture/windows/help_functions_ds.cc +++ b/modules/video_capture/windows/help_functions_ds.cc @@ -21,6 +21,9 @@ namespace webrtc { namespace videocapturemodule { // This returns minimum :), which will give max frame rate... LONGLONG GetMaxOfFrameArray(LONGLONG* maxFps, long size) { + if (!maxFps || size <= 0) { + return 0; + } LONGLONG maxFPS = maxFps[0]; for (int i = 0; i < size; i++) { if (maxFPS > maxFps[i])