mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
fftools/ffprobe: prefer fd over pipe for seek support
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
parent
c926140558
commit
244f3cfbe3
1 changed files with 2 additions and 2 deletions
|
|
@ -3714,7 +3714,7 @@ static void opt_input_file(void *optctx, const char *arg)
|
|||
exit_program(1);
|
||||
}
|
||||
if (!strcmp(arg, "-"))
|
||||
arg = "pipe:";
|
||||
arg = "fd:";
|
||||
input_filename = arg;
|
||||
}
|
||||
|
||||
|
|
@ -3733,7 +3733,7 @@ static void opt_output_file(void *optctx, const char *arg)
|
|||
exit_program(1);
|
||||
}
|
||||
if (!strcmp(arg, "-"))
|
||||
arg = "pipe:";
|
||||
arg = "fd:";
|
||||
output_filename = arg;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue