diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-01-04 16:59:13 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-01-05 11:58:27 +0100 |
commit | b8bab04829ab190f71921d4180bda438ba6124ae (patch) | |
tree | d0d66c958b276597fcad450be0966e4329c63ab3 /include/uapi/sound | |
parent | d9afee6904caa7cf3c7f417f02e765db89d2b5dc (diff) | |
download | op-kernel-dev-b8bab04829ab190f71921d4180bda438ba6124ae.zip op-kernel-dev-b8bab04829ab190f71921d4180bda438ba6124ae.tar.gz |
ALSA: compress: update struct snd_codec_desc for sample rate
Now that we don't use SNDRV_PCM_RATE_xxx bit fields for sample rate, we need to
change the description to an array for describing the sample rates supported by
the sink/source
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/uapi/sound')
-rw-r--r-- | include/uapi/sound/compress_params.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/sound/compress_params.h b/include/uapi/sound/compress_params.h index 8c23aeb..b62b24b 100644 --- a/include/uapi/sound/compress_params.h +++ b/include/uapi/sound/compress_params.h @@ -57,6 +57,7 @@ #define MAX_NUM_CODECS 32 #define MAX_NUM_CODEC_DESCRIPTORS 32 #define MAX_NUM_BITRATES 32 +#define MAX_NUM_SAMPLE_RATES 32 /* Codecs are listed linearly to allow for extensibility */ #define SND_AUDIOCODEC_PCM ((__u32) 0x00000001) @@ -346,7 +347,7 @@ union snd_codec_options { struct snd_codec_desc { __u32 max_ch; - __u32 sample_rates; + __u32 sample_rates[MAX_NUM_SAMPLE_RATES]; __u32 bit_rate[MAX_NUM_BITRATES]; __u32 num_bitrates; __u32 rate_control; |