dvb-pes 0.1.2

DEPRECATED — renamed to `mpeg-pes`. PES depacketization + PTS/DTS, ISO/IEC 13818-1 §2.4.3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# dvb-pes (DEPRECATED)

This crate has been renamed to [`mpeg-pes`](https://crates.io/crates/mpeg-pes).

PES (Packetized Elementary Stream) depacketization + PTS/DTS is an ISO/IEC 13818-1
standard, not DVB-specific, so the crate was renamed accordingly.

**Please update your dependency:**

```toml
# Before:
dvb-pes = "0.1"

# After:
mpeg-pes = "0.1"
```

Replace all `dvb_pes::` references with `mpeg_pes::` in your source code.