X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffilter.h;h=b132398d0093ac26282773770de1397d171ebfa9;hb=b048889b399367bf0fc8b905c7c0cf436d629f57;hp=5971cd5cf86e3ebb8da4ee1d8914300b64253e9d;hpb=373f010a7f04add1f49169cbaa60cb7ae5f508d4;p=dcpomatic.git diff --git a/src/lib/filter.h b/src/lib/filter.h index 5971cd5cf..b132398d0 100644 --- a/src/lib/filter.h +++ b/src/lib/filter.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,23 +18,27 @@ */ /** @file src/filter.h - * @brief A class to describe one of FFmpeg's video or post-processing filters. + * @brief A class to describe one of FFmpeg's video or audio filters. */ #ifndef DCPOMATIC_FILTER_H #define DCPOMATIC_FILTER_H +#include #include #include -#include /** @class Filter - * @brief A class to describe one of FFmpeg's video or post-processing filters. + * @brief A class to describe one of FFmpeg's video or audio filters. + * + * We don't support FFmpeg's post-processing filters here as they cannot cope with greater than + * 8bpp. FFmpeg quantizes e.g. yuv422p10le down to yuv422p before running such filters, which + * we don't really want to do. */ class Filter : public boost::noncopyable { public: - Filter (std::string, std::string, std::string, std::string, std::string); + Filter (std::string, std::string, std::string, std::string); /** @return our id */ std::string id () const { @@ -46,24 +50,19 @@ public: return _name; } - /** @return string for a FFmpeg video filter descriptor */ - std::string vf () const { - return _vf; - } - - /** @return string for a FFmpeg post-processing descriptor */ - std::string pp () const { - return _pp; + /** @return string for a FFmpeg filter descriptor */ + std::string ffmpeg () const { + return _ffmpeg; } std::string category () const { return _category; } - + static std::vector all (); static Filter const * from_id (std::string); static void setup_filters (); - static std::pair ffmpeg_strings (std::vector const &); + static std::string ffmpeg_string (std::vector const &); private: @@ -72,14 +71,12 @@ private: /** user-visible name */ std::string _name; std::string _category; - /** string for a FFmpeg video filter descriptor */ - std::string _vf; - /** string for a FFmpeg post-processing descriptor */ - std::string _pp; + /** string for a FFmpeg filter descriptor */ + std::string _ffmpeg; /** all available filters */ static std::vector _filters; - static void maybe_add (std::string, std::string, std::string, std::string, std::string); + static void maybe_add (std::string, std::string, std::string, std::string); }; #endif