diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-30 21:04:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-01 20:49:18 +0200 |
commit | 00759d71a288a25e28ac6393c891f4173084dd6c (patch) | |
tree | 0eb38ba59c42e766fca2980d051567089467e165 /libavutil/opt.h | |
parent | f028b7af7b785d8c69732b09cbddca61f641435a (diff) | |
download | ffmpeg-00759d71a288a25e28ac6393c891f4173084dd6c.tar.gz |
avutil/opt: add av_opt_copy()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 1e1dd69b30..7705990210 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -822,6 +822,8 @@ void av_opt_freep_ranges(AVOptionRanges **ranges); */ int av_opt_query_ranges(AVOptionRanges **, void *obj, const char *key, int flags); +int av_opt_copy(void *dest, void *src); + /** * Get a default list of allowed ranges for the given option. * |