diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-09-30 10:23:08 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-09-30 10:23:08 +0200 |
commit | e4b1fcd474767e49d78cca877dd8ff1bb4af1f5d (patch) | |
tree | 555f012211556cef5249e5d598f08a3981b855d9 /libavutil/opt.h | |
parent | 438978fb4b4663c404e7474e8ef98f3c856cd31a (diff) | |
download | ffmpeg-e4b1fcd474767e49d78cca877dd8ff1bb4af1f5d.tar.gz |
lavu/opt: cosmetic fixes forgotten in the previous patch.
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 3aa912a235..81fefd9b16 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -394,7 +394,7 @@ int av_set_options_string(void *ctx, const char *opts, const char *key_val_sep, const char *pairs_sep); /** - * Parse the key=value pairs list in opts. For each key=value pair found, + * Parse the key-value pairs list in opts. For each key=value pair found, * set the value of the corresponding option in ctx. * * @param ctx the AVClass object to set options on @@ -417,7 +417,7 @@ int av_set_options_string(void *ctx, const char *opts, * cannot be set * * Options names must use only the following characters: a-z A-Z 0-9 - . / _ - * Separators must use characters distinct from from options and from each + * Separators must use characters distinct from option names and from each * other. */ int av_opt_set_from_string(void *ctx, const char *opts, |