git: 65b472e58cd5 - stable/14 - sound: Add AFMT_FLOAT to feed_volume_info_tab
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 12 Jun 2025 00:47:12 UTC
The branch stable/14 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=65b472e58cd516b58d8cf9d4ec4f4072e0201cbd
commit 65b472e58cd516b58d8cf9d4ec4f4072e0201cbd
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2025-06-11 17:10:54 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2025-06-12 00:47:07 +0000
sound: Add AFMT_FLOAT to feed_volume_info_tab
Fixes: e1bbaa71d62c ("sound: Implement AFMT_FLOAT support")
Reported by: bz
Sponsored by: The FreeBSD Foundation
MFC after: 1 day
Reviewed by: bz
Differential Revision: https://reviews.freebsd.org/D50793
(cherry picked from commit 4a7b8cd7057f0c37b4fc4b47b0ef3ec8402b0eb9)
---
sys/dev/sound/pcm/feeder_volume.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys/dev/sound/pcm/feeder_volume.c b/sys/dev/sound/pcm/feeder_volume.c
index 2d35bb56ef8f..ddcbf29804f3 100644
--- a/sys/dev/sound/pcm/feeder_volume.c
+++ b/sys/dev/sound/pcm/feeder_volume.c
@@ -133,7 +133,9 @@ static const struct {
FEEDVOLUME_ENTRY(U, 32, LE),
FEEDVOLUME_ENTRY(U, 16, BE),
FEEDVOLUME_ENTRY(U, 24, BE),
- FEEDVOLUME_ENTRY(U, 32, BE)
+ FEEDVOLUME_ENTRY(U, 32, BE),
+ FEEDVOLUME_ENTRY(F, 32, LE),
+ FEEDVOLUME_ENTRY(F, 32, BE),
#endif
};