0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/libmenu/menu_dvbin.c
attila 4b1211d2d0 Patch by Nico <nsabbi@libero.it>
this patch fixes a recently discovered bug for which DVB-C users
couldn't tune
(wrong parsing of the config file and incorrect parameter passing to
tune_it())
and includes the still unapplied patch posted in date 6/9/2003:

-  it works correctly with and without caches; in the former case it
doesn't take anymore a lot of time to empty the cache before changing channel;
the uninit_cache() function is called in mplayer.c just after
the new tuning operation
- initialized a variable identifying the tuner type, and exit if it
isn't supported


- doesn't crash anymore when
1) the channels file doesn't exists
2) the tuner is used by another application
3) in the menu, when trying to select a channel before the first
4) some mp_msg() called in case of error


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11353 b3059339-0415-0410-9bf9-f77b7e298cf2
2003-11-01 15:17:01 +00:00

194 lines
3.5 KiB
C

#include <stdlib.h>
#include <stdio.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#include <unistd.h>
#include <limits.h>
#include "../config.h"
#include "../m_struct.h"
#include "../m_option.h"
#include "img_format.h"
#include "mp_image.h"
#include "menu.h"
#include "menu_list.h"
#include "../input/input.h"
#include "../osdep/keycodes.h"
#include "../libmpdemux/dvbin.h"
struct list_entry_s {
struct list_entry p;
int num; //the position of the chosen channel in the list
};
struct menu_priv_s {
menu_list_priv_t p;
char* title;
char* file;
int card;
};
#define ST_OFF(m) M_ST_OFF(struct menu_priv_s, m)
#define mpriv (menu->priv)
static m_option_t cfg_fields[] = {
MENU_LIST_PRIV_FIELDS,
{ "title", ST_OFF(title), CONF_TYPE_STRING, 0, 0, 0, NULL },
{ "file", ST_OFF(file), CONF_TYPE_STRING, 0, 0, 0, NULL },
{ "card", ST_OFF(card), CONF_TYPE_INT, 0, 0, 0, NULL },
{ NULL, NULL, NULL, 0,0,0,NULL }
};
static struct menu_priv_s cfg_dflt = {
MENU_LIST_PRIV_DFLT,
"Select a channel: %p",
"channels.conf",
1,
NULL,
};
static void free_entry(list_entry_t* entry)
{
free(entry->p.txt);
free(entry);
}
static int fill_menu(menu_t* menu)
{
int n;
list_entry_t* elem;
char *name;
extern dvb_channels_list *dvb_list_ptr;
dvb_channel_t *channel;
menu_list_init(menu);
mpriv->p.title = mpriv->title;
if(dvb_list_ptr == NULL)
{
mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_set_channel: LIST NULL PTR, quit\n");
n = 1;
if((elem = malloc(sizeof(list_entry_t))) != NULL)
{
name = malloc(80);
sprintf(name, "Empty channel list from file %s; \nrun mplayer dvb:// to load the list", mpriv->file);
elem->p.next = NULL;
elem->p.txt = name;
menu_list_add_entry(menu, elem);
}
}
else
{
n = dvb_list_ptr->NUM_CHANNELS;
for(n = 0; n < dvb_list_ptr->NUM_CHANNELS; n++)
{
channel = &(dvb_list_ptr->channels[n]);
if((elem = malloc(sizeof(list_entry_t))) != NULL)
{
name = malloc(80);
strncpy(name, channel->name, 79);
name[79] = 0;
elem->p.next = NULL;
elem->p.txt = name;
elem->num = n;
if(n == 0)
elem->p.prev = NULL;
menu_list_add_entry(menu, elem);
}
else
{
mp_msg(MSGT_DEMUX, MSGL_ERR, "dvb_menu: fill_menu: couldn't malloc %d bytes for menu item: %s, exit\n",
sizeof(list_entry_t), strerror(errno));
if(n)
return 1;
return 0;
}
}
}
return 1;
}
static void read_cmd(menu_t* menu, int cmd)
{
list_entry_t *p;
mp_cmd_t* c;
char *cmd_name;
switch(cmd)
{
case MENU_CMD_OK:
{
p = mpriv->p.current;
mp_msg(MSGT_DEMUX, MSGL_V, "CHOSEN DVB CHANNEL %d\n\n", p->num);
cmd_name = malloc(30);
sprintf(cmd_name, "dvb_set_channel %d", p->num);
c = mp_input_parse_cmd(cmd_name);
if(c)
mp_input_queue_cmd(c);
}
break;
default:
menu_list_read_cmd(menu, cmd);
}
}
static void close_menu(menu_t* menu)
{
menu_list_uninit(menu, free_entry);
//free(mpriv->dir);
}
static int open_dvb_sel(menu_t* menu, char* args)
{
menu->draw = menu_list_draw;
menu->read_cmd = read_cmd;
//menu->read_key = read_key;
menu->close = close_menu;
return fill_menu(menu);
}
const menu_info_t menu_info_dvbsel =
{
"DVB channels menu", //descr
"dvbsel", //name
"Nico", //author
"dvb_sel",
{ //m_struct_t priv_st=
"dvb_cfg", //name
sizeof(dvb_channels_list), //size
&cfg_dflt, //defaults
cfg_fields //settable fields
},
open_dvb_sel //open function
};