From 2f4cd6716253faea1825f18ef838727b7bd52489 Mon Sep 17 00:00:00 2001 From: PioLing <964472638@qq.com> Date: Mon, 11 Dec 2023 16:24:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20getCodecU=20=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E5=80=BC=20=20(#3104)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'g711 getCodecU() 返回值改为 CodecG711U' --- ext-codec/G711.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext-codec/G711.cpp b/ext-codec/G711.cpp index 767cc8ec..e8c05df5 100644 --- a/ext-codec/G711.cpp +++ b/ext-codec/G711.cpp @@ -79,7 +79,7 @@ CodecId getCodecA() { } CodecId getCodecU() { - return CodecG711A; + return CodecG711U; } Track::Ptr getTrackByCodecId_l(CodecId codec, int sample_rate, int channels, int sample_bit) {