diff options
author | Sascha Sommer <saschasommer@freenet.de> | 2002-12-30 23:00:02 +0000 |
---|---|---|
committer | Sascha Sommer <saschasommer@freenet.de> | 2002-12-30 23:00:02 +0000 |
commit | bb87a84ce99e3e94ef9f456a36ede3624f92bdf7 (patch) | |
tree | 2dcb4b4638bd147841dd501b924506cbf993d599 /postproc | |
parent | a2596758e082a3470605946bf9fe6ade788469bb (diff) | |
download | ffmpeg-bb87a84ce99e3e94ef9f456a36ede3624f92bdf7.tar.gz |
10l another int i missing (without ^M)
Originally committed as revision 8667 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess_template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c index c32dd9d884..092d8c6626 100644 --- a/postproc/postprocess_template.c +++ b/postproc/postprocess_template.c @@ -3063,6 +3063,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y)); else { + int i; for(i=0; i<height-y; i++) { memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width); |