1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

Make src const.

Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-02-02 17:13:40 +00:00
parent b0ddba1291
commit ae77c4b007

View File

@ -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);