X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=15fe5d9a48966cbb42d6ec66e9a676f46646757a;hb=e6f28e7cda23c1ba3c49cc1bf2dc1491c2f87160;hp=ae9eb5084104a7fcaf75557511184b213b21d6f6;hpb=79ce26d031d109177ba4b0f637fa2960345a37a3;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index ae9eb5084..15fe5d9a4 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -29,7 +29,6 @@ #include extern "C" { #include -#include } #include "util.h" #include "decoder.h" @@ -38,7 +37,7 @@ extern "C" { #include "subtitle_decoder.h" #include "ffmpeg.h" -class Film; +class Log; class FilterGraph; class ffmpeg_pts_offset_test; @@ -48,7 +47,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); @@ -76,6 +75,7 @@ private: int minimal_run (boost::function, boost::optional, int)>); 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 +84,7 @@ private: bool _decode_video; bool _decode_audio; + bool _decode_subtitles; - double _pts_offset; + ContentTime _pts_offset; };