[vlc-commits] Mediacodec: support VP9
Jean-Baptiste Kempf
git at videolan.org
Thu Aug 14 00:07:19 CEST 2014
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Aug 13 23:55:43 2014 +0200| [031032f6ef080e0115ef2b2aac763b1b5a29d2b9] | committer: Jean-Baptiste Kempf
Mediacodec: support VP9
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=031032f6ef080e0115ef2b2aac763b1b5a29d2b9
---
modules/codec/omxil/android_mediacodec.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/codec/omxil/android_mediacodec.c b/modules/codec/omxil/android_mediacodec.c
index 8716929..ad02f0d 100644
--- a/modules/codec/omxil/android_mediacodec.c
+++ b/modules/codec/omxil/android_mediacodec.c
@@ -306,6 +306,7 @@ static int OpenDecoder(vlc_object_t *p_this)
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;
+ case VLC_CODEC_VP9: mime = "video/x-vnd.on2.vp9"; break;
default:
msg_Dbg(p_dec, "codec %4.4s not supported", (char *)&p_dec->fmt_in.i_codec);
return VLC_EGENERIC;
More information about the vlc-commits
mailing list