mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
libs: encoder: fix an inexact trace info in chroma type check.
This commit is contained in:
parent
f680a8cba1
commit
80b6e006bc
1 changed files with 3 additions and 2 deletions
|
@ -681,8 +681,9 @@ is_chroma_type_supported (GstVaapiEncoder * encoder)
|
|||
/* ERRORS */
|
||||
unsupported:
|
||||
{
|
||||
GST_ERROR ("We only support YUV 4:2:0 and YUV 4:2:2 for encoding. "
|
||||
"Please try to use vaapipostproc to convert the input format.");
|
||||
GST_ERROR ("The encoding format %s is not supported, "
|
||||
"Please try to use vaapipostproc to convert the input format.",
|
||||
gst_video_format_to_string (fmt));
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue