Port filter graphs to new FFmpeg API.
[dcpomatic.git] / src / lib / video_filter_graph.h
index fb6c7eba1162ef6b597d287843a6af880e596526..d887e551bda8e586b5bcedd67137048b0ca6a019 100644 (file)
@@ -31,10 +31,10 @@ public:
        std::list<std::pair<std::shared_ptr<Image>, int64_t>> process (AVFrame * frame);
 
 protected:
-       std::string src_parameters () const;
-       std::string src_name () const;
-       void* sink_parameters () const;
-       std::string sink_name () const;
+       std::string src_parameters () const override;
+       std::string src_name () const override;
+       void set_parameters (AVFilterContext* context) const override;
+       std::string sink_name () const override;
 
 private:
        dcp::Size _size; ///< size of the images that this chain can process