Re: [Live-devel] RTSP clinet

2009-01-18 Thread Aditya Vikram
Hi I have written a DirectShow filter using playcomman.cpp program . Basically I want to support mpeg4, h264 and h263 in my filter ..I have implemented my filter as a RTSP client as well as simple RTP receiver (in this case SDP is set by another element not part of filter).Filter (RTSP based

Re: [Live-devel] aac headers

2009-01-18 Thread Edward
Thank you. I will look in to this. ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

[Live-devel] scheduleNextQOSMeasurement() bug?

2009-01-18 Thread Gabriele De Luca
Hi Ross,I would like to report a possible bug in scheduleNextQOSMeasurement(): unsigned usecsToDelay = nextQOSMeasurementUSecs < timeNowUSecs ? 0: nextQOSMeasurementUSecs - timeNowUSecs; I think that should be so: unsigned usecsToDelay = nextQOSMeasurementUSecs < timeNowUSecs ? qosMeasuremen

[Live-devel] UNSUPPORTED TYPE(0xca)

2009-01-18 Thread i_liketowin
Hi ! I`ve made x264VideoStreamFramer created/deleted by own MyTCPOnDemandServerMediaSubsession (inherited from OnDemandServerMediaSubsession). I get this message in my ( DEBUG defined compiled ) live555 RTSP/RTP/RTCP server: validated RTCP subpacket (type 2): 1, 201, 0, 0x800057f8 UNSUPP

[Live-devel] Extending RTSPClinetSession class

2009-01-18 Thread Yedidia Amit
Hi, I am trying to extend RTSPClientSession to support "SET_PARAMETER". However the class is declared as private within the RTSPServer class. In addition the IncomingRequestHandler1 which I should override, is also declared as private within the RTSPClientSession class. Should I change both of