[FFmpeg-soc] [soc]: r527 - matroska/matroskaenc.c
conrad
subversion at mplayerhq.hu
Thu Jul 26 02:05:26 CEST 2007
Author: conrad
Date: Thu Jul 26 02:05:26 2007
New Revision: 527
Log:
Floats aren't used enough to justify writing any with single precision
Modified:
matroska/matroskaenc.c
Modified: matroska/matroskaenc.c
==============================================================================
--- matroska/matroskaenc.c (original)
+++ matroska/matroskaenc.c Thu Jul 26 02:05:26 2007
@@ -109,7 +109,6 @@ static void put_ebml_uint(ByteIOContext
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));
More information about the FFmpeg-soc
mailing list