Blame hdspconf/src/labels.cxx

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