summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-30 12:36:28 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-30 12:36:28 +0000
commitc0b1f8e2dc15829a10e7087c5cbe81a7c0d1fc63 (patch)
tree8194421a951a133d3f14e15d44594f199a0a77a8 /postproc
parent673897aa36f3974ea5573c4c1df901ce5d547e05 (diff)
downloadmpv-c0b1f8e2dc15829a10e7087c5cbe81a7c0d1fc63.tar.bz2
mpv-c0b1f8e2dc15829a10e7087c5cbe81a7c0d1fc63.tar.xz
10l (int i)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8657 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/postprocess_template.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c
index f35fbd0821..c32dd9d884 100644
--- a/postproc/postprocess_template.c
+++ b/postproc/postprocess_template.c
@@ -2075,7 +2075,7 @@ static inline void RENAME(transpose2)(uint8_t *dst, int dstStride, uint8_t *src)
#endif
//static int test=0;
-static void inline RENAME(tempNoiseReducer)(uint8_t *src, int stride,
+static inline void RENAME(tempNoiseReducer)(uint8_t *src, int stride,
uint8_t *tempBlured, uint32_t *tempBluredPast, int *maxNoise)
{
// to save a register (FIXME do this outside of the loops)
@@ -2828,6 +2828,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
memcpy(dst, tempDst + 9*dstStride, copyAhead*dstStride);
else
{
+ int i;
for(i=0; i<copyAhead; i++)
{
memcpy(dst + i*dstStride, tempDst + (9+i)*dstStride, width);