]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
rtp_engine.c: Correct sample rate typo for L16/44100.
authorSean Bright <sean@seanbright.com>
Sun, 28 Jan 2024 16:34:25 +0000 (11:34 -0500)
committerSean Bright <sean@seanbright.com>
Tue, 30 Jan 2024 18:58:05 +0000 (18:58 +0000)
Fixes #555

main/rtp_engine.c

index 1b8e9c51ea091d1dd7739809b82940565b8903fb..07224da11661fe3f8526200fc830e60a492c51c6 100644 (file)
@@ -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);