[FFmpeg-cvslog] dshow: call CoUninitialize() on dshow_read_close()
Ramiro Polla
git at videolan.org
Mon Dec 17 14:53:53 CET 2012
ffmpeg | branch: master | Ramiro Polla <ramiro.polla at gmail.com> | Mon Dec 17 03:44:51 2012 -0200| [83a9f29f60d9f442989232bacb70d954ffbdc316] | committer: Ramiro Polla
dshow: call CoUninitialize() on dshow_read_close()
Every call to CoInitialize should have a matching CoUnititalize.
Based on patch by Don Moir <donmoir at comcast.net>.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=83a9f29f60d9f442989232bacb70d954ffbdc316
---
libavdevice/dshow.c | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 6f7e95b..83b5e01 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -181,6 +181,8 @@ dshow_read_close(AVFormatContext *s)
pktl = next;
}
+ CoUninitialize();
+
return 0;
}
@@ -793,7 +795,6 @@ dshow_add_device(AVFormatContext *avctx,
if (codec->codec_id == AV_CODEC_ID_NONE) {
av_log(avctx, AV_LOG_ERROR, "Unknown compression type. "
"Please report verbose (-v 9) debug information.\n");
- dshow_read_close(avctx);
return AVERROR_PATCHWELCOME;
}
codec->bits_per_coded_sample = bih->biBitCount;
@@ -883,6 +884,8 @@ static int dshow_read_header(AVFormatContext *avctx)
int ret = AVERROR(EIO);
int r;
+ CoInitialize(0);
+
if (!ctx->list_devices && !parse_device_name(avctx)) {
av_log(avctx, AV_LOG_ERROR, "Malformed dshow input string.\n");
goto error;
@@ -906,8 +909,6 @@ static int dshow_read_header(AVFormatContext *avctx)
}
}
- CoInitialize(0);
-
r = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
&IID_IGraphBuilder, (void **) &graph);
if (r != S_OK) {
@@ -1007,12 +1008,12 @@ static int dshow_read_header(AVFormatContext *avctx)
error:
- if (ret < 0)
- dshow_read_close(avctx);
-
if (devenum)
ICreateDevEnum_Release(devenum);
+ if (ret < 0)
+ dshow_read_close(avctx);
+
return ret;
}
More information about the ffmpeg-cvslog
mailing list