mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
rtpvorbispay: Remove dead assignment. Value never read after.
This commit is contained in:
parent
58a7c2ad8d
commit
bf9c2067cf
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ gst_rtp_vorbis_pay_handle_buffer (GstBaseRTPPayload * basepayload,
|
||||||
if (rtpvorbispay->packet)
|
if (rtpvorbispay->packet)
|
||||||
flush |= (rtpvorbispay->payload_VDT != VDT);
|
flush |= (rtpvorbispay->payload_VDT != VDT);
|
||||||
if (flush)
|
if (flush)
|
||||||
ret = gst_rtp_vorbis_pay_flush_packet (rtpvorbispay);
|
gst_rtp_vorbis_pay_flush_packet (rtpvorbispay);
|
||||||
|
|
||||||
/* create new packet if we must */
|
/* create new packet if we must */
|
||||||
if (!rtpvorbispay->packet) {
|
if (!rtpvorbispay->packet) {
|
||||||
|
|
Loading…
Reference in a new issue