Latest RTSPServer broken on windows
Matthias Dodt
MDodt at xion-medical.com
Tue Oct 11 09:12:08 PDT 2011
Hi guys!
It seems there is a problem with the latest GSTRTSPServer. It doesn't
listen on a socket or establish a connection. Firstly in rtsp-server.c
there is an ifdef missing (line 615...):
gst_rtsp_server_get_io_channel(...){
...
/* create IO channel for the socket */
#ifdef G_OS_WIN32
channel = g_io_channel_win32_new_socket (sockfd);
#else
channel = g_io_channel_unix_new (sockfd);
#endif
...
Then the client connects but the server doesn't react on the client's
OPTIONS request. Any ideas? I guess it must be something with polling
the socket.
Cheers,
mat
More information about the gstreamer-devel
mailing list