| 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 #ifndef CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ | 6 #define CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ |
| 7 | 7 |
| 8 #include "content/renderer/media/media_stream_audio_source.h" | 8 #include "content/renderer/media/media_stream_audio_source.h" |
| 9 | 9 |
| 10 #include "media/base/audio_capturer_source.h" | 10 #include "media/base/audio_capturer_source.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 public: | 22 public: |
| 23 ExternalMediaStreamAudioSource( | 23 ExternalMediaStreamAudioSource( |
| 24 scoped_refptr<media::AudioCapturerSource> source, | 24 scoped_refptr<media::AudioCapturerSource> source, |
| 25 int sample_rate, | 25 int sample_rate, |
| 26 media::ChannelLayout channel_layout, | 26 media::ChannelLayout channel_layout, |
| 27 int frames_per_buffer, | 27 int frames_per_buffer, |
| 28 bool is_remote); | 28 bool is_remote); |
| 29 | 29 |
| 30 ~ExternalMediaStreamAudioSource() final; | 30 ~ExternalMediaStreamAudioSource() final; |
| 31 | 31 |
| 32 void getSettings(blink::WebMediaStreamTrack::Settings&) override; |
| 33 |
| 32 private: | 34 private: |
| 33 // MediaStreamAudioSource implementation. | 35 // MediaStreamAudioSource implementation. |
| 34 bool EnsureSourceIsStarted() final; | 36 bool EnsureSourceIsStarted() final; |
| 35 void EnsureSourceIsStopped() final; | 37 void EnsureSourceIsStopped() final; |
| 36 | 38 |
| 37 // media::AudioCapturerSource::CaptureCallback implementation. | 39 // media::AudioCapturerSource::CaptureCallback implementation. |
| 38 void Capture(const media::AudioBus* audio_bus, | 40 void Capture(const media::AudioBus* audio_bus, |
| 39 int audio_delay_milliseconds, | 41 int audio_delay_milliseconds, |
| 40 double volume, | 42 double volume, |
| 41 bool key_pressed) final; | 43 bool key_pressed) final; |
| 42 void OnCaptureError(const std::string& message) final; | 44 void OnCaptureError(const std::string& message) final; |
| 43 | 45 |
| 44 // The external source provided to the constructor. | 46 // The external source provided to the constructor. |
| 45 scoped_refptr<media::AudioCapturerSource> source_; | 47 scoped_refptr<media::AudioCapturerSource> source_; |
| 46 | 48 |
| 47 // In debug builds, check that all methods that could cause object graph | 49 // In debug builds, check that all methods that could cause object graph |
| 48 // or data flow changes are being called on the main thread. | 50 // or data flow changes are being called on the main thread. |
| 49 base::ThreadChecker thread_checker_; | 51 base::ThreadChecker thread_checker_; |
| 50 | 52 |
| 51 // True once the source has been started successfully. | 53 // True once the source has been started successfully. |
| 52 bool was_started_; | 54 bool was_started_; |
| 53 | 55 |
| 54 DISALLOW_COPY_AND_ASSIGN(ExternalMediaStreamAudioSource); | 56 DISALLOW_COPY_AND_ASSIGN(ExternalMediaStreamAudioSource); |
| 55 }; | 57 }; |
| 56 | 58 |
| 57 } // namespace content | 59 } // namespace content |
| 58 | 60 |
| 59 #endif // CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ | 61 #endif // CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_ |
| OLD | NEW |