Blame hdspconf/src/labels.cxx

Packit 427e91
/*
Packit 427e91
 *   HDSPConf
Packit 427e91
 *
Packit 427e91
 *   Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
Packit 427e91
 *
Packit 427e91
 *   This program is free software; you can redistribute it and/or modify
Packit 427e91
 *   it under the terms of the GNU General Public License as published by
Packit 427e91
 *   the Free Software Foundation; either version 2 of the License, or
Packit 427e91
 *   (at your option) any later version.
Packit 427e91
 *
Packit 427e91
 *   This program is distributed in the hope that it will be useful,
Packit 427e91
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 427e91
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 427e91
 *   GNU General Public License for more details.
Packit 427e91
 *
Packit 427e91
 *   You should have received a copy of the GNU General Public License
Packit 427e91
 *   along with this program; if not, write to the Free Software
Packit 427e91
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit 427e91
 */
Packit 427e91
Packit 427e91
#include "labels.h"
Packit 427e91
Packit 427e91
const char *card_names[5] = {
Packit 427e91
    "Digiface",
Packit 427e91
    "Multiface",
Packit 427e91
    "HDSP9652",
Packit 427e91
    "HDSP9632",
Packit 427e91
    "Undefined",
Packit 427e91
};
Packit 427e91
Packit 427e91
const char *freqs[10] = {
Packit 427e91
    "32.0 kHz",
Packit 427e91
    "44.1 kHz",
Packit 427e91
    "48.0 kHz",
Packit 427e91
    "64.0 kHz",
Packit 427e91
    "88.2 kHz",
Packit 427e91
    "96.0 kHz",
Packit 427e91
    "-----",
Packit 427e91
    "128.0 kHz",
Packit 427e91
    "176.4 kHz",
Packit 427e91
    "192.0 kHz",
Packit 427e91
};
Packit 427e91
Packit 427e91
const char *ref[7] = {
Packit 427e91
    "Word Clock",
Packit 427e91
    "ADAT Sync",
Packit 427e91
    "SPDIF",
Packit 427e91
    "-----",
Packit 427e91
    "ADAT1",
Packit 427e91
    "ADAT2",
Packit 427e91
    "ADAT3"
Packit 427e91
};
Packit 427e91
Packit 427e91
const char *lock_status[3] = {
Packit 427e91
    "No Lock",
Packit 427e91
    "Lock",
Packit 427e91
    "Sync"
Packit 427e91
};
Packit 427e91