diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-07-29 16:18:25 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-07-31 08:19:27 +0200 |
commit | 5ebef79abecc3ffcc4ab0d46e203d13b068107c9 (patch) | |
tree | 6f7809258292b833b9947497ea7341e3e098eb1a /libavcodec/ivi_dsp.c | |
parent | 5ed4644d6de7f6112431dc2d9a5cfe9a0a75a688 (diff) | |
download | ffmpeg-5ebef79abecc3ffcc4ab0d46e203d13b068107c9.tar.gz |
Fix instances of broken indentation found by gcc 6
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 bf0bec152a..9b74f730e4 100644 --- a/libavcodec/ivi_dsp.c +++ b/libavcodec/ivi_dsp.c @@ -542,8 +542,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 @@ -582,8 +582,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 |