[vlc-commits] videotoolbox: lower level of log message
Marvin Scholz
git at videolan.org
Fri Jul 3 13:51:51 CEST 2020
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Fri Jul 3 04:26:38 2020 +0200| [009278b57b7b68c54dec730911b3faf38dc65e19] | committer: Marvin Scholz
videotoolbox: lower level of log message
For the average user this message is not very helpful and probably
confusing.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=009278b57b7b68c54dec730911b3faf38dc65e19
---
modules/codec/videotoolbox.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/codec/videotoolbox.c b/modules/codec/videotoolbox.c
index 88b3d08472..5e5b30f0a2 100644
--- a/modules/codec/videotoolbox.c
+++ b/modules/codec/videotoolbox.c
@@ -2015,8 +2015,8 @@ static int UpdateVideoFormat(decoder_t *p_dec, CVPixelBufferRef imageBuffer)
}
OSType cvfmt = CVPixelBufferGetPixelFormatType(imageBuffer);
- msg_Info(p_dec, "output chroma (kCVPixelFormatType): %4.4s",
- (const char *)&(OSType) { htonl(cvfmt) });
+ msg_Dbg(p_dec, "output chroma (kCVPixelFormatType): %4.4s",
+ (const char *)&(OSType) { htonl(cvfmt) });
switch (cvfmt)
{
case kCVPixelFormatType_422YpCbCr8:
More information about the vlc-commits
mailing list