Libav
|
#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/internal.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "mpegts.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_SYSTEM_B 0x04 |
#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 "Libav" |
#define | DEFAULT_SERVICE_NAME "Service01" |
#define | SDT_RETRANS_TIME 500 |
#define | PAT_RETRANS_TIME 100 |
#define | PCR_RETRANS_TIME 20 |
Variables | |
static const AVOption | options [] |
static const AVClass | mpegts_muxer_class |
AVOutputFormat | ff_mpegts_muxer |
#define PCR_TIME_BASE 27000000 |
Definition at line 36 of file mpegtsenc.c.
Referenced by get_pcr(), and mpegts_write_header().
#define DVB_PRIVATE_NETWORK_START 0xff01 |
Definition at line 40 of file mpegtsenc.c.
#define MPEGTS_FLAG_REEMIT_PAT_PMT 0x01 |
Definition at line 89 of file mpegtsenc.c.
Referenced by mpegts_write_packet_internal().
#define MPEGTS_FLAG_AAC_LATM 0x02 |
Definition at line 90 of file mpegtsenc.c.
Referenced by mpegts_write_header(), and mpegts_write_pmt().
#define MPEGTS_FLAG_SYSTEM_B 0x04 |
Definition at line 91 of file mpegtsenc.c.
Referenced by mpegts_write_pmt().
#define DEFAULT_PES_HEADER_FREQ 16 |
Definition at line 96 of file mpegtsenc.c.
#define DEFAULT_PES_PAYLOAD_SIZE ((DEFAULT_PES_HEADER_FREQ - 1) * 184 + 170) |
Definition at line 97 of file mpegtsenc.c.
#define SECTION_LENGTH 1020 |
Definition at line 101 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), and mpegts_write_sdt().
#define DEFAULT_PROVIDER_NAME "Libav" |
Definition at line 191 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define DEFAULT_SERVICE_NAME "Service01" |
Definition at line 192 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define SDT_RETRANS_TIME 500 |
Definition at line 195 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define PAT_RETRANS_TIME 100 |
Definition at line 196 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define PCR_RETRANS_TIME 20 |
Definition at line 197 of file mpegtsenc.c.
|
static |
Definition at line 104 of file mpegtsenc.c.
Referenced by mpegts_write_section1().
Definition at line 152 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), mpegts_write_sdt(), and mpegts_write_section1().
|
static |
Definition at line 161 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), and mpegts_write_sdt().
|
static |
Definition at line 213 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 230 of file mpegtsenc.c.
Referenced by retransmit_si_info().
Definition at line 403 of file mpegtsenc.c.
Referenced by mpegts_write_sdt().
|
static |
Definition at line 419 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 457 of file mpegtsenc.c.
Referenced by mpegts_write_header().
|
static |
Definition at line 481 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), mpegts_prefix_m2ts_header(), and mpegts_write_pes().
|
static |
Definition at line 487 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 499 of file mpegtsenc.c.
Referenced by mpegts_write_header().
|
static |
Definition at line 506 of file mpegtsenc.c.
|
static |
Definition at line 732 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 749 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), and mpegts_write_pes().
|
static |
Definition at line 764 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 780 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 805 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 820 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 836 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 844 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 856 of file mpegtsenc.c.
Referenced by mpegts_write_flush(), and mpegts_write_packet_internal().
|
static |
Definition at line 1039 of file mpegtsenc.c.
Referenced by mpegts_write_packet().
|
static |
Definition at line 1175 of file mpegtsenc.c.
Referenced by mpegts_write_end(), and mpegts_write_packet().
|
static |
Definition at line 1193 of file mpegtsenc.c.
|
static |
Definition at line 1203 of file mpegtsenc.c.
|
static |
Definition at line 1233 of file mpegtsenc.c.
|
static |
Definition at line 1280 of file mpegtsenc.c.
AVOutputFormat ff_mpegts_muxer |
Definition at line 1287 of file mpegtsenc.c.