summaryrefslogtreecommitdiffstats
path: root/demux/ebml.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-14 17:38:44 +0100
committerwm4 <wm4@nowhere>2014-01-14 17:38:44 +0100
commitbbbea7934f6c3f1531e000e4b51ff8adcca7923c (patch)
tree611e5cf04925caf67f0f50d172378560013a767e /demux/ebml.h
parent72d5273bc15ee7b33a145e02fe80b822c863bbdc (diff)
downloadmpv-bbbea7934f6c3f1531e000e4b51ff8adcca7923c.tar.bz2
mpv-bbbea7934f6c3f1531e000e4b51ff8adcca7923c.tar.xz
ebml: remove unused functions
These were mostly replaced by ebml_read_element().
Diffstat (limited to 'demux/ebml.h')
-rw-r--r--demux/ebml.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/demux/ebml.h b/demux/ebml.h
index b934ee5c34..80943d33e4 100644
--- a/demux/ebml.h
+++ b/demux/ebml.h
@@ -99,12 +99,8 @@ int64_t ebml_read_vlen_int (bstr *buffer);
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);
-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(struct mp_log *log, int64_t end, stream_t *s);
int ebml_resync_cluster(struct mp_log *log, stream_t *s);
-uint32_t ebml_read_master (stream_t *s, uint64_t *length);
int ebml_read_element(struct stream *s, struct ebml_parse_ctx *ctx,
void *target, const struct ebml_elem_desc *desc);