Re: [FFmpeg-devel] [PATCH] avformat/unix: Set is_streamed to true

2025-02-09 Thread Michael Niedermayer
Hi Efrain On Wed, Feb 05, 2025 at 07:25:23PM -0600, Efrain Torres wrote: > 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 s

Re: [FFmpeg-devel] [PATCH] avformat/unix: Set is_streamed to true

2025-02-06 Thread Efrain T
That sounds perfectly fine with me. Thanks for the quick reply. On Thursday, February 6, 2025, Leo Izen wrote: > On 2/6/25 2:00 AM, dank074 wrote: > >> 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 tr

Re: [FFmpeg-devel] [PATCH] avformat/unix: Set is_streamed to true

2025-02-05 Thread Leo Izen
On 2/6/25 2:00 AM, dank074 wrote: 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: dank07

[FFmpeg-devel] [PATCH] avformat/unix: Set is_streamed to true

2025-02-05 Thread dank074
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 --- libavformat/unix.c | 2 +- 1

[FFmpeg-devel] [PATCH] avformat/unix: Set is_streamed to true

2025-02-05 Thread Efrain Torres
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 --- libavformat/unix.c | 2 +-