From c0d5a7c01acb8fd6098b32b410f8ca3619ef83ce Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Sat, 2 Sep 2023 09:17:38 +0300 Subject: [PATCH] Rename PCM codecs print name --- pkg/core/codec.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkg/core/codec.go b/pkg/core/codec.go index b48b629d..f38d7965 100644 --- a/pkg/core/codec.go +++ b/pkg/core/codec.go @@ -68,12 +68,10 @@ func (c *Codec) PrintName() string { switch c.Name { case CodecAAC: return "AAC" - case CodecELD: - return "AAC-ELD" case CodecPCM: - return "PCM-S16BE" + return "S16B" case CodecPCML: - return "PCM-S16LE" + return "S16L" } return c.Name }