mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
module-rtp: fix L24 sample size
This commit is contained in:
parent
5b2df0b35c
commit
4a41a03f5c
2 changed files with 2 additions and 2 deletions
|
|
@ -174,7 +174,7 @@ static const struct format_info {
|
|||
{ SPA_AUDIO_FORMAT_ALAW, 1, "PCMA" },
|
||||
{ SPA_AUDIO_FORMAT_ULAW, 1, "PCMU" },
|
||||
{ SPA_AUDIO_FORMAT_S16_BE, 2, "L16" },
|
||||
{ SPA_AUDIO_FORMAT_S24_BE, 2, "L24" },
|
||||
{ SPA_AUDIO_FORMAT_S24_BE, 3, "L24" },
|
||||
};
|
||||
|
||||
static const struct format_info *find_format_info(uint32_t format)
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ static const struct format_info {
|
|||
{ SPA_AUDIO_FORMAT_ALAW, 1, "PCMA" },
|
||||
{ SPA_AUDIO_FORMAT_ULAW, 1, "PCMU" },
|
||||
{ SPA_AUDIO_FORMAT_S16_BE, 2, "L16" },
|
||||
{ SPA_AUDIO_FORMAT_S24_BE, 2, "L24" },
|
||||
{ SPA_AUDIO_FORMAT_S24_BE, 3, "L24" },
|
||||
};
|
||||
|
||||
static const struct format_info *find_format_info(const char *mime)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue