Commit 41a4b280 authored by Max Kellermann's avatar Max Kellermann

input/ffmpeg: update offset after seeking

parent 27139bf4
...@@ -30,6 +30,7 @@ ver 0.19 (not yet released) ...@@ -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) ...@@ -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;
} }
......
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