Remnant from f125c504d8fece6420bb97767f9e72414c26312a
Signed-off-by: James Almer <[email protected]>
---
libavdevice/dshow.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 1e69620880..ac8b64366f 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -814,10 +814,6 @@ dshow_cycle_formats(AVFormatContext *avctx, enum
dshowDeviceType devtype,
/
ctx->requested_framerate.num : 0;
int requested_width = ctx->requested_width;
int requested_height = ctx->requested_height;
- // audio
- int requested_sample_rate = ctx->sample_rate;
- int requested_sample_size = ctx->sample_size;
- int requested_channels = ctx->channels;
if (IPin_QueryInterface(pin, &IID_IAMStreamConfig, (void **) &config) !=
S_OK)
return;
@@ -854,10 +850,6 @@ dshow_cycle_formats(AVFormatContext *avctx, enum
dshowDeviceType devtype,
requested_framerate = fmt_info->framerate;
requested_width = fmt_info->width;
requested_height = fmt_info->height;
- } else {
- requested_sample_rate = fmt_info->sample_rate;
- requested_sample_size = fmt_info->sample_size;
- requested_channels = fmt_info->channels;
}
av_free(fmt_info); // free but don't set to NULL to enable
below check
}
--
2.35.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".