X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=9f85c2dca8e5e2d9fc66045cd694dab07c12fb90;hb=c39979ef676b49e97129c5f29c2e2c700fdc1d3a;hp=fa318e56828eb9140555c6c6ea72a48b7eab0c57;hpb=bfc0b96db6cc6c2e94d93f9c4239adca14a6bb0c;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index fa318e568..9f85c2dca 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,8 @@ extern "C" { #include "subtitle_decoder.h" #include "ffmpeg.h" -class Film; +class Log; +class FilterGraph; class ffmpeg_pts_offset_test; /** @class FFmpegDecoder @@ -47,19 +47,14 @@ 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 pass (); - void seek (VideoContent::Frame, bool); - bool done () const; + FFmpegDecoder (boost::shared_ptr, boost::shared_ptr); private: - friend class ::ffmpeg_pts_offset_test; - - static double compute_pts_offset (double, double, float); + friend struct ::ffmpeg_pts_offset_test; - void setup_subtitle (); + void seek (ContentTime time, bool); + bool pass (); + void flush (); AVSampleFormat audio_sample_format () const; int bytes_per_audio_sample () const; @@ -71,16 +66,12 @@ private: void maybe_add_subtitle (); boost::shared_ptr deinterleave_audio (uint8_t** data, int size); - 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; - bool _just_sought; + ContentTime _pts_offset; };