Remove useless file
This commit is contained in:
parent
d715ee2f34
commit
fa13fccfb0
1 changed files with 0 additions and 20 deletions
20
src/call.c
20
src/call.c
|
@ -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");
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue