OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:timestamp_diff
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decision_logic_normal.cc
90
int32_t
timestamp_diff
= (generated_noise_samples_ + target_timestamp) -
local
94
int32_t excess_waiting_time_samp = -
timestamp_diff
- optimal_level_samp;
101
timestamp_diff
+= excess_waiting_time_samp;
104
if (
timestamp_diff
< 0 && prev_mode == kModeRfc3389Cng) {
187
int32_t
timestamp_diff
= (generated_noise_samples_ + target_timestamp) -
local
189
if (
timestamp_diff
>= 0 ||
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
TestAllCodecs.cc
94
uint32_t TestPack::
timestamp_diff
() {
function in class:webrtc::TestPack
755
uint32_t
timestamp_diff
;
local
779
timestamp_diff
= channel->
timestamp_diff
();
781
(static_cast<int>(
timestamp_diff
) != packet_size_samples_) &&
TestStereo.cc
94
uint32_t TestPackStereo::
timestamp_diff
() {
function in class:webrtc::TestPackStereo
859
time_stamp_diff = channel->
timestamp_diff
();
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
overuse_detector.cc
126
uint32_t
timestamp_diff
= current_frame.timestamp - prev_frame.timestamp;
local
127
*ts_delta =
timestamp_diff
/ 90.0;
148
uint32_t
timestamp_diff
= timestamp - prev_timestamp;
local
151
return (
timestamp_diff
< 0x80000000);
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
receive_statistics_impl.cc
347
uint32_t
timestamp_diff
= header.timestamp - last_received_timestamp_;
local
348
int32_t rtp_time_stamp_diff_ms = static_cast<int32_t>(
timestamp_diff
) /
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_unittest.cc
712
uint32_t
timestamp_diff
= packet->header().timestamp - last_timestamp_;
local
713
EXPECT_EQ(frame_size_rtp_timestamps_,
timestamp_diff
);
[
all
...]
audio_coding_module_unittest_oldapi.cc
725
uint32_t
timestamp_diff
= packet->header().timestamp - last_timestamp_;
local
726
EXPECT_EQ(frame_size_rtp_timestamps_,
timestamp_diff
);
[
all
...]
Completed in 914 milliseconds