[Ffmpeg-cvslog] r6919 - trunk/libavformat/matroska.c

gpoirier subversion
Mon Nov 6 20:01:04 CET 2006


Author: gpoirier
Date: Mon Nov  6 20:01:03 2006
New Revision: 6919

Modified:
   trunk/libavformat/matroska.c

Log:
remove floats in 10 bytes/byte support (no version of matroska used it)
Patch by Steve Lhomme % slhomme A divxcorp P com %
Original thread:
Date: Nov 6, 2006 7:24 PM
Subject: [Ffmpeg-devel] [PATCH] no 10 bytes floats


Modified: trunk/libavformat/matroska.c
==============================================================================
--- trunk/libavformat/matroska.c	(original)
+++ trunk/libavformat/matroska.c	Mon Nov  6 20:01:03 2006
@@ -630,10 +630,6 @@
         *num= av_int2flt(get_be32(pb));
     } else if(size==8){
         *num= av_int2dbl(get_be64(pb));
-    } else if(size==10){
-        av_log(matroska->ctx, AV_LOG_ERROR,
-               "FIXME! 10-byte floats unimplemented\n");
-        return AVERROR_UNKNOWN;
     } else{
         offset_t pos = url_ftell(pb);
         av_log(matroska->ctx, AV_LOG_ERROR,




More information about the ffmpeg-cvslog mailing list