]> git.sesse.net Git - casparcg/blob - server/Channel.h
1.8.1:
[casparcg] / server / Channel.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 "VideoConsumer.h"\r
24 #include "MediaProducer.h"\r
25 #include "PlaybackControl.h"\r
26 #include "producers\composites\TransitionProducer.h"\r
27 #include "TransitionInfo.h"\r
28 #include "frame\clipinfo.h"\r
29 \r
30 #include "monitor.h"\r
31 \r
32 namespace caspar {\r
33 \r
34 class Channel\r
35 {\r
36 public:\r
37         explicit Channel(int index, VideoConsumerPtr pVideoConsumer);\r
38         ~Channel();\r
39 \r
40         bool Initialize();      //call from app in main-thread\r
41         void Destroy();         //call from app in main-thread\r
42 \r
43         const TCHAR* GetFormatDescription() const;\r
44         bool IsPlaybackRunning() const;\r
45 \r
46         int GetIndex() const {\r
47                 return index_;\r
48         }\r
49 \r
50         CG::ICGControl* GetCGControl();\r
51         Monitor& GetMonitor() {\r
52                 return monitor_;\r
53         }\r
54 \r
55         bool Load(MediaProducerPtr, bool loop=false);                   //call from misc IO threads\r
56         bool LoadBackground(MediaProducerPtr, const TransitionInfo& transitionInfo, bool loop=false);   //call from misc IO threads\r
57         bool Play();    //call from misc IO threads\r
58         bool Stop(bool block = false);  //call from misc IO threads\r
59         bool Param(const tstring& str); //call from misc IO threads\r
60         bool Clear();\r
61         bool SetVideoFormat(const tstring& strDesiredFrameFormat);\r
62 \r
63 \r
64 private:\r
65         Monitor monitor_;\r
66         int index_;\r
67         VideoConsumerPtr        pConsumer_;\r
68 };\r
69 typedef std::tr1::shared_ptr<Channel> ChannelPtr;\r
70 \r
71 }       //namespace caspar