fix: Incorrect docs in frameProcessorFps

This commit is contained in:
Marc Rousavy 2021-05-07 16:34:37 +02:00 committed by GitHub
parent 49ae9844da
commit f823ec5268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,8 @@ export interface CameraProps extends ViewProps {
*
* * A value of `1` (default) indicates that the frame processor gets executed once per second, perfect for code scanning.
* * A value of `10` indicates that the frame processor gets executed 10 times per second, perfect for more realtime use-cases.
* * A value of `25` indicates that the frame processor gets executed 30 times per second, perfect for high-speed realtime use-cases.
* * A value of `25` indicates that the frame processor gets executed 25 times per second, perfect for high-speed realtime use-cases.
* * ...and so on
*
* If you're using higher values, always check your Xcode/Android Studio Logs to make sure your frame processors are executing fast enough
* without blocking the video recording queue.