summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2009-08-06 15:52:12 -0700
committerAndreas Huber <andih@google.com>2009-08-06 15:52:12 -0700
commit285ead29c9eee092d367effd89f1c9f4f0bb9d6c (patch)
tree2f4edf891dfe9fa4df9b7d81db87afd83217f289
parentbf37f3364804f521cc61845b1f1ce16fe133814b (diff)
downloadframeworks_av-285ead29c9eee092d367effd89f1c9f4f0bb9d6c.zip
frameworks_av-285ead29c9eee092d367effd89f1c9f4f0bb9d6c.tar.gz
frameworks_av-285ead29c9eee092d367effd89f1c9f4f0bb9d6c.tar.bz2
The mp3 decoder now correctly uses microseconds to measure time. One less quirk.
-rw-r--r--media/libstagefright/OMXDecoder.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/media/libstagefright/OMXDecoder.cpp b/media/libstagefright/OMXDecoder.cpp
index 3ea3d01..c570278 100644
--- a/media/libstagefright/OMXDecoder.cpp
+++ b/media/libstagefright/OMXDecoder.cpp
@@ -157,9 +157,6 @@ OMXDecoder *OMXDecoder::Create(
if (!strncmp(codec, "OMX.qcom.video.", 15)) {
quirks |= kRequiresLoadedToIdleAfterAllocation;
}
- if (!strcmp(codec, "OMX.TI.MP3.decode")) {
- quirks |= kMeasuresTimeInMilliseconds;
- }
OMXDecoder *decoder = new OMXDecoder(
client, node, mime, codec, createEncoder, quirks);