Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dev_container
Original file line number Diff line number Diff line change
Expand Up @@ -387,11 +387,9 @@ get_mount_device_options() {

# Deltacast capture boards and Videomaster SDK
for i in 0 1 2 3; do
# Deltacast SDI capture board
if [ -e /dev/delta-x380${i} ]; then
mount_device_opt+="${prefix}--device=/dev/delta-x380${i}:/dev/delta-x380${i}${postfix}"
fi
# Deltacast HDMI capture board
if [ -e /dev/delta-x350${i} ]; then
mount_device_opt+="${prefix}--device=/dev/delta-x350${i}:/dev/delta-x350${i}${postfix}"
fi
Expand Down
6 changes: 5 additions & 1 deletion gxf_extensions/deltacast_videomaster/videomaster_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,11 @@ gxf::Expected<void> VideoMasterBase::open_stream() {
_video_information =
std::unique_ptr<VideoMasterSdiVideoInformation>(new VideoMasterSdiVideoInformation());
break;
case VHD_CHNTYPE_HDMI:
case VHD_CHNTYPE_HDMI_TMDS:
case VHD_CHNTYPE_HDMI_FRL3:
case VHD_CHNTYPE_HDMI_FRL4:
case VHD_CHNTYPE_HDMI_FRL5:
case VHD_CHNTYPE_HDMI_FRL6:
case VHD_CHNTYPE_DISPLAYPORT:
_video_information =
std::unique_ptr<VideoMasterDvVideoInformation>(new VideoMasterDvVideoInformation());
Expand Down