]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
#418 Removed incorrectly implemented unused functions.
[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 class filter : boost::noncopyable
55 {
56 public:
57         filter(
58                 int in_width,
59                 int in_height,
60                 boost::rational<int> in_time_base,
61                 boost::rational<int> in_frame_rate,
62                 boost::rational<int> in_sample_aspect_ratio,
63                 AVPixelFormat in_pix_fmt,
64                 std::vector<AVPixelFormat> out_pix_fmts,
65                 const std::string& filtergraph);
66         filter(filter&& other);
67         filter& operator=(filter&& other);
68
69         void push(const std::shared_ptr<AVFrame>& frame);
70         std::shared_ptr<AVFrame> poll();
71         std::vector<spl::shared_ptr<AVFrame>> poll_all();
72
73         std::wstring filter_str() const;
74                         
75         static bool is_double_rate(const std::wstring& filters)
76         {
77                 if(boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)
78                         return true;
79         
80                 if(boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)
81                         return true;
82
83                 return false;
84         }
85
86         static bool is_deinterlacing(const std::wstring& filters)
87         {
88                 if(boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)
89                         return true;    
90                 return false;
91         }       
92
93         bool is_double_rate() const
94         {
95                 return is_double_rate(filter_str());
96         }
97         
98         bool is_deinterlacing() const
99         {
100                 return is_deinterlacing(filter_str());
101         }
102 private:
103         struct implementation;
104         spl::shared_ptr<implementation> impl_;
105 };
106
107 }}