Basic grunt-work, untested and unfinished, but it compiles.
[dcpomatic.git] / src / lib / ffmpeg_decoder.h
index 76755c1fcc2d6e1a3c75b202d5b2d5dc6c266d1e..82472c1648a7e1739fe2f6ff32f9e03d79ef17c2 100644 (file)
@@ -46,11 +46,12 @@ class FFmpegDecoder : public FFmpeg, public Decoder
 public:
        FFmpegDecoder (boost::shared_ptr<const FFmpegContent>, boost::shared_ptr<Log>);
 
+       void pass ();
+       void seek (ContentTime time, bool);
+
 private:
        friend struct ::ffmpeg_pts_offset_test;
 
-       bool pass (PassReason, bool accurate);
-       void seek (ContentTime time, bool);
        void flush ();
 
        AVSampleFormat audio_sample_format (boost::shared_ptr<FFmpegAudioStream> stream) const;
@@ -66,9 +67,6 @@ private:
        void maybe_add_subtitle ();
        boost::shared_ptr<AudioBuffers> deinterleave_audio (boost::shared_ptr<FFmpegAudioStream> stream) const;
 
-       std::list<ContentTimePeriod> image_subtitles_during (ContentTimePeriod, bool starting) const;
-       std::list<ContentTimePeriod> text_subtitles_during (ContentTimePeriod, bool starting) const;
-
        boost::shared_ptr<Log> _log;
 
        std::list<boost::shared_ptr<VideoFilterGraph> > _filter_graphs;