diff options
Diffstat (limited to 'remoting/codec')
-rw-r--r-- | remoting/codec/audio_encoder_opus.cc | 3 | ||||
-rw-r--r-- | remoting/codec/audio_encoder_opus.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/remoting/codec/audio_encoder_opus.cc b/remoting/codec/audio_encoder_opus.cc index 6ff3056..ab19c94 100644 --- a/remoting/codec/audio_encoder_opus.cc +++ b/remoting/codec/audio_encoder_opus.cc @@ -124,7 +124,8 @@ bool AudioEncoderOpus::ResetForPacket(AudioPacket* packet) { return encoder_ != NULL; } -void AudioEncoderOpus::FetchBytesToResample(media::AudioBus* audio_bus) { +void AudioEncoderOpus::FetchBytesToResample(int resampler_frame_delay, + media::AudioBus* audio_bus) { DCHECK(resampling_data_); int samples_left = (resampling_data_size_ - resampling_data_pos_) / kBytesPerSample / channels_; diff --git a/remoting/codec/audio_encoder_opus.h b/remoting/codec/audio_encoder_opus.h index b172de2..7f610d4 100644 --- a/remoting/codec/audio_encoder_opus.h +++ b/remoting/codec/audio_encoder_opus.h @@ -34,7 +34,8 @@ class AudioEncoderOpus : public AudioEncoder { void DestroyEncoder(); bool ResetForPacket(AudioPacket* packet); - void FetchBytesToResample(media::AudioBus* audio_bus); + void FetchBytesToResample(int resampler_frame_delay, + media::AudioBus* audio_bus); int sampling_rate_; AudioPacket::Channels channels_; |