Displaying 5 results from an estimated 5 matches for "ipc_perm".
2005 Nov 12
0
alsa asound.conf or .asoundrc that combines multiple playback and capture
..."aplay --nonblock test.wav" having at least 2 active one time
and at that same time do "arecord --nonblock -d 1 input.wav"
I have something like:
pcm.!dmixer {
type dmix # plugin type
ipc_key 5678293 # unique ipc id
ipc_perm 0666 # would like to use icp_group
instead
ipc_key_add_uid no # share the same mixer with all
users
slave {
pcm "hw:0,0"
period_time 0 # needed by oss (= 0)
period_size 1024 #...
2008 May 14
2
Surround 6ch sound on Wine?
..., 6 channel sounds mixing software.
On Ubuntu 8.04 and Wine i get only stereo output.
I've tried to do this .asoundrc for "force" use on Wine, of 6channels and I don't get any sound.
Code:
pcm.!default {
type dmix
ipc_key 1024
ipc_key_add_uid false # let multiple users share
ipc_perm 0660 # IPC permissions (octal, default 0600)
slave {
pcm "hw:0,0" # see below
rate 48000
channels 6
period_time 0
period_size 1024
buffer_time 0
buffer_size 4096
}
}
pcm.asym51 {
type asym
playback.pcm "dmixs51"
capture.pcm &quo...
2016 Dec 20
1
Audio in Windows 10 VM is distorted. Using ALSA.
...asym
playback.pcm {
# See plugin:dmix at http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html
type dmix
# Don't block other users, e.g. the Timidity midi-player daemon
# http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html
ipc_key_add_uid false
ipc_key 1025
ipc_perm 0660
ipc_gid audio
# Don't put the rate here! Otherwise it resets the rate & channels set below, as shown by: cat /proc/asound/card0/pcm0p/sub0/hw_params
slave {
# 2 for stereo, 6 for surround51, 8 for surround71
channels 2
pcm {
format S16_LE
#format S32_LE
#r...
2016 Dec 21
1
Re: Audio in Windows 10 VM is distorted. Using ALSA.
...dmix
>
> # Don't block other users, e.g. the Timidity midi-player
> daemon
> # http://www.alsa-project.org/
> alsa-doc/alsa-lib/pcm_plugins.html
> ipc_key_add_uid false
>
> ipc_key 1025
> ipc_perm 0660
> ipc_gid audio
>
> # Don't put the rate here! Otherwise it resets the rate &
> channels set below, as shown by: cat /proc/asound/card0/pcm0p/sub0/
> hw_params
> slave {
> # 2 for stereo, 6 fo...
2003 Dec 01
0
No subject
....c
samba-2.2.1a-qnx/source/profile/profile.c
--- samba-2.2.1a/source/profile/profile.c Fri Jul 6 04:01:48 2001
+++ samba-2.2.1a-qnx/source/profile/profile.c Sat Jul 28 21:16:14 2001
@@ -21,7 +21,7 @@
*/
#include "includes.h"
-
+#ifdef HAVE_SYS_SHM_H
extern int DEBUGLEVEL;
#define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6))
@@ -157,4 +157,4 @@
message_register(MSG_REQ_PROFILELEVEL, reqprofile_message);
return True;
}
-
+#endif /* HAVE_SYS_SHM_H */
----------------------------------------------------
(6) uint?
It appears that the "uint" macro is...