diff options
author | Adriano Pallavicino <adriano.pallavicino@gmail.com> | 2016-10-02 20:42:44 +0200 |
---|---|---|
committer | Josh de Kock <josh@itanimul.li> | 2016-10-04 18:38:41 +0100 |
commit | 21d3f0c0201a8f702c898d455b18ca01ee50b15a (patch) | |
tree | 55e15b8cb9e02446f80aac75f817c9f9cb936364 /libavcodec/ivi_dsp.c | |
parent | 5d4fea88d485ec6e81db85ff3e0c6e1ab01d3436 (diff) | |
download | ffmpeg-21d3f0c0201a8f702c898d455b18ca01ee50b15a.tar.gz |
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>
Diffstat (limited to 'libavcodec/ivi_dsp.c')
-rw-r--r-- | libavcodec/ivi_dsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/ivi_dsp.c b/libavcodec/ivi_dsp.c index bc9de1a72f..52112695f1 100644 --- a/libavcodec/ivi_dsp.c +++ b/libavcodec/ivi_dsp.c @@ -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 |