Home
last modified time | relevance | path

Searched refs:num_gap_samples (Results 1 – 3 of 3) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst/audioresample/
Dgstaudioresample.c252 resample->num_gap_samples = 0; in gst_audio_resample_start()
528 resample->num_gap_samples = 0; in gst_audio_resample_set_caps()
669 resample->num_gap_samples = 0; in gst_audio_resample_sink_event()
687 resample->num_gap_samples = 0; in gst_audio_resample_sink_event()
777 if (resample->num_gap_samples < filt_len) { in gst_audio_resample_process()
779 if (in_len >= filt_len - resample->num_gap_samples) in gst_audio_resample_process()
780 zeros_to_push = filt_len - resample->num_gap_samples; in gst_audio_resample_process()
786 resample->num_gap_samples += zeros_to_push; in gst_audio_resample_process()
807 resample->num_gap_samples += in_len; in gst_audio_resample_process()
810 if (resample->num_gap_samples > filt_len) { in gst_audio_resample_process()
[all …]
Dgstaudioresample.h52 guint64 num_gap_samples; member
/third_party/gstreamer/gstplugins_base/
DChangeLog109389 …audioresample: changed num_gap_samples, num_nongap_samples from guint32 to guint64 so that gaps of…
109400 …audioresample: renamed count_gap, count_nongap to more descriptive num_gap_samples, num_nongap_sam…