Move strtab stuff to a file of its own

This commit is contained in:
Andreas Öman 2007-08-18 10:34:55 +00:00
parent a1c66aa085
commit 08cc817951
2 changed files with 43 additions and 23 deletions

View file

@ -27,6 +27,7 @@
#include "tvhead.h"
#include "dvb.h"
#include "dvb_muxconfig.h"
#include "strtab.h"
static void
@ -80,14 +81,6 @@ dvb_add_mux(struct dvb_frontend_parameters *fe_param, const char *name)
}
}
struct strtab {
const char *str;
int val;
};
static struct strtab fectab[] = {
{ "NONE", FEC_NONE },
{ "1/2", FEC_1_2 },
@ -145,21 +138,6 @@ static struct strtab hiertab[] = {
static int
str2val0(const char *str, struct strtab tab[], int l)
{
int i;
for(i = 0; i < l; i++)
if(!strcasecmp(str, tab[i].str))
return tab[i].val;
return -1;
}
#define str2val(str, tab) str2val0(str, tab, sizeof(tab) / sizeof(tab[0]))
static void
dvb_t_config(const char *l)
{

42
strtab.h Normal file
View file

@ -0,0 +1,42 @@
/*
* tvheadend
* Copyright (C) 2007 Andreas Öman
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef STRTAB_H_
#define STRTAB_H_
#include <string.h>
struct strtab {
const char *str;
int val;
};
static int
str2val0(const char *str, struct strtab tab[], int l)
{
int i;
for(i = 0; i < l; i++)
if(!strcasecmp(str, tab[i].str))
return tab[i].val;
return -1;
}
#define str2val(str, tab) str2val0(str, tab, sizeof(tab) / sizeof(tab[0]))
#endif /* STRTAB_H_ */