mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Blacklist Philips QM163E from setOutputSurface
Issue: #4104 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=192629223
This commit is contained in:
parent
0802ecfee3
commit
9a4e083b4e
2 changed files with 7 additions and 4 deletions
|
|
@ -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://github.com/google/ExoPlayer/issues/4075)).
|
||||
* Fix IllegalStateException when switching surface on Huawei P9 Lite
|
||||
([#4084](https://github.com/google/ExoPlayer/issues/4084)).
|
||||
* Fix crash when switching surface on Huawei P9 Lite
|
||||
([#4084](https://github.com/google/ExoPlayer/issues/4084)), and Philips QM163E
|
||||
([#4104](https://github.com/google/ExoPlayer/issues/4104)).
|
||||
|
||||
### 2.7.3 ###
|
||||
|
||||
|
|
|
|||
|
|
@ -1143,8 +1143,9 @@ public class MediaCodecVideoRenderer extends MediaCodecRenderer {
|
|||
// https://github.com/google/ExoPlayer/issues/3439,
|
||||
// https://github.com/google/ExoPlayer/issues/3724,
|
||||
// https://github.com/google/ExoPlayer/issues/3835,
|
||||
// https://github.com/google/ExoPlayer/issues/4006 and
|
||||
// https://github.com/google/ExoPlayer/issues/4084.
|
||||
// https://github.com/google/ExoPlayer/issues/4006,
|
||||
// https://github.com/google/ExoPlayer/issues/4084,
|
||||
// https://github.com/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
|
||||
|
|
@ -1156,6 +1157,7 @@ public class MediaCodecVideoRenderer extends MediaCodecRenderer {
|
|||
|| 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue