1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-31 16:31:54 +02:00

Simplify rotate_buffer()

Originally committed as revision 13914 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-06-23 19:59:42 +00:00
parent cb51aef1ab
commit 5983d1c480

View File

@ -97,14 +97,13 @@ static void eval_coefs(const int *refl, int *coefs)
/* rotate block */
static void rotate_block(const int16_t *source, int16_t *target, int offset)
{
int i=0, k=0;
source += BUFFERSIZE - offset;
while (i<BLOCKSIZE) {
target[i++] = source[k++];
if (k == offset)
k = 0;
if (offset > BLOCKSIZE) {
memcpy(target, source, BLOCKSIZE*sizeof(*target));
} else {
memcpy(target, source, offset*sizeof(*target));
memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target));
}
}