36 bytestream_put_byte(
dst,
val);
48 bytestream_put_be32(
dst, length);
54 bytestream_put_be16(
dst, strlen(str));
60 int len1 = 0, len2 = 0;
66 bytestream_put_be16(
dst, len1 + len2);
83 bytestream_put_be16(
dst, strlen(str));
100 read = bytestream2_get_be64(bc);
106 int strsize,
int *length)
110 stringlen = bytestream2_get_be16(bc);
111 if (stringlen + 1 > strsize)
114 if (readsize != stringlen) {
116 "Unable to read as many bytes as AMF string signaled\n");
118 str[readsize] =
'\0';
119 *length =
FFMIN(stringlen, readsize);
124 int strsize,
int *length)
153 memset(ptr + *nb_prev_pkt, 0, (nb_alloc - *nb_prev_pkt) *
sizeof(*ptr));
155 *nb_prev_pkt = nb_alloc;
160 int chunk_size,
RTMPPacket **prev_pkt,
int *nb_prev_pkt)
173 int *nb_prev_pkt, uint8_t hdr)
177 int channel_id, timestamp,
size;
186 channel_id = hdr & 0x3F;
188 if (channel_id < 2) {
192 written += channel_id + 1;
193 channel_id =
AV_RL16(buf) + 64;
198 prev_pkt = *prev_pkt_ptr;
201 extra = prev_pkt[channel_id].
extra;
205 ts_field = prev_pkt[channel_id].
ts_field;
228 if (ts_field == 0xFFFFFF) {
233 timestamp = ts_field;
236 timestamp += prev_pkt[channel_id].
timestamp;
238 if (prev_pkt[channel_id].
read &&
size != prev_pkt[channel_id].
size) {
242 prev_pkt[channel_id].
read = 0;
246 if (!prev_pkt[channel_id].
read) {
252 prev_pkt[channel_id].
ts_field = ts_field;
253 prev_pkt[channel_id].
timestamp = timestamp;
257 p->data = prev->
data;
258 p->size = prev->
size;
260 p->type = prev->
type;
262 p->extra = prev->
extra;
264 p->read = prev->
read + written;
273 prev_pkt[channel_id].
extra = extra;
287 prev->
data = p->data;
288 prev->
read = p->read;
294 prev_pkt[channel_id].
read = 0;
305 if (ret > 0 || ret !=
AVERROR(EAGAIN))
317 uint8_t pkt_hdr[16], *p = pkt_hdr;
327 pkt->channel_id)) < 0)
329 prev_pkt = *prev_pkt_ptr;
336 timestamp =
pkt->timestamp;
340 if (timestamp >= 0xFFFFFF) {
341 pkt->ts_field = 0xFFFFFF;
343 pkt->ts_field = timestamp;
347 if (
pkt->type == prev_pkt[
pkt->channel_id].
type &&
348 pkt->size == prev_pkt[
pkt->channel_id].
size) {
357 if (
pkt->channel_id < 64) {
358 bytestream_put_byte(&p,
pkt->channel_id | (
mode << 6));
359 }
else if (
pkt->channel_id < 64 + 256) {
360 bytestream_put_byte(&p, 0 | (
mode << 6));
361 bytestream_put_byte(&p,
pkt->channel_id - 64);
363 bytestream_put_byte(&p, 1 | (
mode << 6));
364 bytestream_put_le16(&p,
pkt->channel_id - 64);
367 bytestream_put_be24(&p,
pkt->ts_field);
369 bytestream_put_be24(&p,
pkt->size);
370 bytestream_put_byte(&p,
pkt->type);
372 bytestream_put_le32(&p,
pkt->extra);
375 if (
pkt->ts_field == 0xFFFFFF)
376 bytestream_put_be32(&p, timestamp);
393 written = p - pkt_hdr +
pkt->size;
394 while (off < pkt->
size) {
395 int towrite =
FFMIN(chunk_size,
pkt->size - off);
399 if (off < pkt->
size) {
400 uint8_t marker = 0xC0 |
pkt->channel_id;
404 if (
pkt->ts_field == 0xFFFFFF) {
405 uint8_t ts_header[4];
417 int timestamp,
int size)
425 pkt->channel_id = channel_id;
427 pkt->timestamp = timestamp;
455 type = bytestream2_get_byte(gb);
458 bytestream2_get_be64(gb);
461 bytestream2_get_byte(gb);
476 nb = bytestream2_get_be32(gb);
482 int size = bytestream2_get_be16(gb);
484 bytestream2_get_byte(gb);
506 if (
data >= data_end)
519 const uint8_t *
name, uint8_t *
dst,
int dst_size)
521 int namelen = strlen(
name);
531 bytestream2_get_byte(gb);
534 int size = bytestream2_get_be16(gb);
541 switch (bytestream2_get_byte(gb)) {
546 snprintf(
dst, dst_size,
"%s", bytestream2_get_byte(gb) ?
"true" :
"false");
549 len = bytestream2_get_be16(gb);
552 if (dst_size <
len + 1)
570 const uint8_t *
name, uint8_t *
dst,
int dst_size)
574 if (
data >= data_end)
583static const char* rtmp_packet_type(
int type)
600 default:
return "unknown";
604static void amf_tag_contents(
void *
ctx,
const uint8_t *
data,
605 const uint8_t *data_end,
int depth)
607 unsigned int size, nb = -1;
617 if (
data >= data_end)
645 nb = bytestream_get_be32(&
data);
666 amf_tag_contents(
ctx,
data, data_end, depth + 1);
668 if (t < 0 || t >= data_end -
data)
683 av_log(
ctx,
AV_LOG_DEBUG,
"RTMP packet type '%s'(%d) for channel %d, timestamp %d, extra field %d size %d\n",
684 rtmp_packet_type(
p->type),
p->type,
p->channel_id,
p->timestamp,
p->extra,
p->size);
686 uint8_t *
src =
p->data, *src_end =
p->data +
p->size;
687 while (
src < src_end) {
689 amf_tag_contents(
ctx,
src, src_end, 0);
701 for (
i = 0;
i <
p->size;
i++)
710 int len = strlen(str);
723 if ((
size -= 4 + 1) < 0)
725 amf_len = bytestream_get_be32(&
data);
727 if ((
size -= 2 + 1) < 0)
729 amf_len = bytestream_get_be16(&
data);
738 return !memcmp(
data, str,
len);
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static double val(void *priv, double ch)
static AVFormatContext * ctx
#define av_assert0(cond)
assert() equivalent, that is always enabled.
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.
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.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
static av_always_inline int bytestream2_tell(const GetByteContext *g)
#define i(width, name, range_min, range_max)
static int parse_key(DBEContext *s)
channel
Use these values when setting the channel map with ebur128_set_channel().
@ AMF_DATA_TYPE_OBJECT_END
@ AMF_DATA_TYPE_LONG_STRING
@ AMF_DATA_TYPE_MIXEDARRAY
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
static av_always_inline uint64_t av_double2int(double f)
Reinterpret a double as a 64-bit integer.
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Macro definitions for various function/variable attributes.
Memory handling functions.
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
void ff_amf_write_string(uint8_t **dst, const char *str)
Write string in AMF format to buffer.
void ff_amf_write_null(uint8_t **dst)
Write AMF NULL value to buffer.
void ff_amf_write_number(uint8_t **dst, double val)
Write number in AMF format to buffer.
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 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_write(URLContext *h, RTMPPacket *pkt, int chunk_size, RTMPPacket **prev_pkt_ptr, int *nb_prev_pkt)
Send RTMP packet to the server.
void ff_amf_write_object_start(uint8_t **dst)
Write marker for AMF object to buffer.
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 ff_amf_get_string(GetByteContext *bc, uint8_t *str, int strsize, int *length)
Get AMF string value.
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.
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.
int ff_amf_read_null(GetByteContext *bc)
Read AMF NULL value.
static int amf_get_field_value2(GetByteContext *gb, const uint8_t *name, uint8_t *dst, int dst_size)
void ff_amf_write_array_start(uint8_t **dst, uint32_t length)
Write marker and length for AMF array to buffer.
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 ff_amf_write_bool(uint8_t **dst, int val)
Write boolean value in AMF format to buffer.
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.
int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type, int timestamp, int size)
Create new RTMP packet with given attributes.
void ff_rtmp_packet_destroy(RTMPPacket *pkt)
Free RTMP packet.
int ff_amf_match_string(const uint8_t *data, int size, const char *str)
Match AMF string with a NULL-terminated string.
void ff_amf_write_object_end(uint8_t **dst)
Write marker for end of AMF object to buffer.
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_read_string(GetByteContext *bc, uint8_t *str, int strsize, int *length)
Read AMF string value.
static int amf_tag_skip(GetByteContext *gb, int depth)
int ff_amf_read_number(GetByteContext *bc, double *val)
Read AMF number value.
@ RTMP_PS_TWELVEBYTES
packet has 12-byte header
@ RTMP_PS_EIGHTBYTES
packet has 8-byte header
@ RTMP_PS_FOURBYTES
packet has 4-byte header
@ RTMP_PS_ONEBYTE
packet is really a next chunk of a packet
void ff_rtmp_packet_dump(void *ctx, RTMPPacket *p)
Print information and contents of RTMP packet.
RTMPPacketType
known RTMP packet types
@ RTMP_PT_FLEX_OBJECT
Flex shared object.
@ RTMP_PT_USER_CONTROL
user control
@ RTMP_PT_NOTIFY
some notification
@ RTMP_PT_SHARED_OBJ
shared object
@ RTMP_PT_CHUNK_SIZE
chunk size change
@ RTMP_PT_INVOKE
invoke some stream action
@ RTMP_PT_BYTES_READ
number of bytes read
@ RTMP_PT_SET_PEER_BW
peer bandwidth
@ RTMP_PT_WINDOW_ACK_SIZE
window acknowledgement size
@ RTMP_PT_VIDEO
video packet
@ RTMP_PT_FLEX_STREAM
Flex shared stream.
@ RTMP_PT_METADATA
FLV metadata.
@ RTMP_PT_AUDIO
audio packet
@ RTMP_PT_FLEX_MESSAGE
Flex shared message.
structure for holding RTMP packets
int size
packet payload size
uint32_t extra
probably an additional channel ID used during streaming data
RTMPPacketType type
packet payload type
uint32_t ts_field
24-bit timestamp or increment to the previous one, in milliseconds (latter only for media packets)....
uint32_t timestamp
packet full timestamp
uint8_t * data
packet payload
int channel_id
RTMP channel ID (nothing to do with audio/video channels though)
int read
amount read, including headers
int offset
amount of data read so far
unbuffered private I/O API
static int ffurl_write(URLContext *h, const uint8_t *buf, int size)
Write size bytes from buf to the resource accessed by h.
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.