<div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le ven. 11 oct. 2019 06 h 55, jeyp4 <<a href="mailto:jaiforfriend@gmail.com">jaiforfriend@gmail.com</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello<br>
v4l2src -> timeoverlay -> vaapih265enc -> vaapidecode -> appsink<br>
<br>
Does data flowing through above(e.g.) pipeline carry any tag or any kind of<br>
sequence number?<br>
<br>
So that the final element(appsink) pad can match data tag with first element<br>
pad(v4l2src).<br>
<br>
My ultimate purpose is to provide a time-stamp to appsink data. Where the<br>
time-stamp can represent to image shot time as close as possible. I am<br>
flexible to use any time reference, e.g. ros::Time::now()<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">The timestamp is from v4l2src, which is in turn derived from whatever the Linux/BSD kernel provided. It's a bit of a round trip, but here the conversion flow.</div><div dir="auto"><br></div><div dir="auto">v4l2src</div><div dir="auto"><br></div><div dir="auto">Monotonic -> pipeline clock -> stream time</div><div dir="auto"><br></div><div dir="auto">Pts = t + delta - base_time</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto">So when you receive buffer in appasrc, to find back the monotonic time you do the opposite.</div><div dir="auto"><br></div><div dir="auto">T = pts - delta + base_time</div><div dir="auto"><br></div><div dir="auto">Delta is the distance between pipeline clock now and time now. This is were precision is lost, as there is no atomic way to retrieve this.</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/" rel="noreferrer noreferrer" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank" rel="noreferrer">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a></blockquote></div></div></div>