[Live-devel] TestMP3Streamer.cpp

2012-04-11 Thread Vinay Tyagi
Hi,   while I am trying to execute TestMP3Streamer.exe it doesn't find any RTSP Server and goes into following condition and display the message "Failed to create RTSP "   if (rtspServer == NULL) {     *env << "Failed to create RTSP server: " << env->getResultMsg() << "\n";     exit(1);   }

Re: [Live-devel] Live H264 Streaming Timing Problem

2012-04-11 Thread Renato MAURO (Libero)
Hello Marc. In Windows the ReadFile function reads asynchronously: 1) from a pipe, setting PIPE_NOWAIT via the SetNamedPipeHandleState function (see http://msdn.microsoft.com/en-us/library/windows/desktop/aa365787(v=vs.85).aspx); 2) from a file, setting FILE_FLAG_OVERLAPPED via the Create

Re: [Live-devel] Live H264 Streaming Timing Problem

2012-04-11 Thread Ross Finlayson
> I am reading in H.264 data from a named pipe (which is essentially a file) > and feeding into a H264VideoStreamFramer. I basically copied > ByteStreamFileSource and read from a pipe rather than a file. You shouldn't need to 'copy' the "ByteStreamFileSource" code. Because your pipe appears -

Re: [Live-devel] Live H264 Streaming Timing Problem

2012-04-11 Thread Ross Finlayson
> I am reading in H.264 data from a named pipe (which is essentially a file) > and feeding into a H264VideoStreamFramer. I basically copied > ByteStreamFileSource and read from a pipe rather than a file. You shouldn't need to 'copy' the "ByteStreamFileSource" code. Because your pipe appears -

Re: [Live-devel] Live H264 Streaming Timing Problem

2012-04-11 Thread Marc ARMSTRONG
Thanks very much for the info, and your quick response. I am reading in H.264 data from a named pipe (which is essentially a file) and feeding into a H264VideoStreamFramer. I basically copied ByteStreamFileSource and read from a pipe rather than a file. Incidentally, I used pipes because I am u