rtp: opuspay: fix memory leak in gst_rtp_opus_pay_setcaps.

The src caps were never dereferenced, causing a memory leak.
This commit is contained in:
Knut Andre Tidemann 2019-07-22 10:28:50 +02:00
parent 5fde140e6e
commit dbd7234191

View file

@ -125,6 +125,7 @@ gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
if (!gst_value_can_intersect (&default_value, value))
encoding_name = "X-GST-OPUS-DRAFT-SPITTKA-00";
}
gst_caps_unref (src_caps);
}
s = gst_caps_get_structure (caps, 0);