mirror of https://git.ffmpeg.org/ffmpeg.git
Make src const.
Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b0ddba1291
commit
ae77c4b007
|
@ -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…
Reference in New Issue