Commit dcbfe3f0 authored by David Conrad's avatar David Conrad

Floats aren't used enough to justify writing any with single precision

Originally committed as revision 10333 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9245c5ca
......@@ -109,7 +109,6 @@ static void put_ebml_uint(ByteIOContext *pb, unsigned int elementid, uint64_t va
static void put_ebml_float(ByteIOContext *pb, unsigned int elementid, double val)
{
// XXX: single-precision floats?
put_ebml_id(pb, elementid);
put_ebml_size(pb, 8, 0);
put_be64(pb, av_dbl2int(val));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment