Skip to content

Commit 4f8f24c

Browse files
committed
vcap/decklink: rm unused attribute
1 parent 08972b3 commit 4f8f24c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/video_capture/decklink.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Dalibor Matura <[email protected]>
1010
* Ian Wesley-Smith <[email protected]>
1111
*
12-
* Copyright (c) 2005-2024 CESNET z.s.p.o.
12+
* Copyright (c) 2005-2025 CESNET, zájmové sdružení právnických osob
1313
*
1414
* Redistribution and use in source and binary forms, with or without
1515
* modification, is permitted provided that the following conditions
@@ -171,7 +171,6 @@ struct device_state {
171171
IDeckLink *deckLink = nullptr;
172172
IDeckLinkInput *deckLinkInput = nullptr;
173173
unique_ptr<VideoDelegate> delegate;
174-
IDeckLinkProfileAttributes *deckLinkAttributes = nullptr;
175174
IDeckLinkConfiguration *deckLinkConfiguration = nullptr;
176175
BMDNotificationCallback *notificationCallback = nullptr;
177176
string device_id = "0"; // either numeric value or device name
@@ -1519,7 +1518,6 @@ static void cleanup_common(struct vidcap_decklink_state *s) {
15191518
for (int i = 0; i < s->devices_cnt; ++i) {
15201519
bmd_unsubscribe_notify(s->state[i].notificationCallback);
15211520
RELEASE_IF_NOT_NULL(s->state[i].deckLinkConfiguration);
1522-
RELEASE_IF_NOT_NULL(s->state[i].deckLinkAttributes);
15231521
RELEASE_IF_NOT_NULL(s->state[i].deckLinkInput);
15241522
RELEASE_IF_NOT_NULL(s->state[i].deckLink);
15251523
}

0 commit comments

Comments
 (0)