blob: 4e9409efc1e90c620655a251fff6962da1e9bc8e [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.mediapc.cts;
import android.mediapc.cts.common.PerformanceClassEvaluator;
import android.mediapc.cts.common.Utils;
import androidx.test.filters.LargeTest;
import com.android.compatibility.common.util.CddTest;
import java.util.Collection;
import org.junit.Assume;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
/**
* The following test class validates the frame drops of a playback for the hardware decoders
* under the load condition (Transcode + Audio Playback).
*/
@RunWith(Parameterized.class)
public class FrameDropTest extends FrameDropTestBase {
private static final String LOG_TAG = FrameDropTest.class.getSimpleName();
public FrameDropTest(String mimeType, String decoderName, boolean isAsync) {
super(mimeType, decoderName, isAsync);
}
@Rule
public final TestName mTestName = new TestName();
// Returns the list of parameters with mimeTypes and their hardware decoders
// combining with sync and async modes.
// Parameters {0}_{1}_{2} -- Mime_DecoderName_isAsync
@Parameterized.Parameters(name = "{index}({0}_{1}_{2})")
public static Collection<Object[]> inputParams() {
return prepareArgumentsList(null);
}
private int testDecodeToSurface(int frameRate) throws Exception {
String[] testFiles = frameRate == 30 ?
new String[]{m1080p30FpsTestFiles.get(mMime)} :
new String[]{m1080p60FpsTestFiles.get(mMime)};
PlaybackFrameDrop playbackFrameDrop = new PlaybackFrameDrop(mMime, mDecoderName, testFiles,
mSurface, frameRate, mIsAsync);
return playbackFrameDrop.getFrameDropCount();
}
/**
* This test validates that the playback of 1920x1080 resolution asset of 3 seconds duration
* at 30 fps for R perf class, for at least 30 seconds worth of frames or for 31 seconds of
* elapsed time. must not drop more than 3 frames for R perf class.
*/
@LargeTest
@Test(timeout = CodecTestBase.PER_TEST_TIMEOUT_LARGE_TEST_MS)
@CddTest(requirement="2.2.7.1/5.3/H-1-1")
public void test30Fps() throws Exception {
Assume.assumeTrue("Test is limited to R performance class devices or devices that do not " +
"advertise performance class",
Utils.isRPerfClass() || !Utils.isPerfClass());
PerformanceClassEvaluator pce = new PerformanceClassEvaluator(this.mTestName);
PerformanceClassEvaluator.FrameDropRequirement r5_3__H_1_1_R = pce.addR5_3__H_1_1_R();
int framesDropped = testDecodeToSurface(30);
r5_3__H_1_1_R.setFramesDropped(framesDropped);
pce.submitAndCheck();
}
/**
* This test validates that the playback of 1920x1080 resolution asset of 3 seconds duration
* at 60 fps for S/T perf class, for at least 30 seconds worth of frames or for 31 seconds of
* elapsed time. must not drop more than 6 frames for S perf class / 3 frames for T perf class.
*/
@LargeTest
@Test(timeout = CodecTestBase.PER_TEST_TIMEOUT_LARGE_TEST_MS)
@CddTest(requirement="2.2.7.1/5.3/H-1-1")
public void test60Fps() throws Exception {
Assume.assumeTrue("Test is limited to S/T performance class devices or devices that do " +
"not advertise performance class",
Utils.isSPerfClass() || Utils.isTPerfClass() || !Utils.isPerfClass());
PerformanceClassEvaluator pce = new PerformanceClassEvaluator(this.mTestName);
PerformanceClassEvaluator.FrameDropRequirement r5_3__H_1_1_ST = pce.addR5_3__H_1_1_ST();
int framesDropped = testDecodeToSurface(60);
r5_3__H_1_1_ST.setFramesDropped(framesDropped);
pce.submitAndCheck();
}
}