Call Resampler::flush() again.
[dcpomatic.git] / src / lib / ffmpeg_decoder.h
index 8819954db0ef06c02c810b8647b6ea6719607c36..11f83ed97c9808aeaff603f110814463b51234a6 100644 (file)
@@ -39,6 +39,7 @@ extern "C" {
 #include "ffmpeg.h"
 
 class Film;
+class FilterGraph;
 class ffmpeg_pts_offset_test;
 
 /** @class FFmpegDecoder
@@ -57,12 +58,10 @@ public:
 private:
        friend class ::ffmpeg_pts_offset_test;
 
-       /* No copy construction */
-       FFmpegDecoder (FFmpegDecoder const &);
-       FFmpegDecoder& operator= (FFmpegDecoder const &);
-
        static double compute_pts_offset (double, double, float);
 
+       void flush ();
+
        void setup_subtitle ();
 
        AVSampleFormat audio_sample_format () const;
@@ -76,7 +75,7 @@ private:
        boost::shared_ptr<AudioBuffers> deinterleave_audio (uint8_t** data, int size);
 
        AVCodecContext* _subtitle_codec_context; ///< may be 0 if there is no subtitle
-       AVCodec* _subtitle_codec;                ///< may be 0 if there is no subtitle
+       AVCodec* _subtitle_codec;                ///< may be 0 if there is no subtitle
        
        std::list<boost::shared_ptr<FilterGraph> > _filter_graphs;
        boost::mutex _filter_graphs_mutex;
@@ -84,6 +83,7 @@ private:
        bool _decode_video;
        bool _decode_audio;
 
-       double _pts_offset;
+       double _video_pts_offset;
+       double _audio_pts_offset;
        bool _just_sought;
 };