This page was last modified 07:50, 20 September 2007.
RTP
From Forum Nokia Wiki
Introduction
RTP is "Real-Time Transport Protocol" which provides end to end network transport sevices in real-time.It provides real-time data transport for services like web conferencing,video,voice etc.RTP is mainly built on UDP(User Datagram Protocol).
RTP protocol can be used for an end-to-end or one-to-many kind of services.
The quality of service provided my RTP can be monitored by RTCP(RTP Control Protocol).
Functionality
The RTP API provides functionality to do the below steps:
- Create and manage an RTP session
- RRtpSession session; //Construct a new RTP session object
- session.OpenL(); //Opens an RTP session and initializes it
- Register for and handle events
- RRtpSession:RegisterEventCallbackL
- RRtpSendSource:RegisterEventCallbackL
- RRtpReceiveSource:RegisterEventCallbackL
- Access an RTP packet
- Create a send stream
- RRtpSendSource manages the creation and sending of RTP packets. Basically, an RTP session can have only one send stream.
- Manage an RTP packet
- Create a receive stream
- RRtpReceivePacket is derived from RRtpPacket and provides a handle to a received RTP packet.
- Manage the RTCP packets and reports
- RRtpSession::SetRTCPAutoSend()
- Manage the send and receive reports
Links
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How data is sent from rtp | Ojak Dev Sharma | Mobile Java Networking & Messaging & Security | 0 | 2005-07-04 12:50 |
| How live conversation can be done by J2ME | manas_cse | Mobile Java Media (Graphics & Sounds) | 5 | 2008-04-09 17:29 |
| how to send and recieve RTP payloads in SIP using J2ME. | Changeme123 | VoIP | 0 | 2008-07-21 08:50 |
| Nokia 6600 Socket Server send delay Problem | dicson_hu | Mobile Java Networking & Messaging & Security | 1 | 2005-10-31 07:37 |
| AudioStreaming + what PCM format + RTP payload type | isymdev | Symbian Media (Graphics & Sounds) | 1 | 2005-02-01 06:22 |
