blob: 238e769c2a42cb289ea32ec1858b38eb8980df1e [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
2 * Copyright (c) 2012 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_AUDIO_CODING_NETEQ_PACKET_H_
12#define MODULES_AUDIO_CODING_NETEQ_PACKET_H_
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000013
Yves Gerey988cc082018-10-23 12:03:01 +020014#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000016#include <list>
henrik.lundin84f8cd62016-04-26 07:45:16 -070017#include <memory>
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000018
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "api/audio_codecs/audio_decoder.h"
Chen Xing3e8ef942019-07-01 17:16:32 +020020#include "api/rtp_packet_info.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "modules/audio_coding/neteq/tick_timer.h"
22#include "rtc_base/buffer.h"
Yves Gerey988cc082018-10-23 12:03:01 +020023#include "rtc_base/checks.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000024
25namespace webrtc {
26
27// Struct for holding RTP packets.
28struct Packet {
ossua70695a2016-09-22 02:06:28 -070029 struct Priority {
30 Priority() : codec_level(0), red_level(0) {}
31 Priority(int codec_level, int red_level)
32 : codec_level(codec_level), red_level(red_level) {
33 CheckInvariant();
34 }
35
36 int codec_level;
37 int red_level;
38
39 // Priorities are sorted low-to-high, first on the level the codec
40 // prioritizes it, then on the level of RED packet it is; i.e. if it is a
41 // primary or secondary payload of a RED packet. For example: with Opus, an
42 // Fec packet (which the decoder prioritizes lower than a regular packet)
43 // will not be used if there is _any_ RED payload for the same
44 // timeframe. The highest priority packet will have levels {0, 0}. Negative
45 // priorities are not allowed.
46 bool operator<(const Priority& b) const {
47 CheckInvariant();
48 b.CheckInvariant();
49 if (codec_level == b.codec_level)
50 return red_level < b.red_level;
51
52 return codec_level < b.codec_level;
53 }
54 bool operator==(const Priority& b) const {
55 CheckInvariant();
56 b.CheckInvariant();
57 return codec_level == b.codec_level && red_level == b.red_level;
58 }
59 bool operator!=(const Priority& b) const { return !(*this == b); }
60 bool operator>(const Priority& b) const { return b < *this; }
61 bool operator<=(const Priority& b) const { return !(b > *this); }
62 bool operator>=(const Priority& b) const { return !(b < *this); }
63
64 private:
65 void CheckInvariant() const {
66 RTC_DCHECK_GE(codec_level, 0);
67 RTC_DCHECK_GE(red_level, 0);
68 }
69 };
70
ossu7a377612016-10-18 04:06:13 -070071 uint32_t timestamp;
72 uint16_t sequence_number;
73 uint8_t payload_type;
henrik.lundin84f8cd62016-04-26 07:45:16 -070074 // Datagram excluding RTP header and header extension.
ossudc431ce2016-08-31 08:51:13 -070075 rtc::Buffer payload;
ossua70695a2016-09-22 02:06:28 -070076 Priority priority;
Chen Xing3e8ef942019-07-01 17:16:32 +020077 RtpPacketInfo packet_info;
henrik.lundin84f8cd62016-04-26 07:45:16 -070078 std::unique_ptr<TickTimer::Stopwatch> waiting_time;
ossu61a208b2016-09-20 01:38:00 -070079 std::unique_ptr<AudioDecoder::EncodedAudioFrame> frame;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000080
henrik.lundin84f8cd62016-04-26 07:45:16 -070081 Packet();
ossua73f6c92016-10-24 08:25:28 -070082 Packet(Packet&& b);
henrik.lundin84f8cd62016-04-26 07:45:16 -070083 ~Packet();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000084
ossua73f6c92016-10-24 08:25:28 -070085 // Packets should generally be moved around but sometimes it's useful to make
86 // a copy, for example for testing purposes. NOTE: Will only work for
87 // un-parsed packets, i.e. |frame| must be unset. The payload will, however,
88 // be copied. |waiting_time| will also not be copied.
89 Packet Clone() const;
90
91 Packet& operator=(Packet&& b);
92
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000093 // Comparison operators. Establish a packet ordering based on (1) timestamp,
ossu17e3fa12016-09-08 04:52:55 -070094 // (2) sequence number and (3) redundancy.
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +000095 // Timestamp and sequence numbers are compared taking wrap-around into
ossu17e3fa12016-09-08 04:52:55 -070096 // account. For two packets with the same sequence number and timestamp a
97 // primary payload is considered "smaller" than a secondary.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000098 bool operator==(const Packet& rhs) const {
ossu7a377612016-10-18 04:06:13 -070099 return (this->timestamp == rhs.timestamp &&
100 this->sequence_number == rhs.sequence_number &&
ossua70695a2016-09-22 02:06:28 -0700101 this->priority == rhs.priority);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000102 }
103 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
104 bool operator<(const Packet& rhs) const {
ossu7a377612016-10-18 04:06:13 -0700105 if (this->timestamp == rhs.timestamp) {
106 if (this->sequence_number == rhs.sequence_number) {
ossua70695a2016-09-22 02:06:28 -0700107 // Timestamp and sequence numbers are identical - deem the left hand
108 // side to be "smaller" (i.e., "earlier") if it has higher priority.
109 return this->priority < rhs.priority;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000110 }
ossu7a377612016-10-18 04:06:13 -0700111 return (static_cast<uint16_t>(rhs.sequence_number -
112 this->sequence_number) < 0xFFFF / 2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000113 }
ossu7a377612016-10-18 04:06:13 -0700114 return (static_cast<uint32_t>(rhs.timestamp - this->timestamp) <
115 0xFFFFFFFF / 2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000116 }
117 bool operator>(const Packet& rhs) const { return rhs.operator<(*this); }
118 bool operator<=(const Packet& rhs) const { return !operator>(rhs); }
119 bool operator>=(const Packet& rhs) const { return !operator<(rhs); }
ossu61a208b2016-09-20 01:38:00 -0700120
121 bool empty() const { return !frame && payload.empty(); }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000122};
123
124// A list of packets.
ossua73f6c92016-10-24 08:25:28 -0700125typedef std::list<Packet> PacketList;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000126
127} // namespace webrtc
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200128#endif // MODULES_AUDIO_CODING_NETEQ_PACKET_H_