HomeSort by relevance Sort by last modified time
    Searched refs:packet (Results 476 - 500 of 720) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
plotReceiveTrace.m 3 %DEBUG ; ( 8:32:33:375 | 0) VIDEO:1 ; 5260; First packet of frame 1869537938
54 [p, count] = sscanf(message, 'Packet seqNo %u of frame %lu at %lu');
61 [p, count] = sscanf(message, 'First packet of frame %lu at %lu');
109 % Plot the time when each packet arrives
118 % Plot the time when the first packet of a frame arrives
182 legend('Packet arrives', 'Frame complete', 'Decode', 'Decode complete', 'Time to render', 'Only jitter', 'Must decode');
  /external/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.cc 21 const uint8_t* packet = static_cast<const uint8_t*>(data); local
22 RTCPUtility::RTCPParserV2 parser(packet, len, true);
28 sender_report_.Set(parser.Packet().SR);
31 receiver_report_.Set(parser.Packet().RR);
34 report_block_.Set(parser.Packet().ReportBlockItem);
35 ++report_blocks_per_ssrc_[parser.Packet().ReportBlockItem.SSRC];
41 sdes_chunk_.Set(parser.Packet().CName);
44 bye_.Set(parser.Packet().BYE);
47 app_.Set(parser.Packet().APP);
50 app_item_.Set(parser.Packet().APP)
    [all...]
  /external/chromium_org/net/quic/
quic_sent_packet_manager_test.cc 28 // Default packet length.
151 // Retransmits a packet as though it was a TLP retransmission, because TLP
212 SerializedPacket packet(CreateDataPacket(sequence_number));
213 manager_.OnSerializedPacket(packet);
215 packet.packet->length(), NOT_RETRANSMISSION,
224 SerializedPacket packet(CreateDataPacket(sequence_number));
225 packet.retransmittable_frames->AddStreamFrame(
227 packet.retransmittable_frames->set_encryption_level(ENCRYPTION_NONE);
228 manager_.OnSerializedPacket(packet);
    [all...]
quic_ack_notifier_manager.cc 78 // interested in this packet's sequence number.
92 // The AckNotifier needs to know it is tracking this packet's sequence
95 serialized_packet.packet->length());
quic_packet_generator.h 8 // just-in-time. When a packet needs to be sent, the Generator
9 // will serialize a packet and pass it to QuicConnection::SendOrQueuePacket()
16 // a packet to be serialized. In particular:
30 // an Ack frame which will then be included in the packet. When
31 // the write call completes, the current packet will be serialized
35 // add data to the "current" packet. When the current packet becomes
36 // full, it will be serialized and sent to the packet. When batch
37 // mode is ended via |FinishBatchOperations|, the current packet
43 // an FEC packet will be sent after each write call completes
    [all...]
quic_connection_logger.cc 32 // We have ranges-of-buckets in the cumulative histogram (covering 21 packet
217 const QuicVersionNegotiationPacket* packet,
222 for (QuicVersionVector::const_iterator it = packet->versions.begin();
223 it != packet->versions.end(); ++it) {
478 const QuicEncryptedPacket& packet,
483 transmission_type, packet.length(), result));
497 const QuicEncryptedPacket& packet) {
505 last_received_packet_size_ = packet.length();
509 packet.length()));
541 // There is a gap between the largest packet previously received an
    [all...]
quic_http_stream_test.cc 136 // Holds a packet to be written to the wire, and the IO mode that should
139 PacketToWrite(IoMode mode, QuicEncryptedPacket* packet)
141 packet(packet) {
144 QuicEncryptedPacket* packet; member in struct:net::test::QuicHttpStreamTest::PacketToWrite
165 delete writes_[i].packet;
169 // Adds a packet to the list of expected writes.
170 void AddWrite(scoped_ptr<QuicEncryptedPacket> packet) {
171 writes_.push_back(PacketToWrite(SYNCHRONOUS, packet.release()));
174 // Returns the packet to be written at position |pos|
    [all...]
quic_connection_test.cc 292 QuicEncryptedPacket packet(buffer, buf_len);
295 if (packet.length() >= sizeof(final_bytes_of_last_packet_)) {
297 memcpy(&final_bytes_of_last_packet_, packet.data() + packet.length() - 4,
304 EXPECT_TRUE(framer_.ProcessPacket(packet));
312 last_packet_size_ = packet.length();
373 // packet as a little-endian, uint32. This is intended to be used with a
375 // a given packet.
378 // Returns the final bytes of the second to last packet.
450 QuicPacket* packet,
876 QuicPacket* packet = local
897 QuicPacket* packet = local
920 QuicPacket* packet = local
2809 QuicPacket* packet = ConstructDataPacket(1, 0, !kEntropyFlag); local
2817 QuicPacket* packet = ConstructDataPacket(1, 0, !kEntropyFlag); local
3082 QuicPacket* packet = ConstructDataPacket(1, 0, !kEntropyFlag); local
3097 connection_.ProcessUdpPacket(IPEndPoint(), IPEndPoint(), *packet); local
3828 QuicPacket* packet = local
    [all...]
  /external/deqp/framework/referencerenderer/
rrRasterizer.cpp 575 // Compute barycentrics and write out fragment packet
577 FragmentPacket& packet = fragmentPackets[packetNdx];
584 packet.position = tcu::IVec2(x0, y0);
585 packet.coverage = coverage;
586 packet.barycentric[0] = b0 * ooSum;
587 packet.barycentric[1] = b1 * ooSum;
588 packet.barycentric[2] = 1.0f - packet.barycentric[0] - packet.barycentric[1];
763 // Compute barycentrics and write out fragment packet
    [all...]
  /external/chromium_org/remoting/protocol/
chromium_socket_factory.cc 268 PendingPacket& packet = send_queue_.front();
270 packet.data.get(),
271 packet.data->size(),
272 packet.address,
  /external/chromium_org/third_party/boringssl/src/include/openssl/
dtls1.h 224 unsigned int mtu; /* max DTLS packet size */
252 unsigned char *packet; member in struct:dtls1_record_data_st
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_receiver_audio.h 59 const uint8_t* packet,
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
session_info.h 18 #include "webrtc/modules/video_coding/main/source/packet.h"
49 int InsertPacket(const VCMPacket& packet,
105 // Finds the packet of the beginning of the next VP8 partition. If
107 // |it| is expected to point to the last packet of the previous partition,
108 // or to the first packet of the frame. |packets_skipped| is incremented
109 // for each packet found which doesn't have the beginning bit set.
112 // Returns an iterator pointing to the last packet of the partition pointed to
137 // It has the first packet: In VP8 the first packet contains all or part of
144 // to contain many motion vectors, so having the first packet wil
    [all...]
  /external/chromium_org/third_party/webrtc/video/
video_receive_stream.cc 232 bool VideoReceiveStream::DeliverRtcp(const uint8_t* packet, size_t length) {
234 channel_, packet, static_cast<int>(length)) == 0;
237 bool VideoReceiveStream::DeliverRtp(const uint8_t* packet, size_t length) {
239 channel_, packet, static_cast<int>(length), PacketTime()) == 0;
  /external/eigen/Eigen/src/Core/
Transpose.h 154 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::TransposeImpl
156 return derived().nestedExpression().template packet<LoadMode>(colId, rowId);
166 inline const PacketScalar packet(Index index) const function in class:Eigen::TransposeImpl
168 return derived().nestedExpression().template packet<LoadMode>(index);
  /external/libvorbis/doc/
06-floor0.tex 27 codec setup header (third packet). configuration decode proceeds as
40 An end-of-packet condition during any of these bitstream reads renders
48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode}
50 Extracting a floor0 curve from an audio packet consists of first
56 Packet decode proceeds as follows:
62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
79 \item An end-of-packet condition during decode should be considered a
80 nominal occruence; if end-of-packet is reached during any read
107 vector from packet decode as well as the [floor0_order],
  /external/libvorbis/lib/
analysis.c 56 op->packet=oggpack_get_buffer(&vb->opb);
  /external/openssl/include/openssl/
dtls1.h 234 unsigned int mtu; /* max DTLS packet size */
268 unsigned char *packet; member in struct:dtls1_record_data_st
  /external/openssl/ssl/
dtls1.h 234 unsigned int mtu; /* max DTLS packet size */
268 unsigned char *packet; member in struct:dtls1_record_data_st
  /device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera.c 1543 cam_sock_packet_t packet; local
1577 cam_sock_packet_t packet; local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera.c 1544 cam_sock_packet_t packet; local
1578 cam_sock_packet_t packet; local
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera.c 1619 cam_sock_packet_t packet; local
1653 cam_sock_packet_t packet; local
    [all...]
  /external/chromium_org/media/cast/net/rtcp/
rtcp_unittest.cc 35 virtual bool SendRtcpPacket(uint32 ssrc, PacketRef packet) OVERRIDE {
37 rtcp_->IncomingRtcpPacket(&packet->data[0], packet->data.size());
141 // received a RTCP packet.
161 // Roll-back packet transmission time (because RTT is not yet known):
  /external/chromium_org/media/cast/test/utility/
udp_proxy_main.cc 71 virtual void Send(scoped_ptr<media::cast::Packet> packet)
73 counter_->Increment(packet->size());
74 pipe_->Send(packet.Pass());
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decoder_database_unittest.cc 151 // Create packet with payload type |i|. The last packet will have a payload
153 Packet* packet = new Packet; local
154 packet->header.payloadType = i;
155 packet_list.push_back(packet);
158 // Expect to return false, since the last packet is of an unknown type.

Completed in 1485 milliseconds

<<11121314151617181920>>