fftools/ffplay: prefer fd over pipe for seek support

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
Zhao Zhili 2022-12-15 01:10:12 +08:00
parent 195ccf7ea8
commit c926140558
1 changed files with 1 additions and 1 deletions

View File

@ -3537,7 +3537,7 @@ static void opt_input_file(void *optctx, const char *filename)
exit(1);
}
if (!strcmp(filename, "-"))
filename = "pipe:";
filename = "fd:";
input_filename = filename;
}