From a4d487f5b2930611bf908243510d6f0351ebcf58 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 24 May 2014 14:04:09 +0200 Subject: stream: don't use end_pos Stop using it in most places, and prefer STREAM_CTRL_GET_SIZE. The advantage is that always the correct size will be used. There can be no doubt anymore whether the end_pos value is outdated (as it happens often with files that are being downloaded). Some streams still use end_pos. They don't change size, and it's easier to emulate STREAM_CTRL_GET_SIZE using end_pos, instead of adding a STREAM_CTRL_GET_SIZE implementation to these streams. Make sure int64_t is always used for STREAM_CTRL_GET_SIZE (it was uint64_t before). Remove the seek flags mess, and replace them with a seekable flag. Every stream must set it consistently now, and an assertion in stream.c checks this. Don't distinguish between streams that can only be forward or backwards seeked, since we have no such stream types. --- stream/stream_lavf.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'stream/stream_lavf.c') diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index c9e714fce4..509aaa3e70 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -89,8 +89,8 @@ static int control(stream_t *s, int cmd, void *arg) switch(cmd) { case STREAM_CTRL_GET_SIZE: size = avio_size(avio); - if(size >= 0) { - *(uint64_t *)arg = size; + if (size >= 0) { + *(int64_t *)arg = size; return 1; } break; @@ -136,6 +136,9 @@ static int open_f(stream_t *stream, int mode) AVDictionary *dict = NULL; void *temp = talloc_new(NULL); + stream->seek = NULL; + stream->seekable = false; + if (mode == STREAM_READ) flags = AVIO_FLAG_READ; else if (mode == STREAM_WRITE) @@ -161,7 +164,6 @@ static int open_f(stream_t *stream, int mode) * this (the rtsp demuxer's probe function checks for a "rtsp:" * filename prefix), so it has to be handled specially here. */ - stream->seek = NULL; stream->demuxer = "lavf"; stream->lavf_type = "rtsp"; talloc_free(temp); @@ -238,12 +240,8 @@ static int open_f(stream_t *stream, int mode) stream->lavf_type = "flv"; } stream->priv = avio; - int64_t size = avio_size(avio); - if (size >= 0) - stream->end_pos = size; - stream->seek = seek; - if (!avio->seekable) - stream->seek = NULL; + stream->seekable = avio->seekable; + stream->seek = stream->seekable ? seek : NULL; stream->fill_buffer = fill_buffer; stream->write_buffer = write_buffer; stream->control = control; -- cgit v1.2.3