]> git.sesse.net Git - casparcg/blob - core/thumbnail_generator.h
Update README.txt
[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 struct media_info_repository;\r
35 \r
36 typedef std::function<void (\r
37                 const safe_ptr<read_frame>& frame,\r
38                 const video_format_desc& format_desc,\r
39                 const boost::filesystem::wpath& output_file,\r
40                 int width,\r
41                 int height)> thumbnail_creator;\r
42 \r
43 class thumbnail_generator : boost::noncopyable\r
44 {\r
45 public:\r
46         thumbnail_generator(\r
47                         filesystem_monitor_factory& monitor_factory,\r
48                         const boost::filesystem::wpath& media_path,\r
49                         const boost::filesystem::wpath& thumbnails_path,\r
50                         int width,\r
51                         int height,\r
52                         const video_format_desc& render_video_mode,\r
53                         const safe_ptr<ogl_device>& ogl,\r
54                         int generate_delay_millis,\r
55                         const thumbnail_creator& thumbnail_creator,\r
56                         safe_ptr<media_info_repository> media_info_repo);\r
57         ~thumbnail_generator();\r
58         void generate(const std::wstring& media_file);\r
59         void generate_all();\r
60 private:\r
61         struct implementation;\r
62         safe_ptr<implementation> impl_;\r
63 };\r
64 \r
65 }}\r