From: Steinar H. Gunderson Date: Sat, 29 Dec 2018 23:11:43 +0000 (+0100) Subject: Some Futatabi formatting fixes. X-Git-Tag: 1.8.1~6 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=d070882f9c8fead261931a2f19086747c1e1087d;hp=77b07753d623ff273cfd31abee45b9b6e258a142 Some Futatabi formatting fixes. --- diff --git a/futatabi/player.cpp b/futatabi/player.cpp index 34beda7..1d8962f 100644 --- a/futatabi/player.cpp +++ b/futatabi/player.cpp @@ -525,7 +525,7 @@ void Player::play(const vector &clips) void Player::splice_play(const vector &clips) { - lock_guard lock(queue_state_mu); + lock_guard lock(queue_state_mu); if (new_clip_ready) { queued_clip_list = clips; assert(!splice_ready); @@ -588,7 +588,7 @@ void Player::release_queue_spot() new_clip_changed.notify_all(); } -double compute_time_left(const vector &clips, size_t currently_playing_idx, double progress_currently_playing) +double compute_time_left(const vector &clips, size_t currently_playing_idx, double progress_currently_playing) { // Look at the last clip and then start counting from there. double remaining = 0.0;