From: Vinod Koul Date: Thu, 19 Jun 2014 09:27:59 +0000 (+0530) Subject: tinycompress: update compress headers for sample rate field X-Git-Tag: v1.1.0~18 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=137ff79efd8c89ae9c9a1a030b2de0ed9302b489;p=tinycompress.git tinycompress: update compress headers for sample rate field commit "929559b: ALSA: compress: add num_sample_rates in snd_codec_desc" adds array for passing sample rate instead of bit map. Update the local header as well Signed-off-by: Vinod Koul --- diff --git a/include/sound/compress_params.h b/include/sound/compress_params.h index deda425..378417a 100644 --- a/include/sound/compress_params.h +++ b/include/sound/compress_params.h @@ -23,6 +23,7 @@ #define MAX_NUM_CODECS 32 #define MAX_NUM_CODEC_DESCRIPTORS 32 #define MAX_NUM_BITRATES 32 +#define MAX_NUM_SAMPLE_RATES 32 #define SND_AUDIOCODEC_PCM ((__u32) 0x00000001) #define SND_AUDIOCODEC_MP3 ((__u32) 0x00000002) @@ -209,7 +210,8 @@ union snd_codec_options { struct snd_codec_desc { __u32 max_ch; - __u32 sample_rates; + __u32 sample_rates[MAX_NUM_SAMPLE_RATES]; + __u32 num_sample_rates; __u32 bit_rate[MAX_NUM_BITRATES]; __u32 num_bitrates; __u32 rate_control;