diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-05 12:54:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-05 21:30:12 +0100 |
commit | a5f27a9c3aa973c543bd8bbf2a78363700bbc03e (patch) | |
tree | 115b9ad4286adf6203b1dd5bbd0ace78aa247486 /ffmpeg_opt.c | |
parent | 7d57ca4d9a75562fa32e40766211de150f8b3ee7 (diff) | |
download | ffmpeg-a5f27a9c3aa973c543bd8bbf2a78363700bbc03e.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>
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 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, |