From 85cec8b0bc69faa2b292058afcc7d8976b4f7474 Mon Sep 17 00:00:00 2001 From: PioLing <964472638@qq.com> Date: Mon, 11 Dec 2023 14:23:12 +0800 Subject: [PATCH] Update G711.cpp 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) {