examples/camera: fix spelling errors

Fix typos found by codespell:
- camera_bkgd.c: defaul -> default
- camera_main.c: memorys -> memories (2 occurrences)
- camera_main.c: freame -> frame
- camera_main.c: valiable -> variable

Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
This commit is contained in:
wangjianyu3 2026-03-16 20:31:54 +08:00 committed by simbit18
parent 10056077f4
commit 8cd9e9acc2
2 changed files with 5 additions and 5 deletions

View file

@ -249,7 +249,7 @@ int nximage_initialize(void)
}
/* Start a separate thread to listen for server events.
* For simplicity, use defaul thread attribute.
* For simplicity, use default thread attribute.
*/
ret = pthread_create(&thread, NULL, nximage_listener, NULL);

View file

@ -534,7 +534,7 @@ int main(int argc, FAR char *argv[])
* Set FULLHD size in ISX012 case, QUADVGA size in ISX019 case or other
* image sensors,
* Number of frame buffers is defined as STILL_BUFNUM(1).
* And all allocated memorys are VIDIOC_QBUFed.
* And all allocated memories are VIDIOC_QBUFed.
*/
if (capture_num != 0 && capture_type == V4L2_BUF_TYPE_STILL_CAPTURE)
@ -580,9 +580,9 @@ int main(int argc, FAR char *argv[])
* order from the captured frame buffer and a new camera image is
* recaptured.
*
* Allocate freame buffers for QVGA RGB565 size (320x240x2=150KB).
* Allocate frame buffers for QVGA RGB565 size (320x240x2=150KB).
* Number of frame buffers is defined as VIDEO_BUFNUM(3).
* And all allocated memorys are VIDIOC_QBUFed.
* And all allocated memories are VIDIOC_QBUFed.
*/
ret = camera_prepare(v_fd, V4L2_BUF_TYPE_VIDEO_CAPTURE,
@ -603,7 +603,7 @@ int main(int argc, FAR char *argv[])
*
* APP_STATE_UNDER_CAPTURE:
* This state will start taking picture and store the image into files.
* Number of taking pictures is set capture_num valiable.
* Number of taking pictures is set capture_num variable.
* It can be changed by command line argument.
* After finishing taking pictures, the state will be changed to
* APP_STATE_AFTER_CAPTURE.