| Index: chromecast/media/base/supported_codec_profile_levels_memo.cc
|
| diff --git a/chromecast/media/base/supported_codec_profile_levels_memo.cc b/chromecast/media/base/supported_codec_profile_levels_memo.cc
|
| index be1e9a70aa6dc48358295a35510757054bde05d4..a851a1590391f73a372c8e24ccc6c7ae9650b4ad 100644
|
| --- a/chromecast/media/base/supported_codec_profile_levels_memo.cc
|
| +++ b/chromecast/media/base/supported_codec_profile_levels_memo.cc
|
| @@ -34,7 +34,7 @@ bool SupportedCodecProfileLevelsMemo::IsSupportedVideoConfig(
|
| for (const auto& supported_profile_info : codec_profile_levels_) {
|
| if (codec == supported_profile_info.codec &&
|
| profile == supported_profile_info.profile &&
|
| - level == supported_profile_info.level) {
|
| + level <= supported_profile_info.level) {
|
| return true;
|
| }
|
| }
|
|
|