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

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

Issue 1647773002: MediaStream audio sourcing: Bypass audio processing for non-WebRTC cases. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NOT FOR REVIEW -- This will be broken-up across multiple CLs. Created 4 years, 10 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_
6 #define CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_
7
8 #include "content/renderer/media/media_stream_audio_source.h"
9
10 #include "media/base/audio_capturer_source.h"
11
12 namespace content {
13
14 // Represents an externally-provided local or remote source of audio data. This
15 // allows users of the public content::MediaStreamApi to provide a
16 // media::AudioCapturerSource to be used as the source of audio data in the
17 // MediaStream framework. Audio data is transported directly to the tracks
18 // (i.e., there is no audio processing).
19 class CONTENT_EXPORT ExternalMediaStreamAudioSource
20 : NON_EXPORTED_BASE(public MediaStreamAudioSource),
21 NON_EXPORTED_BASE(public media::AudioCapturerSource::CaptureCallback) {
22 public:
23 ExternalMediaStreamAudioSource(
24 const scoped_refptr<media::AudioCapturerSource>& source,
25 int sample_rate,
26 media::ChannelLayout channel_layout,
27 int frames_per_buffer,
28 bool is_remote);
29
30 ~ExternalMediaStreamAudioSource() final;
31
32 private:
33 // MediaStreamAudioSource implementation.
34 void DoStopSource() final;
35 bool EnsureSourceIsStarted() final;
36
37 // media::AudioCapturerSource::CaptureCallback implementation.
38 void Capture(const media::AudioBus* audio_bus,
39 int audio_delay_milliseconds,
40 double volume,
41 bool key_pressed) final;
42 void OnCaptureError(const std::string& message) final;
43
44 // The external source provided to the constructor.
45 const scoped_refptr<media::AudioCapturerSource> source_;
46
47 // True once the source has been started successfully.
48 bool is_started_;
49
50 DISALLOW_COPY_AND_ASSIGN(ExternalMediaStreamAudioSource);
51 };
52
53 } // namespace content
54
55 #endif // CONTENT_RENDERER_MEDIA_EXTERNAL_MEDIA_STREAM_AUDIO_SOURCE_H_
OLDNEW
« no previous file with comments | « content/renderer/media/audio_track_recorder_unittest.cc ('k') | content/renderer/media/external_media_stream_audio_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698