Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Vinod Koul and committed by
Takashi Iwai
40741dd5 b21c60a4

+14
+10
sound/core/Kconfig
··· 155 155 156 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 168 config SND_SUPPORT_OLD_API 159 169 bool "Support old ALSA API" 160 170 default y
+4
sound/core/Makefile
··· 21 21 snd-rtctimer-objs := rtctimer.o 22 22 snd-hwdep-objs := hwdep.o 23 23 24 + snd-compress-objs := compress_offload.o 25 + 24 26 obj-$(CONFIG_SND) += snd.o 25 27 obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o 26 28 obj-$(CONFIG_SND_TIMER) += snd-timer.o ··· 33 31 34 32 obj-$(CONFIG_SND_OSSEMUL) += oss/ 35 33 obj-$(CONFIG_SND_SEQUENCER) += seq/ 34 + 35 + obj-$(CONFIG_SND_COMPRESS_OFFLOAD) += snd-compress.o