]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/f_zmq.c
avfilter: don't anonymously typedef structs
[ffmpeg] / libavfilter / f_zmq.c
index d6c3c65da49c7a66261112260f469560072d0bcd..2666016769c5f485dd4589a82aff1ca0ccb47a67 100644 (file)
@@ -33,7 +33,7 @@
 #include "audio.h"
 #include "video.h"
 
-typedef struct {
+typedef struct ZMQContext {
     const AVClass *class;
     void *zmq;
     void *responder;
@@ -86,7 +86,7 @@ static void av_cold uninit(AVFilterContext *ctx)
     zmq_ctx_destroy(zmq->zmq);
 }
 
-typedef struct {
+typedef struct Command {
     char *target, *command, *arg;
 } Command;