[FFmpeg-devel] PATCH: dshow: don't add two instances of same device to graphs

Clément Bœsch u at pkh.me
Wed Jun 15 12:55:10 CEST 2016


On Wed, Jun 15, 2016 at 02:54:09AM -0600, Roger Pack wrote:
> A handful of devices don't support this, and the rest work fine with it :)
> 
> -roger-

> From e724d7f169bcae3217455cd88f9c023d275d367a Mon Sep 17 00:00:00 2001
> From: rogerdpack <rogerpack2005 at gmail.com>
> Date: Wed, 15 Jun 2016 02:17:11 -0600
> Subject: [PATCH] dshow: don't add two instances of same device to graphs
> 
> Signed-off-by: rogerdpack <rogerpack2005 at gmail.com>
> ---
>  libavdevice/dshow.c         | 37 ++++++++++++++++++++++++++++++-------
>  libavdevice/dshow_capture.h |  2 ++
>  2 files changed, 32 insertions(+), 7 deletions(-)
> 
> diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
> index 5f2cad7..e1ac855 100644
> --- a/libavdevice/dshow.c
> +++ b/libavdevice/dshow.c
> @@ -108,6 +108,10 @@ dshow_read_close(AVFormatContext *s)
>          av_freep(&ctx->device_name[0]);
>      if (ctx->device_name[1])
>          av_freep(&ctx->device_name[1]);

> +    if (ctx->device_unique_name[0])
> +        av_freep(&ctx->device_unique_name[0]);
> +    if (ctx->device_unique_name[1])
> +        av_freep(&ctx->device_unique_name[1]);

I can't comment the rest of the patch, but please remove the ifs. They are,
and always were, totally useless. Just like those above.

-- 
Clément B.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20160615/d1ec77e9/attachment.sig>


More information about the ffmpeg-devel mailing list