1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 22:25:33 +03:00

[xburst] jzcodec: Enable support for S8 format

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21615 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars 2010-05-29 00:06:59 +00:00
parent d30cb85c0d
commit 8ca0d66767

View File

@ -1,6 +1,6 @@
From 3ff79323c50cc67df122c8f02670ff5483ea7ebc Mon Sep 17 00:00:00 2001 From 075550fa667fca846d1217f649438df5cb4f9529 Mon Sep 17 00:00:00 2001
From: Lars-Peter Clausen <lars@metafoo.de> From: Lars-Peter Clausen <lars@metafoo.de>
Date: Sat, 24 Apr 2010 12:32:57 +0200 Date: Fri, 28 May 2010 19:53:05 +0200
Subject: [PATCH] Add jz4740 codec driver Subject: [PATCH] Add jz4740 codec driver
--- ---
@ -52,7 +52,7 @@ index dd5ce6d..3f6ce05 100644
obj-$(CONFIG_SND_SOC_MAX9877) += snd-soc-max9877.o obj-$(CONFIG_SND_SOC_MAX9877) += snd-soc-max9877.o
diff --git a/sound/soc/codecs/jzcodec.c b/sound/soc/codecs/jzcodec.c diff --git a/sound/soc/codecs/jzcodec.c b/sound/soc/codecs/jzcodec.c
new file mode 100644 new file mode 100644
index 0000000..f960d46 index 0000000..91720fa
--- /dev/null --- /dev/null
+++ b/sound/soc/codecs/jzcodec.c +++ b/sound/soc/codecs/jzcodec.c
@@ -0,0 +1,513 @@ @@ -0,0 +1,513 @@
@ -325,15 +325,15 @@ index 0000000..f960d46
+ .stream_name = "Playback", + .stream_name = "Playback",
+ .channels_min = 2, + .channels_min = 2,
+ .channels_max = 2, + .channels_max = 2,
+ .rates = SNDRV_PCM_RATE_8000_44100, + .rates = SNDRV_PCM_RATE_8000_48000,
+ .formats = SNDRV_PCM_FMTBIT_S16_LE, + .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
+ }, + },
+ .capture = { + .capture = {
+ .stream_name = "Capture", + .stream_name = "Capture",
+ .channels_min = 2, + .channels_min = 2,
+ .channels_max = 2, + .channels_max = 2,
+ .rates = SNDRV_PCM_RATE_8000_44100, + .rates = SNDRV_PCM_RATE_8000_48000,
+ .formats = SNDRV_PCM_FMTBIT_S16_LE, + .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
+ }, + },
+ .ops = &jz_codec_dai_ops, + .ops = &jz_codec_dai_ops,
+ .symmetric_rates = 1, + .symmetric_rates = 1,