mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-11 18:40:38 +08:00

* rtmp: improve MsgCommandAMF0 * rtmp: fix MsgSetPeerBandwidth * rtmp: add message tests * rtmp: replace implementation with new one * rtmp: rename handshake functions * rtmp: avoid calling useless function * rtmp: use time.Duration for PTSDelta * rtmp: fix decoding chunks with relevant size * rtmp: rewrite implementation of rtmp connection * rtmp: fix tests * rtmp: improve error message * rtmp: replace h264 config implementation * link against github.com/notedit/rtmp * normalize MessageStreamID * rtmp: make acknowledge optional * rtmp: fix decoding of chunk2 + chunk3 * avoid using encoding/binary
78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
package message
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/notedit/rtmp/format/flv/flvio"
|
|
|
|
"github.com/aler9/rtsp-simple-server/internal/rtmp/chunk"
|
|
"github.com/aler9/rtsp-simple-server/internal/rtmp/rawmessage"
|
|
)
|
|
|
|
// MsgVideo is a video message.
|
|
type MsgVideo struct {
|
|
ChunkStreamID byte
|
|
DTS time.Duration
|
|
MessageStreamID uint32
|
|
IsKeyFrame bool
|
|
H264Type uint8
|
|
PTSDelta time.Duration
|
|
Payload []byte
|
|
}
|
|
|
|
// Unmarshal implements Message.
|
|
func (m *MsgVideo) Unmarshal(raw *rawmessage.Message) error {
|
|
m.ChunkStreamID = raw.ChunkStreamID
|
|
m.DTS = raw.Timestamp
|
|
m.MessageStreamID = raw.MessageStreamID
|
|
|
|
if len(raw.Body) < 5 {
|
|
return fmt.Errorf("invalid body size")
|
|
}
|
|
|
|
m.IsKeyFrame = (raw.Body[0] >> 4) == flvio.FRAME_KEY
|
|
|
|
codec := raw.Body[0] & 0x0F
|
|
if codec != flvio.VIDEO_H264 {
|
|
return fmt.Errorf("unsupported video codec: %d", codec)
|
|
}
|
|
|
|
m.H264Type = raw.Body[1]
|
|
|
|
tmp := uint32(raw.Body[2])<<16 | uint32(raw.Body[3])<<8 | uint32(raw.Body[4])
|
|
m.PTSDelta = time.Duration(tmp) * time.Millisecond
|
|
|
|
m.Payload = raw.Body[5:]
|
|
|
|
return nil
|
|
}
|
|
|
|
// Marshal implements Message.
|
|
func (m MsgVideo) Marshal() (*rawmessage.Message, error) {
|
|
body := make([]byte, 5+len(m.Payload))
|
|
|
|
if m.IsKeyFrame {
|
|
body[0] = flvio.FRAME_KEY << 4
|
|
} else {
|
|
body[0] = flvio.FRAME_INTER << 4
|
|
}
|
|
body[0] |= flvio.VIDEO_H264
|
|
body[1] = m.H264Type
|
|
|
|
tmp := uint32(m.PTSDelta / time.Millisecond)
|
|
body[2] = uint8(tmp >> 16)
|
|
body[3] = uint8(tmp >> 8)
|
|
body[4] = uint8(tmp)
|
|
|
|
copy(body[5:], m.Payload)
|
|
|
|
return &rawmessage.Message{
|
|
ChunkStreamID: m.ChunkStreamID,
|
|
Timestamp: m.DTS,
|
|
Type: chunk.MessageTypeVideo,
|
|
MessageStreamID: m.MessageStreamID,
|
|
Body: body,
|
|
}, nil
|
|
}
|