X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_decoder.h;h=5475be6122da98b51c4bb8414a837af46d0be087;hb=c658aec3ffd5009cbe7fa2540da5a0579e2f2e8c;hp=9f85c2dca8e5e2d9fc66045cd694dab07c12fb90;hpb=22b9f3b2090d8bdfe52cda1e69d3acbe874f1ce5;p=dcpomatic.git diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index 9f85c2dca..5475be612 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. @@ -47,29 +44,32 @@ class ffmpeg_pts_offset_test; class FFmpegDecoder : public VideoDecoder, public AudioDecoder, public SubtitleDecoder, public FFmpeg { public: - FFmpegDecoder (boost::shared_ptr, boost::shared_ptr); + FFmpegDecoder (boost::shared_ptr, boost::shared_ptr, bool fast); private: 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); + + std::list image_subtitles_during (ContentTimePeriod, bool starting) const; + std::list text_subtitles_during (ContentTimePeriod, bool starting) const; - std::list subtitles_during (ContentTimePeriod, bool starting) const; - boost::shared_ptr _log; - + std::list > _filter_graphs; boost::mutex _filter_graphs_mutex;