mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
rtptheorapay: Remove dead assignment. Value never read after.
This commit is contained in:
parent
8cf696a1f1
commit
58a7c2ad8d
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ gst_rtp_theora_pay_handle_buffer (GstBaseRTPPayload * basepayload,
|
||||||
if (rtptheorapay->packet)
|
if (rtptheorapay->packet)
|
||||||
flush |= (rtptheorapay->payload_TDT != TDT);
|
flush |= (rtptheorapay->payload_TDT != TDT);
|
||||||
if (flush)
|
if (flush)
|
||||||
ret = gst_rtp_theora_pay_flush_packet (rtptheorapay);
|
gst_rtp_theora_pay_flush_packet (rtptheorapay);
|
||||||
|
|
||||||
/* create new packet if we must */
|
/* create new packet if we must */
|
||||||
if (!rtptheorapay->packet) {
|
if (!rtptheorapay->packet) {
|
||||||
|
|
Loading…
Reference in a new issue