HomeSort by relevance Sort by last modified time
    Searched refs:rtp_timestamp (Results 26 - 46 of 46) sorted by null

12

  /external/chromium_org/media/cast/rtp_receiver/rtp_parser/
rtp_parser.cc 52 uint32 rtp_timestamp, ssrc; local
55 big_endian_reader.ReadU32(&rtp_timestamp);
63 rtp_header->webrtc.header.timestamp = rtp_timestamp;
  /external/chromium_org/media/cast/audio_receiver/
audio_decoder.h 40 uint32* rtp_timestamp);
audio_decoder.cc 61 uint32* rtp_timestamp) {
91 if (0 != audio_decoder_->PlayoutTimestamp(rtp_timestamp)) {
95 last_played_out_timestamp_ = *rtp_timestamp;
  /external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/
rtp_packetizer.h 40 uint32* rtp_timestamp) const;
rtp_packetizer.cc 27 rtp_timestamp_(config_.rtp_timestamp),
70 uint32* rtp_timestamp) const {
74 *rtp_timestamp = rtp_timestamp_;
rtp_packetizer_unittest.cc 46 EXPECT_EQ(kTimestampMs * 90, rtp_header.rtp_timestamp);
  /external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/test/
rtp_header_parser.h 30 uint32 rtp_timestamp; member in struct:media::cast::RtpCastTestHeader
  /external/chromium_org/media/cast/video_receiver/
video_receiver.cc 212 uint32 rtp_timestamp = 0; local
215 if (!framer_->GetEncodedVideoFrame(encoded_frame.get(), &rtp_timestamp,
229 if (PullEncodedVideoFrame(rtp_timestamp, next_frame, &encoded_frame,
245 bool VideoReceiver::PullEncodedVideoFrame(uint32 rtp_timestamp,
250 *render_time = GetRenderTime(now, rtp_timestamp);
254 rtp_timestamp, (*encoded_frame)->frame_id, now - *render_time);
298 uint32 rtp_timestamp = 0;
302 if (!framer_->GetEncodedVideoFrame(encoded_frame.get(), &rtp_timestamp,
320 if (PullEncodedVideoFrame(rtp_timestamp, next_frame, &encoded_frame,
335 uint32 rtp_timestamp) {
    [all...]
video_receiver.h 81 bool PullEncodedVideoFrame(uint32 rtp_timestamp,
89 base::TimeTicks GetRenderTime(base::TimeTicks now, uint32 rtp_timestamp);
  /external/chromium_org/media/cast/rtcp/
rtcp_unittest.cc 489 uint32 rtp_timestamp = 64000; local
493 EXPECT_FALSE(rtcp_peer.RtpTimestampInSenderTime(frequency, rtp_timestamp,
504 rtcp_peer.OnReceivedLipSyncInfo(rtp_timestamp, ntp_seconds, ntp_fractions);
505 EXPECT_TRUE(rtcp_peer.RtpTimestampInSenderTime(frequency, rtp_timestamp,
509 // Test older rtp_timestamp.
510 rtp_timestamp = 32000;
511 EXPECT_TRUE(rtcp_peer.RtpTimestampInSenderTime(frequency, rtp_timestamp,
516 // Test older rtp_timestamp with wrap.
517 rtp_timestamp = 4294903296u;
518 EXPECT_TRUE(rtcp_peer.RtpTimestampInSenderTime(frequency, rtp_timestamp,
    [all...]
test_rtcp_packet_builder.cc 31 uint32 rtp_timestamp) {
36 big_endian_writer_.WriteU32(rtp_timestamp);
224 uint32 rtp_timestamp) {
226 (static_cast<uint32>(event_id) << 24) + (rtp_timestamp & 0xffffff));
238 void TestRtcpPacketBuilder::AddReceiverFrameLog(uint32 rtp_timestamp,
240 big_endian_writer_.WriteU32(rtp_timestamp);
rtcp.h 103 uint32 rtp_timestamp,
110 void OnReceivedLipSyncInfo(uint32 rtp_timestamp,
rtcp_utility.h 43 uint32 rtp_timestamp; member in struct:media::cast::RtcpFieldSenderReport
151 uint32 rtp_timestamp; member in struct:media::cast::RtcpFieldApplicationSpecificCastReceiverLogItem
161 uint32 rtp_timestamp; member in struct:media::cast::RtcpFieldApplicationSpecificCastSenderLogItem
rtcp_sender_unittest.cc 84 sender_info.rtp_timestamp = kRtpTimestamp;
142 sender_info.rtp_timestamp = kRtpTimestamp;
171 sender_info.rtp_timestamp = kRtpTimestamp;
192 sender_frame_log.rtp_timestamp = kRtpTimestamp;
211 sender_info.rtp_timestamp = kRtpTimestamp;
232 sender_frame_log.rtp_timestamp = kRtpTimestamp + j * 90;
rtcp_utility.cc 317 big_endian_reader.ReadU32(&field_.sender_report.rtp_timestamp);
546 uint32 rtp_timestamp; local
549 big_endian_reader.ReadU32(&rtp_timestamp);
554 field_.cast_receiver_log.rtp_timestamp = rtp_timestamp;
612 field_.cast_sender_log.rtp_timestamp = data & 0xffffff;
rtcp_receiver.cc 162 remote_sender_info.rtp_timestamp =
163 rtcp_field.sender_report.rtp_timestamp;
449 rtcp_field.cast_receiver_log.rtp_timestamp);
505 frame_log.rtp_timestamp = rtcp_field.cast_sender_log.rtp_timestamp;
rtcp_receiver_unittest.cc 120 EXPECT_EQ(0xffffff & expected_it->rtp_timestamp,
121 incoming_it->rtp_timestamp);
179 expected_sender_info_.rtp_timestamp = kRtpTimestamp;
463 sender_frame_log.rtp_timestamp = kRtpTimestamp + j * 90;
rtcp_sender.cc 243 big_endian_writer.WriteU32(sender_info.rtp_timestamp);
705 big_endian_writer.WriteU8(static_cast<uint8>(message.rtp_timestamp >> 16));
706 big_endian_writer.WriteU8(static_cast<uint8>(message.rtp_timestamp >> 8));
707 big_endian_writer.WriteU8(static_cast<uint8>(message.rtp_timestamp));
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 224 uint32 rtp_timestamp = 0; local
225 packet.GetRtpTimestamp(&rtp_timestamp);
231 first_rtp_timestamp_ = rtp_timestamp;
234 } else if (rtp_timestamp != prev_rtp_timestamp_) {
240 prev_rtp_timestamp_ = rtp_timestamp;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 261 uint32 rtp_timestamp = 0; local
262 packet.GetRtpTimestamp(&rtp_timestamp);
268 first_rtp_timestamp_ = rtp_timestamp;
271 } else if (rtp_timestamp != prev_rtp_timestamp_) {
277 prev_rtp_timestamp_ = rtp_timestamp;
  /external/chromium_org/media/cast/video_sender/
video_sender.cc 238 frame_message.rtp_timestamp = it->first;

Completed in 2413 milliseconds

12