The mp3 decoder now correctly uses microseconds to measure time. One less quirk.
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 @@
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);