/third_party/ffmpeg/libavfilter/ |
D | af_aresample.c | 187 int n_out = n_in * aresample->ratio + 32; in filter_frame() local 194 n_out += FFMIN(delay, FFMAX(4096, n_out)); in filter_frame() 196 outsamplesref = ff_get_audio_buffer(outlink, n_out); in filter_frame() 217 n_out = swr_convert(aresample->swr, outsamplesref->extended_data, n_out, in filter_frame() 219 if (n_out <= 0) { in filter_frame() 225 …aresample->more_data = outsamplesref->nb_samples == n_out; // Indicate that there is probably more… in filter_frame() 227 outsamplesref->nb_samples = n_out; in filter_frame() 240 int n_out = 4096; in flush_frame() local 243 outsamplesref = ff_get_audio_buffer(outlink, n_out); in flush_frame() 251 …n_out = swr_convert(aresample->swr, outsamplesref->extended_data, n_out, final ? NULL : (void*)out… in flush_frame() [all …]
|
D | af_apad.c | 99 int n_out = s->packet_size; in request_frame() local 106 n_out = FFMIN(n_out, s->pad_len_left); in request_frame() 107 s->pad_len_left -= n_out; in request_frame() 109 "padding n_out:%d pad_len_left:%"PRId64"\n", n_out, s->pad_len_left); in request_frame() 112 if (!n_out) in request_frame() 115 outsamplesref = ff_get_audio_buffer(outlink, n_out); in request_frame() 120 av_assert0(outsamplesref->nb_samples == n_out); in request_frame() 123 n_out, in request_frame() 129 … s->next_pts += av_rescale_q(n_out, (AVRational){1, outlink->sample_rate}, outlink->time_base); in request_frame()
|
D | af_atempo.c | 1053 int n_out) in push_samples() argument 1058 atempo->dst_buffer->nb_samples = n_out; in push_samples() 1073 atempo->nsamples_out += n_out; in push_samples() 1085 int n_out = (int)(0.5 + ((double)n_in) / atempo->tempo); in filter_frame() local 1097 atempo->dst_buffer = ff_get_audio_buffer(outlink, n_out); in filter_frame() 1105 atempo->dst_end = atempo->dst + n_out * atempo->stride; in filter_frame() 1136 int n_out; in request_frame() local 1151 n_out = ((atempo->dst - atempo->dst_buffer->data[0]) / in request_frame() 1154 if (n_out) { in request_frame() 1155 ret = push_samples(atempo, outlink, n_out); in request_frame()
|
/third_party/libwebsockets/lib/roles/http/compression/brotli/ |
D | brotli.c | 53 uint8_t *n_out; in lcs_process_brotli() local 59 n_out = out; in lcs_process_brotli() 75 &a_out, &n_out, &t_out) == in lcs_process_brotli() 86 &a_out, &n_out, &t_out); in lcs_process_brotli()
|
/third_party/openssl/test/ |
D | evp_pkey_provided_test.c | 453 BIGNUM *n = NULL, *e = NULL, *d = NULL, *n_out = NULL; in test_evp_pkey_get_bn_param_large() local 482 || !TEST_true(EVP_PKEY_get_bn_param(pk, OSSL_PKEY_PARAM_RSA_N, &n_out)) in test_evp_pkey_get_bn_param_large() 483 || !TEST_BN_eq(n, n_out)) in test_evp_pkey_get_bn_param_large() 487 BN_free(n_out); in test_evp_pkey_get_bn_param_large()
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | ccconverter.c | 264 guint n_out, const guint8 ** out, guint * out_len, const gchar * in_caps, in check_conversion_multiple() argument 291 for (i = 0; i < n_out; i++) { in check_conversion_multiple()
|
/third_party/gstreamer/gstplugins_bad/gst/interlace/ |
D | gstinterlace.c | 719 gst_interlace_fraction_double (gint * n_out, gint * d_out, gboolean half) in gst_interlace_fraction_double() argument 723 n = *n_out; in gst_interlace_fraction_double() 754 *n_out = n; in gst_interlace_fraction_double()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/ |
D | gstdeinterlace.c | 2310 gst_deinterlace_fraction_double (gint * n_out, gint * d_out, gboolean half) in gst_deinterlace_fraction_double() argument 2314 n = *n_out; in gst_deinterlace_fraction_double() 2345 *n_out = n; in gst_deinterlace_fraction_double()
|