mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
rtpbin: make warning messages more meaningful
This commit is contained in:
parent
ce0fb9bd29
commit
3b65663846
1 changed files with 8 additions and 4 deletions
|
@ -3889,7 +3889,8 @@ create_recv_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
|
|||
/* ERRORS */
|
||||
no_name:
|
||||
{
|
||||
g_warning ("rtpbin: invalid name given");
|
||||
g_warning ("rtpbin: cannot find session id for pad: %s",
|
||||
GST_STR_NULL (name));
|
||||
return NULL;
|
||||
}
|
||||
create_error:
|
||||
|
@ -4064,7 +4065,8 @@ create_recv_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ,
|
|||
/* ERRORS */
|
||||
no_name:
|
||||
{
|
||||
g_warning ("rtpbin: invalid name given");
|
||||
g_warning ("rtpbin: cannot find session id for pad: %s",
|
||||
GST_STR_NULL (name));
|
||||
return NULL;
|
||||
}
|
||||
create_error:
|
||||
|
@ -4393,7 +4395,8 @@ create_send_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
|
|||
/* ERRORS */
|
||||
no_name:
|
||||
{
|
||||
g_warning ("rtpbin: invalid name given");
|
||||
g_warning ("rtpbin: cannot find session id for pad: %s",
|
||||
GST_STR_NULL (name));
|
||||
return NULL;
|
||||
}
|
||||
create_error:
|
||||
|
@ -4547,7 +4550,8 @@ create_send_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ,
|
|||
/* ERRORS */
|
||||
no_name:
|
||||
{
|
||||
g_warning ("rtpbin: invalid name given");
|
||||
g_warning ("rtpbin: cannot find session id for pad: %s",
|
||||
GST_STR_NULL (name));
|
||||
return NULL;
|
||||
}
|
||||
create_error:
|
||||
|
|
Loading…
Reference in a new issue