Fix font_id_map errors when importing DCP subtitles that have no
[dcpomatic.git] / src / lib / content_audio.h
index 509e7e4a6c92f326536637238db75bebb2081f14..89a908b6870ef06a46a6099873cd42c099d1d29f 100644 (file)
 class ContentAudio
 {
 public:
-       ContentAudio ()
-               : audio (new AudioBuffers (0, 0))
-               , frame (0)
-       {}
-
-       ContentAudio (boost::shared_ptr<const AudioBuffers> a, Frame f)
+       ContentAudio (std::shared_ptr<const AudioBuffers> a, Frame f)
                : audio (a)
                , frame (f)
        {}
 
-       boost::shared_ptr<const AudioBuffers> audio;
+       std::shared_ptr<const AudioBuffers> audio;
        Frame frame;
 };