mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
compiler fixes
Original commit message from CVS: compiler fixes
This commit is contained in:
parent
c0e6138393
commit
0de1a7d73b
3 changed files with 6 additions and 3 deletions
|
@ -229,7 +229,7 @@ gst_media_info_error_element (const gchar *element, GError **error)
|
|||
}
|
||||
|
||||
/* initialise priv; done the first time */
|
||||
void
|
||||
gboolean
|
||||
gmip_init (GstMediaInfoPriv *priv, GError **error)
|
||||
{
|
||||
#define GST_MEDIA_INFO_MAKE_OR_ERROR(el, factory, name, error) \
|
||||
|
@ -238,7 +238,7 @@ G_STMT_START { \
|
|||
if (!GST_IS_ELEMENT (el)) \
|
||||
{ \
|
||||
gst_media_info_error_element (factory, error); \
|
||||
return; \
|
||||
return FALSE; \
|
||||
} \
|
||||
} G_STMT_END
|
||||
/* create the typefind element and make sure it stays around by reffing */
|
||||
|
@ -251,6 +251,7 @@ G_STMT_START { \
|
|||
/* source element for media info reading */
|
||||
priv->source = NULL;
|
||||
priv->source_name = NULL;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* called at the beginning of each use cycle */
|
||||
|
|
|
@ -104,7 +104,7 @@ GstMediaInfoTrack *
|
|||
gmi_track_new (void);
|
||||
|
||||
void gmip_reset (GstMediaInfoPriv *priv);
|
||||
void gmip_init (GstMediaInfoPriv *priv, GError **error);
|
||||
gboolean gmip_init (GstMediaInfoPriv *priv, GError **error);
|
||||
|
||||
void gmi_clear_decoder (GstMediaInfo *info);
|
||||
|
||||
|
|
|
@ -100,6 +100,8 @@ typedef struct
|
|||
#define GST_MEDIA_INFO_FORMAT 1 << 5
|
||||
#define GST_MEDIA_INFO_ALL ((1 << 6) - 1)
|
||||
|
||||
GQuark gst_media_info_error_quark (void);
|
||||
|
||||
void gst_media_info_init (void);
|
||||
GType gst_media_info_get_type (void);
|
||||
|
||||
|
|
Loading…
Reference in a new issue