Commit 9e1c6ff1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Mediacodec: display the FourCC correctly in the logs

(cherry picked from commit 95cbca8f6ae32d64d63db62febfc46417149fee8)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent cd69efe6
...@@ -307,7 +307,7 @@ static int OpenDecoder(vlc_object_t *p_this) ...@@ -307,7 +307,7 @@ static int OpenDecoder(vlc_object_t *p_this)
case VLC_CODEC_VC1: mime = "video/wvc1"; break; case VLC_CODEC_VC1: mime = "video/wvc1"; break;
case VLC_CODEC_VP8: mime = "video/x-vnd.on2.vp8"; break; case VLC_CODEC_VP8: mime = "video/x-vnd.on2.vp8"; break;
default: default:
msg_Dbg(p_dec, "codec %d not supported", p_dec->fmt_in.i_codec); msg_Dbg(p_dec, "codec %4.4s not supported", (char *)&p_dec->fmt_in.i_codec);
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment