Go to the documentation of this file.
   34     bytestream_put_byte(dst, 
val);
 
   46     bytestream_put_be32(dst, length);
 
   52     bytestream_put_be16(dst, strlen(str));
 
   58     int len1 = 0, len2 = 0;
 
   64     bytestream_put_be16(dst, len1 + len2);
 
   81     bytestream_put_be16(dst, strlen(str));
 
   98     read = bytestream2_get_be64(bc);
 
  104                       int strsize, 
int *length)
 
  108     stringlen = bytestream2_get_be16(bc);
 
  109     if (stringlen + 1 > strsize)
 
  112     if (readsize != stringlen) {
 
  114                "Unable to read as many bytes as AMF string signaled\n");
 
  116     str[readsize] = 
'\0';
 
  117     *length = 
FFMIN(stringlen, readsize);
 
  122                        int strsize, 
int *length)
 
  151     memset(ptr + *nb_prev_pkt, 0, (nb_alloc - *nb_prev_pkt) * 
sizeof(*ptr));
 
  153     *nb_prev_pkt = nb_alloc;
 
  158                         int chunk_size, 
RTMPPacket **prev_pkt, 
int *nb_prev_pkt)
 
  171                                       int *nb_prev_pkt, uint8_t hdr)
 
  175     int channel_id, timestamp, 
size;
 
  184     channel_id = hdr & 0x3F;
 
  186     if (channel_id < 2) { 
 
  190         written += channel_id + 1;
 
  191         channel_id = 
AV_RL16(buf) + 64;
 
  196     prev_pkt = *prev_pkt_ptr;
 
  199     extra = prev_pkt[channel_id].
extra;
 
  203         ts_field = prev_pkt[channel_id].
ts_field;
 
  226     if (ts_field == 0xFFFFFF) {
 
  231         timestamp = ts_field;
 
  234         timestamp += prev_pkt[channel_id].
timestamp;
 
  236     if (prev_pkt[channel_id].
read && 
size != prev_pkt[channel_id].
size) {
 
  240         prev_pkt[channel_id].
read = 0;
 
  244     if (!prev_pkt[channel_id].
read) {
 
  250         prev_pkt[channel_id].
ts_field   = ts_field;
 
  251         prev_pkt[channel_id].
timestamp  = timestamp;
 
  271     prev_pkt[channel_id].
extra      = extra;
 
  292     prev_pkt[channel_id].
read = 0; 
 
  315     uint8_t pkt_hdr[16], *p = pkt_hdr;
 
  325                                          pkt->channel_id)) < 0)
 
  327     prev_pkt = *prev_pkt_ptr;
 
  334     timestamp = 
pkt->timestamp;
 
  338     if (timestamp >= 0xFFFFFF) {
 
  339         pkt->ts_field = 0xFFFFFF;
 
  341         pkt->ts_field = timestamp;
 
  345         if (
pkt->type == prev_pkt[
pkt->channel_id].
type &&
 
  355     if (
pkt->channel_id < 64) {
 
  356         bytestream_put_byte(&p, 
pkt->channel_id | (
mode << 6));
 
  357     } 
else if (
pkt->channel_id < 64 + 256) {
 
  358         bytestream_put_byte(&p, 0               | (
mode << 6));
 
  359         bytestream_put_byte(&p, 
pkt->channel_id - 64);
 
  361         bytestream_put_byte(&p, 1               | (
mode << 6));
 
  362         bytestream_put_le16(&p, 
pkt->channel_id - 64);
 
  365         bytestream_put_be24(&p, 
pkt->ts_field);
 
  367             bytestream_put_be24(&p, 
pkt->
size);
 
  368             bytestream_put_byte(&p, 
pkt->type);
 
  370                 bytestream_put_le32(&p, 
pkt->extra);
 
  373     if (
pkt->ts_field == 0xFFFFFF)
 
  374         bytestream_put_be32(&p, timestamp);
 
  391     written = p - pkt_hdr + 
pkt->
size;
 
  392     while (off < pkt->
size) {
 
  397         if (off < pkt->
size) {
 
  398             uint8_t marker = 0xC0 | 
pkt->channel_id;
 
  402             if (
pkt->ts_field == 0xFFFFFF) {
 
  403                 uint8_t ts_header[4];
 
  415                           int timestamp, 
int size)
 
  423     pkt->channel_id = channel_id;
 
  425     pkt->timestamp  = timestamp;
 
  449     type = bytestream2_get_byte(gb);
 
  452         bytestream2_get_be64(gb);
 
  455         bytestream2_get_byte(gb);
 
  471         nb = bytestream2_get_be32(gb);
 
  476                 int size = bytestream2_get_be16(gb);
 
  478                     bytestream2_get_byte(gb);
 
  500     if (
data >= data_end)
 
  513                            const uint8_t *
name, uint8_t *dst, 
int dst_size)
 
  515     int namelen = strlen(
name);
 
  525     bytestream2_get_byte(gb);
 
  528         int size = bytestream2_get_be16(gb);
 
  535             switch (bytestream2_get_byte(gb)) {
 
  540                 snprintf(dst, dst_size, 
"%s", bytestream2_get_byte(gb) ? 
"true" : 
"false");
 
  543                 len = bytestream2_get_be16(gb);
 
  546                 if (dst_size < 
len + 1)
 
  564                            const uint8_t *
name, uint8_t *dst, 
int dst_size)
 
  568     if (
data >= data_end)
 
  577 static const char* rtmp_packet_type(
int type)
 
  594     default:                     
return "unknown";
 
  598 static void amf_tag_contents(
void *
ctx, 
const uint8_t *
data,
 
  599                              const uint8_t *data_end)
 
  601     unsigned int size, nb = -1;
 
  606     if (
data >= data_end)
 
  633         nb = bytestream_get_be32(&
data);
 
  653             amf_tag_contents(
ctx, 
data, data_end);
 
  655             if (t < 0 || t >= data_end - 
data)
 
  670     av_log(
ctx, 
AV_LOG_DEBUG, 
"RTMP packet type '%s'(%d) for channel %d, timestamp %d, extra field %d size %d\n",
 
  674         while (
src < src_end) {
 
  676             amf_tag_contents(
ctx, 
src, src_end);
 
  697     int len = strlen(str);
 
  710         if ((
size -= 4 + 1) < 0)
 
  712         amf_len = bytestream_get_be32(&
data);
 
  714         if ((
size -= 2 + 1) < 0)
 
  716         amf_len = bytestream_get_be16(&
data);
 
  725     return !memcmp(
data, str, 
len);
 
  
@ RTMP_PT_METADATA
FLV metadata.
 
@ RTMP_PT_FLEX_MESSAGE
Flex shared message.
 
@ AMF_DATA_TYPE_OBJECT_END
 
#define AV_LOG_WARNING
Something somehow does not look correct.
 
@ RTMP_PT_FLEX_OBJECT
Flex shared object.
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
 
@ RTMP_PT_SHARED_OBJ
shared object
 
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
 
@ RTMP_PT_BYTES_READ
number of bytes read
 
RTMPPacketType type
packet payload type
 
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
 
@ RTMP_PT_NOTIFY
some notification
 
static int ffurl_write(URLContext *h, const uint8_t *buf, int size)
Write size bytes from buf to the resource accessed by h.
 
void ff_amf_write_field_name(uint8_t **dst, const char *str)
Write string used as field name in AMF object to buffer.
 
int ff_amf_match_string(const uint8_t *data, int size, const char *str)
Match AMF string with a NULL-terminated string.
 
@ RTMP_PT_WINDOW_ACK_SIZE
window acknowledgement size
 
uint32_t extra
probably an additional channel ID used during streaming data
 
int ff_rtmp_packet_read_internal(URLContext *h, RTMPPacket *p, int chunk_size, RTMPPacket **prev_pkt, int *nb_prev_pkt, uint8_t hdr)
Read internal RTMP packet sent by the server.
 
void ff_amf_write_bool(uint8_t **dst, int val)
Write boolean value in AMF format to buffer.
 
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
 
int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p, int chunk_size, RTMPPacket **prev_pkt, int *nb_prev_pkt)
Read RTMP packet sent by the server.
 
static double val(void *priv, double ch)
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
 
int ff_amf_get_string(GetByteContext *bc, uint8_t *str, int strsize, int *length)
Get AMF string value.
 
static int amf_get_field_value2(GetByteContext *gb, const uint8_t *name, uint8_t *dst, int dst_size)
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
 
void ff_amf_write_string(uint8_t **dst, const char *str)
Write string in AMF format to buffer.
 
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
 
int read
amount read, including headers
 
#define av_assert0(cond)
assert() equivalent, that is always enabled.
 
static int parse_key(DBEContext *s)
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
 
structure for holding RTMP packets
 
RTMPPacketType
known RTMP packet types
 
void ff_amf_write_object_end(uint8_t **dst)
Write marker for end of AMF object to buffer.
 
void ff_rtmp_packet_destroy(RTMPPacket *pkt)
Free RTMP packet.
 
static int amf_tag_skip(GetByteContext *gb)
 
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
 
@ RTMP_PT_USER_CONTROL
user control
 
int ff_rtmp_packet_write(URLContext *h, RTMPPacket *pkt, int chunk_size, RTMPPacket **prev_pkt_ptr, int *nb_prev_pkt)
Send RTMP packet to the server.
 
int size
packet payload size
 
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
 
static av_always_inline int bytestream2_tell(GetByteContext *g)
 
int ff_amf_get_field_value(const uint8_t *data, const uint8_t *data_end, const uint8_t *name, uint8_t *dst, int dst_size)
Retrieve value of given AMF object field in string form.
 
@ RTMP_PT_INVOKE
invoke some stream action
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
 
void ff_amf_write_null(uint8_t **dst)
Write AMF NULL value to buffer.
 
uint32_t ts_field
24-bit timestamp or increment to the previous one, in milliseconds (latter only for media packets)....
 
void ff_rtmp_packet_dump(void *ctx, RTMPPacket *p)
Print information and contents of RTMP packet.
 
static int rtmp_packet_read_one_chunk(URLContext *h, RTMPPacket *p, int chunk_size, RTMPPacket **prev_pkt_ptr, int *nb_prev_pkt, uint8_t hdr)
 
int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type, int timestamp, int size)
Create new RTMP packet with given attributes.
 
int ff_rtmp_check_alloc_array(RTMPPacket **prev_pkt, int *nb_prev_pkt, int channel)
Enlarge the prev_pkt array to fit the given channel.
 
static av_always_inline uint64_t av_double2int(double f)
Reinterpret a double as a 64-bit integer.
 
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
 
#define i(width, name, range_min, range_max)
 
uint32_t timestamp
packet full timestamp
 
@ RTMP_PT_SET_PEER_BW
peer bandwidth
 
@ AMF_DATA_TYPE_MIXEDARRAY
 
void ff_amf_write_string2(uint8_t **dst, const char *str1, const char *str2)
Write a string consisting of two parts in AMF format to a buffer.
 
int offset
amount of data read so far
 
int ff_amf_read_number(GetByteContext *bc, double *val)
Read AMF number value.
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
 
void ff_amf_write_number(uint8_t **dst, double val)
Write number in AMF format to buffer.
 
int channel_id
RTMP channel ID (nothing to do with audio/video channels though)
 
void ff_amf_write_array_start(uint8_t **dst, uint32_t length)
Write marker and length for AMF array to buffer.
 
@ RTMP_PS_EIGHTBYTES
packet has 8-byte header
 
uint8_t * data
packet payload
 
void ff_amf_write_object_start(uint8_t **dst)
Write marker for AMF object to buffer.
 
@ AMF_DATA_TYPE_LONG_STRING
 
int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
Read as many bytes as possible (up to size), calling the read function multiple times if necessary.
 
@ RTMP_PS_ONEBYTE
packet is really a next chunk of a packet
 
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
 
@ RTMP_PT_AUDIO
audio packet
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_RB24
 
int ff_amf_read_null(GetByteContext *bc)
Read AMF NULL value.
 
@ RTMP_PS_TWELVEBYTES
packet has 12-byte header
 
@ RTMP_PT_VIDEO
video packet
 
@ RTMP_PS_FOURBYTES
packet has 4-byte header
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_RB64
 
@ RTMP_PT_FLEX_STREAM
Flex shared stream.
 
static uint32_t BS_FUNC() read(BSCTX *bc, unsigned int n)
Return n bits from the buffer, n has to be in the 0-32 range.
 
int ff_amf_tag_size(const uint8_t *data, const uint8_t *data_end)
Calculate number of bytes taken by first AMF entry in data.
 
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
 
static int ffurl_read(URLContext *h, uint8_t *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
 
@ RTMP_PT_CHUNK_SIZE
chunk size change
 
int ff_amf_read_string(GetByteContext *bc, uint8_t *str, int strsize, int *length)
Read AMF string value.