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.
71 lines
2.5 KiB
71 lines
2.5 KiB
/*****************************************************************************
|
|
* tables.h
|
|
*****************************************************************************
|
|
* Copyright (C) 2001-2005, 2015 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,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
#ifndef VLC_MPEG_TABLES_H_
|
|
#define VLC_MPEG_TABLES_H_
|
|
|
|
#define MAX_SDT_DESC 64
|
|
|
|
typedef struct
|
|
{
|
|
tsmux_stream_t ts;
|
|
int i_netid;
|
|
struct
|
|
{
|
|
char *psz_provider; /* provider in UTF8 */
|
|
char *psz_service_name; /* program in UTF8 */
|
|
} desc[MAX_SDT_DESC];
|
|
} sdt_psi_t;
|
|
|
|
block_t * WritePSISection( dvbpsi_psi_section_t* p_section );
|
|
|
|
void BuildPAT( dvbpsi_t *p_dvbpsi,
|
|
void *p_opaque, PEStoTSCallback pf_callback,
|
|
int i_tsid, int i_pat_version_number,
|
|
tsmux_stream_t *p_pat,
|
|
unsigned i_programs, tsmux_stream_t *p_pmt, const int *pi_programs_number );
|
|
|
|
typedef struct
|
|
{
|
|
const pesmux_stream_t *pes;
|
|
const tsmux_stream_t *ts;
|
|
const es_format_t *fmt;
|
|
int i_mapped_prog;
|
|
} pes_mapped_stream_t;
|
|
|
|
typedef enum ts_mux_standard
|
|
{
|
|
TS_MUX_STANDARD_DVB = 0,
|
|
TS_MUX_STANDARD_ATSC,
|
|
} ts_mux_standard;
|
|
|
|
void BuildPMT( dvbpsi_t *p_dvbpsi, vlc_object_t *p_object,
|
|
ts_mux_standard,
|
|
void *p_opaque, PEStoTSCallback pf_callback,
|
|
int i_tsid, int i_pmt_version_number,
|
|
int i_pcr_pid,
|
|
sdt_psi_t *p_sdt,
|
|
unsigned i_programs, tsmux_stream_t *p_pmt, const int *pi_programs_number,
|
|
unsigned i_mapped_streams, const pes_mapped_stream_t *p_mapped_streams );
|
|
|
|
|
|
int FillPMTESParams( ts_mux_standard, const es_format_t *,
|
|
tsmux_stream_t *, pesmux_stream_t * );
|
|
|
|
#endif
|
|
|