2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
4 * This file is part of CasparCG (www.casparcg.com).
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.
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.
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/>.
19 * Author: Robert Nagy, ronag89@gmail.com
26 #include "consumer/bluefish_consumer.h"
28 #include "util/blue_velvet.h"
30 #include <common/log.h>
31 #include <common/utf.h>
33 #include <core/consumer/frame_consumer.h>
34 #include <core/system_info_provider.h>
36 #include <boost/lexical_cast.hpp>
37 #include <boost/property_tree/ptree.hpp>
39 namespace caspar { namespace bluefish {
41 std::wstring version()
52 if(!BlueVelvetVersion)
55 return u16(BlueVelvetVersion());
58 std::vector<std::wstring> device_list()
60 std::vector<std::wstring> devices;
66 auto blue = create_blue();
68 for(int n = 1; BLUE_PASS(blue->device_attach(n, FALSE)); ++n)
70 devices.push_back(std::wstring(get_card_desc(*blue)) + L" [" + boost::lexical_cast<std::wstring>(n) + L"]");
71 blue->device_detach();
79 void init(core::module_dependencies dependencies)
87 dependencies.consumer_registry->register_consumer_factory(L"Bluefish Consumer", create_consumer, describe_consumer);
88 dependencies.consumer_registry->register_preconfigured_consumer_factory(L"bluefish", create_preconfigured_consumer);
89 dependencies.system_info_provider_repo->register_system_info_provider([](boost::property_tree::wptree& info)
91 info.add(L"system.bluefish.version", version());
93 for (auto device : device_list())
94 info.add(L"system.bluefish.device", device);