diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/modplug/gstmodplug.cc | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst/modplug/gstmodplug.cc: + Add missing break causing position queries to fail. + +2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate): Granpos can apparently be -1, which screws up calculations... diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc index 64c5e9f2..6d4c4ab5 100644 --- a/gst/modplug/gstmodplug.cc +++ b/gst/modplug/gstmodplug.cc @@ -357,6 +357,7 @@ gst_modplug_src_query (GstPad * pad, GstQueryType type, res = FALSE; break; } + break; default: res = FALSE; break; |