HomeSort by relevance Sort by last modified time
    Searched refs:timestamp_offset (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/media/filters/
frame_processor.h 33 base::TimeDelta* timestamp_offset) OVERRIDE;
41 base::TimeDelta* timestamp_offset,
frame_processor.cc 46 base::TimeDelta* timestamp_offset) {
65 timestamp_offset, new_media_segment)) {
82 base::TimeDelta* timestamp_offset,
144 *timestamp_offset = group_start_timestamp_ - presentation_timestamp;
147 << timestamp_offset->InSecondsF();
161 if (*timestamp_offset != base::TimeDelta()) {
165 presentation_timestamp += *timestamp_offset;
169 decode_timestamp += *timestamp_offset;
frame_processor_base.cc 55 base::TimeDelta timestamp_offset) {
56 DVLOG(2) << __FUNCTION__ << "(" << timestamp_offset.InSecondsF() << ")";
57 DCHECK(kNoTimestamp() != timestamp_offset);
59 group_start_timestamp_ = timestamp_offset;
frame_processor_base.h 132 // Uses |*timestamp_offset| according to the coded frame processing algorithm,
140 base::TimeDelta* timestamp_offset) = 0;
143 // |timestamp_offset| if it is in sequence append mode.
144 void SetGroupStartTimestampIfInSequenceMode(base::TimeDelta timestamp_offset);
chunk_demuxer.h 211 // and possibly updating |*timestamp_offset| during coded frame processing.
218 base::TimeDelta* timestamp_offset);
223 // applied |timestamp_offset|.
227 base::TimeDelta* timestamp_offset);
253 // |id| to update its group start timestamp to be |timestamp_offset| if it is
256 base::TimeDelta timestamp_offset);
chunk_demuxer.cc 111 // error occurred. |*timestamp_offset| is used and possibly updated by the
118 TimeDelta* timestamp_offset);
123 TimeDelta* timestamp_offset);
136 // |timestamp_offset| if it is in sequence append mode.
137 void SetGroupStartTimestampIfInSequenceMode(base::TimeDelta timestamp_offset);
296 base::TimeDelta timestamp_offset) {
299 frame_processor_->SetGroupStartTimestampIfInSequenceMode(timestamp_offset);
305 TimeDelta* timestamp_offset) {
306 DCHECK(timestamp_offset);
310 timestamp_offset_during_append_ = timestamp_offset;
    [all...]
pipeline_integration_test.cc 438 void AppendAtTime(base::TimeDelta timestamp_offset,
444 &timestamp_offset);
445 last_timestamp_offset_ = timestamp_offset;
448 void AppendAtTimeWithWindow(base::TimeDelta timestamp_offset,
459 &timestamp_offset);
460 last_timestamp_offset_ = timestamp_offset;
    [all...]
chunk_demuxer_unittest.cc     [all...]
  /external/chromium_org/content/renderer/media/
websourcebuffer_impl.h 32 double* timestamp_offset);
websourcebuffer_impl.cc 75 double* timestamp_offset) {
82 // provides a non-NULL |timestamp_offset| and frame processing changes the
86 if (timestamp_offset && old_offset != timestamp_offset_)
87 *timestamp_offset = timestamp_offset_.InSecondsF();
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
fec_receiver_impl.cc 97 uint16_t timestamp_offset = local
99 timestamp_offset +=
101 timestamp_offset = timestamp_offset >> 2;
102 if (timestamp_offset != 0) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
packet_unittest.cc 119 uint32_t timestamp_offset,
128 rtp_data[1] = timestamp_offset >> 6;
129 rtp_data[2] = (timestamp_offset & 0x3F) << 2;
154 uint32_t timestamp_offset = 100 * i; local
158 payload_type, timestamp_offset, block_length, last_block, payload_ptr);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.h 69 RtpClock(int clockrate, uint16 first_seq_num, uint32 timestamp_offset)
72 timestamp_offset_(timestamp_offset) {
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.h 68 uint32_t timestamp_offset, int64_t rtcp_receive_time);
remote_bitrate_estimator_unittest_helper.cc 32 uint32_t timestamp_offset,
40 rtp_timestamp_offset_(timestamp_offset),
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
payload_splitter.cc 65 int timestamp_offset = (payload_ptr[1] << 6) + local
68 timestamp_offset;
payload_splitter_unittest.cc 51 // |num_payloads|). Each redundant payload is |timestamp_offset| samples
55 int timestamp_offset) {
76 int this_offset = (num_payloads - i - 1) * timestamp_offset;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
nack_unittest.cc 225 uint32_t timestamp_offset = (k & 0x1) ? local
231 timestamp_lost_packets[n] = timestamp_offset + kLostPackets[n] *

Completed in 1311 milliseconds