diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-05 12:54:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-06 00:59:22 +0100 |
commit | 15abba737bffa3fa11f7e4fdc85b3d03d80db37e (patch) | |
tree | 284c815a6ce1b269cee6aefd6f268ec952e74753 /ffmpeg_opt.c | |
parent | 5bfb0b02b6fbb38c058659dc09c01602d0d1f523 (diff) | |
download | ffmpeg-15abba737bffa3fa11f7e4fdc85b3d03d80db37e.tar.gz |
Avoid using the term "file" and prefer "url" in some docs and comments
This should make it less ambigous that these are URLs
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit a5f27a9c3aa973c543bd8bbf2a78363700bbc03e)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffmpeg_opt.c')
-rw-r--r-- | ffmpeg_opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index 55818e1b73..75af4ce8d9 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -2883,8 +2883,8 @@ enum OptGroup { }; static const OptionGroupDef groups[] = { - [GROUP_OUTFILE] = { "output file", NULL, OPT_OUTPUT }, - [GROUP_INFILE] = { "input file", "i", OPT_INPUT }, + [GROUP_OUTFILE] = { "output url", NULL, OPT_OUTPUT }, + [GROUP_INFILE] = { "input url", "i", OPT_INPUT }, }; static int open_files(OptionGroupList *l, const char *inout, |