diff --git a/src/call.c b/src/call.c deleted file mode 100644 index 695ee62..0000000 --- a/src/call.c +++ /dev/null @@ -1,20 +0,0 @@ -#include - -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"); - -}