mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
cleared naming issues, still doesn't play
Original commit message from CVS: cleared naming issues, still doesn't play
This commit is contained in:
parent
bbb64b5412
commit
0db9c4b9c4
2 changed files with 4 additions and 2 deletions
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue