diff options
author | Marton Balint <cus@passwd.hu> | 2016-06-11 13:41:29 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-06-26 19:17:56 +0200 |
commit | 8f9fa49bd8bfd8cd2008da97eec7acf18873b960 (patch) | |
tree | 697e14f3ee0a4966f1e9862b09ef25fe54503cfb /libavdevice/decklink_common.h | |
parent | e22760aafd3048bcb006191d55432561b50070ea (diff) | |
download | ffmpeg-8f9fa49bd8bfd8cd2008da97eec7acf18873b960.tar.gz |
avdevice/decklink: add support for setting duplex mode
This patch also makes BlackMagic drivers v10.6.1 a hard requirement.
Reviewed-by: Deti Fliegl <deti@fliegl.de>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_common.h')
-rw-r--r-- | libavdevice/decklink_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavdevice/decklink_common.h b/libavdevice/decklink_common.h index ee39ff234e..201eb15462 100644 --- a/libavdevice/decklink_common.h +++ b/libavdevice/decklink_common.h @@ -44,6 +44,8 @@ struct decklink_ctx { IDeckLink *dl; IDeckLinkOutput *dlo; IDeckLinkInput *dli; + IDeckLinkConfiguration *cfg; + IDeckLinkAttributes *attr; decklink_output_callback *output_callback; decklink_input_callback *input_callback; @@ -77,6 +79,7 @@ struct decklink_ctx { int list_formats; int64_t teletext_lines; double preroll; + int duplex_mode; int frames_preroll; int frames_buffer; |