You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: android/src/main/java/com/mrousavy/camera/Errors.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ class NoCameraDeviceError : CameraError("device", "no-device", "No device was se
39
39
classInvalidCameraDeviceError(cause:Throwable) : CameraError("device", "invalid-device", "The given Camera device could not be found for use-case binding!", cause)
40
40
classParallelVideoProcessingNotSupportedError(cause:Throwable) : CameraError("device", "parallel-video-processing-not-supported", "The given LEGACY Camera device does not support parallel " +
41
41
"video processing (`video={true}` + `frameProcessor={...}`). Disable either `video` or `frameProcessor`. To find out if a device supports parallel video processing, check the `supportsParallelVideoProcessing` property on the CameraDevice. " +
42
-
"See https://mrousavy.github.io/react-native-vision-camera/docs/guides/lifecycle#the-supportsparallelvideoprocessing-prop for more information.", cause)
42
+
"See https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#the-supportsparallelvideoprocessing-prop for more information.", cause)
43
43
44
44
classFpsNotContainedInFormatError(fps:Int) : CameraError("format", "invalid-fps", "The given FPS were not valid for the currently selected format. Make sure you select a format which `frameRateRanges` includes $fps FPS!")
0 commit comments