diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index 68478ca762..a40572b928 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -1545,7 +1545,10 @@ dshow_add_device(AVFormatContext *avctx, ctx->capture_filter[devtype]->stream_index = st->index; - ff_dshow_pin_ConnectionMediaType(ctx->capture_pin[devtype], &type); + if (ff_dshow_pin_ConnectionMediaType(ctx->capture_pin[devtype], &type) != S_OK) { + ret = AVERROR(EIO); + goto error; + } fmt_info = dshow_get_format_info(&type); if (!fmt_info) { ret = AVERROR(EIO);