[FFmpeg-devel] [PATCH 1/2] avdevice/dshow: remove unused variables
James Almer
jamrial at gmail.com
Wed Apr 13 19:15:14 EEST 2022
Remnant from f125c504d8fece6420bb97767f9e72414c26312a
Signed-off-by: James Almer <jamrial at gmail.com>
---
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
More information about the ffmpeg-devel
mailing list