From e6b6583a5ed2c98b6320566b66e284c97524f812 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Mon, 14 Aug 2017 17:39:15 +0530 Subject: [PATCH] rtpsbcpay: Fix compile error --- gst/rtp/gstrtpsbcpay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/gstrtpsbcpay.c b/gst/rtp/gstrtpsbcpay.c index 8aa4ef8..1d2cbd4 100644 --- a/gst/rtp/gstrtpsbcpay.c +++ b/gst/rtp/gstrtpsbcpay.c @@ -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; } -- 2.7.4