Commit c231bbf7 authored by benoit's avatar benoit

Make av_class a pointer to const.

Patch by Takis.


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@26210 b3059339-0415-0410-9bf9-f77b7e298cf2
parent e82c9f80
......@@ -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)
{
......
......@@ -42,7 +42,7 @@ typedef struct SwsContext{
/**
* info on struct for av_log
*/
AVClass *av_class;
const AVClass *av_class;
/**
* 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