diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-02 15:07:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-04 11:45:35 +0100 |
| commit | 6bf04a56980eca8688fc8b691ed4fc5bca4ae8d3 (patch) | |
| tree | e0e079fabaa1dc733fc05a642a8405131d59d8c5 | |
| parent | 6680847654010dfb233487fce0757a2372e79271 (diff) | |
Cleanup variable name: k -> reel
| -rw-r--r-- | src/lib/player.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc index 5404dfac4..2669b350f 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -582,9 +582,9 @@ Player::get_reel_assets () int64_t offset_from_start = 0; /* position i the asset from the end */ int64_t offset_from_end = 0; - for (auto k: decoder->reels()) { + for (auto reel: decoder->reels()) { /* Assume that main picture duration is the length of the reel */ - offset_from_end += k->main_picture()->actual_duration(); + offset_from_end += reel->main_picture()->actual_duration(); } for (auto reel: decoder->reels()) { |
