X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=28d8e4baa637c5b88208b93f056eaaef36733912;hb=ee1ff372a27202a0244f48a04c955dbb48644573;hp=2859e23450380f7f9435a31f676cf5aa2ca1c58f;hpb=05654d0e1799746a9df3ccab040c92e0ed825cac;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index 2859e2345..28d8e4baa 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -21,25 +21,22 @@ * @brief A decoder using FFmpeg to decode content. */ -#include -#include -#include -#include -#include -#include -extern "C" { -#include -} #include "util.h" -#include "decoder.h" #include "video_decoder.h" #include "audio_decoder.h" #include "subtitle_decoder.h" #include "ffmpeg.h" +extern "C" { +#include +} +#include +#include +#include class Log; class FilterGraph; -class ffmpeg_pts_offset_test; +class FFmpegAudioStream; +struct ffmpeg_pts_offset_test; /** @class FFmpegDecoder * @brief A decoder using FFmpeg to decode content. @@ -50,31 +47,29 @@ public: FFmpegDecoder (boost::shared_ptr, boost::shared_ptr); private: - friend class ::ffmpeg_pts_offset_test; + friend struct ::ffmpeg_pts_offset_test; - void seek (ContentTime time, bool); bool pass (); + void seek (ContentTime time, bool); void flush (); - AVSampleFormat audio_sample_format () const; - int bytes_per_audio_sample () const; + AVSampleFormat audio_sample_format (boost::shared_ptr stream) const; + int bytes_per_audio_sample (boost::shared_ptr stream) const; bool decode_video_packet (); void decode_audio_packet (); void decode_subtitle_packet (); + void decode_bitmap_subtitle (AVSubtitleRect const * rect, ContentTimePeriod period); + void maybe_add_subtitle (); - boost::shared_ptr deinterleave_audio (uint8_t** data, int size); + boost::shared_ptr deinterleave_audio (boost::shared_ptr stream, uint8_t** data, int size); - 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 (ContentTime); + std::list image_subtitles_during (ContentTimePeriod, bool starting) const; + std::list text_subtitles_during (ContentTimePeriod, bool starting) const; - bool has_subtitle_during (ContentTimePeriod) const; - boost::shared_ptr _log; - + std::list > _filter_graphs; boost::mutex _filter_graphs_mutex;