diff options
author | Lukasz Marek <lukasz.m.luki2@gmail.com> | 2014-11-27 00:11:01 +0100 |
---|---|---|
committer | Lukasz Marek <lukasz.m.luki2@gmail.com> | 2014-11-27 23:27:14 +0100 |
commit | f00e9c4b10f5ab7cd382d3019eb7bee13fcc3866 (patch) | |
tree | bd64d7ba575ecf9ce97abe689275a951cdbbebb4 /libavutil/opt.c | |
parent | 3ff39901049f430f82d252eab3f4c0800ef144e5 (diff) | |
download | ffmpeg-f00e9c4b10f5ab7cd382d3019eb7bee13fcc3866.tar.gz |
lavu/opt: add consts where possible
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 5b26a00ead..64ce896833 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -42,13 +42,13 @@ #include <float.h> #if FF_API_OLD_AVOPTIONS -const AVOption *av_next_option(void *obj, const AVOption *last) +const AVOption *av_next_option(FF_CONST_AVUTIL55 void *obj, const AVOption *last) { return av_opt_next(obj, last); } #endif -const AVOption *av_opt_next(void *obj, const AVOption *last) +const AVOption *av_opt_next(FF_CONST_AVUTIL55 void *obj, const AVOption *last) { const AVClass *class; if (!obj) @@ -61,7 +61,7 @@ const AVOption *av_opt_next(void *obj, const AVOption *last) return NULL; } -static int read_number(const AVOption *o, void *dst, double *num, int *den, int64_t *intnum) +static int read_number(const AVOption *o, const void *dst, double *num, int *den, int64_t *intnum) { switch (o->type) { case AV_OPT_TYPE_FLAGS: *intnum = *(unsigned int*)dst;return 0; @@ -1573,7 +1573,7 @@ static int opt_size(enum AVOptionType type) return 0; } -int av_opt_copy(void *dst, void *src) +int av_opt_copy(void *dst, FF_CONST_AVUTIL55 void *src) { const AVOption *o = NULL; const AVClass *c; |