videohubctrl can be used to control Blackmagic Design Videohub SDI router device over the network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

display.h 804B

123456789101112131415161718192021222324252627
  1. /*
  2. * === Display functions ===
  3. *
  4. * Blackmagic Design Videohub control application
  5. * Copyright (C) 2014 Unix Solutions Ltd.
  6. * Written by Georgi Chorbadzhiyski
  7. *
  8. * Released under MIT license.
  9. * See LICENSE-MIT.txt for license terms.
  10. *
  11. */
  12. #ifndef DISPLAY_H
  13. #define DISPLAY_H
  14. void print_device_info(struct videohub_data *d);
  15. void print_device_video_inputs(struct videohub_data *d);
  16. void print_device_video_outputs(struct videohub_data *d);
  17. void print_device_monitoring_outputs(struct videohub_data *d);
  18. void print_device_serial_ports(struct videohub_data *d);
  19. void print_device_processing_units(struct videohub_data *d);
  20. void print_device_frame_buffers(struct videohub_data *d);
  21. void print_device_alarm_status(struct videohub_data *d);
  22. void print_device_backup(struct videohub_data *d);
  23. #endif