From 3ec0e1499f019b05c99690ce8408e0aa07de891d Mon Sep 17 00:00:00 2001 From: Sebastian Jaeckel Date: Wed, 10 May 2023 14:12:16 +0200 Subject: [PATCH] rtp-sap: use correct audio format string for L24 mime --- src/modules/module-rtp-sap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-rtp-sap.c b/src/modules/module-rtp-sap.c index ffa8a27cc..a175687b5 100644 --- a/src/modules/module-rtp-sap.c +++ b/src/modules/module-rtp-sap.c @@ -266,7 +266,7 @@ static const struct format_info audio_format_info[] = { { SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_ALAW, 1, "PCMA", "audio", "ALAW" }, { SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_ULAW, 1, "PCMU", "audio", "ULAW" }, { SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_S16_BE, 2, "L16", "audio", "S16BE" }, - { SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_S24_BE, 3, "L24", "audio", "S16LE" }, + { SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_S24_BE, 3, "L24", "audio", "S24BE" }, { SPA_MEDIA_SUBTYPE_control, 0, 1, "rtp-midi", "midi", NULL }, { SPA_MEDIA_SUBTYPE_opus, 0, 1, "opus", "opus", NULL }, };