Bump.
Is anyone interested in looking at these two patches? I’m trying to get
into ffmpeg development and it would be nice to get some experience of
the full process of getting a patch landed. I don’t have commit rights.
Thanks in advance for any feedback.
Regards,
– Neil
Neil Roberts writes
Creates a UNIX pipe and then verifies that avio_check returns the right
access flags for the two ends of the pipe.
v2: Add support for the Windows version of _pipe
Signed-off-by: Neil Roberts
---
libavformat/Makefile | 1 +
libavformat/tests/.gitignore | 1 +
libavformat/tests
.
v2: Use DuplicateHandle on Windows to check whether the duplicated
handle can have the corresponding access flags.
Signed-off-by: Neil Roberts
---
libavformat/file.c | 74 --
1 file changed, 71 insertions(+), 3 deletions(-)
diff --git a/libavf
Creates a UNIX pipe and then verifies that avio_check returns the right
access flags for the two ends of the pipe.
Signed-off-by: Neil Roberts
---
libavformat/Makefile | 1 +
libavformat/tests/.gitignore | 1 +
libavformat/tests/pipe.c | 101
Using file_check for the pipe protocol doesn't make sense. For example,
for a URL like “pipe:0” it would end up checking whether the “pipe:0”
file exists. This patch instead makes it check the access modes on the
corresponding file descriptor using fcntl.
Signed-off-by: Neil Ro