From cab9a1d569396065a6e9eb39386736908564d6b4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 7 Mar 2014 20:13:22 +0000 Subject: Add primitive subtitle view. Remove unused Film member from Decoder hierarchy. --- src/lib/ffmpeg_decoder.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/ffmpeg_decoder.h') diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index 8eadb116f..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); @@ -76,6 +76,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 +85,7 @@ private: bool _decode_video; bool _decode_audio; + bool _decode_subtitles; ContentTime _pts_offset; }; -- cgit v1.2.3