diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-02 17:13:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-02 17:13:40 +0000 |
commit | ae77c4b0071e0e2f2d98958d52423880fc87429f (patch) | |
tree | 679265f80bb3024672acdba5d4cd02512d25a618 | |
parent | b0ddba1291a62ffd7d4ee0dc50ebc540c3651760 (diff) | |
download | ffmpeg-ae77c4b0071e0e2f2d98958d52423880fc87429f.tar.gz |
Make src const.
Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libpostproc/postprocess_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index 2444016673..f2d40e1d50 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -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); |