discoverer: Add support for getting the stream-id
[platform/upstream/gstreamer.git] / gst-libs / gst / pbutils / pbutils-private.h
index 8ac6147..82fd22c 100644 (file)
@@ -14,8 +14,8 @@
  *
  * 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 {
@@ -26,13 +26,19 @@ struct _GstDiscovererStreamInfo {
 
   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,12 +72,16 @@ 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 {
@@ -86,7 +98,10 @@ struct _GstDiscovererInfo {
   GstClockTime duration;
   GstStructure *misc;
   GstTagList *tags;
+  GstToc *toc;
   gboolean seekable;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 /* missing-plugins.c */