mirror of https://git.ffmpeg.org/ffmpeg.git
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:
commit
363d4a0e65
|
@ -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…
Reference in New Issue