mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-19 13:50:58 +00:00
avdevice/dshow: proper cleanup of queried media types
Signed-off-by: Diederick Niehorster <dcnieho@gmail.com> Reviewed-by: Roger Pack <rogerdpack2@gmail.com>
This commit is contained in:
parent
d1f7700133
commit
307d2b867f
@ -953,7 +953,7 @@ dshow_cycle_formats(AVFormatContext *avctx, enum dshowDeviceType devtype,
|
||||
av_log(avctx, AV_LOG_INFO, "(%s)", chroma ? chroma : "unknown");
|
||||
|
||||
av_log(avctx, AV_LOG_INFO, "\n");
|
||||
continue;
|
||||
goto next;
|
||||
}
|
||||
if (requested_video_codec_id != AV_CODEC_ID_RAWVIDEO) {
|
||||
if (requested_video_codec_id != fmt_info->codec_id)
|
||||
@ -1038,6 +1038,7 @@ next:
|
||||
if (type && type->pbFormat)
|
||||
CoTaskMemFree(type->pbFormat);
|
||||
CoTaskMemFree(type);
|
||||
type = NULL;
|
||||
}
|
||||
// previously found a matching VIDEOINFOHEADER format and stored
|
||||
// it for safe keeping. Searching further for a matching
|
||||
|
Loading…
Reference in New Issue
Block a user