mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Speed up playback by avoiding unnecessary seek when playing from the beginning of a file.
This commit is contained in:
parent
a3c63b4e05
commit
2e492e4d44
1 changed files with 6 additions and 3 deletions
|
@ -580,9 +580,12 @@ impl PlayerInternal {
|
|||
|
||||
let mut decoder = VorbisDecoder::new(audio_file).unwrap();
|
||||
|
||||
match decoder.seek(position) {
|
||||
Ok(_) => (),
|
||||
Err(err) => error!("Vorbis error: {:?}", err),
|
||||
if position != 0 {
|
||||
info!("seek {}", position);
|
||||
match decoder.seek(position) {
|
||||
Ok(_) => (),
|
||||
Err(err) => error!("Vorbis error: {:?}", err),
|
||||
}
|
||||
}
|
||||
|
||||
info!("Track \"{}\" loaded", track.name);
|
||||
|
|
Loading…
Reference in a new issue