[FFmpeg-devel] [PATCH] avutil/hwcontext_videotoolbox: silence warning for RGB
gnattu
gnattuoc at me.com
Sat Aug 10 09:13:39 EEST 2024
Hardware frames with RGB colorspace will not have a YCbCrMatrixKey.
Currently, it will spam the console with warning if rgb frame is
uploaded.
Signed-off-by: Gnattu OC <gnattuoc at me.com>
---
libavutil/hwcontext_videotoolbox.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/hwcontext_videotoolbox.c b/libavutil/hwcontext_videotoolbox.c
index 80eaab64f08..122a61d5e78 100644
--- a/libavutil/hwcontext_videotoolbox.c
+++ b/libavutil/hwcontext_videotoolbox.c
@@ -576,7 +576,7 @@ static int vt_pixbuf_set_colorspace(void *log_ctx,
colormatrix, kCVAttachmentMode_ShouldPropagate);
else {
CVBufferRemoveAttachment(pixbuf, kCVImageBufferYCbCrMatrixKey);
- if (src->colorspace != AVCOL_SPC_UNSPECIFIED)
+ if (src->colorspace != AVCOL_SPC_UNSPECIFIED && src->colorspace != AVCOL_SPC_RGB)
av_log(log_ctx, AV_LOG_WARNING,
"Color space %s is not supported.\n",
av_color_space_name(src->colorspace));
--
2.39.3 (Apple Git-146)
More information about the ffmpeg-devel
mailing list