FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/bswap.h"
#include "libavutil/crc.h"
#include "libavutil/dict.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavcodec/ac3_parser_internal.h"
#include "libavcodec/startcode.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "mpegts.h"
#include "mux.h"
Go to the source code of this file.
Data Structures | |
struct | MpegTSSection |
struct | MpegTSService |
struct | MpegTSWrite |
struct | MpegTSWriteStream |
Macros | |
#define | PCR_TIME_BASE 27000000 |
#define | DVB_PRIVATE_NETWORK_START 0xff01 |
#define | MPEGTS_FLAG_REEMIT_PAT_PMT 0x01 |
#define | MPEGTS_FLAG_AAC_LATM 0x02 |
#define | MPEGTS_FLAG_PAT_PMT_AT_FRAMES 0x04 |
#define | MPEGTS_FLAG_SYSTEM_B 0x08 |
#define | MPEGTS_FLAG_DISCONT 0x10 |
#define | MPEGTS_FLAG_NIT 0x20 |
#define | DEFAULT_PES_HEADER_FREQ 16 |
#define | DEFAULT_PES_PAYLOAD_SIZE ((DEFAULT_PES_HEADER_FREQ - 1) * 184 + 170) |
#define | SECTION_LENGTH 1020 |
#define | DEFAULT_PROVIDER_NAME "FFmpeg" |
#define | DEFAULT_SERVICE_NAME "Service" |
#define | SDT_RETRANS_TIME 500 |
#define | PAT_RETRANS_TIME 100 |
#define | PCR_RETRANS_TIME 20 |
#define | NIT_RETRANS_TIME 500 |
#define | OFFSET(x) offsetof(MpegTSWrite, x) |
#define | ENC AV_OPT_FLAG_ENCODING_PARAM |
Enumerations | |
enum | { MPEGTS_SERVICE_TYPE_DIGITAL_TV = 0x01, MPEGTS_SERVICE_TYPE_DIGITAL_RADIO = 0x02, MPEGTS_SERVICE_TYPE_TELETEXT = 0x03, MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_RADIO = 0x0A, MPEGTS_SERVICE_TYPE_MPEG2_DIGITAL_HDTV = 0x11, MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_SDTV = 0x16, MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV = 0x19, MPEGTS_SERVICE_TYPE_HEVC_DIGITAL_HDTV = 0x1F } |
Variables | |
static const AVOption | options [] |
static const AVClass | mpegts_muxer_class |
const AVOutputFormat | ff_mpegts_muxer |
#define PCR_TIME_BASE 27000000 |
Definition at line 39 of file mpegtsenc.c.
#define DVB_PRIVATE_NETWORK_START 0xff01 |
Definition at line 43 of file mpegtsenc.c.
#define MPEGTS_FLAG_REEMIT_PAT_PMT 0x01 |
Definition at line 108 of file mpegtsenc.c.
#define MPEGTS_FLAG_AAC_LATM 0x02 |
Definition at line 109 of file mpegtsenc.c.
#define MPEGTS_FLAG_PAT_PMT_AT_FRAMES 0x04 |
Definition at line 110 of file mpegtsenc.c.
#define MPEGTS_FLAG_SYSTEM_B 0x08 |
Definition at line 111 of file mpegtsenc.c.
#define MPEGTS_FLAG_DISCONT 0x10 |
Definition at line 112 of file mpegtsenc.c.
#define MPEGTS_FLAG_NIT 0x20 |
Definition at line 113 of file mpegtsenc.c.
#define DEFAULT_PES_HEADER_FREQ 16 |
Definition at line 130 of file mpegtsenc.c.
#define DEFAULT_PES_PAYLOAD_SIZE ((DEFAULT_PES_HEADER_FREQ - 1) * 184 + 170) |
Definition at line 131 of file mpegtsenc.c.
#define SECTION_LENGTH 1020 |
Definition at line 135 of file mpegtsenc.c.
#define DEFAULT_PROVIDER_NAME "FFmpeg" |
Definition at line 231 of file mpegtsenc.c.
#define DEFAULT_SERVICE_NAME "Service" |
Definition at line 232 of file mpegtsenc.c.
#define SDT_RETRANS_TIME 500 |
Definition at line 235 of file mpegtsenc.c.
#define PAT_RETRANS_TIME 100 |
Definition at line 236 of file mpegtsenc.c.
#define PCR_RETRANS_TIME 20 |
Definition at line 237 of file mpegtsenc.c.
#define NIT_RETRANS_TIME 500 |
Definition at line 238 of file mpegtsenc.c.
#define OFFSET | ( | x | ) | offsetof(MpegTSWrite, x) |
Definition at line 2236 of file mpegtsenc.c.
#define ENC AV_OPT_FLAG_ENCODING_PARAM |
Definition at line 2237 of file mpegtsenc.c.
anonymous enum |
Definition at line 66 of file mpegtsenc.c.
|
static |
Definition at line 138 of file mpegtsenc.c.
Referenced by mpegts_write_section1().
|
inlinestatic |
Definition at line 192 of file mpegtsenc.c.
Referenced by mpegts_write_nit(), mpegts_write_pat(), mpegts_write_pmt(), mpegts_write_sdt(), mpegts_write_section1(), and put_arib_caption_descriptor().
|
static |
Definition at line 201 of file mpegtsenc.c.
Referenced by mpegts_write_nit(), mpegts_write_pat(), mpegts_write_pmt(), and mpegts_write_sdt().
|
static |
Definition at line 264 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 285 of file mpegtsenc.c.
Referenced by mpegts_write_nit(), mpegts_write_pmt(), and mpegts_write_sdt().
|
static |
Definition at line 291 of file mpegtsenc.c.
Referenced by mpegts_write_pmt().
|
static |
Definition at line 335 of file mpegtsenc.c.
Referenced by mpegts_write_pmt().
|
static |
Definition at line 347 of file mpegtsenc.c.
Referenced by mpegts_write_pmt().
|
static |
Definition at line 445 of file mpegtsenc.c.
Referenced by mpegts_write_pmt().
|
static |
Definition at line 496 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 833 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 871 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 916 of file mpegtsenc.c.
Referenced by mpegts_add_service(), and mpegts_init().
|
static |
Definition at line 948 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), mpegts_write_pes(), and write_packet().
|
static |
Definition at line 954 of file mpegtsenc.c.
Referenced by mpegts_insert_null_packet(), mpegts_insert_pcr_only(), mpegts_write_pes(), and section_write_packet().
|
static |
Definition at line 968 of file mpegtsenc.c.
Referenced by mpegts_add_service(), and mpegts_init().
|
static |
Definition at line 974 of file mpegtsenc.c.
Referenced by mpegts_init().
|
static |
Definition at line 1019 of file mpegtsenc.c.
Referenced by select_pcr_streams().
|
static |
Definition at line 1050 of file mpegtsenc.c.
Referenced by mpegts_init().
|
static |
Definition at line 1079 of file mpegtsenc.c.
|
static |
Definition at line 1294 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1327 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), and mpegts_write_pes().
|
static |
Definition at line 1342 of file mpegtsenc.c.
Referenced by mpegts_write_flush(), and mpegts_write_pes().
|
static |
Definition at line 1357 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1385 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1400 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1416 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1424 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1432 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 1466 of file mpegtsenc.c.
Referenced by mpegts_write_flush(), and mpegts_write_packet_internal().
int ff_check_h264_startcode | ( | AVFormatContext * | s, |
const AVStream * | st, | ||
const AVPacket * | pkt | ||
) |
Check presence of H264 startcode.
Definition at line 1751 of file mpegtsenc.c.
Referenced by avi_write_packet(), mpegts_write_packet_internal(), and write_packet().
|
static |
Definition at line 1768 of file mpegtsenc.c.
Referenced by mpegts_write_packet_internal().
|
static |
Definition at line 1787 of file mpegtsenc.c.
Referenced by mpegts_write_packet_internal().
|
static |
Definition at line 1835 of file mpegtsenc.c.
Referenced by mpegts_write_packet().
|
static |
Definition at line 2145 of file mpegtsenc.c.
Referenced by mpegts_write_end(), and mpegts_write_packet().
|
static |
Definition at line 2170 of file mpegtsenc.c.
|
static |
Definition at line 2180 of file mpegtsenc.c.
|
static |
Definition at line 2188 of file mpegtsenc.c.
|
static |
Definition at line 2214 of file mpegtsenc.c.
|
static |
Definition at line 2238 of file mpegtsenc.c.
|
static |
Definition at line 2299 of file mpegtsenc.c.
const AVOutputFormat ff_mpegts_muxer |
Definition at line 2306 of file mpegtsenc.c.