summaryrefslogtreecommitdiff
path: root/camera.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-02-23 13:29:17 -0500
committerpommicket <pommicket@gmail.com>2025-02-25 15:16:08 -0500
commit78f28b310251cd3e35d588c9f1476e3d0ef6d983 (patch)
treea077d205c55a8daefc18085ac6c589ce1aacf003 /camera.h
parent31d0e293b384ac89543c309c8c3b300130495c2e (diff)
actual video recording is workign!
Diffstat (limited to 'camera.h')
-rw-r--r--camera.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/camera.h b/camera.h
index 0ea646d..56f30ee 100644
--- a/camera.h
+++ b/camera.h
@@ -6,6 +6,7 @@
#include <stddef.h>
#include <string.h>
#include <GL/glcorearb.h>
+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