Commit 321fa90d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Felix Paul Kühne

stream: handle seek across EOF correctly (hopefully)

(cherry picked from commit 6419254f5bb5ae06b72c93c9b52cd0a3bbbacb94)
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent ce51ba40
...@@ -1083,14 +1083,14 @@ static int AStreamPeekStream( stream_t *s, const uint8_t **pp_peek, unsigned int ...@@ -1083,14 +1083,14 @@ static int AStreamPeekStream( stream_t *s, const uint8_t **pp_peek, unsigned int
/* Be sure we will read something */ /* Be sure we will read something */
p_sys->stream.i_used += tk->i_start + p_sys->stream.i_offset + i_read - tk->i_end; p_sys->stream.i_used += tk->i_start + p_sys->stream.i_offset + i_read - tk->i_end;
} }
if( AStreamRefillStream( s ) ) break; if( AStreamRefillStream( s ) )
}
if( tk->i_end < tk->i_start + p_sys->stream.i_offset + i_read )
{ {
if( tk->i_end < tk->i_start + p_sys->stream.i_offset )
return 0; /* EOF */
i_read = tk->i_end - tk->i_start - p_sys->stream.i_offset; i_read = tk->i_end - tk->i_start - p_sys->stream.i_offset;
break;
}
} }
/* Now, direct pointer or a copy ? */ /* Now, direct pointer or a copy ? */
i_off = (tk->i_start + p_sys->stream.i_offset) % STREAM_CACHE_TRACK_SIZE; i_off = (tk->i_start + p_sys->stream.i_offset) % STREAM_CACHE_TRACK_SIZE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment