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

2022-12-13 Thread Rémi Denis-Courmont
Le maanantaina 12. joulukuuta 2022, 19.23.52 EET Zhao Zhili a écrit : > On Mon, 2022-12-12 at 18:31 +0200, Rémi Denis-Courmont wrote: > > Le maanantaina 5. joulukuuta 2022, 4.51.34 EET zhilizhao(赵志立) a écrit > > > > > > On Nov 19, 2022, at 02:48, Zhao Zhili > > > > wrote: > > > > > > > > From: Z

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

2022-12-12 Thread Zhao Zhili
On Mon, 2022-12-12 at 18:31 +0200, Rémi Denis-Courmont wrote: > Le maanantaina 5. joulukuuta 2022, 4.51.34 EET zhilizhao(赵志立) a écrit > : > > > On Nov 19, 2022, at 02:48, Zhao Zhili > > > wrote: > > > > > > From: Zhao Zhili > > > > > > Unlike the pipe protocol, fd protocol has seek support if i

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

2022-12-12 Thread Rémi Denis-Courmont
Le maanantaina 5. joulukuuta 2022, 4.51.34 EET zhilizhao(赵志立) a écrit : > > On Nov 19, 2022, at 02:48, Zhao Zhili wrote: > > > > From: Zhao Zhili > > > > Unlike the pipe protocol, fd protocol has seek support if it > > corresponding to a regular file. > > --- > > Sometimes it's the only way to

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

2022-12-10 Thread Zhao Zhili
> From: ffmpeg-devel On Behalf Of Anton > Khirnov > Sent: 2022年12月9日 22:32 > To: FFmpeg development discussions and patches > Cc: Zhao Zhili > Subject: Re: [FFmpeg-devel] [PATCH] avformat/file: add fd protocol > > Quoting Zhao Zhili (2022-11-18 19:48:02) > > Fr

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

2022-12-09 Thread Anton Khirnov
Quoting Zhao Zhili (2022-11-18 19:48:02) > From: Zhao Zhili > > Unlike the pipe protocol, fd protocol has seek support if it > corresponding to a regular file. > --- > Sometimes it's the only way to access files via file descriptor, e.g., > requesting a shared file on Android: > https://developer

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

2022-12-08 Thread Zhao Zhili
On Thu, 2022-12-08 at 16:28 +0100, Andreas Rheinhardt wrote: > Marvin Scholz: > > > > On 8 Dec 2022, at 16:11, Zhao Zhili wrote: > > > > > On Mon, 2022-12-05 at 10:51 +0800, zhilizhao(赵志立) wrote: > > > > > On Nov 19, 2022, at 02:48, Zhao Zhili > > > > > > > > > > wrote: > > > > > > > > > > From

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

2022-12-08 Thread Andreas Rheinhardt
Marvin Scholz: > > > On 8 Dec 2022, at 16:11, Zhao Zhili wrote: > >> On Mon, 2022-12-05 at 10:51 +0800, zhilizhao(赵志立) wrote: On Nov 19, 2022, at 02:48, Zhao Zhili wrote: From: Zhao Zhili Unlike the pipe protocol, fd protocol has seek support if it correspond

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

2022-12-08 Thread Marvin Scholz
On 8 Dec 2022, at 16:11, Zhao Zhili wrote: > On Mon, 2022-12-05 at 10:51 +0800, zhilizhao(赵志立) wrote: >>> On Nov 19, 2022, at 02:48, Zhao Zhili >>> wrote: >>> >>> From: Zhao Zhili >>> >>> Unlike the pipe protocol, fd protocol has seek support if it >>> corresponding to a regular file. >>> ---

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

2022-12-08 Thread Zhao Zhili
On Mon, 2022-12-05 at 10:51 +0800, zhilizhao(赵志立) wrote: > > On Nov 19, 2022, at 02:48, Zhao Zhili > > wrote: > > > > From: Zhao Zhili > > > > Unlike the pipe protocol, fd protocol has seek support if it > > corresponding to a regular file. > > --- > > Sometimes it's the only way to access file

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

2022-12-04 Thread zhilizhao(赵志立)
> On Nov 19, 2022, at 02:48, Zhao Zhili wrote: > > From: Zhao Zhili > > Unlike the pipe protocol, fd protocol has seek support if it > corresponding to a regular file. > --- > Sometimes it's the only way to access files via file descriptor, e.g., > requesting a shared file on Android: > http

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

2022-11-18 Thread Zhao Zhili
From: Zhao Zhili Unlike the pipe protocol, fd protocol has seek support if it corresponding to a regular file. --- Sometimes it's the only way to access files via file descriptor, e.g., requesting a shared file on Android: https://developer.android.com/training/secure-file-sharing/request-file