Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F133057519
D50167.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
D50167.diff
View Options
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile
--- a/usr.sbin/Makefile
+++ b/usr.sbin/Makefile
@@ -2,7 +2,6 @@
SUBDIR= adduser \
arp \
- audio \
binmiscctl \
boottrace \
bsdconfig \
@@ -84,6 +83,7 @@
setpmac \
smbmsg \
snapinfo \
+ sndctl \
spi \
spray \
syslogd \
diff --git a/usr.sbin/audio/Makefile b/usr.sbin/sndctl/Makefile
rename from usr.sbin/audio/Makefile
rename to usr.sbin/sndctl/Makefile
--- a/usr.sbin/audio/Makefile
+++ b/usr.sbin/sndctl/Makefile
@@ -1,6 +1,6 @@
.include <src.opts.mk>
-PROG= audio
+PROG= sndctl
SRCS= ${PROG}.c
MAN= ${PROG}.8
LDFLAGS+= -lnv -lmixer
diff --git a/usr.sbin/audio/audio.8 b/usr.sbin/sndctl/sndctl.8
rename from usr.sbin/audio/audio.8
rename to usr.sbin/sndctl/sndctl.8
--- a/usr.sbin/audio/audio.8
+++ b/usr.sbin/sndctl/sndctl.8
@@ -28,10 +28,10 @@
.\" SUCH DAMAGE.
.\"
.Dd May 5, 2025
-.Dt AUDIO 8
+.Dt SNDCTL 8
.Os
.Sh NAME
-.Nm audio
+.Nm sndctl
.Nd list and modify soundcard properties
.Sh SYNOPSIS
.Nm
@@ -149,28 +149,28 @@
Disable auto-conversions and enable realtime mode to get as low latencies as
possible:
.Bd -literal -offset indent
-$ audio autoconv=0 realtime=1
+$ sndctl autoconv=0 realtime=1
.Ed
.Pp
Set the playback sample format to 2-channel signed 24-bit low endian, and sample
rate to 48000 Hz:
.Bd -literal -offset indent
-$ audio play.format=s24le:2.0 play.rate=48000
+$ sndctl play.format=s24le:2.0 play.rate=48000
.Ed
.Pp
List the PIDs and process names of all channels for
.Pa /dev/dsp1 :
.Bd -literal -offset indent
-$ audio -f /dev/dsp1 pid proc
+$ sndctl -f /dev/dsp1 pid proc
.Ed
.Pp
Dump
.Pa /dev/dsp0
information to a file and retrieve back later:
.Bd -literal -offset indent
-$ audio -f /dev/dsp0 -o > info
+$ sndctl -f /dev/dsp0 -o > info
\&...
-$ audio -f /dev/dsp0 `cat info`
+$ sndctl -f /dev/dsp0 `cat info`
.Ed
.Sh SEE ALSO
.Xr sndstat 4 ,
diff --git a/usr.sbin/audio/audio.c b/usr.sbin/sndctl/sndctl.c
rename from usr.sbin/audio/audio.c
rename to usr.sbin/sndctl/sndctl.c
--- a/usr.sbin/audio/audio.c
+++ b/usr.sbin/sndctl/sndctl.c
@@ -50,7 +50,7 @@
#define STATUS_LEN 64
#define FMTSTR_LEN 16
-struct audio_chan {
+struct snd_chan {
char name[NAME_MAX];
char parentchan[NAME_MAX];
int unit;
@@ -78,11 +78,11 @@
int ready;
} hwbuf, swbuf;
char feederchain[BUFSIZ];
- struct audio_dev *dev;
- TAILQ_ENTRY(audio_chan) next;
+ struct snd_dev *dev;
+ TAILQ_ENTRY(snd_chan) next;
};
-struct audio_dev {
+struct snd_dev {
char name[NAME_MAX];
char desc[NAME_MAX];
char status[BUFSIZ];
@@ -104,10 +104,10 @@
int max_chans;
char formats[BUFSIZ];
} play, rec;
- TAILQ_HEAD(, audio_chan) chans;
+ TAILQ_HEAD(, snd_chan) chans;
};
-struct audio_ctl {
+struct snd_ctl {
const char *name;
size_t off;
#define STR 0
@@ -115,7 +115,7 @@
#define VOL 2
#define GRP 3
int type;
- int (*mod)(struct audio_dev *, void *);
+ int (*mod)(struct snd_dev *, void *);
};
struct map {
@@ -123,18 +123,18 @@
const char *str;
};
-static int mod_bitperfect(struct audio_dev *, void *);
-static int mod_autoconv(struct audio_dev *, void *);
-static int mod_realtime(struct audio_dev *, void *);
-static int mod_play_vchans(struct audio_dev *, void *);
-static int mod_play_rate(struct audio_dev *, void *);
-static int mod_play_format(struct audio_dev *, void *);
-static int mod_rec_vchans(struct audio_dev *, void *);
-static int mod_rec_rate(struct audio_dev *, void *);
-static int mod_rec_format(struct audio_dev *, void *);
-
-static struct audio_ctl dev_ctls[] = {
-#define F(member) offsetof(struct audio_dev, member)
+static int mod_bitperfect(struct snd_dev *, void *);
+static int mod_autoconv(struct snd_dev *, void *);
+static int mod_realtime(struct snd_dev *, void *);
+static int mod_play_vchans(struct snd_dev *, void *);
+static int mod_play_rate(struct snd_dev *, void *);
+static int mod_play_format(struct snd_dev *, void *);
+static int mod_rec_vchans(struct snd_dev *, void *);
+static int mod_rec_rate(struct snd_dev *, void *);
+static int mod_rec_format(struct snd_dev *, void *);
+
+static struct snd_ctl dev_ctls[] = {
+#define F(member) offsetof(struct snd_dev, member)
{ "name", F(name), STR, NULL },
{ "desc", F(desc), STR, NULL },
{ "status", F(status), STR, NULL },
@@ -169,8 +169,8 @@
#undef F
};
-static struct audio_ctl chan_ctls[] = {
-#define F(member) offsetof(struct audio_chan, member)
+static struct snd_ctl chan_ctls[] = {
+#define F(member) offsetof(struct snd_chan, member)
/*{ "name", F(name), STR, NULL },*/
{ "parentchan", F(parentchan), STR, NULL },
{ "unit", F(unit), NUM, NULL },
@@ -333,15 +333,15 @@
return (bytes / (samplesz * ch));
}
-static struct audio_dev *
+static struct snd_dev *
read_dev(char *path)
{
nvlist_t *nvl;
const nvlist_t * const *di;
const nvlist_t * const *cdi;
struct sndstioc_nv_arg arg;
- struct audio_dev *dp = NULL;
- struct audio_chan *ch;
+ struct snd_dev *dp = NULL;
+ struct snd_chan *ch;
size_t nitems, nchans, i, j;
int fd, caps, unit;
@@ -389,7 +389,7 @@
#define NV(type, item) \
nvlist_get_ ## type (di[i], SNDST_DSPS_ ## item)
- if ((dp = calloc(1, sizeof(struct audio_dev))) == NULL)
+ if ((dp = calloc(1, sizeof(struct snd_dev))) == NULL)
err(1, "calloc");
dp->unit = -1;
@@ -469,7 +469,7 @@
for (j = 0; j < nchans; j++) {
#define NV(type, item) \
nvlist_get_ ## type (cdi[j], SNDST_DSPS_SOUND4_CHAN_ ## item)
- if ((ch = calloc(1, sizeof(struct audio_chan))) == NULL)
+ if ((ch = calloc(1, sizeof(struct snd_chan))) == NULL)
err(1, "calloc");
strlcpy(ch->name, NV(string, NAME), sizeof(ch->name));
@@ -538,9 +538,9 @@
}
static void
-free_dev(struct audio_dev *dp)
+free_dev(struct snd_dev *dp)
{
- struct audio_chan *ch;
+ struct snd_chan *ch;
while (!TAILQ_EMPTY(&dp->chans)) {
ch = TAILQ_FIRST(&dp->chans);
@@ -551,10 +551,10 @@
}
static void
-print_dev_ctl(struct audio_dev *dp, struct audio_ctl *ctl, bool simple,
+print_dev_ctl(struct snd_dev *dp, struct snd_ctl *ctl, bool simple,
bool showgrp)
{
- struct audio_ctl *cp;
+ struct snd_ctl *cp;
size_t len;
if (ctl->type != GRP) {
@@ -587,10 +587,10 @@
}
static void
-print_chan_ctl(struct audio_chan *ch, struct audio_ctl *ctl, bool simple,
+print_chan_ctl(struct snd_chan *ch, struct snd_ctl *ctl, bool simple,
bool showgrp)
{
- struct audio_ctl *cp;
+ struct snd_ctl *cp;
size_t len;
int v;
@@ -627,10 +627,10 @@
}
static void
-print_dev(struct audio_dev *dp)
+print_dev(struct snd_dev *dp)
{
- struct audio_chan *ch;
- struct audio_ctl *ctl;
+ struct snd_chan *ch;
+ struct snd_ctl *ctl;
if (!oflag) {
printf("%s: <%s> %s", dp->name, dp->desc, dp->status);
@@ -739,7 +739,7 @@
}
static int
-mod_bitperfect(struct audio_dev *dp, void *arg)
+mod_bitperfect(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -752,7 +752,7 @@
}
static int
-mod_autoconv(struct audio_dev *dp, void *arg)
+mod_autoconv(struct snd_dev *dp, void *arg)
{
const char *val = arg;
const char *zero = "0";
@@ -780,7 +780,7 @@
}
static int
-mod_realtime(struct audio_dev *dp, void *arg)
+mod_realtime(struct snd_dev *dp, void *arg)
{
const char *val = arg;
int rc = -1;
@@ -807,7 +807,7 @@
}
static int
-mod_play_vchans(struct audio_dev *dp, void *arg)
+mod_play_vchans(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -820,7 +820,7 @@
}
static int
-mod_play_rate(struct audio_dev *dp, void *arg)
+mod_play_rate(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -835,7 +835,7 @@
}
static int
-mod_play_format(struct audio_dev *dp, void *arg)
+mod_play_format(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -850,7 +850,7 @@
}
static int
-mod_rec_vchans(struct audio_dev *dp, void *arg)
+mod_rec_vchans(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -863,7 +863,7 @@
}
static int
-mod_rec_rate(struct audio_dev *dp, void *arg)
+mod_rec_rate(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -878,7 +878,7 @@
}
static int
-mod_rec_format(struct audio_dev *dp, void *arg)
+mod_rec_format(struct snd_dev *dp, void *arg)
{
char buf[64];
@@ -903,9 +903,9 @@
int
main(int argc, char *argv[])
{
- struct audio_dev *dp;
- struct audio_chan *ch;
- struct audio_ctl *ctl;
+ struct snd_dev *dp;
+ struct snd_chan *ch;
+ struct snd_ctl *ctl;
char *path = NULL;
char *s, *propstr;
bool show = true, found;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Oct 23, 1:18 PM (16 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24092236
Default Alt Text
D50167.diff (8 KB)
Attached To
Mode
D50167: Rename audio(8) to sndctl(8)
Attached
Detach File
Event Timeline
Log In to Comment