| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromecast/media/service/cast_mojo_media_client.h" | 5 #include "chromecast/media/service/cast_mojo_media_client.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "chromecast/media/cma/backend/media_pipeline_backend_factory.h" | 8 #include "chromecast/media/cma/backend/media_pipeline_backend_factory.h" |
| 9 #include "chromecast/media/service/cast_renderer.h" | 9 #include "chromecast/media/service/cast_renderer.h" |
| 10 #include "chromecast/public/media/media_pipeline_backend.h" | 10 #include "chromecast/public/media/media_pipeline_backend.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 void Play() final { NOTREACHED(); } | 35 void Play() final { NOTREACHED(); } |
| 36 bool SetVolume(double volume) final { | 36 bool SetVolume(double volume) final { |
| 37 NOTREACHED(); | 37 NOTREACHED(); |
| 38 return false; | 38 return false; |
| 39 } | 39 } |
| 40 ::media::OutputDeviceInfo GetOutputDeviceInfo() final { | 40 ::media::OutputDeviceInfo GetOutputDeviceInfo() final { |
| 41 return ::media::OutputDeviceInfo(device_id_, | 41 return ::media::OutputDeviceInfo(device_id_, |
| 42 ::media::OUTPUT_DEVICE_STATUS_OK, | 42 ::media::OUTPUT_DEVICE_STATUS_OK, |
| 43 ::media::AudioParameters()); | 43 ::media::AudioParameters()); |
| 44 } | 44 } |
| 45 |
| 46 bool IsOptimizedForHardwareParameters() final { |
| 47 NOTREACHED(); |
| 48 return true; |
| 49 } |
| 50 |
| 45 bool CurrentThreadIsRenderingThread() final { | 51 bool CurrentThreadIsRenderingThread() final { |
| 46 NOTREACHED(); | 52 NOTREACHED(); |
| 47 return false; | 53 return false; |
| 48 } | 54 } |
| 49 | 55 |
| 50 private: | 56 private: |
| 51 ~CastAudioRendererSink() final {} | 57 ~CastAudioRendererSink() final {} |
| 52 | 58 |
| 53 std::string device_id_; | 59 std::string device_id_; |
| 54 DISALLOW_COPY_AND_ASSIGN(CastAudioRendererSink); | 60 DISALLOW_COPY_AND_ASSIGN(CastAudioRendererSink); |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 media_resource_tracker_); | 132 media_resource_tracker_); |
| 127 } | 133 } |
| 128 | 134 |
| 129 std::unique_ptr<::media::CdmFactory> CastMojoMediaClient::CreateCdmFactory( | 135 std::unique_ptr<::media::CdmFactory> CastMojoMediaClient::CreateCdmFactory( |
| 130 service_manager::mojom::InterfaceProvider* /* host_interfaces */) { | 136 service_manager::mojom::InterfaceProvider* /* host_interfaces */) { |
| 131 return create_cdm_factory_cb_.Run(); | 137 return create_cdm_factory_cb_.Run(); |
| 132 } | 138 } |
| 133 | 139 |
| 134 } // namespace media | 140 } // namespace media |
| 135 } // namespace chromecast | 141 } // namespace chromecast |
| OLD | NEW |