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

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

Issue 499233003: Binding media stream audio track to speech recognition [renderer] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring unit test and source provider, moved to media Created 6 years, 3 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 2014 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_SPEECH_RECOGNITION_AUDIO_SOURCE_PROVIDER_H_
6 #define CONTENT_RENDERER_SPEECH_RECOGNITION_AUDIO_SOURCE_PROVIDER_H_
7
8 #include "base/callback.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/shared_memory.h"
11 #include "base/sync_socket.h"
12 #include "base/threading/thread_checker.h"
13 #include "content/common/content_export.h"
14 #include "content/public/renderer/media_stream_audio_sink.h"
15 #include "content/renderer/media/media_stream_audio_source.h"
16 #include "media/audio/audio_parameters.h"
17 #include "media/base/audio_converter.h"
18 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
19
20 namespace media {
21 class AudioBus;
22 class AudioFifo;
23 class AudioParameters;
24 }
25
26 namespace content {
27
28 // SpeechRecognitionAudioSourceProvider works as an audio sink to the
29 // WebRtcLocalAudioTrack. It stores the capture data into a FIFO.
30 // When the FIFO has enough data for resampling, it converts it,
31 // passes the buffer to the |WebSpeechRecognizer| via SharedMemory
32 // and notifies it via SyncSocket followed by incrementing the |buffer_index_|.
33 // |WebSpeechRecognizer| increments the shared buffer index to synchronize.
34 class CONTENT_EXPORT SpeechRecognitionAudioSourceProvider
35 : NON_EXPORTED_BASE(public media::AudioConverter::InputCallback),
36 NON_EXPORTED_BASE(public MediaStreamAudioSink) {
37 public:
38
39 typedef base::Callback<void()> OnStoppedCB;
40
41 SpeechRecognitionAudioSourceProvider(const blink::WebMediaStreamTrack& track,
42 const media::AudioParameters& params,
43 const base::SharedMemoryHandle memory,
44 base::SyncSocket* socket,
45 OnStoppedCB on_error_cb);
46
47 virtual ~SpeechRecognitionAudioSourceProvider();
48
49 // Returns whether the provided track is supported.
50 static bool IsSupportedTrack(const blink::WebMediaStreamTrack& track);
51
52 private:
53 // content::MediaStreamAudioSink implementation.
54 virtual void OnReadyStateChanged(
55 blink::WebMediaStreamSource::ReadyState state) OVERRIDE;
56
57 virtual void OnData(const int16* audio_data, int sample_rate,
58 int number_of_channels, int number_of_frames) OVERRIDE;
59 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
60
61 // media::AudioConverter::Inputcallback implementation.
62 virtual double ProvideInput(media::AudioBus* audio_bus,
63 base::TimeDelta buffer_delay) OVERRIDE;
64
65 // Number of frames per buffer in FIFO. When the buffer is full we convert and
66 // consume it on the |output_bus_|. Size of the buffer depends on the
67 // resampler. Example: for 44.1 to 16.0 conversion, it should be 4100 frames.
68 int fifo_buffer_size_;
69
70 // Used to DCHECK that some methods are called on the main render thread.
71 base::ThreadChecker main_render_thread_checker_;
72
73 // Used to DCHECK that some methods are called on the capture audio thread.
74 base::ThreadChecker capture_thread_checker_;
75
76 // The audio track that this source provider is connected to.
77 const blink::WebMediaStreamTrack track_;
78
79 // Shared memory used by audio buses on both browser and renderer processes.
80 base::SharedMemory shared_memory_;
81
82 // Socket for syncronization of audio bus reads/writes.
83 base::SyncSocket* socket_;
no longer working on chromium 2014/09/17 15:55:19 Please see my previous comments about this socket_
burnik 2014/09/18 09:19:35 Fixed. On 2014/09/17 15:55:19, xians1 wrote:
84
85 // Used as a resampler to deliver appropriate format to speech recognition.
86 scoped_ptr<media::AudioConverter> audio_converter_;
87
88 // FIFO is used for queueing audio frames before we resample.
89 scoped_ptr<media::AudioFifo> fifo_;
90
91 // Audio delivered from source.
92 scoped_ptr<media::AudioBus> input_bus_;
93
94 // Audio bus shared with the browser process via |shared_memory_|.
95 scoped_ptr<media::AudioBus> output_bus_;
96
97 // Params of the source audio. Can change when |OnSetFormat| occurs.
98 media::AudioParameters input_params_;
99
100 // Params used by speech recognition.
101 const media::AudioParameters output_params_;
102
103 // Whether the track has been stopped.
104 bool track_stopped_;
105
106 // Local counter of audio buffers for synchronization.
107 uint32 buffer_index_;
108
109 // Peer's counter of audio buffers for synchronization.
110 const uint32* peer_buffer_index_;
111
112 // Callback for the renderer client. Called when the audio track was stopped.
113 const OnStoppedCB on_stopped_cb_;
114
115 DISALLOW_COPY_AND_ASSIGN(SpeechRecognitionAudioSourceProvider);
116 };
117
118 } // namespace content
119
120 #endif // CONTENT_RENDERER_SPEECH_RECOGNITION_AUDIO_SOURCE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698