mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
rtprtxsend: remove unused parameter from the internal reset() method
This commit is contained in:
parent
6d588ad6bb
commit
f9f7e6e721
1 changed files with 3 additions and 3 deletions
|
@ -198,7 +198,7 @@ gst_rtp_rtx_send_class_init (GstRtpRtxSendClass * klass)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_rtp_rtx_send_reset (GstRtpRtxSend * rtx, gboolean full)
|
gst_rtp_rtx_send_reset (GstRtpRtxSend * rtx)
|
||||||
{
|
{
|
||||||
GST_OBJECT_LOCK (rtx);
|
GST_OBJECT_LOCK (rtx);
|
||||||
g_queue_foreach (rtx->pending, (GFunc) gst_buffer_unref, NULL);
|
g_queue_foreach (rtx->pending, (GFunc) gst_buffer_unref, NULL);
|
||||||
|
@ -215,7 +215,7 @@ gst_rtp_rtx_send_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstRtpRtxSend *rtx = GST_RTP_RTX_SEND (object);
|
GstRtpRtxSend *rtx = GST_RTP_RTX_SEND (object);
|
||||||
|
|
||||||
gst_rtp_rtx_send_reset (rtx, TRUE);
|
gst_rtp_rtx_send_reset (rtx);
|
||||||
|
|
||||||
g_hash_table_unref (rtx->ssrc_data);
|
g_hash_table_unref (rtx->ssrc_data);
|
||||||
g_hash_table_unref (rtx->rtx_ssrcs);
|
g_hash_table_unref (rtx->rtx_ssrcs);
|
||||||
|
@ -764,7 +764,7 @@ gst_rtp_rtx_send_change_state (GstElement * element, GstStateChange transition)
|
||||||
|
|
||||||
switch (transition) {
|
switch (transition) {
|
||||||
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
||||||
gst_rtp_rtx_send_reset (rtx, TRUE);
|
gst_rtp_rtx_send_reset (rtx);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue