summaryrefslogtreecommitdiff
path: root/include/uvcgadget/video-source.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/uvcgadget/video-source.h')
-rw-r--r--include/uvcgadget/video-source.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uvcgadget/video-source.h b/include/uvcgadget/video-source.h
index 60f7ddd..b1a3cf4 100644
--- a/include/uvcgadget/video-source.h
+++ b/include/uvcgadget/video-source.h
@@ -26,6 +26,7 @@ struct video_source_ops {
int(*stream_on)(struct video_source *src);
int(*stream_off)(struct video_source *src);
int(*queue_buffer)(struct video_source *src, struct video_buffer *buf);
+ void(*fill_buffer)(struct video_source *src, struct video_buffer *buf);
};
typedef void(*video_source_buffer_handler_t)(void *, struct video_source *,
@@ -53,5 +54,7 @@ int video_source_stream_on(struct video_source *src);
int video_source_stream_off(struct video_source *src);
int video_source_queue_buffer(struct video_source *src,
struct video_buffer *buf);
+void video_source_fill_buffer(struct video_source *src,
+ struct video_buffer *buf);
#endif /* __VIDEO_SOURCE_H__ */