diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2008-03-06 17:41:31 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2008-03-06 17:41:31 +0000 |
commit | d42a814ef18f6951d30b0005122c40f63cc74f55 (patch) | |
tree | 98503bd965e8b5f10fba0437d4eb8874b058680c /libavfilter/avfilter.h | |
parent | ebf71dbda52801f40d4e9313058bef6b792cf6cd (diff) | |
download | ffmpeg-d42a814ef18f6951d30b0005122c40f63cc74f55.tar.gz |
Make av_class a pointer to a const AVClass. Addresses one warning in
imgresample.c.
Originally committed as revision 12352 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 1a2aa0f357..ab3214825a 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -392,7 +392,7 @@ typedef struct /** An instance of a filter */ struct AVFilterContext { - AVClass *av_class; ///< needed for av_log() + const AVClass *av_class; ///< needed for av_log() AVFilter *filter; ///< the AVFilter of which this is an instance |