X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffilter_graph.h;h=9b403c2bc65734cf03a9b8458180a0b8695a26fc;hb=9b240c6d5d4e2189401498a99f98f41d1b15ed31;hp=53908738ecd5bf9f3495b8d23b8d8ce690f34db2;hpb=94de1ee0027859adea18bee27a8d82b512ac650c;p=dcpomatic.git diff --git a/src/lib/filter_graph.h b/src/lib/filter_graph.h index 53908738e..9b403c2bc 100644 --- a/src/lib/filter_graph.h +++ b/src/lib/filter_graph.h @@ -17,28 +17,37 @@ */ -#ifndef DVDOMATIC_FILTER_GRAPH_H -#define DVDOMATIC_FILTER_GRAPH_H +/** @file src/lib/filter_graph.h + * @brief A graph of FFmpeg filters. + */ + +#ifndef DCPOMATIC_FILTER_GRAPH_H +#define DCPOMATIC_FILTER_GRAPH_H #include "util.h" -class Decoder; class Image; -class Film; +class VideoFilter; +class FFmpegContent; -class FilterGraph +/** @class FilterGraph + * @brief A graph of FFmpeg filters. + */ +class FilterGraph : public boost::noncopyable { public: - FilterGraph (boost::shared_ptr film, Decoder* decoder, bool crop, Size s, AVPixelFormat p); + FilterGraph (boost::shared_ptr content, libdcp::Size s, AVPixelFormat p); + ~FilterGraph (); - bool can_process (Size s, AVPixelFormat p) const; - std::list > process (AVFrame* frame); + bool can_process (libdcp::Size s, AVPixelFormat p) const; + std::list, int64_t> > process (AVFrame * frame); private: AVFilterContext* _buffer_src_context; AVFilterContext* _buffer_sink_context; - Size _size; - AVPixelFormat _pixel_format; + libdcp::Size _size; ///< size of the images that this chain can process + AVPixelFormat _pixel_format; ///< pixel format of the images that this chain can process + AVFrame* _frame; }; #endif