Home
last modified time | relevance | path

Searched refs:DCA_LBR_TIME_SAMPLES (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Ddca_lbr.c647 nblocks = FFMIN(get_bits_left(&s->gb) / 8, DCA_LBR_TIME_SAMPLES / 8); in parse_ch()
658 for (i = 0; i < DCA_LBR_TIME_SAMPLES && get_bits_left(&s->gb) >= 2; i++) { in parse_ch()
665 nblocks = FFMIN(get_bits_left(&s->gb) / 8, (DCA_LBR_TIME_SAMPLES + 4) / 5); in parse_ch()
676 nblocks = FFMIN(get_bits_left(&s->gb) / 7, (DCA_LBR_TIME_SAMPLES + 2) / 3); in parse_ch()
686 for (i = 0; i < DCA_LBR_TIME_SAMPLES && get_bits_left(&s->gb) >= 6; i++) in parse_ch()
691 nblocks = FFMIN(get_bits_left(&s->gb) / 4, DCA_LBR_TIME_SAMPLES); in parse_ch()
703 for (; i < DCA_LBR_TIME_SAMPLES; i++) in parse_ch()
995 int nchsamples = DCA_LBR_TIME_SAMPLES + DCA_LBR_TIME_HISTORY * 2; in alloc_sample_buffer()
1455 memset(samples, 0, DCA_LBR_TIME_SAMPLES * sizeof(float)); in random_ts()
1457 for (i = 0; i < DCA_LBR_TIME_SAMPLES; i++) in random_ts()
[all …]
Ddca_lbr.h41 #define DCA_LBR_TIME_SAMPLES 128 macro