X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffilter_graph.h;h=9ee628d4cd097fa9b2bae97e08ac793986be4261;hb=c269ebfdae53a2f5c5e9acc6f6588ebb47eeac9d;hp=d5a2da7a29be925cbbb6e572544a8390dd2c57ba;hpb=f3e52bd763513190de60e7f6b68c50b34ab80fee;p=dcpomatic.git diff --git a/src/lib/filter_graph.h b/src/lib/filter_graph.h index d5a2da7a2..9ee628d4c 100644 --- a/src/lib/filter_graph.h +++ b/src/lib/filter_graph.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,13 +18,16 @@ */ + /** @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" #include "warnings.h" DCPOMATIC_DISABLE_WARNINGS @@ -33,18 +36,20 @@ extern "C" { } DCPOMATIC_ENABLE_WARNINGS + struct AVFilterContext; struct AVFrame; class Image; class Filter; + /** @class FilterGraph * @brief A graph of FFmpeg filters. */ class FilterGraph { public: - FilterGraph (); + FilterGraph() = default; virtual ~FilterGraph (); FilterGraph (FilterGraph const&) = delete; @@ -59,12 +64,13 @@ protected: virtual void set_parameters (AVFilterContext* context) const = 0; virtual std::string sink_name () const = 0; - AVFilterGraph* _graph; + AVFilterGraph* _graph = nullptr; /** true if this graph has no filters in, so it just copies stuff straight through */ - bool _copy; - AVFilterContext* _buffer_src_context; - AVFilterContext* _buffer_sink_context; - AVFrame* _frame; + bool _copy = false; + AVFilterContext* _buffer_src_context = nullptr; + AVFilterContext* _buffer_sink_context = nullptr; + AVFrame* _frame = nullptr; }; + #endif