{audio,video}info: Add GST_TYPE_{AUDIO,VIDEO}_INFO macros

This commit is contained in:
Sebastian Dröge 2015-07-06 12:53:15 +03:00
parent 95fa0c58a2
commit b495dfa5e6
2 changed files with 3 additions and 1 deletions

View file

@ -84,7 +84,8 @@ struct _GstAudioInfo {
gpointer _gst_reserved[GST_PADDING];
};
GType gst_audio_info_get_type (void);
#define GST_TYPE_AUDIO_INFO (gst_audio_info_get_type ())
GType gst_audio_info_get_type (void);
#define GST_AUDIO_INFO_IS_VALID(i) ((i)->finfo != NULL && (i)->rate > 0 && (i)->channels > 0 && (i)->bpf > 0)

View file

@ -287,6 +287,7 @@ struct _GstVideoInfo {
} ABI;
};
#define GST_TYPE_VIDEO_INFO (gst_video_info_get_type ())
GType gst_video_info_get_type (void);
/* general info */