Chromium Code Reviews| Index: content/common/gpu/media/vaapi_wrapper.cc |
| diff --git a/content/common/gpu/media/vaapi_wrapper.cc b/content/common/gpu/media/vaapi_wrapper.cc |
| index f5e90dad920ee81004e87e1fd63470520c8932ac..f30613ce54b71dec5e4c76dbc80c898a44956782 100644 |
| --- a/content/common/gpu/media/vaapi_wrapper.cc |
| +++ b/content/common/gpu/media/vaapi_wrapper.cc |
| @@ -125,7 +125,9 @@ static const ProfileMap kProfileMap[] = { |
| // media::H264PROFILE_HIGH*. |
| {media::H264PROFILE_HIGH, VAProfileH264High}, |
| {media::VP8PROFILE_ANY, VAProfileVP8Version0_3}, |
| - {media::VP9PROFILE_ANY, VAProfileVP9Profile0}, |
| + // TODO(servolk): Need to add VP9 profiles 1,2,3 here after rolling |
|
ddorwin
2016/03/25 22:51:21
Should we have a bug for this?
servolk
2016/03/25 23:52:01
Done.
|
| + // third_party/libva to 1.7. |
| + {media::VP9PROFILE_PROFILE0, VAProfileVP9Profile0}, |
| }; |
| static std::vector<VAConfigAttrib> GetRequiredAttribs( |