mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 22:10:34 +00:00
Remove useless assignment in generate_codebook(). Found by Clang static analyser.
Originally committed as revision 18549 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
806d5e61dc
commit
b0e37369a1
@ -796,7 +796,7 @@ static void generate_codebook(RoqContext *enc, RoqTempdata *tempdata,
|
||||
{
|
||||
int i, j, k;
|
||||
int c_size = size*size/4;
|
||||
int *buf = points;
|
||||
int *buf;
|
||||
int *codebook = av_malloc(6*c_size*cbsize*sizeof(int));
|
||||
int *closest_cb;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user