From ba8050f66f8adeb75bf65367c06f71ba5b146515 Mon Sep 17 00:00:00 2001 From: Trek H Date: Tue, 22 Dec 2020 13:05:11 +1030 Subject: [PATCH] pes: PCM is SID 192, ADPCM 193 --- container/mts/pes/helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/mts/pes/helpers.go b/container/mts/pes/helpers.go index e41a4ab7..60cff2cd 100644 --- a/container/mts/pes/helpers.go +++ b/container/mts/pes/helpers.go @@ -31,8 +31,8 @@ const ( H264SID = 27 H265SID = 36 MJPEGSID = 28 - PCMSID = 191 - ADPCMSID = 192 + PCMSID = 192 + ADPCMSID = 193 ) // SIDToMIMEType will return the corresponding MIME type for passed stream ID.