rtpav1depay: Failed to handle RTP packet: Error
Describe your issue
We're using pion to trasmit AV1 payloads encoded with the following pipeline:
ximagesrc name=videosrc display-name=":0.0" remote=1 blocksize=16384 use-damage=0 show-pointer=true ! video/x-raw,name=videocaps ! queue leaky=downstream flush-on-eos=true max-size-time=40000000 max-size-buffers=0 max-size-bytes=0 ! videoconvert ! video/x-raw,format=I420 ! av1enc name=vcodec cpu-used=10 end-usage=cbr keyframe-max-dist=2147483647 lag-in-frames=0 overshoot-pct=10 row-mt=True usage-profile=realtime tile-columns=2 tile-rows=2 threads=8 target-bitrate=20000 ! video/x-av1,parsed=True,stream-format=obu-stream ! appsink name=appsink
The following pipeline is used to decode it:
appsrc format=time is-live=true do-timestamp=true name=src ! application/x-rtp,encoding-name=AV1,payload=96 ! queue ! rtpav1depay ! queue ! decodebin ! glimagesink name=glsink
Expected Behavior
It should not print any errors and show the picture on the screen
Observed Behavior
Black screen and spamming
0:00:05.680624059 5869 0x7b702c000e30 WARN rtpav1depay net/rtp/src/av1/depay/imp.rs:184:<gstrsrtp::av1::depay::imp::RTPAv1Depay as gstreamer_rtp::subclass::rtp_base_depayload::RTPBaseDepayloadImpl>::process_rtp_packet:<rtpav1depay0> Failed to handle RTP packet: Error
96
0:00:05.718753607 5869 0x34980af0 INFO GST_PARENTAGE gstbin.c:4395:gst_bin_get_by_name: [pipeline0]: looking up child element src
0:00:05.719088031 5869 0x7b702c000e30 INFO GST_ERROR_SYSTEM gstelement.c:2281:gst_element_message_full_with_details:<rtpav1depay0> posting message: Could not read from resource.
0:00:05.719116874 5869 0x7b702c000e30 INFO GST_ERROR_SYSTEM gstelement.c:2308:gst_element_message_full_with_details:<rtpav1depay0> posted warning message: Could not read from resource.
in the console (GST_DEBUG=4
)
Setup
- Operating System: Linux
- gst-plugins-rs Version: 1.24.3
- GStreamer Version: 1.24.3
- Command line: N/A
Steps to reproduce the bug
- Run server on the first machine
- Try to run the server on the second machine
- Stare at the black screen
How reproducible is the bug?
Always
Solutions you have tried
Setting payload type to 45 (as it actually sent by pion) didn't allow to even create the pipeline (as expected). No payload type patching leads to the same error, so may be payload type is set in a different place, here's the code used:
if codecName == "av1" && buf[1] & 0x7F == 45 {
buf[1] &= 0x80
buf[1] |= 96
fmt.Printf("%d\n", buf[1] & 0x7F)
}
Additional Information
Code is based on this pion example.
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- anonymix007 changed the description
changed the description
- Owner
Can you change your pipeline to have
gdppay ! filesink location=dump.gdp
in place ofrtpav1depay ! ...
and upload the createddump.gdp
file? That would allow reliably reproducing the issue without first having to set up pion. - Sebastian Dröge added Awaiting feedback label
added Awaiting feedback label
- Sebastian Dröge assigned to @slomo
assigned to @slomo
- Author
Sure, the resulting pipeline is
appsrc format=time is-live=true do-timestamp=true name=src ! application/x-rtp,encoding-name=AV1,payload=96 ! queue ! gdppay ! filesink location=dump.gdp
:dump.gdp.zip - Sebastian Dröge removed Awaiting feedback label
removed Awaiting feedback label
- Owner
Thanks, can be reproduced with
$ gst-launch-1.0 filesrc location=dump.gdp ! gdpdepay ! 'application/x-rtp,clock-rate=90000,media=video' ! rtpav1depay ! fakesink
I'll take a look into that.
- Owner
Quoting https://aomediacodec.github.io/av1-rtp-spec/#45-payload-structure
To minimize overhead, the obu_has_size_field flag SHOULD be set to zero in all OBUs.
If we look at the beginning of the first packet's payload
50 12 00 0a 0c 00 00 00 42 ab bf c3 7e 0e d7 c8
50
is the aggregation header (Y=1, W=1, everything else 0).12
is theobu_header
(see https://aomediacodec.github.io/av1-spec/av1-spec.pdf): forbidden bit not set, obu type is 2 (temporal delimiter), extension bit is not set,obu_has_size_field
is set (!), reserved bit is not set.We currently don't support OBUs with size field, and it's not ideal that Pion is creating packets like that (i.e. the spec recommends to not include the size field). We should support this of course (looking into that now), but if you could also report this to Pion that would be great :) Please provide a link to the issue here then.
- Owner
Also Pion doesn't strip the temporal delimiter OBUs. Quoting https://aomediacodec.github.io/av1-rtp-spec/#5-packetization-rules
The temporal delimiter OBU, if present, SHOULD be removed when transmitting, and MUST be ignored by receivers.
- Owner
Ok, and getting back to this the first packet (and all others) have invalid payload AFAIU.
The first packet starts with an temporal delimiter OBU (
12 00
) and the aggregation header (50
) says that this contains only a single OBU. However this is not true. After the temporal delimiter starts a sequence header OBU and I guess there are also more OBUs included.Similarly, the
N
bit of the aggregation header is never set for the first packet of a frame. That wouldn't cause problems here, but is also invalid. - Owner
FWIW, I'm implementing handling of this broken behaviour from Pion (it will give a warning) because that's trivial to add after adding support for sized OBUs.
- Sebastian Dröge mentioned in commit slomo/gst-plugins-rs@eb6b7805
mentioned in commit slomo/gst-plugins-rs@eb6b7805
- Sebastian Dröge mentioned in merge request !1612 (merged)
mentioned in merge request !1612 (merged)
- Sebastian Dröge mentioned in commit slomo/gst-plugins-rs@effe957a
mentioned in commit slomo/gst-plugins-rs@effe957a
- Owner
!1612 (merged) fixes this. With that, your stream "works" fine. A decoder can't decode your GDP dump though because every keyframe has some missing packets at some point, so is dropped.
- Sebastian Dröge mentioned in commit slomo/gst-plugins-rs@e6b609df
mentioned in commit slomo/gst-plugins-rs@e6b609df
- Owner
Please give this a try, and if it doesn't work provide a GDP dump again plus a debug log with
GST_DEBUG=3,rtp*:9
. - Author
It seems to work to a some degree. First, once in a while there is just a black screen, so I restart the client until I can see the picture (sometimes happens with other codecs as well). Do you know maybe there should I look about this? But even then the picture freezes after a seconds or two. This does not happen with other codecs though, they instead sometimes have horrendous artifacts.
I tried the following pipeline to actually see video in a window and make a dump:
appsrc format=time is-live=true do-timestamp=true name=src ! application/x-rtp,encoding-name=AV1,payload=96 ! tee name=t t. ! queue ! gdppay ! filesink location=dump.gdp t. ! queue ! rtpav1depay ! queue ! decodebin ! glimagesink name=glsink
It doesn't seem to work though, dump.gdp is empty and window is just black, app also just hangs after some time.
0:00:00.017909416 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.017929013 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.017938140 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1024:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_query:<rtpav1depay0:src> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.017946065 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1024:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_query:<rtpav1depay0:src> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.017954801 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1024:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_query:<rtpav1depay0:src> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.017964639 62682 0x76b55065f260 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1024:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_query:<rtpav1depay0:src> Received query: Query { ptr: 0x76b550655470, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) NULL, caps: (GstCaps) NULL }) } 0:00:00.072553520 62682 0x76b55065f260 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1917:<gstrsrtp::basedepay::imp::RtpBaseDepay2 as gstreamer::subclass::element::ElementImpl>::change_state:<rtpav1depay0> Changing state: NULL->READY 0:00:00.072964595 62682 0x76b55065f260 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1917:<gstrsrtp::basedepay::imp::RtpBaseDepay2 as gstreamer::subclass::element::ElementImpl>::change_state:<rtpav1depay0> Changing state: READY->PAUSED 0:00:00.072988680 62682 0x76b55065f260 DEBUG rtpav1depay net/rtp/src/av1/depay/imp.rs:77:gstrsrtp::av1::depay::imp::RTPAv1Depay::reset:<rtpav1depay0> resetting state 0:00:00.073226783 62682 0x76b49c001370 FIXME default gstutils.c:4088:gst_element_decorate_stream_id_internal:<src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id 0:00:00.073245909 62682 0x76b55065f260 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1917:<gstrsrtp::basedepay::imp::RtpBaseDepay2 as gstreamer::subclass::element::ElementImpl>::change_state:<rtpav1depay0> Changing state: PAUSED->PLAYING 0:00:00.073359049 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:999:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_event:<rtpav1depay0:sink> Received event: Event { ptr: 0x76b484001c00, type: "stream-start", seqnum: Seqnum(104), structure: Some(GstEventStreamStart { stream-id: (gchararray) "e85165e8fb27f747e1577d02203c7244", flags: (GstStreamFlags) ((GstStreamFlags) GST_STREAM_FLAG_NONE), group-id: (guint) 1 }) } 0:00:00.073383425 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:849:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_event_default:<rtpav1depay0> Forwarding event: Event { ptr: 0x76b484001c00, type: "stream-start", seqnum: Seqnum(104), structure: Some(GstEventStreamStart { stream-id: (gchararray) "e85165e8fb27f747e1577d02203c7244", flags: (GstStreamFlags) ((GstStreamFlags) GST_STREAM_FLAG_NONE), group-id: (guint) 1 }) } 0:00:00.073448606 62682 0x76b49c001370 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b484002830, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, caps: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96 }) } 0:00:00.073509169 62682 0x76b49c001370 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b4840031b0, type: "accept-caps", structure: Some(GstQueryAcceptCaps { caps: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, result: (gboolean) TRUE }) } 0:00:00.073529817 62682 0x76b49c001370 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b484003480, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, caps: (GstCaps) NULL }) } 0:00:00.073555635 62682 0x76b49c001370 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b4840031b0, type: "accept-caps", structure: Some(GstQueryAcceptCaps { caps: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, result: (gboolean) FALSE }) } 0:00:00.073566355 62682 0x76b49c001370 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b484003480, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, caps: (GstCaps) NULL }) } 0:00:00.073610016 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b48c000fd0, type: "accept-caps", structure: Some(GstQueryAcceptCaps { caps: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, result: (gboolean) FALSE }) } 0:00:00.073630424 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1017:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_query:<rtpav1depay0:sink> Received query: Query { ptr: 0x76b48c001390, type: "caps", structure: Some(GstQueryCaps { filter: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000, caps: (GstCaps) NULL }) } 0:00:00.073647105 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:999:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_event:<rtpav1depay0:sink> Received event: Event { ptr: 0x76b484003010, type: "caps", seqnum: Seqnum(108), structure: Some(GstEventCaps { caps: (GstCaps) application/x-rtp, encoding-name=(string)AV1, payload=(int)96, media=(string)video, clock-rate=(int)90000 }) } 0:00:00.073675488 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1522:gstrsrtp::basedepay::imp::RtpBaseDepay2::set_sink_caps:<rtpav1depay0> Received caps Caps(application/x-rtp(memory:SystemMemory) { encoding-name: (gchararray) "AV1", payload: (gint) 96, media: (gchararray) "video", clock-rate: (gint) 90000 }) 0:00:00.073689965 62682 0x76b49c0010d0 DEBUG rtpav1depay net/rtp/src/av1/depay/imp.rs:77:gstrsrtp::av1::depay::imp::RTPAv1Depay::reset:<rtpav1depay0> resetting state 0:00:00.073708660 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:227:gstrsrtp::basedepay::imp::RtpBaseDepay2::set_src_caps:<rtpav1depay0> Setting caps Caps(video/x-av1(memory:SystemMemory) { parsed: (gboolean) TRUE, stream-format: (gchararray) "obu-stream", alignment: (gchararray) "obu" }) 0:00:00.073733366 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1567:gstrsrtp::basedepay::imp::RtpBaseDepay2::set_sink_caps:<rtpav1depay0> Caps Caps(application/x-rtp(memory:SystemMemory) { encoding-name: (gchararray) "AV1", payload: (gint) 96, media: (gchararray) "video", clock-rate: (gint) 90000 }) accepted 0:00:00.073752061 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:999:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_event:<rtpav1depay0:sink> Received event: Event { ptr: 0x76b484002370, type: "segment", seqnum: Seqnum(89), structure: Some(GstEventSegment { segment: (GstSegment) ((GstSegment*) 0x76b4840022f0) }) } 0:00:00.073773320 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:803:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_event_default:<rtpav1depay0> Received segment Segment { format: Time, start: 0:00:00.000000000, offset: 0:00:00.000000000, stop: --:--:--.---------, rate: 1.0, applied_rate: 1.0, flags: SegmentFlags(0x0), time: 0:00:00.000000000, base: 0:00:00.000000000, position: 0:00:00.000000000, duration: --:--:--.--------- } 0:00:00.073788589 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506554d0, pts: 0:00:00.000183621, dts: 0:00:00.000183621, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(DISCONT), metas: [] } 0:00:00.073799599 62682 0x76b49c0010d0 INFO rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1203:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Discont received 0:00:00.073805510 62682 0x76b49c0010d0 INFO rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1312:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Starting stream with SSRC bb62e46b at extended seqnum 127821 with extended RTP time 6678602262 0:00:00.073818114 62682 0x76b49c0010d0 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1098:gstrsrtp::basedepay::imp::RtpBaseDepay2::retrieve_pending_segment_event:<rtpav1depay0> Created segment event Segment { format: Time, start: 0:00:00.000000000, offset: 0:00:00.000000000, stop: --:--:--.---------, rate: 1.0, applied_rate: 1.0, flags: SegmentFlags(0x0), time: 0:00:00.000000000, base: 0:00:00.000000000, position: 0:00:00.000000000, duration: --:--:--.--------- } with seqnum Seqnum(89) 0:00:00.073844693 62682 0x76b49c000e30 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1010:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_event:<rtpav1depay0:src> Received event: Event { ptr: 0x76b4900021a0, type: "reconfigure", seqnum: Seqnum(119), structure: None } 0:00:00.073848831 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506554d0, pts: 0:00:00.000183621, dts: 0:00:00.000183621, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(DISCONT), metas: [] }), discont: true, ext_seqnum: 127821, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.073875410 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: false, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.073886461 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5503280b0, pts: 0:00:00.000220630, dts: 0:00:00.000220630, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.073899826 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127822 and extended RTP time 6678602262 0:00:00.073908292 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5503280b0, pts: 0:00:00.000220630, dts: 0:00:00.000220630, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127822, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.073918501 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.073928730 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550546810, pts: 0:00:00.000228956, dts: 0:00:00.000228956, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.073936915 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127823 and extended RTP time 6678602262 0:00:00.073944589 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550546810, pts: 0:00:00.000228956, dts: 0:00:00.000228956, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127823, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.073955499 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.073966680 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5503c5140, pts: 0:00:00.000238393, dts: 0:00:00.000238393, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.073974715 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127824 and extended RTP time 6678602262 0:00:00.073983592 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5503c5140, pts: 0:00:00.000238393, dts: 0:00:00.000238393, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127824, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.073995033 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074003409 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550395a20, pts: 0:00:00.000245978, dts: 0:00:00.000245978, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074012486 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127825 and extended RTP time 6678602262 0:00:00.074021472 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550395a20, pts: 0:00:00.000245978, dts: 0:00:00.000245978, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127825, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074031040 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074045427 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55037ee50, pts: 0:00:00.000252780, dts: 0:00:00.000252780, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074054083 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127826 and extended RTP time 6678602262 0:00:00.074061637 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55037ee50, pts: 0:00:00.000252780, dts: 0:00:00.000252780, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127826, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074192350 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074201618 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5503251d0, pts: 0:00:00.000259613, dts: 0:00:00.000259613, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074212388 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127827 and extended RTP time 6678602262 0:00:00.074222466 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5503251d0, pts: 0:00:00.000259613, dts: 0:00:00.000259613, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127827, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074233988 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074264715 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55066d320, pts: 0:00:00.000266686, dts: 0:00:00.000266686, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074279753 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127828 and extended RTP time 6678602262 0:00:00.074293298 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55066d320, pts: 0:00:00.000266686, dts: 0:00:00.000266686, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127828, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074334184 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074345966 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550659e20, pts: 0:00:00.000272818, dts: 0:00:00.000272818, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074352258 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127829 and extended RTP time 6678602262 0:00:00.074359942 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550659e20, pts: 0:00:00.000272818, dts: 0:00:00.000272818, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127829, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074366865 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074375972 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55066cfd0, pts: 0:00:00.000279249, dts: 0:00:00.000279249, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074381773 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127830 and extended RTP time 6678602262 0:00:00.074388145 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55066cfd0, pts: 0:00:00.000279249, dts: 0:00:00.000279249, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127830, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074394637 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074402071 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550669050, pts: 0:00:00.000285090, dts: 0:00:00.000285090, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074407771 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127831 and extended RTP time 6678602262 0:00:00.074413262 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550669050, pts: 0:00:00.000285090, dts: 0:00:00.000285090, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127831, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074420675 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074426125 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55066f3c0, pts: 0:00:00.000311750, dts: 0:00:00.000311750, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074431365 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127832 and extended RTP time 6678602262 0:00:00.074437236 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55066f3c0, pts: 0:00:00.000311750, dts: 0:00:00.000311750, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127832, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074443568 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074449329 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55066a1d0, pts: 0:00:00.000318513, dts: 0:00:00.000318513, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074454809 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127833 and extended RTP time 6678602262 0:00:00.074460690 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55066a1d0, pts: 0:00:00.000318513, dts: 0:00:00.000318513, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127833, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074467913 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074475828 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55065bc20, pts: 0:00:00.000326758, dts: 0:00:00.000326758, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074481108 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127834 and extended RTP time 6678602262 0:00:00.074486378 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55065bc20, pts: 0:00:00.000326758, dts: 0:00:00.000326758, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127834, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074492930 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074498450 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55065bdd0, pts: 0:00:00.000355511, dts: 0:00:00.000355511, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074503700 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127835 and extended RTP time 6678602262 0:00:00.074509581 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55065bdd0, pts: 0:00:00.000355511, dts: 0:00:00.000355511, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127835, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074515522 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074520080 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506591a0, pts: 0:00:00.000373745, dts: 0:00:00.000373745, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074526212 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127836 and extended RTP time 6678602262 0:00:00.074532403 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506591a0, pts: 0:00:00.000373745, dts: 0:00:00.000373745, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127836, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074540048 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074546449 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550659350, pts: 0:00:00.000382622, dts: 0:00:00.000382622, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074551829 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127837 and extended RTP time 6678602262 0:00:00.074556939 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550659350, pts: 0:00:00.000382622, dts: 0:00:00.000382622, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127837, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074563571 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074570394 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55067fd00, pts: 0:00:00.000389334, dts: 0:00:00.000389334, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074576886 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127838 and extended RTP time 6678602262 0:00:00.074583128 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55067fd00, pts: 0:00:00.000389334, dts: 0:00:00.000389334, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127838, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074590331 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074596272 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506802e0, pts: 0:00:00.000400185, dts: 0:00:00.000400185, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074602404 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127839 and extended RTP time 6678602262 0:00:00.074609316 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506802e0, pts: 0:00:00.000400185, dts: 0:00:00.000400185, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127839, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074617482 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074623272 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506808c0, pts: 0:00:00.000411816, dts: 0:00:00.000411816, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074628783 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127840 and extended RTP time 6678602262 0:00:00.074633612 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506808c0, pts: 0:00:00.000411816, dts: 0:00:00.000411816, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127840, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074640865 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074649922 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550680ea0, pts: 0:00:00.000420623, dts: 0:00:00.000420623, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074655202 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127841 and extended RTP time 6678602262 0:00:00.074662005 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550680ea0, pts: 0:00:00.000420623, dts: 0:00:00.000420623, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127841, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074668707 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074674187 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550681480, pts: 0:00:00.000431423, dts: 0:00:00.000431423, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074679698 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127842 and extended RTP time 6678602262 0:00:00.074685789 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550681480, pts: 0:00:00.000431423, dts: 0:00:00.000431423, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127842, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074692371 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074698042 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550681a60, pts: 0:00:00.000441421, dts: 0:00:00.000441421, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074703512 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127843 and extended RTP time 6678602262 0:00:00.074709543 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550681a60, pts: 0:00:00.000441421, dts: 0:00:00.000441421, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127843, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074716185 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074723439 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506820d0, pts: 0:00:00.000453023, dts: 0:00:00.000453023, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074728749 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127844 and extended RTP time 6678602262 0:00:00.074734059 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506820d0, pts: 0:00:00.000453023, dts: 0:00:00.000453023, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127844, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074740911 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074746281 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550682740, pts: 0:00:00.000458613, dts: 0:00:00.000458613, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074752743 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127845 and extended RTP time 6678602262 0:00:00.074758023 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550682740, pts: 0:00:00.000458613, dts: 0:00:00.000458613, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127845, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074765016 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074772250 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550682db0, pts: 0:00:00.000466879, dts: 0:00:00.000466879, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074777820 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127846 and extended RTP time 6678602262 0:00:00.074783811 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550682db0, pts: 0:00:00.000466879, dts: 0:00:00.000466879, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127846, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074789432 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074795182 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550683420, pts: 0:00:00.000486405, dts: 0:00:00.000486405, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074800603 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127847 and extended RTP time 6678602262 0:00:00.074805361 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550683420, pts: 0:00:00.000486405, dts: 0:00:00.000486405, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127847, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074812555 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074819458 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550683a90, pts: 0:00:00.000494660, dts: 0:00:00.000494660, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074824257 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127848 and extended RTP time 6678602262 0:00:00.074829106 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550683a90, pts: 0:00:00.000494660, dts: 0:00:00.000494660, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127848, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074835047 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074842150 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550684100, pts: 0:00:00.000508296, dts: 0:00:00.000508296, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074847380 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127849 and extended RTP time 6678602262 0:00:00.074852639 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550684100, pts: 0:00:00.000508296, dts: 0:00:00.000508296, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127849, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074859572 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074866155 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550684770, pts: 0:00:00.000515349, dts: 0:00:00.000515349, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074871304 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127850 and extended RTP time 6678602262 0:00:00.074876774 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550684770, pts: 0:00:00.000515349, dts: 0:00:00.000515349, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127850, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074883347 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074888366 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550684de0, pts: 0:00:00.000523905, dts: 0:00:00.000523905, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074894297 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127851 and extended RTP time 6678602262 0:00:00.074900068 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550684de0, pts: 0:00:00.000523905, dts: 0:00:00.000523905, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127851, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074907361 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074912801 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550685450, pts: 0:00:00.000535977, dts: 0:00:00.000535977, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074918292 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127852 and extended RTP time 6678602262 0:00:00.074924122 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550685450, pts: 0:00:00.000535977, dts: 0:00:00.000535977, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127852, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074930885 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074937087 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550685ac0, pts: 0:00:00.000540466, dts: 0:00:00.000540466, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074942106 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127853 and extended RTP time 6678602262 0:00:00.074951163 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550685ac0, pts: 0:00:00.000540466, dts: 0:00:00.000540466, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127853, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074957665 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.074976700 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550686130, pts: 0:00:00.000550304, dts: 0:00:00.000550304, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.074982341 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127854 and extended RTP time 6678602262 0:00:00.074987200 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550686130, pts: 0:00:00.000550304, dts: 0:00:00.000550304, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127854, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.074993592 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075001567 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506867a0, pts: 0:00:00.000558018, dts: 0:00:00.000558018, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075006887 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127855 and extended RTP time 6678602262 0:00:00.075012287 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506867a0, pts: 0:00:00.000558018, dts: 0:00:00.000558018, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127855, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075020432 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075025541 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550686e10, pts: 0:00:00.000565943, dts: 0:00:00.000565943, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075030851 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127856 and extended RTP time 6678602262 0:00:00.075036001 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550686e10, pts: 0:00:00.000565943, dts: 0:00:00.000565943, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127856, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075042743 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075048724 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550687480, pts: 0:00:00.000580781, dts: 0:00:00.000580781, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075054044 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127857 and extended RTP time 6678602262 0:00:00.075059985 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550687480, pts: 0:00:00.000580781, dts: 0:00:00.000580781, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127857, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075066628 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075071958 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550687af0, pts: 0:00:00.000588525, dts: 0:00:00.000588525, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075077498 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127858 and extended RTP time 6678602262 0:00:00.075082317 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550687af0, pts: 0:00:00.000588525, dts: 0:00:00.000588525, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127858, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075088629 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075096113 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550688160, pts: 0:00:00.000602301, dts: 0:00:00.000602301, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075101322 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127859 and extended RTP time 6678602262 0:00:00.075106502 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550688160, pts: 0:00:00.000602301, dts: 0:00:00.000602301, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127859, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075113154 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075118564 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506887d0, pts: 0:00:00.000610186, dts: 0:00:00.000610186, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075124225 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127860 and extended RTP time 6678602262 0:00:00.075129665 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506887d0, pts: 0:00:00.000610186, dts: 0:00:00.000610186, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127860, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075135847 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075140986 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550688e40, pts: 0:00:00.000618000, dts: 0:00:00.000618000, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075147148 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127861 and extended RTP time 6678602262 0:00:00.075153329 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550688e40, pts: 0:00:00.000618000, dts: 0:00:00.000618000, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127861, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075160082 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075166975 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b5506894b0, pts: 0:00:00.000628450, dts: 0:00:00.000628450, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075172204 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127862 and extended RTP time 6678602262 0:00:00.075177374 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b5506894b0, pts: 0:00:00.000628450, dts: 0:00:00.000628450, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127862, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075185208 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075190578 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b550689b20, pts: 0:00:00.000636264, dts: 0:00:00.000636264, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075195828 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127863 and extended RTP time 6678602262 0:00:00.075201048 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b550689b20, pts: 0:00:00.000636264, dts: 0:00:00.000636264, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127863, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075207730 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075213281 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55068a190, pts: 0:00:00.000646683, dts: 0:00:00.000646683, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075218551 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127864 and extended RTP time 6678602262 0:00:00.075224662 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55068a190, pts: 0:00:00.000646683, dts: 0:00:00.000646683, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127864, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075231104 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075236544 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55068a800, pts: 0:00:00.000653446, dts: 0:00:00.000653446, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075241623 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127865 and extended RTP time 6678602262 0:00:00.075246733 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55068a800, pts: 0:00:00.000653446, dts: 0:00:00.000653446, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127865, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075253265 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075260298 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55068ae70, pts: 0:00:00.000664366, dts: 0:00:00.000664366, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075267472 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127866 and extended RTP time 6678602262 0:00:00.075272371 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55068ae70, pts: 0:00:00.000664366, dts: 0:00:00.000664366, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127866, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075278703 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.075286547 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:973:gstrsrtp::basedepay::imp::RtpBaseDepay2::sink_chain:<rtpav1depay0> Received buffer Buffer { ptr: 0x76b55068b4e0, pts: 0:00:00.000672091, dts: 0:00:00.000672091, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] } 0:00:00.075291847 62682 0x76b49c0010d0 TRACE rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1274:gstrsrtp::basedepay::imp::RtpBaseDepay2::handle_buffer:<rtpav1depay0> Handling packet with extended seqnum 127867 and extended RTP time 6678602262 0:00:00.075296706 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:194:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Processing RTP packet Packet { buffer: MappedBuffer(Buffer { ptr: 0x76b55068b4e0, pts: 0:00:00.000672091, dts: 0:00:00.000672091, duration: --:--:--.---------, size: 1200, offset: 18446744073709551615, offset_end: 18446744073709551615, flags: BufferFlags(0x0), metas: [] }), discont: false, ext_seqnum: 127867, ext_timestamp: 6678602262, marker: false, payload_range: 12..1200 } 0:00:00.075303308 62682 0x76b49c0010d0 TRACE rtpav1depay net/rtp/src/av1/depay/imp.rs:213:gstrsrtp::av1::depay::imp::RTPAv1Depay::handle_rtp_packet:<rtpav1depay0> Aggregation header AggregationHeader { leading_fragment: true, trailing_fragment: true, obu_count: Some(1), start_of_seq: false } 0:00:00.076183016 62682 0x76b49c000e30 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1010:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_event:<rtpav1depay0:src> Received event: Event { ptr: 0x76b490063db0, type: "reconfigure", seqnum: Seqnum(124), structure: None } 0:00:00.077135729 62682 0x76b49c000e30 DEBUG rtpbasedepay2 net/rtp/src/basedepay/imp.rs:1010:gstrsrtp::basedepay::imp::RtpBaseDepay2::src_event:<rtpav1depay0:src> Received event: Event { ptr: 0x76b49006b190, type: "reconfigure", seqnum: Seqnum(129), structure: None }
With a previous pipeline there's nothing except
0:00:00.010531586 63258 0x74da10000e10 FIXME default gstutils.c:4088:gst_element_decorate_stream_id_internal:<src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
which doesn't really matter here. dumps.zip
Edited by anonymix007 - Author
Here are the logs for black screen and freezing issues: logs.7z No GDP dump this time because it's incompatible with the rendering video in the window.