]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/filter/filter.h
2.0.2: auto-deinterlace when using MIXER fill scaling and/or translation.
[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/safe_ptr.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 bool is_double_rate(const std::wstring& filters)\r
38 {\r
39         if(boost::to_upper_copy(filters).find(L"YADIF=1") != std::string::npos)\r
40                 return true;\r
41         \r
42         if(boost::to_upper_copy(filters).find(L"YADIF=3") != std::string::npos)\r
43                 return true;\r
44 \r
45         return false;\r
46 }\r
47 \r
48 static bool is_deinterlacing(const std::wstring& filters)\r
49 {\r
50         if(boost::to_upper_copy(filters).find(L"YADIF") != std::string::npos)\r
51                 return true;    \r
52         return false;\r
53 }       \r
54         \r
55 static int filter_delay(const std::wstring& filters)\r
56 {\r
57         if(is_double_rate(filters))\r
58                 return 1;\r
59         \r
60         return 0;\r
61 }\r
62 \r
63 static std::wstring append_filter(const std::wstring& filters, const std::wstring& filter)\r
64 {\r
65         return filters + (filters.empty() ? L"" : L",") + filter;\r
66 }\r
67 \r
68 class filter : boost::noncopyable\r
69 {\r
70 public:\r
71         filter(const std::wstring& filters = L"", const std::vector<PixelFormat>& pix_fmts = std::vector<PixelFormat>());\r
72         filter(filter&& other);\r
73         filter& operator=(filter&& other);\r
74 \r
75         void push(const std::shared_ptr<AVFrame>& frame);\r
76         std::shared_ptr<AVFrame> poll();\r
77         std::vector<safe_ptr<AVFrame>> poll_all();\r
78 \r
79         std::wstring filter_str() const;\r
80         \r
81 private:\r
82         struct implementation;\r
83         safe_ptr<implementation> impl_;\r
84 };\r
85 \r
86 }}