From 7f14bfe8b8ce8a98d56d29539fc439f1fa04dd96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Wed, 10 Jan 2024 12:40:54 +0100 Subject: [PATCH] va: basedec: fix return type Part-of: --- subprojects/gst-plugins-bad/sys/va/gstvabasedec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/sys/va/gstvabasedec.c b/subprojects/gst-plugins-bad/sys/va/gstvabasedec.c index bcd14d696a..ab33fa33f0 100644 --- a/subprojects/gst-plugins-bad/sys/va/gstvabasedec.c +++ b/subprojects/gst-plugins-bad/sys/va/gstvabasedec.c @@ -1134,7 +1134,7 @@ gst_va_base_dec_process_output (GstVaBaseDec * base, GstVideoCodecFrame * frame, base->need_negotiation = TRUE; if (!gst_video_decoder_negotiate (vdec)) { GST_ERROR_OBJECT (base, "Could not re-negotiate with updated state"); - return GST_FLOW_ERROR; + return FALSE; } }