X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fffmpeg_file_encoder.h;h=d644a1939bb8a039423df2ddbcd67cae0f8aef11;hp=d763c7eaf7c05a02fd0cc58b4b5598e7a4bf8785;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hpb=4d11fe7cea71b0564df9a21a3cc706509d12b0d1 diff --git a/src/lib/ffmpeg_file_encoder.h b/src/lib/ffmpeg_file_encoder.h index d763c7eaf..d644a1939 100644 --- a/src/lib/ffmpeg_file_encoder.h +++ b/src/lib/ffmpeg_file_encoder.h @@ -31,6 +31,10 @@ extern "C" { #include } + +class ExportAudioStream; + + class FFmpegFileEncoder { public: @@ -40,16 +44,15 @@ public: int audio_frame_rate, int channels, ExportFormat, + bool audio_stream_per_channel, int x264_crf, boost::filesystem::path output -#ifdef DCPOMATIC_VARIANT_SWAROOP - , boost::optional key - , boost::optional id -#endif ); - void video (boost::shared_ptr, dcpomatic::DCPTime); - void audio (boost::shared_ptr); + ~FFmpegFileEncoder (); + + void video (std::shared_ptr, dcpomatic::DCPTime); + void audio (std::shared_ptr); void subtitle (PlayerText, dcpomatic::DCPTimePeriod); void flush (); @@ -67,11 +70,10 @@ private: AVCodec* _video_codec; AVCodecContext* _video_codec_context; - AVCodec* _audio_codec; - AVCodecContext* _audio_codec_context; + std::vector > _audio_streams; + bool _audio_stream_per_channel; AVFormatContext* _format_context; AVStream* _video_stream; - AVStream* _audio_stream; AVPixelFormat _pixel_format; AVSampleFormat _sample_format; AVDictionary* _video_options; @@ -84,15 +86,18 @@ private: int _video_frame_rate; int _audio_frame_rate; - boost::shared_ptr _pending_audio; + int64_t _audio_frames; + + std::shared_ptr _pending_audio; /** Store of shared_ptr to keep them alive whilst raw pointers into their data have been passed to FFmpeg. */ - std::map > _pending_images; + std::map > _pending_images; + boost::mutex _pending_images_mutex; static int _video_stream_index; - static int _audio_stream_index; + static int _audio_stream_index_base; }; #endif