projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[xburst] jzcodec: Only support 16bit formats for now
[openwrt.git]
/
target
/
linux
/
xburst
/
files-2.6.32
/
sound
/
soc
/
codecs
/
jzcodec.c
diff --git
a/target/linux/xburst/files-2.6.32/sound/soc/codecs/jzcodec.c
b/target/linux/xburst/files-2.6.32/sound/soc/codecs/jzcodec.c
index
fced017
..
5d8020c
100644
(file)
--- a/
target/linux/xburst/files-2.6.32/sound/soc/codecs/jzcodec.c
+++ b/
target/linux/xburst/files-2.6.32/sound/soc/codecs/jzcodec.c
@@
-267,17
+267,14
@@
struct snd_soc_dai jz_codec_dai = {
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_8000_44100,
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_8000_44100,
- .formats = SNDRV_PCM_FMTBIT_S18_3LE |
- SNDRV_PCM_FMTBIT_S16_LE |
- SNDRV_PCM_FMTBIT_S8,
+ .formats = SNDRV_PCM_FMTBIT_S16_LE,
},
.capture = {
.stream_name = "Capture",
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_8000_44100,
},
.capture = {
.stream_name = "Capture",
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_8000_44100,
- .formats = SNDRV_PCM_FMTBIT_S16_LE |
- SNDRV_PCM_FMTBIT_S8,
+ .formats = SNDRV_PCM_FMTBIT_S16_LE,
},
.ops = &jz_codec_dai_ops,
.symmetric_rates = 1,
},
.ops = &jz_codec_dai_ops,
.symmetric_rates = 1,
This page took
0.022936 seconds
and
4
git commands to generate.