Adding external engine to my plugin

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

Adding external engine to my plugin

Siber
Hello everybody!

I've created a simple plugin using Project Stamp (http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-boiler-project-stamp.html). It links to other plugins in a pipeline and process data fine.

Now I want to link an external engine to my plugin. I have include file of the engine "my_engine.h" and static library "libeng.a".  Please help me, where should I specify these files to make it work with my plugin? Offcourse I've included "my_engine.h" in my plugin's header file "gstvideocomp.h".

Thank you!
Reply | Threaded
Open this post in threaded view
|

Re: Adding external engine to my plugin

Stefan Sauer
On 07/27/11 11:55, Siber wrote:

> Hello everybody!
>
> I've created a simple plugin using Project Stamp
> (http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-boiler-project-stamp.html).
> It links to other plugins in a pipeline and process data fine.
>
> Now I want to link an external engine to my plugin. I have include file of
> the engine "my_engine.h" and static library "libeng.a".  Please help me,
> where should I specify these files to make it work with my plugin? Offcourse
> I've included "my_engine.h" in my plugin's header file "gstvideocomp.h".

Makefile.am, you should get yourself familiar with the generated files.

stefan
> Thank you!
>
> --
> View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Adding-external-engine-to-my-plugin-tp3698015p3698015.html
> Sent from the GStreamer-devel mailing list archive at Nabble.com.
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Adding external engine to my plugin

Siber
Thank you, Stefan, for fast reply again.