Commit f24ee426 authored by michael's avatar michael

Make src const.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11813 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4ca85a18
......@@ -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