Commit c61b15d4 authored by vitor's avatar vitor

Remove useless assignement in generate_codebook(). Found by Clang static

analyser.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18549 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1b479764
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment