Chromium Code Reviews| Index: media/audio/android/opensles_input.cc |
| diff --git a/media/audio/android/opensles_input.cc b/media/audio/android/opensles_input.cc |
| index 15c3eac3726389bb7f8d0a7f37ee4b8d35a82f91..ba4eafdefaeaa305bb0b9640dc776700019e1090 100644 |
| --- a/media/audio/android/opensles_input.cc |
| +++ b/media/audio/android/opensles_input.cc |
| @@ -4,6 +4,7 @@ |
| #include "media/audio/android/opensles_input.h" |
| +#include "base/debug/trace_event.h" |
| #include "base/logging.h" |
| #include "media/audio/android/audio_manager_android.h" |
| @@ -24,9 +25,10 @@ OpenSLESInputStream::OpenSLESInputStream(AudioManagerAndroid* audio_manager, |
| callback_(NULL), |
| recorder_(NULL), |
| simple_buffer_queue_(NULL), |
| - active_queue_(0), |
| + active_buffer_index_(0), |
| buffer_size_bytes_(0), |
| started_(false) { |
| + DVLOG(2) << "OpenSLESInputStream::OpenSLESInputStream()"; |
| format_.formatType = SL_DATAFORMAT_PCM; |
| format_.numChannels = static_cast<SLuint32>(params.channels()); |
| // Provides sampling rate in milliHertz to OpenSLES. |
| @@ -47,6 +49,8 @@ OpenSLESInputStream::OpenSLESInputStream(AudioManagerAndroid* audio_manager, |
| } |
| OpenSLESInputStream::~OpenSLESInputStream() { |
| + DVLOG(2) << "OpenSLESInputStream::~OpenSLESInputStream()"; |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| DCHECK(!recorder_object_.Get()); |
| DCHECK(!engine_object_.Get()); |
| DCHECK(!recorder_); |
| @@ -55,6 +59,8 @@ OpenSLESInputStream::~OpenSLESInputStream() { |
| } |
| bool OpenSLESInputStream::Open() { |
| + DVLOG(2) << "OpenSLESInputStream::Open()"; |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| if (engine_object_.Get()) |
| return false; |
| @@ -62,25 +68,42 @@ bool OpenSLESInputStream::Open() { |
| return false; |
| SetupAudioBuffer(); |
| + active_buffer_index_ = 0; |
| return true; |
| } |
| void OpenSLESInputStream::Start(AudioInputCallback* callback) { |
| + DVLOG(2) << "OpenSLESInputStream::Start()"; |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| DCHECK(callback); |
| DCHECK(recorder_); |
| DCHECK(simple_buffer_queue_); |
| if (started_) |
| return; |
| - // Enable the flags before streaming. |
| + base::AutoLock lock(lock_); |
| + DCHECK(callback_ == NULL || callback_ == callback); |
|
wjia(left Chromium)
2013/09/03 22:36:46
It's more appropriate to clear |callback_| in Stop
henrika (OOO until Aug 14)
2013/09/04 07:44:57
Actually, No. Since the current design is that the
|
| callback_ = callback; |
| - active_queue_ = 0; |
| - started_ = true; |
| - SLresult err = SL_RESULT_UNKNOWN_ERROR; |
| - // Enqueues |kNumOfQueuesInBuffer| zero buffers to get the ball rolling. |
| - for (int i = 0; i < kNumOfQueuesInBuffer; ++i) { |
| + // Check queue state and derive the number of free buffers in the queue. |
| + SLAndroidSimpleBufferQueueState buffer_queue_state; |
| + SLresult err = (*simple_buffer_queue_)->GetState(simple_buffer_queue_, |
| + &buffer_queue_state); |
| + if (SL_RESULT_SUCCESS != err) { |
| + HandleError(err); |
| + return; |
| + } |
| + int num_free_buffers = kMaxNumOfBuffersInQueue - buffer_queue_state.count; |
| + DCHECK(num_free_buffers == kMaxNumOfBuffersInQueue || num_free_buffers == 0); |
| + |
| + // Enqueues |num_free_buffers| zero buffers to get the ball rolling. |
| + // |num_free_buffers| can be zero if Stop() has been called followed by a |
| + // new call to Start(). We do clear the queue in Stop, and the buffer state |
| + // should then be cleared, but for some reason it is not. Using this |
| + // approach enables call sequences like: Start(), Stop(), Start(), even if |
| + // there might be some old data remaining at the second call to Start(). |
| + for (int i = 0; i < num_free_buffers; ++i) { |
|
wjia(left Chromium)
2013/09/03 22:36:46
num_free_buffers is used incorrectly here, because
henrika (OOO until Aug 14)
2013/09/04 07:44:57
I have verified this scheme on four different devi
wjia(left Chromium)
2013/09/05 22:09:03
The essential problem is that Clear() doesn't work
henrika (OOO until Aug 14)
2013/09/06 08:04:53
I understand your concern but note that the curren
|
| err = (*simple_buffer_queue_)->Enqueue( |
| simple_buffer_queue_, |
| audio_data_[i], |
| @@ -91,17 +114,27 @@ void OpenSLESInputStream::Start(AudioInputCallback* callback) { |
| } |
| } |
| - // Start the recording by setting the state to |SL_RECORDSTATE_RECORDING|. |
| + // Start the recording by setting the state to SL_RECORDSTATE_RECORDING. |
| + // When the object is in the SL_RECORDSTATE_RECORDING state, adding buffers |
| + // will implicitly start the filling process. |
| err = (*recorder_)->SetRecordState(recorder_, SL_RECORDSTATE_RECORDING); |
| - if (SL_RESULT_SUCCESS != err) |
| + if (SL_RESULT_SUCCESS != err) { |
| HandleError(err); |
| + return; |
| + } |
| + |
| + started_ = true; |
| } |
| void OpenSLESInputStream::Stop() { |
| + DVLOG(2) << "OpenSLESInputStream::Stop()"; |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| if (!started_) |
| return; |
| - // Stop recording by setting the record state to |SL_RECORDSTATE_STOPPED|. |
| + base::AutoLock lock(lock_); |
| + |
| + // Stop recording by setting the record state to SL_RECORDSTATE_STOPPED. |
| LOG_ON_FAILURE_AND_RETURN( |
| (*recorder_)->SetRecordState(recorder_, |
| SL_RECORDSTATE_STOPPED)); |
| @@ -114,17 +147,30 @@ void OpenSLESInputStream::Stop() { |
| } |
| void OpenSLESInputStream::Close() { |
| + DVLOG(2) << "OpenSLESInputStream::Close()"; |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| + |
| // Stop the stream if it is still recording. |
| Stop(); |
| + { |
| + base::AutoLock lock(lock_); |
| - // Explicitly free the player objects and invalidate their associated |
| - // interfaces. They have to be done in the correct order. |
| - recorder_object_.Reset(); |
| - engine_object_.Reset(); |
| - simple_buffer_queue_ = NULL; |
| - recorder_ = NULL; |
| + if (callback_) { |
| + callback_->OnClose(this); |
| + callback_ = NULL; |
| + } |
| + |
| + // Destroy the buffer queue recorder object and invalidate all associated |
| + // interfaces. |
| + recorder_object_.Reset(); |
| + simple_buffer_queue_ = NULL; |
| + recorder_ = NULL; |
| - ReleaseAudioBuffer(); |
| + // Destroy the engine object. We don't store any associated interface for |
| + // this object. |
| + engine_object_.Reset(); |
| + ReleaseAudioBuffer(); |
| + } |
| audio_manager_->ReleaseInputStream(this); |
| } |
| @@ -153,6 +199,12 @@ bool OpenSLESInputStream::GetAutomaticGainControl() { |
| } |
| bool OpenSLESInputStream::CreateRecorder() { |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| + DCHECK(!engine_object_.Get()); |
| + DCHECK(!recorder_object_.Get()); |
| + DCHECK(!recorder_); |
| + DCHECK(!simple_buffer_queue_); |
| + |
| // Initializes the engine object with specific option. After working with the |
| // object, we need to free the object and its resources. |
| SLEngineOption option[] = { |
| @@ -187,8 +239,8 @@ bool OpenSLESInputStream::CreateRecorder() { |
| // Audio sink configuration. |
| SLDataLocator_AndroidSimpleBufferQueue buffer_queue = { |
| - SL_DATALOCATOR_ANDROIDSIMPLEBUFFERQUEUE, // Locator type. |
| - static_cast<SLuint32>(kNumOfQueuesInBuffer) // Number of buffers. |
| + SL_DATALOCATOR_ANDROIDSIMPLEBUFFERQUEUE, |
| + static_cast<SLuint32>(kMaxNumOfBuffersInQueue) |
| }; |
| SLDataSink audio_sink = { &buffer_queue, &format_ }; |
| @@ -201,6 +253,7 @@ bool OpenSLESInputStream::CreateRecorder() { |
| SL_BOOLEAN_TRUE, |
| SL_BOOLEAN_TRUE |
| }; |
| + |
| // Create AudioRecorder and specify SL_IID_ANDROIDCONFIGURATION. |
| LOG_ON_FAILURE_AND_RETURN( |
| (*engine)->CreateAudioRecorder(engine, |
| @@ -219,6 +272,7 @@ bool OpenSLESInputStream::CreateRecorder() { |
| &recorder_config), |
| false); |
| + // Uses the main microphone tuned for audio communications. |
| SLint32 stream_type = SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION; |
| LOG_ON_FAILURE_AND_RETURN( |
| (*recorder_config)->SetConfiguration(recorder_config, |
| @@ -265,37 +319,55 @@ void OpenSLESInputStream::SimpleBufferQueueCallback( |
| } |
| void OpenSLESInputStream::ReadBufferQueue() { |
| - if (!started_) |
| + base::AutoLock lock(lock_); |
| + if (!recorder_) |
|
wjia(left Chromium)
2013/09/03 22:36:46
|recorder_| is cleared in Closed(). That means aft
henrika (OOO until Aug 14)
2013/09/04 07:44:57
Same comment as above. |callback_| must be used in
wjia(left Chromium)
2013/09/05 22:09:03
You can use |started_|, instead of |recorder_|, si
henrika (OOO until Aug 14)
2013/09/06 13:38:10
Thanks. Will think again and probably restore the
henrika (OOO until Aug 14)
2013/09/06 15:59:51
Ignore my previous comment. Should be Done.
|
| return; |
| - // TODO(xians): Get an accurate delay estimation. |
| + TRACE_EVENT0("audio", "OpenSLESOutputStream::ReadBufferQueue"); |
| + |
| + // Verify that we are in a recording state. |
| + SLuint32 state; |
| + SLresult err = (*recorder_)->GetRecordState(recorder_, &state); |
| + if (SL_RESULT_SUCCESS != err) { |
| + HandleError(err); |
| + return; |
| + } |
| + if (state != SL_RECORDSTATE_RECORDING) { |
| + DLOG(WARNING) << "Received callback in non-recording state"; |
| + return; |
| + } |
| + |
| + // TODO(henrika): Investigate if it is possible to get an accurate |
| + // delay estimation. |
| callback_->OnData(this, |
| - audio_data_[active_queue_], |
| + audio_data_[active_buffer_index_], |
| buffer_size_bytes_, |
| buffer_size_bytes_, |
| 0.0); |
| // Done with this buffer. Send it to device for recording. |
| - SLresult err = (*simple_buffer_queue_)->Enqueue( |
| + err = (*simple_buffer_queue_)->Enqueue( |
| simple_buffer_queue_, |
| - audio_data_[active_queue_], |
| + audio_data_[active_buffer_index_], |
| buffer_size_bytes_); |
| if (SL_RESULT_SUCCESS != err) |
| HandleError(err); |
| - active_queue_ = (active_queue_ + 1) % kNumOfQueuesInBuffer; |
| + active_buffer_index_ = (active_buffer_index_ + 1) % kMaxNumOfBuffersInQueue; |
| } |
| void OpenSLESInputStream::SetupAudioBuffer() { |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| DCHECK(!audio_data_[0]); |
| - for (int i = 0; i < kNumOfQueuesInBuffer; ++i) { |
| + for (int i = 0; i < kMaxNumOfBuffersInQueue; ++i) { |
| audio_data_[i] = new uint8[buffer_size_bytes_]; |
| } |
| } |
| void OpenSLESInputStream::ReleaseAudioBuffer() { |
| + DCHECK(thread_checker_.CalledOnValidThread()); |
| if (audio_data_[0]) { |
| - for (int i = 0; i < kNumOfQueuesInBuffer; ++i) { |
| + for (int i = 0; i < kMaxNumOfBuffersInQueue; ++i) { |
| delete [] audio_data_[i]; |
| audio_data_[i] = NULL; |
| } |
| @@ -303,7 +375,7 @@ void OpenSLESInputStream::ReleaseAudioBuffer() { |
| } |
| void OpenSLESInputStream::HandleError(SLresult error) { |
| - DLOG(FATAL) << "OpenSLES Input error " << error; |
| + DLOG(ERROR) << "OpenSLES Input error " << error; |
| if (callback_) |
| callback_->OnError(this); |
| } |