Home
last modified time | relevance | path

Searched refs:mix_matrix (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavresample/
Dutils.c61 (!avr->downmix_needed && (avr->mix_matrix || in avresample_open()
273 av_freep(&avr->mix_matrix); in avresample_close()
654 if (!avr->mix_matrix) { in avresample_get_matrix()
661 matrix[o * stride + i] = avr->mix_matrix[o * in_channels + i]; in avresample_get_matrix()
683 if (avr->mix_matrix) in avresample_set_matrix()
684 av_freep(&avr->mix_matrix); in avresample_set_matrix()
685 avr->mix_matrix = av_malloc(in_channels * out_channels * in avresample_set_matrix()
686 sizeof(*avr->mix_matrix)); in avresample_set_matrix()
687 if (!avr->mix_matrix) in avresample_set_matrix()
692 avr->mix_matrix[o * in_channels + i] = matrix[o * stride + i]; in avresample_set_matrix()
Dinternal.h103 double *mix_matrix; member
Daudio_mix.c367 if (avr->mix_matrix) { in ff_audio_mix_alloc()
368 ret = ff_audio_mix_set_matrix(am, avr->mix_matrix, avr->in_channels); in ff_audio_mix_alloc()
371 av_freep(&avr->mix_matrix); in ff_audio_mix_alloc()
/third_party/gstreamer/gstplugins_base/gst/audioconvert/
Dgstaudioconvert.c264 g_value_init (&this->mix_matrix, GST_TYPE_ARRAY); in gst_audio_convert_init()
279 g_value_unset (&this->mix_matrix); in gst_audio_convert_dispose()
376 if (gst_value_array_get_size (&this->mix_matrix)) { in gst_audio_convert_transform_caps()
381 gst_value_array_get_value (&this->mix_matrix, 0); in gst_audio_convert_transform_caps()
384 other_channels = gst_value_array_get_size (&this->mix_matrix); in gst_audio_convert_transform_caps()
775 &this->mix_matrix); in gst_audio_convert_set_caps()
990 g_value_copy (value, &this->mix_matrix); in gst_audio_convert_set_property()
1021 g_value_copy (&this->mix_matrix, value); in gst_audio_convert_get_property()
Dgstaudioconvert.h45 GValue mix_matrix; member
/third_party/gstreamer/gstplugins_base/
DChangeLog42153 audio-converter: remove unused mix_matrix private field