summaryrefslogtreecommitdiff
path: root/src/sydra.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-09-24 23:52:13 +0200
committerChristian Pointner <equinox@spreadspace.org>2014-09-24 23:52:13 +0200
commit812b94d7f880d8844da3533df083899eafe1d676 (patch)
tree3f36b14207282804818b089e0488e3530f6fdb53 /src/sydra.c
parentadded udp socket handling to own file (diff)
some name refactoring
Diffstat (limited to 'src/sydra.c')
-rw-r--r--src/sydra.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sydra.c b/src/sydra.c
index 44abc38..d246b5d 100644
--- a/src/sydra.c
+++ b/src/sydra.c
@@ -171,7 +171,7 @@ int main_loop(options_t* opt)
struct udp_sinks udp = { { NULL, NULL }, { NULL, NULL },
{ NULL, NULL }, { NULL, NULL } };
- GstElement *pipeline = create_pipeline(opt, &udp);
+ GstElement *pipeline = create_sender_pipeline(opt, &udp);
if(!pipeline) {
log_printf(ERROR, "creating pipeline failed");
return -1;
@@ -192,7 +192,7 @@ int main_loop(options_t* opt)
log_printf(INFO, "Set State: Paused");
gst_element_set_state(pipeline, GST_STATE_PAUSED);
- if(!attach_udp_descriptors(&udp))
+ if(!attach_udpsinks(&udp))
return -1;
log_printf(INFO, "Set State: Playing");