diff options
author | Andreas Huber <andih@google.com> | 2010-05-04 11:46:42 -0700 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2010-05-04 11:58:16 -0700 |
commit | eb5eef38198b38d97b573be550657ba64ccba299 (patch) | |
tree | ab37f77be5d5bf436f50789a134e74d6c23fad0e /include | |
parent | 3bb5e4d322a6a7cda45e868dbe307c2dc3cf688e (diff) | |
download | frameworks_base-eb5eef38198b38d97b573be550657ba64ccba299.zip frameworks_base-eb5eef38198b38d97b573be550657ba64ccba299.tar.gz frameworks_base-eb5eef38198b38d97b573be550657ba64ccba299.tar.bz2 |
Support for Ogg Vorbis decoding in stagefright.
Set the magic property media.stagefright.enable-vorbis to true to use the new implementation instead of the standalon vorbis player for file-based playback. HTTP streaming of vorbis content will always go through stagefright.
Change-Id: Ie3843a99fadb22372f89540d0f8d65196e0c2af8
related-to-bug: 2654400
Diffstat (limited to 'include')
-rw-r--r-- | include/media/stagefright/MediaDefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/stagefright/MediaDefs.h b/include/media/stagefright/MediaDefs.h index 3f8bc51..4edfb88 100644 --- a/include/media/stagefright/MediaDefs.h +++ b/include/media/stagefright/MediaDefs.h @@ -36,6 +36,7 @@ extern const char *MEDIA_MIMETYPE_AUDIO_RAW; extern const char *MEDIA_MIMETYPE_CONTAINER_MPEG4; extern const char *MEDIA_MIMETYPE_CONTAINER_WAV; +extern const char *MEDIA_MIMETYPE_CONTAINER_VORBIS; } // namespace android |