mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 03:40:30 +00:00
DeckLink cap.: do not pick NTSC for autodetection
Since the commit 0d679a34 it triggers warning that NTSC has
lower-field-first order, but most likely it isn't the format on wire.
This commit is contained in:
@@ -1166,7 +1166,7 @@ bool device_state::init(struct vidcap_decklink_state *s, struct tile *t, BMDAudi
|
||||
displayMode->Release();
|
||||
}
|
||||
} else if (mode_idx == MODE_SPEC_AUTODETECT) { // autodetect, pick first eligible mode and let device autodetect
|
||||
if (s->stereo && (displayMode->GetFlags() & bmdDisplayModeSupports3D) == 0u) {
|
||||
if ((s->stereo && (displayMode->GetFlags() & bmdDisplayModeSupports3D) == 0u) || displayMode->GetFieldDominance() == bmdLowerFieldFirst) {
|
||||
displayMode->Release();
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user