1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use Result;
use NalUnit;
use ;
/// A source of H.264 NAL units.
///
/// Implementations produce NAL units from different transports (WebRTC, RTSP,
/// file, etc.) and send them on a broadcast channel until the source is
/// exhausted or a shutdown signal is received.
///
/// # Example
///
/// The JetKVM WebRTC session implements this trait by authenticating with the
/// device, establishing a WebRTC peer connection, depacketizing RTP packets
/// into NAL units, and forwarding them to `nal_tx`.