streaming

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

commit 10c716ceab2f4541c398aa228af294a6eeff9edc
parent b08e03a4cf127fa9a157c23a139c271cfcb1042a
Author: Oliver Lowe <o@olowe.co>
Date:   Fri,  2 Aug 2024 21:21:27 +1000

rtp: add both correct 16-bit linear PCM audio payload types

Diffstat:
Mrtp/rtp.go | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

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