neko/internal/capture/gst/gst.c

146 lines
4.2 KiB
C
Raw Normal View History

#include "gst.h"
void gstreamer_init(void) {
gst_init(NULL, NULL);
}
2021-12-06 05:52:25 +13:00
GMainLoop *gstreamer_main_loop = NULL;
void gstreamer_loop(void) {
gstreamer_main_loop = g_main_loop_new (NULL, FALSE);
g_main_loop_run(gstreamer_main_loop);
}
2021-12-06 06:16:26 +13:00
static void gstreamer_pipeline_log(GstPipelineCtx *ctx, char* level, const char* format, ...) {
2021-12-06 05:52:25 +13:00
va_list argptr;
va_start(argptr, format);
char buffer[100];
vsprintf(buffer, format, argptr);
va_end(argptr);
2021-12-06 06:16:26 +13:00
goPipelineLog(level, buffer, ctx->pipelineId);
2021-12-06 05:52:25 +13:00
}
2021-12-06 06:16:26 +13:00
static gboolean gstreamer_bus_call(GstBus *bus, GstMessage *msg, gpointer user_data) {
GstPipelineCtx *ctx = (GstPipelineCtx *)user_data;
switch (GST_MESSAGE_TYPE(msg)) {
2021-12-02 07:55:57 +13:00
case GST_MESSAGE_EOS: {
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "fatal", "end of stream");
break;
2021-12-02 07:55:57 +13:00
}
2021-12-06 05:52:25 +13:00
case GST_MESSAGE_STATE_CHANGED: {
GstState old_state, new_state;
gst_message_parse_state_changed(msg, &old_state, &new_state, NULL);
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "debug",
2021-12-06 05:52:25 +13:00
"element %s changed state from %s to %s",
GST_OBJECT_NAME(msg->src),
gst_element_state_get_name(old_state),
gst_element_state_get_name(new_state));
break;
}
case GST_MESSAGE_TAG: {
GstTagList *tags = NULL;
gst_message_parse_tag(msg, &tags);
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "debug",
2021-12-06 05:52:25 +13:00
"got tags from element %s",
GST_OBJECT_NAME(msg->src));
gst_tag_list_unref(tags);
break;
}
2021-12-02 07:55:57 +13:00
case GST_MESSAGE_ERROR: {
2021-12-06 05:52:25 +13:00
GError *err = NULL;
gchar *dbg_info = NULL;
gst_message_parse_error(msg, &err, &dbg_info);
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "error",
2021-12-06 05:52:25 +13:00
"error from element %s: %s",
GST_OBJECT_NAME(msg->src), err->message);
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "warn",
2021-12-06 05:52:25 +13:00
"debugging info: %s",
(dbg_info) ? dbg_info : "none");
2021-12-06 05:52:25 +13:00
g_error_free(err);
g_free(dbg_info);
break;
2021-12-02 07:55:57 +13:00
}
2021-12-02 07:55:57 +13:00
default:
2021-12-06 06:16:26 +13:00
gstreamer_pipeline_log(ctx, "trace", "unknown message");
2021-12-02 07:55:57 +13:00
break;
}
return TRUE;
}
2021-12-06 06:16:26 +13:00
GstPipelineCtx *gstreamer_pipeline_create(char *pipelineStr, int pipelineId, GError **error) {
GstElement *pipeline = gst_parse_launch(pipelineStr, error);
if (pipeline == NULL) return NULL;
// create gstreamer pipeline context
GstPipelineCtx *ctx = calloc(1, sizeof(GstPipelineCtx));
ctx->pipelineId = pipelineId;
ctx->pipeline = pipeline;
GstBus *bus = gst_pipeline_get_bus(GST_PIPELINE(pipeline));
gst_bus_add_watch(bus, gstreamer_bus_call, ctx);
gst_object_unref(bus);
return ctx;
}
2021-11-29 10:19:06 +13:00
static GstFlowReturn gstreamer_send_new_sample_handler(GstElement *object, gpointer user_data) {
2021-12-06 06:16:26 +13:00
GstPipelineCtx *ctx = (GstPipelineCtx *)user_data;
GstSample *sample = NULL;
GstBuffer *buffer = NULL;
gpointer copy = NULL;
gsize copy_size = 0;
2020-10-30 06:07:04 +13:00
g_signal_emit_by_name(object, "pull-sample", &sample);
if (sample) {
buffer = gst_sample_get_buffer(sample);
if (buffer) {
gst_buffer_extract_dup(buffer, 0, gst_buffer_get_size(buffer), &copy, &copy_size);
2021-12-06 06:16:26 +13:00
goHandlePipelineBuffer(copy, copy_size, GST_BUFFER_DURATION(buffer), ctx->pipelineId);
}
2020-10-30 06:07:04 +13:00
gst_sample_unref(sample);
}
return GST_FLOW_OK;
}
2021-12-06 06:16:26 +13:00
void gstreamer_pipeline_attach_appsink(GstPipelineCtx *ctx, char *sinkName) {
GstElement *appsink = gst_bin_get_by_name(GST_BIN(ctx->pipeline), sinkName);
g_object_set(appsink, "emit-signals", TRUE, NULL);
2021-12-06 06:16:26 +13:00
g_signal_connect(appsink, "new-sample", G_CALLBACK(gstreamer_send_new_sample_handler), ctx);
gst_object_unref(appsink);
2021-11-29 10:19:06 +13:00
}
2021-12-06 06:16:26 +13:00
void gstreamer_pipeline_play(GstPipelineCtx *ctx) {
gst_element_set_state(GST_ELEMENT(ctx->pipeline), GST_STATE_PLAYING);
}
2021-12-06 06:16:26 +13:00
void gstreamer_pipeline_pause(GstPipelineCtx *ctx) {
gst_element_set_state(GST_ELEMENT(ctx->pipeline), GST_STATE_PAUSED);
}
2021-12-06 06:16:26 +13:00
void gstreamer_pipeline_destory(GstPipelineCtx *ctx) {
gst_element_set_state(GST_ELEMENT(ctx->pipeline), GST_STATE_NULL);
gst_object_unref(ctx->pipeline);
}
2021-11-29 10:37:17 +13:00
2021-12-06 06:16:26 +13:00
void gstreamer_pipeline_push(GstPipelineCtx *ctx, char *srcName, void *buffer, int bufferLen) {
GstElement *src = gst_bin_get_by_name(GST_BIN(ctx->pipeline), srcName);
2021-12-02 07:55:57 +13:00
2021-11-29 10:37:17 +13:00
if (src != NULL) {
gpointer p = g_memdup(buffer, bufferLen);
GstBuffer *buffer = gst_buffer_new_wrapped(p, bufferLen);
gst_app_src_push_buffer(GST_APP_SRC(src), buffer);
gst_object_unref(src);
}
}