OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_AUDIO_CAPTURER_SINK_OWNER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ |
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 explicit WebRtcAudioCapturerSinkOwner(WebRtcAudioCapturerSink* sink); | 24 explicit WebRtcAudioCapturerSinkOwner(WebRtcAudioCapturerSink* sink); |
25 | 25 |
26 // WebRtcAudioCapturerSink implementation. | 26 // WebRtcAudioCapturerSink implementation. |
27 virtual int CaptureData(const std::vector<int>& channels, | 27 virtual int CaptureData(const std::vector<int>& channels, |
28 const int16* audio_data, | 28 const int16* audio_data, |
29 int sample_rate, | 29 int sample_rate, |
30 int number_of_channels, | 30 int number_of_channels, |
31 int number_of_frames, | 31 int number_of_frames, |
32 int audio_delay_milliseconds, | 32 int audio_delay_milliseconds, |
33 int current_volume, | 33 int current_volume, |
34 bool need_audio_processing, | 34 bool need_audio_processing) OVERRIDE; |
35 bool key_pressed) OVERRIDE; | |
36 | 35 |
37 virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE; | 36 virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE; |
38 | 37 |
39 bool IsEqual(const WebRtcAudioCapturerSink* other) const; | 38 bool IsEqual(const WebRtcAudioCapturerSink* other) const; |
40 void Reset(); | 39 void Reset(); |
41 | 40 |
42 // Wrapper which allows to use std::find_if() when adding and removing | 41 // Wrapper which allows to use std::find_if() when adding and removing |
43 // sinks to/from the list. | 42 // sinks to/from the list. |
44 struct WrapsSink { | 43 struct WrapsSink { |
45 WrapsSink(WebRtcAudioCapturerSink* sink) : sink_(sink) {} | 44 WrapsSink(WebRtcAudioCapturerSink* sink) : sink_(sink) {} |
(...skipping 11 matching lines...) Expand all Loading... |
57 friend class base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>; | 56 friend class base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>; |
58 WebRtcAudioCapturerSink* delegate_; | 57 WebRtcAudioCapturerSink* delegate_; |
59 mutable base::Lock lock_; | 58 mutable base::Lock lock_; |
60 | 59 |
61 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioCapturerSinkOwner); | 60 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioCapturerSinkOwner); |
62 }; | 61 }; |
63 | 62 |
64 } // namespace content | 63 } // namespace content |
65 | 64 |
66 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ | 65 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ |
OLD | NEW |