diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2005-10-19 15:58:00 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2005-10-19 15:58:00 +0000 |
commit | 3ab46f21f0422bd01b2a56e21246a36207be865d (patch) | |
tree | 41416ef7d9825098236994e3112ee53cb29c2f2b /gst | |
parent | ba7ee6ae6cc73b5620b517e03ddac8a2b4badb90 (diff) |
gst/: API change fix.
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
(gst_qtdemux_handle_src_query):
* gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query):
* gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
(gst_tta_parse_get_query_types), (gst_tta_parse_query):
API change fix.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index fe29ba51..33f02533 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -312,6 +312,7 @@ gst_qtdemux_get_src_query_types (GstPad * pad) { static const GstQueryType src_types[] = { GST_QUERY_POSITION, + GST_QUERY_DURATION, 0 }; @@ -326,9 +327,14 @@ gst_qtdemux_handle_src_query (GstPad * pad, GstQuery * query) switch (GST_QUERY_TYPE (query)) { case GST_QUERY_POSITION: - if (qtdemux->duration != 0 && qtdemux->timescale != 0 && - GST_CLOCK_TIME_IS_VALID (qtdemux->last_ts)) { - gst_query_set_position (query, GST_FORMAT_TIME, qtdemux->last_ts, + if (GST_CLOCK_TIME_IS_VALID (qtdemux->last_ts)) { + gst_query_set_position (query, GST_FORMAT_TIME, qtdemux->last_ts); + res = TRUE; + } + break; + case GST_QUERY_DURATION: + if (qtdemux->duration != 0 && qtdemux->timescale != 0) { + gst_query_set_duration (query, GST_FORMAT_TIME, (guint64) qtdemux->duration * GST_SECOND / qtdemux->timescale); res = TRUE; } |