FFmpeg
|
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | SLConfigDescr |
struct | Mp4Descr |
Functions | |
MpegTSContext * | avpriv_mpegts_parse_open (AVFormatContext *s) |
int | avpriv_mpegts_parse_packet (MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len) |
void | avpriv_mpegts_parse_close (MpegTSContext *ts) |
int | ff_parse_mpeg2_descriptor (AVFormatContext *fc, AVStream *st, int stream_type, const uint8_t **pp, const uint8_t *desc_list_end, Mp4Descr *mp4_descr, int mp4_descr_count, int pid, MpegTSContext *ts) |
Parse an MPEG-2 descriptor. More... | |
int | ff_check_h264_startcode (AVFormatContext *s, const AVStream *st, const AVPacket *pkt) |
Check presence of H264 startcode. More... | |
MpegTSContext* avpriv_mpegts_parse_open | ( | AVFormatContext * | s | ) |
Definition at line 3231 of file mpegts.c.
Referenced by iec61883_read_header(), and mpegts_init().
int avpriv_mpegts_parse_packet | ( | MpegTSContext * | ts, |
AVPacket * | pkt, | ||
const uint8_t * | buf, | ||
int | len | ||
) |
Definition at line 3250 of file mpegts.c.
Referenced by iec61883_parse_queue_hdv(), and mpegts_handle_packet().
void avpriv_mpegts_parse_close | ( | MpegTSContext * | ts | ) |
Definition at line 3275 of file mpegts.c.
Referenced by ff_rtsp_close_streams(), iec61883_close(), and mpegts_close_context().
int ff_parse_mpeg2_descriptor | ( | AVFormatContext * | fc, |
AVStream * | st, | ||
int | stream_type, | ||
const uint8_t ** | pp, | ||
const uint8_t * | desc_list_end, | ||
Mp4Descr * | mp4_descr, | ||
int | mp4_descr_count, | ||
int | pid, | ||
MpegTSContext * | ts | ||
) |
Parse an MPEG-2 descriptor.
[in] | fc | Format context (used for logging only) |
st | Stream | |
stream_type | STREAM_TYPE_xxx | |
pp | Descriptor buffer pointer | |
desc_list_end | End of buffer |
Definition at line 1766 of file mpegts.c.
Referenced by parse_chunks(), and pmt_cb().
int ff_check_h264_startcode | ( | AVFormatContext * | s, |
const AVStream * | st, | ||
const AVPacket * | pkt | ||
) |
Check presence of H264 startcode.
Definition at line 1438 of file mpegtsenc.c.
Referenced by avi_write_packet(), mpegts_write_packet_internal(), and write_packet().