fix: rtsp pull and push

This commit is contained in:
langhuihui
2024-08-13 14:44:35 +08:00
parent 43c0fc7be4
commit 78e8d74fec
18 changed files with 213 additions and 236 deletions

View File

@@ -147,12 +147,3 @@ func Test_Hooks(t *testing.T) {
})
mt.AddTask(&task).WaitStarted()
}
func Test_GetID_IncrementsID(t *testing.T) {
mt := createMarcoTask()
id1 := mt.GetNextID()
id2 := mt.GetNextID()
if id1 == id2 {
t.Errorf("expected different IDs, got %d and %d", id1, id2)
}
}