summaryrefslogtreecommitdiff
path: root/libavutil/opt.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-11-11 02:39:27 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-11-11 11:49:55 +0100
commitc6074a30ba3b5fb4319ee6ee599656d58548cdc8 (patch)
treeb50a775bfea85fc060a573af787ad3b1ba655f0f /libavutil/opt.h
parent1b667269062eb6aec0b8726393ea91b7f7f57fde (diff)
opt: Fix the documentation mentioning av_set_string3
It is av_opt_set now.
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r--libavutil/opt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h
index ac722ee08c..8413206179 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -319,7 +319,7 @@ void av_opt_set_defaults(void *s);
* @return the number of successfully set key/value pairs, or a negative
* value corresponding to an AVERROR code in case of error:
* AVERROR(EINVAL) if opts cannot be parsed,
- * the error code issued by av_set_string3() if a key/value pair
+ * the error code issued by av_opt_set() if a key/value pair
* cannot be set
*/
int av_set_options_string(void *ctx, const char *opts,
@@ -408,7 +408,7 @@ int av_opt_eval_q (void *obj, const AVOption *o, const char *val, AVRational
* was found.
*
* @note Options found with AV_OPT_SEARCH_CHILDREN flag may not be settable
- * directly with av_set_string3(). Use special calls which take an options
+ * directly with av_opt_set(). Use special calls which take an options
* AVDictionary (e.g. avformat_open_input()) to set options found with this
* flag.
*/