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

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

Issue 671793004: Clean up the media stream audio track code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 1 month 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
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_MEDIA_STREAM_AUDIO_SINK_OWNER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_SINK_OWNER_H_
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_SINK_OWNER_H_ 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_SINK_OWNER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/synchronization/lock.h" 10 #include "base/synchronization/lock.h"
11 #include "content/renderer/media/media_stream_audio_track_sink.h" 11 #include "content/renderer/media/media_stream_audio_track_sink.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 class MediaStreamAudioSink; 15 class MediaStreamAudioSink;
16 16
17 // Reference counted holder of MediaStreamAudioSink sinks. 17 // Reference counted holder of MediaStreamAudioSink sinks.
18 class MediaStreamAudioSinkOwner : public MediaStreamAudioTrackSink { 18 class MediaStreamAudioSinkOwner : public MediaStreamAudioTrackSink {
19 public: 19 public:
20 explicit MediaStreamAudioSinkOwner(MediaStreamAudioSink* sink); 20 explicit MediaStreamAudioSinkOwner(MediaStreamAudioSink* sink);
21 21
22 // MediaStreamAudioTrackSink implementation. 22 // MediaStreamAudioTrackSink implementation.
23 int OnData(const int16* audio_data, 23 void OnData(const int16* audio_data,
24 int sample_rate, 24 int sample_rate,
25 int number_of_channels, 25 int number_of_channels,
26 int number_of_frames, 26 int number_of_frames) override;
27 const std::vector<int>& channels,
28 int audio_delay_milliseconds,
29 int current_volume,
30 bool need_audio_processing,
31 bool key_pressed) override;
32 void OnSetFormat(const media::AudioParameters& params) override; 27 void OnSetFormat(const media::AudioParameters& params) override;
33 void OnReadyStateChanged( 28 void OnReadyStateChanged(
34 blink::WebMediaStreamSource::ReadyState state) override; 29 blink::WebMediaStreamSource::ReadyState state) override;
35 void Reset() override; 30 void Reset() override;
36 bool IsEqual(const MediaStreamAudioSink* other) const override; 31 bool IsEqual(const MediaStreamAudioSink* other) const override;
37 bool IsEqual(const PeerConnectionAudioSink* other) const override;
38 32
39 protected: 33 protected:
40 ~MediaStreamAudioSinkOwner() override {} 34 ~MediaStreamAudioSinkOwner() override {}
41 35
42 private: 36 private:
43 mutable base::Lock lock_; 37 mutable base::Lock lock_;
44 38
45 // Raw pointer to the delegate, the client need to call Reset() to set the 39 // Raw pointer to the delegate, the client need to call Reset() to set the
46 // pointer to NULL before the delegate goes away. 40 // pointer to NULL before the delegate goes away.
47 MediaStreamAudioSink* delegate_; 41 MediaStreamAudioSink* delegate_;
48 42
49 DISALLOW_COPY_AND_ASSIGN(MediaStreamAudioSinkOwner); 43 DISALLOW_COPY_AND_ASSIGN(MediaStreamAudioSinkOwner);
50 }; 44 };
51 45
52 } // namespace content 46 } // namespace content
53 47
54 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_SINK_OWNER_H_ 48 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_SINK_OWNER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698