]> git.sesse.net Git - casparcg/blob - core/thumbnail_generator.h
Spelling and punctuation.
[casparcg] / core / thumbnail_generator.h
1 /*\r
2 * Copyright 2013 Sveriges Television AB http://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: Helge Norberg, helge.norberg@svt.se\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include <boost/noncopyable.hpp>\r
25 \r
26 #include <common/memory/safe_ptr.h>\r
27 #include <common/filesystem/filesystem_monitor.h>\r
28 \r
29 namespace caspar { namespace core {\r
30 \r
31 class ogl_device;\r
32 class read_frame;\r
33 struct video_format_desc;\r
34 \r
35 typedef std::function<void (\r
36                 const safe_ptr<read_frame>& frame,\r
37                 const video_format_desc& format_desc,\r
38                 const boost::filesystem::wpath& output_file,\r
39                 int width,\r
40                 int height)> thumbnail_creator;\r
41 \r
42 class thumbnail_generator : boost::noncopyable\r
43 {\r
44 public:\r
45         thumbnail_generator(\r
46                         filesystem_monitor_factory& monitor_factory,\r
47                         const boost::filesystem::wpath& media_path,\r
48                         const boost::filesystem::wpath& thumbnails_path,\r
49                         int width,\r
50                         int height,\r
51                         const video_format_desc& render_video_mode,\r
52                         const safe_ptr<ogl_device>& ogl,\r
53                         int generate_delay_millis,\r
54                         const thumbnail_creator& thumbnail_creator);\r
55         ~thumbnail_generator();\r
56         void generate(const std::wstring& media_file);\r
57         void generate_all();\r
58 private:\r
59         struct implementation;\r
60         safe_ptr<implementation> impl_;\r
61 };\r
62 \r
63 }}\r