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 | 0b5ba9eeed56a80fed3735f5cd4951477fda79f0 (patch) | |
tree | eba0e273399f28784bc8e3be6dcb4161bb1893c6 /media | |
parent | 4bf29cabaa7c94d0c74d5f945df6b51da51ed180 (diff) | |
download | frameworks_av-0b5ba9eeed56a80fed3735f5cd4951477fda79f0.zip frameworks_av-0b5ba9eeed56a80fed3735f5cd4951477fda79f0.tar.gz frameworks_av-0b5ba9eeed56a80fed3735f5cd4951477fda79f0.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" }, |