Agora Java API Reference for Android
Public Member Functions | List of all members
agora::rtc::IMediaPacketSender Class Referenceabstract

#include <NGIAgoraMediaNode.h>

Inheritance diagram for agora::rtc::IMediaPacketSender:
agora::RefCountInterface

Public Member Functions

virtual int sendMediaPacket (const uint8_t *packet, size_t length, const media::base::PacketOptions &options)=0
 
- Public Member Functions inherited from agora::RefCountInterface
virtual void AddRef () const =0
 
virtual RefCountReleaseStatus Release () const =0
 
virtual bool HasOneRef () const =0
 

Detailed Description

The IMediaPacketSender class.

You can use the IMediaPacketSender class to create a LocalVideoTrack or LocalAudioTrack, and then send media packets directly to the track. The media packets are RTP/UDP packets that contain media payload. If the track is disabled, the packets will be automatically discarded.

Member Function Documentation

◆ sendMediaPacket()

virtual int agora::rtc::IMediaPacketSender::sendMediaPacket ( const uint8_t *  packet,
size_t  length,
const media::base::PacketOptions options 
)
pure virtual

Sends the frame packet to the local track.

Parameters
packetThe pointer to the packet.
lengthThe packet size.
optionsThe packet information: PacketOptions.
Returns
  • true: Success.
  • false: Failure.