summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2013-06-24 11:21:17 -0700
committerHangyu Kuang <hkuang@google.com>2013-06-24 20:29:08 +0000
commit94705aff3c9eef58cbb72ec6fe5d2dcfd9481646 (patch)
treea6129de4a9abf49499bfc4639587a2627c0370ab /cmds
parent078a540525f86517aefa4afc56e12fbd74e3823d (diff)
downloadframeworks_av-94705aff3c9eef58cbb72ec6fe5d2dcfd9481646.zip
frameworks_av-94705aff3c9eef58cbb72ec6fe5d2dcfd9481646.tar.gz
frameworks_av-94705aff3c9eef58cbb72ec6fe5d2dcfd9481646.tar.bz2
Adds VP9 decoding support for stagefright.
Also change the VP8 encoder role name from video_encoder.vpx to video_encoder.vp8 for future VP9 encoder support. Requires the change in frameworks/native and media_codecs.xml corresponding to the device. VP9 decoding test will be added to cts repo later.
Diffstat (limited to 'cmds')
-rw-r--r--cmds/stagefright/stagefright.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/stagefright/stagefright.cpp b/cmds/stagefright/stagefright.cpp
index 924cf6d..f8fc8ed 100644
--- a/cmds/stagefright/stagefright.cpp
+++ b/cmds/stagefright/stagefright.cpp
@@ -616,7 +616,7 @@ static void dumpCodecProfiles(const sp<IOMX>& omx, bool queryDecoders) {
MEDIA_MIMETYPE_AUDIO_AMR_NB, MEDIA_MIMETYPE_AUDIO_AMR_WB,
MEDIA_MIMETYPE_AUDIO_MPEG, MEDIA_MIMETYPE_AUDIO_G711_MLAW,
MEDIA_MIMETYPE_AUDIO_G711_ALAW, MEDIA_MIMETYPE_AUDIO_VORBIS,
- MEDIA_MIMETYPE_VIDEO_VPX
+ MEDIA_MIMETYPE_VIDEO_VP8, MEDIA_MIMETYPE_VIDEO_VP9
};
const char *codecType = queryDecoders? "decoder" : "encoder";