#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/base64.h"
#include "libavcodec/bytestream.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
Go to the source code of this file.
Definition in file rtpdec_xiph.c.
| static void free_fragment_if_needed | ( | PayloadContext * | data | ) | [inline, static] |
Definition at line 55 of file rtpdec_xiph.c.
Referenced by xiph_free_context(), and xiph_handle_packet().
Length encoding described in RFC5215 section 3.1.1.
Definition at line 228 of file rtpdec_xiph.c.
Referenced by parse_packed_headers().
| static unsigned int parse_packed_headers | ( | const uint8_t * | packed_headers, | |
| const uint8_t * | packed_headers_end, | |||
| AVCodecContext * | codec, | |||
| PayloadContext * | xiph_data | |||
| ) | [static] |
Based off parse_packed_headers in Vorbis RTP.
Definition at line 246 of file rtpdec_xiph.c.
Referenced by xiph_parse_fmtp_pair().
| static void xiph_free_context | ( | PayloadContext * | data | ) | [static] |
Definition at line 65 of file rtpdec_xiph.c.
| static int xiph_handle_packet | ( | AVFormatContext * | ctx, | |
| PayloadContext * | data, | |||
| AVStream * | st, | |||
| AVPacket * | pkt, | |||
| uint32_t * | timestamp, | |||
| const uint8_t * | buf, | |||
| int | len, | |||
| int | flags | |||
| ) | [static] |
Definition at line 72 of file rtpdec_xiph.c.
| static PayloadContext* xiph_new_context | ( | void | ) | [static] |
Definition at line 50 of file rtpdec_xiph.c.
| static int xiph_parse_fmtp_pair | ( | AVStream * | stream, | |
| PayloadContext * | xiph_data, | |||
| char * | attr, | |||
| char * | value | |||
| ) | [static] |
| static int xiph_parse_sdp_line | ( | AVFormatContext * | s, | |
| int | st_index, | |||
| PayloadContext * | data, | |||
| const char * | line | |||
| ) | [static] |
Definition at line 373 of file rtpdec_xiph.c.
Initial value:
{
.enc_name = "theora",
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_THEORA,
.parse_sdp_a_line = xiph_parse_sdp_line,
.alloc = xiph_new_context,
.free = xiph_free_context,
.parse_packet = xiph_handle_packet
}
Definition at line 389 of file rtpdec_xiph.c.
Referenced by av_register_rtp_dynamic_payload_handlers().
Initial value:
{
.enc_name = "vorbis",
.codec_type = AVMEDIA_TYPE_AUDIO,
.codec_id = AV_CODEC_ID_VORBIS,
.parse_sdp_a_line = xiph_parse_sdp_line,
.alloc = xiph_new_context,
.free = xiph_free_context,
.parse_packet = xiph_handle_packet
}
Definition at line 399 of file rtpdec_xiph.c.
Referenced by av_register_rtp_dynamic_payload_handlers().
1.5.8