From 78f28b310251cd3e35d588c9f1476e3d0ef6d983 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 23 Feb 2025 13:29:17 -0500 Subject: actual video recording is workign! --- camera.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'camera.h') diff --git a/camera.h b/camera.h index 0ea646d..56f30ee 100644 --- a/camera.h +++ b/camera.h @@ -6,6 +6,7 @@ #include #include #include +struct AVFrame; typedef uint32_t PixelFormat; typedef struct Camera Camera; @@ -127,6 +128,10 @@ bool camera_open(Camera *camera); Hash camera_hash(Camera *camera); void camera_hash_str(Camera *camera, char str[HASH_SIZE * 2 + 1]); bool camera_set_format(Camera *camera, PictureFormat picfmt, CameraAccessMethod access, bool force); +/// Copy current frame from camera to AVFrame. +/// +/// Returns `true` on success. Currently only works if both the camera and the AVFrame are in the YUV420 format. +bool camera_copy_to_av_frame(Camera *camera, struct AVFrame *frame); void camera_free(Camera *camera); #endif -- cgit v1.2.3