blob: 0231d84c683a0a688a4fb212e637968c021c53cd [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000011#ifndef WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTALLCODECS_H_
12#define WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTALLCODECS_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000014#include "webrtc/common.h"
15#include "webrtc/modules/audio_coding/main/test/ACMTest.h"
16#include "webrtc/modules/audio_coding/main/test/Channel.h"
17#include "webrtc/modules/audio_coding/main/test/PCMFile.h"
andrew@webrtc.org89df0922013-09-12 01:27:43 +000018#include "webrtc/system_wrappers/interface/scoped_ptr.h"
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000019#include "webrtc/typedefs.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000020
tina.legrand@webrtc.org554ae1a2011-12-16 10:09:04 +000021namespace webrtc {
22
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000023class Config;
24
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000025class TestPack : public AudioPacketizationCallback {
26 public:
27 TestPack();
28 ~TestPack();
niklase@google.com470e71d2011-07-07 08:21:25 +000029
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000030 void RegisterReceiverACM(AudioCodingModule* acm);
niklase@google.com470e71d2011-07-07 08:21:25 +000031
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000032 int32_t SendData(FrameType frame_type, uint8_t payload_type,
33 uint32_t timestamp, const uint8_t* payload_data,
34 uint16_t payload_size,
35 const RTPFragmentationHeader* fragmentation);
36
37 uint16_t payload_size();
38 uint32_t timestamp_diff();
39 void reset_payload_size();
40
41 private:
tina.legrand@webrtc.orgd5726a12013-05-03 07:34:12 +000042 AudioCodingModule* receiver_acm_;
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000043 uint16_t sequence_number_;
44 uint8_t payload_data_[60 * 32 * 2 * 2];
45 uint32_t timestamp_diff_;
46 uint32_t last_in_timestamp_;
47 uint64_t total_bytes_;
48 uint16_t payload_size_;
niklase@google.com470e71d2011-07-07 08:21:25 +000049};
50
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000051class TestAllCodecs : public ACMTest {
52 public:
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000053 TestAllCodecs(int test_mode, const Config& config);
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000054 ~TestAllCodecs();
niklase@google.com470e71d2011-07-07 08:21:25 +000055
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000056 void Perform();
niklase@google.com470e71d2011-07-07 08:21:25 +000057
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000058 private:
59 // The default value of '-1' indicates that the registration is based only on
60 // codec name, and a sampling frequency matching is not required.
61 // This is useful for codecs which support several sampling frequency.
62 // Note! Only mono mode is tested in this test.
63 void RegisterSendCodec(char side, char* codec_name, int32_t sampling_freq_hz,
64 int rate, int packet_size, int extra_byte);
niklase@google.com470e71d2011-07-07 08:21:25 +000065
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000066 void Run(TestPack* channel);
67 void OpenOutFile(int test_number);
68 void DisplaySendReceiveCodec();
niklase@google.com470e71d2011-07-07 08:21:25 +000069
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000070 int test_mode_;
andrew@webrtc.org89df0922013-09-12 01:27:43 +000071 scoped_ptr<AudioCodingModule> acm_a_;
72 scoped_ptr<AudioCodingModule> acm_b_;
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000073 TestPack* channel_a_to_b_;
74 PCMFile infile_a_;
75 PCMFile outfile_b_;
76 int test_count_;
77 uint16_t packet_size_samples_;
78 uint16_t packet_size_bytes_;
niklase@google.com470e71d2011-07-07 08:21:25 +000079};
80
tina.legrand@webrtc.org50d5ca52012-06-18 13:35:52 +000081} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +000082
turaj@webrtc.org6ea3d1c2013-10-02 21:44:33 +000083#endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_TEST_TESTALLCODECS_H_