Skip to content

Commit ff892c2

Browse files
authored
docs: Emphasize "video processing"
1 parent 949c44a commit ff892c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/guides/DEVICES.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ function App() {
102102

103103
Camera devices provide the [`supportsParallelVideoProcessing` property](/docs/api/interfaces/cameradevice.cameradevice-1#supportsparallelvideoprocessing) which determines whether the device supports using Video Recordings (`video={true}`) and Frame Processors (`frameProcessor={...}`) at the same time.
104104

105-
If this property is `false`, you can either enable `video` or add a `frameProcessor`, but not both.
105+
If this property is `false`, you can either enable `video`, or add a `frameProcessor`, but not both.
106106

107107
* On iOS this value is always `true`.
108108
* On newer Android devices this value is always `true`.
109109
* On older Android devices this value is `false` if the Camera's hardware level is `LEGACY` or `LIMITED`, `true` otherwise. (See [`INFO_SUPPORTED_HARDWARE_LEVEL`](https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL) or [the tables at "Regular capture"](https://developer.android.com/reference/android/hardware/camera2/CameraDevice#regular-capture))
110110

111111
#### Examples
112112

113-
* An app that only supports **taking photos** works on every Camera device because this only affects video processing.
114-
* An app that supports **taking photos** and **videos** works on every Camera device because only a single video processing feature is used (`video`).
115-
* An app that only uses **Frame Processors** (no taking photos or videos) works on every Camera device because it only uses a single video processing feature (`frameProcessor`).
113+
* An app that only supports **taking photos** works on every Camera device because this only affects _video processing_.
114+
* An app that supports **taking photos** and **videos** works on every Camera device because only a single _video processing_ feature is used (`video`).
115+
* An app that only uses **Frame Processors** (no taking photos or videos) works on every Camera device because it only uses a single _video processing_ feature (`frameProcessor`).
116116
* An app that uses **Frame Processors** and supports **taking photos** and **videos** only works on Camera devices where `supportsParallelVideoProcessing` is `true`. (iPhones and newer Android Phones)
117117

118118
:::note

0 commit comments

Comments
 (0)