tags:

views:

47

answers:

1

Hi

I wrote a simple C code with gstreamer libs( gstreamer example code manual ref )

The gstreamer headers are into /usr/include/gstreamer-0.10/gst

into my C code I wrote:

include "gstreamer-0.10/gst/gst.h"

I have this error: there are unresolved includes inside

How to solve the problem? I thank you...

A: 

If you use the standard C compiler flags given by pkg-config gstreamer-0.10 --cflags, you should need only #include <gst/gst.h> in your source code. To help yourself, you can use a simple Makefile (some simple example here)

elmarco