diff options
author | Marton Balint <cus@passwd.hu> | 2020-07-15 20:06:22 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-09-13 17:59:30 +0200 |
commit | a9ede0bde4c973296a2e82f11d1458ad3930d4c7 (patch) | |
tree | 7ca8905b165e217579eb3e3da65a0f83b87a4560 | |
parent | 9b434bea757fd3c41156703326131063f0cbae18 (diff) | |
download | ffmpeg-a9ede0bde4c973296a2e82f11d1458ad3930d4c7.tar.gz |
avdevice/decklink_common.h: remove unsupported decklink version ifdef
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | libavdevice/decklink_common.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavdevice/decklink_common.h b/libavdevice/decklink_common.h index bd68c7ba77..9f69054e64 100644 --- a/libavdevice/decklink_common.h +++ b/libavdevice/decklink_common.h @@ -156,11 +156,7 @@ struct decklink_ctx { typedef enum { DIRECTION_IN, DIRECTION_OUT} decklink_direction_t; #ifdef _WIN32 -#if BLACKMAGIC_DECKLINK_API_VERSION < 0x0a040000 -typedef unsigned long buffercount_type; -#else typedef unsigned int buffercount_type; -#endif IDeckLinkIterator *CreateDeckLinkIteratorInstance(void); #else typedef uint32_t buffercount_type; |