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);
}
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
> 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 -
> 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 -
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