changeset 1452:5ac6f973ba2f libavformat

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
author gpoirier
date Mon, 06 Nov 2006 19:01:03 +0000
parents 48cfca624912
children c0235bab9e92
files matroska.c
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/matroska.c	Mon Nov 06 06:07:41 2006 +0000
+++ b/matroska.c	Mon Nov 06 19:01:03 2006 +0000
@@ -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,