Michael Sevakis | 5efee7c | 2006-11-06 18:18:05 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2006 Michael Sevakis |
| 11 | * |
Daniel Stenberg | 2acc0ac | 2008-06-28 18:10:04 +0000 | [diff] [blame] | 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version 2 |
| 15 | * of the License, or (at your option) any later version. |
Michael Sevakis | 5efee7c | 2006-11-06 18:18:05 +0000 | [diff] [blame] | 16 | * |
| 17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 18 | * KIND, either express or implied. |
| 19 | * |
| 20 | ****************************************************************************/ |
| 21 | #include "config.h" |
| 22 | #include "pcm_sampr.h" |
| 23 | |
| 24 | /* Master list of all "standard" rates supported. */ |
| 25 | const unsigned long audio_master_sampr_list[SAMPR_NUM_FREQ] = |
| 26 | { |
| 27 | [0 ... SAMPR_NUM_FREQ-1] = -1, /* any gaps set to -1 */ |
| 28 | [FREQ_96] = SAMPR_96, |
| 29 | [FREQ_88] = SAMPR_88, |
| 30 | [FREQ_64] = SAMPR_64, |
| 31 | [FREQ_48] = SAMPR_48, |
| 32 | [FREQ_44] = SAMPR_44, |
| 33 | [FREQ_32] = SAMPR_32, |
| 34 | [FREQ_24] = SAMPR_24, |
| 35 | [FREQ_22] = SAMPR_22, |
| 36 | [FREQ_16] = SAMPR_16, |
| 37 | [FREQ_12] = SAMPR_12, |
| 38 | [FREQ_11] = SAMPR_11, |
| 39 | [FREQ_8 ] = SAMPR_8, |
| 40 | }; |
| 41 | |
| 42 | /* List of all hardware rates supported (set or subset of master list) */ |
| 43 | const unsigned long hw_freq_sampr[HW_NUM_FREQ] = |
| 44 | { |
| 45 | [0 ... HW_NUM_FREQ-1] = -1, |
| 46 | HW_HAVE_96_([HW_FREQ_96] = SAMPR_96,) |
| 47 | HW_HAVE_88_([HW_FREQ_88] = SAMPR_88,) |
| 48 | HW_HAVE_64_([HW_FREQ_64] = SAMPR_64,) |
| 49 | HW_HAVE_48_([HW_FREQ_48] = SAMPR_48,) |
| 50 | HW_HAVE_44_([HW_FREQ_44] = SAMPR_44,) |
| 51 | HW_HAVE_32_([HW_FREQ_32] = SAMPR_32,) |
| 52 | HW_HAVE_24_([HW_FREQ_24] = SAMPR_24,) |
| 53 | HW_HAVE_22_([HW_FREQ_22] = SAMPR_22,) |
| 54 | HW_HAVE_16_([HW_FREQ_16] = SAMPR_16,) |
| 55 | HW_HAVE_12_([HW_FREQ_12] = SAMPR_12,) |
| 56 | HW_HAVE_11_([HW_FREQ_11] = SAMPR_11,) |
| 57 | HW_HAVE_8_( [HW_FREQ_8 ] = SAMPR_8 ,) |
| 58 | }; |
| 59 | |
| 60 | #ifdef HAVE_RECORDING |
| 61 | /* List of recording supported sample rates (set or subset of master list) */ |
| 62 | const unsigned long rec_freq_sampr[REC_NUM_FREQ] = |
| 63 | { |
| 64 | [0 ... REC_NUM_FREQ-1] = -1, |
| 65 | REC_HAVE_96_([REC_FREQ_96] = SAMPR_96,) |
| 66 | REC_HAVE_88_([REC_FREQ_88] = SAMPR_88,) |
| 67 | REC_HAVE_64_([REC_FREQ_64] = SAMPR_64,) |
| 68 | REC_HAVE_48_([REC_FREQ_48] = SAMPR_48,) |
| 69 | REC_HAVE_44_([REC_FREQ_44] = SAMPR_44,) |
| 70 | REC_HAVE_32_([REC_FREQ_32] = SAMPR_32,) |
| 71 | REC_HAVE_24_([REC_FREQ_24] = SAMPR_24,) |
| 72 | REC_HAVE_22_([REC_FREQ_22] = SAMPR_22,) |
| 73 | REC_HAVE_16_([REC_FREQ_16] = SAMPR_16,) |
| 74 | REC_HAVE_12_([REC_FREQ_12] = SAMPR_12,) |
| 75 | REC_HAVE_11_([REC_FREQ_11] = SAMPR_11,) |
| 76 | REC_HAVE_8_( [REC_FREQ_8 ] = SAMPR_8 ,) |
| 77 | }; |
| 78 | #endif /* HAVE_RECORDING */ |