diff options
author | Vinod Koul <vinod.koul@linux.intel.com> | 2011-12-23 00:06:40 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-23 04:08:38 -0500 |
commit | 40741dd5c249449449bfb0528d1d26fe6f16a0bf (patch) | |
tree | 0bcd70f7706684bb72436c6e64bdff427047a4fb /sound/core | |
parent | b21c60a4edd22e26fbebe7dd7078349a8cfa7273 (diff) |
ALSA: core: add makefile and kconfig file for compress
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/Kconfig | 10 | ||||
-rw-r--r-- | sound/core/Makefile | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sound/core/Kconfig b/sound/core/Kconfig index 475455c76610..2dc7776e218c 100644 --- a/sound/core/Kconfig +++ b/sound/core/Kconfig | |||
@@ -155,6 +155,16 @@ config SND_DYNAMIC_MINORS | |||
155 | 155 | ||
156 | If you are unsure about this, say N here. | 156 | If you are unsure about this, say N here. |
157 | 157 | ||
158 | config SND_COMPRESS_OFFLOAD | ||
159 | tristate "ALSA Compressed audio offload support" | ||
160 | default n | ||
161 | help | ||
162 | If you want support for offloading compressed audio and have such | ||
163 | a hardware, then you should say Y here and also to the DSP driver | ||
164 | of your platform. | ||
165 | |||
166 | If you are unsure about this, say N here. | ||
167 | |||
158 | config SND_SUPPORT_OLD_API | 168 | config SND_SUPPORT_OLD_API |
159 | bool "Support old ALSA API" | 169 | bool "Support old ALSA API" |
160 | default y | 170 | default y |
diff --git a/sound/core/Makefile b/sound/core/Makefile index 350a08d277f4..67c8e9336611 100644 --- a/sound/core/Makefile +++ b/sound/core/Makefile | |||
@@ -21,6 +21,8 @@ snd-hrtimer-objs := hrtimer.o | |||
21 | snd-rtctimer-objs := rtctimer.o | 21 | snd-rtctimer-objs := rtctimer.o |
22 | snd-hwdep-objs := hwdep.o | 22 | snd-hwdep-objs := hwdep.o |
23 | 23 | ||
24 | snd-compress-objs := compress_offload.o | ||
25 | |||
24 | obj-$(CONFIG_SND) += snd.o | 26 | obj-$(CONFIG_SND) += snd.o |
25 | obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o | 27 | obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o |
26 | obj-$(CONFIG_SND_TIMER) += snd-timer.o | 28 | obj-$(CONFIG_SND_TIMER) += snd-timer.o |
@@ -31,3 +33,5 @@ obj-$(CONFIG_SND_RAWMIDI) += snd-rawmidi.o | |||
31 | 33 | ||
32 | obj-$(CONFIG_SND_OSSEMUL) += oss/ | 34 | obj-$(CONFIG_SND_OSSEMUL) += oss/ |
33 | obj-$(CONFIG_SND_SEQUENCER) += seq/ | 35 | obj-$(CONFIG_SND_SEQUENCER) += seq/ |
36 | |||
37 | obj-$(CONFIG_SND_COMPRESS_OFFLOAD) += snd-compress.o | ||