ffmpeg | branch: master | Zhao Zhili <zhiliz...@tencent.com> | Fri Jun  4 
15:22:27 2021 +0800| [9099046cc76c9e3bf02f62a237b4d444cdaf5b20] | committer: 
Marton Balint

avformat/libsrt: send message in order

There is no good use case for out of order delivery of data. For live
streaming with TSBPD enabled by default, the receiver get data in order
based on the timestamps. However, if TSBPD is disabled, the data can
be delivered out of order.

Signed-off-by: Marton Balint <c...@passwd.hu>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9099046cc76c9e3bf02f62a237b4d444cdaf5b20
---

 libavformat/libsrt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c
index c1e96f700e..edebb49edf 100644
--- a/libavformat/libsrt.c
+++ b/libavformat/libsrt.c
@@ -683,7 +683,7 @@ static int libsrt_write(URLContext *h, const uint8_t *buf, 
int size)
             return ret;
     }
 
-    ret = srt_sendmsg(s->fd, buf, size, -1, 0);
+    ret = srt_sendmsg(s->fd, buf, size, -1, 1);
     if (ret < 0) {
         ret = libsrt_neterrno(h);
     }

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to