summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/mp3dec
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-03-30 13:50:38 -0700
committerAndreas Huber <andih@google.com>2010-03-30 13:50:38 -0700
commit47f729a0543376773070aaeafc12e13eed03f7be (patch)
treec77d1da47ecd6675634467db307e9ece4134ac18 /media/libstagefright/codecs/mp3dec
parent65997f022fa3f557ba864ecc99a1aa33df54c2db (diff)
downloadframeworks_av-47f729a0543376773070aaeafc12e13eed03f7be.zip
frameworks_av-47f729a0543376773070aaeafc12e13eed03f7be.tar.gz
frameworks_av-47f729a0543376773070aaeafc12e13eed03f7be.tar.bz2
Properly fill in the component name for the software decoders.
Change-Id: I92071481f7ed94922b10856c981e507a9eec4c0c related-to-bug: 2557787
Diffstat (limited to 'media/libstagefright/codecs/mp3dec')
-rw-r--r--media/libstagefright/codecs/mp3dec/MP3Decoder.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/media/libstagefright/codecs/mp3dec/MP3Decoder.cpp b/media/libstagefright/codecs/mp3dec/MP3Decoder.cpp
index 4dc96be..efcb476 100644
--- a/media/libstagefright/codecs/mp3dec/MP3Decoder.cpp
+++ b/media/libstagefright/codecs/mp3dec/MP3Decoder.cpp
@@ -107,6 +107,8 @@ sp<MetaData> MP3Decoder::getFormat() {
meta->setInt64(kKeyDuration, durationUs);
}
+ meta->setCString(kKeyDecoderComponent, "MP3Decoder");
+
return meta;
}