Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
7ac03db8
Commit
7ac03db8
authored
Aug 18, 2010
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/aloop' into topic/misc
parents
6ab561c8
597603d6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1076 additions
and
0 deletions
+1076
-0
sound/drivers/Kconfig
sound/drivers/Kconfig
+19
-0
sound/drivers/Makefile
sound/drivers/Makefile
+2
-0
sound/drivers/aloop.c
sound/drivers/aloop.c
+1055
-0
No files found.
sound/drivers/Kconfig
View file @
7ac03db8
...
...
@@ -74,6 +74,25 @@ config SND_DUMMY
To compile this driver as a module, choose M here: the module
will be called snd-dummy.
config SND_ALOOP
tristate "Generic loopback driver (PCM)"
select SND_PCM
help
Say 'Y' or 'M' to include support for the PCM loopback device.
This module returns played samples back to the user space using
the standard ALSA PCM device. The devices are routed 0->1 and
1->0, where first number is the playback PCM device and second
number is the capture device. Module creates two PCM devices and
configured number of substreams (see the pcm_substreams module
parameter).
The looback device allow time sychronization with an external
timing source using the time shift universal control (+-20%
of system time).
To compile this driver as a module, choose M here: the module
will be called snd-aloop.
config SND_VIRMIDI
tristate "Virtual MIDI soundcard"
depends on SND_SEQUENCER
...
...
sound/drivers/Makefile
View file @
7ac03db8
...
...
@@ -4,6 +4,7 @@
#
snd-dummy-objs
:=
dummy.o
snd-aloop-objs
:=
aloop.o
snd-mtpav-objs
:=
mtpav.o
snd-mts64-objs
:=
mts64.o
snd-portman2x4-objs
:=
portman2x4.o
...
...
@@ -13,6 +14,7 @@ snd-ml403-ac97cr-objs := ml403-ac97cr.o pcm-indirect2.o
# Toplevel Module Dependency
obj-$(CONFIG_SND_DUMMY)
+=
snd-dummy.o
obj-$(CONFIG_SND_ALOOP)
+=
snd-aloop.o
obj-$(CONFIG_SND_VIRMIDI)
+=
snd-virmidi.o
obj-$(CONFIG_SND_SERIAL_U16550)
+=
snd-serial-u16550.o
obj-$(CONFIG_SND_MTPAV)
+=
snd-mtpav.o
...
...
sound/drivers/aloop.c
0 → 100644
View file @
7ac03db8
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment