2011-10-06 08:44:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
2011-12-08 08:42:18 +01:00
|
|
|
|
|
|
|
#include "testsupport/packet_reader.h"
|
2011-10-06 08:44:54 +02:00
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
PacketReader::PacketReader()
|
2011-12-08 08:42:18 +01:00
|
|
|
: initialized_(false) {}
|
2011-10-06 08:44:54 +02:00
|
|
|
|
2011-12-08 08:42:18 +01:00
|
|
|
PacketReader::~PacketReader() {}
|
2011-10-06 08:44:54 +02:00
|
|
|
|
|
|
|
void PacketReader::InitializeReading(WebRtc_UWord8* data,
|
|
|
|
int data_length_in_bytes,
|
|
|
|
int packet_size_in_bytes) {
|
|
|
|
assert(data);
|
|
|
|
assert(data_length_in_bytes >= 0);
|
|
|
|
assert(packet_size_in_bytes > 0);
|
|
|
|
data_ = data;
|
|
|
|
data_length_ = data_length_in_bytes;
|
|
|
|
packet_size_ = packet_size_in_bytes;
|
|
|
|
currentIndex_ = 0;
|
|
|
|
initialized_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PacketReader::NextPacket(WebRtc_UWord8** packet_pointer) {
|
|
|
|
if (!initialized_) {
|
|
|
|
fprintf(stderr, "Attempting to use uninitialized PacketReader!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*packet_pointer = data_ + currentIndex_;
|
|
|
|
// Check if we're about to read the last packet:
|
|
|
|
if (data_length_ - currentIndex_ <= packet_size_) {
|
|
|
|
int size = data_length_ - currentIndex_;
|
|
|
|
currentIndex_ = data_length_;
|
|
|
|
assert(size >= 0);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
currentIndex_ += packet_size_;
|
|
|
|
assert(packet_size_ >= 0);
|
|
|
|
return packet_size_;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
} // namespace webrtc
|