summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/MediaExtractor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'media/libstagefright/MediaExtractor.cpp')
-rw-r--r--media/libstagefright/MediaExtractor.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/media/libstagefright/MediaExtractor.cpp b/media/libstagefright/MediaExtractor.cpp
index 218448b..1eb5c19 100644
--- a/media/libstagefright/MediaExtractor.cpp
+++ b/media/libstagefright/MediaExtractor.cpp
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2009 The Android Open Source Project
+ * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -107,13 +108,7 @@ sp<MediaExtractor> MediaExtractor::Create(
ret = new MPEG4Extractor(source);
}
#ifdef QCOM_ENHANCED_AUDIO
- char tunnelDecode[PROPERTY_VALUE_MAX];
- ALOGV("MediaExtractor::Create checking tunnel.decode");
- property_get("tunnel.decode",tunnelDecode,"0");
- if( (strncmp("true",tunnelDecode,4) == 0) || (atoi(tunnelDecode)) ) {
- bCheckExtendedExtractor = true;
- ALOGV("MediaExtractor::Create detected tunnel.decode as true...");
- }
+ bCheckExtendedExtractor = true;
#endif
} else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_MPEG)) {
ret = new MP3Extractor(source, meta);