audio_frame_manipulator.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef MODULES_AUDIO_MIXER_AUDIO_FRAME_MANIPULATOR_H_
  11. #define MODULES_AUDIO_MIXER_AUDIO_FRAME_MANIPULATOR_H_
  12. #include <stddef.h>
  13. #include <stdint.h>
  14. #include "api/audio/audio_frame.h"
  15. namespace webrtc {
  16. // Updates the audioFrame's energy (based on its samples).
  17. uint32_t AudioMixerCalculateEnergy(const AudioFrame& audio_frame);
  18. // Ramps up or down the provided audio frame. Ramp(0, 1, frame) will
  19. // linearly increase the samples in the frame from 0 to full volume.
  20. void Ramp(float start_gain, float target_gain, AudioFrame* audio_frame);
  21. // Downmixes or upmixes a frame between stereo and mono.
  22. void RemixFrame(size_t target_number_of_channels, AudioFrame* frame);
  23. } // namespace webrtc
  24. #endif // MODULES_AUDIO_MIXER_AUDIO_FRAME_MANIPULATOR_H_