2018-05-29 08:56:36 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
rtmp.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Saxon Nelson-Milton <saxon@ausocean.org>
|
|
|
|
Dan Kortschak <dan@ausocean.org>
|
2018-07-18 06:57:40 +03:00
|
|
|
Jake Lane <jake@ausocean.org>
|
2018-05-29 08:56:36 +03:00
|
|
|
|
|
|
|
LICENSE
|
|
|
|
rtmp.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package rtmp
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -I/usr/local/include/librtmp
|
2018-07-19 10:13:37 +03:00
|
|
|
#cgo LDFLAGS: -L/usr/local/lib -lrtmp
|
2018-05-29 08:56:36 +03:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2018-07-12 17:17:11 +03:00
|
|
|
#include <string.h>
|
2018-05-29 08:56:36 +03:00
|
|
|
#include <rtmp.h>
|
2018-07-19 08:53:06 +03:00
|
|
|
#include <sys/socket.h>
|
2018-07-22 11:48:46 +03:00
|
|
|
#include <sys/types.h>
|
2018-07-21 02:24:16 +03:00
|
|
|
#include <netinet/in.h>
|
2018-07-22 11:48:46 +03:00
|
|
|
#include <netinet/tcp.h>
|
2018-05-29 08:56:36 +03:00
|
|
|
|
2018-07-17 13:05:25 +03:00
|
|
|
typedef enum {
|
|
|
|
RTMPT_OPEN=0, RTMPT_SEND, RTMPT_IDLE, RTMPT_CLOSE
|
|
|
|
} RTMPTCmd;
|
|
|
|
|
2018-07-21 02:24:16 +03:00
|
|
|
typedef struct sockaddr_in sockaddr_in;
|
|
|
|
typedef struct sockaddr sockaddr;
|
|
|
|
int add_addr_info(struct sockaddr_in *service, AVal *host, int port);
|
2018-05-30 09:22:33 +03:00
|
|
|
RTMP* start_session(RTMP* rtmp, char* url, uint connect_timeout);
|
2018-05-29 08:56:36 +03:00
|
|
|
int write_frame(RTMP* rtmp, char* data, uint data_length);
|
|
|
|
int end_session(RTMP* rtmp);
|
2018-07-16 06:46:40 +03:00
|
|
|
void AV_queue(RTMP_METHOD **vals, int *num, AVal *av, int txn);
|
2018-07-23 02:08:22 +03:00
|
|
|
int writeN(RTMP *r, const char *buffer, int n);
|
2018-07-16 12:20:17 +03:00
|
|
|
int EncodeInt32LE(char *output, int nVal);
|
2018-07-17 13:05:25 +03:00
|
|
|
int HTTP_Post(RTMP *r, RTMPTCmd cmd, const char *buf, int len);
|
2018-05-29 08:56:36 +03:00
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
2018-07-16 06:30:58 +03:00
|
|
|
"errors"
|
2018-07-18 05:51:31 +03:00
|
|
|
"fmt"
|
2018-07-16 06:30:58 +03:00
|
|
|
"log"
|
|
|
|
"math"
|
2018-07-24 15:00:50 +03:00
|
|
|
"math/rand"
|
2018-07-14 08:19:21 +03:00
|
|
|
"reflect"
|
2018-07-14 08:29:00 +03:00
|
|
|
"strconv"
|
|
|
|
"unsafe"
|
2018-07-24 15:00:50 +03:00
|
|
|
|
|
|
|
"github.com/chamaken/cgolmnl/inet"
|
2018-05-29 08:56:36 +03:00
|
|
|
)
|
|
|
|
|
2018-07-17 13:05:25 +03:00
|
|
|
const (
|
|
|
|
RTMPT_OPEN = iota
|
|
|
|
RTMPT_SEND
|
|
|
|
RTMPT_IDLE
|
|
|
|
RTMPT_CLOSE
|
|
|
|
)
|
|
|
|
|
2018-07-13 18:43:17 +03:00
|
|
|
const (
|
2018-07-19 09:03:33 +03:00
|
|
|
RTMP_PACKET_TYPE_CHUNK_SIZE = 0x01
|
|
|
|
RTMP_PACKET_TYPE_BYTES_READ_REPORT = 0x03
|
|
|
|
RTMP_PACKET_TYPE_CONTROL = 0x04
|
|
|
|
RTMP_PACKET_TYPE_SERVER_BW = 0x05
|
|
|
|
RTMP_PACKET_TYPE_CLIENT_BW = 0x06
|
|
|
|
RTMP_PACKET_TYPE_AUDIO = 0x08
|
|
|
|
RTMP_PACKET_TYPE_VIDEO = 0x09
|
|
|
|
RTMP_PACKET_TYPE_FLEX_STREAM_SEND = 0x0F
|
|
|
|
RTMP_PACKET_TYPE_FLEX_SHARED_OBJECT = 0x10
|
|
|
|
RTMP_PACKET_TYPE_FLEX_MESSAGE = 0x11
|
|
|
|
RTMP_PACKET_TYPE_INFO = 0x12
|
|
|
|
RTMP_PACKET_TYPE_SHARED_OBJECT = 0x13
|
|
|
|
RTMP_PACKET_TYPE_INVOKE = 0x14
|
|
|
|
RTMP_PACKET_TYPE_FLASH_VIDEO = 0x16
|
|
|
|
RTMP_MAX_HEADER_SIZE = 18
|
|
|
|
RTMP_PACKET_SIZE_LARGE = 0
|
|
|
|
RTMP_PACKET_SIZE_MEDIUM = 1
|
|
|
|
RTMP_PACKET_SIZE_SMALL = 2
|
|
|
|
RTMP_PACKET_SIZE_MINIMUM = 3
|
|
|
|
RTMP_READ_HEADER = 0x01
|
|
|
|
RTMP_READ_RESUME = 0x02
|
|
|
|
RTMP_READ_NO_IGNORE = 0x04
|
|
|
|
RTMP_READ_GOTKF = 0x08
|
|
|
|
RTMP_READ_GOTFLVK = 0x10
|
|
|
|
RTMP_READ_SEEKING = 0x20
|
|
|
|
RTMP_READ_COMPLETE = -3
|
|
|
|
RTMP_READ_ERROR = -2
|
|
|
|
RTMP_READ_EOF = -1
|
|
|
|
RTMP_READ_IGNORE = 0
|
|
|
|
RTMP_LF_AUTH = 0x0001 /* using auth param */
|
|
|
|
RTMP_LF_LIVE = 0x0002 /* stream is live */
|
|
|
|
RTMP_LF_SWFV = 0x0004 /* do SWF verification */
|
|
|
|
RTMP_LF_PLST = 0x0008 /* send playlist before play */
|
|
|
|
RTMP_LF_BUFX = 0x0010 /* toggle stream on BufferEmpty msg */
|
|
|
|
RTMP_LF_FTCU = 0x0020 /* free tcUrl on close */
|
|
|
|
RTMP_LF_FAPU = 0x0040 /* free app on close */
|
|
|
|
RTMP_FEATURE_HTTP = 0x01
|
|
|
|
RTMP_FEATURE_ENC = 0x02
|
|
|
|
RTMP_FEATURE_SSL = 0x04
|
|
|
|
RTMP_FEATURE_MFP = 0x08 /* not yet supported */
|
|
|
|
RTMP_FEATURE_WRITE = 0x10 /* publish, not play */
|
|
|
|
RTMP_FEATURE_HTTP2 = 0x20 /* server-side rtmpt */
|
|
|
|
RTMP_PROTOCOL_UNDEFINED = -1
|
|
|
|
RTMP_PROTOCOL_RTMP = 0
|
|
|
|
RTMP_PROTOCOL_RTMPE = RTMP_FEATURE_ENC
|
|
|
|
RTMP_PROTOCOL_RTMPT = RTMP_FEATURE_HTTP
|
|
|
|
RTMP_PROTOCOL_RTMPS = RTMP_FEATURE_SSL
|
|
|
|
RTMP_PROTOCOL_RTMPTE = (RTMP_FEATURE_HTTP | RTMP_FEATURE_ENC)
|
|
|
|
RTMP_PROTOCOL_RTMPTS = (RTMP_FEATURE_HTTP | RTMP_FEATURE_SSL)
|
|
|
|
RTMP_PROTOCOL_RTMFP = RTMP_FEATURE_MFP
|
|
|
|
RTMP_DEFAULT_CHUNKSIZE = 128
|
|
|
|
RTMP_BUFFER_CACHE_SIZE = (16 * 1024)
|
|
|
|
RTMP_CHANNELS = 65600
|
|
|
|
RTMP_SWF_HASHLEN = 32
|
2018-07-22 17:44:23 +03:00
|
|
|
RTMP_SIG_SIZE = 1536
|
|
|
|
RTMP_LARGE_HEADER_SIZE = 12
|
2018-07-18 18:24:36 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
minDataSize = 11
|
|
|
|
debugMode = false
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
byteSize = 1
|
|
|
|
int32Size = 4
|
|
|
|
int64Size = 8
|
2018-07-13 18:43:17 +03:00
|
|
|
)
|
|
|
|
|
2018-07-15 10:20:56 +03:00
|
|
|
// av_setDataFrame is a static const global in rtmp.c
|
2018-07-26 10:36:44 +03:00
|
|
|
var (
|
|
|
|
setDataFrame = AVC("@setDataFrame")
|
|
|
|
av_connect = AVC("connect")
|
|
|
|
av_app = AVC("app")
|
|
|
|
av_type = AVC("type")
|
|
|
|
av_nonprivate = AVC("nonprivate")
|
|
|
|
av_flashVer = AVC("flashVer")
|
|
|
|
av_swfUrl = AVC("swfUrl")
|
|
|
|
av_tcUrl = AVC("tcUrl")
|
|
|
|
av_fpad = AVC("fpad")
|
|
|
|
av_capabilities = AVC("capabilities")
|
|
|
|
av_audioCodecs = AVC("audioCodecs")
|
|
|
|
av_videoCodecs = AVC("videoCodecs")
|
|
|
|
av_videoFunction = AVC("videoFunction")
|
|
|
|
av_pageUrl = AVC("av_pageUrl")
|
|
|
|
av_objectEncoding = AVC("av_objectEncoding")
|
|
|
|
)
|
2018-07-16 06:30:58 +03:00
|
|
|
|
2018-07-18 05:26:32 +03:00
|
|
|
var packetSize = [...]int{12, 8, 4, 1}
|
2018-07-16 08:07:26 +03:00
|
|
|
|
2018-07-19 18:35:21 +03:00
|
|
|
var RTMPProtocolStringsLower = [...]string{
|
|
|
|
"rtmp",
|
|
|
|
"rtmpt",
|
|
|
|
"rtmpe",
|
|
|
|
"rtmpte",
|
|
|
|
"rtmps",
|
|
|
|
"rtmpts",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"rtmfp",
|
|
|
|
}
|
|
|
|
|
2018-05-29 08:56:36 +03:00
|
|
|
// Session provides an interface for sending flv tags over rtmp.
|
|
|
|
type Session interface {
|
2018-06-17 14:15:48 +03:00
|
|
|
Open() error
|
2018-06-04 04:59:35 +03:00
|
|
|
Write([]byte) (int, error)
|
2018-05-29 08:56:36 +03:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
// session provides parameters required for an rtmp communication session.
|
|
|
|
type session struct {
|
2018-07-11 18:20:18 +03:00
|
|
|
rtmp *C.RTMP
|
2018-05-29 08:56:36 +03:00
|
|
|
url string
|
|
|
|
timeout uint
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:10:36 +03:00
|
|
|
type RTMP struct {
|
|
|
|
m_inChunkSize int
|
|
|
|
m_outChunkSize int
|
|
|
|
m_nBWCheckCounter int
|
|
|
|
m_nBytesIn int
|
|
|
|
m_nBytesInSent int
|
|
|
|
m_nBufferMS int
|
|
|
|
m_stream_id int
|
|
|
|
m_mediaChannel int
|
|
|
|
m_mediaStamp uint32
|
|
|
|
m_pauseStamp uint32
|
|
|
|
m_pausing int
|
|
|
|
m_nServerBw int
|
|
|
|
m_nClientBw int
|
|
|
|
m_nClientBw2 uint8
|
|
|
|
m_bPlaying uint8
|
|
|
|
m_bSendEncoding uint8
|
|
|
|
m_bSendCounter uint8
|
|
|
|
m_numInvokes int
|
|
|
|
m_numCalls int
|
2018-07-18 18:24:36 +03:00
|
|
|
m_methodCalls *RTMP_METHOD
|
2018-07-18 18:10:36 +03:00
|
|
|
m_channelsAllocatedIn int
|
|
|
|
m_channelsAllocatedOut int
|
2018-07-18 18:15:01 +03:00
|
|
|
m_vecChannelsIn **RTMPPacket
|
|
|
|
m_vecChannelsOut **RTMPPacket
|
2018-07-18 18:10:36 +03:00
|
|
|
m_channelTimestamp *int
|
|
|
|
m_fAudioCodecs float64
|
|
|
|
m_fVideoCodecs float64
|
|
|
|
m_fEncoding float64
|
|
|
|
m_fDuration float64
|
|
|
|
m_msgCounter int
|
|
|
|
m_polling int
|
|
|
|
m_resplen int
|
|
|
|
m_unackd int
|
2018-07-18 18:24:36 +03:00
|
|
|
m_clientID AVal
|
2018-07-18 18:33:59 +03:00
|
|
|
m_read RTMP_READ
|
|
|
|
m_write RTMPPacket
|
2018-07-18 18:54:47 +03:00
|
|
|
m_sb RTMPSockBuf
|
2018-07-18 18:57:56 +03:00
|
|
|
Link RTMP_LNK
|
2018-07-18 18:10:36 +03:00
|
|
|
}
|
|
|
|
|
2018-07-18 18:13:59 +03:00
|
|
|
type RTMPPacket struct {
|
|
|
|
m_headerType uint8
|
|
|
|
m_packetType uint8
|
|
|
|
m_hasAbsTimestamp uint8
|
|
|
|
m_nChannel int
|
|
|
|
m_nTimeStamp uint32
|
|
|
|
m_nInfoField2 int32
|
|
|
|
m_nBodySize uint32
|
|
|
|
m_nBytesRead uint32
|
2018-07-18 18:54:47 +03:00
|
|
|
m_chunk *RTMPChunk
|
2018-07-18 18:13:59 +03:00
|
|
|
m_body *byte
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:15:01 +03:00
|
|
|
type RTMP_METHOD struct {
|
2018-07-18 18:24:36 +03:00
|
|
|
name AVal
|
2018-07-18 18:15:01 +03:00
|
|
|
num int
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:16:52 +03:00
|
|
|
type AVal struct {
|
|
|
|
av_val *byte
|
|
|
|
av_len int
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:24:36 +03:00
|
|
|
type RTMP_READ struct {
|
|
|
|
buf *byte
|
|
|
|
bufpos *byte
|
|
|
|
buflen uint
|
|
|
|
timestamp uint32
|
|
|
|
dataType uint8
|
|
|
|
flags uint8
|
|
|
|
status int8
|
|
|
|
initialFrameType uint8
|
|
|
|
nResumeTS uint32
|
|
|
|
metaHeader *byte
|
|
|
|
initialFrame *byte
|
|
|
|
nMetaHeaderSize uint32
|
|
|
|
nInitialFrameSize uint32
|
|
|
|
nIgnoredFrameCounter uint32
|
|
|
|
nIgnoredFlvFrameCounter uint32
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:33:59 +03:00
|
|
|
type RTMPSockBuf struct {
|
|
|
|
sb_socket int
|
|
|
|
sb_size int
|
|
|
|
sb_start *byte
|
2018-07-22 11:48:46 +03:00
|
|
|
sb_buf [RTMP_BUFFER_CACHE_SIZE]byte // port const
|
2018-07-18 18:33:59 +03:00
|
|
|
sb_timedout int
|
|
|
|
sb_ssl uintptr
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:41:55 +03:00
|
|
|
type RTMPChunk struct {
|
|
|
|
c_headerSize int
|
|
|
|
c_chunkSize int
|
|
|
|
c_chunk *byte
|
2018-07-19 09:08:10 +03:00
|
|
|
c_header [RTMP_MAX_HEADER_SIZE]byte
|
2018-07-18 18:41:55 +03:00
|
|
|
}
|
|
|
|
|
2018-07-18 22:18:31 +03:00
|
|
|
type ushort [2]byte
|
|
|
|
|
2018-07-18 18:54:47 +03:00
|
|
|
type RTMP_LNK struct {
|
|
|
|
hostname AVal
|
|
|
|
sockshost AVal
|
|
|
|
playpath0 AVal
|
|
|
|
playpath AVal
|
|
|
|
tcUrl AVal
|
|
|
|
swfUrl AVal
|
|
|
|
pageUrl AVal
|
|
|
|
app AVal
|
|
|
|
auth AVal
|
|
|
|
flashVer AVal
|
|
|
|
subscribepath AVal
|
|
|
|
usherToken AVal
|
|
|
|
token AVal
|
|
|
|
pubUser AVal
|
|
|
|
pubPasswd AVal
|
2018-07-18 18:57:56 +03:00
|
|
|
extras AMFObject
|
2018-07-18 18:54:47 +03:00
|
|
|
edepth int
|
|
|
|
seekTime int
|
|
|
|
stopTime int
|
|
|
|
lFlags int
|
|
|
|
swfAge int
|
|
|
|
protocol int
|
|
|
|
timeout int
|
|
|
|
pFlags int
|
2018-07-18 22:18:31 +03:00
|
|
|
socksport ushort
|
|
|
|
port ushort
|
2018-07-18 18:54:47 +03:00
|
|
|
}
|
|
|
|
|
2018-07-18 18:57:56 +03:00
|
|
|
type AMFObject struct {
|
|
|
|
o_num int
|
|
|
|
o_props *C.AMFObjectProperty
|
|
|
|
}
|
|
|
|
|
2018-05-29 08:56:36 +03:00
|
|
|
var _ Session = (*session)(nil)
|
|
|
|
|
|
|
|
// NewSession returns a new session.
|
|
|
|
func NewSession(url string, connectTimeout uint) Session {
|
|
|
|
return &session{
|
|
|
|
url: url,
|
|
|
|
timeout: connectTimeout,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-17 14:15:48 +03:00
|
|
|
// Open establishes an rtmp connection with the url passed into the
|
2018-05-29 08:56:36 +03:00
|
|
|
// constructor
|
2018-06-17 14:15:48 +03:00
|
|
|
func (s *session) Open() error {
|
2018-05-30 09:22:33 +03:00
|
|
|
if s.rtmp != nil {
|
2018-05-29 08:56:36 +03:00
|
|
|
return errors.New("rtmp: attempt to start already running session")
|
|
|
|
}
|
2018-06-20 07:26:40 +03:00
|
|
|
var err error
|
2018-07-19 09:35:14 +03:00
|
|
|
s.rtmp, err = startSession(s.rtmp, s.url, uint32(s.timeout))
|
2018-05-30 09:22:33 +03:00
|
|
|
if s.rtmp == nil {
|
2018-06-20 07:26:40 +03:00
|
|
|
return err
|
2018-05-29 08:56:36 +03:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-19 18:35:21 +03:00
|
|
|
// Close terminates the rtmp connection
|
|
|
|
func (s *session) Close() error {
|
|
|
|
if s.rtmp == nil {
|
|
|
|
return Err(3)
|
|
|
|
}
|
|
|
|
ret := endSession(s.rtmp)
|
|
|
|
s.rtmp = nil
|
|
|
|
if ret != 0 {
|
|
|
|
return Err(ret)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write writes a frame (flv tag) to the rtmp connection
|
|
|
|
func (s *session) Write(data []byte) (int, error) {
|
|
|
|
if s.rtmp == nil {
|
|
|
|
return 0, Err(3)
|
|
|
|
}
|
2018-07-22 17:01:19 +03:00
|
|
|
|
2018-07-28 08:38:09 +03:00
|
|
|
// if rtmpIsConnected(s.rtmp) == 0 {
|
|
|
|
if C.RTMP_IsConnected(s.rtmp) == 0 {
|
2018-07-19 18:35:21 +03:00
|
|
|
return 0, Err(1)
|
|
|
|
}
|
2018-07-28 08:38:09 +03:00
|
|
|
|
|
|
|
// if rtmpWrite(s.rtmp, data) == 0 {
|
|
|
|
if C.RTMP_Write(s.rtmp, (*C.char)(unsafe.Pointer(&data[0])), C.int(len(data))) == 0 {
|
2018-07-19 18:35:21 +03:00
|
|
|
return 0, Err(2)
|
|
|
|
}
|
|
|
|
return len(data), nil
|
|
|
|
}
|
|
|
|
|
2018-07-22 16:36:10 +03:00
|
|
|
func rtmpIsConnected(r *C.RTMP) int {
|
|
|
|
if r.m_sb.sb_socket != -1 {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-19 09:35:14 +03:00
|
|
|
func startSession(rtmp *C.RTMP, u string, timeout uint32) (*C.RTMP, error) {
|
|
|
|
connect_timeout := C.int(timeout)
|
2018-07-28 08:50:30 +03:00
|
|
|
rtmp = rtmpAlloc()
|
|
|
|
//rtmp = C.RTMP_Alloc()
|
2018-07-28 08:52:15 +03:00
|
|
|
rtmpInit(rtmp)
|
|
|
|
//C.RTMP_Init(rtmp)
|
2018-07-19 09:35:14 +03:00
|
|
|
rtmp.Link.timeout = connect_timeout
|
2018-07-28 08:53:25 +03:00
|
|
|
if rtmpSetupUrl(rtmp, u) == 0 {
|
|
|
|
// if C.RTMP_SetupURL(rtmp, C.CString(u)) == 0 {
|
2018-07-28 08:54:36 +03:00
|
|
|
//C.RTMP_Close(rtmp)
|
|
|
|
//C.RTMP_Free(rtmp)
|
2018-07-19 09:35:14 +03:00
|
|
|
return nil, errors.New("rtmp startSession: Failed to setup URL!")
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:55:31 +03:00
|
|
|
rtmpEnableWrite(rtmp)
|
|
|
|
//C.RTMP_EnableWrite(rtmp)
|
2018-07-28 08:56:38 +03:00
|
|
|
rtmpSetBufferMS(rtmp, 3600*1000)
|
|
|
|
//C.RTMP_SetBufferMS(rtmp, 3600*1000)
|
2018-07-28 08:59:05 +03:00
|
|
|
if rtmpConnect(rtmp, nil) == 0 {
|
|
|
|
//if C.RTMP_Connect(rtmp, nil) == 0 {
|
2018-07-28 08:54:36 +03:00
|
|
|
//C.RTMP_Close(rtmp)
|
|
|
|
//C.RTMP_Free(rtmp)
|
2018-07-19 09:35:14 +03:00
|
|
|
return nil, errors.New("rtmp startSession: Failed to connect!")
|
|
|
|
}
|
|
|
|
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: port this
|
2018-07-28 08:38:09 +03:00
|
|
|
// if rtmpConnectStream(rtmp, 0) == 0 {
|
|
|
|
if C.RTMP_ConnectStream(rtmp, 0) == 0 {
|
2018-07-28 08:54:36 +03:00
|
|
|
//C.RTMP_Close(rtmp)
|
|
|
|
//C.RTMP_Free(rtmp)
|
2018-07-19 09:35:14 +03:00
|
|
|
return nil, errors.New("rtmp startSession: Failed to connect stream!")
|
|
|
|
}
|
|
|
|
|
|
|
|
return rtmp, nil
|
|
|
|
}
|
|
|
|
|
2018-07-19 10:29:03 +03:00
|
|
|
func rtmpAlloc() *C.RTMP {
|
2018-07-19 10:54:37 +03:00
|
|
|
var r C.RTMP
|
|
|
|
return (*C.RTMP)(allocate(unsafe.Sizeof(r)))
|
2018-07-19 10:29:03 +03:00
|
|
|
}
|
2018-07-19 10:54:37 +03:00
|
|
|
|
2018-07-19 11:00:30 +03:00
|
|
|
func rtmpInit(r *C.RTMP) {
|
|
|
|
r.m_sb.sb_socket = -1
|
|
|
|
r.m_inChunkSize = RTMP_DEFAULT_CHUNKSIZE
|
|
|
|
r.m_outChunkSize = RTMP_DEFAULT_CHUNKSIZE
|
|
|
|
r.m_nBufferMS = 30000
|
|
|
|
r.m_nClientBW = 2500000
|
|
|
|
r.m_nClientBW2 = 2
|
|
|
|
r.m_nServerBW = 2500000
|
|
|
|
r.m_fAudioCodecs = 3191.0
|
|
|
|
r.m_fVideoCodecs = 252.0
|
|
|
|
r.Link.timeout = 30
|
|
|
|
r.Link.swfAge = 30
|
|
|
|
}
|
|
|
|
|
2018-07-19 18:35:21 +03:00
|
|
|
func rtmpSetupUrl(r *C.RTMP, u string) int32 {
|
|
|
|
url := goStrToCStr(u)
|
|
|
|
|
|
|
|
var ret, len int32
|
|
|
|
var port uint32
|
|
|
|
port = 0
|
|
|
|
|
|
|
|
len = strlen(url)
|
2018-07-28 03:45:12 +03:00
|
|
|
// TODO: port this
|
2018-07-19 18:35:21 +03:00
|
|
|
ret = int32(C.RTMP_ParseURL((*C.char)(unsafe.Pointer(url)), &r.Link.protocol, &r.Link.hostname,
|
|
|
|
(*C.uint)(&port), &r.Link.playpath0, &r.Link.app))
|
|
|
|
|
|
|
|
if ret == 0 {
|
|
|
|
return ret
|
2018-07-15 21:09:36 +03:00
|
|
|
}
|
2018-07-19 18:35:21 +03:00
|
|
|
|
|
|
|
r.Link.port = C.ushort(port)
|
|
|
|
r.Link.playpath = r.Link.playpath0
|
|
|
|
|
|
|
|
if r.Link.tcUrl.av_len == 0 {
|
2018-07-20 07:40:08 +03:00
|
|
|
r.Link.tcUrl.av_val = (*C.char)(unsafe.Pointer(url))
|
2018-07-19 18:35:21 +03:00
|
|
|
if r.Link.app.av_len != 0 {
|
|
|
|
if int(uintptr(unsafe.Pointer(r.Link.app.av_val))) <
|
2018-07-20 08:44:39 +03:00
|
|
|
int(uintptr(incBytePtr(unsafe.Pointer(url), int(len)))) {
|
2018-07-19 18:35:21 +03:00
|
|
|
|
2018-07-20 08:44:39 +03:00
|
|
|
r.Link.tcUrl.av_len = C.int(int(r.Link.app.av_len) +
|
|
|
|
int(uintptr(decBytePtr(unsafe.Pointer(r.Link.app.av_val),
|
|
|
|
int(uintptr(unsafe.Pointer(url)))))))
|
2018-07-19 18:35:21 +03:00
|
|
|
} else {
|
2018-07-20 08:44:39 +03:00
|
|
|
len = int32(r.Link.hostname.av_len) + int32(r.Link.app.av_len) +
|
|
|
|
int32(unsafe.Sizeof("rtmpte://:65535/"))
|
2018-07-19 18:35:21 +03:00
|
|
|
|
|
|
|
r.Link.tcUrl.av_val = (*C.char)(allocate(uintptr(len)))
|
|
|
|
hostname := string(ptrToSlice(unsafe.Pointer(r.Link.hostname.av_val),
|
|
|
|
int(r.Link.hostname.av_len)))
|
|
|
|
|
|
|
|
app := string(ptrToSlice(unsafe.Pointer(r.Link.app.av_val),
|
|
|
|
int(r.Link.app.av_len)))
|
|
|
|
|
|
|
|
fString := fmt.Sprintf("%v://%v:%v/%v",
|
|
|
|
RTMPProtocolStringsLower[r.Link.protocol], hostname, r.Link.port, app)
|
|
|
|
|
2018-07-20 08:44:39 +03:00
|
|
|
r.Link.tcUrl.av_val = (*C.char)(bToUP(goStrToCStr(fString)))
|
|
|
|
r.Link.tcUrl.av_len = C.int(strLen(RTMPProtocolStringsLower[r.Link.protocol]) +
|
|
|
|
strLen(string("://")) + strLen(hostname) + strLen(string(":")) +
|
|
|
|
strLen(strconv.Itoa(int(r.Link.port))) + strLen(string("/")) + strLen(app))
|
2018-07-19 18:35:21 +03:00
|
|
|
|
|
|
|
r.Link.lFlags |= RTMP_LF_FTCU
|
|
|
|
}
|
|
|
|
} else {
|
2018-07-20 08:44:39 +03:00
|
|
|
r.Link.tcUrl.av_len = C.int(strlen(url))
|
2018-07-19 18:35:21 +03:00
|
|
|
}
|
2018-07-15 21:09:36 +03:00
|
|
|
}
|
2018-07-22 17:01:19 +03:00
|
|
|
|
|
|
|
socksSetup(r, &r.Link.sockshost)
|
2018-07-19 18:35:21 +03:00
|
|
|
|
|
|
|
if r.Link.port == 0 {
|
|
|
|
switch {
|
2018-07-20 08:44:39 +03:00
|
|
|
case (r.Link.protocol & RTMP_FEATURE_SSL) != 0:
|
2018-07-19 18:35:21 +03:00
|
|
|
r.Link.port = 433
|
2018-07-20 08:44:39 +03:00
|
|
|
case (r.Link.protocol & RTMP_FEATURE_HTTP) != 0:
|
2018-07-19 18:35:21 +03:00
|
|
|
r.Link.port = 80
|
|
|
|
default:
|
|
|
|
r.Link.port = 1935
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1
|
2018-07-15 21:09:36 +03:00
|
|
|
}
|
|
|
|
|
2018-07-22 17:01:19 +03:00
|
|
|
func socksSetup(r *C.RTMP, sockshost *C.AVal) {
|
|
|
|
if sockshost.av_len != 0 {
|
|
|
|
socksport := strchr((*byte)(unsafe.Pointer(sockshost.av_val)), ':')
|
|
|
|
hostname := strdup((*byte)(unsafe.Pointer(sockshost.av_val)))
|
|
|
|
|
|
|
|
if uintptr(unsafe.Pointer(socksport)) != 0 {
|
|
|
|
*indxBytePtr(unsafe.Pointer(hostname),
|
|
|
|
int(uintptr(decBytePtr(unsafe.Pointer(socksport),
|
|
|
|
int(uintptr(unsafe.Pointer(sockshost.av_val))))))) = '\000'
|
|
|
|
r.Link.sockshost.av_val = (*C.char)(unsafe.Pointer(hostname))
|
|
|
|
r.Link.sockshost.av_len = C.int(strlen(hostname))
|
|
|
|
|
|
|
|
value, err := strconv.Atoi(string(ptrToSlice(unsafe.Pointer(uintptr(
|
|
|
|
unsafe.Pointer(socksport))+uintptr(1)), int(strlen((*byte)(unsafe.Pointer(
|
|
|
|
uintptr(unsafe.Pointer(socksport))+uintptr(1)))))+1)))
|
|
|
|
if err != nil {
|
|
|
|
log.Println("socksSetup: bad string conversion!")
|
|
|
|
}
|
|
|
|
if uintptr(unsafe.Pointer(socksport)) == 0 {
|
|
|
|
value = 1080
|
|
|
|
}
|
|
|
|
r.Link.socksport = C.ushort(value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-22 11:48:46 +03:00
|
|
|
/*
|
2018-07-20 14:53:57 +03:00
|
|
|
func rtmpClose(r *C.RTMP) {
|
|
|
|
closeInternal(r, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func closeInternal(r *C.RTMP, reconnect int32) {
|
|
|
|
var i int32
|
|
|
|
|
2018-07-22 16:36:10 +03:00
|
|
|
if rtmpIsConnected(r) != 0 {
|
2018-07-20 14:53:57 +03:00
|
|
|
if r.m_stream_id > 0 {
|
|
|
|
i = int32(r.m_stream_id)
|
|
|
|
if r.Link.protocol&RTMP_FEATURE_WRITE != 0 {
|
|
|
|
C.SendFCUnpublish(r)
|
|
|
|
}
|
|
|
|
C.SendDeleteStream(r, C.double(i))
|
|
|
|
}
|
|
|
|
C.RTMPSockBuf_Close(&r.m_sb)
|
|
|
|
}
|
|
|
|
|
|
|
|
r.m_stream_id = -1
|
|
|
|
r.m_sb.sb_socket = -1
|
|
|
|
r.m_nBWCheckCounter = 0
|
|
|
|
r.m_nBytesIn = 0
|
|
|
|
r.m_nBytesInSent = 0
|
|
|
|
|
|
|
|
if r.m_read.flags&RTMP_READ_HEADER != 0 {
|
|
|
|
C.free(unsafe.Pointer(r.m_read.buf))
|
|
|
|
r.m_read.buf = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
r.m_read.dataType = 0
|
|
|
|
r.m_read.flags = 0
|
|
|
|
r.m_read.status = 0
|
|
|
|
r.m_read.nResumeTS = 0
|
|
|
|
r.m_read.nIgnoredFrameCounter = 0
|
|
|
|
r.m_read.nIgnoredFlvFrameCounter = 0
|
|
|
|
|
|
|
|
r.m_write.m_nBytesRead = 0
|
|
|
|
C.RTMPPacket_Free(&r.m_write)
|
|
|
|
|
|
|
|
for i := 0; i < int(r.m_channelsAllocatedIn); i++ {
|
|
|
|
if *(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsIn), i,
|
|
|
|
int(unsafe.Sizeof(&r.m_write)))) != nil {
|
|
|
|
|
|
|
|
C.RTMPPacket_Free(*(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsIn), i,
|
|
|
|
int(unsafe.Sizeof(&r.m_write)))))
|
|
|
|
|
|
|
|
C.free(unsafe.Pointer(*(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsIn),
|
|
|
|
i, int(unsafe.Sizeof(&r.m_write))))))
|
|
|
|
|
|
|
|
*(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsIn),
|
|
|
|
i, int(unsafe.Sizeof(&r.m_write)))) = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
C.free(unsafe.Pointer(r.m_vecChannelsOut))
|
|
|
|
r.m_vecChannelsOut = nil
|
|
|
|
r.m_channelsAllocatedOut = 0
|
|
|
|
C.AV_clear(r.m_methodCalls, r.m_numCalls)
|
|
|
|
|
|
|
|
r.m_methodCalls = nil
|
|
|
|
r.m_numCalls = 0
|
|
|
|
r.m_numInvokes = 0
|
|
|
|
|
|
|
|
r.m_bPlaying = C.uchar(0)
|
|
|
|
r.m_sb.sb_size = 0
|
|
|
|
|
|
|
|
r.m_msgCounter = 0
|
|
|
|
r.m_resplen = 0
|
|
|
|
r.m_unackd = 0
|
|
|
|
|
|
|
|
if ((r.Link.lFlags & RTMP_LF_FTCU) != 0) && (reconnect == 0) {
|
|
|
|
C.free(unsafe.Pointer(r.Link.app.av_val))
|
|
|
|
r.Link.app.av_val = nil
|
|
|
|
r.Link.lFlags ^= RTMP_LF_FAPU
|
|
|
|
}
|
|
|
|
|
|
|
|
if reconnect == 0 {
|
|
|
|
C.free(unsafe.Pointer(r.Link.playpath0.av_val))
|
|
|
|
r.Link.playpath0.av_val = nil
|
|
|
|
}
|
2018-07-20 08:44:39 +03:00
|
|
|
}
|
2018-07-22 11:48:46 +03:00
|
|
|
*/
|
2018-07-20 08:44:39 +03:00
|
|
|
|
2018-07-20 15:01:55 +03:00
|
|
|
func rtmpEnableWrite(r *C.RTMP) {
|
|
|
|
r.Link.protocol |= RTMP_FEATURE_WRITE
|
|
|
|
}
|
|
|
|
|
2018-07-20 15:04:38 +03:00
|
|
|
func rtmpSetBufferMS(r *C.RTMP, size int32) {
|
|
|
|
r.m_nBufferMS = C.int(size)
|
|
|
|
}
|
|
|
|
|
2018-07-21 02:24:16 +03:00
|
|
|
func rtmpConnect(r *C.RTMP, cp *C.RTMPPacket) int {
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: port this
|
2018-07-21 02:24:16 +03:00
|
|
|
var service C.sockaddr_in
|
|
|
|
|
|
|
|
if r.Link.hostname.av_len == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
var tmp C.sockaddr_in
|
|
|
|
memset((*byte)(unsafe.Pointer(&service)), 0, int(unsafe.Sizeof(tmp)))
|
|
|
|
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: port this
|
2018-07-21 02:24:16 +03:00
|
|
|
service.sin_family = C.AF_INET
|
|
|
|
|
|
|
|
if r.Link.socksport != 0 {
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: port this
|
2018-07-21 02:24:16 +03:00
|
|
|
if C.add_addr_info(&service, &r.Link.sockshost, C.int(r.Link.socksport)) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// connect directly
|
2018-07-22 11:48:46 +03:00
|
|
|
if C.add_addr_info(&service, (*C.AVal)(unsafe.Pointer(&r.Link.hostname)),
|
|
|
|
C.int(r.Link.port)) == 0 {
|
2018-07-21 02:24:16 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
2018-07-28 09:02:38 +03:00
|
|
|
//if C.RTMP_Connect0(r, (*C.sockaddr)(unsafe.Pointer(&service))) == 0 {
|
|
|
|
if rtmpConnect0(r, (*C.sockaddr)(unsafe.Pointer(&service))) == 0 {
|
2018-07-21 02:24:16 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
r.m_bSendCounter = 1
|
|
|
|
|
2018-07-28 09:04:11 +03:00
|
|
|
return int(rtmpConnect1(r, cp))
|
|
|
|
//return int(C.RTMP_Connect1(r, cp))
|
2018-07-21 02:24:16 +03:00
|
|
|
}
|
|
|
|
|
2018-07-22 11:48:46 +03:00
|
|
|
func rtmpConnect0(r *C.RTMP, service *C.sockaddr) int {
|
|
|
|
on := 1
|
|
|
|
r.m_sb.sb_timedout = 0
|
|
|
|
r.m_pausing = 0
|
|
|
|
r.m_fDuration = 0.0
|
|
|
|
|
|
|
|
r.m_sb.sb_socket = C.socket(C.AF_INET, C.SOCK_STREAM, C.IPPROTO_TCP)
|
|
|
|
|
|
|
|
if r.m_sb.sb_socket != -1 {
|
2018-07-24 15:00:50 +03:00
|
|
|
if C.connect(r.m_sb.sb_socket, service, C.socklen_t(unsafe.Sizeof(*service))) < 0 {
|
2018-07-22 11:48:46 +03:00
|
|
|
log.Println("rtmpConnect0, failed to connect socket.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Link.socksport != 0 {
|
|
|
|
if debugMode {
|
|
|
|
log.Println("rtmpConnect0: socks negotiation.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if C.SocksNegotiate(r) == 0 {
|
|
|
|
log.Println("rtmpConnect0: SOCKS negotiation failed.")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Println("rtmpConnect0: failed to create socket.")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2018-07-22 16:31:50 +03:00
|
|
|
tv := C.int(r.Link.timeout * 1000)
|
2018-07-22 11:48:46 +03:00
|
|
|
|
|
|
|
if C.setsockopt(r.m_sb.sb_socket, C.SOL_SOCKET, C.SO_RCVTIMEO,
|
2018-07-24 15:00:50 +03:00
|
|
|
unsafe.Pointer(&tv), C.socklen_t(unsafe.Sizeof(tv))) != 0 {
|
2018-07-22 11:48:46 +03:00
|
|
|
log.Println("rtmpConnect0: Setting socket timeout failed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
C.setsockopt(r.m_sb.sb_socket, C.IPPROTO_TCP, C.TCP_NODELAY,
|
2018-07-24 15:00:50 +03:00
|
|
|
unsafe.Pointer(&on), C.socklen_t(unsafe.Sizeof(on)))
|
2018-07-22 11:48:46 +03:00
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-07-22 16:31:50 +03:00
|
|
|
func rtmpConnect1(r *C.RTMP, cp *C.RTMPPacket) int {
|
|
|
|
if debugMode {
|
|
|
|
log.Println("... connected, handshaking...")
|
|
|
|
}
|
2018-07-28 09:07:50 +03:00
|
|
|
//if C.HandShake(r, 1) == 0 {
|
|
|
|
if handShake(r, 1) == 0 {
|
2018-07-22 16:31:50 +03:00
|
|
|
log.Println("rtmpConnect1: handshake failed!")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if debugMode {
|
|
|
|
log.Println("... handshaked...")
|
|
|
|
}
|
2018-07-28 09:06:32 +03:00
|
|
|
if C.SendConnectPacket(r, cp) == 0 {
|
|
|
|
//if sendConnectPacket(r, cp) == 0 {
|
2018-07-22 16:31:50 +03:00
|
|
|
log.Println("RTMP connect failed!")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-07-22 17:44:23 +03:00
|
|
|
// TODO: complete this
|
|
|
|
func handShake(r *C.RTMP, FP9HandShake int32) int {
|
2018-07-24 15:00:50 +03:00
|
|
|
var bMatch int
|
|
|
|
//uptime := uint32(0)
|
|
|
|
//suptime := uint32(0)
|
|
|
|
//typ := byte(0)
|
2018-07-22 17:44:23 +03:00
|
|
|
var uptime, suptime uint32
|
|
|
|
var typ byte
|
2018-07-24 15:00:50 +03:00
|
|
|
//clientbuf := make([]byte, RTMP_SIG_SIZE+1)
|
2018-07-22 17:44:23 +03:00
|
|
|
var clientbuf [RTMP_SIG_SIZE + 1]byte
|
2018-07-24 15:00:50 +03:00
|
|
|
clientsig := (*byte)(incBytePtr(unsafe.Pointer(&clientbuf[0]), 1))
|
|
|
|
//serversig := make([]byte, RTMP_SIG_SIZE)
|
2018-07-22 17:44:23 +03:00
|
|
|
var serversig [RTMP_SIG_SIZE]byte
|
|
|
|
|
|
|
|
clientbuf[0] = 0x03 // not encrypted
|
|
|
|
|
|
|
|
// TODO: port rtmp_getTime
|
|
|
|
uptime = inet.Htonl(uint32(C.RTMP_GetTime()))
|
|
|
|
memmove(unsafe.Pointer(clientsig), unsafe.Pointer(&uptime), 4)
|
|
|
|
|
|
|
|
memset(indxBytePtr(unsafe.Pointer(clientsig), 4), 0, 4)
|
|
|
|
|
|
|
|
for i := 8; i < RTMP_SIG_SIZE; i++ {
|
|
|
|
*indxBytePtr(unsafe.Pointer(clientsig), i) = byte(rand.Intn(256))
|
|
|
|
}
|
|
|
|
|
2018-07-24 15:00:50 +03:00
|
|
|
if writeN(r, unsafe.Pointer(&clientbuf[0]), RTMP_SIG_SIZE+1) == 0 {
|
2018-07-23 02:08:22 +03:00
|
|
|
return 0
|
|
|
|
}
|
2018-07-22 17:44:23 +03:00
|
|
|
|
2018-07-28 09:20:59 +03:00
|
|
|
//if C.ReadN(r, (*C.char)(unsafe.Pointer(&typ)), 1) != 1 {
|
|
|
|
if readN(r, (*byte)(unsafe.Pointer(&typ)), 1) != 1 {
|
2018-07-23 02:08:22 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if debugMode {
|
2018-07-24 15:00:50 +03:00
|
|
|
log.Println("handShake: Type answer: %v", typ)
|
2018-07-23 02:08:22 +03:00
|
|
|
}
|
2018-07-24 15:00:50 +03:00
|
|
|
if typ != clientbuf[0] {
|
2018-07-23 02:08:22 +03:00
|
|
|
log.Println("handShake: type mismatch: client sent %v, server sent: %v",
|
2018-07-24 15:00:50 +03:00
|
|
|
clientbuf[0], typ)
|
2018-07-23 02:08:22 +03:00
|
|
|
}
|
2018-07-28 09:20:59 +03:00
|
|
|
if readN(r, (*byte)(unsafe.Pointer(&serversig[0])), RTMP_SIG_SIZE) != RTMP_SIG_SIZE {
|
|
|
|
//if C.ReadN(r, (*C.char)(unsafe.Pointer(&serversig[0])), RTMP_SIG_SIZE) != RTMP_SIG_SIZE {
|
2018-07-23 02:08:22 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode server response
|
2018-07-24 15:00:50 +03:00
|
|
|
memmove(unsafe.Pointer(&suptime), unsafe.Pointer(&serversig[0]), 4)
|
2018-07-23 02:08:22 +03:00
|
|
|
suptime = inet.Ntohl(suptime)
|
|
|
|
|
|
|
|
// 2nd part of handshake
|
2018-07-24 15:00:50 +03:00
|
|
|
if writeN(r, unsafe.Pointer(&serversig[0]), RTMP_SIG_SIZE) == 0 {
|
2018-07-23 02:08:22 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-28 09:20:59 +03:00
|
|
|
if readN(r, (*byte)(unsafe.Pointer(&serversig[0])), RTMP_SIG_SIZE) != RTMP_SIG_SIZE {
|
|
|
|
// if C.ReadN(r, (*C.char)(unsafe.Pointer(&serversig[0])), RTMP_SIG_SIZE) != RTMP_SIG_SIZE {
|
2018-07-23 02:08:22 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: find golang memcmp
|
|
|
|
bMatch = 0
|
2018-07-24 15:00:50 +03:00
|
|
|
if memcmp(unsafe.Pointer(&serversig[0]), unsafe.Pointer(clientsig),
|
|
|
|
RTMP_SIG_SIZE) == 0 {
|
2018-07-23 02:08:22 +03:00
|
|
|
bMatch = 1
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:26:59 +03:00
|
|
|
if bMatch == 0 {
|
2018-07-23 02:08:22 +03:00
|
|
|
log.Println("Client signature does not match!")
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|
2018-07-22 17:44:23 +03:00
|
|
|
|
2018-07-28 07:57:30 +03:00
|
|
|
func readN(r *C.RTMP, buffer *byte, n int) int {
|
|
|
|
nOriginalSize := n
|
|
|
|
var avail int
|
|
|
|
var ptr *byte
|
|
|
|
|
|
|
|
r.m_sb.sb_timedout = 0
|
|
|
|
|
|
|
|
ptr = buffer
|
|
|
|
|
|
|
|
for n > 0 {
|
|
|
|
nBytes := 0
|
|
|
|
var nRead int
|
2018-07-28 08:25:25 +03:00
|
|
|
|
|
|
|
avail = int(r.m_sb.sb_size)
|
|
|
|
if avail == 0 {
|
|
|
|
if C.RTMPSockBuf_Fill(&r.m_sb) < 1 {
|
|
|
|
if r.m_sb.sb_timedout == 0 {
|
|
|
|
return 0
|
2018-07-28 07:57:30 +03:00
|
|
|
}
|
2018-07-28 08:25:25 +03:00
|
|
|
}
|
2018-07-28 09:17:32 +03:00
|
|
|
avail = int(r.m_sb.sb_size)
|
2018-07-28 08:25:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if n < avail {
|
|
|
|
nRead = n
|
|
|
|
} else {
|
|
|
|
nRead = avail
|
|
|
|
}
|
2018-07-28 07:57:30 +03:00
|
|
|
|
2018-07-28 08:25:25 +03:00
|
|
|
if nRead > 0 {
|
|
|
|
memmove(unsafe.Pointer(ptr), unsafe.Pointer(r.m_sb.sb_start), uintptr(nRead))
|
|
|
|
r.m_sb.sb_start = (*C.char)(incBytePtr(unsafe.Pointer(r.m_sb.sb_start),
|
|
|
|
nRead))
|
|
|
|
r.m_sb.sb_size -= C.int(nRead)
|
|
|
|
nBytes = nRead
|
|
|
|
r.m_nBytesIn += C.int(nRead)
|
|
|
|
if r.m_bSendCounter != 0 && r.m_nBytesIn > (r.m_nBytesInSent+
|
|
|
|
r.m_nClientBW/10) {
|
|
|
|
// TODO: port this
|
|
|
|
if C.SendBytesReceived(r) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-28 07:57:30 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-28 08:25:25 +03:00
|
|
|
|
|
|
|
if nBytes == 0 {
|
|
|
|
log.Println("RTMP socket closed by peer")
|
|
|
|
// RTMP_Close(r)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
n -= nBytes
|
|
|
|
ptr = (*byte)(incBytePtr(unsafe.Pointer(ptr), nBytes))
|
2018-07-28 07:57:30 +03:00
|
|
|
}
|
|
|
|
|
2018-07-28 08:25:25 +03:00
|
|
|
return nOriginalSize - n
|
|
|
|
}
|
2018-07-28 07:57:30 +03:00
|
|
|
|
2018-07-25 04:26:59 +03:00
|
|
|
func sendConnectPacket(r *C.RTMP, cp *C.RTMPPacket) int {
|
|
|
|
var packet C.RTMPPacket
|
|
|
|
var pbuf [4096]byte
|
2018-07-27 07:36:40 +03:00
|
|
|
pend := (*byte)(unsafe.Pointer(incBytePtr(unsafe.Pointer(&pbuf[0]),
|
|
|
|
int(unsafe.Sizeof(pbuf)))))
|
2018-07-25 04:26:59 +03:00
|
|
|
var enc *byte
|
|
|
|
|
|
|
|
if cp != nil {
|
|
|
|
return sendPacket(r, cp, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
packet.m_nChannel = 0x03
|
|
|
|
packet.m_headerType = RTMP_PACKET_SIZE_LARGE
|
|
|
|
packet.m_packetType = RTMP_PACKET_TYPE_INVOKE
|
|
|
|
packet.m_nTimeStamp = 0
|
|
|
|
packet.m_nInfoField2 = 0
|
|
|
|
packet.m_hasAbsTimestamp = 0
|
|
|
|
packet.m_body = (*C.char)(incBytePtr(unsafe.Pointer(&pbuf[0]),
|
|
|
|
RTMP_MAX_HEADER_SIZE))
|
|
|
|
|
|
|
|
enc = (*byte)(unsafe.Pointer(packet.m_body))
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeString(enc, (*byte)(pend), &av_connect)
|
2018-07-25 04:26:59 +03:00
|
|
|
r.m_numInvokes += 1
|
2018-07-26 10:36:44 +03:00
|
|
|
// TODO: port this
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNumber(enc, pend, float64(r.m_numInvokes))
|
2018-07-26 10:36:44 +03:00
|
|
|
// TODO: port this const
|
|
|
|
*indxBytePtr(unsafe.Pointer(enc), 0) = C.AMF_OBJECT
|
|
|
|
|
|
|
|
// TODO: port this
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_app, &r.Link.app)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if r.Link.protocol&RTMP_FEATURE_WRITE != 0 {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_type, &av_nonprivate)
|
2018-07-26 10:36:44 +03:00
|
|
|
|
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Link.flashVer.av_len != 0 {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_flashVer, &r.Link.flashVer)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if r.Link.swfUrl.av_len != 0 {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_swfUrl, &r.Link.swfUrl)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Link.tcUrl.av_len != 0 {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_tcUrl, &r.Link.tcUrl)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Link.protocol&RTMP_FEATURE_WRITE == 0 {
|
|
|
|
// TODO: port this
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedBoolean(enc, pend, &av_fpad, 0)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedNumber(enc, pend, &av_capabilities, 15.0)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedNumber(enc, pend, &av_audioCodecs, float64(r.m_fAudioCodecs))
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedNumber(enc, pend, &av_videoCodecs, float64(r.m_fVideoCodecs))
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedNumber(enc, pend, &av_videoFunction, 1.0)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if r.Link.pageUrl.av_len != 0 {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeNamedString(enc, pend, &av_pageUrl, &r.Link.pageUrl)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.m_fEncoding != 0.0 || r.m_bSendEncoding != 0 {
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeNamedNumber(enc, pend, &av_objectEncoding, float64(r.m_fEncoding))
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if int(uintptr(incBytePtr(unsafe.Pointer(enc), 3))) >= int(uintptr(
|
|
|
|
unsafe.Pointer(pend))) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
*indxBytePtr(unsafe.Pointer(enc), 0) = 0
|
|
|
|
enc = (*byte)(incBytePtr(unsafe.Pointer(enc), 1))
|
|
|
|
*indxBytePtr(unsafe.Pointer(enc), 0) = 0
|
|
|
|
enc = (*byte)(incBytePtr(unsafe.Pointer(enc), 1))
|
|
|
|
*indxBytePtr(unsafe.Pointer(enc), 0) = C.AMF_OBJECT_END
|
|
|
|
enc = (*byte)(incBytePtr(unsafe.Pointer(enc), 1))
|
|
|
|
|
|
|
|
/* add auth string */
|
|
|
|
if r.Link.auth.av_len != 0 {
|
|
|
|
// TODO: port this
|
2018-07-27 08:14:02 +03:00
|
|
|
enc = amfEncodeBoolean(enc, pend, int(r.Link.lFlags&RTMP_LF_AUTH))
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = amfEncodeString(enc, (*byte)(pend), &r.Link.auth)
|
2018-07-26 10:36:44 +03:00
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Link.extras.o_num != 0 {
|
|
|
|
for i := 0; i < int(r.Link.extras.o_num); i++ {
|
|
|
|
enc = (*byte)(unsafe.Pointer(C.AMFProp_Encode((*C.AMFObjectProperty)(
|
|
|
|
incPtr(unsafe.Pointer(&r.Link.extras.o_props), int(unsafe.Sizeof(
|
|
|
|
r.Link.extras.o_props)), i)), (*C.char)(unsafe.Pointer(enc)), (*C.char)(
|
|
|
|
unsafe.Pointer(pend)))))
|
|
|
|
|
|
|
|
if enc == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-27 07:36:40 +03:00
|
|
|
packet.m_nBodySize = C.uint32_t(int(uintptr(decBytePtr(unsafe.Pointer(enc),
|
|
|
|
int(uintptr(unsafe.Pointer(packet.m_body)))))))
|
2018-07-26 10:36:44 +03:00
|
|
|
|
|
|
|
return sendPacket(r, &packet, 1)
|
2018-07-25 04:26:59 +03:00
|
|
|
}
|
|
|
|
|
2018-07-22 16:31:50 +03:00
|
|
|
func rtmpConnectStream(r *C.RTMP, seekTime int32) int {
|
|
|
|
var packet C.RTMPPacket
|
2018-07-28 03:45:12 +03:00
|
|
|
memset((*byte)(unsafe.Pointer(&packet)), 0, int(unsafe.Sizeof(packet)))
|
2018-07-22 16:31:50 +03:00
|
|
|
|
|
|
|
if seekTime > 0 {
|
|
|
|
r.Link.seekTime = C.int(seekTime)
|
|
|
|
}
|
|
|
|
|
|
|
|
r.m_mediaChannel = 0
|
|
|
|
|
|
|
|
// TODO: port is connected and read packet
|
2018-07-22 16:36:10 +03:00
|
|
|
for r.m_bPlaying == 0 && rtmpIsConnected(r) != 0 &&
|
2018-07-22 16:31:50 +03:00
|
|
|
C.RTMP_ReadPacket(r, &packet) != 0 {
|
|
|
|
|
|
|
|
// TODO: port is ready
|
|
|
|
if rtmpPacketIsReady(&packet) != 0 {
|
|
|
|
if packet.m_nBodySize == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if packet.m_packetType == RTMP_PACKET_TYPE_AUDIO ||
|
|
|
|
packet.m_packetType == RTMP_PACKET_TYPE_VIDEO ||
|
|
|
|
packet.m_packetType == RTMP_PACKET_TYPE_INFO {
|
|
|
|
log.Println("rtmpConnectStream: got packet before play()! Ignoring.")
|
|
|
|
C.RTMPPacket_Free(&packet)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: port this
|
|
|
|
C.RTMP_ClientPacket(r, &packet)
|
|
|
|
C.RTMPPacket_Free(&packet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return int(r.m_bPlaying)
|
|
|
|
}
|
|
|
|
|
|
|
|
func rtmpPacketIsReady(p *C.RTMPPacket) int {
|
|
|
|
if p.m_nBytesRead == p.m_nBodySize {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-19 09:37:31 +03:00
|
|
|
func endSession(rtmp *C.RTMP) uint32 {
|
|
|
|
if rtmp == nil {
|
|
|
|
return 3
|
|
|
|
}
|
|
|
|
|
2018-07-22 11:48:46 +03:00
|
|
|
//C.RTMP_Close(rtmp)
|
|
|
|
//C.RTMP_Free(rtmp)
|
2018-07-19 09:37:31 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-14 08:51:01 +03:00
|
|
|
// rtmpWrite writes data to the current rtmp connection encapsulated by r
|
2018-07-12 17:17:11 +03:00
|
|
|
func rtmpWrite(r *C.RTMP, data []byte) int {
|
2018-07-14 08:19:21 +03:00
|
|
|
buf := sliceToPtr(data)
|
2018-07-14 08:22:54 +03:00
|
|
|
// TODO: port RTMPPacket
|
2018-07-12 20:03:06 +03:00
|
|
|
var pkt = &r.m_write
|
2018-07-13 18:43:17 +03:00
|
|
|
var pend, enc unsafe.Pointer
|
2018-07-12 17:17:11 +03:00
|
|
|
size := len(data)
|
2018-07-10 12:15:34 +03:00
|
|
|
s2 := size
|
2018-07-12 17:17:11 +03:00
|
|
|
var ret, num int
|
|
|
|
|
2018-07-05 09:55:46 +03:00
|
|
|
pkt.m_nChannel = 0x04
|
2018-07-16 18:38:31 +03:00
|
|
|
pkt.m_nInfoField2 = C.int32_t(r.m_stream_id)
|
2018-07-13 18:43:17 +03:00
|
|
|
for s2 != 0 {
|
2018-07-10 12:15:34 +03:00
|
|
|
if pkt.m_nBytesRead == 0 {
|
2018-07-11 07:46:19 +03:00
|
|
|
if size < minDataSize {
|
2018-07-05 09:55:46 +03:00
|
|
|
log.Printf("size: %d\n", size)
|
|
|
|
log.Printf("too small \n")
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-14 08:31:06 +03:00
|
|
|
|
2018-07-18 05:26:32 +03:00
|
|
|
if *indxBytePtr(buf, 0) == 'F' && *indxBytePtr(buf, 1) == 'L' && *indxBytePtr(buf, 2) == 'V' {
|
2018-07-14 07:54:10 +03:00
|
|
|
buf = unsafe.Pointer(uintptr(buf) + uintptr(13))
|
2018-07-05 09:55:46 +03:00
|
|
|
s2 -= 13
|
|
|
|
}
|
|
|
|
|
2018-07-18 05:26:32 +03:00
|
|
|
pkt.m_packetType = C.uint8_t(*indxBytePtr(buf, 0))
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, 1)
|
2018-07-27 07:36:40 +03:00
|
|
|
pkt.m_nBodySize = C.uint32_t(amfDecodeInt24((*byte)(buf)))
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, 3)
|
2018-07-27 07:36:40 +03:00
|
|
|
pkt.m_nTimeStamp = C.uint32_t(amfDecodeInt24((*byte)(buf)))
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, 3)
|
2018-07-18 05:26:32 +03:00
|
|
|
pkt.m_nTimeStamp |= C.uint32_t(*indxBytePtr(buf, 0)) << 24
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, 4)
|
2018-07-05 09:55:46 +03:00
|
|
|
s2 -= 11
|
|
|
|
|
2018-07-12 21:07:57 +03:00
|
|
|
if ((pkt.m_packetType == RTMP_PACKET_TYPE_AUDIO ||
|
|
|
|
pkt.m_packetType == RTMP_PACKET_TYPE_VIDEO) &&
|
|
|
|
pkt.m_nTimeStamp == 0) || pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
|
2018-07-05 09:55:46 +03:00
|
|
|
|
2018-07-12 21:07:57 +03:00
|
|
|
pkt.m_headerType = RTMP_PACKET_SIZE_LARGE
|
2018-07-11 20:20:00 +03:00
|
|
|
|
2018-07-12 21:07:57 +03:00
|
|
|
if pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
|
2018-07-11 18:20:18 +03:00
|
|
|
pkt.m_nBodySize += 16
|
|
|
|
}
|
2018-07-05 09:55:46 +03:00
|
|
|
} else {
|
2018-07-12 21:07:57 +03:00
|
|
|
pkt.m_headerType = RTMP_PACKET_SIZE_MEDIUM
|
2018-07-05 09:55:46 +03:00
|
|
|
}
|
2018-07-14 08:22:54 +03:00
|
|
|
// TODO: Port this
|
2018-07-11 18:20:18 +03:00
|
|
|
if int(C.RTMPPacket_Alloc(pkt, pkt.m_nBodySize)) == 0 {
|
2018-07-12 17:17:11 +03:00
|
|
|
log.Println("Failed to allocate packet")
|
2018-07-05 09:55:46 +03:00
|
|
|
return 0
|
|
|
|
}
|
2018-06-27 21:02:16 +03:00
|
|
|
|
2018-07-13 18:43:17 +03:00
|
|
|
enc = unsafe.Pointer(pkt.m_body)
|
2018-07-16 06:30:58 +03:00
|
|
|
pend = incBytePtr(enc, int(pkt.m_nBodySize))
|
2018-07-10 13:36:49 +03:00
|
|
|
|
2018-07-12 21:07:57 +03:00
|
|
|
if pkt.m_packetType == RTMP_PACKET_TYPE_INFO {
|
2018-07-27 07:36:40 +03:00
|
|
|
enc = unsafe.Pointer(amfEncodeString((*byte)(enc), (*byte)(pend), &setDataFrame))
|
2018-07-16 18:38:31 +03:00
|
|
|
pkt.m_nBytesRead = C.uint32_t(math.Abs(float64(uintptr(enc) -
|
2018-07-12 21:07:57 +03:00
|
|
|
uintptr(unsafe.Pointer(pkt.m_body)))))
|
2018-07-05 09:55:46 +03:00
|
|
|
}
|
2018-07-12 22:51:17 +03:00
|
|
|
|
2018-07-05 09:55:46 +03:00
|
|
|
} else {
|
2018-07-16 06:30:58 +03:00
|
|
|
enc = incBytePtr(unsafe.Pointer(pkt.m_body), int(pkt.m_nBytesRead))
|
2018-07-05 09:55:46 +03:00
|
|
|
}
|
2018-07-12 17:17:11 +03:00
|
|
|
num = int(pkt.m_nBodySize - pkt.m_nBytesRead)
|
2018-07-05 09:55:46 +03:00
|
|
|
if num > s2 {
|
|
|
|
num = s2
|
|
|
|
}
|
2018-07-14 15:40:01 +03:00
|
|
|
|
2018-07-25 04:26:59 +03:00
|
|
|
memmove(enc, buf, uintptr(num))
|
2018-07-16 18:38:31 +03:00
|
|
|
pkt.m_nBytesRead += C.uint32_t(num)
|
2018-07-05 09:55:46 +03:00
|
|
|
s2 -= num
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, num)
|
2018-07-05 09:55:46 +03:00
|
|
|
if pkt.m_nBytesRead == pkt.m_nBodySize {
|
2018-07-14 08:22:54 +03:00
|
|
|
// TODO: Port this
|
2018-07-16 19:00:25 +03:00
|
|
|
ret = sendPacket(r, pkt, 0)
|
2018-07-14 08:29:00 +03:00
|
|
|
// TODO: Port this
|
2018-07-10 13:36:49 +03:00
|
|
|
C.RTMPPacket_Free(pkt)
|
2018-07-05 09:55:46 +03:00
|
|
|
pkt.m_nBytesRead = 0
|
2018-07-11 07:56:07 +03:00
|
|
|
if ret == 0 {
|
2018-07-05 09:55:46 +03:00
|
|
|
return -1
|
|
|
|
}
|
2018-07-16 06:30:58 +03:00
|
|
|
buf = incBytePtr(buf, 4)
|
2018-07-05 09:55:46 +03:00
|
|
|
s2 -= 4
|
|
|
|
if s2 < 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-11 18:20:18 +03:00
|
|
|
return size + s2
|
2018-06-27 21:02:16 +03:00
|
|
|
}
|
2018-07-05 09:55:46 +03:00
|
|
|
|
2018-07-17 11:30:24 +03:00
|
|
|
// send packet version 1 - less C stuff
|
2018-07-16 06:46:40 +03:00
|
|
|
func sendPacket(r *C.RTMP, packet *C.RTMPPacket, queue int) int {
|
2018-07-15 10:48:24 +03:00
|
|
|
var prevPacket *C.RTMPPacket
|
2018-07-11 20:20:00 +03:00
|
|
|
last := 0
|
2018-07-13 19:38:59 +03:00
|
|
|
var nSize, hSize, cSize, nChunkSize, tlen int
|
2018-07-15 09:51:20 +03:00
|
|
|
var header, hptr, hend, buffer, tbuf, toff unsafe.Pointer
|
2018-07-19 09:08:10 +03:00
|
|
|
var goHbuf [RTMP_MAX_HEADER_SIZE]byte
|
2018-07-15 09:51:20 +03:00
|
|
|
var hbuf = unsafe.Pointer(&goHbuf[0])
|
|
|
|
var c byte
|
2018-07-13 19:38:59 +03:00
|
|
|
var t int32
|
2018-07-17 11:53:31 +03:00
|
|
|
var packets unsafe.Pointer
|
2018-07-14 09:06:58 +03:00
|
|
|
|
|
|
|
if packet.m_nChannel >= r.m_channelsAllocatedOut {
|
2018-07-17 11:53:31 +03:00
|
|
|
log.Println("Resize")
|
2018-07-18 05:26:32 +03:00
|
|
|
n := int(packet.m_nChannel + 10)
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: port this
|
2018-07-28 04:35:51 +03:00
|
|
|
packets = realloc(unsafe.Pointer(r.m_vecChannelsOut),
|
|
|
|
int(unsafe.Sizeof(packet)*uintptr(n)))
|
2018-07-14 09:06:58 +03:00
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
if uintptr(packets) == uintptr(0) {
|
2018-07-28 07:57:30 +03:00
|
|
|
//C.free(unsafe.Pointer(r.m_vecChannelsOut))
|
2018-07-14 09:06:58 +03:00
|
|
|
r.m_vecChannelsOut = nil
|
|
|
|
r.m_channelsAllocatedOut = 0
|
|
|
|
return 0
|
|
|
|
}
|
2018-07-16 08:07:26 +03:00
|
|
|
r.m_vecChannelsOut = (**C.RTMPPacket)(packets)
|
2018-07-22 11:48:46 +03:00
|
|
|
// TODO: replace this with my memset
|
2018-07-16 08:07:26 +03:00
|
|
|
C.memset(incPtr(unsafe.Pointer(r.m_vecChannelsOut), int(r.m_channelsAllocatedOut),
|
2018-07-18 05:26:32 +03:00
|
|
|
int(unsafe.Sizeof(packet))), 0, C.size_t(unsafe.Sizeof(packet)*
|
2018-07-16 08:07:26 +03:00
|
|
|
uintptr(n-int(r.m_channelsAllocatedOut))))
|
|
|
|
r.m_channelsAllocatedOut = C.int(n)
|
2018-07-14 09:06:58 +03:00
|
|
|
}
|
2018-07-16 08:07:26 +03:00
|
|
|
prevPacket = *(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsOut),
|
|
|
|
int(packet.m_nChannel), int(unsafe.Sizeof(packet))))
|
2018-07-15 09:51:20 +03:00
|
|
|
|
|
|
|
if prevPacket != nil && packet.m_headerType != RTMP_PACKET_SIZE_LARGE {
|
|
|
|
// compress a bit by using the prev packet's attributes
|
|
|
|
if prevPacket.m_nBodySize == packet.m_nBodySize &&
|
|
|
|
prevPacket.m_packetType == packet.m_packetType &&
|
|
|
|
packet.m_headerType == RTMP_PACKET_SIZE_MEDIUM {
|
|
|
|
|
|
|
|
packet.m_headerType = RTMP_PACKET_SIZE_SMALL
|
|
|
|
}
|
|
|
|
|
|
|
|
if prevPacket.m_nTimeStamp == packet.m_nTimeStamp &&
|
|
|
|
packet.m_headerType == RTMP_PACKET_SIZE_SMALL {
|
2018-07-19 09:08:10 +03:00
|
|
|
packet.m_headerType = RTMP_PACKET_SIZE_MINIMUM
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
last = int(prevPacket.m_nTimeStamp)
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if packet.m_headerType > 3 {
|
|
|
|
log.Printf("Sanity failed! trying to send header of type: 0x%02x.",
|
|
|
|
packet.m_headerType)
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-17 11:30:24 +03:00
|
|
|
nSize = packetSize[int(packet.m_headerType)]
|
2018-07-15 09:51:20 +03:00
|
|
|
hSize = nSize
|
|
|
|
cSize = 0
|
2018-07-16 08:07:26 +03:00
|
|
|
t = int32(int(packet.m_nTimeStamp) - last)
|
2018-07-15 09:51:20 +03:00
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
if packet.m_body != nil {
|
2018-07-16 12:20:17 +03:00
|
|
|
header = decBytePtr(unsafe.Pointer(packet.m_body), nSize)
|
|
|
|
hend = unsafe.Pointer(packet.m_body)
|
2018-07-15 09:51:20 +03:00
|
|
|
} else {
|
2018-07-18 05:26:32 +03:00
|
|
|
header = incBytePtr(hbuf, 6)
|
2018-07-15 10:18:38 +03:00
|
|
|
// TODO: be cautious about this sizeof - make sure it works how you think it
|
2018-07-15 09:51:20 +03:00
|
|
|
// does. C code used sizeof(hbuf) where hbuf is a *char
|
2018-07-19 09:08:10 +03:00
|
|
|
hend = incBytePtr(hbuf, RTMP_MAX_HEADER_SIZE)
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case packet.m_nChannel > 319:
|
|
|
|
cSize = 2
|
|
|
|
case packet.m_nChannel > 63:
|
|
|
|
cSize = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if cSize != 0 {
|
2018-07-18 05:26:32 +03:00
|
|
|
header = decBytePtr(header, cSize)
|
2018-07-16 12:20:17 +03:00
|
|
|
hSize += cSize
|
|
|
|
}
|
|
|
|
|
|
|
|
if t >= 0xffffff {
|
2018-07-18 05:26:32 +03:00
|
|
|
header = decBytePtr(header, 4)
|
2018-07-16 12:20:17 +03:00
|
|
|
hSize += 4
|
|
|
|
log.Printf("Larger timestamp than 24-bit: 0x%v", t)
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hptr = header
|
|
|
|
c = byte(packet.m_headerType) << 6
|
|
|
|
|
|
|
|
switch cSize {
|
|
|
|
case 0:
|
|
|
|
c |= byte(packet.m_nChannel)
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
c |= byte(1)
|
|
|
|
}
|
2018-07-16 12:20:17 +03:00
|
|
|
*(*byte)(hptr) = c
|
2018-07-18 05:26:32 +03:00
|
|
|
hptr = incBytePtr(hptr, 1)
|
2018-07-16 12:20:17 +03:00
|
|
|
|
|
|
|
if cSize != 0 {
|
|
|
|
tmp := packet.m_nChannel - 64
|
2018-07-18 05:26:32 +03:00
|
|
|
*(*byte)(hptr) = byte(tmp & 0xff)
|
|
|
|
hptr = incBytePtr(hptr, 1)
|
2018-07-16 12:20:17 +03:00
|
|
|
|
|
|
|
if cSize == 2 {
|
|
|
|
*(*byte)(hptr) = byte(tmp >> 8)
|
2018-07-18 05:26:32 +03:00
|
|
|
hptr = incBytePtr(hptr, 1)
|
2018-07-16 12:20:17 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-15 09:51:20 +03:00
|
|
|
|
|
|
|
if nSize > 1 {
|
|
|
|
res := t
|
|
|
|
if t > 0xffffff {
|
|
|
|
res = 0xffffff
|
|
|
|
}
|
2018-07-27 07:36:40 +03:00
|
|
|
hptr = unsafe.Pointer(amfEncodeInt24((*byte)(hptr), (*byte)(hend), res))
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if nSize > 4 {
|
2018-07-27 07:36:40 +03:00
|
|
|
hptr = unsafe.Pointer(amfEncodeInt24((*byte)(hptr), (*byte)(hend), (int32(packet.m_nBodySize))))
|
2018-07-18 05:26:32 +03:00
|
|
|
*(*byte)(hptr) = byte(packet.m_packetType)
|
|
|
|
hptr = incBytePtr(hptr, 1)
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if nSize > 8 {
|
2018-07-16 18:38:31 +03:00
|
|
|
hptr = incBytePtr(hptr, int(C.EncodeInt32LE((*C.char)(hptr),
|
|
|
|
C.int(packet.m_nInfoField2))))
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if t >= 0xffffff {
|
2018-07-27 07:36:40 +03:00
|
|
|
hptr = unsafe.Pointer(amfEncodeInt32((*byte)(hptr), (*byte)(hend), (int32)(t)))
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nSize = int(packet.m_nBodySize)
|
2018-07-16 12:20:17 +03:00
|
|
|
buffer = unsafe.Pointer(packet.m_body)
|
2018-07-15 09:51:20 +03:00
|
|
|
nChunkSize = int(r.m_outChunkSize)
|
|
|
|
|
|
|
|
if debugMode {
|
|
|
|
log.Printf("sendPacket: fd=%v, size=%v", r.m_sb.sb_socket, nSize)
|
|
|
|
}
|
|
|
|
|
|
|
|
// send all chunks in one HTTP request
|
|
|
|
// TODO: port RTMP_FEATURE_HTTP
|
2018-07-19 09:08:10 +03:00
|
|
|
if int(r.Link.protocol&RTMP_FEATURE_HTTP) != 0 {
|
2018-07-18 05:26:32 +03:00
|
|
|
chunks := (nSize + nChunkSize - 1) / nChunkSize
|
2018-07-15 09:51:20 +03:00
|
|
|
if chunks > 1 {
|
2018-07-18 05:26:32 +03:00
|
|
|
tlen = chunks*(cSize+1) + nSize + hSize
|
2018-07-15 09:51:20 +03:00
|
|
|
// TODO: figure out how to do this in go
|
2018-07-28 04:35:51 +03:00
|
|
|
tbuf = allocate(uintptr(tlen))
|
2018-07-15 09:51:20 +03:00
|
|
|
|
2018-07-16 12:20:17 +03:00
|
|
|
if tbuf == nil {
|
2018-07-15 09:51:20 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
toff = tbuf
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (nSize + hSize) != 0 {
|
|
|
|
var wrote int
|
|
|
|
|
|
|
|
if nSize < nChunkSize {
|
|
|
|
nChunkSize = nSize
|
|
|
|
}
|
|
|
|
|
|
|
|
if tbuf != nil {
|
2018-07-16 18:56:52 +03:00
|
|
|
//memmove(toff, header, uintptr(nChunkSize + hSize))
|
|
|
|
copy(ptrToSlice(toff, int(nChunkSize+hSize)), ptrToSlice(header,
|
|
|
|
int(nChunkSize+hSize)))
|
2018-07-18 05:26:32 +03:00
|
|
|
toff = incBytePtr(toff, nChunkSize+hSize)
|
2018-07-15 09:51:20 +03:00
|
|
|
} else {
|
|
|
|
// TODO: port this
|
2018-07-17 13:05:25 +03:00
|
|
|
wrote = int(writeN(r, header, nChunkSize+hSize))
|
2018-07-15 09:51:20 +03:00
|
|
|
|
|
|
|
if wrote == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nSize -= nChunkSize
|
2018-07-18 05:26:32 +03:00
|
|
|
buffer = incBytePtr(buffer, nChunkSize)
|
2018-07-15 09:51:20 +03:00
|
|
|
hSize = 0
|
|
|
|
|
|
|
|
if nSize > 0 {
|
2018-07-16 12:20:17 +03:00
|
|
|
header = decBytePtr(buffer, 1)
|
2018-07-15 09:51:20 +03:00
|
|
|
hSize = 1
|
|
|
|
|
|
|
|
if cSize != 0 {
|
2018-07-18 05:26:32 +03:00
|
|
|
header = decBytePtr(header, cSize)
|
2018-07-15 09:51:20 +03:00
|
|
|
hSize += cSize
|
|
|
|
}
|
|
|
|
|
|
|
|
if t >= 0xffffff {
|
2018-07-18 05:26:32 +03:00
|
|
|
header = decBytePtr(header, 4)
|
2018-07-15 09:51:20 +03:00
|
|
|
hSize += 4
|
|
|
|
}
|
|
|
|
|
2018-07-15 10:18:38 +03:00
|
|
|
*(*byte)(header) = byte(0xc0 | c)
|
2018-07-15 09:51:20 +03:00
|
|
|
|
|
|
|
if cSize != 0 {
|
2018-07-15 10:18:38 +03:00
|
|
|
tmp := int(packet.m_nChannel) - 64
|
2018-07-18 05:26:32 +03:00
|
|
|
*indxBytePtr(header, 1) = byte(tmp & 0xff)
|
2018-07-15 09:51:20 +03:00
|
|
|
|
2018-07-15 10:18:38 +03:00
|
|
|
if cSize == 2 {
|
2018-07-18 05:26:32 +03:00
|
|
|
*indxBytePtr(header, 2) = byte(tmp >> 8)
|
2018-07-15 10:18:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if t >= 0xffffff {
|
2018-07-18 05:26:32 +03:00
|
|
|
extendedTimestamp := incBytePtr(header, 1+cSize)
|
2018-07-27 07:36:40 +03:00
|
|
|
amfEncodeInt32((*byte)(extendedTimestamp),
|
2018-07-19 10:26:41 +03:00
|
|
|
(*byte)(incBytePtr(extendedTimestamp, 4)), (int32)(t))
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-15 10:18:38 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 12:20:17 +03:00
|
|
|
if tbuf != nil {
|
2018-07-17 13:05:25 +03:00
|
|
|
wrote := int(writeN(r, tbuf, int(uintptr(decBytePtr(toff,
|
2018-07-16 12:20:17 +03:00
|
|
|
int(uintptr(unsafe.Pointer(tbuf))))))))
|
2018-07-28 07:57:30 +03:00
|
|
|
//C.free(tbuf)
|
2018-07-15 10:18:38 +03:00
|
|
|
tbuf = nil
|
|
|
|
|
|
|
|
if wrote == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
2018-07-15 09:51:20 +03:00
|
|
|
|
2018-07-15 10:18:38 +03:00
|
|
|
// We invoked a remote method
|
|
|
|
// TODO: port the const
|
2018-07-19 09:08:10 +03:00
|
|
|
if packet.m_packetType == RTMP_PACKET_TYPE_INVOKE {
|
2018-07-15 10:18:38 +03:00
|
|
|
// TODO: port C.AVal
|
2018-07-15 10:48:24 +03:00
|
|
|
var method C.AVal
|
2018-07-15 10:18:38 +03:00
|
|
|
var ptr unsafe.Pointer
|
2018-07-18 05:26:32 +03:00
|
|
|
ptr = incBytePtr(unsafe.Pointer(packet.m_body), 1)
|
2018-07-27 07:36:40 +03:00
|
|
|
amfDecodeString((*byte)(ptr), &method)
|
2018-07-15 10:18:38 +03:00
|
|
|
|
|
|
|
if debugMode {
|
|
|
|
log.Printf("Invoking %v", method.av_val)
|
|
|
|
}
|
|
|
|
// keep it in call queue till result arrives
|
|
|
|
if queue != 0 {
|
|
|
|
var txn int
|
2018-07-18 05:26:32 +03:00
|
|
|
ptr = incBytePtr(ptr, 3+int(method.av_len))
|
2018-07-28 03:45:12 +03:00
|
|
|
txn = int(amfDecodeNumber((*byte)(ptr)))
|
2018-07-15 10:18:38 +03:00
|
|
|
// TODO: port this
|
2018-07-28 04:55:35 +03:00
|
|
|
C.AV_queue(&r.m_methodCalls, (*C.int)(unsafe.Pointer(&r.m_numCalls)), &method,
|
|
|
|
C.int(txn))
|
2018-07-15 10:18:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-17 11:30:24 +03:00
|
|
|
if *(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsOut),
|
|
|
|
int(packet.m_nChannel), int(unsafe.Sizeof(packet)))) == nil {
|
2018-07-16 12:20:17 +03:00
|
|
|
|
2018-07-18 05:26:32 +03:00
|
|
|
*(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsOut),
|
|
|
|
int(packet.m_nChannel), int(unsafe.Sizeof(packet)))) =
|
2018-07-28 04:35:51 +03:00
|
|
|
(*C.RTMPPacket)(allocate(unsafe.Sizeof(*packet)))
|
2018-07-15 09:51:20 +03:00
|
|
|
}
|
2018-07-14 09:06:58 +03:00
|
|
|
|
2018-07-19 10:29:03 +03:00
|
|
|
memmove(unsafe.Pointer(*(**C.RTMPPacket)(incPtr(unsafe.Pointer(r.m_vecChannelsOut),
|
|
|
|
int(packet.m_nChannel), int(unsafe.Sizeof(packet))))), unsafe.Pointer(packet),
|
|
|
|
uintptr(unsafe.Sizeof(*packet)))
|
2018-07-15 10:18:38 +03:00
|
|
|
return 1
|
2018-05-29 08:56:36 +03:00
|
|
|
}
|
2018-07-15 09:51:20 +03:00
|
|
|
|
2018-07-15 10:48:24 +03:00
|
|
|
func writeN(r *C.RTMP, buffer unsafe.Pointer, n int) int {
|
|
|
|
ptr := buffer
|
|
|
|
for n > 0 {
|
|
|
|
var nBytes int
|
|
|
|
|
2018-07-20 11:10:37 +03:00
|
|
|
// TODO: port this if necessary
|
|
|
|
nBytes = int(sockBufSend(&r.m_sb, (*byte)(ptr), int32(n)))
|
2018-07-15 10:48:24 +03:00
|
|
|
|
|
|
|
if nBytes < 0 {
|
|
|
|
if debugMode {
|
2018-07-23 02:08:22 +03:00
|
|
|
log.Println("writeN, RTMP send error")
|
2018-07-15 10:48:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: port this
|
|
|
|
C.RTMP_Close(r)
|
|
|
|
n = 1
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if nBytes == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
n -= nBytes
|
2018-07-17 13:05:25 +03:00
|
|
|
ptr = incBytePtr(ptr, nBytes)
|
2018-07-15 10:48:24 +03:00
|
|
|
}
|
|
|
|
|
2018-07-17 13:05:25 +03:00
|
|
|
if n == 0 {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
2018-07-15 10:48:24 +03:00
|
|
|
}
|
|
|
|
|
2018-07-18 06:56:23 +03:00
|
|
|
const length = 512
|
|
|
|
|
|
|
|
var RTMPT_cmds = []string{
|
|
|
|
"open",
|
|
|
|
"send",
|
|
|
|
"idle",
|
|
|
|
"close",
|
|
|
|
}
|
|
|
|
|
2018-07-19 08:53:06 +03:00
|
|
|
func sockBufSend(sb *C.RTMPSockBuf, buf *byte, l int32) int32 {
|
|
|
|
return int32(C.send(sb.sb_socket, unsafe.Pointer(buf), C.size_t(l), 0))
|
|
|
|
}
|
|
|
|
|
2018-07-15 12:26:59 +03:00
|
|
|
// TODO: port RTMP_METHOD
|
2018-07-18 06:56:23 +03:00
|
|
|
func avQueue(vals **C.RTMP_METHOD, num *int, av *C.AVal, txn int) {
|
2018-07-15 12:26:59 +03:00
|
|
|
if (*num & 0x0f) == 0 {
|
|
|
|
// TODO: work out what to do with the realloc
|
2018-07-28 04:35:51 +03:00
|
|
|
*vals = (*C.RTMP_METHOD)(realloc(unsafe.Pointer(*vals), int((*num+16)*
|
2018-07-28 03:45:12 +03:00
|
|
|
int(unsafe.Sizeof(*(*vals))))))
|
2018-07-15 12:26:59 +03:00
|
|
|
}
|
2018-07-28 04:35:51 +03:00
|
|
|
tmp := allocate(uintptr(av.av_len + 1))
|
2018-07-19 10:29:03 +03:00
|
|
|
memmove(tmp, unsafe.Pointer(av.av_val), uintptr(av.av_len))
|
2018-07-28 03:45:12 +03:00
|
|
|
*indxBytePtr(tmp, int(av.av_len)) = '\000'
|
|
|
|
|
2018-07-18 06:56:23 +03:00
|
|
|
(*(*C.RTMP_METHOD)(incPtr(unsafe.Pointer(*vals), *num,
|
2018-07-28 03:45:12 +03:00
|
|
|
int(unsafe.Sizeof(*(*vals)))))).num = C.int(txn)
|
2018-07-18 06:56:23 +03:00
|
|
|
(*(*C.RTMP_METHOD)(incPtr(unsafe.Pointer(*vals), *num,
|
2018-07-28 03:45:12 +03:00
|
|
|
int(unsafe.Sizeof(*(*vals)))))).name.av_len = av.av_len
|
2018-07-18 06:56:23 +03:00
|
|
|
(*(*C.RTMP_METHOD)(incPtr(unsafe.Pointer(*vals), *num,
|
2018-07-28 03:45:12 +03:00
|
|
|
int(unsafe.Sizeof(*(*vals)))))).name.av_val = (*C.char)(tmp)
|
2018-07-28 04:35:51 +03:00
|
|
|
*num++
|
2018-07-15 12:26:59 +03:00
|
|
|
}
|
2018-07-18 05:32:02 +03:00
|
|
|
|
2018-07-27 07:36:40 +03:00
|
|
|
func amfEncodeNamedNumber(output *byte, outend *byte, strName *C.AVal, dVal float64) *byte {
|
|
|
|
if int(uintptr(unsafe.Pointer(output)))+2+int(strName.av_len) > int(uintptr(unsafe.Pointer(outend))) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
output = amfEncodeInt16(output, outend, int16(strName.av_len))
|
|
|
|
memmove(unsafe.Pointer(output), unsafe.Pointer(outend), uintptr(strName.av_len))
|
|
|
|
output = (*byte)(incBytePtr(unsafe.Pointer(output), int(strName.av_len)))
|
|
|
|
return amfEncodeNumber(output, outend, dVal)
|
|
|
|
}
|
|
|
|
|
2018-07-27 08:14:02 +03:00
|
|
|
func amfEncodeNamedBoolean(output *byte, outend *byte, strName *C.AVal, bVal int) *byte {
|
2018-07-27 07:36:40 +03:00
|
|
|
if int(uintptr(unsafe.Pointer(output)))+2+int(strName.av_len) > int(uintptr(unsafe.Pointer(outend))) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
output = amfEncodeInt16(output, outend, int16(strName.av_len))
|
|
|
|
memmove(unsafe.Pointer(output), unsafe.Pointer(outend), uintptr(strName.av_len))
|
|
|
|
output = (*byte)(incBytePtr(unsafe.Pointer(output), int(strName.av_len)))
|
2018-07-27 08:14:02 +03:00
|
|
|
return amfEncodeBoolean(output, outend, bVal)
|
|
|
|
}
|
2018-07-27 07:36:40 +03:00
|
|
|
|
2018-07-27 08:14:02 +03:00
|
|
|
func amfEncodeBoolean(output *byte, outend *byte, bVal int) *byte {
|
|
|
|
if int(uintptr(unsafe.Pointer(output)))+2 > int(uintptr(unsafe.Pointer(outend))) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
*(*byte)(unsafe.Pointer(output)) = C.AMF_BOOLEAN
|
|
|
|
output = (*byte)(incBytePtr(unsafe.Pointer(output), 1))
|
|
|
|
val := byte(0x01)
|
|
|
|
if bVal == 0 {
|
|
|
|
val = byte(0x00)
|
|
|
|
}
|
|
|
|
*(*byte)(unsafe.Pointer(output)) = val
|
|
|
|
return output
|
2018-07-27 07:36:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func amfEncodeNumber(output *byte, outend *byte, dVal float64) *byte {
|
|
|
|
if int(uintptr(unsafe.Pointer(output)))+1+8 > int(uintptr(unsafe.Pointer(outend))) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// TODO: port this
|
2018-07-27 08:14:02 +03:00
|
|
|
*(*byte)(unsafe.Pointer(output)) = C.AMF_NUMBER
|
2018-07-27 07:36:40 +03:00
|
|
|
output = (*byte)(incBytePtr(unsafe.Pointer(output), 1))
|
|
|
|
// NOTE: here we are assuming little endian for both byte order and float
|
|
|
|
// word order
|
|
|
|
var ci, co *uint8
|
|
|
|
ci = (*uint8)(unsafe.Pointer(&dVal))
|
|
|
|
co = (*uint8)(unsafe.Pointer(output))
|
|
|
|
for i := 0; i < 8; i++ {
|
|
|
|
*indxBytePtr(unsafe.Pointer(co), i) = *indxBytePtr(unsafe.Pointer(ci), 7-i)
|
|
|
|
}
|
2018-07-27 08:14:02 +03:00
|
|
|
return (*byte)(incBytePtr(unsafe.Pointer(output), 8))
|
2018-07-27 07:36:40 +03:00
|
|
|
}
|
|
|
|
|
2018-07-28 03:45:12 +03:00
|
|
|
func amfDecodeNumber(data *byte) float64 {
|
|
|
|
var dVal float64
|
|
|
|
var ci, co *uint8
|
|
|
|
ci = (*uint8)(unsafe.Pointer(data))
|
|
|
|
co = (*uint8)(unsafe.Pointer(&dVal))
|
|
|
|
for i := 0; i < 8; i++ {
|
|
|
|
*indxBytePtr(unsafe.Pointer(co), i) = *indxBytePtr(unsafe.Pointer(ci), 7-i)
|
|
|
|
}
|
|
|
|
return dVal
|
|
|
|
}
|
|
|
|
|
2018-07-27 07:36:40 +03:00
|
|
|
func amfEncodeNamedString(output *byte, outend *byte, strName *C.AVal, strValue *C.AVal) *byte {
|
|
|
|
if int(uintptr(unsafe.Pointer(output)))+2+int(strName.av_len) > int(uintptr(unsafe.Pointer(outend))) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
output = amfEncodeInt16(output, outend, int16(strName.av_len))
|
|
|
|
memmove(unsafe.Pointer(output), unsafe.Pointer(outend), uintptr(strName.av_len))
|
|
|
|
output = (*byte)(incBytePtr(unsafe.Pointer(output), int(strName.av_len)))
|
|
|
|
return amfEncodeString(output, outend, strValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfDecodeString decodes data into a string inside a AVal
|
|
|
|
func amfDecodeString(data *byte, bv *C.AVal) {
|
|
|
|
dataPtr := unsafe.Pointer(data)
|
|
|
|
bv.av_len = C.int(amfDecodeInt16((*byte)(dataPtr)))
|
|
|
|
if bv.av_len > 0 {
|
|
|
|
bv.av_val = (*C.char)(incBytePtr(dataPtr, 2))
|
|
|
|
} else {
|
|
|
|
bv.av_val = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfDecodeInt16 decodes data into a 16 bit number
|
|
|
|
func amfDecodeInt16(data *byte) uint16 {
|
|
|
|
c := unsafe.Pointer(data)
|
|
|
|
return (uint16(*(*uint8)(c)) << 8) | *(*uint16)(incBytePtr(c, 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfEncodeInt24 encodes a int24 into data
|
|
|
|
func amfEncodeInt24(output *byte, outend *byte, nVal int32) *byte {
|
|
|
|
outputPtr := unsafe.Pointer(output)
|
|
|
|
outendPtr := unsafe.Pointer(outend)
|
|
|
|
if uintptr(outputPtr)+3 > uintptr(outendPtr) {
|
|
|
|
// length < 3
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Assign output[2]
|
|
|
|
third := (*byte)(incBytePtr(outputPtr, 2))
|
|
|
|
*third = (byte)(nVal & 0xff)
|
|
|
|
// Assign output[1]
|
|
|
|
second := (*byte)(incBytePtr(outputPtr, 1))
|
|
|
|
*second = (byte)(nVal >> 8)
|
|
|
|
// Assign output[0]
|
|
|
|
*output = (byte)(nVal >> 16)
|
|
|
|
return (*byte)(incBytePtr(outputPtr, 3))
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfDecodeInt24 decodes data into an unsigned int
|
|
|
|
func amfDecodeInt24(data *byte) uint32 {
|
|
|
|
// TODO Understand logic and simplify
|
|
|
|
c := (*uint8)(unsafe.Pointer(data))
|
|
|
|
dst := uint32(int32(*c) << 16)
|
|
|
|
dst |= uint32(int32(*((*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(c)) +
|
|
|
|
(uintptr)(int32(1))*unsafe.Sizeof(*c))))) << 8)
|
|
|
|
dst |= uint32(int32(*((*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(c)) +
|
|
|
|
(uintptr)(int32(2))*unsafe.Sizeof(*c))))))
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
func amfEncodeString(output *byte, outend *byte, bv *C.AVal) *byte {
|
|
|
|
outputPtr := unsafe.Pointer(output)
|
|
|
|
outendPtr := unsafe.Pointer(outend)
|
|
|
|
if (bv.av_len < 65536 && uintptr(incBytePtr(outputPtr, 1+2+int(bv.av_len))) >
|
|
|
|
uintptr(outendPtr)) || uintptr(incBytePtr(outputPtr, 1+4+int(bv.av_len))) >
|
|
|
|
uintptr(outendPtr) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if bv.av_len < 65536 {
|
|
|
|
*(*C.char)(outputPtr) = C.AMF_STRING
|
|
|
|
incBytePtr(outputPtr, 1)
|
|
|
|
outputPtr = unsafe.Pointer(amfEncodeInt16((*byte)(outputPtr),
|
|
|
|
(*byte)(outendPtr), (int16)(bv.av_len)))
|
|
|
|
} else {
|
|
|
|
*(*C.char)(outputPtr) = C.AMF_LONG_STRING
|
|
|
|
incBytePtr(outputPtr, 1)
|
|
|
|
outputPtr = unsafe.Pointer(amfEncodeInt32((*byte)(outputPtr),
|
|
|
|
(*byte)(outendPtr), (int32)(bv.av_len)))
|
|
|
|
}
|
|
|
|
memmove(unsafe.Pointer(outputPtr), unsafe.Pointer(bv.av_val), uintptr(bv.av_len))
|
|
|
|
//C.memcpy(unsafe.Pointer(outputPtr), unsafe.Pointer(bv.av_val), (C.size_t)(bv.av_len))
|
|
|
|
incBytePtr(outputPtr, int(bv.av_len))
|
|
|
|
return (*byte)(outputPtr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfEncodeInt16 encodes a int16 into data
|
|
|
|
func amfEncodeInt16(output *byte, outend *byte, nVal int16) *byte {
|
|
|
|
outputPtr := unsafe.Pointer(output)
|
|
|
|
outendPtr := unsafe.Pointer(outend)
|
|
|
|
if uintptr(outputPtr)+2 > uintptr(outendPtr) {
|
|
|
|
// length < 2
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Assign output[1]
|
|
|
|
second := (*byte)(incBytePtr(outputPtr, 1))
|
|
|
|
*second = (byte)(nVal & 0xff)
|
|
|
|
// Assign output[0]
|
|
|
|
*output = (byte)(nVal >> 8)
|
|
|
|
return (*byte)(incBytePtr(outputPtr, 2))
|
|
|
|
}
|
|
|
|
|
|
|
|
// amfEncodeInt32 encodes a int32 into data
|
|
|
|
func amfEncodeInt32(output *byte, outend *byte, nVal int32) *byte {
|
|
|
|
outputPtr := unsafe.Pointer(output)
|
|
|
|
outendPtr := unsafe.Pointer(outend)
|
|
|
|
if uintptr(outputPtr)+4 > uintptr(outendPtr) {
|
|
|
|
// length < 4
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Assign output[3]
|
|
|
|
forth := (*byte)(incBytePtr(outputPtr, 3))
|
|
|
|
*forth = (byte)(nVal & 0xff)
|
|
|
|
// Assign output[2]
|
|
|
|
third := (*byte)(incBytePtr(outputPtr, 2))
|
|
|
|
*third = (byte)(nVal >> 8)
|
|
|
|
// Assign output[1]
|
|
|
|
second := (*byte)(incBytePtr(outputPtr, 1))
|
|
|
|
*second = (byte)(nVal >> 16)
|
|
|
|
// Assign output[0]
|
|
|
|
*output = (byte)(nVal >> 24)
|
|
|
|
return (*byte)(incBytePtr(outputPtr, 4))
|
|
|
|
}
|
|
|
|
|
2018-07-28 04:35:51 +03:00
|
|
|
func realloc(ptr unsafe.Pointer, size int) unsafe.Pointer {
|
|
|
|
dest := allocate(uintptr(size))
|
2018-07-28 04:55:35 +03:00
|
|
|
if ptr != nil {
|
|
|
|
memmove(dest, ptr, uintptr(size))
|
|
|
|
}
|
2018-07-28 04:35:51 +03:00
|
|
|
return dest
|
|
|
|
}
|
|
|
|
|
|
|
|
func memmove(to, from unsafe.Pointer, n uintptr) {
|
|
|
|
copy(ptrToSlice(to, int(n)), ptrToSlice(from, int(n)))
|
|
|
|
}
|
|
|
|
|
2018-07-24 15:00:50 +03:00
|
|
|
// TODO: write test for this func
|
|
|
|
func memcmp(a, b unsafe.Pointer, size int) int {
|
2018-07-23 02:08:22 +03:00
|
|
|
for i := 0; i < size; i++ {
|
2018-07-24 15:00:50 +03:00
|
|
|
aValue := *indxBytePtr(a, i)
|
|
|
|
bValue := *indxBytePtr(b, i)
|
2018-07-23 02:08:22 +03:00
|
|
|
if aValue != bValue {
|
|
|
|
if aValue < bValue {
|
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-21 02:24:16 +03:00
|
|
|
func memset(ptr *byte, val byte, num int) {
|
|
|
|
for i := 0; i < num; i++ {
|
|
|
|
*indxBytePtr(unsafe.Pointer(ptr), int(i)) = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-20 14:53:57 +03:00
|
|
|
func strLen(str string) int {
|
|
|
|
return len(str)
|
|
|
|
}
|
|
|
|
|
2018-07-20 07:40:08 +03:00
|
|
|
// wrapper for converting byte pointer to unsafe.Pointer
|
2018-07-20 08:44:39 +03:00
|
|
|
func bToUP(b *byte) unsafe.Pointer {
|
2018-07-20 07:40:08 +03:00
|
|
|
return unsafe.Pointer(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// wrapper for converting slice to unsafe.pointer
|
2018-07-20 08:44:39 +03:00
|
|
|
func sToUP(b []byte) unsafe.Pointer {
|
2018-07-20 07:40:08 +03:00
|
|
|
return unsafe.Pointer(&b[0])
|
|
|
|
}
|
|
|
|
|
2018-07-20 11:10:37 +03:00
|
|
|
// Creates a new C style string from a go string
|
2018-07-19 18:35:21 +03:00
|
|
|
func goStrToCStr(str string) *byte {
|
|
|
|
l := len(str)
|
|
|
|
slice := make([]byte, l+1)
|
|
|
|
ptr := unsafe.Pointer(&[]byte(str)[0])
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
slice[i] = *indxBytePtr(ptr, i)
|
|
|
|
}
|
|
|
|
slice[l] = '\000'
|
2018-07-20 08:44:39 +03:00
|
|
|
return &slice[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicates a string given as a byte pointer
|
|
|
|
func strdup(str *byte) *byte {
|
|
|
|
length := strlen(str)
|
|
|
|
newMem := make([]byte, length+1)
|
|
|
|
oldMem := ptrToSlice(unsafe.Pointer(str), int(length+1))
|
|
|
|
copy(newMem, oldMem)
|
|
|
|
return &newMem[0]
|
2018-07-19 18:35:21 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:44:39 +03:00
|
|
|
// Gets the length of the string found at str - length is number of chars
|
|
|
|
// between start and terminating null char. Returns -1 if a null char is not
|
|
|
|
// found before a count of 1000
|
2018-07-19 18:35:21 +03:00
|
|
|
func strlen(str *byte) int32 {
|
2018-07-20 08:44:39 +03:00
|
|
|
var ptr *byte
|
|
|
|
for i := 0; i < 1000; i++ {
|
2018-07-19 18:35:21 +03:00
|
|
|
ptr = indxBytePtr(unsafe.Pointer(str), i)
|
|
|
|
if *ptr == '\000' {
|
2018-07-20 08:44:39 +03:00
|
|
|
return int32(i)
|
2018-07-19 18:35:21 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-20 08:44:39 +03:00
|
|
|
return int32(-1)
|
2018-07-19 18:35:21 +03:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:44:39 +03:00
|
|
|
// Returns the pointer where the first occurance of val is located in a string
|
|
|
|
// which is terminated by a null char. Returns nil if null char is not found
|
|
|
|
// before a count of 10000
|
2018-07-19 18:35:21 +03:00
|
|
|
func strchr(str *byte, val byte) *byte {
|
|
|
|
var ptr *byte
|
2018-07-20 08:44:39 +03:00
|
|
|
for i := 0; i < 1000; i++ {
|
2018-07-19 18:35:21 +03:00
|
|
|
ptr = indxBytePtr(unsafe.Pointer(str), i)
|
|
|
|
if *ptr == val {
|
|
|
|
return ptr
|
|
|
|
}
|
|
|
|
if *ptr == '\000' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:44:39 +03:00
|
|
|
// Creates mem of the size noOfBytes. returns as unsafe pointer
|
2018-07-19 10:54:37 +03:00
|
|
|
func allocate(nOfBytes uintptr) unsafe.Pointer {
|
|
|
|
mem := make([]byte, int(nOfBytes))
|
|
|
|
return unsafe.Pointer(&mem[0])
|
|
|
|
}
|
|
|
|
|
2018-07-16 06:30:58 +03:00
|
|
|
// indxBytePtr returns a byte at the indx inc give a ptr
|
2018-07-16 12:20:17 +03:00
|
|
|
func indxBytePtr(ptr unsafe.Pointer, inc int) *byte {
|
|
|
|
return (*byte)(incPtr(ptr, inc, byteSize))
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// indxInt32Ptr returns an int32 at the indx inc given a ptr
|
2018-07-16 12:20:17 +03:00
|
|
|
func indxInt32Ptr(ptr unsafe.Pointer, inc int) *int32 {
|
|
|
|
return (*int32)(incPtr(ptr, inc, int32Size))
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// indxInt64Ptr returns an int64 at the indx inc given a ptr
|
2018-07-16 12:20:17 +03:00
|
|
|
func indxInt64Ptr(ptr unsafe.Pointer, inc int) *int64 {
|
|
|
|
return (*int64)(incPtr(ptr, inc, int64Size))
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
// incBytePtr returns an unsafe.Pointer to a byte that is inc positive positions
|
2018-07-16 06:30:58 +03:00
|
|
|
// from the passed ptr
|
|
|
|
func incBytePtr(ptr unsafe.Pointer, inc int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return incPtr(ptr, inc, byteSize)
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
// incInt32Ptr returns an unsafe.Pointer to an int32 that is inc positive
|
|
|
|
// positions from the passed ptr
|
2018-07-16 06:30:58 +03:00
|
|
|
func incInt32Ptr(ptr unsafe.Pointer, inc int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return incPtr(ptr, inc, int32Size)
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
// incInt64Ptr returns an unsafe.Pointer to an int64 that is inc positive
|
|
|
|
// positions from the passed ptr
|
2018-07-16 06:30:58 +03:00
|
|
|
func incInt64Ptr(ptr unsafe.Pointer, inc int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return incPtr(ptr, inc, int64Size)
|
2018-07-16 06:30:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// incPtr attempts to replicate C like pointer arithmatic functionality
|
|
|
|
func incPtr(ptr unsafe.Pointer, inc, typeSize int) unsafe.Pointer {
|
|
|
|
return unsafe.Pointer(uintptr(ptr) + uintptr(inc*typeSize))
|
|
|
|
}
|
|
|
|
|
|
|
|
// incPtr attempts to replicate C like pointer arithmatic functionality
|
|
|
|
func decPtr(ptr unsafe.Pointer, dec, typeSize int) unsafe.Pointer {
|
|
|
|
return unsafe.Pointer(uintptr(ptr) - uintptr(dec*typeSize))
|
|
|
|
}
|
|
|
|
|
2018-07-16 08:07:26 +03:00
|
|
|
// decBytePtr returns an unsafe.Pointer to a byte that is dec negative positions
|
|
|
|
// from ptr
|
|
|
|
func decBytePtr(ptr unsafe.Pointer, dec int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return decPtr(ptr, dec, byteSize)
|
2018-07-16 08:07:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// decBytePtr returns an unsafe.Pointer to a int32 that is dec negative positions
|
|
|
|
// from ptr
|
|
|
|
func decInt32Ptr(ptr unsafe.Pointer, dec int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return decPtr(ptr, dec, int32Size)
|
2018-07-16 08:07:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// decBytePtr returns an unsafe.Pointer to a int64 that is dec negative positions
|
|
|
|
// from ptr
|
|
|
|
func decInt64Ptr(ptr unsafe.Pointer, dec int) unsafe.Pointer {
|
2018-07-18 05:26:32 +03:00
|
|
|
return decPtr(ptr, dec, int64Size)
|
2018-07-16 08:07:26 +03:00
|
|
|
}
|
|
|
|
|
2018-07-15 10:20:56 +03:00
|
|
|
// sliceToPtr get's the address of the first data element and returns as unsafe
|
|
|
|
// pointer
|
|
|
|
func sliceToPtr(data []byte) unsafe.Pointer {
|
|
|
|
return unsafe.Pointer(&data[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
// ptrToSlice returns a slice given unsafe pointer and size - no allocation and
|
|
|
|
// copying is required - same data is used.
|
|
|
|
func ptrToSlice(data unsafe.Pointer, size int) []byte {
|
|
|
|
var ret []byte
|
|
|
|
shDest := (*reflect.SliceHeader)(unsafe.Pointer(&ret))
|
|
|
|
shDest.Data = uintptr(data)
|
|
|
|
shDest.Len = size
|
|
|
|
shDest.Cap = size
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:24:36 +03:00
|
|
|
// C.AVal is in amf.h
|
|
|
|
// See AVC(str) {str, sizeof(str)-1} in amf.h
|
|
|
|
func AVC(str string) C.AVal {
|
|
|
|
var aval C.AVal
|
|
|
|
aval.av_val = C.CString(str)
|
|
|
|
aval.av_len = C.int(len(str))
|
|
|
|
return aval
|
|
|
|
}
|
|
|
|
|
2018-06-20 07:26:40 +03:00
|
|
|
var rtmpErrs = [...]string{
|
|
|
|
1: "rtmp: not connected",
|
|
|
|
2: "rtmp: write error",
|
|
|
|
3: "rtmp: not started",
|
|
|
|
}
|
|
|
|
|
|
|
|
type Err uint
|
|
|
|
|
|
|
|
func (e Err) Error() string {
|
|
|
|
if 0 <= int(e) && int(e) < len(rtmpErrs) {
|
|
|
|
s := rtmpErrs[e]
|
|
|
|
if s != "" {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "rtmp: " + strconv.Itoa(int(e))
|
|
|
|
}
|