Re: [FFmpeg-devel] [PATCH 09/10] lavf/file: handle standard file:// URLs.

2021-08-14 Thread Nicolas George
Marton Balint (12021-07-29): > I meant the absolute path case from Appendix B: > >o The minimal representation of a local file with no authority field > and an absolute path that begins with a slash "/". For example: > > * "file:/path/to/file" It is precisely what I call semi-

Re: [FFmpeg-devel] [PATCH 09/10] lavf/file: handle standard file:// URLs.

2021-07-29 Thread Marton Balint
On Wed, 28 Jul 2021, Nicolas George wrote: Marton Balint (12021-07-27): You should mention the relevant rfc - RFC8089. Locally added. Also there are a couple of common deviations/extensions from the normative standard, referenced in the RFC: https://datatracker.ietf.org/doc/html/rfc8089

Re: [FFmpeg-devel] [PATCH 09/10] lavf/file: handle standard file:// URLs.

2021-07-28 Thread Nicolas George
Marton Balint (12021-07-27): > You should mention the relevant rfc - RFC8089. Locally added. > Also there are a couple of common deviations/extensions from the normative > standard, referenced in the RFC: > > https://datatracker.ietf.org/doc/html/rfc8089#appendix-F > > Do you plan to support th

Re: [FFmpeg-devel] [PATCH 09/10] lavf/file: handle standard file:// URLs.

2021-07-27 Thread Marton Balint
On Tue, 27 Jul 2021, Nicolas George wrote: Signed-off-by: Nicolas George --- libavformat/file.c | 54 +- 1 file changed, 53 insertions(+), 1 deletion(-) You should mention the relevant rfc - RFC8089. Also there are a couple of common deviations/e

[FFmpeg-devel] [PATCH 09/10] lavf/file: handle standard file:// URLs.

2021-07-27 Thread Nicolas George
Signed-off-by: Nicolas George --- libavformat/file.c | 54 +- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/libavformat/file.c b/libavformat/file.c index 2fb93c23fd..82d9e7bab4 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@