Index: media/audio/audio_output_resampler.h |
=================================================================== |
--- media/audio/audio_output_resampler.h (revision 157152) |
+++ media/audio/audio_output_resampler.h (working copy) |
@@ -82,8 +82,11 @@ |
// Called by AudioPullFifo when more data is necessary. Requires |
// |source_lock_| to have been acquired. |
- void SourceCallback_Locked(AudioBus* audio_bus); |
+ void SourceCallback_Locked(AudioBus* dest); |
+ // Passes through |source| to the |source_callback_| OnMoreIOData() call. |
+ void SourceIOCallback_Locked(AudioBus* source, AudioBus* dest); |
+ |
// Used by StopStream()/CloseStream()/Shutdown() to clear internal state. |
// TODO(dalecurtis): Probably only one of these methods needs to call this, |
// the rest should DCHECK()/CHECK() that the values were reset. |