From: Sean Bright Date: Sun, 28 Jan 2024 16:34:25 +0000 (-0500) Subject: rtp_engine.c: Correct sample rate typo for L16/44100. X-Git-Tag: 18.22.0-rc1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9954a3160ebf894f43d05e1b13d93d6366246f1f;p=thirdparty%2Fasterisk.git rtp_engine.c: Correct sample rate typo for L16/44100. Fixes #555 (cherry picked from commit 0defd65e63fa5a2509ac67d96789dc08cc2217f4) --- diff --git a/main/rtp_engine.c b/main/rtp_engine.c index d36f70ce05..4d3933654f 100644 --- a/main/rtp_engine.c +++ b/main/rtp_engine.c @@ -3685,7 +3685,7 @@ int ast_rtp_engine_init(void) set_next_mime_type(ast_format_slin12, 0, "audio", "L16", 12000); set_next_mime_type(ast_format_slin24, 0, "audio", "L16", 24000); set_next_mime_type(ast_format_slin32, 0, "audio", "L16", 32000); - set_next_mime_type(ast_format_slin44, 0, "audio", "L16", 44000); + set_next_mime_type(ast_format_slin44, 0, "audio", "L16", 44100); set_next_mime_type(ast_format_slin48, 0, "audio", "L16", 48000); set_next_mime_type(ast_format_slin96, 0, "audio", "L16", 96000); set_next_mime_type(ast_format_slin192, 0, "audio", "L16", 192000);