]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
[ffmpeg] Ported 2.0.7 ffmpeg producer to 2.1.0 while still keeping the usage of the...
[casparcg] / modules / ffmpeg / producer / filter / filter.h
1 /*
2 * Copyright 2013 Sveriges Television AB http://casparcg.com/
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include <common/memory.h>
25
26 #include <boost/rational.hpp>
27 #include <boost/noncopyable.hpp>
28 #include <boost/algorithm/string/case_conv.hpp>
29
30 #include <string>
31 #include <vector>
32
33 #if defined(_MSC_VER)
34 #pragma warning (push)
35 #pragma warning (disable : 4244)
36 #endif
37 extern "C"
38 {
39 #include <libavutil/pixfmt.h>
40 }
41 #if defined(_MSC_VER)
42 #pragma warning (pop)
43 #endif
44
45 struct AVFrame;
46
47 namespace caspar { namespace ffmpeg {
48
49 static std::wstring append_filter(const std::wstring& filters, const std::wstring& filter)
50 {
51         return filters + (filters.empty() ? L"" : L",") + filter;
52 }
53
54 static std::wstring prepend_filter(const std::wstring& filters, const std::wstring& filter)
55 {
56         return filter + (filters.empty() ? L"" : L",") + filters;
57 }
58
59 class filter : boost::noncopyable
60 {
61 public:
62         filter(
63                 int in_width,
64                 int in_height,
65                 boost::rational<int> in_time_base,
66                 boost::rational<int> in_frame_rate,
67                 boost::rational<int> in_sample_aspect_ratio,
68                 AVPixelFormat in_pix_fmt,
69                 std::vector<AVPixelFormat> out_pix_fmts,
70                 const std::string& filtergraph,
71                 bool multithreaded = true);
72         filter(filter&& other);
73         filter& operator=(filter&& other);
74
75         void push(const std::shared_ptr<AVFrame>& frame);
76         std::shared_ptr<AVFrame> poll();
77         std::vector<spl::shared_ptr<AVFrame>> poll_all();
78
79         std::wstring filter_str() const;
80                         
81         static bool is_double_rate(const std::wstring& filters)
82         {
83                 if (boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)
84                         return true;
85
86                 if (boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)
87                         return true;
88
89                 if (boost::to_upper_copy(filters).find(L"SEPARATEFIELDS") != std::string::npos)
90                         return true;
91
92                 return false;
93         }
94
95         static bool is_deinterlacing(const std::wstring& filters)
96         {
97                 if (boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)
98                         return true;
99
100                 if (boost::to_upper_copy(filters).find(L"SEPARATEFIELDS") != std::string::npos)
101                         return true;
102
103                 return false;
104         }       
105
106         bool is_double_rate() const
107         {
108                 return is_double_rate(filter_str());
109         }
110         
111         bool is_deinterlacing() const
112         {
113                 return is_deinterlacing(filter_str());
114         }
115 private:
116         struct implementation;
117         spl::shared_ptr<implementation> impl_;
118 };
119
120 }}