input/ffmpeg: update offset after seeking
This commit is contained in:
parent
27139bf41f
commit
41a4b280ee
1
NEWS
1
NEWS
|
@ -30,6 +30,7 @@ ver 0.19 (not yet released)
|
||||||
* input
|
* input
|
||||||
- alsa: new input plugin
|
- alsa: new input plugin
|
||||||
- curl: options "verify_peer" and "verify_host"
|
- curl: options "verify_peer" and "verify_host"
|
||||||
|
- ffmpeg: update offset after seeking
|
||||||
- mms: non-blocking I/O
|
- mms: non-blocking I/O
|
||||||
- nfs: new input plugin
|
- nfs: new input plugin
|
||||||
- smbclient: new input plugin
|
- smbclient: new input plugin
|
||||||
|
|
|
@ -143,6 +143,7 @@ FfmpegInputStream::Seek(offset_type new_offset, Error &error)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
offset = result;
|
||||||
eof = false;
|
eof = false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue