Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-12-05 14:54:21 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-12-05 23:30:12 +0300
commita5f27a9c3aa973c543bd8bbf2a78363700bbc03e (patch)
tree115b9ad4286adf6203b1dd5bbd0ace78aa247486 /ffmpeg_opt.c
parent7d57ca4d9a75562fa32e40766211de150f8b3ee7 (diff)
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>
Diffstat (limited to 'ffmpeg_opt.c')
-rw-r--r--ffmpeg_opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c
index e470dbeb46..6862456c27 100644
--- a/ffmpeg_opt.c
+++ b/ffmpeg_opt.c
@@ -3195,8 +3195,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,