rtpsbcpay: Fix compile error

This commit is contained in:
Arun Raghavan 2017-08-14 17:39:15 +05:30
parent f641ac60e3
commit e6b6583a5e

View file

@ -227,7 +227,7 @@ gst_rtp_sbc_pay_flush_buffers (GstRtpSBCPay * sbcpay)
res = gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (sbcpay), outbuf);
/* try to send another RTP buffer if available data exceeds MTU size */
} while (res == GST_FLOW_OK)
} while (res == GST_FLOW_OK);
return res;
}