[FFmpeg-cvslog] r10333 - trunk/libavformat/matroskaenc.c

conrad subversion
Wed Sep 5 02:23:55 CEST 2007


Author: conrad
Date: Wed Sep  5 02:23:55 2007
New Revision: 10333

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


Modified:
   trunk/libavformat/matroskaenc.c

Modified: trunk/libavformat/matroskaenc.c
==============================================================================
--- trunk/libavformat/matroskaenc.c	(original)
+++ trunk/libavformat/matroskaenc.c	Wed Sep  5 02:23:55 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-cvslog mailing list