mirror of https://git.ffmpeg.org/ffmpeg.git
Make etable1 and etable2 tables instead of arrays.
Originally committed as revision 13212 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
59ffb6e2cc
commit
65189c6cac
|
@ -256,8 +256,8 @@ static void do_output_subblock(Real144_internal *glob, const unsigned short *gs
|
||||||
memmove(glob->buffer_2, glob->buffer_2 + BLOCKSIZE, (BUFFERSIZE - BLOCKSIZE) * 2);
|
memmove(glob->buffer_2, glob->buffer_2 + BLOCKSIZE, (BUFFERSIZE - BLOCKSIZE) * 2);
|
||||||
block = glob->buffer_2 + BUFFERSIZE - BLOCKSIZE;
|
block = glob->buffer_2 + BUFFERSIZE - BLOCKSIZE;
|
||||||
|
|
||||||
add_wav(d, a, g, e, f, buffer_a, etable1 + b*BLOCKSIZE,
|
add_wav(d, a, g, e, f, buffer_a, etable1[b],
|
||||||
etable2 + c*BLOCKSIZE, block);
|
etable2[c], block);
|
||||||
|
|
||||||
final(gsp, block, output_buffer, glob->buffer, BLOCKSIZE);
|
final(gsp, block, output_buffer, glob->buffer, BLOCKSIZE);
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue