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

Unified Diff: chromecast/media/cma/backend/cast_media_android.cc

Issue 2677143003: [Chromecast] Introduce a MediaCapabilitiesShlib::IsSupportedAudioConfig (Closed)
Patch Set: rebase Created 3 years, 9 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
Index: chromecast/media/cma/backend/cast_media_android.cc
diff --git a/chromecast/media/cma/backend/cast_media_android.cc b/chromecast/media/cma/backend/cast_media_android.cc
index 4a5b952eafdab59e5165d5766614d461a7ffa45c..d26764eda1463eaecea1a3315abbb2456e3d86e4 100644
--- a/chromecast/media/cma/backend/cast_media_android.cc
+++ b/chromecast/media/cma/backend/cast_media_android.cc
@@ -57,5 +57,11 @@ bool MediaCapabilitiesShlib::IsSupportedVideoConfig(VideoCodec codec,
return false;
}
+bool MediaCapabilitiesShlib::IsSupportedAudioConfig(const AudioConfig& config) {
+ // TODO(sanfin,tsunghung): implement this.
+ LOG(INFO) << "IsSupportedAudioConfig not supported, returning true";
+ return true;
halliwell 2017/03/24 14:34:37 Should this part be NOTREACHED, i.e. work consiste
servolk 2017/03/29 17:35:44 Done.
+}
+
} // namespace media
} // namespace chromecast

Powered by Google App Engine
This is Rietveld 408576698