diff options
author | James Dong <jdong@google.com> | 2010-04-26 10:23:30 -0700 |
---|---|---|
committer | James Dong <jdong@google.com> | 2010-04-26 10:23:30 -0700 |
commit | 374aee6888edddc5bcac9a644ad3de812404d3bc (patch) | |
tree | b0700b9344a752355dece86b9f7ca3ea83dcbeb8 /media | |
parent | cb4c894afa497943258cfb053ca35436f7b8e29a (diff) | |
download | frameworks_base-374aee6888edddc5bcac9a644ad3de812404d3bc.zip frameworks_base-374aee6888edddc5bcac9a644ad3de812404d3bc.tar.gz frameworks_base-374aee6888edddc5bcac9a644ad3de812404d3bc.tar.bz2 |
Switch to use software MP3 decoder
Hardware MP3 decoder could lead to hang in the Music application, although the chance is very low.
bug - 2608400
Change-Id: Ia0b5b6521015fc8d3e086117fa914dcc20ace5bd
Diffstat (limited to 'media')
-rw-r--r-- | media/libstagefright/OMXCodec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp index 2c94965..6ed384c 100644 --- a/media/libstagefright/OMXCodec.cpp +++ b/media/libstagefright/OMXCodec.cpp @@ -100,7 +100,7 @@ static sp<MediaSource> InstantiateSoftwareCodec( static const CodecInfo kDecoderInfo[] = { { MEDIA_MIMETYPE_IMAGE_JPEG, "OMX.TI.JPEG.decode" }, - { MEDIA_MIMETYPE_AUDIO_MPEG, "OMX.TI.MP3.decode" }, +// { MEDIA_MIMETYPE_AUDIO_MPEG, "OMX.TI.MP3.decode" }, { MEDIA_MIMETYPE_AUDIO_MPEG, "MP3Decoder" }, // { MEDIA_MIMETYPE_AUDIO_MPEG, "OMX.PV.mp3dec" }, // { MEDIA_MIMETYPE_AUDIO_AMR_NB, "OMX.TI.AMR.decode" }, |