92 lines
1.8 KiB
Go
92 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/aler9/gortsplib"
|
|
)
|
|
|
|
type sourceUdpListener struct {
|
|
p *program
|
|
source *source
|
|
trackId int
|
|
streamType gortsplib.StreamType
|
|
publisherIp net.IP
|
|
publisherPort int
|
|
nconn *net.UDPConn
|
|
running bool
|
|
readBuf *doubleBuffer
|
|
|
|
writeChan chan *udpAddrBufPair
|
|
done chan struct{}
|
|
}
|
|
|
|
func newSourceUdpListener(p *program, port int, source *source,
|
|
trackId int, streamType gortsplib.StreamType, publisherIp net.IP) (*sourceUdpListener, error) {
|
|
nconn, err := net.ListenUDP("udp", &net.UDPAddr{
|
|
Port: port,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
l := &sourceUdpListener{
|
|
p: p,
|
|
source: source,
|
|
trackId: trackId,
|
|
streamType: streamType,
|
|
publisherIp: publisherIp,
|
|
nconn: nconn,
|
|
readBuf: newDoubleBuffer(2048),
|
|
writeChan: make(chan *udpAddrBufPair),
|
|
done: make(chan struct{}),
|
|
}
|
|
|
|
return l, nil
|
|
}
|
|
|
|
func (l *sourceUdpListener) close() {
|
|
l.nconn.Close() // close twice
|
|
}
|
|
|
|
func (l *sourceUdpListener) start() {
|
|
go l.run()
|
|
}
|
|
|
|
func (l *sourceUdpListener) stop() {
|
|
l.nconn.Close()
|
|
<-l.done
|
|
}
|
|
|
|
func (l *sourceUdpListener) run() {
|
|
writeDone := make(chan struct{})
|
|
go func() {
|
|
defer close(writeDone)
|
|
for w := range l.writeChan {
|
|
l.nconn.SetWriteDeadline(time.Now().Add(l.p.conf.WriteTimeout))
|
|
l.nconn.WriteTo(w.buf, w.addr)
|
|
}
|
|
}()
|
|
|
|
for {
|
|
buf := l.readBuf.swap()
|
|
n, addr, err := l.nconn.ReadFromUDP(buf)
|
|
if err != nil {
|
|
break
|
|
}
|
|
|
|
if !l.publisherIp.Equal(addr.IP) || addr.Port != l.publisherPort {
|
|
continue
|
|
}
|
|
|
|
l.source.rtcpReceivers[l.trackId].OnFrame(l.streamType, buf[:n])
|
|
l.p.events <- programEventStreamerFrame{l.source, l.trackId, l.streamType, buf[:n]}
|
|
}
|
|
|
|
close(l.writeChan)
|
|
<-writeDone
|
|
|
|
close(l.done)
|
|
}
|