#include "avformat.h"
#include "mpegts.h"
#include "internal.h"
#include "libavutil/mathematics.h"
#include "libavutil/random_seed.h"
#include "libavutil/opt.h"
#include "rtpenc.h"
Go to the source code of this file.
Defines | |
#define | RTCP_SR_SIZE 28 |
Functions | |
static int | is_supported (enum CodecID id) |
static int | rtp_write_header (AVFormatContext *s1) |
static void | rtcp_send_sr (AVFormatContext *s1, int64_t ntp_time) |
void | ff_rtp_send_data (AVFormatContext *s1, const uint8_t *buf1, int len, int m) |
static void | rtp_send_samples (AVFormatContext *s1, const uint8_t *buf1, int size, int sample_size_bits) |
static void | rtp_send_mpegaudio (AVFormatContext *s1, const uint8_t *buf1, int size) |
static void | rtp_send_raw (AVFormatContext *s1, const uint8_t *buf1, int size) |
static void | rtp_send_mpegts_raw (AVFormatContext *s1, const uint8_t *buf1, int size) |
static int | rtp_write_packet (AVFormatContext *s1, AVPacket *pkt) |
static int | rtp_write_trailer (AVFormatContext *s1) |
Variables | |
static const AVOption | options [] |
static const AVClass | rtp_muxer_class |
AVOutputFormat | ff_rtp_muxer |
#define RTCP_SR_SIZE 28 |
Definition at line 46 of file rtpenc.c.
Referenced by rtp_write_packet().
void ff_rtp_send_data | ( | AVFormatContext * | s1, |
const uint8_t * | buf1, | ||
int | len, | ||
int | m | ||
) |
Definition at line 228 of file rtpenc.c.
Referenced by ff_rtp_send_aac(), ff_rtp_send_amr(), ff_rtp_send_h263(), ff_rtp_send_latm(), ff_rtp_send_mpegvideo(), ff_rtp_send_vp8(), ff_rtp_send_xiph(), nal_send(), rtp_send_mpegaudio(), rtp_send_mpegts_raw(), rtp_send_raw(), and rtp_send_samples().
static int is_supported | ( | enum CodecID | id | ) | [static] |
Definition at line 48 of file rtpenc.c.
Referenced by rtp_write_header().
static void rtcp_send_sr | ( | AVFormatContext * | s1, |
int64_t | ntp_time | ||
) | [static] |
Definition at line 204 of file rtpenc.c.
Referenced by rtp_write_packet().
static void rtp_send_mpegaudio | ( | AVFormatContext * | s1, |
const uint8_t * | buf1, | ||
int | size | ||
) | [static] |
Definition at line 279 of file rtpenc.c.
Referenced by rtp_write_packet().
static void rtp_send_mpegts_raw | ( | AVFormatContext * | s1, |
const uint8_t * | buf1, | ||
int | size | ||
) | [static] |
Definition at line 353 of file rtpenc.c.
Referenced by rtp_write_packet().
static void rtp_send_raw | ( | AVFormatContext * | s1, |
const uint8_t * | buf1, | ||
int | size | ||
) | [static] |
Definition at line 331 of file rtpenc.c.
Referenced by rtp_write_packet().
static void rtp_send_samples | ( | AVFormatContext * | s1, |
const uint8_t * | buf1, | ||
int | size, | ||
int | sample_size_bits | ||
) | [static] |
Definition at line 251 of file rtpenc.c.
Referenced by rtp_write_packet().
static int rtp_write_header | ( | AVFormatContext * | s1 | ) | [static] |
static int rtp_write_packet | ( | AVFormatContext * | s1, |
AVPacket * | pkt | ||
) | [static] |
static int rtp_write_trailer | ( | AVFormatContext * | s1 | ) | [static] |
{ .name = "rtp", .long_name = NULL_IF_CONFIG_SMALL("RTP output format"), .priv_data_size = sizeof(RTPMuxContext), .audio_codec = CODEC_ID_PCM_MULAW, .video_codec = CODEC_ID_MPEG4, .write_header = rtp_write_header, .write_packet = rtp_write_packet, .write_trailer = rtp_write_trailer, .priv_class = &rtp_muxer_class, }
{ FF_RTP_FLAG_OPTS(RTPMuxContext, flags), { "payload_type", "Specify RTP payload type", 0x42, AV_OPT_TYPE_INT, {.dbl = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM }, { NULL }, }
const AVClass rtp_muxer_class [static] |
{ .class_name = "RTP muxer", .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, }