]> git.sesse.net Git - casparcg/blob - modules/bluefish/util/blue_velvet.h
2.0.2: Is now locked, only bug fixes should be added. New features go into 2.1.0.
[casparcg] / modules / bluefish / util / blue_velvet.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@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: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include <Windows.h>\r
25 \r
26 #include <BlueVelvet4.h>\r
27 #include <BlueHancUtils.h>\r
28 \r
29 #include <common/memory/safe_ptr.h>\r
30 #include <common/exception/exceptions.h>\r
31 \r
32 namespace caspar { \r
33 \r
34 namespace core {\r
35 \r
36 struct video_format_desc;\r
37 \r
38 }\r
39 \r
40 namespace bluefish {\r
41 \r
42 extern const char* (*BlueVelvetVersion)();\r
43 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
44 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
45 \r
46 void blue_initialize();\r
47 \r
48 safe_ptr<CBlueVelvet4> create_blue();\r
49 safe_ptr<CBlueVelvet4> create_blue(size_t device_index);\r
50 bool is_epoch_card(CBlueVelvet4& blue);\r
51 std::wstring get_card_desc(CBlueVelvet4& blue);\r
52 EVideoMode get_video_mode(CBlueVelvet4& blue, const core::video_format_desc& format_desc);\r
53 \r
54 template<typename T>\r
55 int set_card_property(T& pSdk, ULONG prop, ULONG value)\r
56 {\r
57         VARIANT variantValue;\r
58         variantValue.vt  = VT_UI4;\r
59         variantValue.ulVal = value;\r
60         return (pSdk->SetCardProperty(prop,variantValue));\r
61 }\r
62 \r
63 }}