Home
last modified time | relevance | path

Searched refs:AMF_DecodeInt24 (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/rtmpdump/git/
H A Drtmpdump.c206 uint32_t dataSize = AMF_DecodeInt24(hbuf + 1); in OpenResumeFile()
353 uint32_t ts = AMF_DecodeInt24(buffer + 4); in GetLastKeyframe()
391 *dSeek = AMF_DecodeInt24(buffer + 4); // set seek position to keyframe tmestamp in GetLastKeyframe()
H A Drtmpsuck.c637 …uint32_t dataSize = AMF_DecodeInt24(packetBody + pos + 1); // size without header (11) and without… in WriteStream()
638 *nTimeStamp = AMF_DecodeInt24(packetBody + pos + 4); in WriteStream()
/OK3568_Linux_fs/buildroot/dl/rtmpdump/git/librtmp/
H A Damf.h99 unsigned int AMF_DecodeInt24(const char *data);
H A Drtmp.c1347 …uint32_t dataSize = AMF_DecodeInt24(packet->m_body + pos + 1); /* size without header (11) and pre… in RTMP_ClientPacket()
1360 nTimeStamp = AMF_DecodeInt24(packet->m_body + pos + 4); in RTMP_ClientPacket()
3641 packet->m_nTimeStamp = AMF_DecodeInt24(header); in RTMP_ReadPacket()
3647 packet->m_nBodySize = AMF_DecodeInt24(header + 3); in RTMP_ReadPacket()
4642 AMF_DecodeInt24(packetBody + pos + 1); in Read_1_Packet()
4643 ts = AMF_DecodeInt24(packetBody + pos + 4); in Read_1_Packet()
4841 uint32_t ts = AMF_DecodeInt24(packetBody+2); /* composition time */ in Read_1_Packet()
4871 nTimeStamp = AMF_DecodeInt24(packetBody + 4); in Read_1_Packet()
4878 uint32_t dataSize = AMF_DecodeInt24(packetBody + pos + 1); in Read_1_Packet()
4879 nTimeStamp = AMF_DecodeInt24(packetBody + pos + 4); in Read_1_Packet()
[all …]
H A Damf.c50 AMF_DecodeInt24(const char *data) in AMF_DecodeInt24() function
1192 if (nSize >=3 && AMF_DecodeInt24(pBuffer) == AMF_OBJECT_END) in AMF_Decode()