]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
e8d62314168eb0eb2a814430cd6b68fab24770a2
[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         filter(filter&& other);
72         filter& operator=(filter&& other);
73
74         void push(const std::shared_ptr<AVFrame>& frame);
75         std::shared_ptr<AVFrame> poll();
76         std::vector<spl::shared_ptr<AVFrame>> poll_all();
77
78         std::wstring filter_str() const;
79                         
80         static bool is_double_rate(const std::wstring& filters)
81         {
82                 if(boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)
83                         return true;
84         
85                 if(boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)
86                         return true;
87
88                 return false;
89         }
90
91         static bool is_deinterlacing(const std::wstring& filters)
92         {
93                 if(boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)
94                         return true;    
95                 return false;
96         }       
97
98         bool is_double_rate() const
99         {
100                 return is_double_rate(filter_str());
101         }
102         
103         bool is_deinterlacing() const
104         {
105                 return is_deinterlacing(filter_str());
106         }
107 private:
108         struct implementation;
109         spl::shared_ptr<implementation> impl_;
110 };
111
112 }}