diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2008-03-10 14:30:49 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-03-10 14:30:49 +0000 |
commit | 635a8cd27db8d3857febc0ea21bdd864dc956ae2 (patch) | |
tree | ecfe2f0ace65989f88ff9bf9c1e9248c5617e7b3 /libswscale/swscale.c | |
parent | 710af50e0c9723d856b330cfd297c82b5a76e946 (diff) | |
download | ffmpeg-635a8cd27db8d3857febc0ea21bdd864dc956ae2.tar.gz |
Make av_class a pointer to const.
Patch by Takis.
Originally committed as revision 26210 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index e89ebca066..7c29af42b4 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -274,7 +274,7 @@ static const AVOption options[] = { #undef VE #undef DEFAULT -static AVClass sws_context_class = { "SWScaler", sws_context_to_name, options }; +static const AVClass sws_context_class = { "SWScaler", sws_context_to_name, options }; const char *sws_format_name(enum PixelFormat format) { |