Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-09-05 22:18:17 +0300
committerMarton Balint <cus@passwd.hu>2020-09-13 19:06:54 +0300
commit96907e84ddd40a770d0526537dba6e8b3f6b70f7 (patch)
tree8e267895d4bd7a5a54439fcc18b852e811fb8d25 /libavdevice/decklink_common.h
parentf1b908d20a8800add3db281623eb9d8fb97162e5 (diff)
avdevice/decklink_dec: add support for querying RP188 High Frame Rate timecode
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_common.h')
-rw-r--r--libavdevice/decklink_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavdevice/decklink_common.h b/libavdevice/decklink_common.h
index 9f69054e64..f35bd9ae6f 100644
--- a/libavdevice/decklink_common.h
+++ b/libavdevice/decklink_common.h
@@ -191,6 +191,11 @@ static const BMDTimecodeFormat decklink_timecode_format_map[] = {
bmdTimecodeVITC,
bmdTimecodeVITCField2,
bmdTimecodeSerial,
+#if BLACKMAGIC_DECKLINK_API_VERSION >= 0x0b000000
+ bmdTimecodeRP188HighFrameRate,
+#else
+ (BMDTimecodeFormat)0,
+#endif
};
int ff_decklink_set_configs(AVFormatContext *avctx, decklink_direction_t direction);