Index: content/renderer/media/webrtc_audio_device_impl.h |
diff --git a/content/renderer/media/webrtc_audio_device_impl.h b/content/renderer/media/webrtc_audio_device_impl.h |
index e9e9d85672222aa7144831112d997a513a33b719..c7c2ff108b23f9be67b0e9faa5cf5e7433abf4c7 100644 |
--- a/content/renderer/media/webrtc_audio_device_impl.h |
+++ b/content/renderer/media/webrtc_audio_device_impl.h |
@@ -192,6 +192,7 @@ class WebRtcAudioRendererSource { |
virtual void RenderData(media::AudioBus* audio_bus, |
int sample_rate, |
int audio_delay_milliseconds, |
+ uint32_t skipped_frames, |
base::TimeDelta* current_time) = 0; |
// Callback to notify the client that the renderer is going away. |
@@ -218,7 +219,8 @@ class WebRtcPlayoutDataSource { |
// Called on the render audio thread. |
virtual void OnPlayoutData(media::AudioBus* audio_bus, |
int sample_rate, |
- int audio_delay_milliseconds) = 0; |
+ int audio_delay_milliseconds, |
+ uint32_t skipped_frames) = 0; |
// Callback to notify the sink that the source has changed. |
// Called on the main render thread. |
@@ -342,6 +344,7 @@ class CONTENT_EXPORT WebRtcAudioDeviceImpl |
void RenderData(media::AudioBus* audio_bus, |
int sample_rate, |
int audio_delay_milliseconds, |
+ uint32_t skipped_frames, |
base::TimeDelta* current_time) override; |
// Called on the main render thread. |