]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / modules / ffmpeg / producer / filter / filter.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include <common/memory.h>\r
25 \r
26 #include <boost/noncopyable.hpp>\r
27 #include <boost/algorithm/string/case_conv.hpp>\r
28 \r
29 #include <string>\r
30 #include <vector>\r
31 \r
32 struct AVFrame;\r
33 enum PixelFormat;\r
34 \r
35 namespace caspar { namespace ffmpeg {\r
36 \r
37 static std::wstring append_filter(const std::wstring& filters, const std::wstring& filter)\r
38 {\r
39         return filters + (filters.empty() ? L"" : L",") + filter;\r
40 }\r
41 \r
42 class filter : boost::noncopyable\r
43 {\r
44 public:\r
45         filter(const std::wstring& filters = L"", const std::vector<PixelFormat>& pix_fmts = std::vector<PixelFormat>());\r
46         filter(filter&& other);\r
47         filter& operator=(filter&& other);\r
48 \r
49         void push(const std::shared_ptr<AVFrame>& frame);\r
50         std::shared_ptr<AVFrame> poll();\r
51         std::vector<spl::shared_ptr<AVFrame>> poll_all();\r
52 \r
53         std::wstring filter_str() const;\r
54                         \r
55         static bool is_double_rate(const std::wstring& filters)\r
56         {\r
57                 if(boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)\r
58                         return true;\r
59         \r
60                 if(boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)\r
61                         return true;\r
62 \r
63                 return false;\r
64         }\r
65 \r
66         static bool is_deinterlacing(const std::wstring& filters)\r
67         {\r
68                 if(boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)\r
69                         return true;    \r
70                 return false;\r
71         }       \r
72         \r
73         static int delay(const std::wstring& filters)\r
74         {\r
75                 return is_double_rate(filters) ? 1 : 0;\r
76         }\r
77 \r
78         int delay() const\r
79         {\r
80                 return delay(filter_str());\r
81         }\r
82 \r
83         bool is_double_rate() const\r
84         {\r
85                 return is_double_rate(filter_str());\r
86         }\r
87         \r
88         bool is_deinterlacing() const\r
89         {\r
90                 return is_deinterlacing(filter_str());\r
91         }\r
92 private:\r
93         struct impl;\r
94         spl::shared_ptr<impl> impl_;\r
95 };\r
96 \r
97 }}