mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
h263pay: fix invalid return value
This commit is contained in:
parent
d0b936acc7
commit
b1d771cf8c
1 changed files with 1 additions and 1 deletions
|
@ -1607,7 +1607,7 @@ gst_rtp_h263_pay_flush (GstRtpH263Pay * rtph263pay)
|
|||
GST_DEBUG ("MTU: %d", context->mtu);
|
||||
rtph263pay->available_data = gst_adapter_available (rtph263pay->adapter);
|
||||
if (rtph263pay->available_data == 0) {
|
||||
ret = GST_FLOW_RESEND;
|
||||
ret = GST_FLOW_OK;
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue