mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-12 02:04:58 +00:00
Simplify rotate_buffer()
Originally committed as revision 13914 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
cb51aef1ab
commit
5983d1c480
@ -97,14 +97,13 @@ static void eval_coefs(const int *refl, int *coefs)
|
|||||||
/* rotate block */
|
/* rotate block */
|
||||||
static void rotate_block(const int16_t *source, int16_t *target, int offset)
|
static void rotate_block(const int16_t *source, int16_t *target, int offset)
|
||||||
{
|
{
|
||||||
int i=0, k=0;
|
|
||||||
source += BUFFERSIZE - offset;
|
source += BUFFERSIZE - offset;
|
||||||
|
|
||||||
while (i<BLOCKSIZE) {
|
if (offset > BLOCKSIZE) {
|
||||||
target[i++] = source[k++];
|
memcpy(target, source, BLOCKSIZE*sizeof(*target));
|
||||||
|
} else {
|
||||||
if (k == offset)
|
memcpy(target, source, offset*sizeof(*target));
|
||||||
k = 0;
|
memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user