mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
{audio,video}info: Add GST_TYPE_{AUDIO,VIDEO}_INFO macros
This commit is contained in:
parent
95fa0c58a2
commit
b495dfa5e6
2 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue