mirror of https://github.com/mpv-player/mpv
Remove long double reading code, long double was never used AFAICT and
is gone from the specification since a long time due to portability issues. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21360 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6d46499497
commit
01755ed66a
|
@ -193,15 +193,6 @@ ebml_read_float (stream_t *s, uint64_t *length)
|
|||
break;
|
||||
}
|
||||
|
||||
case 10:
|
||||
{
|
||||
union {uint8_t data[10]; long double ld;} u;
|
||||
if (stream_read (s, u.data, 10) != 10)
|
||||
return EBML_FLOAT_INVALID;
|
||||
value = be2me_ldbl(u.ld);
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
return EBML_FLOAT_INVALID;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue