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

Unified Diff: media/audio/cras/audio_manager_cras.cc

Issue 11959018: Add a unified audio I/O backend for ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and remove redundant code. Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/audio/cras/cras_output.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/cras/audio_manager_cras.cc
diff --git a/media/audio/cras/audio_manager_cras.cc b/media/audio/cras/audio_manager_cras.cc
index 3401cc5f62310cd41b423084013c9f30e2a0827f..253a1de0be777f46d11e9ff2466fee08eb60cd09 100644
--- a/media/audio/cras/audio_manager_cras.cc
+++ b/media/audio/cras/audio_manager_cras.cc
@@ -12,7 +12,7 @@
#include "base/stl_util.h"
#include "media/audio/audio_util.h"
#include "media/audio/cras/cras_input.h"
-#include "media/audio/cras/cras_output.h"
+#include "media/audio/cras/cras_unified.h"
namespace media {
@@ -82,7 +82,7 @@ AudioInputStream* AudioManagerCras::MakeLowLatencyInputStream(
AudioOutputStream* AudioManagerCras::MakeOutputStream(
const AudioParameters& params) {
- return new CrasOutputStream(params, this);
+ return new CrasUnifiedStream(params, this);
Chris Rogers 2013/02/21 18:17:26 For the moment, I think you'll need to put this be
dgreid 2013/02/22 02:09:35 the way I wired this up I'm going through the new
}
AudioInputStream* AudioManagerCras::MakeInputStream(
« no previous file with comments | « no previous file | media/audio/cras/cras_output.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698