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
This commit is contained in:
Panagiotis Issaris
2008-03-06 17:41:31 +00:00
parent ebf71dbda5
commit d42a814ef1
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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