Driver communication

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Driver communication

vaishnavi
Hi,

I'm using a driver which performs asynchronous write(aio_write)...
I'm trying to develop a plugin which can write to device to perform some processing and then get back the processed data from driver to stream to output..

Is there a single element/plugin which does this..(write to hardware and reading from it)...

Thanx
Reply | Threaded
Open this post in threaded view
|

Re: Driver communication

Marco Ballesio
Hi,

On Thu, Dec 2, 2010 at 9:25 AM, vaishnavi <[hidden email]> wrote:

>
> Hi,
>
> I'm using a driver which performs asynchronous write(aio_write)...
> I'm trying to develop a plugin which can write to device to perform some
> processing and then get back the processed data from driver to stream to
> output..
>
> Is there a single element/plugin which does this..(write to hardware and
> reading from it)...

some examples coming to my mind, unfortunately you need specific
hardware to test them:

- gstreamer vaapi plugins.
- gst-dsp: it's quite simple to understand (or at least it was the
last time I hacked with it).
- gst-openmax: well, it doesn't grant processing will be made through
a driver, but very often it's likely to happen.

Regards

>
> Thanx
> --
> View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Driver-communication-tp3068601p3068601.html
> Sent from the GStreamer-devel mailing list archive at Nabble.com.
>
> ------------------------------------------------------------------------------
> Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
> Tap into the largest installed PC base & get more eyes on your game by
> optimizing for Intel(R) Graphics Technology. Get started today with the
> Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
> http://p.sf.net/sfu/intelisp-dev2dev
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Driver communication

vaishnavi
Thank you for the info...il look into it...