添加一些测试文件
Some checks failed
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled

This commit is contained in:
kunmeng
2025-10-09 16:32:42 +08:00
parent 0e65c9d1cc
commit 49da18f263
3 changed files with 30 additions and 3 deletions

View File

@@ -191,6 +191,7 @@ func Dial(options RTSPClientOptions) (*RTSPClient, error) {
client.CodecData = append(client.CodecData, h265parser.CodecData{})
}
client.videoCodec = av.H265
// Todo: 这里是 WebCoder 需要的扩展内容
} else {
client.Println("SDP Video Codec Type Not Supported", i2.Type)
@@ -810,7 +811,7 @@ func (client *RTSPClient) CodecUpdateVPS(val []byte) {
// Println mini logging functions
func (client *RTSPClient) Println(v ...interface{}) {
if client.options.Debug {
log.Println(v)
log.Println(v...)
}
}