mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
update ffmpeg to 3.4.8.
This commit is contained in:
parent
f57c0e08fa
commit
7fec328c85
31 changed files with 320 additions and 235 deletions
|
|
@ -64,7 +64,7 @@ static inline SoftFloat_IEEE754 av_int2sf_ieee754(int64_t n, int e) {
|
|||
* by the IEEE 754 spec.
|
||||
*/
|
||||
static inline SoftFloat_IEEE754 av_bits2sf_ieee754(uint32_t n) {
|
||||
return ((SoftFloat_IEEE754) { (n & 0x80000000UL), (n & 0x7FFFFFUL), (n & 0x7F800000UL) });
|
||||
return ((SoftFloat_IEEE754) { (n & 0x80000000UL) >> 31, (n & 0x7FFFFFUL), (int8_t)((n & 0x7F800000UL) >> 23)});
|
||||
}
|
||||
|
||||
/** Convert the softfloat to integer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue