mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
gcc isn't smart enough to factor out duplicate stores
Originally committed as revision 10611 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
551109d48a
commit
f6215b1b06
@ -499,10 +499,11 @@ static void calc_sums(int pmin, int pmax, uint32_t *data, int n, int pred_order,
|
||||
res = &data[pred_order];
|
||||
res_end = &data[n >> pmax];
|
||||
for(i=0; i<parts; i++) {
|
||||
sums[pmax][i] = 0;
|
||||
uint32_t sum = 0;
|
||||
while(res < res_end){
|
||||
sums[pmax][i] += *(res++);
|
||||
sum += *(res++);
|
||||
}
|
||||
sums[pmax][i] = sum;
|
||||
res_end+= n >> pmax;
|
||||
}
|
||||
/* sums for lower levels */
|
||||
|
Loading…
Reference in New Issue
Block a user