aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2024-05-05 21:31:47 +0200
committerMarton Balint <cus@passwd.hu>2024-05-07 23:38:05 +0200
commit8d92f59d117a19e910574c0fe3c67e71dfe11b72 (patch)
tree5f76461c85c23bdd301f868729dfff9df0805d79
parent39ce8a96958fdc80ebc549ab7525b06dadf8bbbd (diff)
downloadffmpeg-8d92f59d117a19e910574c0fe3c67e71dfe11b72.tar.gz
avformat/file: fail for non-numerical arguments to pipe:
Before this patch, the implementation of pipe: inputs/outputs would silently fall back to stdin/stdout for any argument not successfully parsed by strtol(). This patch introduces an explicit error for any non-numerical arguments, which should avoid user confusion as in #10977. New behavior: $ cat /tmp/video.mkv | ./ffmpeg -i pipe:aa -acodec copy -vcodec copy -f matroska pipe:1 | cat >/tmp/out.mkv [pipe @ 0x5618c7bcf740] Non-numerical argument "aa" to pipe: [in#0 @ 0x5618c7bced00] Error opening input: Invalid argument Error opening input file pipe:aa. Error opening input files: Invalid argument Based on the patch of Nils Goroll <nils.goroll@uplex.de>. Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r--libavformat/file.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libavformat/file.c b/libavformat/file.c
index 0b7452bc20..0ed4cff266 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -442,13 +442,16 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
if (c->fd < 0) {
av_strstart(filename, "pipe:", &filename);
- fd = strtol(filename, &final, 10);
- if((filename == final) || *final ) {/* No digits found, or something like 10ab */
+ if (!*filename) {
if (flags & AVIO_FLAG_WRITE) {
fd = 1;
} else {
fd = 0;
}
+ } else {
+ fd = strtol(filename, &final, 10);
+ if (*final) /* No digits found, or something like 10ab */
+ return AVERROR(EINVAL);
}
c->fd = fd;
}