I've started to use gstreamer for bygfoot media API.
This API contains (now) those functions :
//start to init GStreamer
gint mediaPlayer_init();
//play a sound and return from function when sound is stop
gint mediaPlayer_playSoundToEnd(const gchar *path);
The implementation is on going, the configure.in script has been modified to check for GSTREAMER and add a #define into config.h
BUT nothing is working now :-s
-> compil problem
I've wanted to add three more functions :
//Start to play a sound (needthread :-s
gint mediaPlayer_playSoundAndComeBack(const gchar *path,gint * soundId);
//stop a sound which is playing
gint mediaPlayer_stopSound(gint soundId);
//Play a video. return when video is stop.
gint mediaPlayer_playVideo(const gchar * path);
PS : all this code is on my computer, with a copy/paste from GStream Developer doc.
