summaryrefslogtreecommitdiffstats
path: root/stream/stream_vcd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-22 18:23:33 +0200
committerwm4 <wm4@nowhere>2013-08-22 19:14:26 +0200
commitf806e268c6c3a76f65b1282219e16fcdfb80a9b5 (patch)
tree66876fbc7d96308da11a91456d91ef90223bac23 /stream/stream_vcd.c
parenta790f2133bb785e0c48a7c6cdc730c8b7e8287fb (diff)
downloadmpv-f806e268c6c3a76f65b1282219e16fcdfb80a9b5.tar.bz2
mpv-f806e268c6c3a76f65b1282219e16fcdfb80a9b5.tar.xz
stream: don't require streams to set s->pos in seek callback
Instead, set s->pos depending on the success of the seek callback.
Diffstat (limited to 'stream/stream_vcd.c')
-rw-r--r--stream/stream_vcd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stream/stream_vcd.c b/stream/stream_vcd.c
index f1c36545bf..6ec8453536 100644
--- a/stream/stream_vcd.c
+++ b/stream/stream_vcd.c
@@ -67,8 +67,7 @@ static int fill_buffer(stream_t *s, char* buffer, int max_len){
}
static int seek(stream_t *s,int64_t newpos) {
- s->pos = newpos;
- vcd_set_msf(s->priv,s->pos/VCD_SECTOR_DATA);
+ vcd_set_msf(s->priv,newpos/VCD_SECTOR_DATA);
return 1;
}