cleanup c files.

This commit is contained in:
Miroslav Šedivý
2021-11-07 17:09:00 +01:00
parent dfcb817eec
commit 33256f2ff2
4 changed files with 36 additions and 61 deletions

View File

@ -1,10 +1,7 @@
#ifndef GST_H
#define GST_H
#pragma once
#include <glib.h>
#include <gst/gst.h>
#include <stdint.h>
#include <stdlib.h>
#include <gst/app/gstappsrc.h>
extern void goHandlePipelineBuffer(void *buffer, int bufferLen, int samples, int pipelineId);
@ -13,7 +10,4 @@ GstElement *gstreamer_send_create_pipeline(char *pipeline, GError **error);
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);
#endif