I would like to make an user mode application,
send video to a virtual video capture drivers,
based on "testcap" DDK sample.

as this the driver send the video to 3rd party software.

but I would like to know how to share memory with the drivers,
to make my user mode application sending the video to the drivers...

thanks,
renan

Re: sharing memory user mode & virtual video capture driver by Tim

Tim
Mon Oct 10 23:35:09 CDT 2005

renan <renan@aestesis.org> wrote:
>
>I would like to make an user mode application,
>send video to a virtual video capture drivers,
>based on "testcap" DDK sample.
>
>as this the driver send the video to 3rd party software.

It would probably be easier to write a DirectShow source filter. That way,
you avoid kernel mode altogether.
--
- Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.

Re: sharing memory user mode & virtual video capture driver by renan

renan
Tue Oct 11 07:59:18 CDT 2005

Tim,

If I write a source dx source filter,
how do I register it to be seen
buy 3rd party software ??

thanks,
renan

> renan <renan@aestesis.org> wrote:
>
>>I would like to make an user mode application,
>>send video to a virtual video capture drivers,
>>based on "testcap" DDK sample.
>>
>>as this the driver send the video to 3rd party software.
>
>
> It would probably be easier to write a DirectShow source filter. That way,
> you avoid kernel mode altogether.

Re: sharing memory user mode & virtual video capture driver by renan

renan
Tue Oct 11 21:35:40 CDT 2005

thanks for you're help,
I find it, I must register the dshow source filter as a
"video capture source".


renan