1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavfi/framequeue: avoid empty structs.

Fix compilation on MSVC.
This commit is contained in:
Nicolas George
2016-12-19 08:55:30 +01:00
parent 25e35b3436
commit bec8ea20c8

View File

@@ -44,6 +44,7 @@ typedef struct FFFrameBucket {
* It is currently empty. * It is currently empty.
*/ */
typedef struct FFFrameQueueGlobal { typedef struct FFFrameQueueGlobal {
char dummy; /* C does not allow empty structs */
} FFFrameQueueGlobal; } FFFrameQueueGlobal;
/** /**