diff options
author | Benjamin Otte <otte@gnome.org> | 2004-02-05 00:18:24 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-02-05 00:18:24 +0000 |
commit | 8dc9d960f09141381ba6571a98753456cf3b40bc (patch) | |
tree | 4018de907515de5f207e64f25f0d2946f039b308 | |
parent | af0daef1b1cb768703abc04d7c1e0209b4fa2e7c (diff) |
ext/alsa/gstalsa.c: be sure to stop the clock when going to paused
Original commit message from CVS:
2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
* ext/alsa/gstalsa.c: (gst_alsa_change_state):
be sure to stop the clock when going to paused
* sys/oss/gstosssink.c: (gst_osssink_change_state):
reset number of transmitted when going to ready.
fixes #132935
2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
reviewed by Benjamin Otte
* ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
extract track count (fixes #133410)
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | sys/oss/gstosssink.c | 1 |
2 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,18 @@ +2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de> + + * ext/alsa/gstalsa.c: (gst_alsa_change_state): + be sure to stop the clock when going to paused + * sys/oss/gstosssink.c: (gst_osssink_change_state): + reset number of transmitted when going to ready. + fixes #132935 + +2004-02-05 Charles Schmidt <cschmidt2@emich.edu> + + reviewed by Benjamin Otte + + * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list): + extract track count (fixes #133410) + 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de> * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego): diff --git a/sys/oss/gstosssink.c b/sys/oss/gstosssink.c index 54ad6829..4276cc66 100644 --- a/sys/oss/gstosssink.c +++ b/sys/oss/gstosssink.c @@ -582,6 +582,7 @@ gst_osssink_change_state (GstElement *element) if (GST_FLAG_IS_SET (element, GST_OSSSINK_OPEN)) ioctl (GST_OSSELEMENT (osssink)->fd, SNDCTL_DSP_RESET, 0); gst_osselement_reset (GST_OSSELEMENT (osssink)); + osssink->handled = 0; break; default: break; |