From 0db9c4b9c482446f961c2c79d0c8961920105a78 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 30 Apr 2001 19:51:40 +0000 Subject: [PATCH] cleared naming issues, still doesn't play Original commit message from CVS: cleared naming issues, still doesn't play --- examples/mixer/mixer.c | 3 ++- tests/old/examples/mixer/mixer.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/mixer/mixer.c b/examples/mixer/mixer.c index 029f2689c5..c63b8f71f8 100644 --- a/examples/mixer/mixer.c +++ b/examples/mixer/mixer.c @@ -250,7 +250,8 @@ create_input_channel (int id, char* location) GST_DEBUG (0, "c_i_p : creating pipeline\n"); - channel->pipe = gst_bin_new ("pipeline"); + sprintf (buffer, "pipeline%d", id); + channel->pipe = gst_bin_new (buffer); g_assert(channel->pipe != NULL); /* create elements */ diff --git a/tests/old/examples/mixer/mixer.c b/tests/old/examples/mixer/mixer.c index 029f2689c5..c63b8f71f8 100644 --- a/tests/old/examples/mixer/mixer.c +++ b/tests/old/examples/mixer/mixer.c @@ -250,7 +250,8 @@ create_input_channel (int id, char* location) GST_DEBUG (0, "c_i_p : creating pipeline\n"); - channel->pipe = gst_bin_new ("pipeline"); + sprintf (buffer, "pipeline%d", id); + channel->pipe = gst_bin_new (buffer); g_assert(channel->pipe != NULL); /* create elements */