Browse Source

Make src const.

Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
ae77c4b007
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libpostproc/postprocess_internal.h

+ 1
- 1
libpostproc/postprocess_internal.h 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);


Loading…
Cancel
Save