【voe】channel receive and acm related day reading

  • Every time I look at the various adpaters of owt on the server side, I feel confused.
  • I found out the client webrtc code from three years ago and felt comfortable.
  • Finally I know why the owt adapter is called like this.

ChannelReceiveInterface is required for AudioReceiveStream testing

Insert image description here

RtpPacketSinkInterface

  • RtpPacketSinkInterface : This class represents a receiver of already parsed RTP packets.
    Insert image description here

ChannelReceive takes the rtp packet (already parsed) and rtcp packet from the transmission and processes it in the network thread

AudioReceiveStream 通过 DeliverRtcp (const uint8_t* packet, size_t length) :

Guess you like

Origin blog.csdn.net/commshare/article/details/133248275