-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RSDK-9847] - Bump gortsplib dep #80
base: main
Are you sure you want to change the base?
Conversation
@@ -6,22 +6,22 @@ toolchain go1.23.2 | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do reconfigures/reboot behavior look ok?
@@ -202,7 +201,7 @@ func TestRTSPCameraPerformance(t *testing.T) { | |||
timeoutCtx, timeoutCancel := context.WithTimeout(context.Background(), time.Second*10) | |||
defer timeoutCancel() | |||
config := resource.NewEmptyConfig(camera.Named("foo"), ModelAgnostic) | |||
config.ConvertedAttributes = &Config{Address: "rtsp://" + h.s.RTSPAddress} | |||
config.ConvertedAttributes = &Config{Address: "rtsp://" + h.s.RTSPAddress + "/"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did we confirm that this doesn't double append /
?
if !ok { | ||
return | ||
} | ||
ntp := time.Now() | ||
u, err := fp.ProcessRTPPacket(pkt, ntp, pts, true) | ||
u, err := fp.ProcessRTPPacket(pkt, ntp, time.Duration(pts), true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is PTS not time since epoch?
Description
Bumping gortsplib to get latest improvements from h264/5 decoders. There seems to be some progress in improving fragmentation units here in the last few months.
The only deprecation change is moving from
PacketPTS
toPacketPTS2
.Tests