summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-05 02:07:02 +0200
committerwm4 <wm4@nowhere>2013-06-09 22:06:03 +0200
commita10fee0d52157021bd2ed7ffd1fa277594033d34 (patch)
tree5e90f704cb8395fbef576ec2a7708cbfde6ff3a5
parentf7c912dff299e15b5ebd9f967c447d8b33adf3ca (diff)
downloadmpv-a10fee0d52157021bd2ed7ffd1fa277594033d34.tar.bz2
mpv-a10fee0d52157021bd2ed7ffd1fa277594033d34.tar.xz
stream: remove unused function
-rw-r--r--stream/stream.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/stream/stream.h b/stream/stream.h
index dfe545bd30..4ae0e1e6a0 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -290,15 +290,6 @@ inline static uint64_t stream_read_qword_le(stream_t *s)
return y;
}
-inline static unsigned int stream_read_int24(stream_t *s)
-{
- unsigned int y;
- y = stream_read_char(s);
- y = (y << 8) | stream_read_char(s);
- y = (y << 8) | stream_read_char(s);
- return y;
-}
-
unsigned char *stream_read_line(stream_t *s, unsigned char *mem, int max,
int utf16);