mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Do declaration and initialization separately in elbg.c
to workaround an ICC bug. Originally committed as revision 14342 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6bf8b04764
commit
6de727244c
@ -249,9 +249,13 @@ static void try_shift_candidate(elbg_data *elbg, int idx[3])
|
||||
int j, k, olderror=0, newerror, cont=0;
|
||||
int newutility[3];
|
||||
int newcentroid[3][elbg->dim];
|
||||
int *newcentroid_ptrs[3] = { newcentroid[0], newcentroid[1], newcentroid[2] };
|
||||
int *newcentroid_ptrs[3];
|
||||
cell *tempcell;
|
||||
|
||||
newcentroid_ptrs[0] = newcentroid[0];
|
||||
newcentroid_ptrs[1] = newcentroid[1];
|
||||
newcentroid_ptrs[2] = newcentroid[2];
|
||||
|
||||
for (j=0; j<3; j++)
|
||||
olderror += elbg->utility[idx[j]];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user