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 "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 | MPEGTS_FLAG_REEMIT_PAT_PMT 0x01 |
#define | MPEGTS_FLAG_AAC_LATM 0x02 |
#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 33 of file mpegtsenc.c.
Referenced by get_pcr(), and mpegts_write_header().
#define MPEGTS_FLAG_REEMIT_PAT_PMT 0x01 |
Definition at line 82 of file mpegtsenc.c.
Referenced by mpegts_write_packet_internal().
#define MPEGTS_FLAG_AAC_LATM 0x02 |
Definition at line 83 of file mpegtsenc.c.
Referenced by mpegts_write_header(), and mpegts_write_pmt().
#define DEFAULT_PES_HEADER_FREQ 16 |
Definition at line 88 of file mpegtsenc.c.
#define DEFAULT_PES_PAYLOAD_SIZE ((DEFAULT_PES_HEADER_FREQ - 1) * 184 + 170) |
Definition at line 89 of file mpegtsenc.c.
#define SECTION_LENGTH 1020 |
Definition at line 93 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), and mpegts_write_sdt().
#define DEFAULT_PROVIDER_NAME "Libav" |
Definition at line 216 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define DEFAULT_SERVICE_NAME "Service01" |
Definition at line 217 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define SDT_RETRANS_TIME 500 |
Definition at line 220 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define PAT_RETRANS_TIME 100 |
Definition at line 221 of file mpegtsenc.c.
Referenced by mpegts_write_header().
#define PCR_RETRANS_TIME 20 |
Definition at line 222 of file mpegtsenc.c.
Referenced by mpegts_write_header().
|
static |
Definition at line 131 of file mpegtsenc.c.
Referenced by mpegts_write_section1().
Definition at line 177 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), mpegts_write_sdt(), and mpegts_write_section1().
|
static |
Definition at line 186 of file mpegtsenc.c.
Referenced by mpegts_write_pat(), mpegts_write_pmt(), and mpegts_write_sdt().
|
static |
Definition at line 237 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 254 of file mpegtsenc.c.
Referenced by retransmit_si_info().
Definition at line 414 of file mpegtsenc.c.
Referenced by mpegts_write_sdt().
|
static |
Definition at line 430 of file mpegtsenc.c.
Referenced by retransmit_si_info().
|
static |
Definition at line 468 of file mpegtsenc.c.
Referenced by mpegts_write_header().
|
static |
Definition at line 487 of file mpegtsenc.c.
Referenced by mpegts_write_header().
|
static |
Definition at line 493 of file mpegtsenc.c.
|
static |
Definition at line 688 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 706 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), and mpegts_write_pes().
|
static |
Definition at line 712 of file mpegtsenc.c.
Referenced by mpegts_insert_pcr_only(), and mpegts_write_pes().
|
static |
Definition at line 727 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 742 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 766 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 781 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 797 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
Definition at line 805 of file mpegtsenc.c.
Referenced by mpegts_write_pes().
|
static |
Definition at line 818 of file mpegtsenc.c.
Referenced by mpegts_write_flush(), and mpegts_write_packet_internal().
|
static |
Definition at line 1004 of file mpegtsenc.c.
Referenced by mpegts_write_packet().
|
static |
Definition at line 1136 of file mpegtsenc.c.
Referenced by mpegts_write_end(), and mpegts_write_packet().
|
static |
Definition at line 1154 of file mpegtsenc.c.
|
static |
Definition at line 1164 of file mpegtsenc.c.
|
static |
Definition at line 95 of file mpegtsenc.c.
|
static |
Definition at line 123 of file mpegtsenc.c.
AVOutputFormat ff_mpegts_muxer |
Definition at line 1193 of file mpegtsenc.c.