Re: [Live-devel] How to get RTP packets

2008-04-28 Thread Ross Finlayson
>When i changed the code like this > >if (strcmp(fProtocolName, "UDP") == 0) { >on line 656 of "MediaSession.cpp" to > if (True) { > >the MultiFramedRTPSource class is not executed. Now it using the >BasicUDPSource class. That's exactly what was supposed to happen when you made that change.

[Live-devel] How to get RTP packets

2008-04-27 Thread Renjith
Hi Ross, When i changed the code like this if (strcmp(fProtocolName, "UDP") == 0) { on line 656 of "MediaSession.cpp" to if (True) { the MultiFramedRTPSource class is not executed. Now it using the BasicUDPSource class. I just create a file inside the void BasicUDPSource::incomingPacketH

Re: [Live-devel] How to get RTP packets

2008-04-18 Thread Ross Finlayson
Thanks for the info. I know doGetNextFrame1() will give the rtp frames. But instead of rtp frames i need rtp packets. The following function will do get rtp packets. * static void networkReadHandler(MultiFramedRTPSource* source, int /*mask*/); * friend void networkReadHandler(MultiFramedRTPSourc

[Live-devel] How to get RTP packets

2008-04-18 Thread Renjith
>Hi, >I would like to know how we get rtp packets. I am using openRTSP in >Live555 library. We can get rtp frames by using the getNextFrame(). But >i need rtp packets. I know, using incomingPacketHandler() we can get rtp >packets, but it is declared in the private section. So i can't use it in

Re: [Live-devel] How to get RTP packets

2008-04-17 Thread Ross Finlayson
>Hi, >I would like to know how we get rtp packets. I am using openRTSP in >Live555 library. We can get rtp frames by using the getNextFrame(). But >i need rtp packets. I know, using incomingPacketHandler() we can get rtp >packets, but it is declared in the private section. So i can't use it in >the

[Live-devel] How to get RTP packets

2008-04-17 Thread Renjith
Hi, I would like to know how we get rtp packets. I am using openRTSP in Live555 library. We can get rtp frames by using the getNextFrame(). But i need rtp packets. I know, using incomingPacketHandler() we can get rtp packets, but it is declared in the private section. So i can't use it in the o