Browse Source

Merge commit '283226e11ccf50a71d25d150fbbf1743f74c6c49'

* commit '283226e11ccf50a71d25d150fbbf1743f74c6c49':
  simple_idct_template: Fix strict aliasing violation

See 5df703aa1b

Merged-by: Clément Bœsch <u@pkh.me>
tags/n3.1
Clément Bœsch 9 years ago
parent
commit
363d4a0e65
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/simple_idct_template.c

+ 1
- 1
libavcodec/simple_idct_template.c View File

@@ -126,7 +126,7 @@ static inline void FUNC(idctRowCondDC)(int16_t *row, int extra_shift)
temp += temp * (1 << 16);
temp += temp * ((uint64_t) 1 << 32);
AV_WN64A(row, temp);
AV_WN64A(row+4, temp);
AV_WN64A(row + 4, temp);
return;
}
#else


Loading…
Cancel
Save