summaryrefslogtreecommitdiff
path: root/libpostproc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-02 17:13:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-02 17:13:40 +0000
commitae77c4b0071e0e2f2d98958d52423880fc87429f (patch)
tree679265f80bb3024672acdba5d4cd02512d25a618 /libpostproc
parentb0ddba1291a62ffd7d4ee0dc50ebc540c3651760 (diff)
Make src const.
Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r--libpostproc/postprocess_internal.h2
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);