[Live-devel] Re: [vlc-devel] RTSP trickplay support

Dermot McGahon dermot at dspsrv.com
Mon Dec 20 18:00:04 PST 2004


Ross,

Would it be possible to get this one line patch into the project. It's  
useful
for UDP streaming as it means that proper PCR values are provided to the  
player.

Without this it will be difficult to implement seeking and trickplay. I  
can't think
of a drawback of including it. I have been using it in my own tree with  
vlc and it
seems to work well.


Dermot.
--


--- live/liveMedia/MediaSession.cpp     2004-12-15 08:31:10.000000000 +0000
+++ live.2004.12.15/liveMedia/MediaSession.cpp  2004-12-20  
17:56:23.307350100 +0000
@@ -631,6 +631,7 @@
      if (strcmp(fProtocolName, "UDP") == 0) {
        // A UDP-packetized stream (*not* a RTP stream)
        fReadSource = BasicUDPSource::createNew(env(), fRTPSocket);
+      fReadSource = MPEG2TransportStreamFramer::createNew(env(),  
fReadSource);
        fRTPSource = NULL; // Note!
      } else {
        // Check "fCodecName" against the set of codecs that we support,



More information about the live-devel mailing list