summaryrefslogtreecommitdiff
path: root/v4l/compat.h
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2007-10-16 14:59:10 -0700
committerClemens Ladisch <clemens@ladisch.de>2007-10-16 14:59:10 -0700
commit1554c31dc6c915ba4fbce9b97c6e987274847ede (patch)
treec45b4c5f23a3129761a0acfedae04448bccc630b /v4l/compat.h
parentef94e12ccb4e1ed5ae430cd499f5fb04122be522 (diff)
downloadmediapointer-dvb-s2-1554c31dc6c915ba4fbce9b97c6e987274847ede.tar.gz
mediapointer-dvb-s2-1554c31dc6c915ba4fbce9b97c6e987274847ede.tar.bz2
Backport kernel commit 918f3a0e8cf67b5db966516f255eaf24d814fac0
kernel-sync: ALSA HG commit 5279 Date: Mon, 13 Aug 2007 15:40:54 +0000 (+0200) [ALSA] pcm: add snd_pcm_rate_to_rate_bit() helper Add a snd_pcm_rate_to_rate_bit() function to factor out common code used by several drivers. Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'v4l/compat.h')
-rw-r--r--v4l/compat.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/v4l/compat.h b/v4l/compat.h
index a8d1b1d45..97b35d4f7 100644
--- a/v4l/compat.h
+++ b/v4l/compat.h
@@ -447,6 +447,21 @@ static inline u8 v4l_compat_pci_rev(struct pci_dev *pci)
# endif
#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) && defined(__SOUND_PCM_H)
+/* New alsa core utility function */
+static inline unsigned int snd_pcm_rate_to_rate_bit(unsigned int rate)
+{
+ static const unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050,
+ 32000, 44100, 48000, 64000, 88200, 96000, 176400, 192000 };
+ unsigned int i;
+
+ for (i = 0; i < ARRAY_SIZE(rates); i++)
+ if (rates[i] == rate)
+ return 1u << i;
+ return SNDRV_PCM_RATE_KNOT;
+}
+#endif
+
#endif
/*
* Local variables: