[vlc-commits] omxil: fix format string of log
Zhao Zhili
git at videolan.org
Sat May 5 14:20:20 CEST 2018
vlc | branch: master | Zhao Zhili <quinkblack at foxmail.com> | Wed May 2 20:55:11 2018 +0800| [79974d7dfb962e0dccca10e757fc6660d96c5456] | committer: Jean-Baptiste Kempf
omxil: fix format string of log
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=79974d7dfb962e0dccca10e757fc6660d96c5456
---
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 d9d9f5a98b..0f33e3e840 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;
}
More information about the vlc-commits
mailing list