HomeSort by relevance Sort by last modified time
    Searched defs:InsertPacket (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/media/cast/net/rtp/
frame_buffer.cc 25 bool FrameBuffer::InsertPacket(const uint8* payload_data,
cast_message_builder_unittest.cc 118 void InsertPacket() {
121 if (framer_.InsertPacket(&payload, 1, rtp_header_, &duplicate)) {
149 InsertPacket();
156 InsertPacket();
165 InsertPacket();
171 InsertPacket();
180 InsertPacket();
187 InsertPacket();
194 InsertPacket();
203 InsertPacket();
    [all...]
framer.cc 35 bool Framer::InsertPacket(const uint8* payload_data,
47 VLOG(1) << "InsertPacket frame:" << frame_id
72 if (!it->second->InsertPacket(payload_data, payload_size, rtp_header)) {
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
packet_loss_test.cc 199 InsertPacket(&newEncBuf, packet, size);
211 // InsertPacket(&newEncBuf, packet, size2);
249 void PacketLossTest::InsertPacket(VideoFrame *buf, unsigned char *pkg, int size)
253 printf("InsertPacket error!\n");
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_coding_robustness_unittest.cc 57 void InsertPacket(uint32_t timestamp,
107 InsertPacket(0, 0, true, false, kVideoFrameKey);
108 InsertPacket(0, 1, false, false, kVideoFrameKey);
109 InsertPacket(0, 2, false, true, kVideoFrameKey);
112 InsertPacket(3000, 3, true, false, kVideoFrameDelta);
113 InsertPacket(3000, 4, false, false, kVideoFrameDelta);
114 InsertPacket(3000, 5, false, true, kVideoFrameDelta);
127 InsertPacket(6000, 8, false, true, kVideoFrameDelta);
133 InsertPacket(6000, 6, true, false, kVideoFrameDelta);
134 InsertPacket(6000, 7, false, false, kVideoFrameDelta)
    [all...]
frame_buffer.cc 86 VCMFrameBuffer::InsertPacket(const VCMPacket& packet,
134 int retVal = _sessionInfo.InsertPacket(packet, _buffer,
receiver_unittest.cc 44 int32_t InsertPacket(int index) {
52 return receiver_.InsertPacket(packet, 640, 480);
62 return receiver_.InsertPacket(packet, kWidth, kHeight);
jitter_buffer_unittest.cc 151 return jitter_buffer_->InsertPacket(packet, &retransmitted);
154 VCMFrameBufferEnum InsertPacket(int index) {
162 return jitter_buffer_->InsertPacket(packet, &retransmitted);
270 EXPECT_EQ(kCompleteSession, jitter_buffer_->InsertPacket(*packet_,
283 EXPECT_EQ(kIncomplete, jitter_buffer_->InsertPacket(*packet_,
294 EXPECT_EQ(kCompleteSession, jitter_buffer_->InsertPacket(*packet_,
309 EXPECT_EQ(kIncomplete, jitter_buffer_->InsertPacket(*packet_,
325 EXPECT_EQ(kIncomplete, jitter_buffer_->InsertPacket(*packet_,
336 EXPECT_EQ(kCompleteSession, jitter_buffer_->InsertPacket(*packet_,
352 EXPECT_EQ(kCompleteSession, jitter_buffer_->InsertPacket(*packet_
    [all...]
receiver.cc 74 int32_t VCMReceiver::InsertPacket(const VCMPacket& packet,
80 const VCMFrameBufferEnum ret = jitter_buffer_.InsertPacket(packet,
session_info.cc 438 int VCMSessionInfo::InsertPacket(const VCMPacket& packet,
jitter_buffer.cc 603 VCMFrameBufferEnum VCMJitterBuffer::InsertPacket(const VCMPacket& packet,
664 VCMFrameBufferEnum buffer_return = frame->InsertPacket(packet,
755 assert(false && "JitterBuffer::InsertPacket: Undefined value");
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet_buffer.cc 52 int PacketBuffer::InsertPacket(Packet* packet) {
105 int return_val = InsertPacket(packet);
163 // Assert that the packet sanity checks in InsertPacket method works.
187 // Assert that the packet sanity checks in InsertPacket method works.
neteq_impl.cc 117 int NetEqImpl::InsertPacket(const WebRtcRTPHeader& rtp_header,
122 LOG(LS_VERBOSE) << "InsertPacket: ts=" << rtp_header.header.timestamp <<
140 LOG(LS_VERBOSE) << "InsertPacket-Sync: ts="
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_receiver.cc 256 int AcmReceiver::InsertPacket(const WebRtcRTPHeader& rtp_header,
334 if (neteq_->InsertPacket(rtp_header, incoming_payload, length_payload,
336 LOG_FERR1(LS_ERROR, "AcmReceiver::InsertPacket", header->payloadType) <<
audio_coding_module_unittest.cc 170 InsertPacket();
174 virtual void InsertPacket() {
176 ASSERT_TRUE(acm_->InsertPacket(kPayload, kPayloadSizeBytes, rtp_header_));
383 InsertPacket();
457 // will be fetched in the next InsertPacket() call.
473 virtual void InsertPacket() OVERRIDE {
486 ASSERT_TRUE(acm_->InsertPacket(
    [all...]
audio_coding_module_unittest_oldapi.cc 158 InsertPacket();
162 virtual void InsertPacket() {
385 InsertPacket();
458 // will be fetched in the next InsertPacket() call.
475 void InsertPacket() {
    [all...]
audio_coding_module_impl.cc     [all...]

Completed in 1187 milliseconds