changeset 2464:84e8a36ab497 libavformat

Floats aren't used enough to justify writing any with single precision
author conrad
date Wed, 05 Sep 2007 00:23:55 +0000
parents f4c247d28e9d
children 6a7f57bac0b2
files matroskaenc.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/matroskaenc.c	Wed Sep 05 00:23:53 2007 +0000
+++ b/matroskaenc.c	Wed Sep 05 00:23:55 2007 +0000
@@ -109,7 +109,6 @@
 
 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));