Commit ae77c4b0 authored by Michael Niedermayer's avatar Michael Niedermayer

Make src const.

Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b0ddba12
......@@ -166,7 +166,7 @@ typedef struct PPContext{
} PPContext;
static inline void linecpy(void *dest, void *src, int lines, int stride)
static inline void linecpy(void *dest, const void *src, int lines, int stride)
{
if (stride > 0) {
memcpy(dest, src, lines*stride);
......
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