niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 1 | /* |
braveyao@webrtc.org | d713143 | 2012-03-29 10:39:44 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 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 | |
Fredrik Solenberg | a8b7c7f | 2018-01-17 10:18:31 | [diff] [blame] | 11 | #ifndef AUDIO_REMIX_RESAMPLE_H_ |
| 12 | #define AUDIO_REMIX_RESAMPLE_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 13 | |
Fredrik Solenberg | bbf21a3 | 2018-04-12 20:44:09 | [diff] [blame] | 14 | #include "api/audio/audio_frame.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 15 | #include "common_audio/resampler/include/push_resampler.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 16 | |
andrew@webrtc.org | 40ee3d0 | 2014-04-03 21:56:01 | [diff] [blame] | 17 | namespace webrtc { |
andrew@webrtc.org | 40ee3d0 | 2014-04-03 21:56:01 | [diff] [blame] | 18 | namespace voe { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 19 | |
Artem Titov | b0ea637 | 2021-07-26 09:47:07 | [diff] [blame] | 20 | // Upmix or downmix and resample the audio to `dst_frame`. Expects `dst_frame` |
Alejandro Luebs | cdfe20b | 2015-09-23 19:49:12 | [diff] [blame] | 21 | // to have its sample rate and channels members set to the desired values. |
Artem Titov | b0ea637 | 2021-07-26 09:47:07 | [diff] [blame] | 22 | // Updates the `samples_per_channel_` member accordingly. |
Alejandro Luebs | cdfe20b | 2015-09-23 19:49:12 | [diff] [blame] | 23 | // |
Artem Titov | b0ea637 | 2021-07-26 09:47:07 | [diff] [blame] | 24 | // This version has an AudioFrame `src_frame` as input and sets the output |
| 25 | // `timestamp_`, `elapsed_time_ms_` and `ntp_time_ms_` members equals to the |
Alejandro Luebs | cdfe20b | 2015-09-23 19:49:12 | [diff] [blame] | 26 | // input ones. |
andrew@webrtc.org | 40ee3d0 | 2014-04-03 21:56:01 | [diff] [blame] | 27 | void RemixAndResample(const AudioFrame& src_frame, |
andrew@webrtc.org | f5a33f1 | 2014-04-19 00:32:07 | [diff] [blame] | 28 | PushResampler<int16_t>* resampler, |
andrew@webrtc.org | 40ee3d0 | 2014-04-03 21:56:01 | [diff] [blame] | 29 | AudioFrame* dst_frame); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 30 | |
Artem Titov | b0ea637 | 2021-07-26 09:47:07 | [diff] [blame] | 31 | // This version has a pointer to the samples `src_data` as input and receives |
| 32 | // `samples_per_channel`, `num_channels` and `sample_rate_hz` of the data as |
Alejandro Luebs | cdfe20b | 2015-09-23 19:49:12 | [diff] [blame] | 33 | // parameters. |
| 34 | void RemixAndResample(const int16_t* src_data, |
| 35 | size_t samples_per_channel, |
Peter Kasting | 6955870 | 2016-01-13 00:26:35 | [diff] [blame] | 36 | size_t num_channels, |
Alejandro Luebs | cdfe20b | 2015-09-23 19:49:12 | [diff] [blame] | 37 | int sample_rate_hz, |
| 38 | PushResampler<int16_t>* resampler, |
| 39 | AudioFrame* dst_frame); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 40 | |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 | [diff] [blame] | 41 | } // namespace voe |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 | [diff] [blame] | 42 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 | [diff] [blame] | 43 | |
Fredrik Solenberg | a8b7c7f | 2018-01-17 10:18:31 | [diff] [blame] | 44 | #endif // AUDIO_REMIX_RESAMPLE_H_ |