OpenFFmpeg
Classes | Variables
rtpdec_xiph.c File Reference

Xiph / RTP Code. More...

#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"

Classes

struct  PayloadContext
 RTP/JPEG specific private data. More...
 

Variables

const RTPDynamicProtocolHandler ff_theora_dynamic_handler
 
const RTPDynamicProtocolHandler ff_vorbis_dynamic_handler
 

Detailed Description

Xiph / RTP Code.

Author
Colin McQuillan m.nil.nosp@m.oc@g.nosp@m.mail..nosp@m.com
Josh Allmann joshu.nosp@m.a.al.nosp@m.lmann.nosp@m.@gma.nosp@m.il.co.nosp@m.m

Variable Documentation

§ ff_theora_dynamic_handler

const RTPDynamicProtocolHandler ff_theora_dynamic_handler
Initial value:
= {
.enc_name = "theora",
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_THEORA,
.priv_data_size = sizeof(PayloadContext),
.parse_sdp_a_line = xiph_parse_sdp_line,
.close = xiph_close_context,
.parse_packet = xiph_handle_packet,
}
RTP/JPEG specific private data.
Definition: rdt.c:83

§ ff_vorbis_dynamic_handler

const RTPDynamicProtocolHandler ff_vorbis_dynamic_handler
Initial value:
= {
.enc_name = "vorbis",
.codec_type = AVMEDIA_TYPE_AUDIO,
.codec_id = AV_CODEC_ID_VORBIS,
.need_parsing = AVSTREAM_PARSE_HEADERS,
.priv_data_size = sizeof(PayloadContext),
.parse_sdp_a_line = xiph_parse_sdp_line,
.close = xiph_close_context,
.parse_packet = xiph_handle_packet,
}
RTP/JPEG specific private data.
Definition: rdt.c:83
Only parse headers, do not repack.
Definition: avformat.h:794