Skip to content

Commit 0d44451

Browse files
committed
fix: DesktopCapturer SetMaxFrameRate
1 parent c23271c commit 0d44451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webrtc-jni/src/main/cpp/src/JNI_DesktopCapturer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ JNIEXPORT void JNICALL Java_dev_onvoid_webrtc_media_video_desktop_DesktopCapture
9191
jni::DesktopCapturer * capturer = GetHandle<jni::DesktopCapturer>(env, caller);
9292
CHECK_HANDLE(capturer);
9393

94-
capturer->setMaxFrameRate(maxFrameRate);
94+
capturer->SetMaxFrameRate(maxFrameRate);
9595
}
9696

9797
JNIEXPORT void JNICALL Java_dev_onvoid_webrtc_media_video_desktop_DesktopCapturer_start

0 commit comments

Comments
 (0)