rtpjitterbuffer: Don't forget to unlock the mutex when receiving GAPs in TCP streams

This commit is contained in:
Sebastian Dröge 2015-03-09 10:05:14 +01:00
parent 3751c87f00
commit 38bf3d3808

View file

@ -2446,7 +2446,8 @@ gap_but_no_dts:
GST_ELEMENT_ERROR (jitterbuffer, STREAM, DECODE, (NULL),
("Received packet without DTS after a gap"));
gst_buffer_unref (buffer);
return GST_FLOW_ERROR;
ret = GST_FLOW_ERROR;
goto finished;
}
}