Commit db0093f4 by andrewlewis Committed by Ian Baker

Remove AMR NB encoding from SSIM quality test

This currently causes the test to fail on Pixel 6 Pro running a recent S build
SQ1D.220205.004.

There is no need to test audio transcoding while we are measuring video
quality.

PiperOrigin-RevId: 435635314
parent 96f8771d
...@@ -39,10 +39,8 @@ public final class TranscodeQualityTest { ...@@ -39,10 +39,8 @@ public final class TranscodeQualityTest {
Transformer transformer = Transformer transformer =
new Transformer.Builder(context) new Transformer.Builder(context)
.setTransformationRequest( .setTransformationRequest(
new TransformationRequest.Builder() new TransformationRequest.Builder().setVideoMimeType(MimeTypes.VIDEO_H265).build())
.setVideoMimeType(MimeTypes.VIDEO_H265) .setRemoveAudio(true)
.setAudioMimeType(MimeTypes.AUDIO_AMR_NB)
.build())
.build(); .build();
TransformationTestResult result = TransformationTestResult result =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment