meta: Add missing include of gststructure.h

This avoids the following error when only including gstmeta.h:

  /usr/include/gstreamer-1.0/gst/gstmeta.h:146:3: error: unknown type
  name 'GstStructure'
    146 |   GstStructure *structure;
        |   ^~~~~~~~~~~~

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7520>
This commit is contained in:
Peter Kjellerstedt 2024-09-14 04:01:42 +02:00 committed by GStreamer Marge Bot
parent 7135dd19fd
commit 0db32b3b3a

View file

@ -26,7 +26,7 @@
#include <glib.h>
#include <gst/gstbytearrayinterface.h>
#include <gst/gststructure.h>
G_BEGIN_DECLS