mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Simplify if() in copy_and_dup()
Originally committed as revision 15268 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8022a8ebc2
commit
b28bdce688
@ -109,12 +109,9 @@ static void copy_and_dup(int16_t *target, const int16_t *source, int offset)
|
|||||||
{
|
{
|
||||||
source += BUFFERSIZE - offset;
|
source += BUFFERSIZE - offset;
|
||||||
|
|
||||||
if (offset > BLOCKSIZE) {
|
memcpy(target, source, FFMIN(BLOCKSIZE, offset)*sizeof(*target));
|
||||||
memcpy(target, source, BLOCKSIZE*sizeof(*target));
|
if (offset < BLOCKSIZE)
|
||||||
} else {
|
|
||||||
memcpy(target, source, offset*sizeof(*target));
|
|
||||||
memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target));
|
memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** inverse root mean square */
|
/** inverse root mean square */
|
||||||
|
Loading…
Reference in New Issue
Block a user