Browse Source

lavc/ivi_dsp.c: fix warnings due to indentation

Signed-off-by: Adriano Pallavicino <adriano.pallavicino@gmail.com>
Signed-off-by: Josh de Kock <josh@itanimul.li>
tags/n3.2
Adriano Pallavicino Josh de Kock 9 years ago
parent
commit
21d3f0c020
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/ivi_dsp.c

+ 4
- 4
libavcodec/ivi_dsp.c View File

@@ -552,8 +552,8 @@ void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, uint32_t pitch, c
} else
dst[0] = dst[8] = dst[16] = dst[24] = dst[32] = dst[40] = dst[48] = dst[56] = 0;

src++;
dst++;
src++;
dst++;
}
#undef COMPENSATE

@@ -592,8 +592,8 @@ void ff_ivi_inverse_slant_4x4(const int32_t *in, int16_t *out, uint32_t pitch, c
} else
dst[0] = dst[4] = dst[8] = dst[12] = 0;

src++;
dst++;
src++;
dst++;
}
#undef COMPENSATE



Loading…
Cancel
Save