rtpenc.c File Reference
#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.

Macros

#define RTCP_SR_SIZE   28
 

Functions

static int is_supported (enum AVCodecID 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 int 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_send_ilbc (AVFormatContext *s1, const uint8_t *buf, 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
 

Macro Definition Documentation

#define RTCP_SR_SIZE   28

Definition at line 48 of file rtpenc.c.

Referenced by rtp_write_packet().

Function Documentation

static int is_supported ( enum AVCodecID  id)
static

Definition at line 50 of file rtpenc.c.

Referenced by rtp_write_header().

static void rtcp_send_sr ( AVFormatContext s1,
int64_t  ntp_time 
)
static

Definition at line 256 of file rtpenc.c.

Referenced by rtp_write_packet().

static int rtp_send_ilbc ( AVFormatContext s1,
const uint8_t buf,
int  size 
)
static

Definition at line 445 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 348 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 422 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 400 of file rtpenc.c.

Referenced by rtp_write_packet().

static int rtp_send_samples ( AVFormatContext s1,
const uint8_t buf1,
int  size,
int  sample_size_bits 
)
static

Definition at line 319 of file rtpenc.c.

Referenced by rtp_write_packet().

static int rtp_write_header ( AVFormatContext s1)
static

Definition at line 88 of file rtpenc.c.

static int rtp_write_packet ( AVFormatContext s1,
AVPacket pkt 
)
static

Definition at line 475 of file rtpenc.c.

static int rtp_write_trailer ( AVFormatContext s1)
static

Definition at line 581 of file rtpenc.c.

Variable Documentation

AVOutputFormat ff_rtp_muxer
Initial value:
= {
.name = "rtp",
.long_name = NULL_IF_CONFIG_SMALL("RTP output"),
.priv_data_size = sizeof(RTPMuxContext),
.audio_codec = AV_CODEC_ID_PCM_MULAW,
.video_codec = AV_CODEC_ID_MPEG4,
.priv_class = &rtp_muxer_class,
}
static int write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: assenc.c:58
static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: rtpenc.c:475
static const AVClass rtp_muxer_class
Definition: rtpenc.c:41
static int rtp_write_header(AVFormatContext *s1)
Definition: rtpenc.c:88
static int write_trailer(AVFormatContext *s)
Definition: assenc.c:67
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
struct RTPMuxContext RTPMuxContext
Definition: rtpenc.h:67
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:380
static int rtp_write_trailer(AVFormatContext *s1)
Definition: rtpenc.c:581

Definition at line 590 of file rtpenc.c.

const AVOption options[]
static
Initial value:
= {
{ "payload_type", "Specify RTP payload type", 0x42, AV_OPT_TYPE_INT, {.i64 = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM },
{ "ssrc", "Stream identifier", 0x42, AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
{ "cname", "CNAME to include in RTCP SR packets", 0x42, AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
{ NULL },
}
static int flags
Definition: log.c:42
NULL
Definition: eval.c:52
#define FF_RTP_FLAG_OPTS(ctx, fieldname)
Definition: rtpenc.h:74

Definition at line 33 of file rtpenc.c.

const AVClass rtp_muxer_class
static
Initial value:
= {
.class_name = "RTP muxer",
.item_name = av_default_item_name,
.option = options,
}
static const AVOption options[]
Definition: rtpenc.c:33
LIBAVUTIL_VERSION_INT
Definition: eval.c:52
av_default_item_name
Definition: dnxhdenc.c:43

Definition at line 41 of file rtpenc.c.