Commit 9bf20ce2 authored by michael's avatar michael

10l (int i)


git-svn-id: file:///var/local/repositories/mplayer/trunk/postproc@8657 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 104685fe
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment