#ifndef MYGST_GST_NDI_H #define MYGST_GST_NDI_H #include /* Structure to contain all our information, so we can pass it to callbacks */ typedef struct _CustomData { GstElement *pipeline; GstElement *source; GstElement *convert; GstElement *resample; GstElement *sink; } CustomData; /* Handler for the pad-added signal */ static void pad_added_handler (GstElement *src, GstPad *pad, CustomData *data); static void print_one_tag (const GstTagList * list, const gchar * tag, gpointer user_data); int main(int argc, char *argv[]); #endif //MYGST_GST_NDI_H