From 039ade24cfcdfacd9c68143832161a883a3ea2ef Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 25 Apr 2025 23:16:29 +0200 Subject: White space: decoder.{cc,h} --- src/lib/decoder.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/lib/decoder.cc') diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 5d1915128..7088a25d1 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -34,8 +34,8 @@ using std::weak_ptr; using namespace dcpomatic; -Decoder::Decoder (weak_ptr film) - : WeakConstFilm (film) +Decoder::Decoder(weak_ptr film) + : WeakConstFilm(film) { } @@ -43,7 +43,7 @@ Decoder::Decoder (weak_ptr film) /** @return Earliest time of content that the next pass() will emit */ ContentTime -Decoder::position () const +Decoder::position() const { optional pos; auto f = film(); @@ -76,24 +76,24 @@ Decoder::position () const void -Decoder::seek (ContentTime, bool) +Decoder::seek(ContentTime, bool) { if (video) { - video->seek (); + video->seek(); } if (audio) { - audio->seek (); + audio->seek(); } for (auto i: text) { - i->seek (); + i->seek(); } } shared_ptr -Decoder::only_text () const +Decoder::only_text() const { - DCPOMATIC_ASSERT (text.size() < 2); + DCPOMATIC_ASSERT(text.size() < 2); if (text.empty()) { return {}; } -- cgit v1.2.3