| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "content/public/renderer/media_stream_audio_sink.h" | 9 #include "content/public/renderer/media_stream_audio_sink.h" |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 webrtc::AudioTrackSinkInterface* sink); | 25 webrtc::AudioTrackSinkInterface* sink); |
| 26 virtual ~WebRtcAudioSinkAdapter(); | 26 virtual ~WebRtcAudioSinkAdapter(); |
| 27 | 27 |
| 28 bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const; | 28 bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const; |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 // MediaStreamAudioSink implementation. | 31 // MediaStreamAudioSink implementation. |
| 32 virtual void OnData(const int16* audio_data, | 32 virtual void OnData(const int16* audio_data, |
| 33 int sample_rate, | 33 int sample_rate, |
| 34 int number_of_channels, | 34 int number_of_channels, |
| 35 int number_of_frames) OVERRIDE; | 35 int number_of_frames) override; |
| 36 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE; | 36 virtual void OnSetFormat(const media::AudioParameters& params) override; |
| 37 | 37 |
| 38 webrtc::AudioTrackSinkInterface* const sink_; | 38 webrtc::AudioTrackSinkInterface* const sink_; |
| 39 | 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioSinkAdapter); | 40 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioSinkAdapter); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace content | 43 } // namespace content |
| 44 | 44 |
| 45 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ | 45 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ |
| OLD | NEW |