rtc-media 0.8.5

RTC Media in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[test]
fn test_h26x_reader_h264() {
    // TODO: Add tests for H26xReader with H264
    // This would require:
    // 1. Sample H264 Annex B data
    // 2. Expected NAL units
    // 3. Verification of correct parsing
}

#[test]
fn test_h26x_reader_h265() {
    // TODO: Add tests for H26xReader with H265
    // This would require:
    // 1. Sample H265 Annex B data
    // 2. Expected NAL units
    // 3. Verification of correct parsing
}