/third_party/ffmpeg/libavcodec/ |
D | ffv1.h | 56 int16_t drift; member 158 int drift = state->drift; in update_vlc_state() local 161 drift += v; in update_vlc_state() 165 drift >>= 1; in update_vlc_state() 170 if (drift <= -count) { in update_vlc_state() 173 drift = FFMAX(drift + count, -count + 1); in update_vlc_state() 174 } else if (drift > 0) { in update_vlc_state() 177 drift = FFMIN(drift - count, 0); in update_vlc_state() 180 state->drift = drift; in update_vlc_state()
|
D | ffv1.c | 186 p->vlc_state[j].drift = 0; in ff_ffv1_clear_slice_state()
|
D | ffv1enc.c | 254 code = v ^ ((2 * state->drift + state->count) >> 31); in put_vlc_symbol() 257 state->bias, state->error_sum, state->drift, state->count, k); in put_vlc_symbol()
|
D | ffv1dec.c | 86 v, state->bias, state->error_sum, state->drift, state->count, k); in get_vlc_symbol() 88 v ^= ((2 * state->drift + state->count) >> 31); in get_vlc_symbol()
|
/third_party/pulseaudio/src/modules/echo-cancel/ |
D | echo-cancel.h | 122 void (*set_drift) (pa_echo_canceller *ec, float drift); 183 void pa_webrtc_ec_set_drift(pa_echo_canceller *ec, float drift);
|
D | module-echo-cancel.c | 741 float drift; in do_push_drift_comp() local 757 … drift = ((float)(plen - u->sink_rem) - (rlen - u->source_rem)) / ((float)(rlen - u->source_rem)); in do_push_drift_comp() 763 fprintf(u->drift_file, "d %a\n", drift); in do_push_drift_comp() 800 u->ec->set_drift(u->ec, drift); in do_push_drift_comp() 2228 float drift; in main() local 2323 if (!fscanf(u.drift_file, "%a", &drift)) { in main() 2328 u.ec->set_drift(u.ec, drift); in main()
|
D | webrtc.cc | 566 void pa_webrtc_ec_set_drift(pa_echo_canceller *ec, float drift) { in pa_webrtc_ec_set_drift() argument 569 apm->echo_cancellation()->set_stream_drift_samples(drift * ec->params.webrtc.blocksize); in pa_webrtc_ec_set_drift()
|
/third_party/ffmpeg/libavfilter/ |
D | af_atempo.c | 635 const int drift, in yae_align() argument 641 int best_offset = -drift; in yae_align() 658 i0 = FFMAX(window / 2 - delta_max - drift, 0); in yae_align() 661 i1 = FFMIN(window / 2 + delta_max - drift, window - window / 16); in yae_align() 671 float drifti = (float)(drift + i); in yae_align() 701 const int drift = (int)(prev_output_position - ideal_output_position); in yae_adjust_position() local 708 drift, in yae_adjust_position()
|
/third_party/pulseaudio/src/pulsecore/ |
D | time-smoother_2.c | 136 double time_delta_system, time_delta_card, drift, filter_constant, filter_constant_1; in pa_smoother_2_put() local 237 drift = (s->drift_filter_1 + 1.0) * (1.5 - filtered_time_delta_card / time_delta_system); in pa_smoother_2_put() 240 s->drift_filter = (1 - filter_constant) * s->drift_filter + filter_constant * drift; in pa_smoother_2_put()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/ |
D | VK_EXT_calibrated_timestamps.adoc | 41 …to convert between them; however some clocks may be adjusted or otherwise drift over time, requiri… 42 …s to calibrate timestamps at any point, which also handles adjustments or drift between clocks ove… 126 === Can the host and device timestamp values drift apart over longer periods of time?
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | VK_EXT_calibrated_timestamps.txt | 74 6) Can the host and device timestamp values drift apart over longer periods
|
/third_party/openssl/doc/man3/ |
D | CT_POLICY_EVAL_CTX_new.pod | 99 future (e.g. (time() + 300) * 1000), to allow for clock drift.
|
/third_party/libwebsockets/lib/drivers/button/ |
D | README.md | 32 around the button causing drift and oscillation, the bottom-half briefly drives
|
/third_party/curl/docs/ |
D | GOVERNANCE.md | 108 expect to retire security team members as they "drift off" from the project or
|
/third_party/ffmpeg/doc/ |
D | ffplay.texi | 128 the audio/video synchronisation drift. It is shown by default, unless the
|
/third_party/libuv/docs/src/ |
D | misc.rst | 567 related to the time of day and therefore not subject to clock drift. The
|
/third_party/pulseaudio/po/ |
D | zh_TW.po | 1037 "much drift to readjust after in ms> format=<sample format> rate=<sample " 3947 #~ "adjust_threshold=<how much drift to readjust after in ms> format=<sample " 3957 #~ "adjust_threshold=<在多少個 drift 後 (單位是微秒) 要重新調整> format=<取樣"
|
D | id.po | 1082 "much drift to readjust after in ms> format=<sample format> rate=<sample " 1093 "much drift to readjust after in ms> format=<sample format> rate=<sample "
|
D | nn.po | 1073 "much drift to readjust after in ms> format=<sample format> rate=<sample " 1084 "adjust_threshold=<kor mykje drift å rejustera etter, målt i millisekund> "
|
D | nl.po | 1070 "much drift to readjust after in ms> format=<sample format> rate=<sample " 1081 "adjust_threshold=<how much drift to readjust after in ms> format=<sample "
|
D | pulseaudio.pot | 920 "adjust_time=<how often to readjust rates in s> adjust_threshold=<how much drift to "
|
D | af.po | 953 "much drift to readjust after in ms> format=<sample format> rate=<sample "
|
D | si.po | 945 "much drift to readjust after in ms> format=<sample format> rate=<sample "
|
/third_party/ffmpeg/libavformat/ |
D | mov.c | 3081 int64_t drift = (current_dts - corrected_dts)/FFMAX(sample_count, 1); in mov_read_stts() local 3082 … uint32_t correction = (sc->stts_data[i].duration > drift) ? drift : sc->stts_data[i].duration - 1; in mov_read_stts()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 2761 泛>'[drift]';
|