| Index: content/common/gpu/media/android_video_decode_accelerator.cc
|
| diff --git a/content/common/gpu/media/android_video_decode_accelerator.cc b/content/common/gpu/media/android_video_decode_accelerator.cc
|
| index 3942a80ff3b4b27e042912b7853cfaac8cdc1702..a7d74c8cf33260cf3823df2e76efe050fc76d0ef 100644
|
| --- a/content/common/gpu/media/android_video_decode_accelerator.cc
|
| +++ b/content/common/gpu/media/android_video_decode_accelerator.cc
|
| @@ -1124,9 +1124,15 @@ AndroidVideoDecodeAccelerator::GetCapabilities() {
|
| }
|
|
|
| if (media::PlatformHasVp9Support()) {
|
| - profile.profile = media::VP9PROFILE_ANY;
|
| profile.min_resolution.SetSize(0, 0);
|
| profile.max_resolution.SetSize(1920, 1088);
|
| + profile.profile = media::VP9PROFILE_PROFILE0;
|
| + profiles.push_back(profile);
|
| + profile.profile = media::VP9PROFILE_PROFILE1;
|
| + profiles.push_back(profile);
|
| + profile.profile = media::VP9PROFILE_PROFILE2;
|
| + profiles.push_back(profile);
|
| + profile.profile = media::VP9PROFILE_PROFILE3;
|
| profiles.push_back(profile);
|
| }
|
|
|
|
|