mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
rtpsession: degrade g_warning to GST_ERROR
So we don't blow up while investigating
This commit is contained in:
parent
11b7575cff
commit
babc591707
1 changed files with 1 additions and 1 deletions
|
@ -4086,7 +4086,7 @@ done:
|
||||||
empty_buffer = gst_buffer_get_size (buffer) == 0;
|
empty_buffer = gst_buffer_get_size (buffer) == 0;
|
||||||
|
|
||||||
if (empty_buffer)
|
if (empty_buffer)
|
||||||
g_warning ("rtpsession: Trying to send an empty RTCP packet");
|
GST_ERROR ("rtpsession: Trying to send an empty RTCP packet");
|
||||||
|
|
||||||
if (sess->callbacks.send_rtcp &&
|
if (sess->callbacks.send_rtcp &&
|
||||||
!empty_buffer && (do_not_suppress || !data.may_suppress)) {
|
!empty_buffer && (do_not_suppress || !data.may_suppress)) {
|
||||||
|
|
Loading…
Reference in a new issue