X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=fbf802bb01004cf9c7d3f27f12e65a0f962af888;hb=1f8b45c7fd49714628009f5ed2161fbaa2b4d729;hp=ee725b20c9c46cb066d9e98bbfd6d7331bee45c9;hpb=4e5d5c7dcc6470b8dc918d03a00e30c07df60efe;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index ee725b20c..fbf802bb0 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -38,7 +38,7 @@ extern "C" { #include "subtitle_decoder.h" #include "ffmpeg.h" -class Film; +class Log; class FilterGraph; class ffmpeg_pts_offset_test; @@ -48,7 +48,7 @@ class ffmpeg_pts_offset_test; class FFmpegDecoder : public VideoDecoder, public AudioDecoder, public SubtitleDecoder, public FFmpeg { public: - FFmpegDecoder (boost::shared_ptr, boost::shared_ptr, bool video, bool audio); + FFmpegDecoder (boost::shared_ptr, boost::shared_ptr, bool video, bool audio, bool subtitles); ~FFmpegDecoder (); void seek (ContentTime time, bool); @@ -74,8 +74,9 @@ private: 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 (int64_t); + void seek_and_flush (ContentTime); + boost::shared_ptr _log; AVCodecContext* _subtitle_codec_context; ///< may be 0 if there is no subtitle AVCodec* _subtitle_codec; ///< may be 0 if there is no subtitle @@ -84,6 +85,7 @@ private: bool _decode_video; bool _decode_audio; + bool _decode_subtitles; - double _pts_offset; + ContentTime _pts_offset; };