| Index: media/base/test_helpers.cc
|
| diff --git a/media/base/test_helpers.cc b/media/base/test_helpers.cc
|
| index 2a0c3211293e6709d86de955fbdc2c015d16e075..4617630f857fd8d4a52d2b21c892044ab942c2b4 100644
|
| --- a/media/base/test_helpers.cc
|
| +++ b/media/base/test_helpers.cc
|
| @@ -147,8 +147,8 @@ VideoDecoderConfig TestVideoConfig::Invalid() {
|
| }
|
|
|
| // static
|
| -VideoDecoderConfig TestVideoConfig::Normal() {
|
| - return GetTestConfig(kCodecVP8, kNormalSize, false);
|
| +VideoDecoderConfig TestVideoConfig::Normal(VideoCodec codec) {
|
| + return GetTestConfig(codec, kNormalSize, false);
|
| }
|
|
|
| // static
|
| @@ -157,18 +157,18 @@ VideoDecoderConfig TestVideoConfig::NormalH264() {
|
| }
|
|
|
| // static
|
| -VideoDecoderConfig TestVideoConfig::NormalEncrypted() {
|
| - return GetTestConfig(kCodecVP8, kNormalSize, true);
|
| +VideoDecoderConfig TestVideoConfig::NormalEncrypted(VideoCodec codec) {
|
| + return GetTestConfig(codec, kNormalSize, true);
|
| }
|
|
|
| // static
|
| -VideoDecoderConfig TestVideoConfig::Large() {
|
| - return GetTestConfig(kCodecVP8, kLargeSize, false);
|
| +VideoDecoderConfig TestVideoConfig::Large(VideoCodec codec) {
|
| + return GetTestConfig(codec, kLargeSize, false);
|
| }
|
|
|
| // static
|
| -VideoDecoderConfig TestVideoConfig::LargeEncrypted() {
|
| - return GetTestConfig(kCodecVP8, kLargeSize, true);
|
| +VideoDecoderConfig TestVideoConfig::LargeEncrypted(VideoCodec codec) {
|
| + return GetTestConfig(codec, kLargeSize, true);
|
| }
|
|
|
| // static
|
|
|