summaryrefslogtreecommitdiff
path: root/libgupnp-dlna/gupnp-dlna-profile-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgupnp-dlna/gupnp-dlna-profile-private.h')
-rw-r--r--libgupnp-dlna/gupnp-dlna-profile-private.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/libgupnp-dlna/gupnp-dlna-profile-private.h b/libgupnp-dlna/gupnp-dlna-profile-private.h
new file mode 100644
index 0000000..8994b24
--- /dev/null
+++ b/libgupnp-dlna/gupnp-dlna-profile-private.h
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2011 Nokia Corporation.
+ *
+ * Authors: Parthasarathi Susarla <partha.susarla@collabora.co.uk>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+
+GUPnPDLNAProfile * gupnp_dlna_profile_new (gchar *name,
+ gchar *mime,
+ GstCaps *container_caps,
+ GstCaps *video_caps,
+ GstCaps *audio_caps,
+ gboolean extended);
+
+
+const GstCaps * gupnp_dlna_profile_get_container_caps (GUPnPDLNAProfile *self);
+const GstCaps * gupnp_dlna_profile_get_video_caps (GUPnPDLNAProfile *self);
+const GstCaps * gupnp_dlna_profile_get_audio_caps (GUPnPDLNAProfile *self);
+
+void gupnp_dlna_profile_set_container_caps (GUPnPDLNAProfile *self, GstCaps *caps);
+void gupnp_dlna_profile_set_video_caps (GUPnPDLNAProfile *self, GstCaps *caps);
+void gupnp_dlna_profile_set_audio_caps (GUPnPDLNAProfile *self, GstCaps *caps);