summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-10-26 16:44:05 +0200
committerwm4 <wm4@nowhere>2019-10-31 11:05:48 +0100
commita267452b00106993a6b8a34a9c3ca26d15f204aa (patch)
tree4c0c1eab6c0e2377782b1d8a983da5c35f759d8e /stream/stream.h
parentc6b08d222fd62ac05657a77898e1d749dc3be72f (diff)
downloadmpv-a267452b00106993a6b8a34a9c3ca26d15f204aa.tar.bz2
mpv-a267452b00106993a6b8a34a9c3ca26d15f204aa.tar.xz
stream: move stream_read_line to demux_playlist.c
demux_playlist.c is the only remaining user of this. Not sure if it should stay this way, but for now I'll say yes.
Diffstat (limited to 'stream/stream.h')
-rw-r--r--stream/stream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/stream/stream.h b/stream/stream.h
index 71a7011fef..66f151962a 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -161,8 +161,6 @@ inline static int stream_read_char(stream_t *s)
(stream_fill_buffer(s) ? s->buffer[s->buf_pos++] : -256);
}
-unsigned char *stream_read_line(stream_t *s, unsigned char *mem, int max,
- int utf16);
int stream_skip_bom(struct stream *s);
inline static int stream_eof(stream_t *s)