X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fffmpeg_decoder.h;h=ae9eb5084104a7fcaf75557511184b213b21d6f6;hb=79ce26d031d109177ba4b0f637fa2960345a37a3;hp=73edcccb43ec562162825f4e82b3331d9abceaa6;hpb=c719feb3cc4a5627827f8576a9b34756f701d59d;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index 73edcccb4..ae9eb5084 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -39,6 +39,7 @@ extern "C" { #include "ffmpeg.h" class Film; +class FilterGraph; class ffmpeg_pts_offset_test; /** @class FFmpegDecoder @@ -50,18 +51,13 @@ public: FFmpegDecoder (boost::shared_ptr, boost::shared_ptr, bool video, bool audio); ~FFmpegDecoder (); - void pass (); - void seek (VideoContent::Frame, bool); - bool done () const; + void seek (ContentTime time, bool); 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); + bool pass (); + void flush (); void setup_subtitle (); @@ -75,8 +71,13 @@ private: void maybe_add_subtitle (); boost::shared_ptr deinterleave_audio (uint8_t** data, int size); + bool seek_overrun_finished (ContentTime, boost::optional, boost::optional) const; + bool seek_final_finished (int, int) const; + int minimal_run (boost::function, boost::optional, int)>); + void seek_and_flush (ContentTime); + 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 > _filter_graphs; boost::mutex _filter_graphs_mutex; @@ -84,7 +85,5 @@ private: bool _decode_video; bool _decode_audio; - double _video_pts_offset; - double _audio_pts_offset; - bool _just_sought; + double _pts_offset; };