Commit 29b0469a authored by Thomas Guilbert's avatar Thomas Guilbert Committed by Commit Bot

Add devices to MediaCodec Blacklist

The devices added in this CL are accountable for 80% of the crashes in
the attached bug. There is no good stack trace to investigate the crash
further, but all crashes seem to happen at MediaCodecBridgeImpl
destruction time.

Using the fallback path on those devices on JellyBean should mitigate
further crashes.

Bug: 693216
Change-Id: I58f5a1522105a87d48470452f28634dc9bf806c7
Reviewed-on: https://chromium-review.googlesource.com/748205Reviewed-by: default avatarDale Curtis <dalecurtis@chromium.org>
Commit-Queue: Thomas Guilbert <tguilbert@chromium.org>
Cr-Commit-Position: refs/heads/master@{#513041}
parent 62f757cf
...@@ -184,6 +184,11 @@ bool MediaCodecUtil::IsMediaCodecAvailableFor(int sdk, const char* model) { ...@@ -184,6 +184,11 @@ bool MediaCodecUtil::IsMediaCodecAvailableFor(int sdk, const char* model) {
{"GT-N5110", SDK_VERSION_JELLY_BEAN_MR2}, {"GT-N5110", SDK_VERSION_JELLY_BEAN_MR2},
{"e-tab4", SDK_VERSION_JELLY_BEAN_MR2}, {"e-tab4", SDK_VERSION_JELLY_BEAN_MR2},
{"GT-I8200Q", SDK_VERSION_JELLY_BEAN_MR2}, {"GT-I8200Q", SDK_VERSION_JELLY_BEAN_MR2},
// crbug.com/693216
{"GT-I8552B", SDK_VERSION_JELLY_BEAN_MR2},
{"GT-I8262", SDK_VERSION_JELLY_BEAN_MR2},
{"GT-I8262B", SDK_VERSION_JELLY_BEAN_MR2},
}; };
const auto iter = const auto iter =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment