Remove useless file

This commit is contained in:
Quentin 2020-01-28 19:50:04 +01:00
parent d715ee2f34
commit fa13fccfb0

View file

@ -1,20 +0,0 @@
#include <gst/gst.h>
int main (int argc, char *argv[]) {
GMainLoop *loop;
GstElement *pipeline;
GstElement *rx_tap, *rx_jitter_buffer, *rx_opus_depay, *rx_opus_dec, *rx_audio_resample, *rx_sink;
gst_init (&argc, &argv);
loop = g_main_loop_new (NULL, FALSE);
pipeline = gst_pipeline_new ("output-sound");
rx_tap = gst_element_factory_make ("udpsrc", "rx-tap");
rx_jitter_buffer = gst_element_factory_make ("rtpjitterbuffer", "rx-jitter-buffer");
rx_opus_depay = gst_element_factory_make("rtpopusdepay", "rx-opus-depay");
rx_opus_dec = gst_element_factory_make ("opusdec", "rx-opus-dec");
rx_audio_resample = gst_element_factory_make ("audioresample", "rx-audio-resample");
rx_sink = gst_element_factory_make ("autoaudiosink", "rx-sink");
}