Chromium Code Reviews| Index: chromecast/common/media/cast_media_client.cc |
| diff --git a/chromecast/common/media/cast_media_client.cc b/chromecast/common/media/cast_media_client.cc |
| index 9a4213b898041d1f12c09ce2b25c747e1a16f9cb..cff8d4d1f3fd399bdf339c1c74bae8b5f95765e8 100644 |
| --- a/chromecast/common/media/cast_media_client.cc |
| +++ b/chromecast/common/media/cast_media_client.cc |
| @@ -59,7 +59,10 @@ void CastMediaClient::RecordRapporURL(const std::string& metric, |
| // static |
| bool CastMediaClient::IsSupportedVideoConfig(::media::VideoCodec codec, |
| ::media::VideoCodecProfile profile, |
| - int level) { |
| + int level, |
| + gfx::ColorSpace::TransferID eotf) { |
| +// TODO(servolk): make use of eotf. |
|
servolk
2017/03/02 18:56:36
Nit: missing closing brace.
Also I think it might
chcunningham
2017/03/02 23:13:08
I'm not seeing it. Do you mean the brace for the m
chcunningham
2017/03/07 02:27:56
Done.
|
| + |
| #if defined(OS_ANDROID) |
| return supported_profiles_->IsSupportedVideoConfig( |
| ToCastVideoCodec(codec), ToCastVideoProfile(profile), level); |