New upstream version 23.2.1+dfsg1
This commit is contained in:
parent
cdc9a9fc87
commit
b14f9eae6d
1017 changed files with 37232 additions and 11111 deletions
|
|
@ -32,6 +32,22 @@ BMDDisplayMode DeckLinkDeviceMode::GetDisplayMode(void) const
|
|||
return bmdModeUnknown;
|
||||
}
|
||||
|
||||
int DeckLinkDeviceMode::GetWidth()
|
||||
{
|
||||
if (mode != nullptr)
|
||||
return mode->GetWidth();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int DeckLinkDeviceMode::GetHeight()
|
||||
{
|
||||
if (mode != nullptr)
|
||||
return mode->GetHeight();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
BMDDisplayModeFlags DeckLinkDeviceMode::GetDisplayModeFlags(void) const
|
||||
{
|
||||
if (mode != nullptr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue