Re: [FFmpeg-devel] [PATCH v2 1/3] avformat/file: add fd protocol

2022-12-13 Thread Rémi Denis-Courmont
Le sunnuntaina 11. joulukuuta 2022, 17.17.27 EET Zhao Zhili a écrit : > From: Zhao Zhili > > Unlike the pipe protocol, fd protocol has seek support if it > corresponding to a regular file. > --- > v2: dup the file descriptor for safety > > doc/protocols.texi | 24 ++ > liba

Re: [FFmpeg-devel] [PATCH v2 1/3] avformat/file: add fd protocol

2022-12-12 Thread Rémi Denis-Courmont
Le sunnuntaina 11. joulukuuta 2022, 17.17.27 EET Zhao Zhili a écrit : > From: Zhao Zhili > > Unlike the pipe protocol, fd protocol has seek support if it > corresponding to a regular file. > --- > v2: dup the file descriptor for safety > > doc/protocols.texi | 24 ++ > liba

[FFmpeg-devel] [PATCH v2 1/3] avformat/file: add fd protocol

2022-12-11 Thread Zhao Zhili
From: Zhao Zhili Unlike the pipe protocol, fd protocol has seek support if it corresponding to a regular file. --- v2: dup the file descriptor for safety doc/protocols.texi | 24 ++ libavformat/Makefile| 1 + libavformat/file.c | 55 +++