Remove SSIM calculation on SEF videos.

SEF is similar to frame editing, where the input and output videos are
not intended to match, so SSIM will not provide a reliable value. To
check SSIM correctly in future, we would need to provide
golden/expected video files to compare output against.

PiperOrigin-RevId: 436707240
This commit is contained in:
samrobinson 2022-03-23 11:56:30 +00:00 committed by Ian Baker
parent bda6604757
commit 76d44bec30

View file

@ -162,7 +162,6 @@ public class TransformationTest {
new TransformationRequest.Builder().setFlattenForSlowMotion(true).build())
.build();
new TransformerAndroidTestRunner.Builder(context, transformer)
.setCalculateSsim(true)
.build()
.run(testId, MP4_ASSET_SEF_URI_STRING);
}