]> git.sesse.net Git - casparcg/blob - server/producers/composites/TransitionProducer.h
Fixed a problem related to character encoding that prevented the PK project from...
[casparcg] / server / producers / composites / TransitionProducer.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\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 */\r
20  \r
21 #pragma once\r
22 \r
23 #include "..\..\MediaProducer.h"\r
24 #include "..\..\frame\FrameManager.h"\r
25 #include "..\..\frame\FrameMediaController.h"\r
26 #include "..\..\frame\SystemFrameManager.h"\r
27 #include "..\..\utils\runnable.h"\r
28 #include "..\..\utils\Noncopyable.hpp"\r
29 \r
30 #include <vector>\r
31 \r
32 namespace caspar {\r
33 \r
34         class ClipInfo;\r
35         class TransitionInfo;\r
36 \r
37 namespace utils {\r
38         class PixmapData;\r
39         typedef std::tr1::shared_ptr<PixmapData> PixmapDataPtr;\r
40 }\r
41 \r
42 // TODO: Put into its own header? (R.N)\r
43 class ITransitionController\r
44 {\r
45 public:\r
46         virtual bool Start(const ClipInfo& srcClipInfo) = 0;\r
47 };\r
48 \r
49 class TransitionProducer : public MediaProducer, public FrameMediaController, public ITransitionController, public utils::IRunnable, private utils::Noncopyable\r
50 {\r
51 public:\r
52         TransitionProducer(MediaProducerPtr pDestination, const TransitionInfo& transitionInfo, const FrameFormatDescription& fmtDesc);\r
53         virtual ~TransitionProducer();\r
54 \r
55         //MediaProducer\r
56         virtual IMediaController* QueryController(const tstring& id);\r
57         virtual MediaProducerPtr GetFollowingProducer();\r
58 \r
59         //FrameMediaController\r
60         virtual bool Initialize(FrameManagerPtr pFrameManager);\r
61         virtual FrameBuffer& GetFrameBuffer();\r
62 \r
63         //ITransitionController\r
64         virtual bool Start(const ClipInfo& srcClipInfo);\r
65 \r
66         //IRunnable\r
67         virtual void Run(HANDLE stopEvent);\r
68         virtual bool OnUnhandledException(const std::exception& ex) throw();\r
69 \r
70 private:\r
71 \r
72         struct Implementation;\r
73         std::tr1::shared_ptr<Implementation> pImpl_;\r
74 };\r
75 typedef std::tr1::shared_ptr<TransitionProducer> TransitionProducerPtr;\r
76 \r
77 }       //namespace caspar