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

Side by Side Diff: content/browser/renderer_host/media/audio_renderer_host_unittest.cc

Issue 10830268: Allow audio system to handle synchronized low-latency audio I/O (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/environment.h" 6 #include "base/environment.h"
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/process_util.h" 9 #include "base/process_util.h"
10 #include "base/sync_socket.h" 10 #include "base/sync_socket.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 else 200 else
201 format = media::AudioParameters::AUDIO_PCM_LINEAR; 201 format = media::AudioParameters::AUDIO_PCM_LINEAR;
202 202
203 media::AudioParameters params( 203 media::AudioParameters params(
204 format, CHANNEL_LAYOUT_STEREO, 204 format, CHANNEL_LAYOUT_STEREO,
205 media::AudioParameters::kAudioCDSampleRate, 16, 205 media::AudioParameters::kAudioCDSampleRate, 16,
206 media::AudioParameters::kAudioCDSampleRate / 10); 206 media::AudioParameters::kAudioCDSampleRate / 10);
207 207
208 // Send a create stream message to the audio output stream and wait until 208 // Send a create stream message to the audio output stream and wait until
209 // we receive the created message. 209 // we receive the created message.
210 host_->OnCreateStream(kStreamId, params); 210 host_->OnCreateStream(kStreamId, params, 0);
211 message_loop_->Run(); 211 message_loop_->Run();
212 } 212 }
213 213
214 void Close() { 214 void Close() {
215 EXPECT_CALL(*observer_, 215 EXPECT_CALL(*observer_,
216 OnSetAudioStreamStatus(_, kStreamId, "closed")); 216 OnSetAudioStreamStatus(_, kStreamId, "closed"));
217 217
218 // Send a message to AudioRendererHost to tell it we want to close the 218 // Send a message to AudioRendererHost to tell it we want to close the
219 // stream. 219 // stream.
220 host_->OnCloseStream(kStreamId); 220 host_->OnCloseStream(kStreamId);
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 EnableRealDevice(); 392 EnableRealDevice();
393 393
394 Create(); 394 Create();
395 Play(); 395 Play();
396 SimulateError(); 396 SimulateError();
397 Close(); 397 Close();
398 } 398 }
399 399
400 400
401 // TODO(hclam): Add tests for data conversation in low latency mode. 401 // TODO(hclam): Add tests for data conversation in low latency mode.
OLDNEW
« no previous file with comments | « content/browser/renderer_host/media/audio_renderer_host.cc ('k') | content/browser/renderer_host/media/audio_sync_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698