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

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

Issue 2677143003: [Chromecast] Introduce a MediaCapabilitiesShlib::IsSupportedAudioConfig (Closed)
Patch Set: 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
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 8546be75be5a136b19c1ba41adbf3a20b4c77a0c..25da17eceb9a427c9c42fbe5380f539e7ad52136 100644
--- a/chromecast/media/cma/backend/cast_media_android.cc
+++ b/chromecast/media/cma/backend/cast_media_android.cc
@@ -55,5 +55,11 @@ bool MediaCapabilitiesShlib::IsSupportedVideoConfig(VideoCodec codec,
return true;
}
+bool MediaCapabilitiesShlib::IsSupportedAudioConfig(const AudioConfig& config) {
+ // TODO(sanfin,tsunghung): implement this.
+ LOG(INFO) << "IsSupportedAudioConfig not supported, returning true";
+ return true;
+}
+
} // namespace media
} // namespace chromecast

Powered by Google App Engine
This is Rietveld 408576698