aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorBradley Conroy <bradley.conroy@gmail.com>2014-08-02 11:49:30 -0500
committerBradley Conroy <bradley.conroy@gmail.com>2014-08-02 11:49:30 -0500
commit732ef894567bf1d98abd88594bd68b8ccf309d72 (patch)
treec1794e4fe5017f185fb7ac5749ddde4333f4171e /toys
parentb4062b0f9d096388c109b135066bcca901ef1dcd (diff)
downloadtoybox-732ef894567bf1d98abd88594bd68b8ccf309d72.tar.gz
mix.c - A very basic mixer.
Diffstat (limited to 'toys')
-rw-r--r--toys/pending/mix.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/toys/pending/mix.c b/toys/pending/mix.c
new file mode 100644
index 00000000..4a51fb9e
--- /dev/null
+++ b/toys/pending/mix.c
@@ -0,0 +1,64 @@
+/* mix.c - A very basic mixer.
+ *
+ * Copyright 2014 Brad Conroy, dedicated to the Public Domain.
+ *
+
+USE_MIX(NEWTOY(mix, "m:d:l#r#", TOYFLAG_USR|TOYFLAG_BIN))
+config MIX
+ bool "mix"
+ default n
+ help
+ usage: mix [-m mixer] [-d device] [-l level / left level] [-r right level]
+
+ Lists/sets mixer devices/levels.
+*/
+
+#define FOR_mix
+#include <linux/soundcard.h>
+#include "toys.h"
+
+
+GLOBALS(
+ int right;
+ int level;
+ char *device;
+ char *mixer;
+)
+
+void mix_main(void)
+{
+ const char *devices[SOUND_MIXER_NRDEVICES] = SOUND_DEVICE_NAMES;
+ char *mixer_name=(toys.optflags & FLAG_m)?TT.mixer:"/dev/mixer";
+ int i, mask, device=-1, level,
+ mixer=xopen(mixer_name, O_RDWR|O_NONBLOCK);
+
+ xioctl(mixer, SOUND_MIXER_READ_DEVMASK,&mask);
+
+ if (!(toys.optflags & FLAG_d)){
+ for (i = 0; i < SOUND_MIXER_NRDEVICES; ++i)
+ if (1<<i & mask) printf("%s\n",devices[i]);
+ return;
+ }else{
+ for (i = 0; i < SOUND_MIXER_NRDEVICES; ++i){
+ if ((1<<i & mask) && !strcmp(devices[i], TT.device)){
+ device=i;
+ break;
+ }
+ }
+ if (-1==device) return; //with error
+ }
+
+ if (!(toys.optflags & FLAG_l)){
+ xioctl(mixer, MIXER_READ(device),&level);
+ if (0xFF < level) printf("%s:%s = left:%d\t right:%d\n", mixer_name,
+ devices[device], level>>8, level & 0xFF);
+ else printf("%s:%s = %d\n",mixer_name, devices[device], level);
+ return;
+ }
+
+ level=TT.level;
+ if (!(toys.optflags & FLAG_r)) level = TT.right | (level<<8);
+
+ xioctl(mixer, MIXER_WRITE(device),&level);
+ close(mixer);
+}