mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavr: mix: validate internal sample format in ff_audio_mix_init()
This commit is contained in:
parent
66a297975d
commit
db0e7bd0bd
@ -305,6 +305,14 @@ int ff_audio_mix_init(AVAudioResampleContext *avr)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (avr->internal_sample_fmt != AV_SAMPLE_FMT_S16P &&
|
||||||
|
avr->internal_sample_fmt != AV_SAMPLE_FMT_FLTP) {
|
||||||
|
av_log(avr, AV_LOG_ERROR, "Unsupported internal format for "
|
||||||
|
"mixing: %s\n",
|
||||||
|
av_get_sample_fmt_name(avr->internal_sample_fmt));
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
/* build matrix if the user did not already set one */
|
/* build matrix if the user did not already set one */
|
||||||
if (!avr->am->matrix) {
|
if (!avr->am->matrix) {
|
||||||
int i, j;
|
int i, j;
|
||||||
|
Loading…
Reference in New Issue
Block a user