discoverer: Add support for getting the stream-id
[platform/upstream/gstreamer.git] / gst-libs / gst / pbutils / pbutils-private.h
index 2efaa17..82fd22c 100644 (file)
  *
  * You should have received a copy of the GNU Library 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.
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
  */
 
 struct _GstDiscovererStreamInfo {
-  GstMiniObject          parent;
+  GObject                parent;
 
   GstDiscovererStreamInfo *previous;  /* NULL for starting points */
   GstDiscovererStreamInfo *next; /* NULL for containers */
 
   GstCaps               *caps;
   GstTagList            *tags;
+  GstToc                *toc;
+  gchar                 *stream_id;
   GstStructure          *misc;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDiscovererContainerInfo {
   GstDiscovererStreamInfo parent;
 
   GList               *streams;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDiscovererAudioInfo {
@@ -46,6 +52,8 @@ struct _GstDiscovererAudioInfo {
   guint max_bitrate;
 
   gchar *language;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDiscovererVideoInfo {
@@ -64,16 +72,20 @@ struct _GstDiscovererVideoInfo {
   guint max_bitrate;
 
   gboolean is_image;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDiscovererSubtitleInfo {
   GstDiscovererStreamInfo parent;
 
   gchar *language;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDiscovererInfo {
-  GstMiniObject parent;
+  GObject parent;
 
   gchar *uri;
   GstDiscovererResult result;
@@ -86,7 +98,10 @@ struct _GstDiscovererInfo {
   GstClockTime duration;
   GstStructure *misc;
   GstTagList *tags;
+  GstToc *toc;
   gboolean seekable;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 /* missing-plugins.c */