summaryrefslogtreecommitdiff
path: root/libavdevice
diff options
context:
space:
mode:
authorDiederick Niehorster <dcnieho@gmail.com>2022-03-25 15:10:20 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2022-03-29 23:25:33 +0200
commitf125c504d8fece6420bb97767f9e72414c26312a (patch)
treeae0b803e85d30489ec9ae1479a21113609c0f661 /libavdevice
parent7c35aa60a5131b129cf474ae7f27f949a26ae21c (diff)
downloadffmpeg-f125c504d8fece6420bb97767f9e72414c26312a.tar.gz
avdevice/dshow: fix regression
a1c4929f accidentally undid part of d9a9b4c8, so the bug in ticket #9420 resurfaced. Fixing again. Signed-off-by: Diederick Niehorster <dcnieho@gmail.com> Reviewed-by: Roger Pack <rogerdpack2@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/dshow.c23
1 files changed, 6 insertions, 17 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 6039578ff9..abb8325bc3 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -1002,23 +1002,12 @@ dshow_cycle_formats(AVFormatContext *avctx, enum dshowDeviceType devtype,
);
continue;
}
- if (requested_sample_rate) {
- if (requested_sample_rate > acaps->MaximumSampleFrequency ||
- requested_sample_rate < acaps->MinimumSampleFrequency)
- goto next;
- fx->nSamplesPerSec = requested_sample_rate;
- }
- if (requested_sample_size) {
- if (requested_sample_size > acaps->MaximumBitsPerSample ||
- requested_sample_size < acaps->MinimumBitsPerSample)
- goto next;
- fx->wBitsPerSample = requested_sample_size;
- }
- if (requested_channels) {
- if (requested_channels > acaps->MaximumChannels ||
- requested_channels < acaps->MinimumChannels)
- goto next;
- fx->nChannels = requested_channels;
+ if (
+ (ctx->sample_rate && ctx->sample_rate != fx->nSamplesPerSec) ||
+ (ctx->sample_size && ctx->sample_size != fx->wBitsPerSample) ||
+ (ctx->channels && ctx->channels != fx->nChannels )
+ ) {
+ goto next;
}
}