summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4775ff4b99988a94628561d022c01c0cd3abeaca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: c
compiler:
  - gcc
  - clang
sudo: false

addons:
  apt:
    packages:
    - libnl-3-dev
    - libnl-genl-3-dev
    - libnl-route-3-dev
    - libnetfilter-conntrack-dev
    - libgeoip-dev
    - liburcu-dev
    - libpcap-dev
    - libnet1-dev
    - libcli-dev

script: CC=$CC ./configure && make CC=$CC
;'>
authorLars-Peter Clausen <lars@metafoo.de>2014-11-19 18:29:06 +0100
committerMark Brown <broonie@kernel.org>2014-11-20 09:55:34 +0000
commita35daac77a0397d4f23b642d3dc0684682e56cc5 (patch)
tree6d6bb121b1e7491b26987492a4e11ee4a67ac321 /sound/soc/codecs/sigmadsp.c
parentd48b088e3ec45eeccf0fce0b75378e41428f47e9 (diff)
ASoC: sigmadsp: Add support for fw v2
This patch adds support for the v2 version of the SigmaDSP firmware file format. The new format has support for having different program and parameter settings for different samplerates. In addition it stores metadata describing the firmware. This metadata includes the set of supported samplerates which will be used to restrict the samplerates that can be selected by userspace. Also included is information about the modifiable parameters. Those will be exposed as ALSA controls so they can be changed at runtime. The new format is based on a binary type-length-value structure that makes it both forward and backwards compatible. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/sigmadsp.c')