2003-06-13 17:28:45 +03:00
|
|
|
/*
|
|
|
|
* MPEG2 transport stream defines
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
2003-06-13 17:28:45 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-06-13 17:28:45 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-06-13 17:28:45 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-06-13 17:28:45 +03:00
|
|
|
* 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-06-13 17:28:45 +03:00
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVFORMAT_MPEGTS_H
|
|
|
|
#define AVFORMAT_MPEGTS_H
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2007-06-17 01:59:13 +03:00
|
|
|
#include "avformat.h"
|
|
|
|
|
2003-06-13 17:28:45 +03:00
|
|
|
#define TS_FEC_PACKET_SIZE 204
|
2006-01-02 22:13:24 +02:00
|
|
|
#define TS_DVHS_PACKET_SIZE 192
|
2003-06-13 17:28:45 +03:00
|
|
|
#define TS_PACKET_SIZE 188
|
2009-08-25 00:42:25 +03:00
|
|
|
#define TS_MAX_PACKET_SIZE 204
|
|
|
|
|
2003-06-13 17:28:45 +03:00
|
|
|
#define NB_PID_MAX 8192
|
|
|
|
#define MAX_SECTION_SIZE 4096
|
|
|
|
|
|
|
|
/* pids */
|
|
|
|
#define PAT_PID 0x0000
|
|
|
|
#define SDT_PID 0x0011
|
|
|
|
|
|
|
|
/* table ids */
|
|
|
|
#define PAT_TID 0x00
|
2005-12-17 20:14:38 +02:00
|
|
|
#define PMT_TID 0x02
|
2011-10-06 04:24:17 +03:00
|
|
|
#define M4OD_TID 0x05
|
2003-06-13 17:28:45 +03:00
|
|
|
#define SDT_TID 0x42
|
|
|
|
|
2003-06-29 02:44:09 +03:00
|
|
|
#define STREAM_TYPE_VIDEO_MPEG1 0x01
|
|
|
|
#define STREAM_TYPE_VIDEO_MPEG2 0x02
|
|
|
|
#define STREAM_TYPE_AUDIO_MPEG1 0x03
|
|
|
|
#define STREAM_TYPE_AUDIO_MPEG2 0x04
|
2003-06-13 17:28:45 +03:00
|
|
|
#define STREAM_TYPE_PRIVATE_SECTION 0x05
|
|
|
|
#define STREAM_TYPE_PRIVATE_DATA 0x06
|
2003-11-12 23:56:57 +02:00
|
|
|
#define STREAM_TYPE_AUDIO_AAC 0x0f
|
2011-01-29 00:28:03 +02:00
|
|
|
#define STREAM_TYPE_AUDIO_AAC_LATM 0x11
|
2003-11-12 23:56:57 +02:00
|
|
|
#define STREAM_TYPE_VIDEO_MPEG4 0x10
|
2004-07-07 23:19:29 +03:00
|
|
|
#define STREAM_TYPE_VIDEO_H264 0x1b
|
2007-02-09 22:34:24 +02:00
|
|
|
#define STREAM_TYPE_VIDEO_VC1 0xea
|
2008-08-13 22:29:35 +03:00
|
|
|
#define STREAM_TYPE_VIDEO_DIRAC 0xd1
|
2003-06-13 17:28:45 +03:00
|
|
|
|
2003-07-10 12:04:04 +03:00
|
|
|
#define STREAM_TYPE_AUDIO_AC3 0x81
|
2004-07-14 04:32:14 +03:00
|
|
|
#define STREAM_TYPE_AUDIO_DTS 0x8a
|
2005-07-17 03:28:12 +03:00
|
|
|
|
2010-02-02 01:10:04 +02:00
|
|
|
typedef struct MpegTSContext MpegTSContext;
|
|
|
|
|
|
|
|
MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s);
|
|
|
|
int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
|
|
|
|
const uint8_t *buf, int len);
|
|
|
|
void ff_mpegts_parse_close(MpegTSContext *ts);
|
|
|
|
|
2012-09-27 11:19:53 +03:00
|
|
|
typedef struct SLConfigDescr {
|
2011-10-12 00:49:59 +03:00
|
|
|
int use_au_start;
|
|
|
|
int use_au_end;
|
|
|
|
int use_rand_acc_pt;
|
|
|
|
int use_padding;
|
|
|
|
int use_timestamps;
|
|
|
|
int use_idle;
|
|
|
|
int timestamp_res;
|
|
|
|
int timestamp_len;
|
|
|
|
int ocr_len;
|
|
|
|
int au_len;
|
|
|
|
int inst_bitrate_len;
|
|
|
|
int degr_prior_len;
|
|
|
|
int au_seq_num_len;
|
|
|
|
int packet_seq_num_len;
|
|
|
|
} SLConfigDescr;
|
|
|
|
|
2012-09-27 11:19:53 +03:00
|
|
|
typedef struct Mp4Descr {
|
2011-10-05 09:43:59 +03:00
|
|
|
int es_id;
|
|
|
|
int dec_config_descr_len;
|
|
|
|
uint8_t *dec_config_descr;
|
2011-10-12 00:49:59 +03:00
|
|
|
SLConfigDescr sl;
|
2011-10-05 09:43:59 +03:00
|
|
|
} Mp4Descr;
|
|
|
|
|
2010-12-29 14:45:31 +02:00
|
|
|
/**
|
|
|
|
* Parse an MPEG-2 descriptor
|
|
|
|
* @param[in] fc Format context (used for logging only)
|
|
|
|
* @param st Stream
|
|
|
|
* @param stream_type STREAM_TYPE_xxx
|
|
|
|
* @param pp Descriptor buffer pointer
|
|
|
|
* @param desc_list_end End of buffer
|
|
|
|
* @return <0 to stop processing
|
|
|
|
*/
|
|
|
|
int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type,
|
|
|
|
const uint8_t **pp, const uint8_t *desc_list_end,
|
2011-10-06 04:24:17 +03:00
|
|
|
Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
|
|
|
|
MpegTSContext *ts);
|
2010-12-29 14:45:31 +02:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVFORMAT_MPEGTS_H */
|