gst/flv/gstflvdemux.c: Forward unknown queries upstream instead of returning FALSE on them.

Original commit message from CVS:
* gst/flv/gstflvdemux.c: (gst_flv_demux_query):
Forward unknown queries upstream instead of returning FALSE on them.
This commit is contained in:
Wim Taymans 2008-04-25 08:07:36 +00:00
parent 01bcb096c7
commit af19b91216
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/flv/gstflvdemux.c: (gst_flv_demux_query):
Forward unknown queries upstream instead of returning FALSE on them.
2008-04-25 Sebastian Dröge <slomo@circular-chaos.org> 2008-04-25 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac: * configure.ac:

View file

@ -979,6 +979,7 @@ gst_flv_demux_query (GstPad * pad, GstQuery * query)
break; break;
} }
case GST_QUERY_LATENCY: case GST_QUERY_LATENCY:
default:
{ {
GstPad *peer; GstPad *peer;
@ -992,9 +993,6 @@ gst_flv_demux_query (GstPad * pad, GstQuery * query)
} }
break; break;
} }
default:
res = FALSE;
break;
} }
beach: beach: