From 67352a6575f2c0b4dd65140f40c35336eda81c06 Mon Sep 17 00:00:00 2001 From: albeu Date: Tue, 19 Feb 2008 18:04:10 +0000 Subject: Fill stream->end_pos if possible, fixing lavf demuxers that need to seek. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26031 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/http.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'stream') diff --git a/stream/http.c b/stream/http.c index aa723adf17..3af0d47c4d 100644 --- a/stream/http.c +++ b/stream/http.c @@ -818,8 +818,10 @@ static int http_streaming_start(stream_t *stream, int* file_format) { if( content_type!=NULL ) { char *content_length = NULL; mp_msg(MSGT_NETWORK,MSGL_V,"Content-Type: [%s]\n", content_type ); - if( (content_length = http_get_field(http_hdr, "Content-Length")) != NULL) + if( (content_length = http_get_field(http_hdr, "Content-Length")) != NULL) { mp_msg(MSGT_NETWORK,MSGL_V,"Content-Length: [%s]\n", http_get_field(http_hdr, "Content-Length")); + stream->end_pos = atoi(content_length); + } // Check in the mime type table for a demuxer type i = 0; while(mime_type_table[i].mime_type != NULL) { -- cgit v1.2.3