]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
set svn:eol-style native on .h and .cpp files
[casparcg] / modules / ffmpeg / producer / filter / filter.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@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/noncopyable.hpp>
27 #include <boost/algorithm/string/case_conv.hpp>
28
29 #include <string>
30 #include <vector>
31
32 struct AVFrame;
33 enum PixelFormat;
34
35 namespace caspar { namespace ffmpeg {
36
37 static std::wstring append_filter(const std::wstring& filters, const std::wstring& filter)
38 {
39         return filters + (filters.empty() ? L"" : L",") + filter;
40 }
41
42 class filter : boost::noncopyable
43 {
44 public:
45         filter(const std::wstring& filters = L"", const std::vector<PixelFormat>& pix_fmts = std::vector<PixelFormat>());
46         filter(filter&& other);
47         filter& operator=(filter&& other);
48
49         void push(const std::shared_ptr<AVFrame>& frame);
50         std::shared_ptr<AVFrame> poll();
51         std::vector<spl::shared_ptr<AVFrame>> poll_all();
52
53         std::wstring filter_str() const;
54                         
55         static bool is_double_rate(const std::wstring& filters)
56         {
57                 if(boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)
58                         return true;
59         
60                 if(boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)
61                         return true;
62
63                 return false;
64         }
65
66         static bool is_deinterlacing(const std::wstring& filters)
67         {
68                 if(boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)
69                         return true;    
70                 return false;
71         }       
72         
73         static int delay(const std::wstring& filters)
74         {
75                 return is_double_rate(filters) ? 1 : 0;
76         }
77
78         int delay() const
79         {
80                 return delay(filter_str());
81         }
82
83         bool is_double_rate() const
84         {
85                 return is_double_rate(filter_str());
86         }
87         
88         bool is_deinterlacing() const
89         {
90                 return is_deinterlacing(filter_str());
91         }
92 private:
93         struct impl;
94         spl::shared_ptr<impl> impl_;
95 };
96
97 }}