1
0
Fork 0
mirror of https://github.com/m1k1o/neko.git synced 2025-08-06 10:20:26 +02:00
neko/internal/capture/gst/gst.h
2021-01-12 16:12:05 +01:00

12 lines
419 B
C

#pragma once
#include <gst/gst.h>
#include <gst/app/gstappsrc.h>
extern void goHandlePipelineBuffer(void *buffer, int bufferLen, int samples, int pipelineId);
void gstreamer_send_start_pipeline(GstElement *pipeline, int pipelineId);
void gstreamer_send_play_pipeline(GstElement *pipeline);
void gstreamer_send_stop_pipeline(GstElement *pipeline);
void gstreamer_send_start_mainloop(void);
void gstreamer_init(void);