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
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
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
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
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