I\'ve installed gst-rtsp-server and I wanted to try a simple code. But on compilation I\'m getting the following error:
gst-rtsp-server
In function `main\': te
It appears that you have not linked to the lib. "Undefined reference" usually means that you have included the necessary header files but that the linker has not found the definitions.
Try adding:
`pkg-config gstreamer-rtsp-0.10 --libs`
to your linker invocation.