Hi Ross,
Thank you ver much for your quick and concrete response. We will
definitelycheck this!
Regards,
David
2014-01-30 Ross Finlayson :
> First of all I would like to program an RTSPClient that only handles RTSP
> session, just the sesion negotiation and session keep alive. In our
> applica
The "ReorderingPacketBuffer" is not a 'memory leak'. *Every* incoming packet
that gets added to this queue will later get consumed, and its memory will then
get reclaimed (perhaps reused for the next incoming packet). If an incoming
packet weren't added to the "ReorderingPacketBuffer", then it
I haven't seen this at all with the unmodified "testMPEGTransportStreamer" code
- which is what you should be using to test this. The call to
Medium::close(videoSource);
in the "afterPlaying()" function (line 133) does, indeed, cause the
"ByteStreamFileSource" object (and its underlying
In an attempt to reduce the number of global variables in
testMPEG2TransportStreamer.cpp, I made videoSource a local variable in
play(), then said
Medium::close(videoSink->source());
in afterPlaying().
This appears to work, but if you watch the FD count, it goes up by one
per pass throug
> First of all I would like to program an RTSPClient that only handles RTSP
> session, just the sesion negotiation and session keep alive. In our
> application we are already capable to manage incomping RTP flows, we just
> need an RTSP manager to interact with our RTP manager. On server side we
Hi all,
First of all I would like to program an RTSPClient that only handles RTSP
session, just the sesion negotiation and session keep alive. In our
application we are already capable to manage incomping RTP flows, we just
need an RTSP manager to interact with our RTP manager. On server side we
a
It worked perfectly.
I'm just adding a table packet periodically instead of calling
fInputSource->getNextFrame(...)
-Ursprüngliche Nachricht-
Gesendet: Montag, 27. Januar 2014 15:34
An: 'live-devel@lists.live555.com'
Betreff: AW: Adding some DVB Tables to a Stream
I've got it.
The objects