mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
va: vpp: don't break passthrough if no color balance required
The function `_add_filter_cb_buffer()` returned TRUE if no color balance filter are required, but that's is wrong, since it will break the passthrough. This patch return FALSE which is the correct value for the situation. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2007>
This commit is contained in:
parent
b6e8741c29
commit
a29b56008a
1 changed files with 1 additions and 1 deletions
|
@ -808,7 +808,7 @@ _add_filter_cb_buffer (GstVaVpp * self,
|
|||
return gst_va_filter_add_filter_buffer (self->filter, param,
|
||||
sizeof (*param), c);
|
||||
}
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue