<div dir="ltr">Hi, I wanted to ask about the limit of the timestamp-offset property of the videotestsrc element.<br>Running gst-indent on the x64 system shows that the boundary is 2147483646999999999.<div><br></div><div>When for the identity element the "ts-offset"'s limit is 9223372036854775807.</div><div><br></div><div>Looking at the code of the videotestsrc we can see<br><br>  g_object_class_install_property (gobject_class, PROP_TIMESTAMP_OFFSET,<br>      g_param_spec_int64 ("timestamp-offset", "Timestamp offset",<br>          "An offset added to timestamps set on buffers (in ns)", 0,<br>          (G_MAXLONG == G_MAXINT64) ? G_MAXINT64 : (G_MAXLONG * GST_SECOND - 1),<br>          0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));<br></div><div><br></div><div>the maximum value for this property is defined by the condition:<br><br> (G_MAXLONG == G_MAXINT64) ? G_MAXINT64 : (G_MAXLONG * GST_SECOND - 1)<br></div><div><br></div><div>So the question is what is the purpose of this condition, why can't it be G_MAXINT64 ?<br><br>It's just ight now I have a problem with this limit, because I want the videotestsrc output a buffer with a timestamp that is higher then this value (it's a ts of the buffer from an rtspsrc).</div><div><br></div><div>Thanks!</div></div>