Chromium Code Reviews| 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 |