diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-04-23 00:47:41 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-04-23 00:47:41 +0000 |
commit | 8f6826a64fab4488d6d99fe5da0c2479345651f0 (patch) | |
tree | 4b0e04e80c2e815290bb69b5b956fb7698c27991 | |
parent | 7b602fe579f3e11fc7ad5675d6b56c3e8f8d5807 (diff) | |
download | gst-plugins-bad-8f6826a64fab4488d6d99fe5da0c2479345651f0.tar.gz gst-plugins-bad-8f6826a64fab4488d6d99fe5da0c2479345651f0.tar.bz2 gst-plugins-bad-8f6826a64fab4488d6d99fe5da0c2479345651f0.zip |
gst/wavparse/gstwavparse.c: Missing variable initialization. Add handling of DVI ADPCM. Fix mis-parsing of LIST chunk...
Original commit message from CVS:
* gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
(gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
(gst_wavparse_loop):
Missing variable initialization. Add handling of DVI ADPCM. Fix
mis-parsing of LIST chunks. This works around a bug where we mis-
parse non-aligning LIST chunks (so LIST chunks where the contents
don't align with the actual LIST size). The correct fix is to use
rifflib, I'm not going to fix wavparse - too much work. All this
fixes #104878.
-rw-r--r-- | ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,15 @@ +2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net> + + * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad), + (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event), + (gst_wavparse_loop): + Missing variable initialization. Add handling of DVI ADPCM. Fix + mis-parsing of LIST chunks. This works around a bug where we mis- + parse non-aligning LIST chunks (so LIST chunks where the contents + don't align with the actual LIST size). The correct fix is to use + rifflib, I'm not going to fix wavparse - too much work. All this + fixes #104878. + 2004-04-22 Zaheer Abbas Merali <zaheerabbas@merali.org> reviewed by Benjamin Otte <otte@gnome.org> |