Commit 95cbca8f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Mediacodec: display the FourCC correctly in the logs

parent a3036326
...@@ -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