FFmpeg
|
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/base64.h"
#include "libavcodec/bytestream.h"
#include "avio_internal.h"
#include "internal.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
Go to the source code of this file.
Data Structures | |
struct | PayloadContext |
RTP/JPEG specific private data. More... | |
Functions | |
static void | xiph_close_context (PayloadContext *data) |
static int | xiph_handle_packet (AVFormatContext *ctx, PayloadContext *data, AVStream *st, AVPacket *pkt, uint32_t *timestamp, const uint8_t *buf, int len, uint16_t seq, int flags) |
static int | get_base128 (const uint8_t **buf, const uint8_t *buf_end) |
Length encoding described in RFC5215 section 3.1.1. More... | |
static int | parse_packed_headers (AVFormatContext *s, const uint8_t *packed_headers, const uint8_t *packed_headers_end, AVCodecParameters *par, PayloadContext *xiph_data) |
Based off parse_packed_headers in Vorbis RTP. More... | |
static int | xiph_parse_fmtp_pair (AVFormatContext *s, AVStream *stream, PayloadContext *xiph_data, const char *attr, const char *value) |
static int | xiph_parse_sdp_line (AVFormatContext *s, int st_index, PayloadContext *data, const char *line) |
Variables | |
RTPDynamicProtocolHandler | ff_theora_dynamic_handler |
RTPDynamicProtocolHandler | ff_vorbis_dynamic_handler |
Xiph / RTP Code.
Definition in file rtpdec_xiph.c.
|
static |
Definition at line 53 of file rtpdec_xiph.c.
|
static |
Definition at line 60 of file rtpdec_xiph.c.
Length encoding described in RFC5215 section 3.1.1.
Definition at line 207 of file rtpdec_xiph.c.
Referenced by parse_packed_headers().
|
static |
Based off parse_packed_headers in Vorbis RTP.
Definition at line 225 of file rtpdec_xiph.c.
Referenced by xiph_parse_fmtp_pair().
|
static |
Definition at line 286 of file rtpdec_xiph.c.
Referenced by xiph_parse_sdp_line().
|
static |
Definition at line 354 of file rtpdec_xiph.c.
RTPDynamicProtocolHandler ff_theora_dynamic_handler |
Definition at line 370 of file rtpdec_xiph.c.
Referenced by ff_register_rtp_dynamic_payload_handlers().
RTPDynamicProtocolHandler ff_vorbis_dynamic_handler |
Definition at line 380 of file rtpdec_xiph.c.
Referenced by ff_register_rtp_dynamic_payload_handlers().