summaryrefslogtreecommitdiff
path: root/libavfilter/framequeue.h
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2016-12-19 08:55:30 +0100
committerNicolas George <george@nsup.org>2016-12-20 09:37:25 +0100
commitbec8ea20c88e89dbfbe89c590a74c9818dfcfcce (patch)
tree56396df4d310ed4ceb4b2988be7191b828d0e435 /libavfilter/framequeue.h
parent25e35b34365ea4fc737f406992b7947a0610edcb (diff)
lavfi/framequeue: avoid empty structs.
Fix compilation on MSVC.
Diffstat (limited to 'libavfilter/framequeue.h')
-rw-r--r--libavfilter/framequeue.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/framequeue.h b/libavfilter/framequeue.h
index 558ea22223..f5ef744638 100644
--- a/libavfilter/framequeue.h
+++ b/libavfilter/framequeue.h
@@ -44,6 +44,7 @@ typedef struct FFFrameBucket {
* It is currently empty.
*/
typedef struct FFFrameQueueGlobal {
+ char dummy; /* C does not allow empty structs */
} FFFrameQueueGlobal;
/**