henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 11 | // This is the implementation of the PacketBuffer class. It is mostly based on |
| 12 | // an STL list. The list is kept sorted at all times so that the next packet to |
| 13 | // decode is at the beginning of the list. |
| 14 | |
henrik.lundin@webrtc.org | 9c55f0f | 2014-06-09 08:10:28 +0000 | [diff] [blame] | 15 | #include "webrtc/modules/audio_coding/neteq/packet_buffer.h" |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 16 | |
| 17 | #include <algorithm> // find_if() |
| 18 | |
Henrik Lundin | d67a219 | 2015-08-03 12:54:37 +0200 | [diff] [blame] | 19 | #include "webrtc/base/logging.h" |
kwiberg@webrtc.org | e04a93b | 2014-12-09 10:12:53 +0000 | [diff] [blame] | 20 | #include "webrtc/modules/audio_coding/codecs/audio_decoder.h" |
henrik.lundin@webrtc.org | 9c55f0f | 2014-06-09 08:10:28 +0000 | [diff] [blame] | 21 | #include "webrtc/modules/audio_coding/neteq/decoder_database.h" |
henrik.lundin | 84f8cd6 | 2016-04-26 07:45:16 -0700 | [diff] [blame] | 22 | #include "webrtc/modules/audio_coding/neteq/tick_timer.h" |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 23 | |
| 24 | namespace webrtc { |
henrik.lundin | 067d855 | 2016-09-01 23:19:05 -0700 | [diff] [blame] | 25 | namespace { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 26 | // Predicate used when inserting packets in the buffer list. |
| 27 | // Operator() returns true when |packet| goes before |new_packet|. |
| 28 | class NewTimestampIsLarger { |
| 29 | public: |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 30 | explicit NewTimestampIsLarger(const Packet& new_packet) |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 31 | : new_packet_(new_packet) { |
| 32 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 33 | bool operator()(const Packet& packet) { |
| 34 | return (new_packet_ >= packet); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | private: |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 38 | const Packet& new_packet_; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
henrik.lundin | 067d855 | 2016-09-01 23:19:05 -0700 | [diff] [blame] | 41 | // Returns true if both payload types are known to the decoder database, and |
| 42 | // have the same sample rate. |
| 43 | bool EqualSampleRates(uint8_t pt1, |
| 44 | uint8_t pt2, |
| 45 | const DecoderDatabase& decoder_database) { |
| 46 | auto di1 = decoder_database.GetDecoderInfo(pt1); |
| 47 | auto di2 = decoder_database.GetDecoderInfo(pt2); |
| 48 | return di1 && di2 && di1->SampleRateHz() == di2->SampleRateHz(); |
| 49 | } |
| 50 | } // namespace |
| 51 | |
henrik.lundin | 84f8cd6 | 2016-04-26 07:45:16 -0700 | [diff] [blame] | 52 | PacketBuffer::PacketBuffer(size_t max_number_of_packets, |
| 53 | const TickTimer* tick_timer) |
| 54 | : max_number_of_packets_(max_number_of_packets), tick_timer_(tick_timer) {} |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 55 | |
| 56 | // Destructor. All packets in the buffer will be destroyed. |
| 57 | PacketBuffer::~PacketBuffer() { |
| 58 | Flush(); |
| 59 | } |
| 60 | |
| 61 | // Flush the buffer. All packets in the buffer will be destroyed. |
| 62 | void PacketBuffer::Flush() { |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 63 | buffer_.clear(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Karl Wiberg | 7f6c4d4 | 2015-04-09 15:44:22 +0200 | [diff] [blame] | 66 | bool PacketBuffer::Empty() const { |
| 67 | return buffer_.empty(); |
| 68 | } |
| 69 | |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 70 | int PacketBuffer::InsertPacket(Packet&& packet) { |
| 71 | if (packet.empty()) { |
Henrik Lundin | d67a219 | 2015-08-03 12:54:37 +0200 | [diff] [blame] | 72 | LOG(LS_WARNING) << "InsertPacket invalid packet"; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 73 | return kInvalidPacket; |
| 74 | } |
| 75 | |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 76 | RTC_DCHECK_GE(packet.priority.codec_level, 0); |
| 77 | RTC_DCHECK_GE(packet.priority.red_level, 0); |
ossu | a70695a | 2016-09-22 02:06:28 -0700 | [diff] [blame] | 78 | |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 79 | int return_val = kOK; |
| 80 | |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 81 | packet.waiting_time = tick_timer_->GetNewStopwatch(); |
henrik.lundin | 84f8cd6 | 2016-04-26 07:45:16 -0700 | [diff] [blame] | 82 | |
henrik.lundin@webrtc.org | 116ed1d | 2014-04-28 08:20:04 +0000 | [diff] [blame] | 83 | if (buffer_.size() >= max_number_of_packets_) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 84 | // Buffer is full. Flush it. |
| 85 | Flush(); |
Henrik Lundin | d67a219 | 2015-08-03 12:54:37 +0200 | [diff] [blame] | 86 | LOG(LS_WARNING) << "Packet buffer flushed"; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 87 | return_val = kFlushed; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | // Get an iterator pointing to the place in the buffer where the new packet |
| 91 | // should be inserted. The list is searched from the back, since the most |
| 92 | // likely case is that the new packet should be near the end of the list. |
| 93 | PacketList::reverse_iterator rit = std::find_if( |
| 94 | buffer_.rbegin(), buffer_.rend(), |
| 95 | NewTimestampIsLarger(packet)); |
minyue@webrtc.org | c803907 | 2014-10-09 10:49:54 +0000 | [diff] [blame] | 96 | |
| 97 | // The new packet is to be inserted to the right of |rit|. If it has the same |
| 98 | // timestamp as |rit|, which has a higher priority, do not insert the new |
| 99 | // packet to list. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 100 | if (rit != buffer_.rend() && packet.timestamp == rit->timestamp) { |
minyue@webrtc.org | c803907 | 2014-10-09 10:49:54 +0000 | [diff] [blame] | 101 | return return_val; |
| 102 | } |
| 103 | |
| 104 | // The new packet is to be inserted to the left of |it|. If it has the same |
| 105 | // timestamp as |it|, which has a lower priority, replace |it| with the new |
| 106 | // packet. |
| 107 | PacketList::iterator it = rit.base(); |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 108 | if (it != buffer_.end() && packet.timestamp == it->timestamp) { |
minyue@webrtc.org | c803907 | 2014-10-09 10:49:54 +0000 | [diff] [blame] | 109 | it = buffer_.erase(it); |
| 110 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 111 | buffer_.insert(it, std::move(packet)); // Insert the packet at that position. |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 112 | |
| 113 | return return_val; |
| 114 | } |
| 115 | |
henrik.lundin | da8bbf6 | 2016-08-31 03:14:11 -0700 | [diff] [blame] | 116 | int PacketBuffer::InsertPacketList( |
| 117 | PacketList* packet_list, |
| 118 | const DecoderDatabase& decoder_database, |
| 119 | rtc::Optional<uint8_t>* current_rtp_payload_type, |
| 120 | rtc::Optional<uint8_t>* current_cng_rtp_payload_type) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 121 | bool flushed = false; |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 122 | for (auto& packet : *packet_list) { |
| 123 | if (decoder_database.IsComfortNoise(packet.payload_type)) { |
henrik.lundin | da8bbf6 | 2016-08-31 03:14:11 -0700 | [diff] [blame] | 124 | if (*current_cng_rtp_payload_type && |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 125 | **current_cng_rtp_payload_type != packet.payload_type) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 126 | // New CNG payload type implies new codec type. |
henrik.lundin | da8bbf6 | 2016-08-31 03:14:11 -0700 | [diff] [blame] | 127 | *current_rtp_payload_type = rtc::Optional<uint8_t>(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 128 | Flush(); |
| 129 | flushed = true; |
| 130 | } |
henrik.lundin | da8bbf6 | 2016-08-31 03:14:11 -0700 | [diff] [blame] | 131 | *current_cng_rtp_payload_type = |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 132 | rtc::Optional<uint8_t>(packet.payload_type); |
| 133 | } else if (!decoder_database.IsDtmf(packet.payload_type)) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 134 | // This must be speech. |
henrik.lundin | 067d855 | 2016-09-01 23:19:05 -0700 | [diff] [blame] | 135 | if ((*current_rtp_payload_type && |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 136 | **current_rtp_payload_type != packet.payload_type) || |
henrik.lundin | 067d855 | 2016-09-01 23:19:05 -0700 | [diff] [blame] | 137 | (*current_cng_rtp_payload_type && |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 138 | !EqualSampleRates(packet.payload_type, |
henrik.lundin | 067d855 | 2016-09-01 23:19:05 -0700 | [diff] [blame] | 139 | **current_cng_rtp_payload_type, |
| 140 | decoder_database))) { |
henrik.lundin | da8bbf6 | 2016-08-31 03:14:11 -0700 | [diff] [blame] | 141 | *current_cng_rtp_payload_type = rtc::Optional<uint8_t>(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 142 | Flush(); |
| 143 | flushed = true; |
| 144 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 145 | *current_rtp_payload_type = rtc::Optional<uint8_t>(packet.payload_type); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 146 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 147 | int return_val = InsertPacket(std::move(packet)); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 148 | if (return_val == kFlushed) { |
| 149 | // The buffer flushed, but this is not an error. We can still continue. |
| 150 | flushed = true; |
| 151 | } else if (return_val != kOK) { |
| 152 | // An error occurred. Delete remaining packets in list and return. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 153 | packet_list->clear(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 154 | return return_val; |
| 155 | } |
| 156 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 157 | packet_list->clear(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 158 | return flushed ? kFlushed : kOK; |
| 159 | } |
| 160 | |
| 161 | int PacketBuffer::NextTimestamp(uint32_t* next_timestamp) const { |
| 162 | if (Empty()) { |
| 163 | return kBufferEmpty; |
| 164 | } |
| 165 | if (!next_timestamp) { |
| 166 | return kInvalidPointer; |
| 167 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 168 | *next_timestamp = buffer_.front().timestamp; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 169 | return kOK; |
| 170 | } |
| 171 | |
| 172 | int PacketBuffer::NextHigherTimestamp(uint32_t timestamp, |
| 173 | uint32_t* next_timestamp) const { |
| 174 | if (Empty()) { |
| 175 | return kBufferEmpty; |
| 176 | } |
| 177 | if (!next_timestamp) { |
| 178 | return kInvalidPointer; |
| 179 | } |
| 180 | PacketList::const_iterator it; |
| 181 | for (it = buffer_.begin(); it != buffer_.end(); ++it) { |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 182 | if (it->timestamp >= timestamp) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 183 | // Found a packet matching the search. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 184 | *next_timestamp = it->timestamp; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 185 | return kOK; |
| 186 | } |
| 187 | } |
| 188 | return kNotFound; |
| 189 | } |
| 190 | |
ossu | 7a37761 | 2016-10-18 04:06:13 -0700 | [diff] [blame] | 191 | const Packet* PacketBuffer::PeekNextPacket() const { |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 192 | return buffer_.empty() ? nullptr : &buffer_.front(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 193 | } |
| 194 | |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 195 | rtc::Optional<Packet> PacketBuffer::GetNextPacket() { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 196 | if (Empty()) { |
| 197 | // Buffer is empty. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 198 | return rtc::Optional<Packet>(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 199 | } |
| 200 | |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 201 | rtc::Optional<Packet> packet(std::move(buffer_.front())); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 202 | // Assert that the packet sanity checks in InsertPacket method works. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 203 | RTC_DCHECK(!packet->empty()); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 204 | buffer_.pop_front(); |
minyue@webrtc.org | c803907 | 2014-10-09 10:49:54 +0000 | [diff] [blame] | 205 | |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 206 | return packet; |
| 207 | } |
| 208 | |
| 209 | int PacketBuffer::DiscardNextPacket() { |
| 210 | if (Empty()) { |
| 211 | return kBufferEmpty; |
| 212 | } |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 213 | // Assert that the packet sanity checks in InsertPacket method works. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 214 | RTC_DCHECK(!buffer_.front().empty()); |
| 215 | buffer_.pop_front(); |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 216 | return kOK; |
| 217 | } |
| 218 | |
henrik.lundin@webrtc.org | 52b42cb | 2014-11-04 14:03:58 +0000 | [diff] [blame] | 219 | int PacketBuffer::DiscardOldPackets(uint32_t timestamp_limit, |
| 220 | uint32_t horizon_samples) { |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 221 | while (!Empty() && timestamp_limit != buffer_.front().timestamp && |
| 222 | IsObsoleteTimestamp(buffer_.front().timestamp, timestamp_limit, |
henrik.lundin@webrtc.org | 52b42cb | 2014-11-04 14:03:58 +0000 | [diff] [blame] | 223 | horizon_samples)) { |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 224 | if (DiscardNextPacket() != kOK) { |
| 225 | assert(false); // Must be ok by design. |
| 226 | } |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 227 | } |
| 228 | return 0; |
| 229 | } |
| 230 | |
Karl Wiberg | 7f6c4d4 | 2015-04-09 15:44:22 +0200 | [diff] [blame] | 231 | int PacketBuffer::DiscardAllOldPackets(uint32_t timestamp_limit) { |
| 232 | return DiscardOldPackets(timestamp_limit, 0); |
| 233 | } |
| 234 | |
ossu | 61a208b | 2016-09-20 01:38:00 -0700 | [diff] [blame] | 235 | void PacketBuffer::DiscardPacketsWithPayloadType(uint8_t payload_type) { |
| 236 | for (auto it = buffer_.begin(); it != buffer_.end(); /* */) { |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 237 | const Packet& packet = *it; |
| 238 | if (packet.payload_type == payload_type) { |
ossu | 61a208b | 2016-09-20 01:38:00 -0700 | [diff] [blame] | 239 | it = buffer_.erase(it); |
| 240 | } else { |
| 241 | ++it; |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
Peter Kasting | dce40cf | 2015-08-24 14:52:23 -0700 | [diff] [blame] | 246 | size_t PacketBuffer::NumPacketsInBuffer() const { |
| 247 | return buffer_.size(); |
Karl Wiberg | 7f6c4d4 | 2015-04-09 15:44:22 +0200 | [diff] [blame] | 248 | } |
| 249 | |
ossu | 61a208b | 2016-09-20 01:38:00 -0700 | [diff] [blame] | 250 | size_t PacketBuffer::NumSamplesInBuffer(size_t last_decoded_length) const { |
Peter Kasting | dce40cf | 2015-08-24 14:52:23 -0700 | [diff] [blame] | 251 | size_t num_samples = 0; |
| 252 | size_t last_duration = last_decoded_length; |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 253 | for (const Packet& packet : buffer_) { |
| 254 | if (packet.frame) { |
ossu | a70695a | 2016-09-22 02:06:28 -0700 | [diff] [blame] | 255 | // TODO(hlundin): Verify that it's fine to count all packets and remove |
| 256 | // this check. |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 257 | if (packet.priority != Packet::Priority(0, 0)) { |
minyue@webrtc.org | 0aa3ee6 | 2014-05-28 07:48:01 +0000 | [diff] [blame] | 258 | continue; |
minyue@webrtc.org | b28bfa7 | 2014-03-21 12:07:40 +0000 | [diff] [blame] | 259 | } |
ossu | a73f6c9 | 2016-10-24 08:25:28 -0700 | [diff] [blame] | 260 | size_t duration = packet.frame->Duration(); |
ossu | 61a208b | 2016-09-20 01:38:00 -0700 | [diff] [blame] | 261 | if (duration > 0) { |
turaj@webrtc.org | 7b75ac6 | 2013-09-26 00:27:56 +0000 | [diff] [blame] | 262 | last_duration = duration; // Save the most up-to-date (valid) duration. |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 263 | } |
| 264 | } |
turaj@webrtc.org | 7b75ac6 | 2013-09-26 00:27:56 +0000 | [diff] [blame] | 265 | num_samples += last_duration; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 266 | } |
| 267 | return num_samples; |
| 268 | } |
| 269 | |
henrik.lundin@webrtc.org | 116ed1d | 2014-04-28 08:20:04 +0000 | [diff] [blame] | 270 | void PacketBuffer::BufferStat(int* num_packets, int* max_num_packets) const { |
turaj@webrtc.org | 362a55e | 2013-09-20 16:25:28 +0000 | [diff] [blame] | 271 | *num_packets = static_cast<int>(buffer_.size()); |
| 272 | *max_num_packets = static_cast<int>(max_number_of_packets_); |
turaj@webrtc.org | 7df9706 | 2013-08-02 18:07:13 +0000 | [diff] [blame] | 273 | } |
| 274 | |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 275 | } // namespace webrtc |