Another macOS std::list boost::thread SNAFU.
[dcpomatic.git] / src / lib / content_audio.h
index 4bfbf0cc708d859cb92b8ea5a65c9c59c837777c..509e7e4a6c92f326536637238db75bebb2081f14 100644 (file)
@@ -39,12 +39,12 @@ public:
                , frame (0)
        {}
 
-       ContentAudio (boost::shared_ptr<AudioBuffers> a, Frame f)
+       ContentAudio (boost::shared_ptr<const AudioBuffers> a, Frame f)
                : audio (a)
                , frame (f)
        {}
 
-       boost::shared_ptr<AudioBuffers> audio;
+       boost::shared_ptr<const AudioBuffers> audio;
        Frame frame;
 };