-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Blacklist Moto E(4) from setOutputSurface.
GitHub: #4134. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=196562078
- Loading branch information
1 parent
eb151a7
commit d3d4b33
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d3d4b33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, has this change ever worked?
I see in your ticket #4134 you added
"woods_f".equals(Util.DEVICE)
to the code and it worked, but in your commit"woods_f".equals(Util.MODEL)
.In the latest ExoPlayer code Moto E4 is in the
Util.DEVICE
switch-case:https://github.com/google/ExoPlayer/blame/afba6386d333b993777ba74a81d7d8c9d2f808f7/library/core/src/main/java/com/google/android/exoplayer2/video/MediaCodecVideoRenderer.java#L1432
I would like to verify which version is the correct one.
Thanks!
d3d4b33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think
"woods_f".equals(Util.MODEL)
was a mistake and it should actually beUtil.DEVICE
according to this list. So everything should be fine now!