修正 getCodecU 返回值 (#3104)

'g711 getCodecU() 返回值改为 CodecG711U'
This commit is contained in:
PioLing 2023-12-11 16:24:54 +08:00 committed by GitHub
parent 33f860fd04
commit 2f4cd67162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {