TrackLocalWriter is the Writer for outbound RTP Packets.
| 10 | |
| 11 | // TrackLocalWriter is the Writer for outbound RTP Packets. |
| 12 | type TrackLocalWriter interface { |
| 13 | // WriteRTP encrypts a RTP packet and writes to the connection |
| 14 | WriteRTP(header *rtp.Header, payload []byte) (int, error) |
| 15 | |
| 16 | // Write encrypts and writes a full RTP packet |
| 17 | Write(b []byte) (int, error) |
| 18 | } |
| 19 | |
| 20 | // TrackLocalContext is the Context passed when a TrackLocal has been Binded/Unbinded from a PeerConnection, and used |
| 21 | // in Interceptors. |
no outgoing calls
no test coverage detected
searching dependent graphs…