[Live-devel] Bug in AVIFileSink

2009-02-11 Thread Pramod Bhagwat
Hi Ross, This is regarding AVISubsessionIOState class present in AVIFileSink.cpp. The constructor of AVISubsessionIOState should initialize fIsByteSwappedAudio to false. If the SDP file contains only video and does not contain any audio then fIsByteSwappedAudio will have some random value which mak

[Live-devel] Regarding JPEG streaming

2009-02-06 Thread Pramod Bhagwat
Hi Ross, This is regarding streaming jpeg over rtp. I read the FAQ and in the mail mentioned below http://lists.live555.com/pipermail/live-devel/2005-January/001908.html You mentioned following: Note that "JPEGVideoSource" is an abstract base class. You must define and implement your own subclas

[Live-devel] QuickTimeFileSink SubsessionBuffer destructor

2008-11-03 Thread Pramod Bhagwat
Hi Ross, This is regarding SubsessionBuffer desctructor function present in QuickTimeFileSink.cpp. The code should be modified to "delete[] fData" since fData is an array and tools like valgrind complain saying "Mismatched free() / delete / delete []". Warm Regards, pramod

[Live-devel] redeclaration in RTSPOverHTTPServer

2008-08-11 Thread Pramod Bhagwat
Hi Ross, This bug is similar to the bug reported by Renato MAURO for RTSPServer. In RTSPOverHTTPServer::createNew function present in RTSPOverHTTPServer.cpp file "ourSocket" is declared twice, inner and outer cycle. Warm Regards, pramod ___ live-devel ma

[Live-devel] Regarding MP3 FileSource

2008-07-30 Thread Pramod Bhagwat
Hi Ross, following may be bug in the MP3FileSource present in MP3FileSource.cpp 1. MP3FileSource destructor is not closing the input file. It needs to call CloseInputFile here. 2. In MP3FileSource::createNew class before the final statement return NULL, call to CloseInputFile is required.(i.e. if n

[Live-devel] Regarding FileSink destructor

2008-07-27 Thread Pramod Bhagwat
Hi Ross, This may not be serious bug. The FileSink destructor present in FileSink.cpp is directly closing the fileHandle, Instead of this it is preferred if it calls "CloseOutputFile" which takes care of not closing stdout,stderr file handles. Warm Regards, prb

Re: [Live-devel] too many open files error

2008-07-23 Thread Pramod Bhagwat
Hi Ross, i looked at the new code live.2008.07.24. i feel there is one issue. Now QuickTimeFileSink constructor is opening the file using OpenOutputFile but it is not checking the return value. If file open fails the filehandle will be NULL and may give core dump wherever filehandle is used. I feel

[Live-devel] too many open files error

2008-07-23 Thread Pramod Bhagwat
Hi Ross, it looks there is a bug in QuickTimeFileSink. The QuickTimeFileSink::completeOutputFile() is not closing the file handle. (This error will come if user uses different files for saving the stream other than stdout, stderr) Because of the above bug, creating new file using "OpenOutputFile"

Re: [Live-devel] (no subject)

2008-05-08 Thread Pramod Bhagwat
2008/5/7 Ross Finlayson <[EMAIL PROTECTED]>: > Unable to determine our source address: This computer has an invalid IP > address: 0x0 > Beginning streaming... > Beginning to read from file... > * > * > > I don't under

[Live-devel] saving H.264 video and streaming through DSS

2008-04-17 Thread Pramod Bhagwat
Hi, i wanted to save the H.264 video stream which is sent over RTP. The H.264 stream needs to be saved in .mp4 format with hint track added. For this used the openRTSP utility. i am able to generate the .mp4 file But if i try to stream this .mp4 file using Darwin Media Server it does not work. The