neko/internal/capture/gst/gst.h

24 lines
819 B
C
Raw Normal View History

2021-01-12 03:57:14 +13:00
#pragma once
2021-12-06 05:52:25 +13:00
#include <stdio.h>
#include <gst/gst.h>
2021-01-12 03:57:14 +13:00
#include <gst/app/gstappsrc.h>
2021-12-06 06:16:26 +13:00
typedef struct GstPipelineCtx {
int pipelineId;
GstElement *pipeline;
} GstPipelineCtx;
extern void goHandlePipelineBuffer(void *buffer, int bufferLen, int samples, int pipelineId);
2021-12-06 06:16:26 +13:00
extern void goPipelineLog(char *level, char *msg, int pipelineId);
2021-12-06 06:16:26 +13:00
GstPipelineCtx *gstreamer_pipeline_create(char *pipelineStr, int pipelineId, GError **error);
void gstreamer_pipeline_attach_appsink(GstPipelineCtx *ctx, char *sinkName);
void gstreamer_pipeline_play(GstPipelineCtx *ctx);
void gstreamer_pipeline_pause(GstPipelineCtx *ctx);
void gstreamer_pipeline_destory(GstPipelineCtx *ctx);
void gstreamer_pipeline_push(GstPipelineCtx *ctx, char *srcName, void *buffer, int bufferLen);
2021-11-29 10:19:06 +13:00
void gstreamer_init(void);
2021-12-06 05:52:25 +13:00
void gstreamer_loop(void);