Commit 091b522e authored by Martin Storsjö's avatar Martin Storsjö

mediacodec: Support playing back VP8 as well

This seems to work just fine on Samsung Galaxy S3 and Sony Xperia Z1.
(This didn't use to work in earlier Galaxy S3 firmwares even though
it was exposed in MediaCodecList, but currently it seems to work
just fine.)
Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 925290c2
......@@ -196,6 +196,7 @@ static int OpenDecoder(vlc_object_t *p_this)
case VLC_CODEC_H263: mime = "video/3gpp"; break;
case VLC_CODEC_MP4V: mime = "video/mp4v-es"; break;
case VLC_CODEC_VC1: mime = "video/wvc1"; break;
case VLC_CODEC_VP8: mime = "video/x-vnd.on2.vp8"; break;
default:
msg_Dbg(p_dec, "codec %d not supported", p_dec->fmt_in.i_codec);
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