]> git.sesse.net Git - casparcg/blob - modules/bluefish/util/blue_velvet.h
[scene] More documentation with auto completion for example values/expressions.
[casparcg] / modules / bluefish / util / blue_velvet.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include <Windows.h>
25
26 #include <BlueVelvet4.h>
27 #include <BlueHancUtils.h>
28
29 #include <common/memory.h>
30 #include <common/except.h>
31
32 #include <core/fwd.h>
33
34 namespace caspar { namespace bluefish {
35
36 extern const char* (*BlueVelvetVersion)();
37 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);
38 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);
39
40 void blue_initialize();
41
42 spl::shared_ptr<CBlueVelvet4> create_blue();
43 spl::shared_ptr<CBlueVelvet4> create_blue(int device_index);
44 bool is_epoch_card(CBlueVelvet4& blue);
45 std::wstring get_card_desc(CBlueVelvet4& blue);
46 EVideoMode get_video_mode(CBlueVelvet4& blue, const core::video_format_desc& format_desc);
47
48 template<typename T>
49 int set_card_property(T& pSdk, ULONG prop, ULONG value)
50 {
51         VARIANT variantValue;
52         variantValue.vt  = VT_UI4;
53         variantValue.ulVal = value;
54         return (pSdk->SetCardProperty(prop,variantValue));
55 }
56
57 }}