diff options
author | Gavin Kinsey <gkinsey@ad-holdings.co.uk> | 2011-12-05 15:15:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-05 21:13:45 +0100 |
commit | 4547d883d39eb62a3b3c7e243df6826bbc8f5829 (patch) | |
tree | 3281786f7a562cda04cced69e8a8ff1d4223bc13 /libavutil | |
parent | b27ac355b7045e013c4be3eface4d76cf522b835 (diff) | |
download | ffmpeg-4547d883d39eb62a3b3c7e243df6826bbc8f5829.tar.gz |
Fix compilation for C++ applications
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 2d282b3899..0196056d6d 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -595,7 +595,7 @@ int av_opt_get_q (void *obj, const char *name, int search_flags, AVRational * @returns a pointer to the field, it can be cast to the correct type and read * or written to. */ -void *av_opt_ptr(const AVClass *class, void *obj, const char *name); +void *av_opt_ptr(const AVClass *avclass, void *obj, const char *name); /** * @} */ |