Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3850)

Unified Diff: chromecast/common/media/cast_media_client.cc

Issue 2640113004: Introduce Dolby Vision video codec and Demuxer support (Closed)
Patch Set: fix build break on Android Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromecast/media/base/media_codec_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..af8110fd545f6b8f1fd10d806809873ea19971a4 100644
--- a/chromecast/common/media/cast_media_client.cc
+++ b/chromecast/common/media/cast_media_client.cc
@@ -62,10 +62,10 @@ bool CastMediaClient::IsSupportedVideoConfig(::media::VideoCodec codec,
int level) {
#if defined(OS_ANDROID)
return supported_profiles_->IsSupportedVideoConfig(
- ToCastVideoCodec(codec), ToCastVideoProfile(profile), level);
+ ToCastVideoCodec(codec, profile), ToCastVideoProfile(profile), level);
#else
return MediaCapabilitiesShlib::IsSupportedVideoConfig(
- ToCastVideoCodec(codec), ToCastVideoProfile(profile), level);
+ ToCastVideoCodec(codec, profile), ToCastVideoProfile(profile), level);
#endif
}
« no previous file with comments | « no previous file | chromecast/media/base/media_codec_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698