diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-12-30 17:53:18 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-12-30 17:53:18 +0000 |
commit | 2deab46c699196a902a076bbd969d26a15d9068a (patch) | |
tree | 6d3936fd0046d1a3679a29aa833c72dc959fa9e9 /gst-libs/gst/media-info | |
parent | 5f3fa649393fc4321b76e3220d3682511281d405 (diff) | |
download | gst-plugins-bad-2deab46c699196a902a076bbd969d26a15d9068a.tar.gz gst-plugins-bad-2deab46c699196a902a076bbd969d26a15d9068a.tar.bz2 gst-plugins-bad-2deab46c699196a902a076bbd969d26a15d9068a.zip |
Fix plugins for new query API
Original commit message from CVS:
Fix plugins for new query API
Diffstat (limited to 'gst-libs/gst/media-info')
-rw-r--r-- | gst-libs/gst/media-info/media-info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/media-info/media-info.c b/gst-libs/gst/media-info/media-info.c index 4dea33b4..624a06a0 100644 --- a/gst-libs/gst/media-info/media-info.c +++ b/gst-libs/gst/media-info/media-info.c @@ -519,7 +519,7 @@ gst_media_info_get_stream (GstMediaInfo *info, GstMediaInfoStream *stream) format = *formats; g_assert (GST_IS_PAD (priv->decoder_pad)); - res = gst_pad_query (priv->decoder_pad, GST_PAD_QUERY_TOTAL, + res = gst_pad_query (priv->decoder_pad, GST_QUERY_TOTAL, &format, &value); definition = gst_format_get_details (*formats); @@ -554,7 +554,7 @@ gst_media_info_get_stream (GstMediaInfo *info, GstMediaInfoStream *stream) /* now get number of bytes from the sink pad to get the bitrate */ format = GST_FORMAT_BYTES; g_assert (GST_IS_PAD (priv->source_pad)); - res = gst_pad_query (priv->source_pad, GST_PAD_QUERY_TOTAL, + res = gst_pad_query (priv->source_pad, GST_QUERY_TOTAL, &format, &value); if (!res) g_warning ("Failed to query on sink pad !"); bytes = value; @@ -622,7 +622,7 @@ gst_media_info_find_streaminfo (GstMediaInfo *info) gint64 value_start, value_end; gboolean res; - res = gst_pad_query (priv->decoder_pad, GST_PAD_QUERY_POSITION, + res = gst_pad_query (priv->decoder_pad, GST_QUERY_POSITION, &track_format, &value_start); if (res) { |