ffmpeg | branch: master | dank074 <torresefrai...@gmail.com> | Thu Feb 6 01:00:47 2025 -0600| [e945142df34f88e11546d1943cff420fbd592698] | committer: Leo Izen
avformat/unix: set is_streamed to true Currently when a Unix Domain Socket is used as input there is a loss of data when data is consumed from the stream. Setting is_streamed to true fixes this, since the unix domain socket is now treated like a consumable stream. Fixes: #9346 Signed-off-by: dank074 <torresefrai...@gmail.com> Reviewed-by: Leo Izen <leo.i...@gmail.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e945142df34f88e11546d1943cff420fbd592698 --- libavformat/unix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/unix.c b/libavformat/unix.c index 5704155cf0..fed215a691 100644 --- a/libavformat/unix.c +++ b/libavformat/unix.c @@ -89,6 +89,7 @@ static int unix_open(URLContext *h, const char *filename, int flags) } s->fd = fd; + h->is_streamed = 1; return 0; _______________________________________________ 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".