comparison libswscale/swscale_internal.h @ 26178:5ba88511ec0a

Make av_class a pointer to const. Patch by Takis.
author benoit
date Mon, 10 Mar 2008 14:30:49 +0000
parents 9ca242299b22
children e6774798e913
comparison
equal deleted inserted replaced
26177:9ca242299b22 26178:5ba88511ec0a
40 /* this struct should be aligned on at least 32-byte boundary */ 40 /* this struct should be aligned on at least 32-byte boundary */
41 typedef struct SwsContext{ 41 typedef struct SwsContext{
42 /** 42 /**
43 * info on struct for av_log 43 * info on struct for av_log
44 */ 44 */
45 AVClass *av_class; 45 const AVClass *av_class;
46 46
47 /** 47 /**
48 * Note that src, dst, srcStride, dstStride will be copied in the 48 * Note that src, dst, srcStride, dstStride will be copied in the
49 * sws_scale() wrapper so they can be freely modified here. 49 * sws_scale() wrapper so they can be freely modified here.
50 */ 50 */