Merge commit '283226e11ccf50a71d25d150fbbf1743f74c6c49'

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

See 5df703aa1b

Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
Clément Bœsch 2016-06-21 22:12:36 +02:00
commit 363d4a0e65
1 changed files with 1 additions and 1 deletions

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