1 #ifndef __SOUND_PCM_PARAMS_H
2 #define __SOUND_PCM_PARAMS_H
6 * Copyright (c) by Abramo Bagnara <abramo@alsa-project.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <sound/pcm.h>
27 int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
28 struct snd_pcm_hw_params *params,
29 snd_pcm_hw_param_t var, int *dir);
30 int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
31 struct snd_pcm_hw_params *params,
32 snd_pcm_hw_param_t var, int *dir);
33 int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
34 snd_pcm_hw_param_t var, int *dir);
36 #define SNDRV_MASK_BITS 64 /* we use so far 64bits only */
37 #define SNDRV_MASK_SIZE (SNDRV_MASK_BITS / 32)
38 #define MASK_OFS(i) ((i) >> 5)
39 #define MASK_BIT(i) (1U << ((i) & 31))
41 static inline size_t snd_mask_sizeof(void)
43 return sizeof(struct snd_mask);
46 static inline void snd_mask_none(struct snd_mask *mask)
48 memset(mask, 0, sizeof(*mask));
51 static inline void snd_mask_any(struct snd_mask *mask)
53 memset(mask, 0xff, SNDRV_MASK_SIZE * sizeof(u_int32_t));
56 static inline int snd_mask_empty(const struct snd_mask *mask)
59 for (i = 0; i < SNDRV_MASK_SIZE; i++)
65 static inline unsigned int snd_mask_min(const struct snd_mask *mask)
68 for (i = 0; i < SNDRV_MASK_SIZE; i++) {
70 return __ffs(mask->bits[i]) + (i << 5);
75 static inline unsigned int snd_mask_max(const struct snd_mask *mask)
78 for (i = SNDRV_MASK_SIZE - 1; i >= 0; i--) {
80 return __fls(mask->bits[i]) + (i << 5);
85 static inline void snd_mask_set(struct snd_mask *mask, unsigned int val)
87 mask->bits[MASK_OFS(val)] |= MASK_BIT(val);
90 static inline void snd_mask_reset(struct snd_mask *mask, unsigned int val)
92 mask->bits[MASK_OFS(val)] &= ~MASK_BIT(val);
95 static inline void snd_mask_set_range(struct snd_mask *mask,
96 unsigned int from, unsigned int to)
99 for (i = from; i <= to; i++)
100 mask->bits[MASK_OFS(i)] |= MASK_BIT(i);
103 static inline void snd_mask_reset_range(struct snd_mask *mask,
104 unsigned int from, unsigned int to)
107 for (i = from; i <= to; i++)
108 mask->bits[MASK_OFS(i)] &= ~MASK_BIT(i);
111 static inline void snd_mask_leave(struct snd_mask *mask, unsigned int val)
114 v = mask->bits[MASK_OFS(val)] & MASK_BIT(val);
116 mask->bits[MASK_OFS(val)] = v;
119 static inline void snd_mask_intersect(struct snd_mask *mask,
120 const struct snd_mask *v)
123 for (i = 0; i < SNDRV_MASK_SIZE; i++)
124 mask->bits[i] &= v->bits[i];
127 static inline int snd_mask_eq(const struct snd_mask *mask,
128 const struct snd_mask *v)
130 return ! memcmp(mask, v, SNDRV_MASK_SIZE * sizeof(u_int32_t));
133 static inline void snd_mask_copy(struct snd_mask *mask,
134 const struct snd_mask *v)
139 static inline int snd_mask_test(const struct snd_mask *mask, unsigned int val)
141 return mask->bits[MASK_OFS(val)] & MASK_BIT(val);
144 static inline int snd_mask_single(const struct snd_mask *mask)
147 for (i = 0; i < SNDRV_MASK_SIZE; i++) {
150 if (mask->bits[i] & (mask->bits[i] - 1))
159 static inline int snd_mask_refine(struct snd_mask *mask,
160 const struct snd_mask *v)
163 snd_mask_copy(&old, mask);
164 snd_mask_intersect(mask, v);
165 if (snd_mask_empty(mask))
167 return !snd_mask_eq(mask, &old);
170 static inline int snd_mask_refine_first(struct snd_mask *mask)
172 if (snd_mask_single(mask))
174 snd_mask_leave(mask, snd_mask_min(mask));
178 static inline int snd_mask_refine_last(struct snd_mask *mask)
180 if (snd_mask_single(mask))
182 snd_mask_leave(mask, snd_mask_max(mask));
186 static inline int snd_mask_refine_min(struct snd_mask *mask, unsigned int val)
188 if (snd_mask_min(mask) >= val)
190 snd_mask_reset_range(mask, 0, val - 1);
191 if (snd_mask_empty(mask))
196 static inline int snd_mask_refine_max(struct snd_mask *mask, unsigned int val)
198 if (snd_mask_max(mask) <= val)
200 snd_mask_reset_range(mask, val + 1, SNDRV_MASK_BITS);
201 if (snd_mask_empty(mask))
206 static inline int snd_mask_refine_set(struct snd_mask *mask, unsigned int val)
209 changed = !snd_mask_single(mask);
210 snd_mask_leave(mask, val);
211 if (snd_mask_empty(mask))
216 static inline int snd_mask_value(const struct snd_mask *mask)
218 return snd_mask_min(mask);
221 static inline void snd_interval_any(struct snd_interval *i)
231 static inline void snd_interval_none(struct snd_interval *i)
236 static inline int snd_interval_checkempty(const struct snd_interval *i)
238 return (i->min > i->max ||
239 (i->min == i->max && (i->openmin || i->openmax)));
242 static inline int snd_interval_empty(const struct snd_interval *i)
247 static inline int snd_interval_single(const struct snd_interval *i)
249 return (i->min == i->max ||
250 (i->min + 1 == i->max && i->openmax));
253 static inline int snd_interval_value(const struct snd_interval *i)
258 static inline int snd_interval_min(const struct snd_interval *i)
263 static inline int snd_interval_max(const struct snd_interval *i)
272 static inline int snd_interval_test(const struct snd_interval *i, unsigned int val)
274 return !((i->min > val || (i->min == val && i->openmin) ||
275 i->max < val || (i->max == val && i->openmax)));
278 static inline void snd_interval_copy(struct snd_interval *d, const struct snd_interval *s)
283 static inline int snd_interval_setinteger(struct snd_interval *i)
287 if (i->openmin && i->openmax && i->min == i->max)
293 static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2)
299 return i1->min == i2->min && i1->openmin == i2->openmin &&
300 i1->max == i2->max && i1->openmax == i2->openmax;
304 * params_access - get the access type from the hw params
307 static inline snd_pcm_access_t params_access(const struct snd_pcm_hw_params *p)
309 return (__force snd_pcm_access_t)snd_mask_min(hw_param_mask_c(p,
310 SNDRV_PCM_HW_PARAM_ACCESS));
314 * params_format - get the sample format from the hw params
317 static inline snd_pcm_format_t params_format(const struct snd_pcm_hw_params *p)
319 return (__force snd_pcm_format_t)snd_mask_min(hw_param_mask_c(p,
320 SNDRV_PCM_HW_PARAM_FORMAT));
324 * params_subformat - get the sample subformat from the hw params
327 static inline snd_pcm_subformat_t
328 params_subformat(const struct snd_pcm_hw_params *p)
330 return (__force snd_pcm_subformat_t)snd_mask_min(hw_param_mask_c(p,
331 SNDRV_PCM_HW_PARAM_SUBFORMAT));
335 * params_period_bytes - get the period size (in bytes) from the hw params
338 static inline unsigned int
339 params_period_bytes(const struct snd_pcm_hw_params *p)
341 return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_BYTES)->min;
345 * params_width - get the number of bits of the sample format from the hw params
348 * This function returns the number of bits per sample that the selected sample
349 * format of the hw params has.
351 static inline int params_width(const struct snd_pcm_hw_params *p)
353 return snd_pcm_format_width(params_format(p));
357 * params_physical_width - get the storage size of the sample format from the hw params
360 * This functions returns the number of bits per sample that the selected sample
361 * format of the hw params takes up in memory. This will be equal or larger than
364 static inline int params_physical_width(const struct snd_pcm_hw_params *p)
366 return snd_pcm_format_physical_width(params_format(p));
370 params_set_format(struct snd_pcm_hw_params *p, snd_pcm_format_t fmt)
372 snd_mask_set(hw_param_mask(p, SNDRV_PCM_HW_PARAM_FORMAT),
376 #endif /* __SOUND_PCM_PARAMS_H */