]> git.sesse.net Git - nageru/commitdiff
Some Futatabi formatting fixes.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 29 Dec 2018 23:11:43 +0000 (00:11 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 29 Dec 2018 23:11:43 +0000 (00:11 +0100)
futatabi/player.cpp

index 34beda78f98667d95059a65b8028b141887f8c34..1d8962f25b6f657c54aa6c34074300ae9db9a791 100644 (file)
@@ -525,7 +525,7 @@ void Player::play(const vector<ClipWithID> &clips)
 
 void Player::splice_play(const vector<ClipWithID> &clips)
 {
-        lock_guard<mutex> lock(queue_state_mu);
+       lock_guard<mutex> 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<ClipWithID> &clips, size_t currently_playing_idx, double progress_currently_playing) 
+double compute_time_left(const vector<ClipWithID> &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;