mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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);
|
GST_DEBUG ("MTU: %d", context->mtu);
|
||||||
rtph263pay->available_data = gst_adapter_available (rtph263pay->adapter);
|
rtph263pay->available_data = gst_adapter_available (rtph263pay->adapter);
|
||||||
if (rtph263pay->available_data == 0) {
|
if (rtph263pay->available_data == 0) {
|
||||||
ret = GST_FLOW_RESEND;
|
ret = GST_FLOW_OK;
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue