[PATCH 1/2] devenum: Try to create unique keys for different video capture devices.

Damjan Jovanovic damjan.jov at gmail.com
Sat Apr 20 12:43:51 CDT 2019


On Sat, Apr 20, 2019 at 7:07 PM Zebediah Figura <z.figura12 at gmail.com>
wrote:

> Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
> ---
>  dlls/devenum/createdevenum.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/dlls/devenum/createdevenum.c b/dlls/devenum/createdevenum.c
> index 2db5491190..b89cac6d39 100644
> --- a/dlls/devenum/createdevenum.c
> +++ b/dlls/devenum/createdevenum.c
> @@ -795,7 +795,7 @@ static void register_avicap_devices(void)
>
>          friendlyname[5] = '0' + i;
>
> -        hr = register_codec(&CLSID_VideoInputDeviceCategory, name,
> +        hr = register_codec(&CLSID_VideoInputDeviceCategory, friendlyname,
>                  &CLSID_VfwCapture, friendlyname, &prop_bag);
>          if (FAILED(hr))
>              continue;
> --
> 2.21.0
>
>
>

Currently the "name" is the device description, eg. "KWorld Webcam V2010
: KWorld ".
The "friendlyname" is "video0", "video1".
Shouldn't it be the other way around?

Also instead of passing friendlyname twice to register_codec(), shouldn't
we pass them both but in opposite order?

Just a thought.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-devel/attachments/20190420/4dfde7dd/attachment.html>


More information about the wine-devel mailing list