mirror of
https://github.com/samsonjs/media.git
synced 2026-04-14 12:45:47 +00:00
Skip export4K60 on Pixel 3
This device over-reports encoding capabilities, so skip the test. This is a Pixel device that was upgraded to Android 12 (API 31/32) so the issue should only affect devices that didn't take OTAs. PiperOrigin-RevId: 581981073
This commit is contained in:
parent
2fb5695a82
commit
c00161fb8f
1 changed files with 4 additions and 0 deletions
|
|
@ -148,6 +148,10 @@ public class ExportTest {
|
|||
/* outputFormat= */ null)) {
|
||||
return;
|
||||
}
|
||||
// Reference: b/262710361
|
||||
assumeFalse(
|
||||
"Skip due to over-reported encoder capabilities",
|
||||
Util.SDK_INT == 29 && Ascii.equalsIgnoreCase(Util.MODEL, "pixel 3"));
|
||||
|
||||
Transformer transformer =
|
||||
new Transformer.Builder(context)
|
||||
|
|
|
|||
Loading…
Reference in a new issue