You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.8 KiB
50 lines
1.8 KiB
/*****************************************************************************
|
|
* scan_list.h : Scanning parameters and transponders list
|
|
*****************************************************************************
|
|
* Copyright (C) 2016 VLC authors and VideoLAN
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
|
*****************************************************************************/
|
|
#ifndef VLC_SCAN_LIST_H
|
|
#define VLC_SCAN_LIST_H
|
|
|
|
typedef struct scan_list_entry_t scan_list_entry_t;
|
|
|
|
typedef struct scan_list_entry_t
|
|
{
|
|
char *psz_channel;
|
|
|
|
unsigned i_freq;
|
|
unsigned i_bw;
|
|
unsigned i_rate;
|
|
|
|
scan_modulation_t modulation;
|
|
scan_coderate_t coderate_lp;
|
|
scan_coderate_t coderate_hp;
|
|
scan_coderate_t inner_fec;
|
|
scan_guard_t guard_interval;
|
|
scan_delivery_t delivery;
|
|
scan_polarization_t polarization;
|
|
|
|
scan_list_entry_t *p_next;
|
|
|
|
} scan_list_entry_t;
|
|
|
|
scan_list_entry_t * scan_list_dvbv5_load( vlc_object_t *, const char *, size_t * );
|
|
scan_list_entry_t * scan_list_dvbv3_load( vlc_object_t *, const char *, size_t * );
|
|
|
|
void scan_list_entries_release( scan_list_entry_t * );
|
|
|
|
#endif
|
|
|