Commit 635a8cd2 authored by Panagiotis Issaris's avatar Panagiotis Issaris Committed by Benoit Fouet

Make av_class a pointer to const.

Patch by Takis.

Originally committed as revision 26210 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 710af50e
...@@ -274,7 +274,7 @@ static const AVOption options[] = { ...@@ -274,7 +274,7 @@ static const AVOption options[] = {
#undef VE #undef VE
#undef DEFAULT #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) const char *sws_format_name(enum PixelFormat format)
{ {
......
...@@ -42,7 +42,7 @@ typedef struct SwsContext{ ...@@ -42,7 +42,7 @@ typedef struct SwsContext{
/** /**
* info on struct for av_log * info on struct for av_log
*/ */
AVClass *av_class; const AVClass *av_class;
/** /**
* Note that src, dst, srcStride, dstStride will be copied in the * Note that src, dst, srcStride, dstStride will be copied in the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment