Make resampled_audio_to_dcp private.
[dcpomatic.git] / src / lib / piece_audio.h
index a6f345f3e50907de145c177ca86afef1d0e8eeec..876591c5b9da6a71f41b48a9c5bf8757ff967ae9 100644 (file)
@@ -45,15 +45,17 @@ public:
                : audio (new AudioBuffers(0, 0))
        {}
 
-       PieceAudio (std::shared_ptr<AudioStream> s, std::shared_ptr<const AudioBuffers> a, Frame f)
+       PieceAudio (std::shared_ptr<AudioStream> s, std::shared_ptr<const AudioBuffers> a, Frame f, dcpomatic::DCPTime t)
                : stream (s)
                , audio (a)
                , frame (f)
+               , time (t)
        {}
 
        std::shared_ptr<AudioStream> stream;
        std::shared_ptr<const AudioBuffers> audio;
        Frame frame = 0;
+       dcpomatic::DCPTime time;
 };