]> git.sesse.net Git - casparcg/blob - modules/bluefish/util/blue_velvet.h
2.0. Updated namespaces.
[casparcg] / modules / bluefish / util / blue_velvet.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 #pragma once\r
21 \r
22 #include <Windows.h>\r
23 \r
24 #include <BlueVelvet4.h>\r
25 #include <BlueHancUtils.h>\r
26 \r
27 #include <common/memory/safe_ptr.h>\r
28 #include <common/exception/exceptions.h>\r
29 \r
30 namespace caspar { \r
31 \r
32 namespace core {\r
33 \r
34 struct video_format_desc;\r
35 \r
36 }\r
37 \r
38 namespace bluefish {\r
39 \r
40 extern const char* (*BlueVelvetVersion)();\r
41 extern BLUE_UINT32 (*encode_hanc_frame)(struct hanc_stream_info_struct * hanc_stream_ptr, void * audio_pcm_ptr,BLUE_UINT32 no_audio_ch,BLUE_UINT32 no_audio_samples,BLUE_UINT32 nTypeOfSample,BLUE_UINT32 emb_audio_flag);\r
42 extern BLUE_UINT32 (*encode_hanc_frame_ex)(BLUE_UINT32 card_type, struct hanc_stream_info_struct * hanc_stream_ptr, void * audio_pcm_ptr, BLUE_UINT32 no_audio_ch,      BLUE_UINT32 no_audio_samples, BLUE_UINT32 nTypeOfSample, BLUE_UINT32 emb_audio_flag);\r
43 \r
44 void blue_initialize();\r
45 \r
46 safe_ptr<CBlueVelvet4> create_blue();\r
47 safe_ptr<CBlueVelvet4> create_blue(size_t device_index);\r
48 bool is_epoch_card(CBlueVelvet4& blue);\r
49 std::wstring get_card_desc(CBlueVelvet4& blue);\r
50 EVideoMode get_video_mode(CBlueVelvet4& blue, const core::video_format_desc& format_desc);\r
51 \r
52 template<typename T>\r
53 int set_card_property(T& pSdk, ULONG prop, ULONG value)\r
54 {\r
55         VARIANT variantValue;\r
56         variantValue.vt  = VT_UI4;\r
57         variantValue.ulVal = value;\r
58         return (pSdk->SetCardProperty(prop,variantValue));\r
59 }\r
60 \r
61 }}