blob: dc90495da882db16452d7c9797d3f5746f796bb6 [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
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000011#ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_PACKET_H_
12#define WEBRTC_MODULES_AUDIO_CODING_NETEQ_PACKET_H_
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000013
14#include <list>
henrik.lundin84f8cd62016-04-26 07:45:16 -070015#include <memory>
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000016
ossudc431ce2016-08-31 08:51:13 -070017#include "webrtc/base/buffer.h"
ossu61a208b2016-09-20 01:38:00 -070018#include "webrtc/modules/audio_coding/codecs/audio_decoder.h"
henrik.lundin84f8cd62016-04-26 07:45:16 -070019#include "webrtc/modules/audio_coding/neteq/tick_timer.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000020#include "webrtc/typedefs.h"
21
22namespace webrtc {
23
24// Struct for holding RTP packets.
25struct Packet {
ossua70695a2016-09-22 02:06:28 -070026 struct Priority {
27 Priority() : codec_level(0), red_level(0) {}
28 Priority(int codec_level, int red_level)
29 : codec_level(codec_level), red_level(red_level) {
30 CheckInvariant();
31 }
32
33 int codec_level;
34 int red_level;
35
36 // Priorities are sorted low-to-high, first on the level the codec
37 // prioritizes it, then on the level of RED packet it is; i.e. if it is a
38 // primary or secondary payload of a RED packet. For example: with Opus, an
39 // Fec packet (which the decoder prioritizes lower than a regular packet)
40 // will not be used if there is _any_ RED payload for the same
41 // timeframe. The highest priority packet will have levels {0, 0}. Negative
42 // priorities are not allowed.
43 bool operator<(const Priority& b) const {
44 CheckInvariant();
45 b.CheckInvariant();
46 if (codec_level == b.codec_level)
47 return red_level < b.red_level;
48
49 return codec_level < b.codec_level;
50 }
51 bool operator==(const Priority& b) const {
52 CheckInvariant();
53 b.CheckInvariant();
54 return codec_level == b.codec_level && red_level == b.red_level;
55 }
56 bool operator!=(const Priority& b) const { return !(*this == b); }
57 bool operator>(const Priority& b) const { return b < *this; }
58 bool operator<=(const Priority& b) const { return !(b > *this); }
59 bool operator>=(const Priority& b) const { return !(b < *this); }
60
61 private:
62 void CheckInvariant() const {
63 RTC_DCHECK_GE(codec_level, 0);
64 RTC_DCHECK_GE(red_level, 0);
65 }
66 };
67
ossu7a377612016-10-18 04:06:13 -070068 uint32_t timestamp;
69 uint16_t sequence_number;
70 uint8_t payload_type;
henrik.lundin84f8cd62016-04-26 07:45:16 -070071 // Datagram excluding RTP header and header extension.
ossudc431ce2016-08-31 08:51:13 -070072 rtc::Buffer payload;
ossua70695a2016-09-22 02:06:28 -070073 Priority priority;
henrik.lundin84f8cd62016-04-26 07:45:16 -070074 std::unique_ptr<TickTimer::Stopwatch> waiting_time;
ossu61a208b2016-09-20 01:38:00 -070075 std::unique_ptr<AudioDecoder::EncodedAudioFrame> frame;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000076
henrik.lundin84f8cd62016-04-26 07:45:16 -070077 Packet();
78 ~Packet();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000079
80 // Comparison operators. Establish a packet ordering based on (1) timestamp,
ossu17e3fa12016-09-08 04:52:55 -070081 // (2) sequence number and (3) redundancy.
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +000082 // Timestamp and sequence numbers are compared taking wrap-around into
ossu17e3fa12016-09-08 04:52:55 -070083 // account. For two packets with the same sequence number and timestamp a
84 // primary payload is considered "smaller" than a secondary.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000085 bool operator==(const Packet& rhs) const {
ossu7a377612016-10-18 04:06:13 -070086 return (this->timestamp == rhs.timestamp &&
87 this->sequence_number == rhs.sequence_number &&
ossua70695a2016-09-22 02:06:28 -070088 this->priority == rhs.priority);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000089 }
90 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
91 bool operator<(const Packet& rhs) const {
ossu7a377612016-10-18 04:06:13 -070092 if (this->timestamp == rhs.timestamp) {
93 if (this->sequence_number == rhs.sequence_number) {
ossua70695a2016-09-22 02:06:28 -070094 // Timestamp and sequence numbers are identical - deem the left hand
95 // side to be "smaller" (i.e., "earlier") if it has higher priority.
96 return this->priority < rhs.priority;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000097 }
ossu7a377612016-10-18 04:06:13 -070098 return (static_cast<uint16_t>(rhs.sequence_number -
99 this->sequence_number) < 0xFFFF / 2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000100 }
ossu7a377612016-10-18 04:06:13 -0700101 return (static_cast<uint32_t>(rhs.timestamp - this->timestamp) <
102 0xFFFFFFFF / 2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000103 }
104 bool operator>(const Packet& rhs) const { return rhs.operator<(*this); }
105 bool operator<=(const Packet& rhs) const { return !operator>(rhs); }
106 bool operator>=(const Packet& rhs) const { return !operator<(rhs); }
ossu61a208b2016-09-20 01:38:00 -0700107
108 bool empty() const { return !frame && payload.empty(); }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000109};
110
111// A list of packets.
112typedef std::list<Packet*> PacketList;
113
114} // namespace webrtc
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +0000115#endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_PACKET_H_