Replaced RTMP_Init with Saxon's rtmpInit - tested and works

This commit is contained in:
saxon 2018-07-20 17:48:44 +09:30
parent 12788e0325
commit 3b25a0f254
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ func (s *session) Write(data []byte) (int, error) {
func startSession(rtmp *C.RTMP, u string, timeout uint32) (*C.RTMP, error) {
connect_timeout := C.int(timeout)
rtmp = rtmpAlloc()
C.RTMP_Init(rtmp)
rtmpInit(rtmp)
rtmp.Link.timeout = connect_timeout
if C.RTMP_SetupURL(rtmp, (*C.char)(unsafe.Pointer(goStrToCStr(u)))) == 0 {
C.RTMP_Close(rtmp)