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 /libavcodec/imgresample.c | |
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 'libavcodec/imgresample.c')
-rw-r--r-- | libavcodec/imgresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index b5c57ffd94..5b720b2326 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -48,7 +48,7 @@ #define LINE_BUF_HEIGHT (NB_TAPS * 4) struct SwsContext { - AVClass *av_class; + const AVClass *av_class; struct ImgReSampleContext *resampling_ctx; enum PixelFormat src_pix_fmt, dst_pix_fmt; }; |