niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
tina.legrand@webrtc.org | ae1c454 | 2012-03-12 08:41:30 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |
| 12 | #define MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
tina.legrand@webrtc.org | 16b6b90 | 2012-04-12 11:02:38 +0000 | [diff] [blame] | 14 | #include <math.h> |
| 15 | |
kwiberg | 3747838 | 2016-02-14 20:40:57 -0800 | [diff] [blame] | 16 | #include <memory> |
| 17 | |
Fredrik Solenberg | ec0f45b | 2018-12-03 15:50:44 +0000 | [diff] [blame] | 18 | #include "modules/audio_coding/test/Channel.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 19 | #include "modules/audio_coding/test/PCMFile.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 20 | |
pkasting@chromium.org | 4591fbd | 2014-11-20 22:28:14 +0000 | [diff] [blame] | 21 | #define PCMA_AND_PCMU |
| 22 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 23 | namespace webrtc { |
| 24 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 25 | enum StereoMonoMode { kNotSet, kMono, kStereo }; |
tina.legrand@webrtc.org | 16b6b90 | 2012-04-12 11:02:38 +0000 | [diff] [blame] | 26 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 27 | class TestPackStereo : public AudioPacketizationCallback { |
| 28 | public: |
| 29 | TestPackStereo(); |
| 30 | ~TestPackStereo(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 31 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 32 | void RegisterReceiverACM(AudioCodingModule* acm); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 33 | |
kjellander@webrtc.org | 14665ff | 2015-03-04 12:58:35 +0000 | [diff] [blame] | 34 | int32_t SendData(const FrameType frame_type, |
| 35 | const uint8_t payload_type, |
| 36 | const uint32_t timestamp, |
| 37 | const uint8_t* payload_data, |
| 38 | const size_t payload_size, |
| 39 | const RTPFragmentationHeader* fragmentation) override; |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 40 | |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 41 | uint16_t payload_size(); |
| 42 | uint32_t timestamp_diff(); |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 43 | void reset_payload_size(); |
| 44 | void set_codec_mode(StereoMonoMode mode); |
| 45 | void set_lost_packet(bool lost); |
| 46 | |
| 47 | private: |
| 48 | AudioCodingModule* receiver_acm_; |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 49 | int16_t seq_no_; |
| 50 | uint32_t timestamp_diff_; |
| 51 | uint32_t last_in_timestamp_; |
| 52 | uint64_t total_bytes_; |
henrike@webrtc.org | 6ac22e6 | 2014-08-11 21:06:30 +0000 | [diff] [blame] | 53 | int payload_size_; |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 54 | StereoMonoMode codec_mode_; |
| 55 | // Simulate packet losses |
| 56 | bool lost_packet_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Karl Wiberg | 3ff52ff | 2018-10-01 12:31:22 +0200 | [diff] [blame] | 59 | class TestStereo { |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 60 | public: |
Fredrik Solenberg | ec0f45b | 2018-12-03 15:50:44 +0000 | [diff] [blame] | 61 | explicit TestStereo(int test_mode); |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 62 | ~TestStereo(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 63 | |
Karl Wiberg | 3ff52ff | 2018-10-01 12:31:22 +0200 | [diff] [blame] | 64 | void Perform(); |
kjellander@webrtc.org | 14665ff | 2015-03-04 12:58:35 +0000 | [diff] [blame] | 65 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 66 | private: |
| 67 | // The default value of '-1' indicates that the registration is based only on |
| 68 | // codec name and a sampling frequncy matching is not required. This is useful |
| 69 | // for codecs which support several sampling frequency. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 70 | void RegisterSendCodec(char side, |
| 71 | char* codec_name, |
| 72 | int32_t samp_freq_hz, |
| 73 | int rate, |
| 74 | int pack_size, |
Karl Wiberg | 36b37dc | 2018-09-24 10:52:32 +0200 | [diff] [blame] | 75 | int channels); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 76 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 77 | void Run(TestPackStereo* channel, |
| 78 | int in_channels, |
| 79 | int out_channels, |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 80 | int percent_loss = 0); |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 81 | void OpenOutFile(int16_t test_number); |
Fredrik Solenberg | ec0f45b | 2018-12-03 15:50:44 +0000 | [diff] [blame] | 82 | void DisplaySendReceiveCodec(); |
| 83 | |
| 84 | int test_mode_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 85 | |
kwiberg | 3747838 | 2016-02-14 20:40:57 -0800 | [diff] [blame] | 86 | std::unique_ptr<AudioCodingModule> acm_a_; |
| 87 | std::unique_ptr<AudioCodingModule> acm_b_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 88 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 89 | TestPackStereo* channel_a2b_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 90 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 91 | PCMFile* in_file_stereo_; |
| 92 | PCMFile* in_file_mono_; |
| 93 | PCMFile out_file_; |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 94 | int16_t test_cntr_; |
| 95 | uint16_t pack_size_samp_; |
| 96 | uint16_t pack_size_bytes_; |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 97 | int counter_; |
tina.legrand@webrtc.org | 0ad3c1a | 2012-11-07 08:07:29 +0000 | [diff] [blame] | 98 | char* send_codec_name_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
tina.legrand@webrtc.org | a6ecd1e | 2012-04-26 07:54:30 +0000 | [diff] [blame] | 101 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 102 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 103 | #endif // MODULES_AUDIO_CODING_TEST_TESTSTEREO_H_ |