Commit 52e5986b authored by Andrew Scherkus's avatar Andrew Scherkus

Use video-only test clips for media_perftests video benchmarks.

During development I noticed that the clips we were using contained
audio, which would mean changes to audio-only code were impacting these
benchmarks.

This will cause our tests to use a new baseline, but that's OK.

R=rileya@chromium.org

Review URL: https://codereview.chromium.org/543703003

Cr-Commit-Position: refs/heads/master@{#293325}
parent ee658b74
...@@ -68,10 +68,7 @@ TEST(PipelineIntegrationPerfTest, AudioPlaybackBenchmark) { ...@@ -68,10 +68,7 @@ TEST(PipelineIntegrationPerfTest, AudioPlaybackBenchmark) {
} }
TEST(PipelineIntegrationPerfTest, VP8PlaybackBenchmark) { TEST(PipelineIntegrationPerfTest, VP8PlaybackBenchmark) {
RunVideoPlaybackBenchmark("bear-640x360.webm", RunVideoPlaybackBenchmark("bear_silent.webm", "clockless_video_playback_vp8");
"clockless_video_playback_vp8");
RunVideoPlaybackBenchmark("bear-320x240.webm",
"clockless_video_playback_vp8");
} }
TEST(PipelineIntegrationPerfTest, VP9PlaybackBenchmark) { TEST(PipelineIntegrationPerfTest, VP9PlaybackBenchmark) {
...@@ -79,13 +76,13 @@ TEST(PipelineIntegrationPerfTest, VP9PlaybackBenchmark) { ...@@ -79,13 +76,13 @@ TEST(PipelineIntegrationPerfTest, VP9PlaybackBenchmark) {
} }
TEST(PipelineIntegrationPerfTest, TheoraPlaybackBenchmark) { TEST(PipelineIntegrationPerfTest, TheoraPlaybackBenchmark) {
RunVideoPlaybackBenchmark("bear.ogv", "clockless_video_playback_theora"); RunVideoPlaybackBenchmark("bear_silent.ogv",
"clockless_video_playback_theora");
} }
#if defined(USE_PROPRIETARY_CODECS) #if defined(USE_PROPRIETARY_CODECS)
TEST(PipelineIntegrationPerfTest, MP4PlaybackBenchmark) { TEST(PipelineIntegrationPerfTest, MP4PlaybackBenchmark) {
RunVideoPlaybackBenchmark("bear-1280x720.mp4", RunVideoPlaybackBenchmark("bear_silent.mp4", "clockless_video_playback_mp4");
"clockless_video_playback_mp4");
} }
#endif #endif
......
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 to comment