diff options
author | wjia@chromium.org <wjia@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 22:30:37 +0000 |
---|---|---|
committer | wjia@chromium.org <wjia@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-06 22:30:37 +0000 |
commit | c9b4e8b46e3f2d707e453350f28b1aed28ee51d0 (patch) | |
tree | cbd25c123bbc139276a453e95beb53203c0f2824 /gpu | |
parent | a1b27d06cd978a0413b08a246d3462a33dec42b8 (diff) | |
download | chromium_src-c9b4e8b46e3f2d707e453350f28b1aed28ee51d0.zip chromium_src-c9b4e8b46e3f2d707e453350f28b1aed28ee51d0.tar.gz chromium_src-c9b4e8b46e3f2d707e453350f28b1aed28ee51d0.tar.bz2 |
Add Galaxy Note II in gpu blacklist for hareware video decoding on Android.
BUG=308721
R=zmo@chromium.org
Review URL: https://codereview.chromium.org/107583003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/config/software_rendering_list_json.cc | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc index 14cad9c..b420414 100644 --- a/gpu/config/software_rendering_list_json.cc +++ b/gpu/config/software_rendering_list_json.cc @@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( { "name": "software rendering list", // Please update the version number whenever you change this file. - "version": "6.16", + "version": "6.17", "entries": [ { "id": 1, @@ -974,13 +974,34 @@ LONG_STRING_CONST( }, { "id": 82, - "description": "MediaCodec is still too buggy to use for encoding (b/11536167).", + "description": "MediaCodec is still too buggy to use for encoding (b/11536167)", "os": { "type": "android" }, "features": [ "accelerated_video_encode" ] + }, + { + "id": 83, + "description": "Samsung Gaxlaxy NOTE II is too buggy to use for video decoding", + "cr_bugs": [308721], + "os": { + "type": "android", + "version": { + "op": "<=", + "value": "4.1.2" + } + }, + "machine_model": { + "name": { + "op": "=", + "value": "GT-N7100" + } + }, + "features": [ + "accelerated_video_decode" + ] } ] } |