Skip to content

Commit

Permalink
lavc/ivi_dsp.c: fix warnings due to indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Adriano Pallavicino <[email protected]>
Signed-off-by: Josh de Kock <[email protected]>
  • Loading branch information
Spideru authored and jdek committed Oct 4, 2016
1 parent 5d4fea8 commit 21d3f0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libavcodec/ivi_dsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 21d3f0c

Please sign in to comment.