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:
parent
e71d5156c8
commit
d2d8b9b972
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue