summaryrefslogtreecommitdiffstats
path: root/libmpdemux/ebml.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-26 13:53:27 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-27 14:26:48 +0200
commita07cfb35d3c516830dda851f1c6d371e229c69b1 (patch)
tree97c5a4b56e7743f426c1416eccd6374b286921d0 /libmpdemux/ebml.h
parent6e7531c4beb644fd161f7f370b1513d2ec243924 (diff)
downloadmpv-a07cfb35d3c516830dda851f1c6d371e229c69b1.tar.bz2
mpv-a07cfb35d3c516830dda851f1c6d371e229c69b1.tar.xz
demux_mkv: remove pointless 'long double' use
There was no remaining reason to use this type. The variables were assigned values with plain double precision anyway.
Diffstat (limited to 'libmpdemux/ebml.h')
-rw-r--r--libmpdemux/ebml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/ebml.h b/libmpdemux/ebml.h
index 0398b1813a..efa3634141 100644
--- a/libmpdemux/ebml.h
+++ b/libmpdemux/ebml.h
@@ -104,7 +104,7 @@ int64_t ebml_read_vlen_int (uint8_t *buffer, int *length);
uint64_t ebml_read_length (stream_t *s, int *length);
uint64_t ebml_read_uint (stream_t *s, uint64_t *length);
int64_t ebml_read_int (stream_t *s, uint64_t *length);
-long double ebml_read_float (stream_t *s, uint64_t *length);
+double ebml_read_float (stream_t *s, uint64_t *length);
char *ebml_read_ascii (stream_t *s, uint64_t *length);
char *ebml_read_utf8 (stream_t *s, uint64_t *length);
int ebml_read_skip (stream_t *s, uint64_t *length);