shithub: treason

Download patch

ref: b7bc75369705a553a2e6f0839134dad5439826b9
parent: 3f8b11515f7a9576e1eb05d209a163e0cc03b4c3
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Thu Feb 6 11:56:04 EST 2025

Sread: workaround for timestamps going backwards

--- a/stream.c
+++ b/stream.c
@@ -67,7 +67,16 @@
 	if((res = s->ops.read(s, f)) == 0){
 		if(s->t₀ == Zt₀)
 			s->t₀ = f->timestamp;
-		f->timestamp -= s->t₀;
+		/*
+		 * timestamps going backwards means clock wasn't monotonically
+		 * increasing. perhaps nanosec() or nsec() is to blame.
+		 * just work around it in any case, instead of hanging without
+		 * displaying any frames.
+		 */
+		if(f->timestamp > s->t₀)
+			f->timestamp -= s->t₀;
+		else
+			f->timestamp = 0;
 	}
 
 	return res;