Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions transport/owr_transport_agent.c
Original file line number Diff line number Diff line change
Expand Up @@ -2125,7 +2125,7 @@ static void setup_video_receive_elements(GstPad *new_pad, guint32 session_id, Ow
g_object_set_data(G_OBJECT(new_pad), "transport-agent", (gpointer)transport_agent);
g_object_set_data(G_OBJECT(new_pad), "session-id", GUINT_TO_POINTER(session_id));

g_snprintf(name, OWR_OBJECT_NAME_LENGTH_MAX, "receive-output-bin-%u", session_id);
g_snprintf(name, OWR_OBJECT_NAME_LENGTH_MAX, "receive-output-bin-%u-video", session_id);
receive_output_bin = gst_bin_new(name);

gst_bin_add(GST_BIN(transport_agent->priv->transport_bin), receive_output_bin);
Expand Down Expand Up @@ -2184,7 +2184,7 @@ static void setup_audio_receive_elements(GstPad *new_pad, guint32 session_id, Ow
g_object_set_data(G_OBJECT(new_pad), "transport-agent", (gpointer)transport_agent);
g_object_set_data(G_OBJECT(new_pad), "session-id", GUINT_TO_POINTER(session_id));

pad_name = g_strdup_printf("receive-output-bin-%u", session_id);
pad_name = g_strdup_printf("receive-output-bin-%u-audio", session_id);
receive_output_bin = gst_bin_new(pad_name);
g_free(pad_name);
pad_name = NULL;
Expand Down