summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libgupnp-dlna/gupnp-dlna-profile.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgupnp-dlna/gupnp-dlna-profile.c b/libgupnp-dlna/gupnp-dlna-profile.c
index a66fe34..b7dbc55 100644
--- a/libgupnp-dlna/gupnp-dlna-profile.c
+++ b/libgupnp-dlna/gupnp-dlna-profile.c
@@ -20,6 +20,7 @@
*/
#include "gupnp-dlna-profile.h"
+#include "gupnp-dlna-profile-private.h"
#include <gst/gstminiobject.h>
/**
@@ -204,21 +205,21 @@ gupnp_dlna_profile_init (GUPnPDLNAProfile *self)
{
}
-GstCaps *
+const GstCaps *
gupnp_dlna_profile_get_container_caps (GUPnPDLNAProfile *self)
{
GUPnPDLNAProfilePrivate *priv = GET_PRIVATE (self);
return priv->container_caps;
}
-GstCaps *
+const GstCaps *
gupnp_dlna_profile_get_video_caps (GUPnPDLNAProfile *self)
{
GUPnPDLNAProfilePrivate *priv = GET_PRIVATE (self);
return priv->video_caps;
}
-GstCaps *
+const GstCaps *
gupnp_dlna_profile_get_audio_caps (GUPnPDLNAProfile *self)
{
GUPnPDLNAProfilePrivate *priv = GET_PRIVATE (self);