Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: content/renderer/media/webrtc_audio_capturer_sink_owner.h

Issue 37793005: move the APM to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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"
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "content/renderer/media/webrtc_audio_device_impl.h" 12 #include "content/renderer/media/webrtc_audio_device_impl.h"
13 #include "media/audio/audio_parameters.h" 13 #include "media/audio/audio_parameters.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 class WebRtcAudioCapturerSink; 17 class WebRtcAudioCapturerSink;
18 18
19 // Reference counted container of WebRtcAudioCapturerSink delegates. 19 // Reference counted container of WebRtcAudioCapturerSink delegates.
20 class WebRtcAudioCapturerSinkOwner 20 class WebRtcAudioCapturerSinkOwner
21 : public base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>, 21 : public base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>,
22 public WebRtcAudioCapturerSink { 22 public WebRtcAudioCapturerSink {
23 public: 23 public:
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 void 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) OVERRIDE;
32 int audio_delay_milliseconds,
33 int current_volume,
34 bool need_audio_processing,
35 bool key_pressed) OVERRIDE;
36 32
37 virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE; 33 virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE;
38 34
39 bool IsEqual(const WebRtcAudioCapturerSink* other) const; 35 bool IsEqual(const WebRtcAudioCapturerSink* other) const;
40 void Reset(); 36 void Reset();
41 37
42 // Wrapper which allows to use std::find_if() when adding and removing 38 // Wrapper which allows to use std::find_if() when adding and removing
43 // sinks to/from the list. 39 // sinks to/from the list.
44 struct WrapsSink { 40 struct WrapsSink {
45 WrapsSink(WebRtcAudioCapturerSink* sink) : sink_(sink) {} 41 WrapsSink(WebRtcAudioCapturerSink* sink) : sink_(sink) {}
(...skipping 11 matching lines...) Expand all
57 friend class base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>; 53 friend class base::RefCountedThreadSafe<WebRtcAudioCapturerSinkOwner>;
58 WebRtcAudioCapturerSink* delegate_; 54 WebRtcAudioCapturerSink* delegate_;
59 mutable base::Lock lock_; 55 mutable base::Lock lock_;
60 56
61 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioCapturerSinkOwner); 57 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioCapturerSinkOwner);
62 }; 58 };
63 59
64 } // namespace content 60 } // namespace content
65 61
66 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_ 62 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_CAPTURER_SINK_OWNER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698