diff options
author | Steve L'Homme <slhomme@divxcorp.com> | 2006-11-06 19:01:03 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-11-06 19:01:03 +0000 |
commit | 1c75f2bc5be757babd985ce12ca5e3b470621d1e (patch) | |
tree | fb61b15eadd88a6e4d562a9f8387717d12c162b3 /libavformat/matroska.c | |
parent | e07eaaccc1be929b3974a6fea5abd3df906a45b0 (diff) | |
download | ffmpeg-1c75f2bc5be757babd985ce12ca5e3b470621d1e.tar.gz |
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
Originally committed as revision 6919 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index a0993f2ff0..ee42392344 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -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, |