X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=b553cc42ea2cc15627f99f5ee9cd35cdfffb6f39;hb=8d58a7c5f4320ad5c111e336c45e44d6b51ab509;hp=e50b248cff35992ad3da52c37e6b9fb97ecf12d5;hpb=a5b59faff75265d3256ad0dbd9f0c69e51e31ce4;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index e50b248cf..b553cc42e 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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,19 +47,15 @@ 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 (); - - void seek (ContentTime time, bool); + FFmpegDecoder (boost::shared_ptr, boost::shared_ptr); private: friend class ::ffmpeg_pts_offset_test; + void seek (ContentTime time, bool); bool pass (); void flush (); - void setup_subtitle (); - AVSampleFormat audio_sample_format () const; int bytes_per_audio_sample () const; @@ -71,20 +66,12 @@ private: void maybe_add_subtitle (); boost::shared_ptr deinterleave_audio (uint8_t** data, int size); - bool seek_overrun_finished (ContentTime, ContentTime, ContentTime) const; - bool seek_final_finished (int, int) const; - int minimal_run (boost::function); - void seek_and_flush (int64_t); - - AVCodecContext* _subtitle_codec_context; ///< may be 0 if there is no subtitle - AVCodec* _subtitle_codec; ///< may be 0 if there is no subtitle + std::list subtitles_during (ContentTimePeriod, bool starting) const; + + boost::shared_ptr _log; std::list > _filter_graphs; boost::mutex _filter_graphs_mutex; - bool _decode_video; - bool _decode_audio; - - double _video_pts_offset; - double _audio_pts_offset; + ContentTime _pts_offset; };