X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg.h;h=25d26e8136ad5a5d5b7cb28ee4012e1a87a8e228;hb=f706bbb9afd10472e81a051cd5db601d6404377c;hp=5e1d0842ec771e6cccd803f4acf31442ae508006;hpb=7bc2134d658778e04f1756c255e604b4ab5a5831;p=dcpomatic.git diff --git a/src/lib/ffmpeg.h b/src/lib/ffmpeg.h index 5e1d0842e..25d26e813 100644 --- a/src/lib/ffmpeg.h +++ b/src/lib/ffmpeg.h @@ -25,17 +25,18 @@ #include "file_group.h" #include "ffmpeg_subtitle_period.h" -#include "warnings.h" -DCPOMATIC_DISABLE_WARNINGS +#include +LIBDCP_DISABLE_WARNINGS extern "C" { #include } -DCPOMATIC_ENABLE_WARNINGS +LIBDCP_ENABLE_WARNINGS #include struct AVFormatContext; struct AVFrame; +struct AVStream; struct AVIOContext; class FFmpegContent; @@ -63,7 +64,7 @@ protected: std::vector> audio_streams, boost::optional first_video, double video_frame_rate ) const; - static FFmpegSubtitlePeriod subtitle_period (AVSubtitle const & sub); + static FFmpegSubtitlePeriod subtitle_period (AVPacket const* packet, AVStream const* stream, AVSubtitle const & sub); std::shared_ptr _ffmpeg_content; @@ -73,11 +74,15 @@ protected: FileGroup _file_group; AVFormatContext* _format_context = nullptr; - AVFrame* _frame = nullptr; + std::vector _codec_context; + /** AVFrame used for decoding video */ + AVFrame* _video_frame = nullptr; /** Index of video stream within AVFormatContext */ boost::optional _video_stream; + AVFrame* audio_frame (std::shared_ptr stream); + /* It would appear (though not completely verified) that one must have a mutex around calls to avcodec_open* and avcodec_close... and here it is. @@ -90,6 +95,9 @@ private: static void ffmpeg_log_callback (void* ptr, int level, const char* fmt, va_list vl); static std::weak_ptr _ffmpeg_log; + + /** AVFrames used for decoding audio streams; accessed with audio_frame() */ + std::map, AVFrame*> _audio_frame; };