Commit bc4ac73c authored by gpoirier's avatar gpoirier

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6919 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7869d739
......@@ -630,10 +630,6 @@ ebml_read_float (MatroskaDemuxContext *matroska,
*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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment