summaryrefslogtreecommitdiff
path: root/src/lib/atmos_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-04 13:34:50 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-07 09:29:59 +0200
commitf68b82c43c5ce988a11d16f537c1e0ab178089b5 (patch)
treee3f5f88708a8e898056a1a60ee66bca310fb215c /src/lib/atmos_decoder.cc
parent41885408b723c29ab3ae48cae5999a9934240bf2 (diff)
Rename ContentAtmos -> PieceAtmos and pass atmos through Piece.
Diffstat (limited to 'src/lib/atmos_decoder.cc')
-rw-r--r--src/lib/atmos_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/atmos_decoder.cc b/src/lib/atmos_decoder.cc
index 478c45809..1b3e3503a 100644
--- a/src/lib/atmos_decoder.cc
+++ b/src/lib/atmos_decoder.cc
@@ -48,7 +48,7 @@ AtmosDecoder::seek ()
void
AtmosDecoder::emit (shared_ptr<const Film> film, shared_ptr<const dcp::AtmosFrame> data, Frame frame, AtmosMetadata metadata)
{
- Data (ContentAtmos(data, frame, metadata));
+ Data (data, frame, metadata);
/* There's no fiddling with frame rates when we are using Atmos; the DCP rate must be the same as the Atmos one */
_position = dcpomatic::ContentTime::from_frames (frame, film->video_frame_rate());
}