am e0b71b4e: Merge "media: clean up the usage of max-supported-instances." into mnc-dev

* commit 'e0b71b4ef7af0a8e49341ba65eaf61981845e713':
  media: clean up the usage of max-supported-instances.
This commit is contained in:
Ronghua Wu
2015-07-01 16:19:52 +00:00
committed by Android Git Automerger

View File

@@ -701,13 +701,10 @@ public final class MediaCodecInfo {
final Map<String, Object> global = MediaCodecList.getGlobalSettings();
mMaxSupportedInstances = Utils.parseIntSafely(
global.get("max-supported-instances"), DEFAULT_MAX_SUPPORTED_INSTANCES);
global.get("max-concurrent-instances"), DEFAULT_MAX_SUPPORTED_INSTANCES);
int maxInstances = Utils.parseIntSafely(
map.get("max-supported-instances"), mMaxSupportedInstances);
// TODO: replace all max-supported-instances with max-concurrent-instances.
maxInstances = Utils.parseIntSafely(
map.get("max-concurrent-instances"), maxInstances);
map.get("max-concurrent-instances"), mMaxSupportedInstances);
mMaxSupportedInstances =
Range.create(1, MAX_SUPPORTED_INSTANCES_LIMIT).clamp(maxInstances);