mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08: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
@ -61,8 +61,9 @@
|
|||||||
not include all of the playlist's variants.
|
not include all of the playlist's variants.
|
||||||
* Fix ClearKey decryption error if the key contains a forward slash
|
* Fix ClearKey decryption error if the key contains a forward slash
|
||||||
([#4075](https://github.com/google/ExoPlayer/issues/4075)).
|
([#4075](https://github.com/google/ExoPlayer/issues/4075)).
|
||||||
* Fix IllegalStateException when switching surface on Huawei P9 Lite
|
* Fix crash when switching surface on Huawei P9 Lite
|
||||||
([#4084](https://github.com/google/ExoPlayer/issues/4084)).
|
([#4084](https://github.com/google/ExoPlayer/issues/4084)), and Philips QM163E
|
||||||
|
([#4104](https://github.com/google/ExoPlayer/issues/4104)).
|
||||||
|
|
||||||
### 2.7.3 ###
|
### 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/3439,
|
||||||
// https://github.com/google/ExoPlayer/issues/3724,
|
// https://github.com/google/ExoPlayer/issues/3724,
|
||||||
// https://github.com/google/ExoPlayer/issues/3835,
|
// https://github.com/google/ExoPlayer/issues/3835,
|
||||||
// https://github.com/google/ExoPlayer/issues/4006 and
|
// https://github.com/google/ExoPlayer/issues/4006,
|
||||||
// https://github.com/google/ExoPlayer/issues/4084.
|
// https://github.com/google/ExoPlayer/issues/4084,
|
||||||
|
// https://github.com/google/ExoPlayer/issues/4104.
|
||||||
return (("deb".equals(Util.DEVICE) // Nexus 7 (2013)
|
return (("deb".equals(Util.DEVICE) // Nexus 7 (2013)
|
||||||
|| "flo".equals(Util.DEVICE) // Nexus 7 (2013)
|
|| "flo".equals(Util.DEVICE) // Nexus 7 (2013)
|
||||||
|| "mido".equals(Util.DEVICE) // Redmi Note 4
|
|| "mido".equals(Util.DEVICE) // Redmi Note 4
|
||||||
@ -1156,6 +1157,7 @@ public class MediaCodecVideoRenderer extends MediaCodecRenderer {
|
|||||||
|| Util.DEVICE.startsWith("panell_") // Motorola Moto C Plus
|
|| Util.DEVICE.startsWith("panell_") // Motorola Moto C Plus
|
||||||
|| "F3311".equals(Util.DEVICE) // Sony Xperia E5
|
|| "F3311".equals(Util.DEVICE) // Sony Xperia E5
|
||||||
|| "M5c".equals(Util.DEVICE) // Meizu M5C
|
|| "M5c".equals(Util.DEVICE) // Meizu M5C
|
||||||
|
|| "QM16XE_U".equals(Util.DEVICE) // Philips QM163E
|
||||||
|| "A7010a48".equals(Util.DEVICE)) // Lenovo K4 Note
|
|| "A7010a48".equals(Util.DEVICE)) // Lenovo K4 Note
|
||||||
&& "OMX.MTK.VIDEO.DECODER.AVC".equals(name))
|
&& "OMX.MTK.VIDEO.DECODER.AVC".equals(name))
|
||||||
|| (("ALE-L21".equals(Util.MODEL) // Huawei P8 Lite
|
|| (("ALE-L21".equals(Util.MODEL) // Huawei P8 Lite
|
||||||
|
Loading…
x
Reference in New Issue
Block a user