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:
reimar 2006-11-28 18:34:08 +00:00
parent 6d46499497
commit 01755ed66a
1 changed files with 0 additions and 9 deletions

View File

@ -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;
}