mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
vafilter: Fix logging of unsupported alpha blending.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2477>
This commit is contained in:
parent
be2dfd0c36
commit
46e536898f
1 changed files with 1 additions and 1 deletions
|
@ -1729,7 +1729,7 @@ gst_va_filter_has_compose (GstVaFilter * self)
|
||||||
|
|
||||||
/* some drivers can compose, but may not support blending (e.g. GALLIUM) */
|
/* some drivers can compose, but may not support blending (e.g. GALLIUM) */
|
||||||
#ifndef GST_DISABLE_GST_DEBUG
|
#ifndef GST_DISABLE_GST_DEBUG
|
||||||
if (self->pipeline_caps.blend_flags & VA_BLEND_GLOBAL_ALPHA)
|
if (!(self->pipeline_caps.blend_flags & VA_BLEND_GLOBAL_ALPHA))
|
||||||
GST_WARNING_OBJECT (self, "VPP does not support alpha blending");
|
GST_WARNING_OBJECT (self, "VPP does not support alpha blending");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue