| Index: media/base/audio_parameters.h
|
| diff --git a/media/base/audio_parameters.h b/media/base/audio_parameters.h
|
| index 68fbd54754f51c9254e0cc827508e2e11d14c05f..ff859b87d0854179ae396f1e303aaed34bd3ccbe 100644
|
| --- a/media/base/audio_parameters.h
|
| +++ b/media/base/audio_parameters.h
|
| @@ -35,14 +35,15 @@ static_assert(AudioBus::kChannelAlignment == PARAMETERS_ALIGNMENT,
|
| struct MEDIA_EXPORT ALIGNAS(PARAMETERS_ALIGNMENT) AudioInputBufferParameters {
|
| double volume;
|
| uint32_t size;
|
| - uint32_t hardware_delay_bytes;
|
| + int64_t delay; // delay in microseconds
|
| + int64_t delay_timestamp; // base::TimeTicks in microseconds.
|
| uint32_t id;
|
| bool key_pressed;
|
| };
|
| struct MEDIA_EXPORT ALIGNAS(PARAMETERS_ALIGNMENT) AudioOutputBufferParameters {
|
| uint32_t frames_skipped;
|
| - int64_t delay;
|
| - int64_t delay_timestamp;
|
| + int64_t delay; // delay in microseconds.
|
| + int64_t delay_timestamp; // base::TimeTicks in microseconds.
|
| };
|
| #undef PARAMETERS_ALIGNMENT
|
| #if defined(OS_WIN)
|
|
|