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

Side by Side Diff: media/audio/linux/pulse_output.cc

Issue 8590045: Revert 110584 - Make pulseaudio available for all posix platforms and add support on OpenBSD. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « media/audio/linux/pulse_output.h ('k') | media/audio/openbsd/audio_manager_openbsd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "media/audio/linux/pulse_output.h" 5 #include "media/audio/linux/pulse_output.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "media/audio/audio_parameters.h" 9 #include "media/audio/audio_parameters.h"
10 #include "media/audio/audio_util.h" 10 #include "media/audio/audio_util.h"
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 *volume = volume_; 411 *volume = volume_;
412 } 412 }
413 413
414 uint32 PulseAudioOutputStream::RunDataCallback( 414 uint32 PulseAudioOutputStream::RunDataCallback(
415 uint8* dest, uint32 max_size, AudioBuffersState buffers_state) { 415 uint8* dest, uint32 max_size, AudioBuffersState buffers_state) {
416 if (source_callback_) 416 if (source_callback_)
417 return source_callback_->OnMoreData(this, dest, max_size, buffers_state); 417 return source_callback_->OnMoreData(this, dest, max_size, buffers_state);
418 418
419 return 0; 419 return 0;
420 } 420 }
OLDNEW
« no previous file with comments | « media/audio/linux/pulse_output.h ('k') | media/audio/openbsd/audio_manager_openbsd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698