diff options
author | Karthick Jeyapal <kjeyapal@akamai.com> | 2018-09-28 12:55:54 +0530 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-09-30 21:09:12 +0200 |
commit | c0ee4e0ac2c46bb4904ceec12b7dfa480517e7bf (patch) | |
tree | 5eff33b0faaac4074d3cb615d044cec8b0ea718b /libavdevice/decklink_common_c.h | |
parent | 449b1dcd7d52b33b148fae95de176b7344bf959d (diff) | |
download | ffmpeg-c0ee4e0ac2c46bb4904ceec12b7dfa480517e7bf.tar.gz |
avdevice/decklink_dec: add option to align capture start time
This option is useful for maintaining input synchronization across N
different hardware devices deployed for 'N-way' redundancy.
The system time of different hardware devices should be synchronized
with protocols such as NTP or PTP, before using this option.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_common_c.h')
-rw-r--r-- | libavdevice/decklink_common_c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/decklink_common_c.h b/libavdevice/decklink_common_c.h index 32a5d70ee1..8e3bbeb7df 100644 --- a/libavdevice/decklink_common_c.h +++ b/libavdevice/decklink_common_c.h @@ -56,6 +56,7 @@ struct decklink_cctx { int raw_format; int64_t queue_size; int copyts; + int64_t timestamp_align; }; #endif /* AVDEVICE_DECKLINK_COMMON_C_H */ |