diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-23 13:07:17 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-10 20:27:31 +0200 |
commit | cf10095f0b8bb0963dd895d2825a035fcb7e1bb5 (patch) | |
tree | 4cec8b3a6f7f010f35258acacd538818ce87533d /libavutil | |
parent | b003d0be5b332fa1dcac0549c80c02676c245024 (diff) | |
download | ffmpeg-cf10095f0b8bb0963dd895d2825a035fcb7e1bb5.tar.gz |
AVOptions: cosmetics, rename static av_set_number2() to write_number().
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 2ff9166931..b3f29a5b89 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -54,7 +54,7 @@ const AVOption *av_next_option(void *obj, const AVOption *last) else return (*(AVClass**)obj)->option; } -static int av_set_number2(void *obj, const char *name, double num, int den, int64_t intnum, const AVOption **o_out) +static int write_number(void *obj, const char *name, double num, int den, int64_t intnum, const AVOption **o_out) { const AVOption *o = av_opt_find(obj, name, NULL, 0, 0); void *dst; @@ -184,7 +184,7 @@ static int set_string_number(void *obj, const AVOption *o, const char *val, void else if (cmd == '-') d = notfirst*av_get_double(obj, o->name, NULL) - d; } - if ((ret = av_set_number2(obj, o->name, d, 1, 1, NULL)) < 0) + if ((ret = write_number(obj, o->name, d, 1, 1, NULL)) < 0) return ret; val += i; if (!*val) @@ -225,7 +225,7 @@ int av_set_string3(void *obj, const char *name, const char *val, int alloc, cons static const AVOption *set_number(void *obj, const char *name, double num, int den, int64_t intnum) { const AVOption *o = NULL; - if (av_set_number2(obj, name, num, den, intnum, &o) < 0) + if (write_number(obj, name, num, den, intnum, &o) < 0) return NULL; else return o; |