avdevice/dshow: reuse unused variables.

Fix for f125c504d8, requested_sample_rate
and such should be used.

Signed-off-by: Diederick Niehorster <dcnieho@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Diederick Niehorster 2022-04-19 10:13:18 +02:00 committed by James Almer
parent e71d5156c8
commit d2d8b9b972
1 changed files with 3 additions and 3 deletions

View File

@ -1003,9 +1003,9 @@ dshow_cycle_formats(AVFormatContext *avctx, enum dshowDeviceType devtype,
continue;
}
if (
(ctx->sample_rate && ctx->sample_rate != fx->nSamplesPerSec) ||
(ctx->sample_size && ctx->sample_size != fx->wBitsPerSample) ||
(ctx->channels && ctx->channels != fx->nChannels )
(requested_sample_rate && requested_sample_rate != fx->nSamplesPerSec) ||
(requested_sample_size && requested_sample_size != fx->wBitsPerSample) ||
(requested_channels && requested_channels != fx->nChannels )
) {
goto next;
}