Skip to content

Commit

Permalink
Blacklist Philips QM163E from setOutputSurface
Browse files Browse the repository at this point in the history
Issue: #4104

-------------
Created by MOE: https:/google/moe
MOE_MIGRATED_REVID=192629223
  • Loading branch information
erdemguven authored and ojw28 committed Apr 16, 2018
1 parent 0802ecf commit 9a4e083
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@
not include all of the playlist's variants.
* Fix ClearKey decryption error if the key contains a forward slash
([#4075](https:/google/ExoPlayer/issues/4075)).
* Fix IllegalStateException when switching surface on Huawei P9 Lite
([#4084](https:/google/ExoPlayer/issues/4084)).
* Fix crash when switching surface on Huawei P9 Lite
([#4084](https:/google/ExoPlayer/issues/4084)), and Philips QM163E
([#4104](https:/google/ExoPlayer/issues/4104)).

### 2.7.3 ###

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1143,8 +1143,9 @@ private static boolean codecNeedsSetOutputSurfaceWorkaround(String name) {
// https:/google/ExoPlayer/issues/3439,
// https:/google/ExoPlayer/issues/3724,
// https:/google/ExoPlayer/issues/3835,
// https:/google/ExoPlayer/issues/4006 and
// https:/google/ExoPlayer/issues/4084.
// https:/google/ExoPlayer/issues/4006,
// https:/google/ExoPlayer/issues/4084,
// https:/google/ExoPlayer/issues/4104.
return (("deb".equals(Util.DEVICE) // Nexus 7 (2013)
|| "flo".equals(Util.DEVICE) // Nexus 7 (2013)
|| "mido".equals(Util.DEVICE) // Redmi Note 4
Expand All @@ -1156,6 +1157,7 @@ private static boolean codecNeedsSetOutputSurfaceWorkaround(String name) {
|| Util.DEVICE.startsWith("panell_") // Motorola Moto C Plus
|| "F3311".equals(Util.DEVICE) // Sony Xperia E5
|| "M5c".equals(Util.DEVICE) // Meizu M5C
|| "QM16XE_U".equals(Util.DEVICE) // Philips QM163E
|| "A7010a48".equals(Util.DEVICE)) // Lenovo K4 Note
&& "OMX.MTK.VIDEO.DECODER.AVC".equals(name))
|| (("ALE-L21".equals(Util.MODEL) // Huawei P8 Lite
Expand Down

0 comments on commit 9a4e083

Please sign in to comment.