streaming

Media streaming and broadcast systems in Go
Log | Files | Refs | README | LICENSE

commit cb4ee3fe5170849010abd352c327f6a7eaa5441f
parent 7d382dc385db1ecdfe2c37b21a782cba8f31cc23
Author: Oliver Lowe <o@olowe.co>
Date:   Thu, 25 Jul 2024 11:05:58 +1000

rtp: add L16 payload type

because uhhhmmm.... we'll do a demo with it

Diffstat:
Mrtp/rtp.go | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/rtp/rtp.go b/rtp/rtp.go @@ -80,6 +80,7 @@ const ( type PayloadType uint8 const ( + PayloadL16 PayloadType = 10 PayloadMP2T PayloadType = 33 // ... )