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;
|
} 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) {
|
if (stride > 0) {
|
||||||
memcpy(dest, src, lines*stride);
|
memcpy(dest, src, lines*stride);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user