Commit 363d4a0e authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '283226e1'

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

See 5df703aaMerged-by: 's avatarClément Bœsch <u@pkh.me>
parents e276f21f 283226e1
...@@ -126,7 +126,7 @@ static inline void FUNC(idctRowCondDC)(int16_t *row, int extra_shift) ...@@ -126,7 +126,7 @@ static inline void FUNC(idctRowCondDC)(int16_t *row, int extra_shift)
temp += temp * (1 << 16); temp += temp * (1 << 16);
temp += temp * ((uint64_t) 1 << 32); temp += temp * ((uint64_t) 1 << 32);
AV_WN64A(row, temp); AV_WN64A(row, temp);
AV_WN64A(row+4, temp); AV_WN64A(row + 4, temp);
return; return;
} }
#else #else
......
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