[vlc-commits] [Git][videolan/vlc][3.0.x] codec: omxil: fix format string
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Mon May 11 19:56:21 UTC 2026
Jean-Baptiste Kempf pushed to branch 3.0.x at VideoLAN / VLC
Commits:
a5b72d67 by François Cartegnie at 2026-05-11T21:05:11+02:00
codec: omxil: fix format string
- - - - -
1 changed file:
- modules/codec/omxil/omxil.c
Changes:
=====================================
modules/codec/omxil/omxil.c
=====================================
@@ -196,7 +196,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;
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a5b72d6797a562b30d3ba1efe2adb6a2bc161876
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a5b72d6797a562b30d3ba1efe2adb6a2bc161876
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list