summaryrefslogtreecommitdiff
path: root/src/lib/butler.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-01 01:25:01 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-01 01:25:01 +0200
commit0a1aa72f11b7d5109caaa5d3ae0068e18dea6b56 (patch)
tree904cbc6325dc998514ff2a0e5a494a135f7876bc /src/lib/butler.cc
parent86646e17164f7e085bae1574ecda5784ce9a67ac (diff)
C++11 cleanup.
Diffstat (limited to 'src/lib/butler.cc')
-rw-r--r--src/lib/butler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/butler.cc b/src/lib/butler.cc
index d4da787dd..37e8c9544 100644
--- a/src/lib/butler.cc
+++ b/src/lib/butler.cc
@@ -307,7 +307,7 @@ void
Butler::prepare (weak_ptr<PlayerVideo> weak_video)
try
{
- shared_ptr<PlayerVideo> video = weak_video.lock ();
+ auto video = weak_video.lock ();
/* If the weak_ptr cannot be locked the video obviously no longer requires any work */
if (video) {
LOG_TIMING("start-prepare in %1", thread_id());
@@ -363,7 +363,7 @@ Butler::audio (shared_ptr<AudioBuffers> audio, DCPTime time, int frame_rate)
optional<DCPTime>
Butler::get_audio (float* out, Frame frames)
{
- optional<DCPTime> t = _audio.get (out, _audio_channels, frames);
+ auto t = _audio.get (out, _audio_channels, frames);
_summon.notify_all ();
return t;
}