From 2deab46c699196a902a076bbd969d26a15d9068a Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 30 Dec 2002 17:53:18 +0000 Subject: Fix plugins for new query API Original commit message from CVS: Fix plugins for new query API --- gst-libs/gst/media-info/media-info.c | 6 +++--- gst-libs/gst/play/play.old.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'gst-libs/gst') 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) { diff --git a/gst-libs/gst/play/play.old.c b/gst-libs/gst/play/play.old.c index 41f9edef..2e9edea7 100644 --- a/gst-libs/gst/play/play.old.c +++ b/gst-libs/gst/play/play.old.c @@ -548,12 +548,12 @@ gst_play_get_length_callback (GstPlay *play) g_print("trying to get length\n"); if (play->audio_sink_element != NULL){ g_mutex_lock(play->audio_bin_mutex); - query_worked = gst_element_query (play->audio_sink_element, GST_PAD_QUERY_TOTAL, &format, &value); + query_worked = gst_element_query (play->audio_sink_element, GST_QUERY_TOTAL, &format, &value); g_mutex_unlock(play->audio_bin_mutex); } else if (play->video_sink_element != NULL){ g_mutex_lock(play->video_bin_mutex); - query_worked = gst_element_query (play->video_sink_element, GST_PAD_QUERY_TOTAL, &format, &value); + query_worked = gst_element_query (play->video_sink_element, GST_QUERY_TOTAL, &format, &value); g_mutex_unlock(play->video_bin_mutex); } if (query_worked){ -- cgit v1.2.1