[vlc-devel] [PATCH] omxil: fix format string of log

Zhao Zhili quinkblack at foxmail.com
Wed May 2 14:55:11 CEST 2018


---
 modules/codec/omxil/omxil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/omxil/omxil.c b/modules/codec/omxil/omxil.c
index 1658633..f99adaf 100644
--- a/modules/codec/omxil/omxil.c
+++ b/modules/codec/omxil/omxil.c
@@ -128,7 +128,7 @@ static OMX_ERRORTYPE ImplementationSpecificWorkarounds(decoder_t *p_dec,
            p_fmt->i_codec == VLC_CODEC_H264 &&
            (i_profile != PROFILE_H264_BASELINE || i_level > 30))
         {
-            msg_Dbg(p_dec, "h264 profile/level not supported (0x" PRIx8 ", 0x" PRIx8 ")",
+            msg_Dbg(p_dec, "h264 profile/level not supported (0x%" PRIx8 ", 0x%" PRIx8 ")",
                     i_profile, i_level);
             return OMX_ErrorNotImplemented;
         }
-- 
2.9.5





More information about the vlc-devel mailing list