gst/spectrum/: Post a spectrum message on the bus for every interval, even if the...
[platform/upstream/gst-plugins-good.git] / ChangeLog
1 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/spectrum/Makefile.am:
4         * gst/spectrum/README:
5         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
6         (gst_spectrum_class_init), (gst_spectrum_init),
7         (gst_spectrum_reset_state), (gst_spectrum_finalize),
8         (gst_spectrum_set_property), (gst_spectrum_start),
9         (gst_spectrum_stop), (gst_spectrum_setup),
10         (gst_spectrum_transform_ip):
11         * gst/spectrum/gstspectrum.h:
12         Post a spectrum message on the bus for every interval, even
13         if the interval is small than the length of the FFT.
14         Fixes bug #567642.
15
16         Major cleanup of the spectrum element.
17
18 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
19
20         * configure.ac:
21         * gst/audiofx/Makefile.am:
22         * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init),
23         (gst_audio_fir_filter_class_init),
24         (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init),
25         (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize),
26         (gst_audio_fir_filter_set_property),
27         (gst_audio_fir_filter_get_property):
28         * gst/audiofx/audiofirfilter.h:
29         * gst/audiofx/audiofx.c: (plugin_init):
30         * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init),
31         (gst_audio_iir_filter_class_init),
32         (gst_audio_iir_filter_update_coefficients),
33         (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup),
34         (gst_audio_iir_filter_finalize),
35         (gst_audio_iir_filter_set_property),
36         (gst_audio_iir_filter_get_property):
37         * gst/audiofx/audioiirfilter.h:
38         Add audioiirfilter and audiofirfilter elements which allow
39         generic IIR/FIR filters to be implemented by providing the
40         filter coefficients. Fixes bug #567577.
41
42         * docs/plugins/Makefile.am:
43         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
44         * docs/plugins/gst-plugins-good-plugins-sections.txt:
45         * docs/plugins/gst-plugins-good-plugins.args:
46         * docs/plugins/gst-plugins-good-plugins.hierarchy:
47         * docs/plugins/gst-plugins-good-plugins.signals:
48         * docs/plugins/inspect/plugin-alaw.xml:
49         * docs/plugins/inspect/plugin-audiofx.xml:
50         * docs/plugins/inspect/plugin-avi.xml:
51         * docs/plugins/inspect/plugin-flac.xml:
52         * docs/plugins/inspect/plugin-mulaw.xml:
53         * docs/plugins/inspect/plugin-video4linux2.xml:
54         * docs/plugins/inspect/plugin-wavparse.xml:
55         Add documentation for the audioiirfilter and audiofirfilter
56         elements.
57
58         * tests/check/Makefile.am:
59         * tests/check/elements/audiofirfilter.c: (on_message),
60         (on_rate_changed), (on_handoff), (GST_START_TEST),
61         (audiofirfilter_suite):
62         * tests/check/elements/audioiirfilter.c: (on_message),
63         (on_rate_changed), (on_handoff), (GST_START_TEST),
64         (audioiirfilter_suite):
65         * tests/examples/Makefile.am:
66         * tests/examples/audiofx/Makefile.am:
67         * tests/examples/audiofx/firfilter-example.c: (on_message),
68         (on_rate_changed), (main):
69         * tests/examples/audiofx/iirfilter-example.c: (on_message),
70         (on_rate_changed), (main):
71         Add unit tests and example applications for the two filter
72         elements.
73
74 2009-01-13  Michael Smith <msmith@songbirdnest.com>
75
76         Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
77         * gst/qtdemux/qtdemux.c:
78           Fix format string for guint64.
79
80 2009-01-13  Michael Smith <msmith@songbirdnest.com>
81
82         * sys/osxaudio/Makefile.am:
83           osxaudio plugin now requires AudioUnit framework, so link against that.
84           Clean up tabs v spaces while I'm there.
85
86 2009-01-13  Wim Taymans  <wim.taymans@collabora.co.uk>
87
88         * tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
89         (print_stats), (main):
90         Add some example code for printing the RTP manager stats.
91
92 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
93
94         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_class_init),
95         (gst_audio_cheb_band_init), (gst_audio_cheb_band_finalize),
96         (gst_audio_cheb_band_set_property):
97         * gst/audiofx/audiochebband.h:
98         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_class_init),
99         (gst_audio_cheb_limit_init), (gst_audio_cheb_limit_finalize),
100         (gst_audio_cheb_limit_set_property):
101         * gst/audiofx/audiocheblimit.h:
102         * gst/audiofx/audiowsincband.c: (gst_audio_wsincband_class_init),
103         (gst_audio_wsincband_init), (gst_audio_wsincband_finalize),
104         (gst_audio_wsincband_set_property):
105         * gst/audiofx/audiowsincband.h:
106         * gst/audiofx/audiowsinclimit.c: (gst_audio_wsinclimit_class_init),
107         (gst_audio_wsinclimit_init), (gst_audio_wsinclimit_finalize),
108         (gst_audio_wsinclimit_set_property):
109         * gst/audiofx/audiowsinclimit.h:
110         Use a custom mutex for protecting the instance fields instead of
111         the GstObject lock. Using the latter can lead to deadlocks, especially
112         with the FIR filters when updating the latency.
113
114 2009-01-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
115
116         * gst/audiofx/Makefile.am:
117         * gst/audiofx/audiofxbasefirfilter.c:
118         (gst_audio_fx_base_fir_filter_dispose),
119         (gst_audio_fx_base_fir_filter_base_init),
120         (gst_audio_fx_base_fir_filter_class_init),
121         (gst_audio_fx_base_fir_filter_init),
122         (gst_audio_fx_base_fir_filter_push_residue),
123         (gst_audio_fx_base_fir_filter_setup),
124         (gst_audio_fx_base_fir_filter_transform),
125         (gst_audio_fx_base_fir_filter_start),
126         (gst_audio_fx_base_fir_filter_stop),
127         (gst_audio_fx_base_fir_filter_query),
128         (gst_audio_fx_base_fir_filter_query_type),
129         (gst_audio_fx_base_fir_filter_event),
130         (gst_audio_fx_base_fir_filter_set_kernel):
131         * gst/audiofx/audiofxbasefirfilter.h:
132         * gst/audiofx/audiofxbaseiirfilter.c:
133         Implement a base class for generic audio FIR filters.
134
135         * gst/audiofx/audiowsincband.c:
136         (gst_gst_audio_wsincband_mode_get_type),
137         (gst_gst_audio_wsincband_window_get_type),
138         (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
139         (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
140         (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
141         (gst_audio_wsincband_get_property):
142         * gst/audiofx/audiowsincband.h:
143         * gst/audiofx/audiowsinclimit.c:
144         (gst_audio_wsinclimit_mode_get_type),
145         (gst_audio_wsinclimit_window_get_type),
146         (gst_audio_wsinclimit_base_init),
147         (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
148         (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
149         (gst_audio_wsinclimit_set_property),
150         (gst_audio_wsinclimit_get_property):
151         * gst/audiofx/audiowsinclimit.h:
152         * tests/check/elements/audiowsincband.c: (GST_START_TEST):
153         * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
154         Use this new base class for audiowsincband and audiowsinclimit.
155         Also cleanup both elements.
156
157 2009-01-08  Michael Smith <msmith@songbirdnest.com>
158
159         * gst/qtdemux/qtdemux.c:
160           In push mode, error out if we get EOS before we've created any srcpads.
161           Handle (in pull mode) some files that have a truncated moov atom where
162           the final sub-atom is a 'free' atom and the contents of that are not
163           present in the file.
164
165 2009-01-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
166
167         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
168         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
169         Some cleanups, refactoring and minor enhancements in caps handling.
170
171         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
172         (gst_matroska_mux_init), (gst_matroska_pad_reset),
173         (gst_matroska_pad_free), (gst_matroska_mux_reset),
174         (gst_matroska_mux_video_pad_setcaps),
175         (gst_matroska_mux_request_new_pad):
176         * tests/check/elements/matroskamux.c: (teardown_src_pad):
177         Only remove, release or reset what is appropriate upon state change.
178
179 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
180
181         * ext/pulse/pulsesink.c:
182         * ext/pulse/pulsesink.h:
183         Use a mutex to protect the current stream pointer, and ignore
184         callbacks for stream objects that have been destroyed already.
185         Fixes problems with unprepare/prepare cycles caused by the input
186         caps changing, without reintroducing bug #556986.
187
188 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
189
190         * sys/v4l2/gstv4l2src.c:
191         Remove () from translateable string, so that it makes more sense.
192
193 2009-01-07  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
194
195         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
196         Minor fix/cleanup in header field calculation.
197
198 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
199
200         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
201         (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
202         * gst/matroska/matroska-mux.h:
203         Remove internal taglist and fully use tagsetter interface.
204
205 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
206
207         * gst/avi/gstavimux.c: (gst_avi_mux_reset),
208         (gst_avi_mux_riff_get_avi_header):
209         * gst/avi/gstavimux.h:
210         Ensure header size invariance during subsequent rewrite by using
211         tags snapshot.
212
213 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
214
215         * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
216         Don't wait for the pulse mainloop when destroying the stream.
217         Fixes a deadlock when the pulsedaemon goes away while pulsesink
218         is PLAYING. Fixes bug #556986.
219
220 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
221
222         Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
223                   Luotao Fu <l dot fu at pengutronix dot de>
224
225         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
226         (gst_v4l2_get_caps_info):
227         Add support for grayscale v4l2 devices. Fixes bug #566616.
228
229 2009-01-05  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
230
231         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
232         (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
233         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
234         (qtdemux_tag_add_blob), (qtdemux_parse_udta):
235         * gst/qtdemux/qtdemux.h:
236         * gst/qtdemux/quicktime.c: (plugin_init):
237         Streamline tag handling and pass unparsed tags as binary blob
238         in private tag.
239
240 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
241
242         * gst/audiofx/Makefile.am:
243         * gst/audiofx/audiofxbaseiirfilter.c:
244         (gst_audio_fx_base_iir_filter_base_init),
245         (gst_audio_fx_base_iir_filter_dispose),
246         (gst_audio_fx_base_iir_filter_class_init),
247         (gst_audio_fx_base_iir_filter_init),
248         (gst_audio_fx_base_iir_filter_calculate_gain),
249         (gst_audio_fx_base_iir_filter_set_coefficients),
250         (gst_audio_fx_base_iir_filter_setup), (process),
251         (gst_audio_fx_base_iir_filter_transform_ip),
252         (gst_audio_fx_base_iir_filter_stop):
253         * gst/audiofx/audiofxbaseiirfilter.h:
254         Implement a base class for IIR filters.
255
256         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
257         (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
258         (generate_coefficients), (gst_audio_cheb_band_set_property),
259         (gst_audio_cheb_band_setup):
260         * gst/audiofx/audiochebband.h:
261         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
262         (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
263         (generate_coefficients), (gst_audio_cheb_limit_set_property),
264         (gst_audio_cheb_limit_setup):
265         * gst/audiofx/audiocheblimit.h:
266         Use the IIR filter base class for the chebyshev filters.
267
268 2009-01-02  Michael Smith <msmith@songbirdnest.com>
269
270           Patch by: Justin Karnegas <justin@affinix.com> and
271                     Michael Smith <msmith@songbirdnest.com>
272         * sys/osxaudio/gstosxaudio.c:
273         * sys/osxaudio/gstosxaudioelement.c:
274         * sys/osxaudio/gstosxaudioelement.h:
275         * sys/osxaudio/gstosxaudiosink.c:
276         * sys/osxaudio/gstosxaudiosink.h:
277         * sys/osxaudio/gstosxaudiosrc.c:
278         * sys/osxaudio/gstosxaudiosrc.h:
279         * sys/osxaudio/gstosxringbuffer.c:
280         * sys/osxaudio/gstosxringbuffer.h:
281           Rewrite osxaudio to work more flexibly and more reliably, using a
282           different abstraction layer of coreaudio that is the recommended way of
283           doing low-level audio I/O on OSX.
284           Fixes byg #564948.
285
286 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
287
288         * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
289         Add example RTP transcoding pipeline from any file decodedable with
290         uridecodebin.
291
292 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
293
294         * tests/examples/rtp/.cvsignore:
295         * tests/examples/rtp/Makefile.am:
296         * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
297         * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
298         Add two C examples of using gstrtpbin as a sender and a receiver.
299
300 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
301
302         * ChangeLog:
303         Remove conflict marker from ChangeLog
304
305 2008-12-28  Edward Hervey  <edward.hervey@collabora.co.uk>
306
307         Patch by: j^ <j at oil21.org>
308
309         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
310         (qtdemux_audio_caps):
311         Add codec mapping for xvid, fmp4 and ac3 tracks.
312         Fixes #565850
313
314 2008-12-23  Wim Taymans  <wim.taymans@collabora.co.uk>
315
316         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
317         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
318         (gst_smokeenc_chain), (gst_smokeenc_change_state):
319         * ext/jpeg/gstsmokeenc.h:
320         Implement getcaps function.
321         Set caps on the pad and on all outgoing buffers.
322         Fixes #565441.
323
324 2008-12-19  Stefan Kost  <ensonic@users.sf.net>
325
326         * ext/pulse/pulsemixerctrl.c:
327           And remove temporary comment pointing to the bug ticket.
328
329         * gst/avi/gstavimux.c:
330           Move reoccuring logging to LOG and log instance too.
331
332 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
333
334         * ext/pulse/pulsemixerctrl.c:
335           Don't leak the pa_operation.
336
337 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
338
339         * configure.ac:
340           Require core cvs.
341
342 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
343
344         * gst/avi/gstavimux.c:
345           Rename api from _flush to _reset_tags. 
346
347 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
348
349         * gst/avi/gstavimux.c:
350           Use new tagsetter api to flush tags.
351
352 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
353
354         * tests/check/elements/deinterleave.c: (deinterleave_suite):
355         Increase timeout to 3 minutes to prevent timeouts.
356
357 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
358
359         * tests/check/elements/interleave.c: (interleave_suite):
360         Increase timeout to 3 minutes to prevent timeouts.
361
362 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
363
364         * gst/avi/gstavimux.c:
365         * gst/avi/gstavimux.h:
366           Totally remove the internal taglists and fully use tagsetter.
367
368 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
369
370         * gst/avi/gstavimux.c:
371           Instead of filtering wrongly just use the mergemode. Applications is
372           use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
373           avi for real (I hope). Everyone chime in, before I fix the others.
374
375 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
376
377         * ext/pulse/pulsemixerctrl.c:
378           Add note about memleak.
379
380 2008-12-13  Edward Hervey  <bilboed@gmail.com>
381
382         * m4/Makefile.am:
383         A couple more .m4 that aren't shipped anymore with gettext 0.17.
384
385 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
386
387         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
388         (gst_flac_dec_init):
389         * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
390         (gst_alaw_dec_init):
391         * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
392         (gst_alaw_enc_init):
393         * gst/law/alaw.c: (plugin_init):
394         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
395         (gst_mulawdec_init):
396         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
397         (gst_mulawenc_init):
398         * gst/law/mulaw.c: (plugin_init):
399         Switch to using GstStaticPadTemplate.
400         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
401         Don't forget to free the addrinfo structure.
402         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
403         (gst_wavparse_sink_activate):
404         Don't forget to unref the GstAdapter.
405
406 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
407
408         * m4/Makefile.am:
409         inttypes.m4 hasn't been available since gettext-0.15, and since we now
410         require gettext >= 0.17 ... we can remove it from the list of files to
411         dist.
412
413 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
414
415         * gst/avi/gstavidemux.c:
416           More logging.
417
418         * gst/avi/gstavimux.c:
419           Handle more metadata fields. Better estimate of metadata size. Don't
420           merge received tags, if application has specified tags using
421           GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
422
423 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
424
425         * tests/check/Makefile.am:
426         Also ignore pulsemixer for the states unit test.
427
428 2008-12-09  Wim Taymans  <wim.taymans@collabora.co.uk>
429
430         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
431         Add an EOI marker at the end of the jpeg frame when it's missing.
432         Fixes #563056.
433
434 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
435
436         * tests/check/elements/videocrop.c: (check_1x1_buffer):
437         Update the unit test for the new color values for BT.601 red.
438         Fixes bug #563510.
439
440 2008-12-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
441
442         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
443           Restore previous behaviour of not passing QoS and navigation
444           events upstream, which presumably wasn't meant to be changed.
445
446 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
447
448         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
449         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
450         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
451         (gst_dvdemux_chain), (gst_dvdemux_loop),
452         (gst_dvdemux_change_state):
453         Add srcpads only when needed and remove them again when going
454         back to READY. This prevents stalled pipelines if there's no
455         audio inside the DV stream, which happens for many MXF files.
456
457 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
458
459         * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
460         (run_server):
461         The ports in libsoup are unsigned integers and not signed
462         integers.
463
464 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
465
466         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
467         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
468         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
469         (gst_dvdemux_chain), (gst_dvdemux_loop),
470         (gst_dvdemux_change_state):
471         Add srcpads only when they're needed. If we add all pads in any
472         case we will get a stalling audio pad if the stream contains
473         no audio, which is the case for many MXF files.
474
475 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
476
477         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
478         Forward all events upstream unless it's something we really
479         don't handle. This fixes latency configuration of pipelines.
480
481 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
482
483         * ext/dv/gstdv.c: (plugin_init):
484         * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
485         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
486         Really call dv_init() exactly one time, not one time for
487         the demuxer and one time for the decoder.
488
489 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
490
491         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
492         Copy incomming timestamp to outgoing packets.
493
494 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
495
496         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
497         (gst_rtp_mp4v_pay_event):
498         Don't try to push packets before we could find a valid config
499         startcode. Fixes #563509.
500
501 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
502
503         Patch by: Brian Cameron <brian.cameron at sun dot com>
504
505         * sys/sunaudio/gstsunaudiomixerctrl.c:
506         (gst_sunaudiomixer_ctrl_open):
507         Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
508
509 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
510
511         Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
512
513         * configure.ac:
514         Make usage of libv4l optional by a configure parameter.
515         Fixes bug #563504.
516
517 2008-12-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
518
519         * docs/plugins/Makefile.am:
520         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
521         * docs/plugins/gst-plugins-good-plugins-sections.txt:
522         * docs/plugins/gst-plugins-good-plugins.args:
523         * docs/plugins/gst-plugins-good-plugins.hierarchy:
524         * docs/plugins/gst-plugins-good-plugins.interfaces:
525         * docs/plugins/inspect/plugin-1394.xml:
526         * docs/plugins/inspect/plugin-aasink.xml:
527         * docs/plugins/inspect/plugin-alaw.xml:
528         * docs/plugins/inspect/plugin-alpha.xml:
529         * docs/plugins/inspect/plugin-alphacolor.xml:
530         * docs/plugins/inspect/plugin-annodex.xml:
531         * docs/plugins/inspect/plugin-apetag.xml:
532         * docs/plugins/inspect/plugin-audiofx.xml:
533         * docs/plugins/inspect/plugin-auparse.xml:
534         * docs/plugins/inspect/plugin-autodetect.xml:
535         * docs/plugins/inspect/plugin-avi.xml:
536         * docs/plugins/inspect/plugin-cacasink.xml:
537         * docs/plugins/inspect/plugin-cairo.xml:
538         * docs/plugins/inspect/plugin-cutter.xml:
539         * docs/plugins/inspect/plugin-debug.xml:
540         * docs/plugins/inspect/plugin-dv.xml:
541         * docs/plugins/inspect/plugin-efence.xml:
542         * docs/plugins/inspect/plugin-effectv.xml:
543         * docs/plugins/inspect/plugin-equalizer.xml:
544         * docs/plugins/inspect/plugin-esdsink.xml:
545         * docs/plugins/inspect/plugin-flac.xml:
546         * docs/plugins/inspect/plugin-flxdec.xml:
547         * docs/plugins/inspect/plugin-gamma.xml:
548         * docs/plugins/inspect/plugin-gconfelements.xml:
549         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
550         * docs/plugins/inspect/plugin-goom.xml:
551         * docs/plugins/inspect/plugin-goom2k1.xml:
552         * docs/plugins/inspect/plugin-halelements.xml:
553         * docs/plugins/inspect/plugin-icydemux.xml:
554         * docs/plugins/inspect/plugin-id3demux.xml:
555         * docs/plugins/inspect/plugin-interleave.xml:
556         * docs/plugins/inspect/plugin-jpeg.xml:
557         * docs/plugins/inspect/plugin-level.xml:
558         * docs/plugins/inspect/plugin-matroska.xml:
559         * docs/plugins/inspect/plugin-monoscope.xml:
560         * docs/plugins/inspect/plugin-mulaw.xml:
561         * docs/plugins/inspect/plugin-multifile.xml:
562         * docs/plugins/inspect/plugin-multipart.xml:
563         * docs/plugins/inspect/plugin-navigationtest.xml:
564         * docs/plugins/inspect/plugin-ossaudio.xml:
565         * docs/plugins/inspect/plugin-png.xml:
566         * docs/plugins/inspect/plugin-pulseaudio.xml:
567         * docs/plugins/inspect/plugin-quicktime.xml:
568         * docs/plugins/inspect/plugin-replaygain.xml:
569         * docs/plugins/inspect/plugin-rtp.xml:
570         * docs/plugins/inspect/plugin-rtsp.xml:
571         * docs/plugins/inspect/plugin-shout2send.xml:
572         * docs/plugins/inspect/plugin-smpte.xml:
573         * docs/plugins/inspect/plugin-soup.xml:
574         * docs/plugins/inspect/plugin-spectrum.xml:
575         * docs/plugins/inspect/plugin-speex.xml:
576         * docs/plugins/inspect/plugin-taglib.xml:
577         * docs/plugins/inspect/plugin-udp.xml:
578         * docs/plugins/inspect/plugin-video4linux2.xml:
579         * docs/plugins/inspect/plugin-videobalance.xml:
580         * docs/plugins/inspect/plugin-videobox.xml:
581         * docs/plugins/inspect/plugin-videocrop.xml:
582         * docs/plugins/inspect/plugin-videoflip.xml:
583         * docs/plugins/inspect/plugin-videomixer.xml:
584         * docs/plugins/inspect/plugin-wavenc.xml:
585         * docs/plugins/inspect/plugin-wavpack.xml:
586         * docs/plugins/inspect/plugin-wavparse.xml:
587         * docs/plugins/inspect/plugin-ximagesrc.xml:
588         * gst/matroska/matroska-demux.c:
589         * gst/matroska/matroska-demux.h:
590         * gst/matroska/matroska-mux.c:
591         * gst/matroska/matroska-mux.h:
592         Add documentation for matroskamux and matroskademux and
593         update the inspection xml files.
594
595 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
596
597         * configure.ac:
598         Apparently AC_CONFIG_MACRO_DIR breaks when using more
599         than one macro directory, reverting last change.
600
601 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
602
603         * configure.ac:
604         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
605         our M4 macros.
606
607 2008-11-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
608
609         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
610         Provide the parameters that are required for the format string
611         to fix a compiler warning.
612
613 2008-11-29  Stefan Kost  <ensonic@users.sf.net>
614
615         * gst/autodetect/gstautoaudiosrc.c:
616           Fix classification.
617
618 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
619
620         Patch by: Cygwin Ports maintainer
621                   <yselkowitz at users dot sourceforge dot net>
622
623         * autogen.sh:
624         * configure.ac:
625         Require gettext 0.17 because older versions don't mix with libtool
626         2.2. At build time an older gettext version will still work.
627         Fixes bug #556091.
628
629 2008-11-28  Wim Taymans  <wim.taymans@collabora.co.uk>
630
631         Patch by: Peter Kjellerstedt <pkj at axis com>
632
633         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
634         Make gst_multiudpsink_render() ignore errors from sendto() instead of
635         breaking streaming. Emit a warning instead. Fixes #562572.
636
637 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
638
639         Patch by: Ron McOuat <rmcouat at smartt dot com>
640
641         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
642         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
643         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
644         (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
645         * ext/soup/gstsouphttpsrc.h:
646         * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
647         (digest_auth_cb), (run_test), (GST_START_TEST),
648         (souphttpsrc_suite), (run_server):
649         Add support for basic and digest authentication in souphttpsrc.
650         Fixes bug #561775.
651
652 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
653
654         Patch by: Pepijn Van Eeckhoudt
655                       <pepijn dot vaneeckhoudt at luciad dot com>
656
657         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
658         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
659         * gst/wavenc/gstwavenc.h:
660         * gst/wavenc/riff.h:
661         Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
662
663 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
664
665         Patch by: 이문형 <iwings at gmail dot com>
666
667         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
668         Prevent further read/write actions taken to the connect-failed socket by
669         erroring out quickly. See #562258.
670
671 2008-11-26  Stefan Kost  <ensonic@users.sf.net>
672
673         * tests/examples/level/level-example.c:
674           Set fakesink to sync. Otherwise people might question the message
675           interval. Nevertheless the timestamp in the message is what matters.
676
677 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
678
679         * tests/icles/.cvsignore:
680         cvsignore newly generated file.
681
682 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
683
684         * gst/rtp/gstasteriskh263.c:
685         * gst/rtp/gstasteriskh263.h:
686         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
687         * gst/rtp/gstrtpL16depay.h:
688         * gst/rtp/gstrtpL16pay.c:
689         * gst/rtp/gstrtpL16pay.h:
690         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
691         * gst/rtp/gstrtpac3depay.h:
692         * gst/rtp/gstrtpamrdepay.c:
693         * gst/rtp/gstrtpamrdepay.h:
694         * gst/rtp/gstrtpamrpay.c:
695         * gst/rtp/gstrtpamrpay.h:
696         * gst/rtp/gstrtpdepay.c:
697         * gst/rtp/gstrtpdepay.h:
698         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
699         * gst/rtp/gstrtpg726depay.c:
700         * gst/rtp/gstrtpg726pay.c:
701         * gst/rtp/gstrtpg729depay.c:
702         * gst/rtp/gstrtpg729pay.c:
703         * gst/rtp/gstrtpgsmdepay.c:
704         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
705         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
706         * gst/rtp/gstrtph263depay.h:
707         * gst/rtp/gstrtph263pay.c:
708         * gst/rtp/gstrtph263pay.h:
709         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
710         * gst/rtp/gstrtph263pdepay.h:
711         * gst/rtp/gstrtph263ppay.c:
712         * gst/rtp/gstrtph263ppay.h:
713         * gst/rtp/gstrtph264depay.c:
714         * gst/rtp/gstrtph264depay.h:
715         * gst/rtp/gstrtph264pay.c:
716         * gst/rtp/gstrtph264pay.h:
717         * gst/rtp/gstrtpilbcdepay.c:
718         * gst/rtp/gstrtpilbcpay.c:
719         * gst/rtp/gstrtpjpegdepay.h:
720         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
721         * gst/rtp/gstrtpmp1sdepay.h:
722         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
723         * gst/rtp/gstrtpmp2tdepay.h:
724         * gst/rtp/gstrtpmp2tpay.c:
725         * gst/rtp/gstrtpmp2tpay.h:
726         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
727         * gst/rtp/gstrtpmp4apay.c:
728         * gst/rtp/gstrtpmp4apay.h:
729         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
730         * gst/rtp/gstrtpmp4gdepay.h:
731         * gst/rtp/gstrtpmp4gpay.c:
732         * gst/rtp/gstrtpmp4gpay.h:
733         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
734         * gst/rtp/gstrtpmp4vdepay.h:
735         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
736         * gst/rtp/gstrtpmp4vpay.h:
737         * gst/rtp/gstrtpmpadepay.c:
738         * gst/rtp/gstrtpmpadepay.h:
739         * gst/rtp/gstrtpmpapay.c:
740         * gst/rtp/gstrtpmpapay.h:
741         * gst/rtp/gstrtpmpvdepay.c:
742         * gst/rtp/gstrtpmpvdepay.h:
743         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
744         * gst/rtp/gstrtppcmapay.c:
745         * gst/rtp/gstrtppcmudepay.c:
746         * gst/rtp/gstrtppcmupay.c:
747         * gst/rtp/gstrtpspeexdepay.c:
748         * gst/rtp/gstrtpspeexpay.c:
749         * gst/rtp/gstrtpsv3vdepay.c:
750         * gst/rtp/gstrtpsv3vdepay.h:
751         * gst/rtp/gstrtptheoradepay.c:
752         * gst/rtp/gstrtptheoradepay.h:
753         * gst/rtp/gstrtptheorapay.c:
754         * gst/rtp/gstrtptheorapay.h:
755         * gst/rtp/gstrtpvorbisdepay.c:
756         * gst/rtp/gstrtpvorbisdepay.h:
757         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
758         * gst/rtp/gstrtpvorbispay.h:
759         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
760         * gst/rtp/gstrtpvrawpay.c:
761         Fix the descriptions and fix some email addresses.
762
763 2008-11-25  Julien Moutte  <julien@fluendo.com>
764
765         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
766         to supported qtdemux video codecs as I found some video clips using 
767         those.
768
769 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
770
771         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
772         * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
773         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
774         (gst_auto_video_sink_detect):
775         * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
776         Post an error when we can't set the internal ghostpad target.
777
778 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
779
780         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
781         (gst_video_crop_transform), (gst_video_crop_transform_caps),
782         (gst_video_crop_set_caps), (gst_video_crop_set_property):
783         * gst/videocrop/gstvideocrop.h:
784         Fix renegotiation when changing properties using the new basetransform
785         features. Fixes #561502.
786
787         * tests/icles/Makefile.am:
788         * tests/icles/videocrop2-test.c: (make_pipeline), (main):
789         Add crazy interactive test unit for dynamically changing properties.
790
791 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
792
793         * gst/rtsp/gstrtspsrc.c: (new_session_pad),
794         (gst_rtspsrc_parse_range):
795         Add some more debugging.
796         Use the reanges received from the server unconditionally.
797         Fixes #561625.
798
799 2008-11-23  Stefan Kost  <ensonic@users.sf.net>
800
801         * ext/pulse/pulsesink.c:
802           Change #if 0 to something more expresive and add pointer to related
803           bug ticket.
804
805 2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
806
807         Patch by: Tal Shalif <tshalif at nargila dot org>
808
809         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
810         Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
811         the latter don't exist on some systems (mingw). Fixes bug #561990.
812
813 2008-11-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
814
815         Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
816
817         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
818         Add transferMode.dnla.org header to HTTP requests as this is
819         required by the DLNA specs and doesn't hurt in other situations.
820         Fixes bug #561802.
821
822 2008-11-20  Michael Smith <msmith@songbirdnest.com>
823
824         * sys/osxvideo/osxvideosink.h:
825         * sys/osxvideo/osxvideosink.m:
826           Handle video window resizing more correctly, avoiding crashes when
827           embedding the window and resizing it.
828
829 2008-11-20  Michael Smith <msmith@songbirdnest.com>
830
831         * gst/udp/gstmultiudpsink.c:
832         * gst/udp/gstudpnetutils.c:
833         * gst/udp/gstudpnetutils.h:
834         * gst/udp/gstudpsrc.c:
835           Fix multiudpsink on OSX by passing the specific length of the socket,
836           refactor that into a function shared with the same thing in udpsrc.
837
838 2008-11-20  Wim Taymans  <wim.taymans@collabora.co.uk>
839
840         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
841         (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
842         (gst_wavparse_stream_headers):
843         Fix the scaling code.
844         Fix parsing of the INFO chunks, we were reading the wrong number of
845         bytes.  Fixes #561580.
846
847 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
848
849         * gst/matroska/matroska-mux.c:
850         Fix NULL pointer dereference of an unset codec_id in the recently 
851         added Dirac paths
852
853 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
854
855         * tests/check/Makefile.am:
856         Just keep disabling elements that hang the states test until it
857         works.
858
859 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
860
861         * ext/libpng/gstpngenc.c:
862         Don't flush downstream after every buffer - that's not what
863         this libpng callback is for at all!
864
865 2008-11-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
866
867         * sys/v4l2/v4l2src_calls.c:
868           (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
869           (gst_v4l2src_probe_caps_for_format):
870           Turns out we don't always get the frame sizes in a predefined
871           order from lowest to highest resolution, so let's just sort the
872           list by frame size once we've queried the possible resolutions
873           rather than assume any particular order. Fixes probed caps for
874           the camera in my HP2133 mini notebook and makes v4l2src default
875           to a decent size.
876
877 2008-11-16  Edward Hervey  <edward.hervey@collabora.co.uk>
878
879         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
880         * gst/matroska/matroska-ids.h:
881         Make mkvdemux aware of E-AC3.
882
883 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
884
885         * gst/rtp/Makefile.am:
886         * gst/rtp/gstrtp.c: (plugin_init):
887         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
888         (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
889         (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
890         (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
891         (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
892         (gst_rtp_jpeg_depay_change_state),
893         (gst_rtp_jpeg_depay_plugin_init):
894         * gst/rtp/gstrtpjpegdepay.h:
895         Add a jpeg depayloader.
896
897         * gst/rtp/gstrtpjpegpay.c:
898         Set the default properties on the payloader to better defaults.
899
900 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
901
902         * sys/v4l2/gstv4l2.c:
903           Give it a primary rank for autovideosrc.
904
905 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
906
907         Patch by: Bjorn Ostby <bjornos at axis dot com>
908
909         * gst/rtp/Makefile.am:
910         * gst/rtp/gstrtp.c: (plugin_init):
911         * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
912         (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
913         (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
914         (gst_rtp_jpeg_pay_read_quant_table),
915         (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
916         (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
917         (gst_rtp_jpeg_pay_plugin_init):
918         * gst/rtp/gstrtpjpegpay.h:
919         Add JPEG payloader. Fixes #560756.
920
921 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
922
923         Patch by: Fabricio Godoy <skarllot at gmail dot com>
924
925         * sys/oss/gstosssink.c: (gst_oss_sink_open):
926         * sys/oss/gstosssrc.c: (gst_oss_src_open):
927         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
928         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
929         Fix some spelling mistakes. Fixes #556802.
930
931 2008-11-13  Stefan Kost  <ensonic@users.sf.net>
932
933         * gst/equalizer/GstIirEqualizer10Bands.prs:
934         * gst/equalizer/GstIirEqualizer3Bands.prs:
935         * gst/equalizer/Makefile.am:
936         * gst/equalizer/gstiirequalizer10bands.c:
937         * gst/equalizer/gstiirequalizer3bands.c:
938           Add presets for equalizer. Fixes #522183.
939
940 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
941
942         * gst/rtsp/Makefile.am:
943         * gst/rtsp/gstrtsp.c: (plugin_init):
944         * gst/rtsp/gstrtspgoogle.c:
945         * gst/rtsp/gstrtspgoogle.h:
946         Remove google extension again, it's not needed anymore because we never
947         send multiple transports anymore.
948
949 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
950
951         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
952
953         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
954         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
955         (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
956         (gst_rtspsrc_stream_free),
957         (gst_rtspsrc_stream_configure_udp_sinks),
958         (gst_rtspsrc_stream_configure_transport),
959         (gst_rtspsrc_send_dummy_packets),
960         (gst_rtspsrc_create_transports_string),
961         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
962         * gst/rtsp/gstrtspsrc.h:
963         Add property to configure NAT traversal method.
964         Ignore EOS from the internal sinks.
965         Implement sending dummy packets as a (simple) method to open up
966         some firewalls.
967         Send PLAY request to the server after we started the udp sources.
968         Fixes #559545.
969
970 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
971
972         Patch by: Yotam <sh dot yotam at gmail dot com>
973
974         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
975         Flush the remaining frames on EOS. Fixes #560641.
976
977 2008-11-12  Jan Schmidt  <jan.schmidt@sun.com>
978
979         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
980         Fix compiler warning about printf formatting.
981
982 2008-11-12  Andy Wingo  <wingo@pobox.com>
983
984         * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
985         * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
986         segment events instead of sending them from the seeking thread.
987         Fixes #559288.
988         (gst_qtdemux_push_pending_newsegment): New helper, sends out
989         queued newsegment events.
990         (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
991         call it here, as we only seek when looping, and only push in the
992         movie state.
993
994 2008-11-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
995
996         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
997         (qtdemux_tag_add_covr), (qtdemux_parse_udta):
998         * gst/qtdemux/qtdemux_fourcc.h:
999         * gst/qtdemux/qtdemux_types.c:
1000         Add cover and alternative copyright tag, and enhance some existing
1001         ones by marking them as container atoms.
1002
1003 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1004
1005         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
1006         Don't ignore the return value of setcaps.
1007
1008 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1009
1010         Patch by: Olivier Crete <tester at tester dot ca>
1011
1012         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
1013         (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
1014         (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
1015         * gst/rtp/gstrtpg729pay.h:
1016         Replace G729 payloader with an improved version. Fixes #532409.
1017
1018 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1019
1020         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
1021         (gst_rtspsrc_change_state):
1022         Only send one transport at a time for improved compatibility with some
1023         broken servers. See #537832.
1024
1025 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1026
1027         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1028         (gst_rtspsrc_perform_seek):
1029         Only pause/play in the seek handler when the source was playing.
1030         Fixes #529379.
1031
1032 2008-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
1033
1034         * gst/matroska/matroska-mux.c:
1035         (gst_matroska_mux_handle_dirac_packet):
1036         Fix muxing of Dirac streams if the input already has the format
1037         we need, i.e. is the output of matroskademux.
1038
1039 2008-11-11  Stefan Kost  <ensonic@users.sf.net>
1040
1041         * gst/avi/gstavimux.c:
1042           Don't segfault on string typed tags being NULL. Fixes #560155.
1043
1044 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1045
1046         * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
1047         (gst_matroska_mux_audio_pad_setcaps):
1048         Fix mapping AAC profile to Matroska codec id.
1049
1050 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1051
1052         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
1053         (qtdemux_video_caps), (qtdemux_audio_caps):
1054         Refactor some raw audio caps building, and handle >16-bit cases.
1055         Fix/replace building caps from a string description.
1056
1057 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1058
1059         * gst/audiofx/audiowsincband.c:
1060         * gst/audiofx/audiowsinclimit.c:
1061         * gst/cutter/gstcutter.c:
1062           Make author name consistent with others.
1063
1064 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1065
1066         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1067
1068         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
1069         (gst_rtspsrc_stream_configure_udp_sink):
1070         Pause the RTSP stream before doing a new play request.
1071         Make sure that adding the udpsinks does not cause the rtspsrc to become
1072         a sink. Fixes #559547.
1073
1074 2008-11-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1075
1076         * gst/matroska/matroska-ids.h:
1077         * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
1078         (gst_matroska_mux_handle_dirac_packet),
1079         (gst_matroska_mux_write_data):
1080         Implement Dirac muxing into Matroska comforming to the spec, i.e.
1081         put all Dirac packages up to a picture into a Matroska block.
1082
1083         TODO: Implement writing of the ReferenceBlock Matroska elements,
1084         currently the Dirac muxing is only 100% correct if Matroska version 2
1085         is selected for muxing.
1086
1087 2008-11-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1088
1089         Patch by: Bastien Nocera <hadess at hadess dot net>,
1090                   Hans de Goede <jwrdegoede at fedoraproject dot org>
1091
1092         * configure.ac:
1093         * sys/v4l2/Makefile.am:
1094         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
1095         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1096         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
1097         (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
1098         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
1099         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
1100         (gst_v4l2_get_input), (gst_v4l2_set_input):
1101         * sys/v4l2/v4l2_calls.h:
1102         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1103         (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
1104         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1105         (gst_v4l2src_fill_format_list),
1106         (gst_v4l2src_probe_caps_for_format_and_size),
1107         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
1108         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
1109         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
1110         (gst_v4l2src_get_nearest_size):
1111         Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
1112
1113 2008-11-04  Stefan Kost  <ensonic@users.sf.net>
1114
1115         * ext/aalib/Makefile.am:
1116         * ext/annodex/Makefile.am:
1117         * ext/cairo/Makefile.am:
1118         * ext/dv/Makefile.am:
1119         * ext/esd/Makefile.am:
1120         * ext/flac/Makefile.am:
1121         * ext/gconf/Makefile.am:
1122         * ext/gdk_pixbuf/Makefile.am:
1123         * ext/hal/Makefile.am:
1124         * ext/jpeg/Makefile.am:
1125         * ext/ladspa/Makefile.am:
1126         * ext/libcaca/Makefile.am:
1127         * ext/libmng/Makefile.am:
1128         * ext/libpng/Makefile.am:
1129         * ext/mikmod/Makefile.am:
1130         * ext/pulse/Makefile.am:
1131         * ext/raw1394/Makefile.am:
1132         * ext/shout2/Makefile.am:
1133         * ext/soup/Makefile.am:
1134         * ext/speex/Makefile.am:
1135         * ext/taglib/Makefile.am:
1136         * ext/wavpack/Makefile.am:
1137         * gst/alpha/Makefile.am:
1138         * gst/apetag/Makefile.am:
1139         * gst/audiofx/Makefile.am:
1140         * gst/auparse/Makefile.am:
1141         * gst/autodetect/Makefile.am:
1142         * gst/avi/Makefile.am:
1143         * gst/cutter/Makefile.am:
1144         * gst/debug/Makefile.am:
1145         * gst/effectv/Makefile.am:
1146         * gst/equalizer/Makefile.am:
1147         * gst/flx/Makefile.am:
1148         * gst/goom/Makefile.am:
1149         * gst/goom2k1/Makefile.am:
1150         * gst/icydemux/Makefile.am:
1151         * gst/id3demux/Makefile.am:
1152         * gst/interleave/Makefile.am:
1153         * gst/law/Makefile.am:
1154         * gst/level/Makefile.am:
1155         * gst/matroska/Makefile.am:
1156         * gst/median/Makefile.am:
1157         * gst/monoscope/Makefile.am:
1158         * gst/multifile/Makefile.am:
1159         * gst/multipart/Makefile.am:
1160         * gst/oldcore/Makefile.am:
1161         * gst/qtdemux/Makefile.am:
1162         * gst/replaygain/Makefile.am:
1163         * gst/rtp/Makefile.am:
1164         * gst/rtsp/Makefile.am:
1165         * gst/smpte/Makefile.am:
1166         * gst/spectrum/Makefile.am:
1167         * gst/udp/Makefile.am:
1168         * gst/videobox/Makefile.am:
1169         * gst/videocrop/Makefile.am:
1170         * gst/videofilter/Makefile.am:
1171         * gst/videomixer/Makefile.am:
1172         * gst/wavenc/Makefile.am:
1173         * gst/wavparse/Makefile.am:
1174         * sys/directdraw/Makefile.am:
1175         * sys/directsound/Makefile.am:
1176         * sys/oss/Makefile.am:
1177         * sys/osxaudio/Makefile.am:
1178         * sys/osxvideo/Makefile.am:
1179         * sys/sunaudio/Makefile.am:
1180         * sys/v4l2/Makefile.am:
1181         * sys/waveform/Makefile.am:
1182         * sys/ximage/Makefile.am:
1183           Don't install static libs for plugins. Fixes #550851 for -good.
1184
1185 2008-10-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1186
1187         * ext/flac/Makefile.am:
1188         Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1189         This fixes compilation if FLAC is installed in an uncommon location
1190         that is not already handled by other CFLAGS. Fixes bug #558711.
1191
1192 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1193
1194         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1195         Guard more uncommon formats with ifdefs so that we can compile on older
1196         versions.
1197
1198 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1199
1200         Patch by: Nick Haddad <nick at haddads dot net>
1201
1202         * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1203         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1204         (gst_avi_demux_stream_data):
1205         Invert other uncompressed RGB formats. Fixes #558554.
1206
1207 2008-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
1208
1209         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1210         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1211         * gst/wavenc/gstwavenc.h:
1212         Add support for float/double as input and remove the (nowadays)
1213         useless parsing of the depth as we require width==depth.
1214
1215 2008-10-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1216
1217         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1218         * gst/rtp/gstrtpmpapay.c:
1219         Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1220         mpeg version 1. Fixes #558427.
1221
1222 2008-10-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1223
1224         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1225         (gst_rtp_L16_pay_getcaps):
1226         Only put an integral amount of samples in the RTP packet.
1227         Fixes #556641.
1228
1229 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1230
1231         * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1232         * gst/rtp/gstrtpchannels.h:
1233         Add method to get possible channel positions.
1234
1235 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1236
1237         * gst/rtp/Makefile.am:
1238         Also commit updated makefile
1239
1240 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1241
1242         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1243         Don't allow width=32,depth=24 as input. WAV requires that the width
1244         is the next integer multiply of 8 from the depth.
1245
1246 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1247
1248         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1249         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1250         (gst_rtp_L16_pay_getcaps):
1251         * gst/rtp/gstrtpchannels.c: (check_channels),
1252         (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1253         (gst_rtp_channels_create_default):
1254         * gst/rtp/gstrtpchannels.h:
1255         Add mappings for multichannel support. Does not completely just work
1256         because the getcaps function does not yet return the allowed channel
1257         mappings. See #556641.
1258
1259 2008-10-28  Stefan Kost  <ensonic@users.sf.net>
1260
1261         * gst/goom/Makefile.am:
1262         * gst/goom/README:
1263         * gst/goom/config_param.c:
1264         * gst/goom/convolve_fx.c:
1265         * gst/goom/drawmethods.c:
1266         * gst/goom/drawmethods.h:
1267         * gst/goom/filters.c:
1268         * gst/goom/filters_mmx.s:
1269         * gst/goom/flying_stars_fx.c:
1270         * gst/goom/goom.h:
1271         * gst/goom/goom_config.h:
1272         * gst/goom/goom_config_param.h:
1273         * gst/goom/goom_core.c:
1274         * gst/goom/goom_filters.h:
1275         * gst/goom/goom_fx.h:
1276         * gst/goom/goom_graphic.h:
1277         * gst/goom/goom_plugin_info.h:
1278         * gst/goom/goom_tools.c:
1279         * gst/goom/goom_tools.h:
1280         * gst/goom/goom_typedefs.h:
1281         * gst/goom/goom_visual_fx.h:
1282         * gst/goom/graphic.c:
1283         * gst/goom/ifs.c:
1284         * gst/goom/ifs.h:
1285         * gst/goom/lines.c:
1286         * gst/goom/lines.h:
1287         * gst/goom/mathtools.c:
1288         * gst/goom/mathtools.h:
1289         * gst/goom/mmx.c:
1290         * gst/goom/motif_goom1.h:
1291         * gst/goom/motif_goom2.h:
1292         * gst/goom/plugin_info.c:
1293         * gst/goom/ppc_drawings.h:
1294         * gst/goom/ppc_zoom_ultimate.h:
1295         * gst/goom/sound_tester.c:
1296         * gst/goom/sound_tester.h:
1297         * gst/goom/surf3d.c:
1298         * gst/goom/surf3d.h:
1299         * gst/goom/tentacle3d.c:
1300         * gst/goom/tentacle3d.h:
1301         * gst/goom/v3d.c:
1302         * gst/goom/v3d.h:
1303         * gst/goom/xmmx.c:
1304           Add license headers in all source files. Remove filter.c from
1305           EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1306           which are not used right now. Fixes #557709.
1307
1308 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1309
1310         Patch by: Olivier Crete <tester at tester dot ca>
1311
1312         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1313         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1314         Implement getcaps in rtpL16pay. Fixes #556484.
1315
1316 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1317
1318         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1319         (gst_rtp_L16_depay_process):
1320         Check if clock-rate and channels are valid.
1321         Don't ignore the return value of setcaps.
1322         No need to validate the buffer, the base class does that for us.
1323         Use the marker bit to set the DISCONT flag on outgoing buffers.
1324
1325         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1326         Don't ignore the return value of set_outcaps.
1327
1328         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1329         (gst_rtp_ac3_depay_process):
1330         Don't ignore the return value of set_caps.
1331         No need to validate the buffer, the base class does that for us.
1332
1333         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1334         (gst_rtp_amr_depay_process):
1335         * gst/rtp/gstrtpamrdepay.h:
1336         Don't ignore the return value of setcaps.
1337         No need to validate the buffer, the base class does that for us.
1338         No need to set output caps on the buffers, the base class does that for
1339         us.
1340         The subclass will make sure we are negotiated.
1341         
1342         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1343         (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1344         * gst/rtp/gstrtpdvdepay.h:
1345         Clean up caps negotiation.
1346         The subclass will make sure we are negotiated.
1347
1348         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1349         (gst_rtp_g726_depay_process):
1350         Clean up caps negotiation.
1351         Use the marker bit to set the DISCONT flag on outgoing buffers.
1352
1353         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1354         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1355         * gst/rtp/gstrtpg729depay.h:
1356         The subclass will make sure we are negotiated.
1357         Use the marker bit to set the DISCONT flag on outgoing buffers.
1358
1359         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1360         (gst_rtp_gsm_depay_process):
1361         Clean up caps negotiation.
1362         Use the marker bit to set the DISCONT flag on outgoing buffers.
1363
1364         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1365         Clean up caps negotiation.
1366         Don't ignore the return value of set_outcaps.
1367
1368         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1369         (gst_rtp_h263_depay_process):
1370         Clean up caps negotiation.
1371         No need to validate the buffer, the base class does that for us.
1372
1373         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1374         (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1375         * gst/rtp/gstrtph263pay.h:
1376         Don't ignore the return value of set_outcaps.
1377         Do some more timestamps.
1378
1379         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1380         (gst_rtp_h263p_depay_process):
1381         Clean up caps negotiation.
1382         Don't ignore the return value of setcaps.
1383         No need to validate the buffer, the base class does that for us.
1384
1385         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1386         (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1387         (gst_rtp_h263p_pay_handle_buffer):
1388         * gst/rtp/gstrtph263ppay.h:
1389         Don't ignore the return value of set_outcaps.
1390         Do some more timestamps.
1391
1392         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1393         (gst_rtp_h264_depay_process):
1394         Clean up caps negotiation.
1395         Don't ignore the return value of setcaps.
1396         Fix possible caps leak.
1397         No need to validate the buffer, the base class does that for us.
1398
1399         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1400         Add some more debug info.
1401
1402         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1403         (gst_rtp_ilbc_depay_process):
1404         Clean up caps negotiation.
1405         Use the marker bit to set the DISCONT flag on outgoing buffers.
1406
1407         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1408         Clean up caps negotiation.
1409
1410         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1411         (gst_rtp_mp1s_depay_process):
1412         Clean up caps negotiation.
1413         Don't ignore the return value of setcaps.
1414         No need to validate the buffer, the base class does that for us.
1415         No need to set caps on buffers, subclass does that for us.
1416
1417         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1418         (gst_rtp_mp2t_depay_process):
1419         Clean up caps negotiation.
1420         Don't ignore the return value of setcaps.
1421         No need to validate the buffer, the base class does that for us.
1422         No need to set caps on buffers, subclass does that for us.
1423
1424         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1425         (gst_rtp_mp4a_depay_process):
1426         Clean up caps negotiation.
1427         Don't ignore the return value of setcaps.
1428         No need to validate the buffer, the base class does that for us.
1429
1430         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1431         (gst_rtp_mp4a_pay_setcaps):
1432         Don't ignore the return value of set_outcaps.
1433
1434         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1435         (gst_rtp_mp4g_depay_process):
1436         Clean up caps negotiation.
1437         Don't ignore the return value of setcaps.
1438         No need to validate the buffer, the base class does that for us.
1439         No need to set caps on buffers, subclass does that for us.
1440
1441         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1442         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1443         Don't ignore the return value of set_outcaps.
1444
1445         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1446         (gst_rtp_mp4v_depay_process):
1447         Clean up caps negotiation.
1448         Don't ignore the return value of setcaps.
1449         No need to validate the buffer, the base class does that for us.
1450         No need to set caps on buffers, subclass does that for us.
1451
1452         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1453         (gst_rtp_mp4v_pay_setcaps):
1454         Don't ignore the return value of set_outcaps.
1455
1456         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1457         (gst_rtp_mpa_depay_process):
1458         Clean up caps negotiation.
1459         Don't ignore the return value of setcaps.
1460         No need to validate the buffer, the base class does that for us.
1461         Use the marker bit to set the DISCONT flag on outgoing buffers.
1462
1463         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1464         Don't ignore the return value of set_outcaps.
1465
1466         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1467         (gst_rtp_mpv_depay_process):
1468         Clean up caps negotiation.
1469         Actually set output caps.
1470         No need to validate the buffer, the base class does that for us.
1471
1472         * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1473         Don't ignore the return value of set_outcaps.
1474
1475         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1476         (gst_rtp_pcma_depay_process):
1477         Clean up caps negotiation.
1478         Set output buffer duration because we can.
1479         Use the marker bit to set the DISCONT flag on outgoing buffers.
1480
1481         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1482         Don't ignore the return value of set_outcaps.
1483
1484         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1485         (gst_rtp_pcmu_depay_process):
1486         Clean up caps negotiation.
1487         Use the marker bit to set the DISCONT flag on outgoing buffers.
1488
1489         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1490         Don't ignore the return value of set_outcaps.
1491
1492         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1493         (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1494         Clean up caps negotiation.
1495         Set output caps on the pad and header buffers.
1496         Set duration on output buffers because we can.
1497
1498         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1499         Don't ignore the return value of set_outcaps.
1500
1501         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1502         (gst_rtp_sv3v_depay_process):
1503         Clean up caps negotiation.
1504         No need to validate the buffer, the base class does that for us.
1505         No need to set caps out output buffers, subclass does that.
1506
1507         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1508         (gst_rtp_theora_depay_process):
1509         Don't ignore the return value of setcaps.
1510         No need to validate the buffer, the base class does that for us.
1511
1512         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1513         (gst_rtp_theora_pay_flush_packet), (encode_base64),
1514         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1515         (gst_rtp_theora_pay_handle_buffer):
1516         Don't ignore the return value of set_outcaps.
1517
1518         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1519         (gst_rtp_vorbis_depay_process):
1520         Don't ignore the return value of setcaps.
1521         No need to validate the buffer, the base class does that for us.
1522
1523         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1524         Don't ignore the return value of set_outcaps.
1525
1526         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1527         Clean up caps negotiation, don't ignore setcaps return.
1528
1529         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1530         Don't ignore the return value of set_outcaps.
1531
1532 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1533
1534         * gst/matroska/matroska-demux.c:
1535         (gst_matroska_demux_handle_src_event):
1536         Forward unknown events upstream.
1537
1538 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1539
1540         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1541         Add some refcount check
1542
1543         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1544         Don't ignore the result of write(), fixes a  compiler warning for me.
1545
1546         * tests/icles/videobox-test.c: (main):
1547         Make the output a little more pretty.
1548
1549 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1550
1551         * ext/esd/esdmon.c:
1552           Add doc blob.
1553
1554 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1555
1556         * docs/plugins/Makefile.am:
1557         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1558         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1559         * docs/plugins/gst-plugins-good-plugins.args:
1560         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1561         * docs/plugins/gst-plugins-good-plugins.interfaces:
1562         * docs/plugins/inspect/plugin-autodetect.xml:
1563           Add the docs of the new elements.
1564
1565 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1566
1567         * gst/autodetect/gstautoaudiosrc.c:
1568         (gst_auto_audio_src_class_init):
1569         * gst/autodetect/gstautovideosrc.c:
1570         (gst_auto_video_src_class_init):
1571         Fix "Since" tags in the documentation.
1572
1573 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1574
1575         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1576
1577         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1578         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1579         Add support for souphttpsrc to act as a live source. This makes it
1580         possible to get timestamped buffers in combination with the
1581         "do-timestamp" property. Fixes bug #556019.
1582
1583 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1584
1585         * gst/autodetect/Makefile.am:
1586         * gst/autodetect/gstautoaudiosink.c:
1587         * gst/autodetect/gstautoaudiosrc.c:
1588         * gst/autodetect/gstautoaudiosrc.h:
1589         * gst/autodetect/gstautodetect.c:
1590         * gst/autodetect/gstautovideosink.c:
1591         * gst/autodetect/gstautovideosrc.c:
1592         * gst/autodetect/gstautovideosrc.h:
1593           Implement src plugins. Little code/string cleanup in the sinks.
1594           Fixes #523813.
1595
1596 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1597
1598         Patch by: Peter Kjellerstedt <pkj at axis com>
1599
1600         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1601         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1602         Fix a memory leak when pads are requested but the pipeline never
1603         goes into PLAYING.
1604
1605         Correctly remove request pads, no matter if they have collected
1606         data or not.
1607
1608         Fixes bug #557710.
1609
1610 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1611
1612         Patch by: <lrn1986 at gmail dot com>
1613
1614         * gst/udp/gstudpnetutils.h:
1615         Define the correct WINVER so getaddinfo() can be used when using
1616         mingw32. Fixes bug #557294.
1617
1618 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1619
1620         Patch by: <lrn1986 at gmail dot com>
1621
1622         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1623         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1624         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1625         Fix "argument type mismatch" compiler warnings on Windows.
1626         Fixes bug #557293.
1627
1628 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1629
1630         * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1631         Don't calculate the filter coefficients for every single buffer
1632         but only when it's needed. Fixes bug #557260.
1633
1634 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
1635
1636         * configure.ac:
1637         Back to development -> 0.10.11.1
1638
1639 2008-10-25  Jan Schmidt  <jan.schmidt@sun.com>
1640
1641         * gst-plugins-good.doap:
1642         Fix version number of 0.10.11 release in doap file
1643
1644 === release 0.10.11 ===
1645
1646 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
1647
1648         * configure.ac:
1649           releasing 0.10.11, "Secondary Consideration"
1650
1651 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
1652
1653         * configure.ac:
1654         Commit 0.10.10.4 pre-release
1655
1656 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1657
1658         * gst/avi/gstavimux.c:
1659         Fix VPRP chunk setup in avimux.
1660         Fixes: #556010
1661         Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1662
1663 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1664
1665         * gst/videobox/gstvideobox.c:
1666         support dynamically changing properties in videobox
1667         Fixed: #557085
1668         Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1669
1670 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1671
1672         * configure.ac:
1673         0.10.10.3 pre-release
1674
1675 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1676
1677         * tests/check/Makefile.am:
1678         Don't run the states test on pulsesrc and pulsesink
1679
1680 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1681
1682         * configure.ac:
1683         Commit 0.10.10.2 pre-release bump that actually went
1684         out on 2008-10-11
1685
1686 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1687
1688         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1689         Skip entries for streams that don't have a output pad yet, thereby
1690         avoiding calling pad functions with a NULL pad.
1691         Fixes #556424
1692
1693 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1694
1695         * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1696         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1697         Remove problematic and useless refcount check.
1698         Fixes #556381
1699
1700 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1701
1702         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1703         Remove problematic and useless refcount check.
1704         Fixes #556381
1705
1706 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
1707
1708         * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1709         * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1710         Cast some size_t arguments to guint to avoid compiler
1711         warnings on 64-bit systems.
1712
1713 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
1714
1715         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1716         Return TRUE instead of FALSE from the event handler when we swallowed the
1717         event.
1718
1719 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1720
1721         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1722         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1723         Reset header state. Fixes #555321.
1724
1725 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1726
1727         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1728         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1729         * gst/avi/gstavidemux.h:
1730         For timestamping audio packets we need to take into account the
1731         amount of blocks in one entry using the blockalign. Fixes some sync
1732         issues with zero-padded audio blocks in the beginning of avi files.
1733
1734 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1735
1736         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1737         (gst_multi_file_src_query):
1738         Implement DEFAULT and BUFFER position queries. See #555260.
1739
1740 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1741
1742         * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1743         Fix build for systems that don't have XDamage.
1744
1745 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1746
1747         * tests/examples/rtp/client-H263p.sdp:
1748         * tests/examples/rtp/client-H263p.sh:
1749         * tests/examples/rtp/server-VTS-H263p.sh:
1750         Add some more H263p server and client examples.
1751
1752 2008-10-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1753
1754         * configure.ac::
1755           Depend on released versions of core and base.
1756
1757 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1758
1759         * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1760         * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1761         Return -1 instead of 0 in error cases. Fixes #554771.
1762
1763 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1764
1765         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1766         (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1767         Stop leaking the cursor image.
1768         Unref the last_ximage and the cached cursor image on shutdown.
1769         Fixes #551570.
1770
1771 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1772
1773         * sys/v4l2/gstv4l2object.h:
1774         Getting the Class from an instance is not just a matter of casting it to
1775         the class struct but it involves calling G_OBJECT_GET_CLASS on the
1776         instance. Fixes #549784.
1777
1778 2008-10-01  Michael Smith <msmith@songbirdnest.com>
1779
1780         * configure.ac:
1781           Fix libs for linking directsound.
1782         * sys/directsound/gstdirectsoundsink.c:
1783           Fix buffer sizing to prevent racing the ringbuffer at startup.
1784           Add volume property.
1785
1786 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
1787
1788         * ext/pulse/pulsesink.c:
1789         Fix problems with pulsesink randomly erroring with code 'OK' after a
1790         format change on the stream by waiting when disconnecting the stream.
1791
1792 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1793
1794         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1795         (gst_rtp_amr_depay_process):
1796         Mark DISCONT on output buffers when the marker bit signals a new talk
1797         spurt.
1798
1799         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1800         Set the marker bit for buffers with a DISCONT flag to signal a talk
1801         spurt.
1802
1803 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1804
1805         * gst/rtp/Makefile.am:
1806         * gst/rtp/gstrtp.c: (plugin_init):
1807         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1808         (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1809         (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1810         (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1811         (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1812         (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1813         * gst/rtp/gstrtpmp4apay.h:
1814         Added MP4A-LATM payloader to match the depayloader.
1815
1816 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1817
1818         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1819         (gst_videomixer_sink_event):
1820         Handle segments a little better. Fixes #537361.
1821
1822 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1823
1824         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1825         Don't assume the server supports PAUSE by default. Fixes #551048.
1826
1827 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1828
1829         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1830         (gst_udpsrc_set_uri), (gst_udpsrc_start):
1831         Switch on the socket family to get the addrlen size right.
1832
1833 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1834
1835         Patch by: Daniel Franke <df at dfranke dot us>
1836
1837         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1838         OS X's bind() implementation is picky about its addrlen parameter and
1839         fails with EINVAL if it is larger than expected for the socket's address
1840         family. Set the length to the expected length instead. Fixes #553191.
1841
1842 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1843
1844         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1845         Handle the case where we cannot do desribe or when the describe result
1846         does not contain a valid SDP message.
1847
1848 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1849
1850         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1851         Fix setting the qos.
1852
1853 2008-09-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1854
1855         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1856         (gst_qtdemux_chain):
1857         Some 'broken' files out there have atom lengths of zero...
1858         which basically results in qtdemux consuming that atom again and again
1859         until the *end of night* !
1860         Detect that and emits an adequate element error message.
1861
1862 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
1863
1864         * gst/interleave/Makefile.am:
1865         * gst/matroska/Makefile.am:
1866         Fix build flags order.
1867
1868         * tests/check/elements/audioamplify.c: (GST_START_TEST):
1869         * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1870         * tests/check/elements/audioinvert.c: (GST_START_TEST):
1871         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1872         Format fixes.
1873
1874         * tests/check/elements/multifile.c:
1875         Pull in unistd.h
1876
1877 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1878
1879         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1880         (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1881         (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1882         (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1883         (gst_rtp_mp4g_depay_change_state):
1884         * gst/rtp/gstrtpmp4gdepay.h:
1885         Handle interleaved streams by reordering AU in a queue.
1886
1887 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1888
1889         * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1890         (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1891         Change some of the ranges in the caps, mostly for the amount of bits we
1892         can use.
1893         Added a little bitstream parse and use it to parse the AU header fields.
1894         Check for malformed and wrongly sized packets better.
1895         Implement more header field parsing.
1896         Handle the size of fragmented packets correctly.
1897
1898 2008-09-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1899
1900         Patch by: Jonathan Matthew <notverysmart@gmail.com>
1901         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1902         Add mapping for 'tiff' => image/tiff
1903         Fixes #552213
1904
1905 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
1906
1907
1908         * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1909         * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1910           Pretend to care about the result of write() which works around
1911           compiler warnings.
1912
1913 2008-09-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1914
1915         * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1916           Make sure the desired default values are actually set, not only
1917           registered as defaults (actual problem is that the stereo-specific
1918           values are only updated if channels==2, which is not the case yet
1919           when the object is created, so the default values for the
1920           mid-side-stereo and loose-mid-side-stereo settings are never
1921           set in _update_quality()). Makes flacenc create smaller files by
1922           default (for stereo input), and fixes #550791.
1923
1924 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1925
1926         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1927         (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
1928         (qtdemux_parse_trak), (qtdemux_video_caps):
1929         * gst/qtdemux/qtdemux.h:
1930         * gst/qtdemux/qtdemux_fourcc.h:
1931         * gst/qtdemux/qtdemux_types.c:
1932         Add support for video/mj2 mime-type and its additional atoms/boxes.
1933         Fixes #550646.
1934
1935 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1936
1937         * gst/debug/gsttaginject.c:
1938           Add warning when tags parameter is unparsable and give example for
1939           quoting in the docs.
1940
1941 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1942
1943         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
1944         Add mapping for IMA Loki SDL MJPEG ADPCM codec.
1945         Add some alternative byteswapped mappings that seem to pop up sometimes.
1946         Fixes #550288.
1947
1948 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1949
1950         * po/LINGUAS:
1951         * po/POTFILES.in:
1952         * po/POTFILES.skip:
1953           Add 'ca' to LINGUAS; add some more files with translations and some
1954           files which should be ignored by translation tools.
1955
1956 2008-09-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1957
1958         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1959         * ext/speex/gstspeexdec.h:
1960         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1961         * ext/speex/gstspeexenc.h:
1962         Use integer encoding and decoding functions instead of converting
1963         the integer input to float in the element. The libspeex integer
1964         functions are doing this for us already or, if libspeex was compiled
1965         in integer mode, they're doing everything using integer arithmetics.
1966         Also saves some copying around.
1967
1968 2008-09-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
1969
1970         * configure.ac:
1971           Fix --disable-external
1972
1973 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1974
1975         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
1976         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
1977         * ext/wavpack/gstwavpackenc.h:
1978         Handle non-zero start timestamps and stream discontinuities
1979         correctly. This only has an effect if we're muxing into
1980         a container format as the raw WavPack stream must contain
1981         continous sample numbers.
1982
1983 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1984
1985         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1986         Correct the timestamp and granulepos calculation by one Speex
1987         frame.
1988
1989 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1990
1991         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1992         Correctly take the granulepos from upstream if possible and
1993         correctly handle the granulepos in various calculations: the
1994         granulepos is the sample number of the _last_ sample in a frame, not
1995         the first.
1996
1997         * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
1998         (gst_speex_enc_encode), (gst_speex_enc_chain),
1999         (gst_speex_enc_change_state):
2000         * ext/speex/gstspeexenc.h:
2001         Handle non-zero start timestamps in the encoder and detect/handle
2002         stream discontinuities. Fixes bug #547075.
2003
2004 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2005
2006         Patch by: Craig Keogh <cskeogh at adam dot com dot au>
2007
2008         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
2009         Fix compiler warnings caused by passing a string as format string
2010         instead of "%s" and then the string. This is only exposed by -Wformat=2
2011         as used by default on Ubuntu. Fixes bug #550015.
2012
2013 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2014
2015         * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
2016         * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
2017         * gst/audiofx/audiocheblimit.c: (generate_coefficients):
2018         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
2019         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2020           (gst_ebml_read_element_length):
2021         * gst/matroska/matroska-demux.c:
2022           (gst_matroska_demux_check_subtitle_buffer):
2023           Make stuff compile with GST_DISABLE_GST_DEBUG.
2024
2025 2008-08-28  Michael Smith <msmith@songbirdnest.com>
2026
2027         * gst/law/alaw.c:
2028         * gst/law/mulaw.c:
2029           Ref caps before passing to gst_pad_template_new(), since that takes
2030           ownership.
2031
2032 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2033
2034         Patch by: Mersad Jelacic <mersad at axis dot com>
2035
2036         * gst/multipart/multipartdemux.c:
2037         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
2038         Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
2039         demuxer. Fixes #549551.
2040
2041 2008-08-27  Edward Hervey  <edward.hervey@collabora.co.uk>
2042
2043         * sys/osxaudio/gstosxaudiosink.c:
2044         (gst_osx_audio_sink_select_device):
2045         * sys/osxaudio/gstosxaudiosrc.c:
2046         (gst_osx_audio_src_create_ringbuffer),
2047         (gst_osx_audio_src_select_device):
2048         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
2049         Fix the build on macosx.
2050
2051 2008-08-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2052
2053         * gst/icydemux/gsticydemux.c:
2054           Small docs fix: in the example pipeline, we need to pass
2055           iradio-mode=true to the source, so the server actually sends
2056           an ICY stream.
2057
2058 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2059
2060         * sys/osxaudio/gstosxaudio.c:
2061           Oops. Revert more completely.
2062
2063 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2064
2065         * sys/osxaudio/gstosxaudio.c:
2066           Revert accidental element rename from testing.
2067
2068 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2069
2070         * gst-plugins-good.doap:
2071         Pull in 0.10.10 doap entry from release branch
2072
2073 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2074
2075         * configure.ac:
2076         Update version number to reflect 0.10.10 release from
2077         branch.
2078
2079 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2080
2081         * sys/osxaudio/Makefile.am:
2082         * sys/osxaudio/gstosxaudio.c:
2083         * sys/osxaudio/gstosxaudiosink.c:
2084         * sys/osxaudio/gstosxaudiosink.h:
2085         * sys/osxaudio/gstosxaudiosrc.c:
2086         * sys/osxaudio/gstosxaudiosrc.h:
2087         * sys/osxaudio/gstosxringbuffer.c:
2088         * sys/osxaudio/gstosxringbuffer.h:
2089           Rewrite caps setting and ring buffer initialisation.
2090           Previously we never told CoreAudio what format we were going to send it,
2091           so it only worked due to luck, and not at all on some hardware.
2092           Now we explicitly advertise what formats the hardware supports, and then
2093           configure the selected one correctly.
2094
2095 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2096
2097         * sys/v4l2/gstv4l2object.c:
2098         * sys/v4l2/gstv4l2src.c:
2099         * sys/v4l2/gstv4l2src.h:
2100         * sys/v4l2/v4l2_calls.c:
2101         * sys/v4l2/v4l2src_calls.c:
2102           Fix memory leaks. Small code cleanups : No need for empty _init(). No
2103           need to memset instance structures. Some more FIXME's and comments.
2104
2105 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2106
2107         * tests/icles/.cvsignore:
2108           Ignore more.
2109
2110 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2111
2112         * gst/goom/.cvsignore:
2113         * gst/goom2k1/.cvsignore:
2114           Ignore files.
2115
2116 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2117
2118         * ext/cairo/gsttextoverlay.c:
2119           Fix compiler warning.
2120
2121 2008-08-25  David Schleef  <ds@schleef.org>
2122
2123         * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2124
2125 2008-08-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2126
2127         * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2128         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2129         * gst/matroska/matroska-mux.c:
2130         (gst_matroska_mux_video_pad_setcaps),
2131         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2132         Add Real[Audio|Video] support to Matroska containers.
2133         It works fine for:
2134         * decoding real audio/video streams contained in mkv
2135         * 'transmuxing' real (.rm) files into .mkv files
2136         It will not work though for encoding real[audio/video] streams that
2137         don't contain the 'mdpr_data' extra data on the caps.
2138         The reason why this will not work is because I never intended to
2139         duplicate virtually all the 'mdpr' block creation into mkvmux.
2140         Fixes #536067
2141
2142 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2143
2144         * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2145         * gst/law/mulaw-conversion.c:
2146         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2147         (gst_mulawenc_chain):
2148         The encoder can't really renegotiate at the time they perform a
2149         pad-alloc so make the srcpads use fixed caps.
2150         Check the buffer size after a pad-alloc because the returned size might
2151         not be right when the downstream element does not know the size of the
2152         new buffer (capsfilter). Fixes #549073.
2153
2154 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2155
2156         Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2157
2158         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2159         v4l2src doesn't have a property named "norm" so don't try to notify
2160         about changes to that property. The "norm" property and related
2161         code are commented out currently. Fixes bug #549090.
2162
2163 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2164
2165         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2166
2167         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2168         Reprobe devices again instead of taking a cached list as new
2169         devices could've been plugged in. Fixes bug #549062.
2170
2171 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2172
2173         * gst/autodetect/Makefile.am:
2174         Don't link the autodetect plugin with GConf as it doesn't
2175         use GConf. Fixes bug #545463.
2176
2177 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2178
2179         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2180         (gst_ebml_read_element_length), (gst_ebml_read_uint),
2181         (gst_ebml_read_sint), (gst_ebml_read_float),
2182         (gst_ebml_read_header):
2183         Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2184         possible to ignore errors and not post any ERROR messages on
2185         the bus.
2186
2187         * gst/matroska/matroska-demux.c:
2188         (gst_matroska_demux_parse_contents):
2189         Ignore any errors and not just EOS when parsing the contents of
2190         a SeekHead. Errors here are usually caused by truncated files
2191         and playback of the file works fine. Fixes playback of the
2192         audio_only_chapter_seekbroken.mka file from the MPlayer samples
2193         archive.
2194
2195 2008-08-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2196
2197         * gst/multipart/multipartdemux.c:
2198         * gst/multipart/multipartmux.c:
2199         Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2200
2201 2008-08-21  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
2202
2203         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2204           gst_directdraw_sink_bufferpool_clear):
2205           Fix two more buffer ref leaks.
2206
2207 2008-08-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
2208
2209         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2210
2211         * sys/directdraw/gstdirectdrawsink.c:
2212           (gst_directdraw_sink_show_frame):
2213           Fix buffer ref leak.
2214
2215 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2216
2217         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2218         Revert the last commit. wavenc still supports width!=depth for 32 bit
2219         width. Thanks Tim.
2220
2221 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2222
2223         * gst/matroska/matroska-demux.c:
2224         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2225         If the duration of a block is unknown only use the timestamp for the
2226         first lace and use GST_CLOCK_TIME_NONE as duration for the following
2227         laces. Otherwise every lace has the same timestamp which leads to
2228         various problems. Really fixes bug #548831.
2229
2230 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2231
2232         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2233         If we're not allowing width!=depth in wavenc we should also disable
2234         the code that was added to support width!=depth.
2235
2236 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2237
2238         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2239         Don't calculate the default duration of a frame from the audio sampling
2240         rate. This only works for raw audio if every frame contains a single
2241         sample and results in broken buffer durations for other formats
2242         if no specified default duration is given or the blocks have no
2243         duration. Fixes bug #548831.
2244
2245 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2246
2247         * gst/matroska/matroska-demux.c:
2248         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2249         Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2250         are used for text/plain subtitles as a gap-filler in some files.
2251
2252 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2253
2254         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2255         (gst_v4l2_get_caps_info):
2256         Add S910 and PWC formats with a low priority.
2257
2258         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2259         (gst_v4l2src_probe_caps_for_format):
2260         Add more debugging.
2261
2262 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
2263
2264         * ext/flac/gstflacenc.c:
2265           Fix compilation against older libflac versions.
2266
2267 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2268
2269         * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2270         (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2271         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2272         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2273         (gst_pulsemixer_ctrl_set_volume):
2274         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2275         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2276         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2277         (gst_pulsesink_init), (gst_pulsesink_open),
2278         (gst_pulsesink_prepare), (gst_pulsesink_write),
2279         (gst_pulsesink_delay), (gst_pulsesink_reset):
2280         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2281         (gst_pulsesrc_init):
2282         Use GST_BOILERPLATE everywhere and fix coding style at some places.
2283         Fix a locking issue in pulsesink's prepare function.
2284
2285         * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2286         Check if the created channel layout is valid for GStreamer.
2287
2288 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2289
2290         * gst/rtsp/gstrtspgoogle.c:
2291         Things that can happen when your brain is in google mode trying to
2292         deal with their google rtsp server extensions and trying to type your
2293         google mail account.
2294
2295 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2296
2297         * gst/rtsp/Makefile.am:
2298         * gst/rtsp/gstrtsp.c: (plugin_init):
2299         * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2300         (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2301         (_do_init), (gst_rtsp_google_base_init),
2302         (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2303         (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2304         (gst_rtsp_google_extension_init):
2305         * gst/rtsp/gstrtspgoogle.h:
2306         Add google RTSP extension, it can only handle udp and responds with
2307         unsupported if we do anything else. Fixes #546465.
2308
2309         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2310         (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2311         (gst_rtspsrc_create_transports_string),
2312         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2313         (gst_rtspsrc_close), (gst_rtspsrc_pause):
2314         Make transport setup code a bit better using GString.
2315         Add some more debug.
2316         Check for closed connections before doing anything on them.
2317
2318 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2319
2320         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2321         (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2322         (gst_pulsesrc_prepare):
2323         * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2324         (gst_pulse_channel_map_to_gst):
2325         * ext/pulse/pulseutil.h:
2326         If downstream provides no channel layout and >2 channels should be
2327         used use the default layout that pulseaudio chooses and also
2328         add this layout to the caps. Fixes bug #547258.
2329
2330 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2331
2332         Patch by: Peter Kjellerstedt <pkj at axis com>
2333
2334         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2335         (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2336         (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2337         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2338         (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2339         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2340         (gst_udpsrc_set_property):
2341         Avoid leaking internally allocated file descriptors when setting
2342         custom file descriptors. Fixes #543101.
2343
2344 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2345
2346         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2347         Don't try to configure RTCP back to the server when the server did not
2348         give us a valid port number.
2349
2350 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2351
2352         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2353         Use new basetransform method to renegotiate. Fixes #544956.
2354
2355         * tests/icles/Makefile.am:
2356         * tests/icles/videobox-test.c: (make_pipeline), (main):
2357         Add videobox renegotiation example.
2358
2359 2008-08-19  David Schleef  <ds@schleef.org>
2360
2361         * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2362         with sane values.  Fixes #548530.
2363
2364 2008-08-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2365
2366         * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2367         * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2368         The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2369         are already filled with the correct values by
2370         gst_ring_buffer_parse_caps() so there's no need to set them again
2371         with wrong values.
2372
2373 2008-08-16  Edward Hervey  <edward.hervey@collabora.co.uk>
2374
2375         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2376         (gst_avi_demux_read_subindexes_push):
2377         Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2378         and instead of using the 'ix##' nomenclature, use '##ix'.
2379         They're still valid though, this fixes the duration and indexes for
2380         virtually all the ODML files I have.
2381
2382 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
2383
2384         Patch by: Olivier Crete <tester at tester dot ca>
2385
2386         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2387         (gst_rtp_vorbis_depay_process):
2388         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2389         Update the vorbis RTP pay/depay to RFC 5215.
2390         Fixes #547842.
2391
2392 2008-08-14  David Schleef  <ds@schleef.org>
2393
2394         * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2395           with 3:2 pulldown, i.e., 24p.
2396
2397 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2398
2399         * tests/check/elements/level.c: (GST_START_TEST):
2400         Fix compilation some more.
2401
2402 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2403
2404         * configure.ac::
2405           Require -base CVS for wavparse acid chunk parsing.
2406
2407 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2408
2409         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2410         (gst_pulsesink_init), (gst_pulsesink_finalize),
2411         (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2412         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2413         (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2414         * ext/pulse/pulsesink.h:
2415         Add "device-name" property to pulsesink too and currently commented
2416         out and not working support for a "volume" property.
2417
2418 2008-08-13  Thijs Vermeir  <thijsvermeir@gmail.com>
2419
2420         * configure.ac:
2421         Remove more cdio stuff (moved to ugly)
2422
2423 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2424
2425         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2426
2427         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2428         (gst_pulsesrc_get_property):
2429         Add "device-name" property, which provides a human readable string
2430         for the audio device, to make it more consisten with other audio
2431         sources. Fixes bug #547519.
2432
2433 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2434
2435         * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2436         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2437         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2438         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2439         * ext/pulse/pulsemixerctrl.h:
2440         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2441         (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2442         (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2443         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2444         * ext/pulse/pulseprobe.h:
2445         * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2446         * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2447         (gst_pulsesrc_change_state):
2448         Improve debugging a bit by including the parent object in pulsemixerctrl
2449         and pulseprobe objects and using GST_WARNING_OBJECT instead of
2450         GST_WARNING.
2451
2452         Use the parent GObject subclass instead of a random struct as GObject
2453         parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2454         when probing for another property than "device".
2455
2456 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2457
2458         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2459
2460         * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2461         Fix property probing after the device property is set by calling
2462         set_server when the server property changes. Fixes bug #547518.
2463
2464 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2465
2466         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2467
2468         * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2469         (gst_pulsesink_implements_interface_init),
2470         (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2471         (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2472         (gst_pulsesink_get_type):
2473         * ext/pulse/pulsesink.h:
2474         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2475         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2476         (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2477         * ext/pulse/pulsesrc.h:
2478         Implement GstPropertyProbe interface on pulsesink for detecting
2479         sink devices and on pulsesrc for detecting source devices.
2480         Fixes bugs #547227 and #547217.
2481
2482 2008-08-13  Stefan Kost  <ensonic@users.sf.net>
2483
2484         * gst/spectrum/gstspectrum.c:
2485           Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2486
2487 2008-08-13  Edward Hervey  <edward.hervey@collabora.co.uk>
2488
2489         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2490         Properly set the maximum latency value, in the same way it is done in
2491         v4lsrc.
2492         * sys/v4l2/v4l2src_calls.c:
2493         Simplify fraction equality check, no need to use GValues for this.
2494
2495 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2496
2497         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2498         Add warning messages stating exactly why the latency query failed.
2499         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2500         In some cases, the negotiated framerate might be the default one which
2501         is already set internally. But we still need to mark it down in fps_n
2502         and fps_d so that the latency query can happen properly.
2503
2504 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2505
2506         * docs/plugins/inspect/plugin-1394.xml:
2507         Whoops, forgot one doc file for people who can't/don't build the
2508         raw1394 plugin.
2509
2510 2008-08-12  Jan Schmidt  <jan.schmidt@sun.com>
2511
2512         * docs/plugins/Makefile.am:
2513         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2514         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2515         * docs/plugins/inspect/plugin-cdio.xml:
2516         * ext/Makefile.am:
2517         * ext/cdio/Makefile.am:
2518         * ext/cdio/gstcdio.c:
2519         * ext/cdio/gstcdio.h:
2520         * ext/cdio/gstcdiocddasrc.c:
2521         * ext/cdio/gstcdiocddasrc.h:
2522
2523         Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2524         CDDA source to -ugly.
2525
2526         * po/LINGUAS:
2527         * po/POTFILES.in:
2528         * po/id.po:
2529         Pull in new translation from 0.10.9.2 release branch.
2530
2531 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2532
2533         * docs/plugins/Makefile.am:
2534         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2535         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2536         * docs/plugins/gst-plugins-good-plugins.args:
2537         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2538         * docs/plugins/gst-plugins-good-plugins.interfaces:
2539         Integrate documentation for new hdv1394src element.
2540
2541 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2542
2543         * ext/raw1394/Makefile.am:
2544         * ext/raw1394/gst1394.c: (plugin_init):
2545         * ext/raw1394/gsthdv1394src.c: (_do_init),
2546         (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2547         (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2548         (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2549         (gst_hdv1394src_from_raw1394handle),
2550         (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2551         (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2552         (gst_hdv1394src_start), (gst_hdv1394src_stop),
2553         (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2554         (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2555         (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2556         (gst_hdv1394src_uri_handler_init):
2557         * ext/raw1394/gsthdv1394src.h:
2558         mpeg2-ts (HDV) variant of firewire capture element.
2559         Fixes #350830
2560
2561 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2562
2563         * gst/level/gstlevel.c: (gst_level_message_new):
2564          Fix compilation (also known as the classic 'fix code that someone
2565          committed without compiling it first').
2566
2567 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2568
2569         * tests/check/elements/level.c:
2570           Add a test for level in stereo mode.
2571
2572 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2573
2574         * tests/examples/spectrum/demo-audiotest.c:
2575         * tests/examples/spectrum/demo-osssrc.c:
2576           Demo how to draw analyzer results synced to the clock.
2577
2578 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2579
2580         * gst/level/gstlevel.c:
2581           Little renaming (l -> level).
2582
2583         * gst/spectrum/gstspectrum.c:
2584         * gst/spectrum/gstspectrum.h:
2585           Also send full timestamp/duration details here.
2586
2587 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2588
2589         * gst/level/gstlevel.c:
2590         * gst/level/gstlevel.h:
2591           Send same timestamp/duration details as videoanalysis. This gives
2592           applications better chance to sync analysis results with playback.
2593
2594 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2595
2596         * gst/matroska/matroska-mux.c:
2597         (gst_matroska_mux_handle_sink_event),
2598         (flac_streamheader_to_codecdata):
2599         We need to drop one additional buffer for FLAC as the fLaC
2600         marker and STREAMINFO block are merged into one buffer in the caps.
2601
2602         Also don't pretend to support NEWSEGMENT events, otherwise we
2603         will most probably write some invalid data.
2604
2605 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2606
2607         * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2608         (gst_matroska_mux_audio_pad_setcaps):
2609         Add support for muxing FLAC into Matroska containers.
2610         Fixes bug #311586.
2611
2612 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2613
2614         * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2615         Actually provide the variables required for the format string.
2616
2617 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2618
2619         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2620         (gst_matroska_demux_element_send_event),
2621         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2622         * gst/matroska/matroska-demux.h:
2623         Close the current segment if we're doing a non-flushing seek and send
2624         the close-segment and the new segment of the seek from the streaming
2625         thread.
2626
2627 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2628
2629         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2630         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2631         (gst_flac_enc_change_state):
2632         * ext/flac/gstflacenc.h:
2633         Handle non-zero start timestamps correctly, mark header packets as
2634         IN_CAPS and print a warning and suggest using audiorate if stream
2635         discontinuities are detected. When FLAC supports flushing the encoder
2636         somehow this should be done for discontinuities instead.
2637
2638         Remove some unused variables from the instance struct.
2639
2640 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2641
2642         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2643         If seeking failed return the appropiate return value to FLAC.
2644         Otherwise it thinks seeking was successfull and tries to rewrite
2645         parts of the headers which then get appended to the output.
2646
2647 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2648
2649         Patch by: Frederic Crozat <fcrozat@mandriva.org>
2650
2651         * ext/esd/gstesd.c: (plugin_init):
2652         * ext/flac/gstflac.c: (plugin_init):
2653         * ext/shout2/gstshout2.c: (plugin_init):
2654         * ext/wavpack/gstwavpack.c: (plugin_init):
2655         * sys/oss/gstossaudio.c: (plugin_init):
2656         * sys/v4l2/gstv4l2.c: (plugin_init):
2657         Make sure gettext returns translations in UTF-8 encoding rather
2658         than in the current locale encoding (#546822).
2659
2660 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2661
2662         * ext/flac/gstflacdec.c:
2663         Add FIXME for 0.11 to simply output everything with width=32 as given
2664         by FLAC and let audioconvert handle the conversions instead of doing
2665         them in flacdec.
2666
2667 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
2668
2669         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2670         When outputting a pad template range for the size, include a framerate
2671         range too, to avoid 'not a real subset of template caps' errors.
2672
2673 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2674
2675         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2676
2677         * ext/flac/Makefile.am:
2678         * ext/flac/gstflac.c: (plugin_init):
2679         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2680         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2681         (gst_flac_tag_dispose), (gst_flac_tag_init),
2682         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2683         (gst_flac_tag_change_state):
2684         * ext/flac/gstflactag.h:
2685         Port flactag to 0.10, add documentation for it and clean it up a bit.
2686         Fixes bug #413841.
2687
2688         * docs/plugins/Makefile.am:
2689         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2690         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2691         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2692         * docs/plugins/gst-plugins-good-plugins.interfaces:
2693         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2694         * docs/plugins/inspect/plugin-flac.xml:
2695         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2696         * ext/flac/gstflacdec.h:
2697         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2698         * ext/flac/gstflacenc.h:
2699         Add flactag and flacenc to the documentation and mark
2700         the private parts of the flacdec instance structure as private.
2701
2702         Also use gst_element_class_set_details_simple() in flacdec and
2703         flacenc.
2704
2705 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
2706
2707         * gst/qtdemux/qtdemux.c:
2708           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2709           for it but ffmpeg does not.
2710
2711 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2712
2713         * gst/wavparse/gstwavparse.c:
2714           Handle the list chunk and use gst_riff_parse_info() to parse the info
2715           sub-chunk.
2716
2717 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2718
2719         * gst/wavparse/gstwavparse.c:
2720           Handle the acid chunk and send tempo as part of tags. Other fields are
2721           interesting too, but need more tag-definitions. Fixes #545433.
2722
2723 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2724
2725         * gst/wavparse/gstwavparse.c:
2726           Refactor wavparse. Call _reset() from dispose() and move old code from
2727           dispose into reset. This way we don't leak taglists when we abort
2728           parsing. Fix some comments. Move code for skipping a chunk into extra
2729           function. Replace chunk sizes with a const to ease readability.         
2730
2731 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2732
2733         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2734
2735         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2736         Improve udp port setup. Fixes #545710.
2737
2738 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2739
2740         * gst/rtp/Makefile.am:
2741         * gst/rtp/gstrtp.c: (plugin_init):
2742         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2743         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2744         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2745         (gst_rtp_mp1s_depay_set_property),
2746         (gst_rtp_mp1s_depay_get_property),
2747         (gst_rtp_mp1s_depay_change_state),
2748         (gst_rtp_mp1s_depay_plugin_init):
2749         * gst/rtp/gstrtpmp1sdepay.h:
2750         Add MP1S depayloader.
2751
2752         * gst/rtsp/URLS:
2753         Some more sample rtsp streams.
2754
2755 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2756
2757         * gst/rtsp/URLS:
2758         Add another URL.
2759
2760         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2761         * tests/check/elements/rglimiter.c: (GST_START_TEST):
2762         Add some more debug info.
2763
2764 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2765
2766         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2767         Provide cbSize field for audio extra_data size, and take care to
2768         pad extra_data.
2769
2770 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2771
2772         * gst/qtdemux/qtdemux.c:
2773           Return the result of gst_pad_{start,stop}_task instead of hard-coded
2774           TRUE.
2775
2776 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2777
2778         * gst/qtdemux/qtdemux.c:
2779         * gst/qtdemux/qtdemux_fourcc.h:
2780           Add keyword tag support. Fixes #520694 for qtdemux.
2781
2782 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2783
2784         * gst/qtdemux/qtdemux.c:
2785           Add support for tmpo tag (BPM).
2786
2787 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2788
2789         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2790         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2791         Set an estimate for the total number of samples that will be encoded
2792         if possible to help decoders if the streaminfo can't be rewritten
2793         later (like when muxing into Ogg containers).
2794
2795         Add a warning if we get header packets after data packets as those
2796         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2797         work.
2798
2799 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2800
2801         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2802         (gst_flac_dec_write):
2803         Support decoding of all depths between 4 and 32 bits and read the
2804         depth from the streaminfo header if needed. Also support all sampling
2805         rates between 1 and 655350 Hz.
2806
2807         * ext/flac/gstflacenc.c:
2808         (gst_flac_enc_caps_append_structure_with_widths),
2809         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2810         (gst_flac_enc_chain):
2811         * ext/flac/gstflacenc.h:
2812         Support encoding in all bit depths supported by the streamable
2813         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2814         between 1 Hz and 655350 Hz.
2815
2816 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2817
2818         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2819         (gst_flac_enc_sink_getcaps):
2820         Support encoding of up to 8 channels.
2821
2822 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2823
2824         * ext/soup/gstsouphttpsrc.c:
2825         * ext/soup/gstsouphttpsrc.h:
2826         Fix seeking race condition in #540300
2827         Patch By: Wouter Cloetens  <wouter at mind be>
2828
2829 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2830
2831         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2832         (gst_matroska_demux_element_send_event),
2833         (gst_matroska_demux_handle_seek_event),
2834         (gst_matroska_demux_handle_src_event):
2835         When receiving a SEEK event on a specific pad first search for a seek
2836         table entry for the stream of the pad and then fall back to an entry
2837         for a different stream.
2838
2839 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2840
2841         * configure.ac:
2842         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2843         * gst/matroska/matroska-ids.h:
2844         Build depend on core CVS for the attachment tag.
2845
2846 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2847
2848         * configure.ac:
2849         * gst/matroska/Makefile.am:
2850         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2851         (copy_backptr), (lzo1x_decode), (main):
2852         * gst/matroska/lzo.h:
2853         * gst/matroska/matroska-demux.c:
2854         (gst_matroska_demux_read_track_encoding),
2855         (gst_matroska_decompress_data), (gst_matroska_decode_data),
2856         (gst_matroska_decode_buffer),
2857         (gst_matroska_decode_content_encodings),
2858         (gst_matroska_demux_read_track_encodings),
2859         (gst_matroska_demux_add_stream),
2860         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2861         * gst/matroska/matroska-ids.h:
2862         Decode the codec private data and following ContentEncoding if
2863         necessary.
2864
2865         Support bzip2, lzo and header stripped compression. For lzo use the
2866         ffmpeg lzo implementation as liblzo is GPL licensed.
2867         
2868         Fix zlib decompression.
2869
2870 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2871
2872         * gst/matroska/matroska-mux.c:
2873         (gst_matroska_mux_audio_pad_setcaps):
2874         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2875         duration of a frame with the new mpegaudioversion caps field.
2876
2877 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2878
2879         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2880         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2881         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2882         (gst_matroska_demux_stream_from_num),
2883         (gst_matroska_demux_tracknumber_unique),
2884         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2885         (gst_matroska_demux_handle_seek_event),
2886         (gst_matroska_demux_sync_streams),
2887         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2888         (gst_matroska_demux_loop):
2889         * gst/matroska/matroska-demux.h:
2890         Allow an infinite number of stream inside Matroska containers and use
2891         a GPtrArray for storing them instead of allowing "only" 127 streams.
2892
2893 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2894
2895         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2896         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2897         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2898         (gst_ebml_read_element_length), (gst_ebml_peek_id),
2899         (gst_ebml_read_get_length), (gst_ebml_read_skip),
2900         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2901         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2902         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2903         (gst_ebml_read_master), (gst_ebml_read_binary),
2904         (gst_ebml_read_header):
2905         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2906         (gst_ebml_write_element_size), (gst_ebml_write_uint),
2907         (gst_ebml_write_sint), (gst_ebml_write_ascii),
2908         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2909         (gst_ebml_replace_uint):
2910         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2911         (gst_matroska_demux_read_track_encoding),
2912         (gst_matroska_demux_read_track_encodings),
2913         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2914         (gst_matroska_demux_send_event),
2915         (gst_matroska_demux_element_send_event),
2916         (gst_matroska_demux_handle_seek_event),
2917         (gst_matroska_demux_handle_src_event),
2918         (gst_matroska_demux_init_stream),
2919         (gst_matroska_demux_parse_tracks),
2920         (gst_matroska_demux_parse_index_cuetrack),
2921         (gst_matroska_demux_parse_index_pointentry),
2922         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
2923         (gst_matroska_demux_parse_metadata_id_simple_tag),
2924         (gst_matroska_demux_parse_metadata_id_tag),
2925         (gst_matroska_demux_parse_metadata),
2926         (gst_matroska_demux_parse_attached_file),
2927         (gst_matroska_demux_parse_attachments),
2928         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
2929         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
2930         (gst_matroska_demux_push_flac_codec_priv_data),
2931         (gst_matroska_demux_push_xiph_codec_priv_data),
2932         (gst_matroska_demux_push_dvd_clut_change_event),
2933         (gst_matroska_demux_add_mpeg_seq_header),
2934         (gst_matroska_demux_add_wvpk_header),
2935         (gst_matroska_demux_check_subtitle_buffer),
2936         (gst_matroska_decode_buffer),
2937         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2938         (gst_matroska_demux_parse_cluster),
2939         (gst_matroska_demux_parse_contents_seekentry),
2940         (gst_matroska_demux_parse_contents),
2941         (gst_matroska_demux_loop_stream_parse_id),
2942         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
2943         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
2944         (gst_matroska_demux_subtitle_caps),
2945         (gst_matroska_demux_change_state):
2946         * gst/matroska/matroska-ids.c:
2947         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
2948         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
2949         (gst_matroska_mux_video_pad_setcaps),
2950         (xiph3_streamheader_to_codecdata),
2951         (vorbis_streamheader_to_codecdata),
2952         (theora_streamheader_to_codecdata),
2953         (gst_matroska_mux_audio_pad_setcaps),
2954         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
2955         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
2956         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
2957         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
2958         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
2959         Fix indention everywhere. A broken indent version has added newlines
2960         after every single declaration some time ago.
2961
2962 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2963
2964         * gst/matroska/matroska-demux.c:
2965         (gst_matroska_demux_loop_stream_parse_id):
2966         If no Tracks are found error out instead of trying it again until the
2967         end of time.
2968
2969 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2970
2971         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
2972         Fix demuxing of raw integer audio. The samples are unsigned only for 8
2973         bit and signed otherwise, not the other way around.
2974
2975 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2976
2977         * gst/matroska/matroska-mux.c:
2978         Add more raw YUV formats to the list of supported formats.
2979
2980 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2981
2982         * gst/matroska/matroska-mux.c:
2983         (gst_matroska_mux_audio_pad_setcaps):
2984         Add support for muxing raw float audio now that the spec defines the
2985         endianness and add support for muxing raw integer audio with 24 and
2986         32 bits.
2987
2988         Allow muxing of more than 8 audio channels.
2989
2990 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2991
2992         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
2993         (gst_matroska_mux_reset), (gst_matroska_mux_start):
2994         Add locking to the global array of used track UIDs to prevent random
2995         crashes if more than a single matrosmux instance is used.
2996
2997         Use 64 bit values for the track UIDs.
2998
2999         Use the global GRandom of GLib instead of creating our own one
3000         for the few random numbers we need every single time.
3001
3002 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3003
3004         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
3005         (gst_flac_dec_setup_stream_decoder),
3006         (gst_flac_dec_update_metadata):
3007         Always post the audio-codec tag, not only if other tags are present.
3008
3009 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
3010
3011         * configure.ac:
3012         Back to development -> 0.10.9.1
3013
3014 === release 0.10.9 ===
3015
3016 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
3017
3018         * configure.ac:
3019           releasing 0.10.9, "Steam Train Rolling"
3020
3021 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
3022
3023         * ext/soup/gstsouphttpsrc.c:
3024         Don't throw an error when soup completes a msg with status
3025         'cancelled', as that indicates we cancelled a request while
3026         shutting down or seeking, and it's not an error.
3027         Fixes: #540300 again.
3028
3029 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
3030
3031         * configure.ac:
3032         0.10.8.4 pre-release
3033
3034 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
3035
3036         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
3037         Fix segment-stop regression.
3038         Add documentation regarding segments in quicktime files by Wim Taymans.
3039         Fixes #544509
3040
3041 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
3042
3043         * configure.ac:
3044         0.10.8.3 pre-release
3045
3046         * po/LINGUAS:
3047         * po/pt_BR.po:
3048         Add pt_BR translation
3049
3050 2008-07-23  Michael Smith <msmith@songbirdnest.com>
3051
3052         * gst/goom/convolve_fx.c:
3053         * gst/goom/filters.c:
3054         * gst/goom/goom_config.h:
3055         * gst/goom/goom_core.c:
3056         * gst/goom/goom_tools.h:
3057           Fix build with MSVC: include glib.h to define inline appropriately,
3058           use header guards where needed.
3059         * gst/udp/gstudpnetutils.c:
3060         * gst/udp/gstudpsrc.c:
3061           Fix build with MSVC: use WSA* constants/functions where appropriate, use
3062           g_snprintf rather than snprintf.
3063           Fixes #544433.
3064
3065 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
3066
3067         * gst/debug/gsttaginject.c:
3068         * gst/debug/gsttaginject.h:
3069           Sent tags in _transform_ip() instead of _start(). Fixes #543404
3070           partially.
3071
3072 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3073
3074         * configure.ac:
3075         0.10.8.2 pre-release
3076
3077 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3078
3079         * ext/Makefile.am:
3080         Finish hooking up pulseaudio plugin to the build.
3081
3082         * ext/pulse/pulsemixerctrl.c:
3083         Fix compilation error.
3084
3085 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3086
3087         * po/LINGUAS:
3088         * po/lt.po:
3089         Add new lithunian translation, and add french to the LINGUAS
3090         file.
3091
3092 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3093
3094         * ext/soup/gstsouphttpsrc.c:
3095         Fix Soup HTTP source seeking.
3096         Patch By: Wouter Cloetens  <wouter at mind be>
3097         Fixes: #540300
3098
3099         * tests/check/elements/.cvsignore:
3100         Ignore new check programs.
3101
3102 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3103
3104         * configure.ac:
3105         * docs/plugins/Makefile.am:
3106         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3107         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3108         * docs/plugins/gst-plugins-good-plugins.args:
3109         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3110         * docs/plugins/gst-plugins-good-plugins.interfaces:
3111         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3112         * docs/plugins/inspect/plugin-interleave.xml:
3113         * docs/plugins/inspect/plugin-replaygain.xml:
3114         * tests/check/Makefile.am:
3115
3116         Move replaygain and interleave plugins from -bad.
3117         Fixes: #543406
3118         Fixes: #536228
3119
3120 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3121
3122         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3123         (qtdemux_parse_trak):
3124         Revert ISO base media spec based pixel-aspect-ratio calculation.
3125         Fixes #543300.
3126
3127 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
3128
3129         * sys/osxvideo/osxvideosink.m:
3130         Fix minor build issues on macosx.
3131         Fixes #543054
3132
3133 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3134
3135         * configure.ac::
3136         * ext/taglib/Makefile.am::
3137           Only use -Wno-attributes (which is there to work around a
3138           bug in the taglib 1.5 headers) if the c++ compiler actually
3139           supports it (#543255).
3140
3141 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3142
3143         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3144
3145         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3146           Avoid compiler warning by initialising variable to NULL (#543259).
3147
3148 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3149
3150         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3151         Don't pass NULL taglists to gst_tag_list_is_empty().
3152
3153 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3154
3155         * tests/check/elements/cmmldec.c: (GST_START_TEST):
3156         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3157         (rtp_pipeline_run):
3158         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3159         Don't use declarations after statements.
3160
3161 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3162
3163         * ext/jpeg/gstjpegdec.c:
3164         Align documentation with reality.
3165
3166 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3167
3168         * gst/udp/gstudpnetutils.c:
3169         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3170         old value (1) if it's not defined which should not cause any problems
3171         as we're using it internal only anyway.
3172
3173 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3174
3175         Patch by: Alessandro Decina <alessandro at nnva dot org>
3176
3177         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3178         Fix build of avidemux on big endian architectures.
3179
3180 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3181
3182         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3183
3184         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3185         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
3186
3187 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3188
3189         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3190         (qtdemux_parse_trak):
3191         Set pixel-aspect-ratio in caps using display width and height
3192         provided in track.
3193
3194 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3195
3196         * configure.ac:
3197         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3198         flags that are invalid for C++. Fixes bug #516509.
3199
3200 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3201
3202         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3203         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3204         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3205         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3206         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3207         * tests/examples/equalizer/demo.c: (message_handler):
3208         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3209         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3210         Don't use declarations after statements and variable length arrays.
3211
3212 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3213
3214         Patch by: Daniel Drake <dsd at gentoo dot org>
3215
3216         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3217         (gst_v4l2src_get_nearest_size):
3218         Try progressive video if interlaced fails. Fixes bug #541956
3219         and the usage of v4l2src on OLPC.
3220
3221 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3222
3223         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3224         (gst_rtp_speex_depay_process):
3225         * gst/rtp/gstrtpspeexdepay.h:
3226         Revert last change: Only the jitterbuffer is able to convert RTP to
3227         Gstreamer timestamps and normal (de)payloaders should simply copy it.
3228         Reopens bug #541787.
3229
3230 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
3231
3232         * gst/rtp/gstrtpvrawdepay.c:
3233           Include stdlib.h for atoi().
3234
3235         * gst/rtsp/gstrtspsrc.c:
3236           Use floating point math for latencies < 0 sec in log output.
3237
3238 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3239
3240         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3241
3242         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3243         (gst_rtp_speex_depay_process):
3244         * gst/rtp/gstrtpspeexdepay.h:
3245         Take timestamp from the RTP packet as a first step to fix problems
3246         with transmission over RTP when the network is not reliable.
3247         Fixes bug #541787.
3248
3249 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3250
3251         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3252
3253         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3254         Fix parsing of udp:// URIs containing IPv6 addresses.
3255         Fixes bug #541650.
3256
3257 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3258
3259         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3260         Do not leak incoming buffers.
3261
3262 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3263
3264         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3265
3266         * configure.ac:
3267         Fix build of the RTP plugin with mingw32 by linking to ws2_32
3268         for htons() and htonl(). Fixes bug #541412.
3269
3270 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3271
3272         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3273         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3274         (gst_matroska_demux_element_query),
3275         (gst_matroska_demux_handle_src_query),
3276         (gst_matroska_demux_handle_seek_event):
3277         Handle position and duration query in DEFAULT format if the
3278         pad's track has a default frame duration set.
3279
3280         Fix seeking now that the segment's duration doesn't contain the
3281         (possibly wrong or inaccurate) duration of the Matroska file.
3282
3283 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3284
3285         * gst/matroska/ebml-read.c: (_ext2dbl):
3286         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3287         in math.h except on MSVC where it is defined in xmath.h.
3288         Fixes compilation with MSVC.
3289
3290 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3291
3292         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3293         (gst_matroska_demux_handle_src_query),
3294         (gst_matroska_demux_parse_info),
3295         (gst_matroska_demux_loop_stream_parse_id):
3296         * gst/matroska/matroska-demux.h:
3297         Don't set the segment duration to the duration from the Matroska
3298         header as this value could be wrong and is just informational.
3299
3300 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3301
3302         * gst/matroska/matroska-demux.c:
3303         (gst_matroska_demux_loop_stream_parse_id):
3304         If no Tracks element is found until the first Cluster is found
3305         search it and error out if none is found in the complete file.
3306
3307 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3308
3309         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3310         Resync non-subtitle tracks too if a too large gap compared to other
3311         tracks is detected.
3312
3313 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3314
3315         * gst/rtp/Makefile.am:
3316         * gst/rtp/gstrtp.c: (plugin_init):
3317         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3318         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3319         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3320         (gst_rtp_vraw_depay_change_state),
3321         (gst_rtp_vraw_depay_plugin_init):
3322         * gst/rtp/gstrtpvrawdepay.h:
3323         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3324         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3325         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3326         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3327         (gst_rtp_vraw_pay_plugin_init):
3328         * gst/rtp/gstrtpvrawpay.h:
3329         Add raw video pay and depayloaders, see RFC4175.
3330
3331 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
3332
3333         * ext/libpng/gstpngdec.c:
3334         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3335         whatever it returned.
3336
3337 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3338
3339         * gst/avi/avi-ids.h:
3340         Add vprp chunk related structures.
3341         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3342         (gst_avi_demux_parse_stream):
3343         Parse optional vprp chunk and add calculated pixel-aspect-ratio
3344         to caps.  Fixes #539482.
3345         * gst/avi/gstavimux.h:
3346         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3347         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3348         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3349
3350 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3351
3352         * tests/check/elements/avimux.c: (check_avimux_pad):
3353         Adjust avimux unit test according to increased streamheader size.
3354
3355 2008-06-27  David Schleef  <ds@schleef.org>
3356
3357         * gst/qtdemux/qtdemux.c: Add Dirac stream type
3358
3359 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3360
3361         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3362         * gst/avi/gstavimux.h:
3363         Add 8 bytes to current streamheader to make for a complete one
3364         and to make more players happy.  Fixes #519460.
3365
3366 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
3367
3368         * sys/v4l2/v4l2_calls.c::
3369           Don't include unused gstv4l2xoverlay.h. Fixes build
3370           in case where X11 headers are not installed.
3371
3372 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3373
3374         * ext/dv/gstdv.c: (plugin_init):
3375         Fix compilation.
3376
3377 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
3378
3379         * ext/dv/gstdv.c: (plugin_init):
3380         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3381         DV decoder available.
3382         Fixes #532393
3383
3384 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3385
3386         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3387         Call getsockname() after the call to bind() to get updated values
3388         for the port, etc. This fixes the usage of udpsrc on anonymous
3389         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3390         Thanks to Aurelien Grimaud for pointing out the obvious fix.
3391
3392 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3393
3394         * tests/check/pipelines/wavpack.c: (bus_handler):
3395         Remove workaround for a bug in identity that is fixed in 0.10.20.
3396
3397 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3398
3399         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3400
3401         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3402         Fix HTTP auth support with user/password passed via the URI.
3403         Fixes bug #540067.
3404
3405 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
3406
3407         * configure.ac:
3408           Depend on released versions of core and -base.
3409
3410 2008-06-23  Julien Moutte  <julien@fluendo.com>
3411
3412         * gst/matroska/matroska-demux.c:
3413         (gst_matroska_demux_read_track_encoding),
3414         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3415         format strings in macros. (makes it build on OS X again...)
3416
3417 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3418
3419         * gst/rtp/gstrtptheorapay.c:
3420         * gst/udp/gstmultiudpsink.c:
3421           Added debug.
3422
3423 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
3424
3425         * configure.ac: switch v4l2src over to the normal build instead of
3426         being 'experimental'. Fixes bug #536831.
3427
3428 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3429
3430         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3431         Remove unused variable so that we can compile again.
3432
3433 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
3434
3435         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3436         No need to check for audio/G723 and audio/32KADPCM here as they are
3437         no longer supported.
3438
3439 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3440
3441         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3442         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3443         Use G_GINT64_CONSTANT, this fixes the duration query on files without
3444         known length.
3445
3446 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3447
3448         * gst/matroska/matroska-demux.c:
3449         (gst_matroska_demux_add_wvpk_header),
3450         (gst_matroska_demux_audio_caps):
3451         * gst/matroska/matroska-ids.h:
3452         Fix demuxing of WavPack files. Muxing is still broken.
3453
3454 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3455
3456         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3457         (gst_matroska_demux_add_mpeg_seq_header),
3458         (gst_matroska_demux_add_wvpk_header),
3459         (gst_matroska_demux_check_subtitle_buffer),
3460         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3461         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3462         (gst_matroska_demux_subtitle_caps):
3463         * gst/matroska/matroska-ids.h:
3464         Add a "vfunc" to the track context for postprocessing frames and
3465         convert the wavpack and subtitle postprocessing to this vfunc.
3466         Copy buffer flags in those functions to the new buffers too.
3467
3468         Parse CodecState elements of Blocks.
3469
3470         Add a postprocessing function for MPEG video that adds the sequence
3471         header from the codec private data or codec state to the frames if
3472         it's not already there.
3473
3474 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3475
3476         * gst/matroska/matroska-demux.c:
3477         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3478         If a gap of more than 1/2 second is found in one stream send a
3479         NEWSEGMENT event to not stall the pipeline if the gap is too large.
3480         This also fixes Matroska files where the first buffer doesn't start
3481         at timestamp 0. Fixes bug #429322.
3482
3483         The duration of a block is the default duration multiplied with the
3484         number of laces. Every lace is one frame and the default duration
3485         is the duration of one frame. This fixes playback of files that use
3486         lacing for some tracks.
3487
3488 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3489
3490         * gst/matroska/matroska-demux.c:
3491         (gst_matroska_demux_parse_contents_seekentry):
3492         Update FIXME/TODOs and only ignore EOS at the central, important place
3493         instead of several places.
3494
3495 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3496
3497         * gst/rtp/gstrtpg726pay.c:
3498         Fix caps, See #538891.
3499
3500 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3501
3502         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3503         (gst_matroska_demux_stream_from_num),
3504         (gst_matroska_demux_encoding_cmp),
3505         (gst_matroska_demux_encoding_order_unique),
3506         (gst_matroska_demux_read_track_encoding),
3507         (gst_matroska_demux_read_track_encodings),
3508         (gst_matroska_demux_tracknumber_unique),
3509         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3510         (gst_matroska_demux_parse_tracks),
3511         (gst_matroska_demux_parse_index_cuetrack),
3512         (gst_matroska_demux_parse_index_pointentry),
3513         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3514         (gst_matroska_demux_parse_metadata_id_simple_tag),
3515         (gst_matroska_demux_parse_metadata_id_tag),
3516         (gst_matroska_demux_parse_metadata),
3517         (gst_matroska_demux_parse_attached_file),
3518         (gst_matroska_demux_parse_attachments),
3519         (gst_matroska_demux_parse_chapters),
3520         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3521         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3522         (gst_matroska_demux_parse_cluster),
3523         (gst_matroska_demux_parse_contents_seekentry),
3524         (gst_matroska_demux_parse_contents),
3525         (gst_matroska_demux_loop_stream_parse_id),
3526         (gst_matroska_demux_loop):
3527         Improve debug output everywhere and fix the EOS logic.
3528
3529         Check the values of the ContentEncoding elements more strictly and
3530         don't use tracks for which it's invalid.
3531
3532         Check that the track number is unique for this stream.
3533
3534         Check that seek positions are below G_MAXINT64 as our seeks are
3535         int64-based and overflows will fail badly.
3536
3537         After seeks also don't push SimpleBlocks until the first one
3538         containing a keyframe is found. Before this was done only for normal
3539         Blocks.
3540
3541         Update some FIXME/TODOs.
3542         
3543         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3544         (gst_ebml_read_utf8), (gst_ebml_read_header):
3545         Improve debug output.
3546
3547         * gst/matroska/matroska-ids.c:
3548         (gst_matroska_track_init_video_context):
3549         * gst/matroska/matroska-ids.h:
3550         * gst/matroska/matroska-mux.c:
3551         (gst_matroska_mux_video_pad_setcaps):
3552         Remove eye mode and don't parse it anymore. We can't use that
3553         information in GStreamer yet so it's useless.
3554
3555
3556 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3557
3558         Patch by: Mersad Jelacic <mersad at axis dot com>
3559
3560         * gst/rtp/Makefile.am:
3561         * gst/rtp/gstrtp.c: (plugin_init):
3562         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3563         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3564         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3565         (gst_rtp_g726_depay_plugin_init):
3566         * gst/rtp/gstrtpg726depay.h:
3567         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3568         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3569         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3570         * gst/rtp/gstrtpg726pay.h:
3571         Added G726 pay/depayloaders. Fixes #538891.
3572
3573 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3574
3575         * gst/rtsp/URLS:
3576         Some more urls.
3577
3578         * gst/smpte/barboxwipes.c:
3579         Add a comment
3580
3581         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3582         Fix typo, add audioresample to the pipeline.
3583
3584 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3585
3586         * ext/libmng/Makefile.am:
3587         * ext/libmng/gstmng.c: (plugin_init):
3588         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3589         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3590         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3591         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3592         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3593         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3594         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3595         (gst_mng_dec_change_state):
3596         * ext/libmng/gstmngdec.h:
3597         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3598         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3599         (gst_mng_enc_init), (gst_mng_enc_chain),
3600         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3601         * ext/libmng/gstmngenc.h:
3602         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3603         bits ifdeffed out still.
3604
3605 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3606
3607         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3608         When comparing index elements with the same time compare their
3609         block number.
3610
3611 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
3612
3613         * gst/matroska/matroska-demux.c:
3614           (gst_matroska_demux_parse_attached_file)
3615           Init variable to NULL to avoid compiler warning.
3616
3617 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3618
3619         * gst/matroska/Makefile.am:
3620         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3621         (gst_matroska_demux_parse_attached_file),
3622         (gst_matroska_demux_parse_attachments),
3623         (gst_matroska_demux_parse_contents_seekentry),
3624         (gst_matroska_demux_loop_stream_parse_id):
3625         * gst/matroska/matroska-demux.h:
3626         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3627         * gst/matroska/matroska-ids.h:
3628         * gst/matroska/matroska.c: (plugin_init):
3629         Parse Attachments and post them as GST_TAG_IMAGE if we detect
3630         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3631         and description of the attachments in the caps. Fixes bug #537622.
3632
3633 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
3634
3635         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3636         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3637         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3638         (gst_speex_enc_src_query), (gst_speex_enc_init),
3639         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3640         (gst_speex_enc_chain), (gst_speex_enc_get_property),
3641         (gst_speex_enc_set_property):
3642         Add mode property.
3643         Some cleanups, add more debug info.
3644         Add latency query.
3645
3646 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3647
3648         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3649         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3650         If we get less bytes than requested we can't do anything except doing
3651         our EOS logic.
3652
3653 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3654
3655         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3656         (gst_matroskademux_do_index_seek),
3657         (gst_matroska_demux_parse_index_cuetrack),
3658         (gst_matroska_demux_parse_index_pointentry),
3659         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3660         (gst_matroska_demux_parse_metadata):
3661         * gst/matroska/matroska-demux.h:
3662         * gst/matroska/matroska-ids.h:
3663         Use a GArray for storing the Cue (i.e. seek) information, store
3664         the CueTrackPositions for every track, store the block number
3665         and optimize searching in the array by sorting it after the last
3666         element was added.
3667
3668         Fix a small memory leak when trying to parse a tags element that was
3669         already parsed.
3670
3671 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3672
3673         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3674         (gst_matroska_mux_start), (gst_matroska_mux_finish),
3675         (gst_matroska_mux_write_data):
3676         * gst/matroska/matroska-mux.h:
3677         Don't write another SeekHead which indexes all Clusters to the end of
3678         the file. This isn't useful for anything and just increases filesize.
3679
3680 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3681
3682         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3683         Prevent unaligned memory access when reading floats.
3684
3685 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3686
3687         * gst/matroska/ebml-read.c:
3688         * gst/matroska/ebml-read.h:
3689         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3690         (gst_matroska_demux_parse_metadata):
3691         * gst/matroska/matroska-demux.h:
3692         Make sure that every Tags element is only parsed once and it's
3693         containing tags are only posted once.
3694
3695 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3696
3697         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3698         (gst_ebml_read_header):
3699         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3700         (gst_matroska_demux_parse_tracks),
3701         (gst_matroska_demux_parse_index_cuetrack),
3702         (gst_matroska_demux_parse_index_pointentry),
3703         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3704         (gst_matroska_demux_parse_metadata_id_simple_tag),
3705         (gst_matroska_demux_parse_metadata_id_tag),
3706         (gst_matroska_demux_parse_metadata),
3707         (gst_matroska_demux_parse_attachments),
3708         (gst_matroska_demux_parse_chapters),
3709         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3710         (gst_matroska_demux_parse_cluster),
3711         (gst_matroska_demux_parse_contents_seekentry),
3712         (gst_matroska_demux_parse_contents),
3713         (gst_matroska_demux_loop_stream_parse_id):
3714         Handle EBML elements like Void or CRC32 in the EbmlRead base class
3715         already. They're not useful in the matroska parser and only cause
3716         additional code.
3717
3718 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
3719
3720         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3721         (gst_ebml_finalize), (gst_ebml_read_change_state),
3722         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3723         * gst/matroska/matroska-demux.c:
3724         (gst_matroska_demux_parse_contents_seekentry):
3725         Reverse the level list as we usually are only interested in the
3726         first element or want to add a new first element. Having the
3727         first element stored at the end and calling g_list_last() and
3728         g_list_append() is more expensive.
3729
3730         Also use GSlice for allocating the GstEbmlLevel structs.
3731
3732 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
3733
3734         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3735           (gst_tag_inject_class_init), (gst_tag_inject_init):
3736           Don't unref NULL taglist in finalize. Don't use c++ style
3737           comments.
3738
3739 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3740
3741         * gst/matroska/matroska-demux.c:
3742         (gst_matroska_demux_parse_metadata_id_simple_tag):
3743         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3744         (gst_matroska_mux_write_data):
3745         Use gst_value_serialize() and gst_value_deserialize() for transforming
3746         tags from some GType to a string and the other way around. The default
3747         transformations in GLib don't include transformations from string to
3748         number types.
3749
3750 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3751
3752         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3753         (gst_matroska_demux_parse_tracks),
3754         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3755         (gst_matroska_demux_parse_attachments),
3756         (gst_matroska_demux_parse_chapters),
3757         (gst_matroska_demux_parse_contents_seekentry),
3758         (gst_matroska_demux_loop_stream_parse_id):
3759         * gst/matroska/matroska-demux.h:
3760         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3761         Tags multiple times. The first ones can appear more than once but must
3762         contain the same content as the first for backup purposes so we ignore
3763         all but the first one. Tags can appear multiple times with different
3764         content.
3765
3766         Jump to all elements except Clusters that are available from a
3767         SeekHead to make it more likely to have all required informations
3768         before getting to the first Clusters.
3769
3770         Add dummy functions for parsing Attachments and Chapters.
3771
3772 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3773
3774         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3775         (gst_udpsrc_create), (gst_udpsrc_set_property),
3776         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3777         * gst/udp/gstudpsrc.h:
3778         Add property to control automatic join/leave of multicast groups.
3779         Add G_LIKELY.
3780         Remove setting caps on buffers explicitly, basesrc does that for us now.
3781         Improve debug info.
3782         Convert some non-fatal error into warnings.
3783         Use g_ntohs for better portability.
3784         Leave multicast groups when stopping.
3785         When using external sockets, use getsockname() on them to fill up the
3786         addr structure before calling methods that use the structure.
3787         Should all fix #536903.
3788         API: GstUDPSrc::auto-multicast property
3789
3790 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3791
3792         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3793         Use g_ntohl for better portability.
3794
3795 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3796
3797         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3798         (gst_multiudpsink_remove):
3799         Fix a typo and do some small cleanups.
3800
3801 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3802
3803         Patch by: Olivier Crete <tester at tester dot ca>
3804
3805         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3806         Make the delivery-method mandatory on the caps and only accept inline
3807         for now.
3808         Reverse strcmp checks for delivery-method.
3809
3810         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3811         Make delivery method optional when parsing caps and note this in the
3812         caps.
3813         Reverse strcmp checks for delivery-method.
3814
3815         * gst/rtp/gstrtpvorbispay.c:
3816         Update a comment to note that the delivery-method is optional, 
3817         Fixes #537675.
3818
3819 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3820
3821         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3822         Set udpsrc for receiving data from multicast groups to PAUSED instead of
3823         leaving them in READY. Fixes #537832.
3824
3825 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3826
3827         * gst/avi/gstavimux.c:
3828           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3829           for a random constant in tagmuxing code.
3830
3831 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3832
3833         * gst/debug/gsttaginject.c:
3834         * gst/debug/gsttaginject.h:
3835           Now actually adding the new element.
3836
3837 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3838
3839         * docs/plugins/Makefile.am:
3840         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3841         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3842         * docs/plugins/gst-plugins-good-plugins.args:
3843         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3844         * docs/plugins/gst-plugins-good-plugins.interfaces:
3845         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3846         * docs/plugins/inspect/plugin-aasink.xml:
3847         * docs/plugins/inspect/plugin-alaw.xml:
3848         * docs/plugins/inspect/plugin-alpha.xml:
3849         * docs/plugins/inspect/plugin-alphacolor.xml:
3850         * docs/plugins/inspect/plugin-annodex.xml:
3851         * docs/plugins/inspect/plugin-apetag.xml:
3852         * docs/plugins/inspect/plugin-audiofx.xml:
3853         * docs/plugins/inspect/plugin-auparse.xml:
3854         * docs/plugins/inspect/plugin-autodetect.xml:
3855         * docs/plugins/inspect/plugin-avi.xml:
3856         * docs/plugins/inspect/plugin-cacasink.xml:
3857         * docs/plugins/inspect/plugin-cairo.xml:
3858         * docs/plugins/inspect/plugin-cdio.xml:
3859         * docs/plugins/inspect/plugin-cutter.xml:
3860         * docs/plugins/inspect/plugin-debug.xml:
3861         * docs/plugins/inspect/plugin-dv.xml:
3862         * docs/plugins/inspect/plugin-efence.xml:
3863         * docs/plugins/inspect/plugin-effectv.xml:
3864         * docs/plugins/inspect/plugin-equalizer.xml:
3865         * docs/plugins/inspect/plugin-esdsink.xml:
3866         * docs/plugins/inspect/plugin-flac.xml:
3867         * docs/plugins/inspect/plugin-flxdec.xml:
3868         * docs/plugins/inspect/plugin-gamma.xml:
3869         * docs/plugins/inspect/plugin-gconfelements.xml:
3870         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3871         * docs/plugins/inspect/plugin-goom.xml:
3872         * docs/plugins/inspect/plugin-goom2k1.xml:
3873         * docs/plugins/inspect/plugin-halelements.xml:
3874         * docs/plugins/inspect/plugin-icydemux.xml:
3875         * docs/plugins/inspect/plugin-id3demux.xml:
3876         * docs/plugins/inspect/plugin-jpeg.xml:
3877         * docs/plugins/inspect/plugin-level.xml:
3878         * docs/plugins/inspect/plugin-matroska.xml:
3879         * docs/plugins/inspect/plugin-monoscope.xml:
3880         * docs/plugins/inspect/plugin-mulaw.xml:
3881         * docs/plugins/inspect/plugin-multifile.xml:
3882         * docs/plugins/inspect/plugin-multipart.xml:
3883         * docs/plugins/inspect/plugin-navigationtest.xml:
3884         * docs/plugins/inspect/plugin-ossaudio.xml:
3885         * docs/plugins/inspect/plugin-png.xml:
3886         * docs/plugins/inspect/plugin-quicktime.xml:
3887         * docs/plugins/inspect/plugin-rtp.xml:
3888         * docs/plugins/inspect/plugin-rtsp.xml:
3889         * docs/plugins/inspect/plugin-smpte.xml:
3890         * docs/plugins/inspect/plugin-soup.xml:
3891         * docs/plugins/inspect/plugin-spectrum.xml:
3892         * docs/plugins/inspect/plugin-speex.xml:
3893         * docs/plugins/inspect/plugin-taglib.xml:
3894         * docs/plugins/inspect/plugin-udp.xml:
3895         * docs/plugins/inspect/plugin-video4linux2.xml:
3896         * docs/plugins/inspect/plugin-videobalance.xml:
3897         * docs/plugins/inspect/plugin-videobox.xml:
3898         * docs/plugins/inspect/plugin-videocrop.xml:
3899         * docs/plugins/inspect/plugin-videoflip.xml:
3900         * docs/plugins/inspect/plugin-videomixer.xml:
3901         * docs/plugins/inspect/plugin-wavenc.xml:
3902         * docs/plugins/inspect/plugin-wavpack.xml:
3903         * docs/plugins/inspect/plugin-wavparse.xml:
3904         * docs/plugins/inspect/plugin-ximagesrc.xml:
3905         * gst/debug/Makefile.am:
3906         * gst/debug/breakmydata.c:
3907         * gst/debug/efence.c:
3908         * gst/debug/gstdebug.c:
3909         * gst/debug/gstnavseek.c:
3910         * gst/debug/gstpushfilesrc.c:
3911         * gst/debug/gstpushfilesrc.h:
3912         * gst/debug/negotiation.c:
3913         * gst/debug/progressreport.c:
3914         * gst/debug/progressreport.h:
3915         * gst/debug/rndbuffersize.c:
3916         * gst/debug/testplugin.c:
3917           Remove dummy plugin_init. Remove some undefined entries from doc-
3918           section file. Add taginject element and rebuild docs for it.
3919
3920 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3921
3922         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
3923         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
3924         Update the counter for the number of streams when pads are added or
3925         removed. This will make sure that a seek table is generated for
3926         files with just one audio stream.
3927
3928 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3929
3930         * gst/matroska/matroska-demux.c:
3931         (gst_matroska_demux_parse_metadata_id_simple_tag):
3932         * gst/matroska/matroska-ids.h:
3933         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
3934         Add some more tags, improve debugging a bit and make sure that
3935         GValue transformation has succeeded before using the result
3936         as a tag.
3937
3938 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3939
3940         Patch by: Olivier Crete <tester at tester dot ca>
3941
3942         * gst/rtp/gstrtptheorapay.c:
3943         The Theora RTP payloader only supports the "inline" delievery method
3944         so let's declare this on the caps of the static pad template.
3945         Fixes bug #537675.
3946
3947 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3948
3949         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3950         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
3951         Remove bogus check.
3952
3953 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3954
3955         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3956         (gst_videomixer_blend_buffers):
3957         Use stream_time to synchronize the object properties.
3958         Use running_time of the master pad to timestamp outgoing buffers.
3959         Fix the initial segment event to extend an unknown amount of time.
3960         Fixes #537361.
3961
3962 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3963
3964         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
3965         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
3966         (gst_avi_demux_calculate_durations_from_index),
3967         (gst_avi_demux_stream_header_push),
3968         (gst_avi_demux_stream_header_pull):
3969         Try to ignore unparsable/unknown streams and give a warning instead of
3970         erroring out. Fixes #537377.
3971
3972 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3973
3974         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
3975         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
3976
3977         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
3978         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
3979         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
3980         (gst_matroska_demux_read_track_encodings),
3981         (gst_matroska_demux_add_stream),
3982         (gst_matroska_demux_handle_src_query),
3983         (gst_matroska_demux_init_stream),
3984         (gst_matroska_demux_parse_index_cuetrack),
3985         (gst_matroska_demux_parse_index_pointentry),
3986         (gst_matroska_demux_parse_info),
3987         (gst_matroska_demux_parse_metadata_id_simple_tag),
3988         (gst_matroska_demux_parse_metadata),
3989         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
3990         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3991         (gst_matroska_demux_parse_cluster),
3992         (gst_matroska_demux_parse_contents_seekentry),
3993         (gst_matroska_demux_loop_stream_parse_id),
3994         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
3995         (gst_matroska_demux_audio_caps),
3996         (gst_matroska_demux_subtitle_caps):
3997         * gst/matroska/matroska-demux.h:
3998         * gst/matroska/matroska-ids.c:
3999         (gst_matroska_track_init_subtitle_context):
4000         * gst/matroska/matroska-ids.h:
4001         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4002         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
4003         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
4004         (gst_matroska_mux_video_pad_setcaps),
4005         (gst_matroska_mux_audio_pad_setcaps),
4006         (gst_matroska_mux_subtitle_pad_setcaps),
4007         (gst_matroska_mux_request_new_pad),
4008         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
4009         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
4010         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
4011         (gst_matroska_mux_set_property):
4012         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
4013         elements, do some checks for valid values in the demuxer, handle
4014         tracktimecodescale in the demuxer, set correct default values for all
4015         settings in the demuxer, review and add all missing matroska
4016         IDs and some more raw YUV formats, and some trivial cleanup.
4017
4018 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4019
4020         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
4021         (gst_pulsemixer_class_init):
4022         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4023         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
4024         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4025         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
4026         (gst_pulsesrc_prepare):
4027         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
4028         gst_element_class_set_details_simple() and fix coding style a bit
4029         more.
4030
4031 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4032
4033         * docs/plugins/Makefile.am:
4034         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4035         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4036         * docs/plugins/gst-plugins-good-plugins.args:
4037         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4038         * docs/plugins/gst-plugins-good-plugins.interfaces:
4039         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4040         * docs/plugins/inspect/plugin-aasink.xml:
4041         * docs/plugins/inspect/plugin-alaw.xml:
4042         * docs/plugins/inspect/plugin-alpha.xml:
4043         * docs/plugins/inspect/plugin-alphacolor.xml:
4044         * docs/plugins/inspect/plugin-annodex.xml:
4045         * docs/plugins/inspect/plugin-apetag.xml:
4046         * docs/plugins/inspect/plugin-audiofx.xml:
4047         * docs/plugins/inspect/plugin-auparse.xml:
4048         * docs/plugins/inspect/plugin-autodetect.xml:
4049         * docs/plugins/inspect/plugin-avi.xml:
4050         * docs/plugins/inspect/plugin-cacasink.xml:
4051         * docs/plugins/inspect/plugin-cairo.xml:
4052         * docs/plugins/inspect/plugin-cdio.xml:
4053         * docs/plugins/inspect/plugin-cutter.xml:
4054         * docs/plugins/inspect/plugin-debug.xml:
4055         * docs/plugins/inspect/plugin-dv.xml:
4056         * docs/plugins/inspect/plugin-efence.xml:
4057         * docs/plugins/inspect/plugin-effectv.xml:
4058         * docs/plugins/inspect/plugin-equalizer.xml:
4059         * docs/plugins/inspect/plugin-esdsink.xml:
4060         * docs/plugins/inspect/plugin-flac.xml:
4061         * docs/plugins/inspect/plugin-flxdec.xml:
4062         * docs/plugins/inspect/plugin-gamma.xml:
4063         * docs/plugins/inspect/plugin-gconfelements.xml:
4064         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4065         * docs/plugins/inspect/plugin-goom.xml:
4066         * docs/plugins/inspect/plugin-goom2k1.xml:
4067         * docs/plugins/inspect/plugin-halelements.xml:
4068         * docs/plugins/inspect/plugin-icydemux.xml:
4069         * docs/plugins/inspect/plugin-id3demux.xml:
4070         * docs/plugins/inspect/plugin-jpeg.xml:
4071         * docs/plugins/inspect/plugin-level.xml:
4072         * docs/plugins/inspect/plugin-matroska.xml:
4073         * docs/plugins/inspect/plugin-monoscope.xml:
4074         * docs/plugins/inspect/plugin-mulaw.xml:
4075         * docs/plugins/inspect/plugin-multifile.xml:
4076         * docs/plugins/inspect/plugin-multipart.xml:
4077         * docs/plugins/inspect/plugin-navigationtest.xml:
4078         * docs/plugins/inspect/plugin-ossaudio.xml:
4079         * docs/plugins/inspect/plugin-png.xml:
4080         * docs/plugins/inspect/plugin-pulseaudio.xml:
4081         * docs/plugins/inspect/plugin-quicktime.xml:
4082         * docs/plugins/inspect/plugin-rtp.xml:
4083         * docs/plugins/inspect/plugin-rtsp.xml:
4084         * docs/plugins/inspect/plugin-smpte.xml:
4085         * docs/plugins/inspect/plugin-soup.xml:
4086         * docs/plugins/inspect/plugin-spectrum.xml:
4087         * docs/plugins/inspect/plugin-speex.xml:
4088         * docs/plugins/inspect/plugin-taglib.xml:
4089         * docs/plugins/inspect/plugin-udp.xml:
4090         * docs/plugins/inspect/plugin-video4linux2.xml:
4091         * docs/plugins/inspect/plugin-videobalance.xml:
4092         * docs/plugins/inspect/plugin-videobox.xml:
4093         * docs/plugins/inspect/plugin-videocrop.xml:
4094         * docs/plugins/inspect/plugin-videoflip.xml:
4095         * docs/plugins/inspect/plugin-videomixer.xml:
4096         * docs/plugins/inspect/plugin-wavenc.xml:
4097         * docs/plugins/inspect/plugin-wavpack.xml:
4098         * docs/plugins/inspect/plugin-wavparse.xml:
4099         * docs/plugins/inspect/plugin-ximagesrc.xml:
4100         * ext/pulse/plugin.c:
4101         * ext/pulse/pulsemixer.c:
4102         * ext/pulse/pulsesink.c:
4103         * ext/pulse/pulsesrc.c:
4104         Add documentation to the pulseaudio plugin and run make update
4105         in docs/plugins.
4106
4107 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4108
4109         Patch by: Brian Cameron <brian.cameron at sun dot com>
4110
4111         * sys/sunaudio/gstsunaudiomixerctrl.c:
4112         (gst_sunaudiomixer_ctrl_get_volume),
4113         (gst_sunaudiomixer_ctrl_set_volume):
4114         Improvements for the SunAudio mixer by handling mute as no gain
4115         for tracks that have a gain property but no mute property.
4116         Fixes bug #536067.
4117
4118 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4119
4120         * configure.ac:
4121         * ext/pulse/Makefile.am:
4122         * ext/pulse/plugin.c: (plugin_init):
4123         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4124         (gst_pulsemixer_implements_interface_init),
4125         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4126         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4127         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4128         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4129         * ext/pulse/pulsemixer.h:
4130         * ext/pulse/pulsemixerctrl.c:
4131         (gst_pulsemixer_ctrl_context_state_cb),
4132         (gst_pulsemixer_ctrl_sink_info_cb),
4133         (gst_pulsemixer_ctrl_source_info_cb),
4134         (gst_pulsemixer_ctrl_subscribe_cb),
4135         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4136         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4137         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4138         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4139         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4140         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4141         * ext/pulse/pulsemixerctrl.h:
4142         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4143         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4144         * ext/pulse/pulsemixertrack.h:
4145         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4146         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4147         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4148         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4149         (gst_pulseprobe_new), (gst_pulseprobe_free),
4150         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4151         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4152         (gst_pulseprobe_set_server):
4153         * ext/pulse/pulseprobe.h:
4154         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4155         (gst_pulsesink_class_init), (gst_pulsesink_init),
4156         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4157         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4158         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4159         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4160         (gst_pulsesink_stream_request_cb),
4161         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4162         (gst_pulsesink_close), (gst_pulsesink_prepare),
4163         (gst_pulsesink_unprepare), (gst_pulsesink_write),
4164         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4165         (gst_pulsesink_reset), (gst_pulsesink_change_title),
4166         (gst_pulsesink_event), (gst_pulsesink_get_type):
4167         * ext/pulse/pulsesink.h:
4168         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4169         (gst_pulsesrc_implements_interface_init),
4170         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4171         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4172         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4173         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4174         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4175         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4176         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4177         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4178         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4179         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4180         (gst_pulsesrc_get_type):
4181         * ext/pulse/pulsesrc.h:
4182         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4183         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4184         * ext/pulse/pulseutil.h:
4185         Add pulseaudio GStreamer element from gst-pulse. Development will
4186         continue here instead of pulseaudio SVN. Fixes bug #400679.
4187         Only changes over gst-pulse SVN are added copyright to the top of
4188         files and coding style changes.
4189
4190 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
4191
4192         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
4193
4194         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4195           (gst_cdio_add_cdtext_album_tags):
4196         * ext/cdio/gstcdio.h:
4197         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4198           Also extract album title and album genre from CD-TEXT if
4199           available (#537021).
4200
4201 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4202
4203         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4204
4205         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4206         Improve negotiation a bit more by picking the smallest possible
4207         resolution that is larger than the resolution specified in the
4208         first caps entry of the peer caps. Fixes bug #536994.
4209
4210 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4211
4212         Patch by: Bastien Nocera <hadess at hadess dot net>
4213
4214         * sys/v4l2/gstv4l2vidorient.c:
4215         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4216         Fix compilation with newer GIT kernels that deprecated
4217         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4218
4219 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4220
4221         * configure.ac:
4222         * ext/cdio/gstcdio.c:
4223         * ext/cdio/gstcdio.h:
4224         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4225           Require libcdio >= 0.76.
4226
4227 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
4228
4229         * gst/avi/gstavidemux.c:
4230         Catch UNEXPECTED when downstream has reached end of
4231         segment in reverse mode.
4232
4233 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4234
4235         * gst/avi/gstavidemux.c:
4236         Fix typo in comment
4237
4238 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4239
4240         * gst/avi/gstavidemux.c:
4241         Because we don't know the frame order we need to push till
4242         the next keyframe
4243
4244 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4245
4246         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4247
4248         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4249         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4250         Provide a custom negotiation function to make sure to pick the highest
4251         possible framerate and resolution. Fixes bug #536646.
4252
4253 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4254
4255         * gst/avi/gstavidemux.c:
4256         Set EOS when going out of the segment in reverse playback
4257
4258 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4259
4260         * ext/taglib/Makefile.am::
4261           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4262           taglib headers (with gcc 4.3.1).
4263
4264 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
4265
4266         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4267         Use the new gst_rtsp_connection_get_ip() to access the IP address
4268         of a GstRTSPConnection since it is a private member.
4269
4270 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4271
4272         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4273         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4274           Use new utility functions in libgsttag to process coverart (#512333).
4275
4276 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4277
4278         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4279         We actually support left/side, right/side and mid/side files. The
4280         conversion to normal, interleaved stereo is done by libflac.
4281
4282 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4283
4284         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4285         (gst_ebml_write_set_cache):
4286         Unref the write cache in finalize if it was set and add add "FIXME"
4287         to a comment that needs it.
4288
4289 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4290
4291         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4292
4293         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4294         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4295         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4296         (gst_avi_demux_process_next_entry):
4297         * gst/avi/gstavidemux.h:
4298         Implement reverse playback. Fixes #535300.
4299         Small cleanups.
4300
4301 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
4302
4303         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4304         (gst_videomixer_query_latency):
4305         When using gst_element_iterate_pads() one has to unref every pad
4306         after usage.
4307
4308 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
4309
4310         Patch by: Bastien Nocera <hadess at hadess dot net>
4311         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4312         (qtdemux_parse_udta):
4313         * gst/qtdemux/qtdemux_fourcc.h:
4314         Improve meta-data handling, add 'comment', 'description' and
4315         'copyright' tag handling.
4316         Fixes #535935
4317
4318 2008-05-31  Julien Moutte  <julien@fluendo.com>
4319
4320         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4321         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4322         (gst_qtdemux_seek_to_previous_keyframe),
4323         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4324         we don't clip the segment's stop using the main segment duration as
4325         that could crop quite some video frames. Make reverse playback support
4326         more robust and support edit lists. Support seeking to the last frame,
4327         and fix reverse looping playback. Add some debugging.
4328         * win32/common/config.h: Updated.
4329
4330 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
4331
4332         * gst/equalizer/gstiirequalizer.c:
4333         (gst_iir_equalizer_transform_ip):
4334         Don't clip float/double samples, correctly unset passthrough mode
4335         and use better rounding for integer samples.
4336
4337 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
4338
4339         * gst/equalizer/gstiirequalizer.c:
4340         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4341         (setup_filter), (set_passthrough), (update_coefficients),
4342         (gst_iir_equalizer_compute_frequencies),
4343         (gst_iir_equalizer_transform_ip):
4344         * gst/equalizer/gstiirequalizer.h:
4345         Update the filter coefficients only when needed in the transform_ip
4346         function and correctly set the element into passthrough mode if the
4347         gain of all bands is 0.
4348
4349 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4350
4351         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4352
4353         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4354         (gst_alpha_set_property), (gst_alpha_get_property),
4355         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4356         Try to skip pixels or areas that are too dark or too bright for us to do
4357         meaningfull color detection.
4358         Added properties to control the sensitivity to light and darkness.
4359         Added some small cleanups. Fixes #512345.
4360
4361 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
4362
4363         * docs/plugins/.cvsignore:
4364         * tests/check/elements/.cvsignore:
4365         Ignore some more generated things
4366
4367         * tests/check/Makefile.am:
4368         Ignore OSS elements in the state changes test too.
4369
4370 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4371
4372         * docs/plugins/Makefile.am:
4373         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4374         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4375         Add SMPTE effect elements to docs.
4376
4377 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4378
4379         * docs/plugins/Makefile.am:
4380         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4381         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4382         * ext/raw1394/gstdv1394src.c:
4383           Document whats first shown on the fdo plugin docs page :)
4384
4385 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4386
4387         * docs/plugins/Makefile.am:
4388         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4389         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4390         * docs/plugins/gst-plugins-good-plugins.args:
4391         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4392         * docs/plugins/inspect/plugin-audiofx.xml:
4393         * gst/audiofx/Makefile.am:
4394         * gst/audiofx/audiofx.c:
4395         * gst/audiofx/audiokaraoke.c:
4396         * gst/audiofx/audiokaraoke.h:
4397         * gst/audiofx/audiovoice.c:
4398         * gst/audiofx/audiovoice.h:
4399           Rename audiovoice to audiokaraoke and add it to the docs.
4400
4401 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4402
4403         * REQUIREMENTS:
4404         * docs/plugins/Makefile.am:
4405         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4406         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4407         * docs/plugins/gst-plugins-good-plugins.args:
4408         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4409         * docs/plugins/gst-plugins-good-plugins.interfaces:
4410         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4411         * docs/plugins/inspect/plugin-aasink.xml:
4412         * docs/plugins/inspect/plugin-alaw.xml:
4413         * docs/plugins/inspect/plugin-alpha.xml:
4414         * docs/plugins/inspect/plugin-alphacolor.xml:
4415         * docs/plugins/inspect/plugin-annodex.xml:
4416         * docs/plugins/inspect/plugin-apetag.xml:
4417         * docs/plugins/inspect/plugin-audiofx.xml:
4418         * docs/plugins/inspect/plugin-auparse.xml:
4419         * docs/plugins/inspect/plugin-autodetect.xml:
4420         * docs/plugins/inspect/plugin-avi.xml:
4421         * docs/plugins/inspect/plugin-cacasink.xml:
4422         * docs/plugins/inspect/plugin-cairo.xml:
4423         * docs/plugins/inspect/plugin-cdio.xml:
4424         * docs/plugins/inspect/plugin-cutter.xml:
4425         * docs/plugins/inspect/plugin-debug.xml:
4426         * docs/plugins/inspect/plugin-dv.xml:
4427         * docs/plugins/inspect/plugin-efence.xml:
4428         * docs/plugins/inspect/plugin-effectv.xml:
4429         * docs/plugins/inspect/plugin-equalizer.xml:
4430         * docs/plugins/inspect/plugin-esdsink.xml:
4431         * docs/plugins/inspect/plugin-flac.xml:
4432         * docs/plugins/inspect/plugin-flxdec.xml:
4433         * docs/plugins/inspect/plugin-gamma.xml:
4434         * docs/plugins/inspect/plugin-gconfelements.xml:
4435         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4436         * docs/plugins/inspect/plugin-goom.xml:
4437         * docs/plugins/inspect/plugin-goom2k1.xml:
4438         * docs/plugins/inspect/plugin-halelements.xml:
4439         * docs/plugins/inspect/plugin-icydemux.xml:
4440         * docs/plugins/inspect/plugin-id3demux.xml:
4441         * docs/plugins/inspect/plugin-jpeg.xml:
4442         * docs/plugins/inspect/plugin-level.xml:
4443         * docs/plugins/inspect/plugin-matroska.xml:
4444         * docs/plugins/inspect/plugin-monoscope.xml:
4445         * docs/plugins/inspect/plugin-mulaw.xml:
4446         * docs/plugins/inspect/plugin-multifile.xml:
4447         * docs/plugins/inspect/plugin-multipart.xml:
4448         * docs/plugins/inspect/plugin-navigationtest.xml:
4449         * docs/plugins/inspect/plugin-ossaudio.xml:
4450         * docs/plugins/inspect/plugin-png.xml:
4451         * docs/plugins/inspect/plugin-quicktime.xml:
4452         * docs/plugins/inspect/plugin-rtp.xml:
4453         * docs/plugins/inspect/plugin-rtsp.xml:
4454         * docs/plugins/inspect/plugin-smpte.xml:
4455         * docs/plugins/inspect/plugin-soup.xml:
4456         * docs/plugins/inspect/plugin-spectrum.xml:
4457         * docs/plugins/inspect/plugin-speex.xml:
4458         * docs/plugins/inspect/plugin-taglib.xml:
4459         * docs/plugins/inspect/plugin-udp.xml:
4460         * docs/plugins/inspect/plugin-video4linux2.xml:
4461         * docs/plugins/inspect/plugin-videobalance.xml:
4462         * docs/plugins/inspect/plugin-videobox.xml:
4463         * docs/plugins/inspect/plugin-videocrop.xml:
4464         * docs/plugins/inspect/plugin-videoflip.xml:
4465         * docs/plugins/inspect/plugin-videomixer.xml:
4466         * docs/plugins/inspect/plugin-wavenc.xml:
4467         * docs/plugins/inspect/plugin-wavpack.xml:
4468         * docs/plugins/inspect/plugin-wavparse.xml:
4469         * docs/plugins/inspect/plugin-ximagesrc.xml:
4470         * ext/aalib/gstaasink.c:
4471         * ext/libcaca/gstcacasink.c:
4472           Document aasink and cacasink.
4473
4474 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
4475
4476         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4477         (gst_videomixer_init), (gst_videomixer_query_duration),
4478         (gst_videomixer_query_latency), (gst_videomixer_query),
4479         (gst_videomixer_blend_buffers):
4480         * gst/videomixer/videomixer.h:
4481         Implement position (in time), duration and latency queries.
4482
4483 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
4484
4485         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4486         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4487         (gst_videomixer_fill_queues), (forward_event_func),
4488         (forward_event), (gst_videomixer_src_event),
4489         (gst_videomixer_sink_event):
4490         * gst/videomixer/videomixer.h:
4491         Implement proper seek/newsegment handling.
4492         Based on adder's implementation.
4493         Fixes #535121
4494
4495 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4496
4497         Patch by: Jan Gerber <j at oil21 dot org>
4498
4499         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4500         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4501
4502 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4503
4504         * gst/audiofx/Makefile.am:
4505         * gst/audiofx/audiofx.c: (plugin_init):
4506         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4507         (gst_audio_voice_class_init), (gst_audio_voice_init),
4508         (update_filter), (gst_audio_voice_set_property),
4509         (gst_audio_voice_get_property), (gst_audio_voice_setup),
4510         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4511         (gst_audio_voice_transform_ip):
4512         * gst/audiofx/audiovoice.h:
4513         Add simple voice removal element. Yay karaoke.
4514
4515 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4516
4517         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4518
4519         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4520         Fix potential caps leak.
4521         If we can't get the framerate with an ioctl, try to get it with the
4522         current norm. Fixes #520092.
4523
4524 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4525
4526         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4527
4528         * sys/v4l2/v4l2src_calls.c:
4529         (gst_v4l2src_probe_caps_for_format_and_size):
4530         If we fail to get the frame intervals, simply don't touch the framerates
4531         on the template caps instead of discarding the format. See #520092.
4532
4533 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4534
4535         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4536
4537         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4538         (gst_v4l2_get_caps_info):
4539         Add NV12, NV21 and bayer support. See #520092.
4540
4541 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4542
4543         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4544         (gst_qtdemux_activate_segment):
4545         Unbreak segment activation again. Fixes #531672.
4546
4547 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
4548
4549         * ext/flac/Makefile.am:
4550         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4551         Set the channel layout when decoding FLAC files with more than 2
4552         channels as defined by the FLAC spec. Fixes bug #534570.
4553
4554         Also don't try to decode left/side, right/side and mid/side files
4555         as we don't support this at all.
4556
4557 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
4558
4559         * configure.ac:
4560           We need -base CVS (rtsp).
4561
4562 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
4563
4564         * gst/udp/Makefile.am:
4565           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4566           when including netdb.h when building against glibc >= 2.8.
4567
4568 2008-05-22  Julien Moutte  <julien@fluendo.com>
4569
4570         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4571         debug statement arguments.
4572         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4573         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4574         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4575         on more platforms.
4576
4577 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4578
4579         * tests/check/elements/avimux.c: (setup_src_pad),
4580         (teardown_src_pad):
4581         * tests/check/elements/icydemux.c: (icydemux_found_pad),
4582         (GST_START_TEST):
4583         * tests/check/elements/matroskamux.c: (setup_src_pad),
4584         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4585         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4586         (GST_START_TEST):
4587         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4588         (setup_wavpackparse), (cleanup_wavpackparse):
4589         Don't use gst_element_get_pad(), it's a bad, bad method.
4590
4591 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4592
4593         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4594         (do_toggle_element):
4595         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4596         (do_toggle_element):
4597         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4598         (do_toggle_element):
4599         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4600         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4601         (do_toggle_element):
4602         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4603         (do_toggle_element):
4604         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4605         (gst_auto_audio_sink_detect):
4606         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4607         (gst_auto_video_sink_detect):
4608         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4609         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4610         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4611         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4612         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4613         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4614         * tests/icles/videocrop-test.c: (test_with_caps),
4615         (video_crop_get_test_caps):
4616         Don't use gst_element_get_pad(), it's a bad method.
4617
4618 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4619
4620         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4621         (gst_multiudpsink_add_internal):
4622         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4623         (gst_udp_join_group):
4624         * gst/udp/gstudpnetutils.h:
4625         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4626         Joining a multicast group and setting the loop/ttl properties are
4627         totally unrelated tasks are must be separated.
4628
4629 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
4630
4631         * gst/avi/gstavimux.c:
4632           Also support alaw/mulaw.
4633
4634 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4635
4636         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4637         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4638         * gst/udp/gstmultiudpsink.h:
4639         Add a fixme for the auto-multicast property.
4640         Fix some confusing debug messages.
4641         Disable setting a qos value by default.
4642
4643 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4644
4645         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4646
4647         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4648         Ignore EPERM errors from sendto. Fixes #533619.
4649
4650 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4651
4652         Patch by: Henrik Eriksson <henriken at axis dot com>
4653
4654         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4655         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4656         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4657         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4658         * gst/udp/gstmultiudpsink.h:
4659         Add qos-dscp property to manage the Quality of service. Fixes #469917.
4660
4661 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4662
4663         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4664         Improve debugging of the ident.
4665
4666 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4667
4668         Patch by: Bruno Santos <brunof at ua dot pt>
4669
4670         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4671         (gst_udp_join_group), (gst_udp_leave_group),
4672         (gst_udp_is_multicast):
4673         * gst/udp/gstudpnetutils.h:
4674         Provide a bunch of helper methods to deal with IPv4 and IPv6
4675         transparently.
4676
4677         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4678         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4679         (gst_multiudpsink_get_property), (join_multicast),
4680         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4681         (gst_multiudpsink_remove):
4682         * gst/udp/gstmultiudpsink.h:
4683         Add multicast TTL and loopback properties.
4684         Use the helper methods to implement ip4 and ip6.
4685
4686         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4687         * gst/udp/gstudpsrc.h:
4688         Use the helper methods to implement ip4 and ip6.
4689         Fixes #515962.
4690
4691 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4692
4693         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4694
4695         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4696         (gst_multipart_demux_get_gstname),
4697         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4698         * gst/multipart/multipartdemux.h:
4699         Don't blindly copy the mime-type as the caps name because they not
4700         always map directly. Instead use a hashtable with common mappings.
4701         Fixes #533287.
4702
4703 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4704
4705         * ext/esd/esdsink.c: (gst_esdsink_write):
4706         When we post an error, we must return -1 to let the parent know that we
4707         cannot write the segment else it will loop and continue to call us again
4708         forever. Patch by Michael Meeks.
4709
4710 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
4711
4712         * gst/videomixer/videomixer.c:
4713           Add missing incudes.
4714
4715 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
4716
4717         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4718         (gst_rtp_h264_pay_handle_buffer):
4719         * gst/rtp/gstrtph264pay.h:
4720         Correct a typo (sinle -> single).
4721
4722 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4723
4724         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4725         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4726         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4727         (gst_rtp_h264_depay_process):
4728         * gst/rtp/gstrtph264depay.h:
4729         Add experimental support for outputting quicktime-like AVC output in
4730         addition to the existing bytestream output.
4731
4732         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4733         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4734         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4735         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4736         (gst_rtp_h264_pay_get_property):
4737         * gst/rtp/gstrtph264pay.h:
4738         Make the parsing mode configurable, for some inputs we don't need to
4739         scan every byte for start codes.
4740         Only set the marker bit on ACCESS units.
4741
4742 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
4743
4744         * gst/equalizer/gstiirequalizer.c:
4745         Use a bigger type in integer mode for the intermediate results to
4746         prevent overflows. This fixes the crippled sound when using the
4747         equalizer in integer mode. Fixes bug #510865.
4748
4749 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
4750
4751         * gst/videomixer/videomixer.c:
4752         * gst/videomixer/videomixer.h:
4753         Instead of a random number for the request pad id's,
4754         use a counter.
4755
4756         Register the videomixerpad class from the element's class_init
4757         where it's safer, and allows the docs generator to scan it.
4758
4759 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4760
4761         * gst/smpte/Makefile.am:
4762         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4763         * gst/smpte/gstsmpte.h:
4764         * gst/smpte/gstsmptealpha.c:
4765         (gst_smpte_alpha_transition_type_get_type),
4766         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4767         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4768         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4769         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4770         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4771         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4772         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4773         * gst/smpte/gstsmptealpha.h:
4774         * gst/smpte/plugin.c: (plugin_init):
4775         Add new plugin that adds the SMPTE transition in the alpha channel of
4776         I420 and AYUV frames so that they can be blended with videomixer later
4777         on. Uses all niceties such as using base transform for efficient alloc
4778         and negotiation. It currently requires GstController to control the
4779         position in the transition effect.
4780
4781 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
4782
4783         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4784         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4785         * docs/plugins/gst-plugins-good-plugins.args:
4786         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4787         * docs/plugins/gst-plugins-good-plugins.interfaces:
4788         * docs/plugins/gst-plugins-good-plugins.types:
4789         * gst/videomixer/videomixer.c:
4790           Try using thaytans new mechanism to get extra classes into plugin
4791           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4792           missing still.
4793
4794 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
4795
4796         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4797         Set proper rate in avi stream header for PCM audio, and also do some
4798         more sanity checks on caps in this case.  Fixes #511489.
4799
4800 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4801
4802         * sys/v4l2/gstv4l2src.c:
4803         Don't include the gstv4l2xoverlay.h header as the XOverlay support
4804         isn't implemented at all yet and this requires X headers to be
4805         installed. Fixes bug #533264.
4806
4807 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4808
4809         reviewed by: <delete if not using a buddy>
4810
4811         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4812         (gst_ebml_write_set_cache):
4813         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4814         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4815         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4816         (gst_matroska_demux_read_track_encodings),
4817         (gst_matroska_demux_add_stream),
4818         (gst_matroska_demux_handle_src_query),
4819         (gst_matroska_demux_init_stream),
4820         (gst_matroska_demux_parse_index_cuetrack),
4821         (gst_matroska_demux_parse_index_pointentry),
4822         (gst_matroska_demux_parse_info),
4823         (gst_matroska_demux_parse_metadata_id_simple_tag),
4824         (gst_matroska_demux_parse_metadata),
4825         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4826         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4827         (gst_matroska_demux_parse_cluster),
4828         (gst_matroska_demux_parse_contents_seekentry),
4829         (gst_matroska_demux_loop_stream_parse_id),
4830         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4831         (gst_matroska_demux_audio_caps),
4832         (gst_matroska_demux_subtitle_caps):
4833         * gst/matroska/matroska-demux.h:
4834         * gst/matroska/matroska-ids.c:
4835         (gst_matroska_track_init_subtitle_context):
4836         * gst/matroska/matroska-ids.h:
4837         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4838         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4839         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4840         * sys/v4l2/gstv4l2src.c:
4841         * tests/check/pipelines/wavpack.c: (bus_handler):
4842         * win32/common/config.h:
4843
4844 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
4845
4846         * ext/wavpack/gstwavpackstreamreader.c:
4847         * tests/examples/spectrum/demo-audiotest.c:
4848         * tests/examples/spectrum/demo-osssrc.c:
4849         Fix some compiler warnings.
4850
4851 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4852
4853         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4854         Small comment added.
4855
4856         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4857         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4858         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4859         Debug string cleanups (remove trailing \n)
4860         Refactor and clean up the payloader a bit and make sure that we only
4861         put one NAL unit in an RTP packet even if the input buffer contains
4862         multiple NAL units.
4863         Add suport for AVC format input.
4864
4865 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
4866
4867         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4868         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4869         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4870         * gst/rtp/gstrtph264pay.h:
4871         Make it possible to specify profile-level-id and sprop-parameter-sets
4872         using properties in case they are not available in-stream.
4873
4874 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
4875
4876         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4877         * docs/plugins/gst-plugins-good-plugins.args:
4878         * docs/plugins/inspect/plugin-ladspa.xml:
4879           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4880
4881 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
4882
4883         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4884         Send an initial BYTE segment to inform downstream of later seeking,
4885         and to forego sync attempts.
4886
4887 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4888
4889         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4890         Fix wrong caps string.
4891
4892 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4893
4894         Based on patch by: Olivier Crete <tester at tester dot ca>
4895
4896         * gst/rtp/Makefile.am:
4897         * gst/rtp/gstrtp.c: (plugin_init):
4898         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4899         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4900         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4901         (gst_rtp_g729_depay_plugin_init):
4902         * gst/rtp/gstrtpg729depay.h:
4903         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4904         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4905         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4906         * gst/rtp/gstrtpg729pay.h:
4907         Added G729 pay and depayloaders. Fixes #532409.
4908
4909 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4910
4911         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4912         Fix the calculation of the duration of the concealment packets.
4913
4914 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4915
4916         Based on patch by: Olivier Crete <tester at tester dot ca>
4917
4918         * gst/rtp/Makefile.am:
4919         * gst/rtp/gstrtp.c: (plugin_init):
4920         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4921         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
4922         (parse_encode), (gst_rtp_dv_depay_setcaps),
4923         (calculate_difblock_location), (gst_rtp_dv_depay_process),
4924         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
4925         (gst_rtp_dv_depay_plugin_init):
4926         * gst/rtp/gstrtpdvdepay.h:
4927         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
4928         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
4929         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
4930         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
4931         (gst_dv_pay_negotiate), (include_dif),
4932         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
4933         * gst/rtp/gstrtpdvpay.h:
4934         Add DV pay and depayloaders. Fixes #532423.
4935
4936 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4937
4938         * gst/matroska/matroska-demux.c:
4939         (gst_matroska_demux_push_dvd_clut_change_event):
4940         Convert subtitle palette info in VobSub private data from VobSub's
4941         (buggy) RGB to YUV.
4942
4943 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4944
4945         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
4946         Do not leave fourcc stream header field empty upon reset.
4947         Fixes #519301.
4948
4949 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4950
4951         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4952         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4953         * docs/plugins/inspect/plugin-goom.xml:
4954         * docs/plugins/inspect/plugin-goom2k1.xml:
4955         * gst/goom/gstgoom.c:
4956         * gst/goom2k1/gstgoom.c:
4957         Add goom2k1 into the docs.
4958
4959 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4960
4961         Based on patch by: Wouter Cloetens  <wouter at mind be>
4962
4963         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4964         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
4965         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
4966         (gst_rtsp_decode_quoted_string),
4967         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
4968         (gst_rtspsrc_setup_auth):
4969         Support Digest authentication. Fixes #532065.
4970
4971 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
4972
4973         * gst/level/gstlevel.c:
4974           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
4975           about whats needed for liboil acceleration. Simplify docs a bit.
4976
4977 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4978
4979         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4980
4981         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
4982         Update the track duration if the old one was invalid.
4983         Fixes bug #532117.
4984
4985 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4986
4987         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
4988           Use GST_STR_NULL when trying to print sps and pps strings that could
4989           be NULL, as this might crash on some platforms.
4990
4991 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4992
4993         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4994
4995         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
4996           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
4997           set after creating the clipper.
4998
4999 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5000
5001         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5002
5003         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
5004           Added checking of surface lost case after an unsuccessful
5005           IDirectDrawSurface7_Lock() call.
5006           If surface is lost, return GST_FLOW_OK.
5007
5008 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5009
5010         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5011
5012         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
5013           WndProc, gst_directdraw_sink_window_thread):
5014           Improved Windows message loop and fixed window destruction issue.
5015           When the window which DirectDraw is rendering to is destroyed, the
5016           render/show_frame function will return GST_FLOW_ERROR.
5017           Partially fixes #520885.
5018
5019 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5020
5021         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5022
5023         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
5024           Fixed mid stream resolution change bug, the offscreen surface is now
5025           released when set_caps is called.
5026           Partially fixes #520885.
5027
5028 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5029
5030         * sys/directdraw/gstdirectdrawsink.c
5031           (gst_directdraw_sink_buffer_alloc):
5032           Make it so that gst_directdraw_sink_buffer_alloc uses the right
5033           width/height.
5034
5035           Especially when looking through the pool of buffers, make sure that
5036           the width/height of caps is used instead of the already negotiated
5037           dimensions.
5038           For example if a buffer with different caps is requested, i.e.
5039           higher resolution, the caller would get a buffer with the old
5040           dimensions and thus corrupt the heap.
5041
5042 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5043
5044         * sys/directdraw/gstdirectdrawsink.c
5045           (gst_directdraw_sink_buffer_alloc):
5046           Clear the flags on recycled buffers from buffer_alloc.
5047           Partially fixes #520885.
5048
5049 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5050
5051         * gst/rtp/gstrtpilbcpay.c:
5052           Added missing stdlib.h include for strtol(), and made include ordering and
5053           style consistent with the corresponding depayloader.
5054
5055 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
5056
5057         * configure.ac:
5058           Error out if we don't have the required core/base versions.
5059
5060 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
5061
5062         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5063
5064         * sys/osxvideo/cocoawindow.m:
5065         Fix compiler warnings on PPC64. Fixes bug #499318.
5066
5067 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5068
5069         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5070
5071         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
5072         Don't leak file descriptors on error. Fixes #531532.
5073
5074 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
5075
5076         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
5077         (gst_gconf_audio_src_change_state):
5078         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
5079         (gst_gconf_video_sink_change_state):
5080         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
5081         (gst_gconf_video_src_change_state):
5082         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5083         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
5084         When we can't create a fakesink/fakesrc complain instead of unreffing
5085         NULL pointers and crashing later. See bug #530535.
5086
5087 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5088
5089         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5090         Add some more debug info and guard against small payloads.
5091
5092         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
5093         Set duration on outgoing buffers because we can.
5094
5095 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5096
5097         Patch by: Olivier Crete <tester at tester dot ca>
5098
5099         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
5100         (gst_speex_enc_init), (gst_speex_enc_chain):
5101         Add negotiation for the speex channels and rate. Fixes #465146.
5102
5103 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5104
5105         Patch by: Olivier Crete <tester at tester dot ca>
5106
5107         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
5108         (gst_rtp_speex_pay_getcaps):
5109         Add negotiation for the speex channels and rate. See #465146.
5110
5111 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5112
5113         Patch by: Olivier Crete <tester at tester dot ca>
5114
5115         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5116         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5117         Add negotiation for the ILBC mode. See #465146.
5118
5119 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
5120
5121         * ext/soup/gstsouphttpsrc.c:
5122           Include stdlib to fix the build. Use g_free instead of free, libsoup
5123           uses glib.
5124
5125 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5126
5127         Patch by: j^ <j@bootlab.org>
5128
5129         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5130         Add more mpeg2 variants. Fixes #530886.
5131
5132 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
5133
5134         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5135
5136         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5137           Don't error out if we get an ICMP destination-unreachable
5138           message when trying to read packets on win32 (#529454).
5139
5140 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5141
5142         * configure.ac:
5143         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5144           Use new error code for encrypted streams (which requires core CVS).
5145
5146 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5147
5148         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5149           (gst_qtdemux_audiosrc_template):
5150           Fix swapped pad template names, spotted by Thiago Sousa Santos.
5151
5152 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5153
5154         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5155         (speex_dec_chain_parse_data):
5156         Produce concealment data when time progresses in a segment update.
5157
5158 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
5159
5160         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5161         (speex_dec_chain):
5162         Try to preserve input timestamps when we can.
5163         Do beginnings of error concealment.
5164
5165 2008-04-28  Michael Smith <msmith@songbirdnest.com>
5166
5167         * gst/debug/gstnavigationtest.c:
5168           MSVC doesn't provide rint(), define an adequate replacement locally as
5169           elsewhere.
5170
5171 2008-04-28  Julien Moutte  <julien@fluendo.com>
5172
5173         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5174         format to pacify Mac OSX's gcc.
5175
5176 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5177
5178         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5179           (DEFAULT_MAX), (src_template), (sink_template),
5180           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5181           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5182           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5183           Bring rndbuffersize element into a state that doesn't require us
5184           to move it to -bad immediately. For one, fix up default min/max
5185           values so that the element actuall works using the default values.
5186           Also, don't ignore flow return values and do some kind of minimal
5187           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5188           other gratuitious clean-ups.
5189
5190 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5191
5192         * docs/plugins/Makefile.am:
5193         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5194         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5195         * docs/plugins/gst-plugins-good-plugins.args:
5196         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5197         * docs/plugins/gst-plugins-good-plugins.interfaces:
5198         * docs/plugins/gst-plugins-good-plugins.prerequisites:
5199         * docs/plugins/inspect/plugin-1394.xml:
5200         * docs/plugins/inspect/plugin-aasink.xml:
5201         * docs/plugins/inspect/plugin-alaw.xml:
5202         * docs/plugins/inspect/plugin-alpha.xml:
5203         * docs/plugins/inspect/plugin-alphacolor.xml:
5204         * docs/plugins/inspect/plugin-annodex.xml:
5205         * docs/plugins/inspect/plugin-apetag.xml:
5206         * docs/plugins/inspect/plugin-audiofx.xml:
5207         * docs/plugins/inspect/plugin-auparse.xml:
5208         * docs/plugins/inspect/plugin-autodetect.xml:
5209         * docs/plugins/inspect/plugin-avi.xml:
5210         * docs/plugins/inspect/plugin-cacasink.xml:
5211         * docs/plugins/inspect/plugin-cairo.xml:
5212         * docs/plugins/inspect/plugin-cdio.xml:
5213         * docs/plugins/inspect/plugin-cutter.xml:
5214         * docs/plugins/inspect/plugin-debug.xml:
5215         * docs/plugins/inspect/plugin-dv.xml:
5216         * docs/plugins/inspect/plugin-efence.xml:
5217         * docs/plugins/inspect/plugin-effectv.xml:
5218         * docs/plugins/inspect/plugin-equalizer.xml:
5219         * docs/plugins/inspect/plugin-esdsink.xml:
5220         * docs/plugins/inspect/plugin-flac.xml:
5221         * docs/plugins/inspect/plugin-flxdec.xml:
5222         * docs/plugins/inspect/plugin-gamma.xml:
5223         * docs/plugins/inspect/plugin-gconfelements.xml:
5224         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5225         * docs/plugins/inspect/plugin-goom.xml:
5226         * docs/plugins/inspect/plugin-halelements.xml:
5227         * docs/plugins/inspect/plugin-icydemux.xml:
5228         * docs/plugins/inspect/plugin-id3demux.xml:
5229         * docs/plugins/inspect/plugin-jpeg.xml:
5230         * docs/plugins/inspect/plugin-level.xml:
5231         * docs/plugins/inspect/plugin-matroska.xml:
5232         * docs/plugins/inspect/plugin-monoscope.xml:
5233         * docs/plugins/inspect/plugin-mulaw.xml:
5234         * docs/plugins/inspect/plugin-multifile.xml:
5235         * docs/plugins/inspect/plugin-multipart.xml:
5236         * docs/plugins/inspect/plugin-navigationtest.xml:
5237         * docs/plugins/inspect/plugin-ossaudio.xml:
5238         * docs/plugins/inspect/plugin-png.xml:
5239         * docs/plugins/inspect/plugin-quicktime.xml:
5240         * docs/plugins/inspect/plugin-rtp.xml:
5241         * docs/plugins/inspect/plugin-rtsp.xml:
5242         * docs/plugins/inspect/plugin-shout2send.xml:
5243         * docs/plugins/inspect/plugin-smpte.xml:
5244         * docs/plugins/inspect/plugin-spectrum.xml:
5245         * docs/plugins/inspect/plugin-speex.xml:
5246         * docs/plugins/inspect/plugin-taglib.xml:
5247         * docs/plugins/inspect/plugin-udp.xml:
5248         * docs/plugins/inspect/plugin-video4linux2.xml:
5249         * docs/plugins/inspect/plugin-videobalance.xml:
5250         * docs/plugins/inspect/plugin-videobox.xml:
5251         * docs/plugins/inspect/plugin-videocrop.xml:
5252         * docs/plugins/inspect/plugin-videoflip.xml:
5253         * docs/plugins/inspect/plugin-videomixer.xml:
5254         * docs/plugins/inspect/plugin-wavenc.xml:
5255         * docs/plugins/inspect/plugin-wavpack.xml:
5256         * docs/plugins/inspect/plugin-wavparse.xml:
5257         * docs/plugins/inspect/plugin-ximagesrc.xml:
5258           Add docs for gdkpixbufsink; update docs to CVS version.
5259
5260 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5261
5262         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5263         Remove test sync-offset by default.
5264
5265 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5266
5267         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5268         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5269         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5270           Use GLib versions of htonl, htons, ntohl and ntohs in order
5271           to avoid problems on win32 (#529707).
5272
5273 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5274
5275         Patch by: Jesús Corrius <jesus at softcatala org>
5276
5277         * gst/goom/filters.c: (zoomVector):
5278         * gst/goom/goom_core.c: (init_buffers):
5279           Fix build with mingw32: use rand() instead of random() and
5280           replace bzero() with memset(). Fixes #529692.
5281
5282 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5283
5284         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5285         Fix typo in comments.
5286
5287         * tests/examples/rtp/client-H263p-PCMA.sdp:
5288         * tests/examples/rtp/client-H263p-PCMA.sh:
5289         * tests/examples/rtp/client-H264-PCMA.sdp:
5290         * tests/examples/rtp/client-H264-PCMA.sh:
5291         * tests/examples/rtp/client-H264.sdp:
5292         * tests/examples/rtp/client-H264.sh:
5293         * tests/examples/rtp/client-PCMA.sdp:
5294         * tests/examples/rtp/client-PCMA.sh:
5295         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5296         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5297         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5298         Add some more docs and fix examples.
5299
5300 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
5301
5302         * tests/check/elements/multifile.c:
5303         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5304         declared in the former, some have it declared in the latter.
5305
5306 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
5307
5308         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5309         * gst/debug/tests.c: (md5_get_value):
5310         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5311         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5312         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5313         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5314         Stop using deprecated GLib functions.
5315
5316 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
5317
5318         * configure.ac:
5319         Back to development -> 0.10.8.1
5320
5321 === release 0.10.8 ===
5322
5323 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
5324
5325         * configure.ac:
5326           releasing 0.10.8, "One For The Money"
5327
5328 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5329
5330         * configure.ac:
5331         0.10.7.4 pre-release
5332
5333 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5334
5335         * gst/goom/config_param.c: (goom_plugin_parameters_free):
5336         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5337         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5338         * gst/goom/flying_stars_fx.c: (fs_free):
5339         * gst/goom/goom_config_param.h:
5340         * gst/goom/goom_core.c: (goom_init), (goom_close):
5341         * gst/goom/goom_plugin_info.h:
5342         * gst/goom/gstgoom.c: (gst_goom_finalize):
5343         * gst/goom/lines.c: (goom_lines_free):
5344         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5345         * gst/goom/surf3d.c: (grid3d_free):
5346         * gst/goom/surf3d.h:
5347         * gst/goom/tentacle3d.c: (tentacle_free):
5348         Free a bunch of stuff, and initialise things to fix leaks
5349         and valgrind warnings in the testsuite.
5350
5351         Fixes: #529268
5352
5353 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
5354
5355         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5356         (gst_rtspsrc_configure_caps):
5357         Ref caps as the return value for the request_pt_map signal.
5358         Remove some caps weirdness when configuring a stream. See #528245.
5359
5360 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
5361
5362         * tests/icles/gdkpixbufsink-test.c:
5363           Add cast to placate gcc 4.1.2.
5364
5365 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5366
5367         * configure.ac:
5368         0.10.7.3 pre-release
5369
5370 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5371
5372         * tests/check/Makefile.am:
5373         Disable some more elements in the state test.
5374         Add a define so the soup test can find the test files
5375         it needs at runtime.
5376
5377         * tests/check/elements/souphttpsrc.c: (run_server):
5378
5379         Add a define so the soup test can find the test files
5380         it needs at runtime.
5381
5382 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5383
5384         * gst/goom/convolve_fx.c: (convolve_apply):
5385         Don't ever draw the GOOM logo.
5386         Fixes: #528615
5387
5388 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5389
5390         * ext/cdio/gstcdiocddasrc.c:
5391         * ext/dv/gstdvdemux.c: 
5392         gst_atomic_int_set ==> g_atomic_int_set
5393
5394 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
5395
5396         * configure.ac:
5397         * gst/goom/Makefile.am:
5398         * gst/goom/convolve_fx.c:
5399         * gst/goom/default_scripts.h:
5400         * gst/goom/goom.h:
5401         * gst/goom/goom_core.c: (choose_a_goom_line):
5402         * gst/goom/goom_plugin_info.h:
5403         * gst/goom/goomsl.c:
5404         * gst/goom/goomsl.h:
5405         * gst/goom/goomsl_hash.c:
5406         * gst/goom/goomsl_hash.h:
5407         * gst/goom/goomsl_heap.c:
5408         * gst/goom/goomsl_heap.h:
5409         * gst/goom/goomsl_private.h:
5410         * gst/goom/plugin_info.c:
5411           Strip out the config/script parsing stuff, we don't need it.
5412           Fixes #527999.
5413
5414 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
5415
5416         * gst/goom/plugin_info.c: (setOptimizedMethods):
5417           Disable altivec optimisations for 32-bit PPC as well to make
5418           things build properly on all PPC systems. Fixes #528143
5419
5420 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
5421
5422         * gst-plugins-good.spec.in:
5423           Update for souphttpsrc plugin which has moved to -good.
5424
5425 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
5426
5427         * gst/matroska/matroska-demux.c:
5428         (gst_matroska_demux_handle_seek_event):
5429         Fix open-ended seeks in matroskademux
5430         Patch by: Mark Nauwelaerts <manauw skynet be>
5431         Fixes: #526557
5432
5433 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
5434
5435         * tests/check/Makefile.am:
5436         Add soup test certificates to the dist.
5437
5438 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5439
5440         * ext/Makefile.am:
5441         Remove LADSPA reference I missed.
5442
5443 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
5444
5445         * ext/soup/gstsouphttpsrc.c: (plugin_init):
5446         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5447         over gnome-vfs and everything else. Fixes bug #527848.
5448
5449 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5450
5451         * configure.ac:
5452         * ext/Makefile.am:
5453         Remove LADSPA plugin. Fixes: #515978
5454
5455 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5456
5457         * configure.ac:
5458         * docs/plugins/Makefile.am:
5459         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5460         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5461         * docs/plugins/gst-plugins-good-plugins.args:
5462         * docs/plugins/inspect/plugin-soup.xml:
5463         * ext/Makefile.am:
5464         * tests/check/Makefile.am:
5465         Move soup plugin from -bad (Fixes: #523124)
5466
5467 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
5468
5469         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5470         Fix bounds checking of mode in Speex header, which may
5471         produce negative numbers in speex <= 1.1.12
5472
5473 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5474
5475         * gst/goom/Makefile.am:
5476         * gst/goom/gfontlib.c:
5477         * gst/goom/gfontlib.h:
5478         * gst/goom/gfontrle.c:
5479         * gst/goom/gfontrle.h:
5480         * gst/goom/goom.h:
5481         * gst/goom/goom_core.c: (goom_update):
5482         * gst/goom/goom_plugin_info.h:
5483         * gst/goom/gstgoom.c: (gst_goom_chain):
5484         * gst/goom/plugin_info.c:
5485           Remove a bunch of font/text related code that we don't need.
5486
5487 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5488
5489         * gst/goom/ppc_drawings.s:
5490         * gst/goom/ppc_zoom_ultimate.s:
5491           Change license of these files to LGPL, as permitted by the
5492           author, Guillaume Borios. See #515073.
5493
5494 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
5495
5496         * gst/goom/convolve_fx.c:
5497         * gst/goom/motif_goom1.h:
5498         * gst/goom/motif_goom2.h:
5499           As hinted in Bug #518213, revert one change and fix warnings properly.
5500           This fixes both #518213 and #520073 for me.     
5501
5502 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
5503
5504         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5505         * gst/matroska/matroska-demux.c:
5506         (gst_matroska_demux_handle_seek_event),
5507         (gst_matroska_demux_parse_contents_seekentry),
5508         (gst_matroska_demux_loop):
5509         Fix the Forte build by making function declaration signatures
5510         match the implementations.
5511
5512 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
5513
5514         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5515         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5516         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5517           More logging when probing (see #518474), some comments in _reset().
5518
5519 2008-04-07  Julien Moutte  <julien@fluendo.com>
5520
5521         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5522         because of a bad argument number.
5523
5524 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
5525
5526         * tests/icles/.cvsignore:
5527         * tests/icles/Makefile.am:
5528         * tests/icles/gdkpixbufsink-test.c:
5529           Interactive test app for gdkpixbufsink.
5530
5531 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
5532
5533         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5534
5535         * configure.ac:
5536         Actually build dlls when cross-compiling with mingw32.
5537         Fixes bug #526247.
5538
5539 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
5540
5541         * ext/hal/hal.c: (gst_hal_get_alsa_element):
5542           Don't munge device string to 'default:x' for capture devices.
5543           Fixes #525833.
5544
5545 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
5546
5547         * ext/wavpack/gstwavpackparse.c:
5548         (gst_wavpack_parse_index_entry_free):
5549         Always use GSlice as we actually depend on GLib 2.12 already.
5550
5551 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5552
5553         * configure.ac:
5554           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5555           Also bump the GLib requirement to the current de-facto requirement
5556           (ie. 2.12).
5557
5558 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5559
5560         * gst/rtp/gstrtph264pay.c: (encode_base64),
5561         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5562         * gst/rtp/gstrtph264pay.h:
5563         Parse codec_data for future AVC compatibility.
5564         Fail when we encounter AVC data for now.
5565
5566 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5567
5568         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5569           (gst_spectrum_init), (gst_spectrum_set_property),
5570           (gst_spectrum_get_property), (gst_spectrum_message_new):
5571           Rename property enums and default defines for the properties to match
5572           the property names and rephrase property descriptions to make them a
5573           bit clearer (hopefully). See #518188.
5574
5575 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5576
5577         * tests/check/Makefile.am:
5578         * tests/check/elements/.cvsignore:
5579         * tests/check/elements/gdkpixbufsink.c:
5580           Add unit test for gdkpixbufsink element.
5581
5582 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5583
5584         * ext/gdk_pixbuf/Makefile.am:
5585         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5586         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5587           (gst_gdk_pixbuf_sink_base_init),
5588           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5589           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5590           (gst_gdk_pixbuf_sink_set_caps),
5591           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5592           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5593           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5594           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5595           (gst_gdk_pixbuf_sink_get_property):
5596         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5597           Add gdkpixbufsink element for easy snapshotting (#525946).
5598
5599 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5600
5601         * tests/check/pipelines/wavpack.c: (wavpack_suite):
5602         Bump timeout from 3 to 60 seconds.
5603
5604 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5605
5606         * tests/check/pipelines/.cvignore:
5607         Remove useless file.
5608
5609         * tests/check/pipelines/.cvsignore:
5610         Add new test to .cvsignore.
5611
5612 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5613
5614         * tests/check/Makefile.am:
5615         * tests/check/pipelines/wavpack.c: (bus_handler),
5616         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5617         (wavpack_suite), (main):
5618         Add unit test that encodes and decodes some data, checks that it
5619         is still the same and that all timestamps/offsets are perfect.
5620
5621 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5622
5623         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5624         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5625         * ext/wavpack/gstwavpackparse.c:
5626         (gst_wavpack_parse_index_entry_new),
5627         (gst_wavpack_parse_index_entry_free),
5628         (gst_wavpack_parse_base_init),
5629         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5630         Use GSlice for allocating index entries and use
5631         gst_element_class_set_details_simple().
5632
5633 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5634
5635         Patch by: Brian Cameron <brian.cameron at sun dot com>
5636
5637         * sys/sunaudio/gstsunaudio.c:
5638         * sys/sunaudio/gstsunaudiomixer.c:
5639         * sys/sunaudio/gstsunaudiomixer.h:
5640         * sys/sunaudio/gstsunaudiomixerctrl.c:
5641         * sys/sunaudio/gstsunaudiomixerctrl.h:
5642         * sys/sunaudio/gstsunaudiomixertrack.c:
5643         * sys/sunaudio/gstsunaudiomixertrack.h:
5644         * sys/sunaudio/gstsunaudiosink.c:
5645         * sys/sunaudio/gstsunaudiosink.h:
5646         * sys/sunaudio/gstsunaudiosrc.c:
5647         * sys/sunaudio/gstsunaudiosrc.h:
5648           Fix up copyrights (#525860).
5649
5650 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5651
5652         * gst/goom/goomsl.c: (gsl_read_file):
5653           Check return value of fread() to avoid compiler warnings.
5654
5655 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5656
5657         Based on patch by: Mersad Jelacic <mersad at axis dot com>
5658
5659         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5660         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5661         * gst/law/alaw-decode.h:
5662         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5663         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5664         (gst_mulawdec_chain), (gst_mulawdec_change_state):
5665         * gst/law/mulaw-decode.h:
5666         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5667         Make negotiation a bit modern.
5668         Use pad_alloc. Fixes #525359.
5669
5670 2008-03-31  David Schleef  <ds@schleef.org>
5671
5672         * gst/goom/xmmx.c: Fix constraints on asm code so that it
5673           compiles consistently.  Fixes #522278.
5674
5675 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
5676
5677         Patch by: Brian Cameron <brian.cameron at sun dot com>
5678
5679         * sys/sunaudio/gstsunaudiomixerctrl.c:
5680           (gst_sunaudiomixer_ctrl_get_volume),
5681           (gst_sunaudiomixer_ctrl_set_volume):
5682         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5683           Fix up the mixer tracks to use a volume range of 0-255, which is what
5684           the sun audio API uses. This simplifies the code and avoids rounding
5685           errors. Fixes #524593.
5686
5687 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
5688
5689         * sys/v4l2/gstv4l2object.c:
5690         * sys/v4l2/gstv4l2object.h:
5691         Add device-fd property to make it possible to apps to call ioctl's.
5692
5693 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5694
5695         * gst/qtdemux/qtdemux.c: (next_entry_size):
5696         Unbreak streaming mode again.
5697
5698 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5699
5700         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5701           Remove superfluous DEBUG macro.
5702
5703 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5704
5705         Based on patch by: William M. Brack <wbrack at mmm com hk>
5706
5707         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5708           (gst_v4l2src_set_capture):
5709           Check whether the device supports setting the framerate before
5710           trying to set it and then posting a warning or error if it doesn't
5711           work (#516649, #520092). Also compare fractions more correctly.
5712
5713 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5714
5715         * gst/goom/Makefile.am:
5716           Remove ppc assembler optimisations from the build until they
5717           actually build (they also seem to have GPL headers).
5718
5719 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5720
5721         * m4/Makefile.am:
5722           Better not dist files that don't exist any longer (lrint*m4).
5723
5724 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
5725
5726         * configure.ac:
5727         * m4/lrint.m4:
5728         * m4/lrintf.m4:
5729         Remove lrint/lrintf checks. We don't use it anywhere.
5730
5731 2008-03-18  Andy Wingo  <wingo@pobox.com>
5732
5733         * sys/osxvideo/osxvideosink.m
5734         (gst_osx_video_sink_osxwindow_destroy)
5735         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5736         task, whoopdee.
5737         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5738         2 ms.
5739
5740 2008-03-18  Andy Wingo  <wingo@pobox.com>
5741
5742         * sys/osxvideo/osxvideosink.m
5743         (gst_osx_video_sink_osxwindow_destroy)
5744         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5745         task, whoopdee.
5746         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5747         2 ms.
5748         
5749 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
5750
5751         Patch by: William M. Brack <wbrack at mmm com hk>
5752
5753         * sys/v4l2/v4l2src_calls.c:
5754           (gst_v4l2src_probe_caps_for_format_and_size),
5755           (gst_v4l2src_probe_caps_for_format):
5756           Make sure the probed frame sizes are reversed in the resulting
5757           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5758           highest resolution first); also remove unused variable.
5759           (Partly fixes #520092)
5760
5761 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5762
5763         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5764
5765         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5766         (gst_rtspsrc_finalize):
5767         Call WSAStartup() and WSACleanup before using the Winsock API.
5768         See #520808.
5769
5770 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5771
5772         * gst/avi/gstavidemux.c:
5773           Erm, the buffer-size is just guint, no need for the special format
5774           specifier.
5775
5776 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
5777
5778         * gst/goom/plugin_info.c:
5779         * gst/goom/ppc_zoom_ultimate.h:
5780           Small fixes to build more on PPC: ifdef out code that uses unknown
5781           define; add newline at end of header file to avoid compiler warning.
5782           Assembler code still doesn't build though.
5783
5784 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5785
5786         * gst/avi/gstavidemux.c:
5787           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5788           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5789
5790 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5791
5792         * gst/avi/gstavidemux.c:
5793           Chunksize is uint32. Fix format specifier.
5794
5795 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
5796
5797         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5798         mistake. Return file to pure MIT text.
5799
5800 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5801
5802         * gst/audiofx/audiofx.c:
5803         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5804         of hardcoding values.
5805
5806 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5807
5808         Patch by: Mark Nauwelaerts <manauw skynet be>
5809
5810         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5811           (gst_oss_src_close):
5812         * sys/oss/gstosssrc.h:
5813           Cache probed caps, so _get_caps() during recording doesn't cause
5814           ioctl calls which may disrupt the recording (fixes #521875).
5815
5816 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5817
5818         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5819         (gst_qtdemux_activate_segment),
5820         (gst_qtdemux_prepare_current_sample),
5821         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5822         Make sure we always send a DISCONT after a seek by setting the sample
5823         index to an undefined value after a seek.
5824
5825 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5826
5827         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5828           (GST_IS_AVI_SUBTITLE_CLASS):
5829           Fix up IS_FOO macros, which makes gtk-doc much happier.
5830
5831 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
5832
5833         * tests/icles/Makefile.am:
5834           Move the -lgstfoo where it belongs.
5835
5836 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5837
5838         * gst/matroska/ebml-ids.h:
5839         Add ID for EBML CRC32 elements.
5840
5841         * gst/matroska/Makefile.am:
5842         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5843         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5844         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5845         (gst_ebml_read_header):
5846         Support reading 80bit floats, add finalize method to clean up
5847         in any case, support reading length/id elements with any length
5848         as long as it's smaller than our supported maximum, don't leak
5849         buffers if reading as much data as we wanted failed and some
5850         smaller cleanup.
5851
5852 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5853
5854         Patch by: Olivier Crete <tester at tester dot ca>
5855
5856         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5857         Check that a buffer is large enough before reading from it.
5858         Fixes bug #521102.
5859         
5860 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5861
5862         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5863         Fix compilation after removing the GstPollMode from the
5864         constructor.
5865
5866 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5867
5868         * configure.ac:
5869         * gst/audiofx/Makefile.am:
5870         * gst/audiofx/audiochebband.c:
5871         * gst/audiofx/audiocheblimit.c:
5872         * gst/audiofx/math_compat.h:
5873         Check for sinh(), cosh() and asinh() and define our own
5874         implementations if they're not available. Fixes bug #520880.
5875
5876 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5877
5878         Patch by: Olivier Crete <tester at tester dot ca>
5879
5880         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5881         Unref the buffers only once when handling not-negotiated errors.
5882         Fixes bug #520764.
5883
5884 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5885
5886         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5887
5888         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5889         (gst_udpsrc_stop):
5890         Properly balance WSA_Cleanup with WSA_Startup.
5891         Also make the poll controllable on windows. Fixes #520888.
5892
5893 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5894
5895         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5896         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5897         (gst_ebml_read_element_length), (gst_ebml_peek_id),
5898         (gst_ebml_read_skip), (gst_ebml_read_buffer),
5899         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5900         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5901         (gst_ebml_read_date), (gst_ebml_read_master),
5902         (gst_ebml_read_binary), (gst_ebml_read_header):
5903         * gst/matroska/ebml-read.h:
5904         * gst/matroska/matroska-demux.c:
5905         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5906         (gst_matroska_demux_read_track_encodings),
5907         (gst_matroska_demux_add_stream),
5908         (gst_matroska_demux_handle_src_query),
5909         (gst_matroska_demux_handle_seek_event),
5910         (gst_matroska_demux_init_stream),
5911         (gst_matroska_demux_parse_tracks),
5912         (gst_matroska_demux_parse_index_cuetrack),
5913         (gst_matroska_demux_parse_index_pointentry),
5914         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5915         (gst_matroska_demux_parse_metadata_id_simple_tag),
5916         (gst_matroska_demux_parse_metadata_id_tag),
5917         (gst_matroska_demux_parse_metadata),
5918         (gst_matroska_demux_sync_streams),
5919         (gst_matroska_demux_push_hdr_buf),
5920         (gst_matroska_demux_push_flac_codec_priv_data),
5921         (gst_matroska_demux_push_xiph_codec_priv_data),
5922         (gst_matroska_demux_add_wvpk_header),
5923         (gst_matroska_demux_check_subtitle_buffer),
5924         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5925         (gst_matroska_demux_parse_cluster),
5926         (gst_matroska_demux_parse_contents_seekentry),
5927         (gst_matroska_demux_parse_contents),
5928         (gst_matroska_demux_loop_stream_parse_id),
5929         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
5930         * gst/matroska/matroska-demux.h:
5931         * gst/matroska/matroska-ids.h:
5932         Handle return values from pull_range in a more granular way to properly
5933         shut down on seeks.
5934         Combine return values from push.
5935         Implement proper error handling.
5936         Prepare for handling seeking correctly.
5937
5938 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
5939
5940         * gst/matroska/ebml-read.c:
5941         Use GINT64 formatting constants from GLIB.
5942
5943         * gst/matroska/matroska-demux.c:
5944         Add some guards to avoid a possible division by 0 and crashing
5945         with NULL events on some systems.
5946         Use gst_gdouble_to_guint64 somewhere instead of an implicit
5947         conversion. 
5948
5949         * gst/matroska/matroska-mux.c:
5950         Check for invalid timestamps in a bunch of places to avoid
5951         writing bogus durations into the output file.
5952         Fix some double<->gint64 conversions that weren't using
5953         gst_guint64_to_gdouble
5954
5955 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5956
5957         * configure.ac:
5958         Move the checks for bison, flex and as to the program section and the
5959         check for gcc inline asm to the compiler characteristics section.
5960
5961 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5962
5963         * configure.ac:
5964         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5965         plug-ins are included/excluded. (#498222)
5966
5967 2008-02-29  Michael Smith <msmith@fluendo.com>
5968
5969         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
5970           Don't call gst_object_sync_values() unless we have a valid timestamp.
5971
5972 2008-02-28  David Schleef  <ds@schleef.org>
5973
5974         * gst/matroska/matroska-demux.c:
5975         * gst/matroska/matroska-ids.h:
5976         * gst/matroska/matroska-mux.c:
5977           Fix Dirac mapping.  I had previously added a VfW-type
5978           mapping, but it looks like Dirac will get a native Matroska
5979           mapping, and this is the most likely method.
5980
5981 2008-02-28  David Schleef  <ds@schleef.org>
5982
5983         * gst/avi/gstavimux.c: Add Dirac encoding
5984
5985 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5986
5987         Patch by: Peter Kjellerstedt <pkj at axis com>
5988
5989         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
5990         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
5991         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
5992         * gst/udp/gstudpsrc.h:
5993         Port to GstPoll. See #505417.
5994
5995 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
5996
5997         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
5998         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
5999         yet on the srcpad. We need rate and channels before we
6000         can do any processing. Fixes bug #519088.
6001
6002 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
6003
6004         * configure.ac:
6005         Detect and indicate if GCC inline assembly syntax is
6006         available.
6007
6008         * gst/goom/Makefile.am:
6009         * gst/goom/convolve_fx.c:
6010         * gst/goom/flying_stars_fx.c:
6011         * gst/goom/goom_config.h:
6012         * gst/goom/goom_core.c:
6013         * gst/goom/goomsl.c:
6014         * gst/goom/ifs.c:
6015         * gst/goom/mmx.c:
6016         * gst/goom/plugin_info.c:
6017         * gst/goom/xmmx.c:
6018         Fix various GCC-isms, and only build the inline assembly
6019         with compilers that support GCC inline assembly.
6020
6021         Fix a couple of other warnings shown with Forte.
6022
6023 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
6024
6025         * gst/goom/xmmx.c:
6026           Use 'emms' instead of 'femms' to not crash on cpus that do not
6027           implement this 3dnow specific instruction.
6028
6029 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6030
6031         * gst/goom/plugin_info.c: (setOptimizedMethods):
6032         Use extended MMX for draw_line() too if available, not only
6033         normal MMX.
6034
6035 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6036
6037         * ext/jpeg/gstjpeg.c: (plugin_init):
6038         Remove (commented out) smoke typefinder. This is in base now.
6039
6040 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
6041
6042         * gst/goom2k1/Makefile.am:
6043         * gst/goom2k1/gstgoom.c:
6044
6045         Rename the installed library, and don't register the same 
6046         GType name as the new goom.
6047
6048 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6049
6050         * configure.ac:
6051         * ext/taglib/Makefile.am:
6052           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
6053           when building C++ code (#516509).
6054
6055 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6056
6057         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
6058         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
6059           (setOptimizedMethods):
6060           Call oil_init(), otherwise oil_get_cpu_flags() won't return
6061           anything useful. Export goom debug category so we can get
6062           rid of the VERBOSE define and the printfs.
6063
6064 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6065
6066         * gst/goom/goomsl_heap.c: (align_it):
6067         * gst/goom/plugin_info.c: (setOptimizedMethods):
6068           Compile fixes for x86-64.
6069
6070 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6071
6072         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
6073         with warnings, but add other CFLAGS
6074
6075         * gst/goom/goomsl.c (gsl_instr_set_namespace),
6076         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
6077         (calculate_labels), (gsl_read_file):
6078         * gst/goom/goomsl_lex.l:
6079         * gst/goom/goomsl_yacc.y:
6080         * gst/goom/plugin_info.c: Remove a few live printf, and
6081         fprintf, replace exit() calls with g_assert_not_reached()
6082         if it not optimal for a library
6083
6084 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6085
6086         * gst/goom/Makefile.am: Remove the warnings being disabled,
6087         fix linkage on x86, spotted by Sebastian Dröge
6088         <slomo@circular-chaos.org>
6089
6090         * gst/goom/convolve_fx.c (convolve_init),
6091         (create_output_with_brightness), (convolve_apply):
6092         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
6093         * gst/goom/goomsl.c:
6094         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
6095         * gst/goom/plugin_info.c:
6096         * gst/goom/tentacle3d.c (tentacle_fx_create):
6097         Fix warnings, and disable the motifs in the convolve_fx
6098         plugin (they were causing warnings, and they were just
6099         "Goom" in funny letterring)
6100
6101 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6102
6103         * configure.ac: Add checks for Flex/Yacc/Bison and other
6104         furry animals, for the new goom 2k4 based plugin
6105
6106         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
6107         CPU optimisations (not working yet), move the old plugin to...
6108
6109         * gst/goom2k1/*: ... here, in case somebody is sick enough
6110
6111         Fixes #515073
6112
6113 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
6114
6115         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6116         Post the server response code in an error message instead of a generic
6117         'error' message. Fixes #517237.
6118
6119 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6120
6121         * tests/check/Makefile.am:
6122         Ignore gconfaudiosrc for the states unit test too. It will fallback
6123         to alsasrc if the gconf settings can't be read and not everybody has
6124         alsa.
6125
6126 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6127
6128         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6129         (gst_wavpack_parse_create_src_pad):
6130         * ext/wavpack/gstwavpackparse.h:
6131         Always report the duration if we know it in push mode and don't
6132         return 0 just to make totem believe we can't seek in push mode.
6133         Newer totem version use the SEEKING query which properly reports
6134         if we can seek or not.
6135
6136 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6137
6138         Patch by: Jens Granseuer <jensgr at gmx dot net>
6139
6140         * tests/examples/equalizer/demo.c: (main):
6141         C89 fix, moving variable declarations to the beginning of
6142         the block. Fixes bug #517933.
6143
6144 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
6145
6146         * configure.ac:
6147         Back to development...
6148
6149 === release 0.10.7 ===
6150
6151 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
6152
6153         * configure.ac:
6154           releasing 0.10.7, "Red Door Black"
6155
6156 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
6157
6158         * gst/alpha/Makefile.am:
6159         Link alpha plugin with libgstbase. Fixes bug #517386.
6160
6161 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6162
6163         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6164         Init values to -1 instead of the default 0 value.
6165         Fixes #516524.
6166
6167 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
6168
6169         * tests/examples/spectrum/spectrum-example.c:
6170         Add missing include to fix compilation when libxml usage is disabled.
6171         Fixes: #516371
6172
6173 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6174
6175         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
6176         fixes: #514889
6177
6178         * gst/rtp/gstrtph264pay.c:
6179         * gst/rtp/gstrtpmp4gdepay.c:
6180         * gst/rtp/gstrtpmp4gpay.c:
6181         * gst/rtp/gstrtpmp4gpay.h:
6182         * gst/rtp/gstrtptheorapay.c:
6183         * gst/rtp/gstrtpvorbispay.c:
6184
6185         Fix various leaks shown up in valgrind
6186         - free sprops and buffer in error cases in H264 payloader
6187         - fix leak in mp4g depayloader when construction the caps
6188         - don't leak config string in the mp4g payloader
6189         - don't leak buffers and headers in theora and vorbis payloaders
6190
6191         * tests/check/elements/rtp-payloading.c:
6192
6193         Fix the RTP data test
6194         - Actually send valid amr data to the payloader instead of 20
6195         zero-bytes
6196         - The mp4g payloader expects codec_data on the caps
6197
6198 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
6199
6200         * win32/MANIFEST:
6201         Add libgstpng.dsp to MANIFEST.
6202         * win32/vs6/libgstaudiofx.dsp:
6203         Add new source files to VS project file.
6204
6205 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6206
6207         * sys/ximage/gstximagesrc.c:
6208         Initialise variables when opening the X display rather
6209         than in _start(), as the display can be opened before that.
6210
6211         Fixes: #515985
6212
6213 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6214
6215         * sys/directdraw/gstdirectdrawsink.c:
6216         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6217         (gst_directdraw_sink_finalize):
6218         Properly chain up finalize functions. Fixes bug #515980.
6219
6220 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6221
6222         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6223         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6224         (gst_v4l2_buffer_pool_class_init):
6225         Chain up the finalize functions. Fixes bug #515984.
6226
6227 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6228
6229         * sys/ximage/ximageutil.c:
6230         Chain up in the finalize function for our custom
6231         buffer sub-class.
6232         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
6233         Fixes: #515706
6234
6235 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6236
6237         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6238         (gst_fenced_buffer_class_init):
6239         Properly chain up finalize method. Fixes bug #515979.
6240
6241 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6242
6243         * sys/ximage/gstximagesrc.c:
6244         Free allocated Damage memory before closing our connection to the
6245         X server. Partially fixes: #515706
6246
6247 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6248
6249         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6250         * tests/check/Makefile.am:
6251         * tests/check/gst-plugins-good.supp:
6252         Add a few libjpeg suppressions and initialize a variable to
6253         make smokeenc valgrind clean. Fixes bug #515701.
6254
6255 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
6256
6257         * gst/avi/gstavidemux.c:
6258         Revert patch which sends timestamps only on keyframes, as it
6259         breaks playback with current gst-ffmpeg.
6260
6261         Fixes: #515562
6262
6263 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6264
6265         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6266         * tests/check/elements/multifile.c: (GST_START_TEST):
6267         Close some memory leaks spotted by the unit test. Fixes bug #515697.
6268
6269 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6270
6271         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6272         Use and unset the GError when pipeline creation fails instead of
6273         simply leaking it. Fixes bug #515704.
6274
6275 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
6276
6277         * gst/audiofx/audioamplify.c:
6278         * gst/audiofx/audiochebband.c:
6279         * gst/audiofx/audiocheblimit.c:
6280         * gst/audiofx/audiodynamic.c:
6281         * gst/audiofx/audioinvert.c:
6282         * gst/audiofx/audiopanorama.c:
6283         * gst/audiofx/audiowsincband.c:
6284         * gst/audiofx/audiowsinclimit.c:
6285         Fix long description of audiofx elements. Fixes bug #515457.
6286
6287 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
6288
6289         * docs/plugins/Makefile.am:
6290         * gst/spectrum/gstspectrum.c:
6291         * tests/examples/spectrum/.cvsignore:
6292         * tests/examples/spectrum/Makefile.am:
6293         * tests/examples/spectrum/spectrum-example.c:
6294
6295         Add a simple example application for the spectrum element, include it
6296         in the docs, and fix some documentation ambiguities.
6297
6298         Fixes: #348085
6299
6300 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6301
6302         * gst/equalizer/Makefile.am:
6303         * gst/spectrum/Makefile.am:
6304         Fix includes order
6305
6306         * tests/check/Makefile.am:
6307         Exclude v4l2src from the states test - it takes too long to start.
6308
6309         * tests/check/elements/spectrum.c:
6310         Make the test run properly with CK_FORK=no
6311
6312 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6313
6314         * gst/audiofix/Makefile.am: add missing header files 
6315
6316 2008-02-08  Julien Moutte  <julien@fluendo.com>
6317
6318         * gst/matroska/matroska-demux.c:
6319         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6320         keyframe and delta units correctly when dealign with a BlockGroup.
6321         Fixes: #514397
6322
6323 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6324
6325         * tests/check/elements/.cvsignore:
6326         Spell the new tests correctly in .cvsignore
6327
6328 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6329
6330         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6331           Need to use gsize here for the size, fixes compiler warning.
6332
6333         * tests/examples/equalizer/.cvsignore:
6334         * tests/examples/equalizer/Makefile.am:
6335         * tests/examples/spectrum/.cvsignore:
6336         * tests/examples/spectrum/Makefile.am:
6337           Add missing files to fix the build.
6338
6339 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6340
6341         * configure.ac:
6342         * docs/plugins/Makefile.am:
6343         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6344         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6345         * docs/plugins/gst-plugins-good-plugins.args:
6346         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6347         * docs/plugins/inspect/plugin-multifile.xml:
6348         * tests/check/Makefile.am:
6349         * tests/check/elements/.cvsignore:
6350
6351         Move multifile plugin from -bad.
6352         Fixes: #490283
6353
6354 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6355
6356         * configure.ac:
6357         * docs/plugins/Makefile.am:
6358         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6359         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6360         * docs/plugins/gst-plugins-good-plugins.args:
6361         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6362         * docs/plugins/inspect/plugin-spectrum.xml:
6363         * gst/spectrum/Makefile.am:
6364         * tests/check/Makefile.am:
6365         * tests/check/elements/.cvsignore:
6366         * tests/examples/Makefile.am:
6367
6368         Move spectrum plugin from -bad.
6369         Move examples into tests/examples/spectrum.
6370
6371 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6372
6373         * configure.ac:
6374         * docs/plugins/Makefile.am:
6375         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6376         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6377         * docs/plugins/gst-plugins-good-plugins.args:
6378         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6379         * docs/plugins/gst-plugins-good-plugins.interfaces:
6380         * docs/plugins/inspect/plugin-equalizer.xml:
6381         * gst/equalizer/Makefile.am:
6382         * tests/check/Makefile.am:
6383         * tests/examples/Makefile.am:
6384         Move the equalizer plugin across from -bad
6385
6386         * tests/check/elements/.cvsignore:
6387         Add equalizer, audiosincwband and audiosincwlimit
6388
6389         * tests/check/elements/equalizer.c:
6390         Fix compiler warnings
6391
6392         Fixes: #415627
6393
6394 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6395
6396         * configure.ac:
6397         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6398         are treated like releases and build without it.
6399
6400 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6401
6402         * docs/plugins/Makefile.am:
6403         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6404         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6405         * docs/plugins/gst-plugins-good-plugins.args:
6406         * docs/plugins/inspect/plugin-audiofx.xml:
6407         * gst/audiofx/Makefile.am:
6408         * gst/audiofx/audiofx.c:
6409         * gst/audiofx/audiowsincband.c:
6410         * gst/audiofx/audiowsincband.h:
6411         * gst/audiofx/audiowsinclimit.c:
6412         * gst/audiofx/audiowsinclimit.h:
6413         * tests/check/Makefile.am:
6414         * tests/check/elements/audiowsincband.c:
6415         * tests/check/elements/audiowsinclimit.c:
6416
6417         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6418         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6419         respectively.
6420
6421         Fixes: #467666
6422
6423 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6424
6425         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6426         * tests/check/elements/icydemux.c:
6427           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6428           caps, and add a somewhat useful debug message. Plus test.
6429
6430 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
6431
6432         * gst/rtsp/gstrtspsrc.c:
6433         Include unistd.h only if HAVE_UNISTD_H is defined
6434         * win32/common/config.h.in:
6435         * win32/common/config.h:
6436         Define socklen_t as it seems it's not defined in default 
6437         Visual Studio headers.
6438         * win32/vs6/libgstalpha.dsp:
6439         * win32/vs6/libgstapetag.dsp:
6440         * win32/vs6/libgstavi.dsp:
6441         * win32/vs6/libgstrtp.dsp:
6442         * win32/vs6/libgstrtsp.dsp:
6443         * win32/vs6/libgstvideomixer.dsp:
6444         Update project file dependencies and add new source files       
6445
6446 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
6447
6448         Patch by: Bjarne Rosengren <bjarne at axis dot com>
6449
6450         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6451         Don't leak buffers when we don't push them downstream.
6452         Fixes bug #514965.
6453
6454 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6455
6456         * configure.ac:
6457           Bump requirements to (good) released versions to avoid
6458           confusion and make implicit core requirement explicit.
6459
6460 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
6461
6462         * docs/plugins/Makefile.am:
6463         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6464         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6465         * docs/plugins/gst-plugins-good-plugins.args:
6466         * docs/plugins/inspect/plugin-audiofx.xml:
6467         * gst/audiofx/Makefile.am:
6468         * gst/audiofx/audiochebband.c:
6469         * gst/audiofx/audiochebband.h:
6470         * gst/audiofx/audiocheblimit.c:
6471         * gst/audiofx/audiocheblimit.h:
6472         * gst/audiofx/audiochebyshevfreqband.c:
6473         * gst/audiofx/audiochebyshevfreqband.h:
6474         * gst/audiofx/audiochebyshevfreqlimit.c:
6475         * gst/audiofx/audiochebyshevfreqlimit.h:
6476         * gst/audiofx/audiofx.c:
6477         * tests/check/Makefile.am:
6478         * tests/check/elements/.cvsignore:
6479         * tests/check/elements/audiochebband.c:
6480         * tests/check/elements/audiocheblimit.c:
6481         * tests/check/elements/audiochebyshevfreqband.c:
6482         * tests/check/elements/audiochebyshevfreqlimit.c:
6483
6484         Rename audiochebyshevfreqband -> audiochebband and
6485         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6486         surgery.
6487
6488         Closes: #491811
6489
6490 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
6491
6492         Patch by: Orjan Friberg <orjanf at axis dot com>
6493
6494         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6495         Fix caps memory leak. Fixes #514573.
6496
6497 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6498
6499         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6500         If there's no entries in the subindex, don't try to do anything stupid,
6501         just return.
6502
6503 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6504
6505         Patch by: John Millikin <jmillikin at gmail dot com>
6506
6507         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6508           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6509           Fix extraction of picture blocks with newer libflac versions again:
6510           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6511
6512 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6513
6514         * tests/check/Makefile.am:
6515           Add rtp-payloading test to VALGRIND_TO_FIX.
6516
6517         * tests/check/elements/rtp-payloading.c:
6518           Add semicolons after GST_TEST_END so gst-indent gets the
6519           formatting right; make test less verbose in general, but
6520           more verbose in the error case (which should probably
6521           make the test fail anyway).
6522
6523 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
6524
6525         * docs/plugins/Makefile.am:
6526         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6527         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6528         * gst/avi/gstavisubtitle.c:
6529         Add documentation for avisubtitle and change class to
6530         Codec/Parser/Subtitle
6531
6532 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6533
6534         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6535         Treat ENOTTY (driver does not implement ioctl) the same as
6536         EINVAL since it implies there are no available standards.
6537
6538         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6539         (gst_v4l2src_get_nearest_size):
6540         Replace gst_v4l2src_get_size_limits with 2 calls to new function
6541         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6542         probe if the driver does not support VIDIOC_TRY_FMT for whatever
6543         reason, and if we aren't yet actively capturing.
6544
6545         * sys/v4l2/v4l2src_calls.h:
6546         Remove replaced function declaration.
6547
6548 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6549
6550         * configure.ac:
6551         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6552         API.
6553
6554 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
6555
6556         * configure.ac:
6557         Fix typo.
6558
6559 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
6560
6561         * gst/alpha/Makefile.am:
6562         * gst/alpha/gstalpha.c:
6563
6564         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6565         some stuff, and making buffer-alloc and resizing work automatically.
6566         No longer crashes on odd frame widths and heights, although there
6567         seems to be a disagreement with ffmpegcolorspace about what size
6568         an AYUV frame with odd height should be.
6569
6570 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6571
6572         Patch by: Alessandro Decina <alessandro at nnva dot org>
6573
6574         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6575         * ext/libpng/gstpngenc.h:
6576         Preallocate the output buffer so that g_memdup() and
6577         gst_buffer_merge() aren't needed anymore. This greatly improves
6578         performances and fixes #512544.
6579
6580 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6581
6582         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6583         (gst_avi_demux_stream_data):
6584         GStreamer timestamps are PTS values while AVI only knows about DTS
6585         timestamps. Make sure we only copy the DTS as the buffer timestamp when
6586         we are dealing with a key frame.
6587
6588 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6589
6590         * tests/check/Makefile.am:
6591         * tests/check/elements/.cvsignore:
6592         * tests/check/elements/rtp-payloading.c:
6593           Add add testsuite for the rtp-payloader that tries simulating
6594           dataflow. Needs more test data.
6595
6596 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6597
6598         * tests/check/elements/alphacolor.c:
6599           Remove two unused variables.
6600
6601 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6602
6603         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6604           Use g_ascii_strtoll() instead of atoll, which is only
6605           available in C99.
6606
6607 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
6608
6609         * gst/rtp/Makefile.am:
6610         * gst/rtp/gstrtp.c:
6611         * gst/rtp/gstrtpmpvpay.c:
6612         * gst/rtp/gstrtpmpvpay.h:
6613         Add MPEG2 video payloader
6614
6615 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6616
6617         * gst/level/gstlevel.c:
6618         Use #include <math.h> instead of #include "math.h".
6619
6620 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6621
6622         * tests/check/Makefile.am:
6623         Fix up some CFLAGS sets.
6624         Don't include gconfvideosrc in the states test.
6625
6626         * tests/check/elements/autodetect.c: (GST_START_TEST):
6627         Add some error strings to fail_unless arguments to fix some weird
6628         compiler errors on Solaris.
6629
6630 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6631
6632         * configure.ac:
6633         Detect video4linux headers on Solaris too.
6634         * sys/v4l2/gstv4l2colorbalance.h:
6635         * sys/v4l2/gstv4l2object.h:
6636         * sys/v4l2/v4l2_calls.c:
6637         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6638         (gst_v4l2_buffer_new):
6639
6640         Make v4l2 build on Solaris.
6641         Patch by: Brian Cameron  <brian.cameron at sun dot com>
6642         Fixes: #510505
6643
6644 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6645
6646         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6647           Update list from (still local) scanning script.
6648
6649 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6650
6651         Based on a patch by:
6652             Victor STINNER <victor dot stinner at haypocalc dot com>
6653
6654         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6655         Set variable to NULL after freeing it to prevent double frees
6656         or make failures by another use of it afterwards more obvious
6657         and fix use of it after the freeing. Fixes bug #510592.
6658
6659 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6660
6661         * gst/udp/gstmultiudpsink.c:
6662         use GST_WARNING for logging
6663
6664 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6665
6666         * gst/udp/gstmultiudpsink.c:
6667         Don't try to leave a multicast group with an invalid socket
6668
6669 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
6670
6671         * ext/flac/gstflacdec.c:
6672           Fix compilation against flac 1.1.2 (as on debian stable), where
6673           the picture metadata defines and structs don't exist yet.
6674           Fixes #509301.
6675
6676 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
6677
6678         Patch by: Olivier Crete <tester at tester dot ca>
6679
6680         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6681         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6682         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6683         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6684         * gst/udp/gstmultiudpsink.h:
6685         Add property to automatically join a multicast group or not. This can be
6686         useful when sharing a socket between multiple elements.
6687         Fixes #509531.
6688
6689 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6690
6691         * gst/videomixer/Makefile.am:
6692           Add controller flags.
6693
6694 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6695
6696         * gst/videomixer/videomixer.c:
6697           Also commit the missing gst_object_sync_values().
6698
6699 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6700
6701         * docs/plugins/Makefile.am:
6702           Remove duplicate entry.
6703
6704 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6705
6706         * docs/plugins/Makefile.am:
6707         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6708         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6709         * docs/plugins/inspect/plugin-gamma.xml:
6710         * docs/plugins/inspect/plugin-monoscope.xml:
6711         * docs/plugins/inspect/plugin-video4linux2.xml:
6712           Add 3 more plugins to docs.
6713
6714 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6715
6716         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6717         * sys/osxvideo/osxvideosink.h:
6718           Revert previous change caused by a file that got stuck on an old
6719           revision.
6720
6721 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6722
6723         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6724         * gst/multipart/Makefile.am:
6725         * gst/multipart/multipartdemux.c:
6726         * gst/multipart/multipartdemux.h:
6727         * gst/multipart/multipartmux.c:
6728         * gst/multipart/multipartmux.h:
6729           Re-add multipartdemux to the docs. Last round of section cleanup.
6730
6731 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6732
6733         * docs/plugins/Makefile.am:
6734         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6735         * sys/osxaudio/gstosxaudiosink.h:
6736         * sys/osxvideo/osxvideosink.h:
6737           Managed to resolve most unused declarations. Filed a bug for one left.          
6738
6739 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6740
6741         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6742           Cleanup section file.
6743
6744 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6745
6746         * docs/plugins/Makefile.am:
6747         * docs/plugins/gst-plugins-good-plugins.args:
6748         * docs/plugins/gst-plugins-good-plugins.signals:
6749         * docs/plugins/inspect/plugin-alaw.xml:
6750         * docs/plugins/inspect/plugin-alpha.xml:
6751         * docs/plugins/inspect/plugin-alphacolor.xml:
6752         * docs/plugins/inspect/plugin-annodex.xml:
6753         * docs/plugins/inspect/plugin-apetag.xml:
6754         * docs/plugins/inspect/plugin-audiofx.xml:
6755         * docs/plugins/inspect/plugin-auparse.xml:
6756         * docs/plugins/inspect/plugin-autodetect.xml:
6757         * docs/plugins/inspect/plugin-avi.xml:
6758         * docs/plugins/inspect/plugin-cairo.xml:
6759         * docs/plugins/inspect/plugin-cdio.xml:
6760         * docs/plugins/inspect/plugin-cutter.xml:
6761         * docs/plugins/inspect/plugin-debug.xml:
6762         * docs/plugins/inspect/plugin-dv.xml:
6763         * docs/plugins/inspect/plugin-efence.xml:
6764         * docs/plugins/inspect/plugin-effectv.xml:
6765         * docs/plugins/inspect/plugin-flac.xml:
6766         * docs/plugins/inspect/plugin-flxdec.xml:
6767         * docs/plugins/inspect/plugin-gconfelements.xml:
6768         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6769         * docs/plugins/inspect/plugin-goom.xml:
6770         * docs/plugins/inspect/plugin-halelements.xml:
6771         * docs/plugins/inspect/plugin-icydemux.xml:
6772         * docs/plugins/inspect/plugin-id3demux.xml:
6773         * docs/plugins/inspect/plugin-jpeg.xml:
6774         * docs/plugins/inspect/plugin-ladspa.xml:
6775         * docs/plugins/inspect/plugin-level.xml:
6776         * docs/plugins/inspect/plugin-matroska.xml:
6777         * docs/plugins/inspect/plugin-mulaw.xml:
6778         * docs/plugins/inspect/plugin-multipart.xml:
6779         * docs/plugins/inspect/plugin-navigationtest.xml:
6780         * docs/plugins/inspect/plugin-png.xml:
6781         * docs/plugins/inspect/plugin-quicktime.xml:
6782         * docs/plugins/inspect/plugin-rtp.xml:
6783         * docs/plugins/inspect/plugin-rtsp.xml:
6784         * docs/plugins/inspect/plugin-shout2send.xml:
6785         * docs/plugins/inspect/plugin-smpte.xml:
6786         * docs/plugins/inspect/plugin-speex.xml:
6787         * docs/plugins/inspect/plugin-taglib.xml:
6788         * docs/plugins/inspect/plugin-udp.xml:
6789         * docs/plugins/inspect/plugin-videobalance.xml:
6790         * docs/plugins/inspect/plugin-videobox.xml:
6791         * docs/plugins/inspect/plugin-videocrop.xml:
6792         * docs/plugins/inspect/plugin-videoflip.xml:
6793         * docs/plugins/inspect/plugin-videomixer.xml:
6794         * docs/plugins/inspect/plugin-wavenc.xml:
6795         * docs/plugins/inspect/plugin-wavpack.xml:
6796         * docs/plugins/inspect/plugin-wavparse.xml:
6797           Update plugin docs.
6798
6799         * gst/videomixer/Makefile.am:
6800         * gst/videomixer/videomixer.c:
6801         * gst/videomixer/videomixer.h:
6802         * gst/videomixer/videomixerpad.h:
6803           Split out header to fix warnings from the doc-build.
6804
6805 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6806
6807         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6808
6809         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6810         Use atoll to parse the rtptime with enough precision. Fixes #509329.
6811
6812 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6813
6814         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6815         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6816           Initialise variables to work around (false) 'foo might be used
6817           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6818
6819 2008-01-11  David Schleef  <ds@schleef.org>
6820
6821         * docs/plugins/.cvsignore:
6822         * tests/check/pipelines/.cvsignore:
6823           Ignore more files for the buildbot.
6824
6825 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
6826
6827         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6828         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6829         Generate the image-type values correctly. Leave them out of the caps
6830         when outputting a "preview image" tag, since it only makes sense
6831         to have one of those - the type is irrelevant.
6832
6833         * sys/sunaudio/gstsunaudiomixerctrl.c:
6834         (gst_sunaudiomixer_ctrl_open):
6835         If we can, mark the mixer multiple open when we use it, in case
6836         (for some reason) the process wants to open it again elsewhere.
6837
6838 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
6839
6840         Patch by: Olivier Crete <tester at tester dot ca>
6841
6842         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6843         * gst/rtp/gstrtptheorapay.c:
6844         Fix the clock rate to 90000 as required by the RFC.
6845         Fixes #508644.
6846
6847 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6848
6849         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6850           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6851
6852 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
6853
6854         * autogen.sh:
6855           Add -Wno-portability to the automake parameters to stop warnings
6856           about GNU make extensions being used. We require GNU make in almost
6857           every Makefile anyway.
6858           
6859         * configure.ac:
6860           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6861           at the same time is required for per target flags.
6862
6863 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6864
6865         * gst/videomixer/videomixer.c: (gst_videomixer_init):
6866         Fix error from my last commit.
6867
6868 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6869
6870         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6871
6872         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6873           Make sure the ISO 639-X language code in ID3v2 COMM frames
6874           is actually valid UTF-8 (or rather: ASCII), so we don't end
6875           up with non-UTF8 strings in tags if there's garbage in the
6876           language field. Also make sure the language code is always
6877           lower case. Fixes: #508291.
6878
6879 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6880
6881         * ChangeLog:
6882           Fix ChangeLog typo.
6883
6884 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6885
6886         * Makefile.am:
6887           Include lcov.mak to allow building coverage reports. Guard
6888           check-torture target like in the other packages.
6889
6890 2008-01-09  Sameer Naik  <sameer@damagehead.com>
6891
6892         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
6893
6894         * gst/videomixer/videomixer.c:
6895         (gst_videomixer_set_master_geometry), (_do_init),
6896         (gst_videomixer_child_proxy_get_child_by_index),
6897         (gst_videomixer_child_proxy_get_children_count),
6898         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6899         (gst_videomixer_init), (gst_videomixer_request_new_pad),
6900         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6901         Implement GstChildProxy interface.
6902         Send newsegment at the right moment
6903         Fixes #488879
6904
6905 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6906
6907         * gst/alpha/Makefile.am:
6908         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6909         (gst_alpha_sink_event), (gst_alpha_chain),
6910         (gst_alpha_change_state), (plugin_init):
6911         Make the various properties of 'alpha' controllable. This allows doing
6912         niceties like fade-in/fade-out.
6913
6914 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6915
6916         * gst/rtp/gstasteriskh263.c:
6917         * gst/rtp/gstrtpL16depay.c:
6918         * gst/rtp/gstrtpac3depay.c:
6919         * gst/rtp/gstrtpamrpay.c:
6920         * gst/rtp/gstrtpdepay.c:
6921         * gst/rtp/gstrtpgsmdepay.c:
6922         * gst/rtp/gstrtph263depay.c:
6923         * gst/rtp/gstrtph263pdepay.c:
6924         * gst/rtp/gstrtph263ppay.c:
6925         * gst/rtp/gstrtph264depay.c:
6926         * gst/rtp/gstrtph264pay.c:
6927         * gst/rtp/gstrtpmp2tdepay.c:
6928         * gst/rtp/gstrtpmp4adepay.c:
6929         * gst/rtp/gstrtpmp4gdepay.c:
6930         * gst/rtp/gstrtpmp4gpay.c:
6931         * gst/rtp/gstrtpmp4vdepay.c:
6932         * gst/rtp/gstrtpmpadepay.c:
6933         * gst/rtp/gstrtpmpvdepay.c:
6934         * gst/rtp/gstrtpsv3vdepay.c:
6935         * gst/rtp/gstrtptheoradepay.c:
6936         * gst/rtp/gstrtptheorapay.c:
6937         * gst/rtp/gstrtpvorbisdepay.c:
6938         * gst/rtp/gstrtpvorbispay.c:
6939           Remove copy/paste unused code (property setters and getter) found by
6940           the coverage suite (yay, saves ~20k on disk).
6941
6942 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6943
6944         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
6945           (videosink_templ):
6946           Also fix up pad templates to indicate that image/jpeg doesn't
6947           absolutely require the framerate property to be set (#504081).
6948
6949 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6950
6951         Based on patch by: Wouter Cloetens  <wouter at mind be>
6952
6953         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
6954           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
6955           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
6956         * gst/matroska/matroska-mux.h:
6957           Keep track of first and last timestamps for each incoming stream,
6958           so we can calculate the total duration for live sources and other
6959           input where we can't query the duration from the start or where
6960           there's no constant framerate from which we can deduce the
6961           duration; also use calculated/observed duration if it is bigger
6962           than the previously queried duration. Furthermore, use
6963           gst_pad_query_peer_duration() and take into account that it may
6964           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
6965           screws up comparisons when using unsigned integers. Fixes #504081.
6966
6967 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
6968
6969         * configure.ac:
6970         * gst/audiofx/audioamplify.c:
6971         (gst_audio_amplify_clipping_method_get_type),
6972         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
6973         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
6974         (gst_audio_dynamic_transform_ip):
6975         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
6976         (gst_audio_invert_transform_ip):
6977         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
6978         (gst_audio_panorama_transform):
6979         * gst/level/gstlevel.c: (gst_level_init):
6980         Make elements GST_BUFFER_FLAG_GAP aware and call
6981         gst_base_transform_set_gap_aware for this.
6982         Bump core requirement to CVS.
6983         
6984         * gst/audiofx/audiochebyshevfreqband.c:
6985         (gst_audio_chebyshev_freq_band_transform_ip):
6986         * gst/audiofx/audiochebyshevfreqlimit.c:
6987         (gst_audio_chebyshev_freq_limit_transform_ip):
6988         Also sync GObject properties to the controller if operating
6989         in passthrough mode.
6990
6991 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
6992
6993         * sys/directdraw/gstdirectdrawsink.c:
6994           (gst_directdraw_sink_window_thread):
6995           FALSE is not a gpointer.
6996
6997 2008-01-05  Julien Moutte  <julien@fluendo.com>
6998
6999         * sys/directdraw/gstdirectdrawsink.c:
7000         (gst_directdraw_sink_set_window_id),
7001         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
7002         (gst_directdraw_sink_buffer_alloc),
7003         (gst_directdraw_sink_draw_borders),
7004         (gst_directdraw_sink_show_frame),
7005         (gst_directdraw_sink_setup_ddraw),
7006         (gst_directdraw_sink_window_thread),
7007         (gst_directdraw_sink_get_ddrawcaps),
7008         (gst_directdraw_sink_surface_create): Make sure we create our
7009         internal window only when we need it. That will give a chance to
7010         the application to get the prepare-xwindow-id bus message. Draw
7011         black borders when keeping aspect ratio. Handle the case where our
7012         rendering window disappears (closed or errors) like other sinks
7013         do. Various 80 columns fixes, improve state change order. That
7014         element could need some more love.
7015
7016 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
7017
7018         * ext/taglib/gstapev2mux.h:
7019         * ext/taglib/gstid3v2mux.h:
7020         Remove useless typedefs without new type name. Fixes a warning with
7021         gcc 4.3.
7022
7023 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
7024
7025         Patch by: John Millikin <jmillikin at gmail dot com>
7026
7027         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
7028         (gst_flac_dec_setup_stream_decoder),
7029         (gst_flac_normalize_picture_mime_type),
7030         (gst_flac_extract_picture_buffer),
7031         (gst_flac_dec_metadata_callback):
7032         Emit metadata messages when a PICTURE block is encountered.
7033         Fixes #506715.
7034
7035 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
7036
7037         * gst/avi/gstavi.c:
7038         increase rank because no known issues anymore ...
7039         * gst/avi/gstavisubtitle.c:
7040         send subtitle name to the srcpad
7041
7042 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7043
7044         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
7045         * gst/rtsp/gstrtspsrc.h:
7046         Implement redirect for the DESCRIBE reply. Fixes #506025.
7047
7048 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7049
7050         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
7051         Fix 'xyz may be used uninitialized' compiler warnings caused
7052         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7053         abort() in any case but properly report the error.
7054
7055 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
7056
7057         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
7058         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
7059         * sys/ximage/gstximagesrc.c: (composite_pixel):
7060           Fix 'xyz may be used uninitialized' compiler warnings caused
7061           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
7062           not really nice to abort in any case). Fixes #505745.
7063
7064 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7065
7066         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
7067           Small unit test fix (has no practical impact at the moment,
7068           since we're only feeding utf8 and hence just create a sub-
7069           buffer for the output).
7070
7071 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
7072
7073         * gst/avi/gstavisubtitle.c:
7074         * tests/check/elements/avisubtitle.c:
7075         Add seeking support for avi subtitle
7076
7077 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7078
7079         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
7080         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
7081         (gst_flac_dec_write):
7082         * ext/flac/gstflacdec.h:
7083         Remove some unused vars.
7084         Do more cleanup of leftover events and tags.
7085         Output tags after the segment event. Fixes #504018.
7086
7087 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7088
7089         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
7090           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
7091           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
7092           Detect other UTF byte order markers and convert to UTF-8 as
7093           appropriate.
7094
7095 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7096
7097         * gst/avi/gstavisubtitle.c: (src_template),
7098           (gst_avi_subtitle_extract_utf8_file),
7099           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
7100           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
7101           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
7102         * gst/avi/gstavisubtitle.h:
7103           Refactor a bit; fix name extraction; don't assume all the data
7104           in the chunk is actually subtitle data, there may be padding at
7105           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
7106           file so it's there to send again after a seek (for future use).
7107
7108 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
7109
7110         * gst/avi/Makefile.am:
7111         * gst/avi/gstavi.c:
7112         * gst/avi/gstavisubtitle.c:
7113         * gst/avi/gstavisubtitle.h:
7114         * tests/check/Makefile.am:
7115         * tests/check/elements/avisubtitle.c:
7116         * win32/common/config.h:
7117                 Add avi subtitle element for bug #442034. Need seeking support
7118                 and more support for character conversion.
7119
7120 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7121
7122         * Makefile.am:
7123           Include common/win32.mak for CRLF check of win32 project
7124           files (see #393626).
7125
7126         * win32/vs6/libgstpng.dsp:
7127           Fix line endings and do cvs admin -kb.
7128
7129 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
7130
7131         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7132         Actually drop the buffers which are outside the currently configured
7133         segment instead of just emitting a WARNING.
7134
7135 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
7136
7137         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7138         (gst_flac_dec_write):
7139         * ext/flac/gstflacdec.h:
7140         Send segments from the streaming thread. Fixes #502187.
7141         Fix segment seeking and a bunch of other seeking cases.
7142
7143 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
7144
7145         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7146           Parse WOAF frames and put the result into GST_TAG_CONTACT,
7147           which is where it would end up if the same information was
7148           put in a vorbis comment (don't think it's worth adding a
7149           new URI tag for this). Fixes #488112.
7150
7151 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7152
7153         * configure.ac:
7154           We need core/base 0.10.15 or later.
7155
7156 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7157
7158         Patch by: Mark Nauwelaerts <manauw skynet be>
7159
7160         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7161         Fix regression in stream numbering. Fixes #502655.
7162
7163 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7164
7165         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7166
7167         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7168         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7169         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7170         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7171         (gst_rtp_h264_pay_handle_buffer):
7172         * gst/rtp/gstrtph264pay.h:
7173         Use higher performance start-code searching.
7174         Parse NALs and store SPS, PPS and profile in the caps so that they can
7175         be used in the SDP. Fixes #502814.
7176
7177 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7178
7179         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7180         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7181           Init some structs to zero before we pass them to ioctl, which
7182           avoids valgrind warnings.  Also fix a small memory leak.
7183
7184 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7185
7186         Patch by: Wouter Cloetens <wouter at mind dot be>
7187
7188         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7189         Copy timestamp from input to output. Not very perfect yet but better
7190         than nothing. Fixes #503023.
7191
7192 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7193
7194         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7195           Also print a useful error message with the old Wavpack API
7196           if possible.
7197
7198 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
7199
7200         * ext/wavpack/gstwavpackdec.c:
7201           More build fixes for old libwavpack versions: include config.h so
7202           that WAVPACK_OLD_API is actually defined as detected; only use
7203           WavpackGetErrorMessage if it is available. This fixes the build
7204           on debian stable for me.
7205
7206 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7207
7208         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7209         * ext/wavpack/gstwavpackparse.c:
7210           (gst_wavpack_parse_create_src_pad):
7211           Workaround the non-existance of WavpackGetChannelMask in Wavpack
7212           versions below 4.40.0.
7213
7214 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7215
7216         * configure.ac:
7217           And now do it right for real...
7218
7219 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7220
7221         * configure.ac:
7222           Correctly reset $LIBS to not contain -lm.
7223
7224 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7225
7226         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7227
7228         * configure.ac:
7229         * ext/cairo/gsttimeoverlay.c:
7230           (gst_cairo_time_overlay_print_smpte_time):
7231           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7232           and checking for rint() and implementing it ourself if it doesn't
7233           exist. Fixes #497293.
7234
7235 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7236
7237         * configure.ac:
7238           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7239
7240 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
7241
7242         * sys/oss/gstosshelper.c:
7243         Verify that the format returned after the ioctl is the one
7244         we requested. It is valid for the ioctl to succeed while
7245         substituting an alternate 'supported' sample format.
7246
7247 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
7248
7249         * sys/oss/gstossaudio.c: (plugin_init):
7250         * sys/oss/gstosssink.c: (gst_oss_sink_open):
7251         * sys/oss/gstosssrc.c: (gst_oss_src_open):
7252           Post decent (and translated) error message when we can't
7253           open the audio device for some reason.
7254
7255 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
7256
7257         * sys/oss/gstosssink.c:
7258         * sys/oss/gstosssrc.c:
7259         Allow the AUDIODEV environment variable to redirect us
7260         to a different default OSS device, like sunaudiosink does
7261         on Solaris (makes audio play automatically on SunRays).
7262
7263 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
7264
7265         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7266         * gst/audiofx/audiochebyshevfreqband.c:
7267         (gst_audio_chebyshev_freq_band_transform_ip):
7268         * gst/audiofx/audiochebyshevfreqlimit.c:
7269         (gst_audio_chebyshev_freq_limit_transform_ip):
7270         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7271         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7272         The transform_ip() methods should do nothing if in passthrough mode.
7273         It might get non-writable buffers in that case but the buffer might
7274         as well be writable.
7275
7276         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7277         The transform() methods won't be called in passthrough mode and
7278         otherwise the buffer is always writable so don't check here.
7279
7280 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
7281
7282         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7283           Fix seeking in .wav files again (#501775).  Some people seem to think
7284           they don't need to test their changes when they're just 'reflowing'
7285           some code.
7286
7287 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7288
7289         * gst/autodetect/gstautovideosink.c:
7290         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7291         (gst_auto_video_sink_init),
7292         (gst_auto_video_sink_create_element_with_pretty_name),
7293         (gst_auto_video_sink_find_best),
7294         (gst_auto_video_sink_set_property),
7295         (gst_auto_video_sink_get_property):
7296         * gst/autodetect/gstautovideosink.h:
7297         Fix docs.
7298         Use same error reporting code as autoaudiosink.
7299         Add property to filter sinks based on caps. Only select raw video sinks
7300         by default for backwards compat.
7301         API: GstAutoVideoSink::filter-caps
7302
7303 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7304
7305         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7306
7307         * gst/autodetect/gstautoaudiosink.c:
7308         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7309         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7310         (gst_auto_audio_sink_set_property),
7311         (gst_auto_audio_sink_get_property):
7312         * gst/autodetect/gstautoaudiosink.h:
7313         Add property to filter sinks based on caps. Only select raw audio sinks
7314         by default for backwards compat.  Fixes #417420.
7315         API: GstAutoAudioSink::filter-caps
7316
7317 2007-11-29  Michael Smith <msmith@fluendo.com>
7318
7319         Patch by: Arek Korbik <arkadini@gmail.com>
7320
7321         * gst/videobox/gstvideobox.c: (plugin_init):
7322           Initialise liboil in plugin_init()
7323
7324 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
7325
7326         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7327         Post error before sending EOS. Fixes #499178.
7328
7329 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
7330
7331         * win32/vs6/gst_plugins_good.dsw:
7332         * win32/vs6/libgstpng.dsp:
7333         Add a project file for libgstpng
7334
7335 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
7336
7337         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7338         (gst_rtp_h263_depay_process):
7339         Code beautification.
7340         Added debug statements.
7341         Don't bit-shift everything, just do operations on last/first byte
7342         instead.
7343
7344 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
7345
7346         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7347
7348         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7349         Fix wrong comparison in overrun check. Fixes #499239 some more.
7350
7351 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
7352
7353         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7354         (gst_rtp_h263_depay_process):
7355         * gst/rtp/gstrtph263depay.h:
7356         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7357         stream.
7358
7359 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
7360
7361         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7362
7363         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7364         (gst_rtp_mp4a_depay_process):
7365         * gst/rtp/gstrtpmp4adepay.h:
7366         Fix depayloading when multiple frames are inside one RTP packet.
7367         Fixes #499239.
7368
7369 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7370
7371         * gst/level/gstlevel.c:
7372           Add GAP-flag support.
7373
7374 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
7375
7376         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7377         Read the I flag for Mode A h263 rtp stream and set the
7378         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7379         Fixes #499383
7380
7381 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7382
7383         * gst/level/gstlevel.c:
7384           Remove some dead code and do cleanups.
7385
7386 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7387
7388         * tests/check/pipelines/simple-launch-lines.c:
7389           Improve the tests by allowing to set a target state.
7390
7391 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
7392
7393         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7394         Don't check the caps of the output buffer if they're equal some
7395         other caps. The caps can change in a backward compatible way
7396         and did at this point.
7397
7398 2007-11-24  Julien MOUTTE  <julien@moutte.net>
7399
7400         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7401         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7402         (gst_qtdemux_seek_to_previous_keyframe),
7403         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7404         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7405         reverse playback support.
7406
7407 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7408
7409         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7410         Also set the channel layout on the Wavpack caps if we're having
7411         a mono layout. Of course only do it for "audio/x-wavpack".
7412
7413 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7414
7415         * ext/wavpack/gstwavpackcommon.c:
7416         (gst_wavpack_get_default_channel_mask),
7417         (gst_wavpack_set_channel_layout),
7418         (gst_wavpack_get_default_channel_positions),
7419         (gst_wavpack_get_channel_mask_from_positions),
7420         (gst_wavpack_set_channel_mapping):
7421         * ext/wavpack/gstwavpackcommon.h:
7422         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7423         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7424         * ext/wavpack/gstwavpackdec.h:
7425         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7426         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7427         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7428         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7429         (gst_wavpack_enc_rewrite_first_block),
7430         (gst_wavpack_enc_sink_event):
7431         * ext/wavpack/gstwavpackenc.h:
7432         * ext/wavpack/gstwavpackparse.c:
7433         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7434         (gst_wavpack_parse_scan_to_find_sample),
7435         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7436         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7437         * ext/wavpack/gstwavpackparse.h:
7438         Add support for encoding, parsing and decoding multichannel
7439         files with up to 8 channels. This also improves the robustness
7440         of parsing quite a bit.
7441
7442         * ext/wavpack/gstwavpackstreamreader.c:
7443         (gst_wavpack_stream_reader_read_bytes),
7444         (gst_wavpack_stream_reader_get_pos),
7445         (gst_wavpack_stream_reader_set_pos_abs),
7446         (gst_wavpack_stream_reader_set_pos_rel),
7447         (gst_wavpack_stream_reader_push_back_byte),
7448         (gst_wavpack_stream_reader_get_length),
7449         (gst_wavpack_stream_reader_can_seek),
7450         (gst_wavpack_stream_reader_write_bytes):
7451         Improve debugging.
7452
7453 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7454
7455         * ext/libpng/gstpngdec.c:
7456         * ext/libpng/gstpngdec.h:
7457           Don't release the png-memory from within the callback.
7458
7459 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7460
7461         Patch by: René Stadler <mail at renestadler dot de>
7462
7463         * ext/libpng/gstpngenc.c:
7464           Don't leak buffer data memory. Fixes #498395.
7465
7466 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7467
7468         Patch by: René Stadler <mail at renestadler dot de>
7469
7470         * tests/check/pipelines/simple-launch-lines.c:
7471           Tests for #498395.
7472
7473 2007-11-20  Julien MOUTTE  <julien@moutte.net>
7474
7475         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7476         (gst_tag_lib_mux_adjust_event_offsets):
7477         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7478         * sys/osxaudio/Makefile.am:
7479         * sys/osxvideo/cocoawindow.h:
7480         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7481
7482 2007-11-15  David Schleef  <ds@schleef.org>
7483
7484         * ext/cairo/gsttextoverlay.c:
7485           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
7486
7487 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7488
7489         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7490
7491         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7492         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7493         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7494         * gst/rtp/gstrtpmp2tpay.h:
7495         Fill the MTU with as many packets as possible. Fixes #491323.
7496
7497 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7498
7499         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7500
7501         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7502         Fix some more leaks. Fixes #497007.
7503
7504 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7505
7506         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7507
7508         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7509         (gst_rtspsrc_stream_configure_tcp):
7510         Fix 3 pad leaks. Fixes #496983.
7511
7512 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7513
7514         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7515
7516         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7517         Fix small leak. Fixes #497017.
7518
7519 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7520
7521         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7522         (gst_qtdemux_prepare_current_sample),
7523         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7524         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7525         * gst/qtdemux/qtdemux_fourcc.h:
7526         * gst/qtdemux/qtdemux_types.c:
7527         Add suppport for theora in quicktime according to XiphQT.
7528
7529 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
7530
7531         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7532         (gst_v4l2src_init), (gst_v4l2src_set_property),
7533         (gst_v4l2src_get_property):
7534         * sys/v4l2/gstv4l2src.h:
7535         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7536           Always copy buffers by default (handle safer with bugged drivers)
7537           and added a property to make it possible to use mmap effectively (no
7538           copy if possible) when application wants to. Fixes: #480557.
7539
7540 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7541
7542         * gst/id3demux/id3tags.c:
7543         * gst/id3demux/id3tags.h:
7544         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7545           We don't want the same string multiple times in a tag list for the
7546           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7547           this doesn't happen and remove special-case code for GST_TAG_GENRE.
7548
7549 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7550
7551         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7552           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7553           into ID3v2 TXXX frames (fixes #347848).
7554
7555 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7556
7557         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7558           Don't leak sdp message contents (fixes #496773).
7559
7560         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7561           Don't leak URI string.
7562
7563 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7564
7565         Patch by: Julien Puydt <julien dot puydt at laposte net>
7566
7567         * ext/raw1394/Makefile.am:
7568         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7569           (gst_1394_property_probe_get_properties),
7570           (gst_1394_property_probe_probe_property),
7571           (gst_1394_property_probe_needs_probe),
7572           (gst_1394_property_probe_get_values),
7573           (gst_1394_property_probe_interface_init),
7574           (gst_1394_type_add_property_probe_interface):
7575         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7576         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7577           (gst_dv1394src_init), (gst_dv1394src_dispose),
7578           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7579           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7580           (gst_dv1394src_update_device_name):
7581         * ext/raw1394/gstdv1394src.h:
7582           Implement GstPropertyProbe interface and add "device-name" property,
7583           so applications can use this to probe for available devices in the
7584           same way they can already with v4lsrc and v4l2src (however horrible
7585           this property probe interface may be). Fixes #358841.
7586
7587 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7588
7589         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7590
7591         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7592           (gst_rtspsrc_parse_range):
7593           Don't leak event, don't leak range (fixes #496752).
7594
7595 2007-11-14  Michael Smith <msmith@fluendo.com>
7596
7597         Patch by: Arek Korbik <arkadini@gmail.com>
7598
7599         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7600           Detect RGBA/BGRA correctly on little endian systems.
7601
7602 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7603
7604         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7605           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7606           corresponding ioctl() call fails even though the driver claims to
7607           support this format, just fall back to the pre-2.6.19 kernel
7608           routine that creates caps with suitable height and width ranges
7609           (see #448278).
7610
7611 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7612
7613         Patch by: Mark Nauwelaerts <manauw skynet be>
7614
7615         * gst/matroska/matroska-demux.c:
7616           (gst_matroska_demux_push_dvd_clut_change_event),
7617           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7618           (gst_matroska_demux_subtitle_caps):
7619         * gst/matroska/matroska-ids.h:
7620           Extract palette data for dvd subpicture streams and send it
7621           downstream as custom gstreamer dvd event (fixes #453417).
7622
7623 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7624
7625         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7626           Implement minimal parsing of the passed pango font description
7627           string, so passing a font size works the same as with the
7628           pango textoverlay plugin; fixes #455086.
7629           (Maybe we could just use pangocairo here at some point).
7630
7631 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7632
7633         * gst/avi/gstavidemux.c:
7634         * gst/wavparse/gstwavparse.c:
7635           Return the result in _activate_pull(). Don't ref element there.
7636
7637 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7638
7639         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7640         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7641         (gst_wavparse_srcpad_event):
7642           Ref the element when we should, but not when we its not needed. Reflow
7643           the event_handling to not leak the event.       
7644
7645 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
7646
7647         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7648         (qtdemux_parse_samples):
7649         Properly free QTDemuxSamples array.
7650         Protect table write with a sensible check, some files apparently DO contain
7651         stts values starting with 0 :(
7652
7653 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7654
7655         * gst/avi/gstavidemux.c:
7656         * gst/qtdemux/qtdemux.c:
7657           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7658           previous commit messed up.
7659
7660 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7661
7662         * gst/avi/gstavidemux.c:
7663         * gst/qtdemux/qtdemux.c:
7664           Sync _handle_src_event() with oggdemux. In avidemux also ref the
7665           element when we should, but not when we its not needed.
7666
7667 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
7668
7669         * gst/wavparse/gstwavparse.c:
7670           Return FALSE if we can't handle a query instead of changing the
7671           format. Ignore fact when dealing with mpeg audio.
7672
7673 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7674
7675         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
7676
7677         * configure.ac:
7678         * gst/udp/gstdynudpsink.c:
7679         * gst/udp/gstdynudpsink.h:
7680         * gst/udp/gstmultiudpsink.c:
7681         * gst/udp/gstmultiudpsink.h:
7682         * gst/udp/gstudpsink.c:
7683         * gst/udp/gstudpsink.h:
7684           Fix includes for MSVC and GLib-2.14.0 (#492388).
7685
7686         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7687           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7688
7689 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
7690
7691         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7692         (gst_mulawdec_chain):
7693         * gst/law/mulaw-decode.h:
7694         Calculate outgoing buffer duration if incoming buffer didn't have a
7695         valid duration.
7696
7697 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
7698
7699         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7700         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7701         Smarter combine_flow code that also deals with downstream elements
7702         returning UNEXPECTED when they receive data out of the segment
7703         boundaries. Fixes #491305.
7704
7705 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7706
7707         * sys/v4l2/v4l2src_calls.c:
7708           Fix 'unused variable' compiler warning when compiling against
7709           older kernel headers.
7710
7711 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
7712
7713         * ext/taglib/gstid3v2mux.cc (add_funcs):
7714           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7715
7716 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
7717
7718         * tests/check/pipelines/simple-launch-lines.c:
7719            Improve the tests a little more.
7720
7721 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
7722
7723         patch by: Yun Zheng Hu
7724
7725         * sys/osxaudio/gstosxaudiosrc.c:
7726         Use default input device instead of default output device and
7727         only memcpy actual available bytes.
7728
7729 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
7730
7731         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7732           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7733           early. It is temporary until we find something better.
7734
7735 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7736
7737         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7738
7739         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7740         Fix race when pausing a RTSP stream in interleaved.
7741         Fixes #475784.
7742
7743 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7744
7745         Patch by: Peter Kjellerstedt <pkj at axis com>
7746
7747         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7748         Use correct unref function for buffers. #488844.
7749
7750 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
7751
7752         * gst/avi/gstavimux.c:
7753         * tests/check/elements/avimux.c:
7754           Add some debug and sync tests with the fix.     
7755
7756 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7757
7758         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7759
7760         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7761         When the socket is used by the app for other purposes, don't generate an
7762         error if there is activaty on the socket that is not data related.
7763         Fixes #487488.
7764
7765 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7766
7767         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7768         (gst_v4l2src_grab_frame):
7769         Add some more debug info. Generate an error when we run out of buffers
7770         for some reason. See #480557.
7771
7772 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7773
7774         Patch by: Anders Skargren <anders dot skargren at axis dot com>
7775
7776         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7777         Set marker bit correctly.
7778
7779 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
7780
7781         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7782         Use allowed name for the GstStructure.
7783
7784 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7785
7786         * ext/gconf/gstswitchsink.c:
7787         * gst/autodetect/gstautoaudiosink.c:
7788           Use new gst_bus_pop_filtered().
7789
7790 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7791
7792         * sys/v4l2/gstv4l2src.c:
7793         * sys/v4l2/v4l2src_calls.c:
7794           When probing the formats and sizes a camera supports, make
7795           sure the best ones (highest resolution, prefered format)
7796           end up at the beginning of the probed caps and the less
7797           desirable ones at the end.  This is important because the
7798           order within the caps matters for things like fixation and
7799           negotiation, ie. what format is chosen in the end.
7800           With recent kernels, the current probing code will end up
7801           querying the supported sizes from lowest resolution to
7802           highest resolution, adding them to the probed caps in that
7803           order, resulting to v4l2src fixating to the lowest possible
7804           resolution if downstream does not express a size preference.
7805           Also make up a somewhat random ranking of prefered output
7806           formats for the same reason. Fixes #485828.
7807         
7808 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7809
7810         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
7811
7812         * gst/id3demux/id3v2frames.c:
7813           Extract license/copyright URIs from ID3v2 WCOP frames
7814           (Fixes #447000).
7815
7816         * tests/check/elements/id3demux.c:
7817         * tests/files/Makefile.am:
7818         * tests/files/id3-447000-wcop.tag:
7819           Add simple unit test.
7820
7821 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7822
7823         * ext/taglib/gstid3v2mux.cc:
7824           Add support for license/copyright URI tags (ID3v2 WCOP frame).
7825           Prerequisite for #447000.
7826
7827 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
7828
7829         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7830         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7831         a GstClockTime.
7832
7833 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7834
7835         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7836         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7837         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7838         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7839         (gst_rtspsrc_change_state):
7840         More seeking fixes, mostly passing around the new playback segment in
7841         order to configure it properly.
7842         Also reset base_time of udp sources when setting them back to PLAYING as
7843         a temporary hack until core supports seek in live sources properly.
7844
7845 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7846
7847         * gst/rtp/gstrtpmp4adepay.c:
7848         Fix caps as to not confuse autopluggers.
7849
7850 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7851
7852         * gst/id3demux/gstid3demux.c:
7853         * gst/id3demux/gstid3demux.h:
7854         * gst/id3demux/id3tags.c:
7855         * gst/id3demux/id3tags.h:
7856         * gst/id3demux/id3v2frames.c:
7857           Port ID3 tag demuxer over to the new GstTagDemux in -base
7858           (now would be a good time to test re-importing your music
7859           collection).
7860
7861 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7862
7863         * gst/apetag/Makefile.am:
7864         * gst/apetag/gstapedemux.c:
7865         * gst/apetag/gstapedemux.h:
7866         * gst/apetag/gsttagdemux.c:
7867         * gst/apetag/gsttagdemux.h:
7868           Port APE tag demuxer over to the new GstTagDemux in -base.
7869
7870 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
7871
7872         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7873         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7874         (gst_rtspsrc_handle_internal_src_query),
7875         (gst_rtspsrc_handle_src_query), (new_session_pad),
7876         (gst_rtspsrc_stream_configure_tcp),
7877         (gst_rtspsrc_stream_configure_transport),
7878         (gst_rtspsrc_loop_send_cmd):
7879         Improve flushing behaviour.
7880         Set state of the udp sources to PAUSE/PLAYING correctly.
7881         Handle events and queries for UDP and TCP transport now.
7882
7883 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7884
7885         * gst/rtp/gstrtpgsmdepay.c:
7886         * gst/rtp/gstrtpgsmpay.c:
7887           Add log category.
7888
7889 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7890
7891         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7892
7893         * tests/check/Makefile.am:
7894         * tests/check/pipelines/simple-launch-lines.c:
7895           Add unit tests for payloaders/depayloaders.
7896
7897 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7898
7899         * gst/avi/gstavimux.c:
7900         * gst/avi/gstavimux.h:
7901           Also save codec data for audio streams. Fixes #482495.
7902
7903 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7904
7905         * gst/avi/gstavimux.c:
7906           Fix "Index entry has invalid stream nr 1".
7907           Add support for muxing aac - work in progress (see #482495).
7908
7909 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7910
7911         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7912         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7913         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7914         * gst/rtsp/gstrtspsrc.h:
7915         Parse bandwidth modifiers, they are not yet configured in the session
7916         manager because we don't have an API for that yet.
7917
7918 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7919
7920         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7921         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7922         Use shiny new function in -base to get the default clock-rate.
7923         Update some docs.
7924
7925 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
7926
7927         * win32/MANIFEST:
7928         Add files to win32 manifest.
7929         * win32/vs6/libgstaudiofx.dsp:
7930         * win32/vs6/libgstqtdemux.dsp:
7931         * win32/vs6/libgstrtp.dsp:
7932         * win32/vs6/libgstrtsp.dsp:
7933         Update project files.
7934
7935 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
7936
7937         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
7938         (gst_rtspsrc_play):
7939         * gst/rtsp/gstrtspsrc.h:
7940         In TCP mode, only timestamp the first buffer. TCP is not real time and
7941         it does not make sense to try to skew compensate, also some servers send
7942         the first batch of data in a burst.
7943
7944 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7945
7946         * gst/matroska/matroska-demux.c:
7947           Fix setting the discont flag on the first buffer
7948           pushed downstream for formats with private codec
7949           data that needs to be deserialised into buffers
7950           (such as vorbis and FLAC when in a matroska container).
7951
7952 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
7953
7954         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
7955
7956         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
7957         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
7958         (gst_rtp_mp4v_pay_handle_buffer):
7959         * gst/rtp/gstrtpmp4vpay.h:
7960         Free the config string. Fixes #480707.
7961         Clean up the timestamp code a little.
7962
7963 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7964
7965         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
7966         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
7967         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
7968         * gst/rtsp/gstrtspsrc.h:
7969         Set timestamps on RTP buffers in interleaved mode.
7970         Mark first buffers with a DISCONT.
7971         Remove flush hack now that sync for live sources has been figured out.
7972
7973 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7974
7975         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7976         Update documentation.
7977
7978 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7979
7980         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
7981         (gst_rtp_xqt_depay_change_state):
7982         * gst/qtdemux/gstrtpxqtdepay.h:
7983         Fail if we don't know the quicktime format.
7984
7985 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
7986
7987         * ext/flac/gstflacenc.c:
7988         * ext/flac/gstflacenc.h:
7989           Save the flow return from the last gst_pad_push() and
7990           make sure we pass the right flow return value upstream
7991           in the case of failure; minor clean-ups.
7992
7993 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7994
7995         * ext/taglib/gstapev2mux.cc:
7996         * ext/taglib/gstid3v2mux.cc:
7997         * gst/apetag/gstapedemux.c:
7998           Add support for the new GST_TAG_COMPOSER (#459809).
7999
8000 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8001
8002         * gst/law/alaw-decode.c:
8003         * gst/law/alaw-decode.h:
8004         * gst/law/alaw-encode.c:
8005         * gst/law/alaw-encode.h:
8006         * gst/law/alaw.c:
8007         * gst/law/mulaw-conversion.h:
8008           Compulsive clean-ups: use boilerplate macros, add debug
8009           categories, fix up things to conform to symbol nomenklatura,
8010           etc.
8011
8012 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8013
8014         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
8015
8016         * gst/law/alaw-decode.c:
8017         * gst/law/alaw-encode.c:
8018           Use static tables for A-Law decoding and encoding; this makes
8019           A-Law decoding and encoding less CPU-intensive, but increases
8020           the binary size a bit. Leaving old code around for now,
8021           selectable by a define in the code. Fixes #435435.
8022
8023 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8024
8025         * configure.ac:
8026         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
8027         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
8028         in configure.ac.
8029
8030 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8031
8032         Patch by: Jan Gerber <j at bootlab dot org>
8033
8034         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8035         Add fourccs for MPEG2 HDV streams. Fixes #479960.
8036
8037 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
8038
8039         * sys/oss/gstosshelper.c:
8040           Use GST_WARNING instead of a g_critical. This situation is not caused
8041           by the application.
8042
8043 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8044
8045         * po/LINGUAS:
8046         * po/nl.po:
8047           Updated translations.
8048
8049 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8050
8051         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
8052
8053         * po/eu.po:
8054           Added Basque translation.
8055
8056 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8057
8058         translated by: Abel Cheung <abelcheung@gmail.com>
8059
8060         * po/zh_HK.po:
8061         * po/zh_TW.po:
8062           Added Chinese (traditional and Hong Kong) translation.
8063
8064 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8065
8066         translated by: Jakub Bogusz <qboosh@pld-linux.org>
8067
8068         * po/pl.po:
8069           Added Polish translation.
8070
8071 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8072
8073         translated by: Ilkka Tuohela <hile@iki.fi>
8074
8075         * po/fi.po:
8076           Added Finnish translation.
8077
8078 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8079
8080         translated by: Jorge González González <aloriel@gmail.com>
8081
8082         * po/es.po:
8083           Added Spanish translation.
8084
8085 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8086
8087         translated by: Mogens Jaeger <mogens@jaeger.tf>
8088
8089         * po/da.po:
8090           Added Danish translation.
8091
8092 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8093
8094         translated by: Funda Wang <fundawang@linux.net.cn>
8095
8096         * po/zh_CN.po:
8097           Added Chinese (simplified) translation.
8098
8099 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8100
8101         translated by: Alexander Shopov <ash@contact.bg>
8102
8103         * po/bg.po:
8104           Added Bulgarian translation.
8105
8106 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
8107
8108         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
8109         Set outgoing packet duration because we can. Fixes #478244 some more.
8110
8111 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
8112
8113         * ext/cairo/gsttextoverlay.c:
8114           Add info about static leak.
8115         
8116         * tests/check/Makefile.am:
8117         * tests/check/generic/states.c:
8118           Improved state change unit test.
8119
8120 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
8121
8122         * docs/plugins/.cvsignore:
8123         * tests/check/.cvsignore:
8124           Ignore registries in any format.
8125
8126 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
8127
8128         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8129         Removed some unused code.
8130
8131         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8132         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8133         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8134         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8135         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8136         (gst_rtp_theora_pay_flush_packet):
8137         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8138         Try to preserve the incomming buffer duration on the outgoing
8139         packets. Fixes #478244.
8140
8141 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8142
8143         * ext/taglib/gstapev2mux.cc:
8144         * ext/taglib/gstid3v2mux.cc:
8145           Work around compiler warnings with g++-4.2 when assigning a
8146           string constant to a gchar * (partially fixes #478092).
8147
8148 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8149
8150         * configure.ac:
8151           We require core CVS now for gst_base_src_set_do_timestamp().
8152
8153 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
8154
8155         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8156         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8157         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8158         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8159         (gst_rtspsrc_handle_message):
8160         Fix compiler warnings shown with Forte.
8161
8162 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8163
8164         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8165         (gst_rtspsrc_dup_printf):
8166         Give meaningfull error when all streams failed to configure for some
8167         reason.
8168
8169 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8170
8171         * gst/rtp/README:
8172         Update README with the design for synchronisation rules of RTP on
8173         sender and receiver.
8174
8175 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
8176
8177         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8178         (gst_wavparse_chain):
8179         Don't push EOS from the chain function, the element
8180         driving the pipeline is responsible for this. The bug
8181         this was meant to fix seems to be queue not forwarding
8182         EOS in all cases (see #476514).
8183
8184 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
8185
8186         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8187         (gst_level_transform_ip):
8188         * gst/level/gstlevel.h:
8189         Use basetransform segment so that it is correctly managed on flushes and
8190         start/stop.
8191         Report message timestamp as stream time, which is what an application
8192         can understand.
8193
8194 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8195
8196         * ext/taglib/gstapev2mux.cc:
8197         * ext/taglib/gstapev2mux.h:
8198         * ext/taglib/gsttaglibmux.c:
8199         * tests/check/elements/apev2mux.c:
8200         Update my mail address.
8201
8202 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8203
8204         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8205         (gst_wavparse_loop), (gst_wavparse_chain):
8206         Add EOS logic for the push-based mode too. Fixes #476514.
8207
8208 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
8209
8210         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8211         * gst/law/alaw-encode.h:
8212         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8213         (gst_mulawenc_chain):
8214         * gst/law/mulaw-encode.h:
8215         Fix law encoder timestamps.
8216
8217 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
8218
8219         * ext/gconf/gstgconfaudiosink.c:
8220           Fix warning when building without debug.
8221
8222         * sys/oss/gstossmixertrack.c:
8223           Use const like in alsamixertrack.c (fixes warnings).
8224
8225 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
8226
8227         * sys/v4l2/v4l2src_calls.c:
8228         (gst_v4l2src_probe_caps_for_format_and_size):
8229         Fix framerate detection code some more.
8230         Handle the case where there is a weird step in the stepwise framerates.
8231         Don't overwrite the min interval with the framerate, use a temp variable
8232         instead.
8233         Use max in the Continuous framerate intervals instead of step, which is
8234         1 according to the docs. Fixes #475424.
8235
8236 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
8237
8238         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8239         Make udpsrc timestamp outgoing buffers based on when they were received.
8240         Also make it output a segment in time.
8241
8242 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
8243
8244         * gst/avi/gstavidemux.c:
8245           Plug a little leak. Little code cleanups.
8246
8247 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
8248
8249         * configure.ac:
8250           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8251           flac versions, 's good for cross-compilation karma.
8252
8253 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
8254
8255         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
8256
8257         * gst/rtp/gstrtph263pay.c:
8258           Fix up header structure so that compilers don't add padding
8259           between the structure fields, since that would lead to us
8260           sending RTP packets with broken headers (as is currently the
8261           case when compiling with MSVC). Also see similar fixes in
8262           libgstrtp in gst-plugins-base. (#474616; #471194)
8263
8264 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
8265
8266         * sys/v4l2/v4l2src_calls.c:
8267         (gst_v4l2src_probe_caps_for_format_and_size):
8268         Don't overwrite our GValue with 0 but instead use the previously
8269         computed value. Fixes #471823 some more.
8270
8271 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8272
8273         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8274           No tabs in this file please, or gtk-doc will end up documenting
8275           rather absurd class hierarchies.
8276
8277 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8278
8279         * ext/gconf/gstswitchsink.c:
8280           If the new kid element fails to change state for some reason
8281           (e.g. esdsink not being able to connect to the sound server),
8282           forward the error message it posted on the bus instead of just
8283           posting a generic 'Internal state change error: please file a
8284           bug' error message. Fixes #471364.
8285
8286 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8287
8288         * gst/qtdemux/Makefile.am:
8289         * gst/qtdemux/qtdemux.c:
8290           Don't assume tags are encoded as UTF-8 (#473670).
8291
8292 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8293
8294         * sys/v4l2/gstv4l2src.c:
8295         * sys/v4l2/gstv4l2src.h:
8296         * sys/v4l2/v4l2src_calls.c:
8297           Implement LATENCY queries in the crudest way possible so I don't
8298           have to use sync=false any longer when testing with videosinks.
8299
8300 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8301
8302         * configure.ac:
8303           Fix build.
8304
8305 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8306
8307         * sys/v4l2/v4l2src_calls.c:
8308         (gst_v4l2src_probe_caps_for_format_and_size):
8309         Add some more debugging in the framerate function.
8310         Iterate stepwise framerate up to and _including_ the max and if nothing
8311         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8312         don't end up with an empty list. Fixes #471823
8313
8314 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8315
8316         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8317         (gst_multiudpsink_set_clients_string),
8318         (gst_multiudpsink_get_clients_string),
8319         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8320         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8321         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8322         (gst_multiudpsink_clear):
8323         Add property do configure destination address/port pairs
8324         API:GstMultiUDPSink::clients
8325
8326 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8327
8328         * tests/examples/Makefile.am:
8329         * tests/examples/rtp/Makefile.am:
8330         * tests/examples/rtp/client-H263p-AMR.sh:
8331         * tests/examples/rtp/client-H263p-PCMA.sdp:
8332         * tests/examples/rtp/client-H263p-PCMA.sh:
8333         * tests/examples/rtp/client-H264-PCMA.sdp:
8334         * tests/examples/rtp/client-H264-PCMA.sh:
8335         * tests/examples/rtp/client-PCMA.sh:
8336         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8337         * tests/examples/rtp/server-alsasrc-PCMA.sh:
8338         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8339         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8340         Added some RTP example scripts for sending and receiving RTP streams.
8341
8342 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8343
8344         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8345         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8346         Restructure the setcaps function so that we can also compute the
8347         expected GStreamer output size of the video frames.
8348         Set frame_byte_size correctly so that read-based devices have a chance
8349         of working correctly.
8350         When grabbing a frame, discard frames that are not of the expected size.
8351         Some cameras don't output the right framesize for the first buffer.
8352         Try only a couple of times to get a valid frame, else error out.
8353
8354         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8355         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8356         Add some more debug info when scanning the device.
8357
8358         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8359         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8360         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8361         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8362         Add some more debug info when dequeing a frame.
8363
8364 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8365
8366         * gst/wavparse/gstwavparse.c:
8367           More code cleanups. Add some more comment and improve debugs logs.
8368
8369 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8370
8371         * gst/wavparse/gstwavparse.c:
8372         * gst/wavparse/gstwavparse.h:
8373           Implement seek-query. Refactor duration calculations. Appropriate use
8374           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8375           out of loops.
8376
8377 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
8378
8379         * gst/avi/gstavidemux.c:
8380           Implement seek-query.
8381
8382 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
8383
8384         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8385         (gst_rtspsrc_dup_printf):
8386         Use new basesink async property to make sparse RTCP packet not wait for
8387         preroll.
8388
8389 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
8390
8391         * gst/audiofx/Makefile.am:
8392         Dist the right file.
8393
8394 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
8395
8396         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8397         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8398         Make sure we generate and parse floating point values in the POSIX
8399         locale instead of the current locale. 
8400
8401 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
8402
8403         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8404         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8405         (gst_rtspsrc_play):
8406         * gst/rtsp/gstrtspsrc.h:
8407         Fix method detection again.
8408         Keep track of when we must send a Range header.
8409         Use segment values for Range, Speed and Scale headers.
8410         Parse Speed and Scale headers to update the segment values.
8411
8412 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
8413
8414         patch by: Mark Nauwelaerts <manauw@skynet.be>
8415
8416         * sys/v4l2/v4l2src_calls.c:
8417           Handle optional v4l2 ioctls gracefully.
8418
8419 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
8420
8421         * gst/rtp/Makefile.am:
8422         * gst/rtp/gstrtp.c: (plugin_init):
8423         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8424         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8425         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8426         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8427         (gst_rtp_h263_depay_get_property),
8428         (gst_rtp_h263_depay_change_state),
8429         (gst_rtp_h263_depay_plugin_init):
8430         * gst/rtp/gstrtph263depay.h:
8431         Added an H263 depayloader. Fixes #369392.
8432
8433         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8434         (gst_rtp_h263p_depay_process):
8435         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8436         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8437         Make the H263+ pay/depayloader support H263-1998 and H263-2000
8438         payloads.
8439         Also alow plain H263 on the h263p payloaders. Fixes #465040.
8440
8441 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8442
8443         * gst/audiofx/audiochebyshevfreqband.c:
8444         * gst/audiofx/audiochebyshevfreqlimit.c:
8445         Add small comparision with the windowed sinc filters in the docs.
8446
8447 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8448
8449         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8450         (audiochebyshevfreqband_suite):
8451         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8452         (audiochebyshevfreqlimit_suite):
8453         Also test 32 bit float mode and the type 2 variants of the filters.
8454
8455 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
8456
8457         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8458         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8459         (gst_rtspsrc_loop):
8460         Refactor the udp and interleaved loop function a bit.
8461
8462 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8463
8464         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8465         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8466         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8467         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8468         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8469         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8470         * gst/rtsp/gstrtspsrc.h:
8471         Protect connection activity with a new lock, avoids deadlocks when going
8472         to PAUSED. Fixes #455808.
8473
8474 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8475
8476         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8477         Fix debug statement.
8478
8479 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8480
8481         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8482         Fix stray %u in debug line as spotted by Saur on IRC.
8483
8484 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
8485
8486         * gst/audiofx/audiochebyshevfreqband.c:
8487         (gst_audio_chebyshev_freq_band_class_init):
8488         * gst/audiofx/audiochebyshevfreqlimit.c:
8489         (gst_audio_chebyshev_freq_limit_class_init):
8490         Use generator macros for the process functions for the different
8491         sample types, add lower upper boundaries for the GObject properties
8492         so automatically generated UIs can use sliders and add a note about
8493         the number of poles as a too high number of poles combined with
8494         very low or very high frequencies will produce only noise.
8495         * docs/plugins/gst-plugins-good-plugins.args:
8496         Regenerated for the property changes.
8497
8498 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8499
8500         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8501         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8502         (gst_rtspsrc_stream_configure_udp_sink),
8503         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8504         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8505         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8506         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8507         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8508         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8509         * gst/rtsp/gstrtspsrc.h:
8510         Improve timeout handling.
8511         Use the same socket for sending and receiving RTCP packets so that some
8512         servers can track clients better.
8513         Improve connection closed handling. Try to reconnect.
8514         Don't overwrite our content base with NULL.
8515         Improve debugging.
8516         Improve range parsing and handling.
8517         Remove flushing hack now that core does the right thing.
8518
8519 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8520
8521         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8522         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8523         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8524         (gst_multiudpsink_close), (gst_multiudpsink_add):
8525         * gst/udp/gstmultiudpsink.h:
8526         Add support for getting and setting the socket to use.
8527
8528         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8529         (gst_udpsrc_create), (gst_udpsrc_get_property):
8530         Add support for getting the currently used socket.
8531
8532 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
8533
8534         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8535
8536         * gst/audiofx/Makefile.am:
8537         * gst/audiofx/audiochebyshevfreqband.c:
8538         (gst_audio_chebyshev_freq_band_mode_get_type),
8539         (gst_audio_chebyshev_freq_band_base_init),
8540         (gst_audio_chebyshev_freq_band_dispose),
8541         (gst_audio_chebyshev_freq_band_class_init),
8542         (gst_audio_chebyshev_freq_band_init),
8543         (generate_biquad_coefficients), (calculate_gain),
8544         (generate_coefficients),
8545         (gst_audio_chebyshev_freq_band_set_property),
8546         (gst_audio_chebyshev_freq_band_get_property),
8547         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8548         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8549         (gst_audio_chebyshev_freq_band_start):
8550         * gst/audiofx/audiochebyshevfreqband.h:
8551         * gst/audiofx/audiochebyshevfreqlimit.c:
8552         (gst_audio_chebyshev_freq_limit_mode_get_type),
8553         (gst_audio_chebyshev_freq_limit_base_init),
8554         (gst_audio_chebyshev_freq_limit_dispose),
8555         (gst_audio_chebyshev_freq_limit_class_init),
8556         (gst_audio_chebyshev_freq_limit_init),
8557         (generate_biquad_coefficients), (calculate_gain),
8558         (generate_coefficients),
8559         (gst_audio_chebyshev_freq_limit_set_property),
8560         (gst_audio_chebyshev_freq_limit_get_property),
8561         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8562         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8563         (gst_audio_chebyshev_freq_limit_start):
8564         * gst/audiofx/audiochebyshevfreqlimit.h:
8565         * gst/audiofx/audiofx.c: (plugin_init):
8566         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8567         Fixes #464800.
8568
8569         * tests/check/Makefile.am:
8570         * tests/check/elements/.cvsignore:
8571         * tests/check/elements/audiochebyshevfreqband.c:
8572         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8573         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8574         * tests/check/elements/audiochebyshevfreqlimit.c:
8575         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8576         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8577         Add unit tests for the chebyshev filters.
8578
8579         * docs/plugins/Makefile.am:
8580         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8581         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8582         * docs/plugins/gst-plugins-good-plugins.args:
8583         * docs/plugins/inspect/plugin-1394.xml:
8584         * docs/plugins/inspect/plugin-audiofx.xml:
8585         * docs/plugins/inspect/plugin-dv.xml:
8586         * docs/plugins/inspect/plugin-flac.xml:
8587         * docs/plugins/inspect/plugin-jpeg.xml:
8588         * docs/plugins/inspect/plugin-png.xml:
8589         * docs/plugins/inspect/plugin-rtp.xml:
8590         * docs/plugins/inspect/plugin-shout2send.xml:
8591         * docs/plugins/inspect/plugin-wavpack.xml:
8592         And add docs for the chebyshev filters. While doing
8593         that also run make update in docs/plugins.
8594
8595 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8596
8597         * ext/annodex/gstcmmltag.c:
8598         * gst/rtp/gstrtpvorbispay.c:
8599           Make ro memory to share.
8600
8601 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8602
8603         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8604         Improve UDP performance by avoiding a select() when we have data
8605         available immediatly.
8606
8607 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8608
8609         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8610         (gst_rtp_dec_class_init):
8611         * gst/rtsp/gstrtpdec.h:
8612         Add (dummy) SSRC management signals.
8613
8614         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8615         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8616         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8617         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8618         (on_timeout), (gst_rtspsrc_stream_configure_manager),
8619         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8620         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8621         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8622         * gst/rtsp/gstrtspsrc.h:
8623         Add connection-speed property.
8624         Add find_stream helper functions.
8625         Handle stream EOS based on BYE messages or SSRC timeout.
8626         Returns SUCCESS from the state change function as we hide our async
8627         elements from the parent.
8628
8629 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8630
8631         * gst/debug/rndbuffersize.c:
8632           Fix da leak.
8633
8634 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
8635
8636         * gst/debug/Makefile.am:
8637         * gst/debug/breakmydata.c:
8638         * gst/debug/gstdebug.c:
8639         * gst/debug/negotiation.c:
8640         * gst/debug/progressreport.c:
8641         * gst/debug/rndbuffersize.c:
8642         * gst/debug/testplugin.c:
8643           Add new test element and clean-up the others a little.
8644
8645 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
8646
8647         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8648         Fix parsing of mp4a version 0 atoms. Fixes #465774.
8649
8650 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
8651
8652         * gst/rtp/gstrtpilbcdepay.c:
8653           Include stdlib.
8654
8655 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
8656
8657         * gst/rtp/gstrtpmpvdepay.c:
8658         Set the mpegversion in the caps so that autoplugging does not get
8659         confused.
8660
8661 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8662
8663         * po/hu.po:
8664         * po/uk.po:
8665         * po/vi.po:
8666           Updated translations.
8667
8668 2007-08-08  Michael Smith <msmith@fluendo.com>
8669
8670         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8671           Render right border in the correct location.
8672
8673 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
8674
8675         Patch by: Olivier Crete <tester at tester dot ca>
8676
8677         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8678         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8679         Make mode property a string. Fixes #464475.
8680
8681 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8682
8683         * ext/flac/gstflacenc.c:
8684           Widen caps to match decoder a bit and add more FIXMEs.
8685
8686 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8687
8688         patch by: Mark Nauwelaerts <manauw@skynet.be>
8689
8690         * gst/avi/gstavimux.c:
8691           Fix ODML index tag numbering. Fixes #463624.
8692
8693 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
8694
8695         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8696         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8697         (gst_rtspsrc_stream_configure_tcp),
8698         (gst_rtspsrc_stream_configure_udp_sink):
8699         Fix default clock-rate for realmedia.
8700         Fix parsing of transport.
8701         Don't try to link NULL pads.
8702
8703 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
8704
8705         * po/POTFILES.skip:
8706           Add POTFILES.skip with list of source files that aren't disted at the
8707           moment but contain translatable strings. Should hopefully pacify
8708           broken tools and make it clearer that these files are left out
8709           intentionally (#461600).
8710
8711 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
8712
8713         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8714         If the buffer was entirely clipped ... don't try sending it :)
8715
8716 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8717
8718         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8719         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8720         (gst_rtspsrc_create_transports_string),
8721         (gst_rtspsrc_prepare_transports):
8722         If we don't hav a session manager, set the caps on outgoing buffers
8723         ourselves.
8724         Force PAUSE/PLAY methods for now until the extensions can overwrite.
8725         Append final bit of the transport string even when it does not contain a
8726         placeholder.
8727
8728 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8729
8730         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8731         (gst_rtsp_ext_list_connect):
8732         * gst/rtsp/gstrtspext.h:
8733         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8734         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8735         Clean up the interface list.
8736         Allow connecting to interface signals for the extensions.
8737         Remove old extension code.
8738         Free list on cleanup.
8739         Allow extensions to send additional RTSP messages.
8740
8741 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8742
8743         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8744         Handle a NULL gconf key gracefully by rendering the default element.
8745
8746 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8747
8748         * gst/rtsp/gstrtspext.h:
8749         Fix include path for extension interface.
8750
8751 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8752
8753         * gst/audiofx/audioamplify.h:
8754         Also remove a now unecessary variable here.
8755
8756 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8757
8758         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8759         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8760         * gst/audiofx/audiodynamic.c:
8761         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8762         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8763         * gst/audiofx/audiodynamic.h:
8764         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8765         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8766         * gst/audiofx/audioinvert.h:
8767         Don't save format information ourselves, this is already saved in
8768         GstAudioFilter.
8769
8770 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8771
8772         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8773         (gst_rtsp_ext_list_stream_select):
8774         * gst/rtsp/gstrtspext.h:
8775         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8776         Use rank to filter out extensions.
8777         Add url to stream_select interface call.
8778
8779 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8780
8781         * gst/rtsp/Makefile.am:
8782         * gst/rtsp/base64.c:
8783         * gst/rtsp/base64.h:
8784         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8785         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8786         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8787         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8788         (gst_rtsp_ext_list_setup_media),
8789         (gst_rtsp_ext_list_configure_stream),
8790         (gst_rtsp_ext_list_get_transports),
8791         (gst_rtsp_ext_list_stream_select):
8792         * gst/rtsp/gstrtspext.h:
8793         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8794         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8795         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8796         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8797         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8798         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8799         (gst_rtspsrc_stream_configure_tcp),
8800         (gst_rtspsrc_stream_configure_mcast),
8801         (gst_rtspsrc_stream_configure_udp),
8802         (gst_rtspsrc_stream_configure_udp_sink),
8803         (gst_rtspsrc_stream_configure_transport),
8804         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8805         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8806         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8807         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8808         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8809         (gst_rtspsrc_parse_methods),
8810         (gst_rtspsrc_create_transports_string),
8811         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8812         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8813         (gst_rtspsrc_play), (gst_rtspsrc_pause),
8814         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8815         * gst/rtsp/gstrtspsrc.h:
8816         * gst/rtsp/rtsp.h:
8817         * gst/rtsp/rtspconnection.c:
8818         * gst/rtsp/rtspconnection.h:
8819         * gst/rtsp/rtspdefs.c:
8820         * gst/rtsp/rtspdefs.h:
8821         * gst/rtsp/rtspext.h:
8822         * gst/rtsp/rtspextwms.c:
8823         * gst/rtsp/rtspextwms.h:
8824         * gst/rtsp/rtspmessage.c:
8825         * gst/rtsp/rtspmessage.h:
8826         * gst/rtsp/rtsprange.c:
8827         * gst/rtsp/rtsprange.h:
8828         * gst/rtsp/rtsptransport.c:
8829         * gst/rtsp/rtsptransport.h:
8830         * gst/rtsp/rtspurl.c:
8831         * gst/rtsp/rtspurl.h:
8832         * gst/rtsp/sdp.h:
8833         * gst/rtsp/sdpmessage.c:
8834         * gst/rtsp/sdpmessage.h:
8835         * gst/rtsp/test.c:
8836         Use shiny new RTSP and SDP library.
8837         Implement RTSP extensions using the new interface.
8838         Remove a lot of old code.
8839
8840 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
8841
8842         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8843         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8844
8845 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8846
8847         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8848         Don't unref the outgoing buffer twice when dropping it because it's
8849         outside of the segment.
8850
8851 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8852
8853         * configure.ac:
8854         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8855         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8856         Use the new buffer clipping function from gstaudio here and
8857         require gst-plugins-base CVS.
8858         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8859         For framed Wavpack buffers we require a valid timestamp.
8860
8861 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8862
8863         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8864         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8865         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8866         Clip raw audio and video when we can, keep track of current output
8867         segment.
8868         Don't leak buffers and events when there is no output pad.
8869         Improve debugging here and there.
8870
8871 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8872
8873         * configure.ac:
8874           Sync liboil check with plugins-base.
8875
8876 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8877
8878         * ext/annodex/Makefile.am:
8879           Fix CFLAGS/LIBS.
8880
8881         * ext/cdio/gstcdiocddasrc.c:
8882         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8883           Include stdlib
8884
8885         * ext/cairo/Makefile.am:
8886         * gst/videofilter/Makefile.am:
8887         * tests/examples/level/Makefile.am:
8888           Use $(LIBM) instead of -lm
8889
8890 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8891
8892         * sys/v4l2/gstv4l2src.c:
8893           Add another example pipeline.
8894
8895 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8896
8897         Patch by: Alexander Eichner <alexeichi@yahoo.de>
8898
8899         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8900           Use define here.
8901
8902         * sys/v4l2/gstv4l2tuner.c:
8903         (gst_v4l2_tuner_set_frequency_and_notify):
8904           Don't touch the property - its still disabled.
8905
8906         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8907         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8908         * sys/v4l2/v4l2src_calls.h:
8909           Improve fallback format negotionation. Fixes #451388
8910
8911 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8912
8913         * tests/check/elements/videocrop.c: (GST_START_TEST):
8914           Fix the test.
8915
8916 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8917
8918         * docs/plugins/Makefile.am:
8919         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8920         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8921         * docs/plugins/inspect/plugin-jpeg.xml:
8922         * docs/plugins/inspect/plugin-png.xml:
8923         * ext/jpeg/gstjpegdec.c:
8924         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
8925         (gst_pngdec_sink_setcaps):
8926           More docs. More logs in pngdec.
8927
8928 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
8929
8930         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8931           Initialize num_buffers with minimum value.
8932
8933         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
8934         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
8935           Handle frame-size query failure gracefully.
8936
8937 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8938
8939         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8940         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
8941         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
8942         of qt/aac files.
8943
8944 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
8945
8946         * ext/wavpack/gstwavpackdec.c:
8947         (gst_wavpack_dec_clip_outgoing_buffer):
8948         Fix buffer clipping to correctly clip to the segment stop.
8949
8950 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8951
8952         * configure.ac:
8953         * tests/Makefile.am:
8954         Remove bogus check for libcheck, since we check for
8955         gstreamer-check and it pulls in the required info from there,
8956         and we weren't actually _using_ the information for libcheck
8957         ourselves anyway.
8958
8959 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8960
8961         * configure.ac:
8962           Use pkg-config to locate check.
8963
8964 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
8965
8966         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
8967         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
8968         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
8969         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8970         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
8971         * gst/effectv/gstaging.c: (gst_agingtv_transform):
8972         * gst/effectv/gstdice.c: (gst_dicetv_transform):
8973         * gst/effectv/gstedge.c: (gst_edgetv_transform):
8974         * gst/effectv/gstquark.c: (gst_quarktv_transform):
8975         * gst/effectv/gstrev.c: (gst_revtv_transform):
8976         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
8977         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
8978         * gst/effectv/gstwarp.c: (gst_warptv_transform):
8979         * gst/matroska/matroska-demux.c:
8980         (gst_matroska_demux_add_wvpk_header),
8981         (gst_matroska_demux_check_subtitle_buffer),
8982         (gst_matroska_decode_buffer):
8983         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
8984           Fix build against core CVS.
8985
8986 2007-07-10  Edward Hervey  <bilboed@gmail.com>
8987
8988         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
8989         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
8990         don't have enough granularity to convert that boolean into a
8991         GstFlowReturn.
8992
8993 2007-07-06  Michael Smith <msmith@fluendo.com>
8994
8995         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
8996         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
8997         (gst_alawdec_change_state):
8998         * gst/law/alaw-decode.h:
8999         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
9000         (gst_mulawdec_class_init), (gst_mulawdec_init),
9001         (gst_mulawdec_chain), (gst_mulawdec_change_state):
9002         * gst/law/mulaw-decode.h:
9003           Fix capsnego bogosity in *law decoders. 
9004
9005 2007-07-06  Michael Smith <msmith@fluendo.com>
9006
9007         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
9008         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
9009         (gst_smokeenc_change_state):
9010         * ext/jpeg/gstsmokeenc.h:
9011           Remove stupidity in get/set caps functions.
9012           Fix some refcounting problems.
9013
9014 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
9015
9016         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
9017         Remove endianness-flipping hack that seems to have been required
9018         only because of a bug in ffmpegcolorspace.
9019         Partially Fixes: #451908
9020
9021 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
9022
9023         * docs/plugins/Makefile.am:
9024           Simplify --extra-dir as gtkdoc scans recursively.
9025
9026 2007-07-03  Wim Taymans  <wim@fluendo.com>
9027
9028         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9029
9030         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
9031         Set the encoding-name in the rtp caps to all uppercase, as required by
9032         the caps spec.
9033         Some small cleanups in the error paths. Fixes #453037.
9034
9035 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
9036
9037         * ext/wavpack/gstwavpackparse.c:
9038         (gst_wavpack_parse_index_get_last_entry),
9039         (gst_wavpack_parse_index_get_entry_from_sample),
9040         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
9041         (gst_wavpack_parse_scan_to_find_sample):
9042         * ext/wavpack/gstwavpackparse.h:
9043         Use a GSList for the GArray that is used like a list anyway.
9044
9045 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
9046
9047         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9048         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
9049         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
9050           Add state change function where we set 0/1 as default framerate in
9051           case our setcaps function isn't called, like it might not in a
9052           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
9053           gdkpixbufdec trying to create caps with a 0/0 framerate.
9054           Also post an error message on the bus if gst_pad_push() fails when
9055           called from our sink event handler (+1 for flow returns for event
9056           functions in 0.11) instead of failing silently.
9057
9058 2007-06-27  Wim Taymans  <wim@fluendo.com>
9059
9060         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
9061         Cast stack args to the proper types. Fixes #451249.
9062
9063 2007-06-27  Wim Taymans  <wim@fluendo.com>
9064
9065         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9066         (new_session_pad), (gst_rtspsrc_setup_streams):
9067         * gst/rtsp/gstrtspsrc.h:
9068         For container formats we only need to activate one of the streams so
9069         that we correctly signal no-more-pads. Fixes #451015.
9070
9071 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
9072
9073         * docs/plugins/gst-plugins-good-plugins.args:
9074         * docs/plugins/inspect/plugin-aasink.xml:
9075         * docs/plugins/inspect/plugin-alaw.xml:
9076         * docs/plugins/inspect/plugin-alpha.xml:
9077         * docs/plugins/inspect/plugin-alphacolor.xml:
9078         * docs/plugins/inspect/plugin-annodex.xml:
9079         * docs/plugins/inspect/plugin-apetag.xml:
9080         * docs/plugins/inspect/plugin-audiofx.xml:
9081         * docs/plugins/inspect/plugin-auparse.xml:
9082         * docs/plugins/inspect/plugin-autodetect.xml:
9083         * docs/plugins/inspect/plugin-avi.xml:
9084         * docs/plugins/inspect/plugin-cacasink.xml:
9085         * docs/plugins/inspect/plugin-cairo.xml:
9086         * docs/plugins/inspect/plugin-cdio.xml:
9087         * docs/plugins/inspect/plugin-cutter.xml:
9088         * docs/plugins/inspect/plugin-debug.xml:
9089         * docs/plugins/inspect/plugin-efence.xml:
9090         * docs/plugins/inspect/plugin-effectv.xml:
9091         * docs/plugins/inspect/plugin-esdsink.xml:
9092         * docs/plugins/inspect/plugin-flac.xml:
9093         * docs/plugins/inspect/plugin-flxdec.xml:
9094         * docs/plugins/inspect/plugin-gconfelements.xml:
9095         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9096         * docs/plugins/inspect/plugin-goom.xml:
9097         * docs/plugins/inspect/plugin-halelements.xml:
9098         * docs/plugins/inspect/plugin-icydemux.xml:
9099         * docs/plugins/inspect/plugin-id3demux.xml:
9100         * docs/plugins/inspect/plugin-jpeg.xml:
9101         * docs/plugins/inspect/plugin-ladspa.xml:
9102         * docs/plugins/inspect/plugin-level.xml:
9103         * docs/plugins/inspect/plugin-matroska.xml:
9104         * docs/plugins/inspect/plugin-mulaw.xml:
9105         * docs/plugins/inspect/plugin-multipart.xml:
9106         * docs/plugins/inspect/plugin-navigationtest.xml:
9107         * docs/plugins/inspect/plugin-ossaudio.xml:
9108         * docs/plugins/inspect/plugin-png.xml:
9109         * docs/plugins/inspect/plugin-quicktime.xml:
9110         * docs/plugins/inspect/plugin-rtp.xml:
9111         * docs/plugins/inspect/plugin-rtsp.xml:
9112         * docs/plugins/inspect/plugin-smpte.xml:
9113         * docs/plugins/inspect/plugin-speex.xml:
9114         * docs/plugins/inspect/plugin-taglib.xml:
9115         * docs/plugins/inspect/plugin-udp.xml:
9116         * docs/plugins/inspect/plugin-videobalance.xml:
9117         * docs/plugins/inspect/plugin-videobox.xml:
9118         * docs/plugins/inspect/plugin-videocrop.xml:
9119         * docs/plugins/inspect/plugin-videoflip.xml:
9120         * docs/plugins/inspect/plugin-videomixer.xml:
9121         * docs/plugins/inspect/plugin-wavenc.xml:
9122         * docs/plugins/inspect/plugin-wavparse.xml:
9123         * docs/plugins/inspect/plugin-ximagesrc.xml:
9124           Update docs with caps info.
9125
9126 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
9127
9128         * po/POTFILES.in:
9129           Add more files with translatable strings (#450878).
9130
9131 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
9132
9133         * MAINTAINERS:
9134         Updating all the maintainers files
9135
9136 2007-06-22  Edward Hervey  <edward@fluendo.com>
9137
9138         * ext/flac/gstflactag.c: (gst_flac_tag_init):
9139         * gst/interleave/deinterleave.c: (deinterleave_init),
9140         (deinterleave_sink_link):
9141         * gst/interleave/interleave.c: (interleave_init):
9142         * gst/median/gstmedian.c: (gst_median_init):
9143         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9144         Fix memory leaks.
9145         * tests/check/elements/id3demux.c: (pad_added_cb):
9146         Remove unused variable.
9147
9148 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
9149
9150         * ext/gconf/gconf.h:
9151         Make the prototype of gst_gconf_get_key_for_sink_profile
9152         match the implementation.
9153         Patch by: Damien Carbery <damien dot carbery at sun dot com>
9154         Fixes: #449747
9155
9156 2007-06-20  Michael Smith <msmith@fluendo.com>
9157
9158         * gst/rtp/gstrtpdepay.c:
9159           Fix description - rtpdepay is not a payloader.
9160
9161 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
9162
9163         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9164         (qtdemux_video_caps):
9165         * gst/qtdemux/qtdemux_fourcc.h:
9166           Add MJPG to the variants of motion jpeg.
9167
9168 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
9169
9170         * tests/check/Makefile.am:
9171         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9172         * tests/check/elements/videocrop.c: (GST_START_TEST):
9173         * tests/check/elements/videofilter.c:
9174         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9175         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9176           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9177           error flags are included and it errors out on compiler warnings
9178           for CVS builds; remove unused variables in various unit tests.
9179
9180 2007-06-19  Wim Taymans  <wim@fluendo.com>
9181
9182         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9183         (rtsp_connection_close), (rtsp_connection_free):
9184         Use threadsafe inet_ntop to convert an ip number to a string. 
9185         Fixes #447961.
9186         Don't leak fd (and ip) when freeing a connection without first closing
9187         it.
9188
9189 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
9190
9191         * configure.ac:
9192         Back to CVS
9193
9194         * gst-plugins-good.doap:
9195         Add 0.10.6 to the doap file.
9196
9197 === release 0.10.6 ===
9198
9199 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
9200
9201         * configure.ac:
9202           releasing 0.10.6, "Wobble Board"
9203
9204 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9205
9206         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9207         (rtsp_connection_free):
9208           Revert previous commit again, since we are frozen (sorry).
9209
9210 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9211
9212         Patch by: Peter Kjellerstedt <pkj at axis com>
9213
9214         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9215         (rtsp_connection_free):
9216           inet_ntoa() uses a static buffer internally, so we need to copy the
9217           returned string if we want to store it for later (#447961).
9218
9219 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9220
9221         * win32/vs6/autogen.dsp:
9222         * win32/vs6/gst_plugins_good.dsw:
9223         * win32/vs6/libgstalaw.dsp:
9224         * win32/vs6/libgstalpha.dsp:
9225         * win32/vs6/libgstalphacolor.dsp:
9226         * win32/vs6/libgstapetag.dsp:
9227         * win32/vs6/libgstaudiofx.dsp:
9228         * win32/vs6/libgstauparse.dsp:
9229         * win32/vs6/libgstautodetect.dsp:
9230         * win32/vs6/libgstavi.dsp:
9231         * win32/vs6/libgstcutter.dsp:
9232         * win32/vs6/libgstdirectdraw.dsp:
9233         * win32/vs6/libgstdirectsound.dsp:
9234         * win32/vs6/libgsteffectv.dsp:
9235         * win32/vs6/libgstflx.dsp:
9236         * win32/vs6/libgstgoom.dsp:
9237         * win32/vs6/libgsticydemux.dsp:
9238         * win32/vs6/libgstid3demux.dsp:
9239         * win32/vs6/libgstinterleave.dsp:
9240         * win32/vs6/libgstjpeg.dsp:
9241         * win32/vs6/libgstlevel.dsp:
9242         * win32/vs6/libgstmatroska.dsp:
9243         * win32/vs6/libgstmedian.dsp:
9244         * win32/vs6/libgstmonoscope.dsp:
9245         * win32/vs6/libgstmulaw.dsp:
9246         * win32/vs6/libgstmultipart.dsp:
9247         * win32/vs6/libgstqtdemux.dsp:
9248         * win32/vs6/libgstrtp.dsp:
9249         * win32/vs6/libgstrtsp.dsp:
9250         * win32/vs6/libgstsmpte.dsp:
9251         * win32/vs6/libgstspeex.dsp:
9252         * win32/vs6/libgstudp.dsp:
9253         * win32/vs6/libgstvideobalance.dsp:
9254         * win32/vs6/libgstvideobox.dsp:
9255         * win32/vs6/libgstvideocrop.dsp:
9256         * win32/vs6/libgstvideoflip.dsp:
9257         * win32/vs6/libgstvideomixer.dsp:
9258         * win32/vs6/libgstwaveform.dsp:
9259         * win32/vs6/libgstwavenc.dsp:
9260         * win32/vs6/libgstwavparse.dsp:
9261         Mark *.dsp & *.dsw as binary files and convert to DOS line
9262         endings, as they don't load into VS6 correctly otherwise.
9263
9264 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9265
9266         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9267         (rtsp_connection_connect):
9268         Fix the MingW build. 
9269         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9270         Fixes: #446981
9271
9272 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9273
9274         * tests/check/elements/.cvsignore:
9275         * tests/icles/.cvsignore:
9276         Hush the buildbots up
9277
9278 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9279
9280         * configure.ac:
9281         * sys/Makefile.am:
9282         * sys/directdraw/Makefile.am:
9283         * sys/directsound/Makefile.am:
9284         * sys/waveform/Makefile.am:
9285         Make sure to dist everything needed for win32 builds.
9286
9287 2007-06-14  Edward Hervey  <edward@fluendo.com>
9288
9289         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9290         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9291         caps.
9292         Fixes #447458
9293
9294 2007-06-13  Wim Taymans  <wim@fluendo.com>
9295
9296         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9297         Make sure we allocate enough memory for the codec_data.
9298         Fixes #447210.
9299
9300 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
9301
9302         * win32/MANIFEST:
9303         Add videocrop project file to the win32 manifest.
9304         * win32/vs6/gst_plugins_good.dsw:
9305         Add qtdemux,videocrop and waveform projects to the workspace.
9306         * win32/vs6/libgstqtdemux.dsp:
9307         Add zlib to the link list of qtdemux.
9308         * win32/vs6/libgstvideocrop.dsp:
9309         Add a project file for videocrop.
9310
9311 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9312
9313         * po/POTFILES.in:
9314         Add qtdemux for translation
9315
9316 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9317
9318         * configure.ac:
9319         * docs/plugins/Makefile.am:
9320         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9321         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9322         * docs/plugins/inspect/plugin-videocrop.xml:
9323         * gst-plugins-good.spec.in:
9324         * sys/Makefile.am:
9325         * tests/check/Makefile.am:
9326         * tests/icles/Makefile.am:
9327         * tests/icles/videocrop-test.c:
9328         Move videocrop and osxvideo from -bad.
9329
9330 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9331
9332         * configure.ac:
9333         * docs/plugins/Makefile.am:
9334         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9335         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9336         * docs/plugins/gst-plugins-good-plugins.args:
9337         * docs/plugins/inspect/plugin-qtdemux.xml:
9338         * docs/plugins/inspect/plugin-quicktime.xml:
9339         * win32/MANIFEST:
9340         Move qtdemux from -bad.
9341
9342         * gst-plugins-good.spec.in:
9343         Update spec file to reflect moving of qtdemux and wavpack
9344
9345 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9346         
9347         * win32/MANIFEST:
9348         * docs/plugins/Makefile.am:
9349         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9350         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9351         * docs/plugins/inspect/plugin-directdraw.xml:
9352         * docs/plugins/inspect/plugin-directsound.xml:
9353         * docs/plugins/inspect/plugin-waveform.xml:
9354         Move the waveform plugin from -bad too. Update the inspect xml
9355         files to mention Plugins Good instead of Plugins Bad.
9356
9357 2007-06-12  Andy Wingo  <wingo@pobox.com>
9358
9359         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9360         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9361         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9362         finalization and resuscitation. No longer public.
9363         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9364         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9365         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9366         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9367         miniobject semantics, and be threadsafe.
9368         (gst_v4l2src_queue_frame): Remove this function, as we just call
9369         the ioctls directly in the two places where we queue buffers.
9370         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9371         directly.
9372         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9373         to allocate the pool, which also preallocates the GstBuffers.
9374         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9375         queueing the frames directly.
9376         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9377         mmap buffers have been dequeued.
9378
9379         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9380         real MiniObject instead of rolling our own refcounting and
9381         finalizing. Give it a lock.
9382         (struct _GstV4l2Buffer): Remove one intermediary object, having
9383         the buffers hold the struct v4l2_buffer directly.
9384
9385         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9386         capture_init so that it can set them on the buffers that it will
9387         create.
9388         (gst_v4l2src_get_read): For better or for worse, include the
9389         timestamping and offsetting code here; really we should be using
9390         bufferalloc though.
9391         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9392         preallocated, mmap'd buffers.
9393
9394 2007-06-11  Wim Taymans  <wim@fluendo.com>
9395
9396         Patch by: daniel fischer <dan at f3c dot com>
9397
9398         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9399         (gst_ximage_src_get_caps):
9400         Actually use the display_name property so that we can dump any
9401         available X display. Fixes #445905.
9402
9403 2007-06-11  Wim Taymans  <wim@fluendo.com>
9404
9405         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9406
9407         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9408         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9409         Add missing rate fields to caps. Fixes #441118.
9410
9411 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
9412
9413         * win32/vs6/gst_plugins_good.dsw:
9414         * win32/vs8/gst-plugins-good.sln:
9415         Add DirectSound and DirectDraw sinks project files to
9416         workspace and solution files.
9417
9418 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
9419
9420         Patch by: Josh Coalson <xflac at yahoo dot com>,
9421         updated by Alexis Ballier <aballier at gentoo dot org>:
9422
9423         * configure.ac:
9424         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9425         (gst_flac_dec_setup_seekable_decoder),
9426         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9427         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9428         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9429         * ext/flac/gstflacdec.h:
9430         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9431         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9432         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9433         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9434         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9435         (gst_flac_enc_chain), (gst_flac_enc_set_property),
9436         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9437         * ext/flac/gstflacenc.h:
9438         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9439         
9440 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9441
9442         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9443         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9444         not necessary anymore as we need at least that core version. 
9445
9446 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9447
9448         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9449         (gst_wavpack_dec_chain):
9450         * ext/wavpack/gstwavpackdec.h:
9451         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9452         (gst_wavpack_parse_push_buffer):
9453         * ext/wavpack/gstwavpackparse.h:
9454         Improve discont handling by checking if the next Wavpack block has
9455         the expected, following block index.
9456
9457 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9458
9459         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9460           Fix element description.
9461
9462 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9463
9464         * configure.ac:
9465         * docs/plugins/Makefile.am:
9466         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9467         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9468         * docs/plugins/gst-plugins-good-plugins.args:
9469         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9470         * docs/plugins/gst-plugins-good-plugins.signals:
9471         * docs/plugins/inspect/plugin-autodetect.xml:
9472         * docs/plugins/inspect/plugin-gconfelements.xml:
9473         * docs/plugins/inspect/plugin-ladspa.xml:
9474         * docs/plugins/inspect/plugin-rtp.xml:
9475         * docs/plugins/inspect/plugin-wavpack.xml:
9476         * ext/Makefile.am:
9477         * tests/check/Makefile.am:
9478           move wavpack plugin.  See #352605.
9479
9480 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
9481
9482         * configure.ac:
9483         * docs/plugins/Makefile.am:
9484         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9485         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9486         * docs/plugins/gst-plugins-good-plugins.args:
9487         * sys/Makefile.am:
9488         * win32/MANIFEST:
9489         Add DirectDraw & DirectSound plugins to the build and docs.
9490
9491 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
9492
9493         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9494         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9495           When operating in pull mode, error out correct on not-linked.
9496
9497 2007-06-06  Andy Wingo  <wingo@pobox.com>
9498
9499         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9500         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9501         format and size if the ioctls are defined; should fix compilation
9502         on Linux < 2.16.19.
9503
9504 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
9505
9506         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9507           Printf fixes in debug statements; use LOG level for debug statements
9508           that are printed for each and every frame; convert c++ comments to
9509           C-style comments; not much point using g_try_malloc() if we then not
9510           even check the return value.
9511
9512 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
9513
9514         * configure.ac:
9515           Bump requirements to released versions (core and base 0.10.13).
9516
9517         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9518           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9519           own implementation.
9520
9521 2007-06-05  Andy Wingo  <wingo@pobox.com>
9522
9523         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9524         some useless comments.
9525
9526         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9527         frames before calling STREAMON, that might leave them in a state
9528         where they can't be dequeued if we go back to NULL without calling
9529         STREAMON, according to the docs.
9530         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9531         before we call STREAMON.
9532         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9533         failures. (For me this code hung.) The pool refcounting is still
9534         crack; added a note to that effect.
9535
9536 2007-06-05  Wim Taymans  <wim@fluendo.com>
9537
9538         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9539         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9540         Add support for mapping gst structure names to the MIME type equivalent.
9541         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9542
9543 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
9544
9545         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9546         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9547         (gst_wavenc_chain), (gst_wavenc_change_state):
9548         * gst/wavenc/gstwavenc.h:
9549         Properly write wav files with width!=depth by having the depth most
9550         significant bytes set and all others zero. Fixes #442535.
9551
9552 2007-06-01  Wim Taymans  <wim@fluendo.com>
9553
9554         * gst/rtsp/rtspconnection.c:
9555         Add include to make buildbot happy.
9556
9557 2007-06-01  Wim Taymans  <wim@fluendo.com>
9558
9559         Patch by: Peter Kjellerstedt  <pkj at axis com>
9560
9561         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9562         (rtsp_connection_connect), (add_date_header),
9563         (rtsp_connection_send), (parse_response_status),
9564         (parse_request_line), (parse_line), (rtsp_connection_receive):
9565         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9566         * gst/rtsp/rtspdefs.h:
9567         * gst/rtsp/rtspmessage.c: (key_value_foreach),
9568         (rtsp_message_init_request), (rtsp_message_init_response),
9569         (rtsp_message_remove_header), (rtsp_message_append_headers),
9570         (rtsp_message_dump):
9571         * gst/rtsp/rtspmessage.h:
9572         Improves version checking, allowing an RTSP server to reply with "505
9573         RTSP Version not supported.
9574         Adds a Date header to all messages.
9575         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9576         want to be able to send a response even if something in the request was
9577         invalid. EINVAL is only used when passing wrong arguments to functions.
9578         Do not handle an invalid method in parse_request_line(). Defer this to
9579         the caller so it can respond with "405 Method Not Allowed".
9580         Improves parsing of the timeout parameter to the Session header,
9581         allowing whitespace after the semicolon. 
9582         Avoids a compiler warning due to variables shadowing a function argument.
9583
9584 2007-06-01  Wim Taymans  <wim@fluendo.com>
9585
9586         Based on Patch by: Daniel Charles <dcharles at ti dot com>
9587
9588         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9589         (gst_rtp_amr_depay_process):
9590         * gst/rtp/gstrtpamrdepay.h:
9591         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9592         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9593         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9594         * gst/rtp/gstrtpamrpay.h:
9595         Add support for AMR-WB.
9596         Small cleanups such as using BOILERPLATE.
9597
9598 2007-05-31  Wim Taymans  <wim@fluendo.com>
9599
9600         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9601         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9602
9603 2007-05-30  Andy Wingo  <wingo@pobox.com>
9604
9605         * sys/v4l2/gstv4l2object.h: 
9606         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9607         unintended changes.
9608
9609         * sys/v4l2/v4l2src_calls.h: 
9610         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9611         the format list in the order that the driver gives it to us.
9612         (gst_v4l2src_probe_caps_for_format_and_size)
9613         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9614         based on the capabilities of the device.
9615         (gst_v4l2src_grab_frame): Update for object variable renaming.
9616         (gst_v4l2src_set_capture): Update to be strict in its parameters,
9617         as in the set_caps below.
9618         (gst_v4l2src_capture_init): Update for object variable renaming,
9619         and reflow.
9620         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9621         (gst_v4l2src_capture_deinit): Update for object variable renaming.
9622         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9623         (gst_v4l2src_get_fps): Remove; these functions don't have much
9624         meaning outside of an atomic set_caps method.
9625         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9626         known.
9627
9628         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9629         call to update_fps; not sure about this change.
9630         (gst_v4l2_tuner_set_norm): Work around the fact that for the
9631         moment we don't have an update_fps_func.
9632
9633         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9634         structures in the object, just store what we need. Do store the
9635         probed caps of the device. Don't store the current frame rate.
9636
9637         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9638         update_fps_function, for now. Update for new object variable
9639         naming.
9640         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9641         new object variable naming.
9642         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9643         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9644         (gst_v4l2src_get_caps): Rework to probe the device for supported
9645         frame sizes and frame rates.
9646         (gst_v4l2src_set_caps): Rework to be strict in the given
9647         parameters: if someone asks us to have a certain size and rate,
9648         that is what we configure.
9649         (gst_v4l2src_get_read): Update for object variable naming. Don't
9650         leak buffers on short reads.
9651         (gst_v4l2src_get_mmap): Update for object variable naming, and add
9652         comments.
9653         (gst_v4l2src_create): Update for object variable naming.
9654
9655 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9656
9657         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9658         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9659         * gst/avi/gstavidemux.h:
9660           Parse subtitle text streams instead of erroring out (#442034). Still
9661           needs a parser for the subtitles to actually show up.
9662
9663 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9664
9665         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9666         (gst_avi_demux_loop):
9667           Make _push_event() return TRUE if the event could be pushed on at
9668           least one pad and not only if it could be pushed on all pads,
9669           otherwise we'll end up posting an error message on EOS if one or
9670           more source pads are not connected.
9671
9672 2007-05-28  Wim Taymans  <wim@fluendo.com>
9673
9674         * gst/rtsp/rtsptransport.c:
9675         Use renamed RTP bin.
9676
9677 2007-05-28  Wim Taymans  <wim@fluendo.com>
9678
9679         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9680
9681         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9682         (gst_video_box_set_property), (gst_video_box_transform_caps),
9683         (video_box_recalc_transform), (gst_video_box_set_caps),
9684         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9685         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9686         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9687         (gst_video_box_i420_i420), (gst_video_box_transform),
9688         (plugin_init):
9689         Add AYUV->AYUV and AYUV->I420 formats. 
9690         Fix negotiation and I420->AYUV conversion.
9691         Fixes #429329.
9692
9693 2007-05-26  Wim Taymans  <wim@fluendo.com>
9694
9695         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9696         Use different variables for nested for loops so that the outer loop
9697         functions properly and speex files with multiple frames per buffer work
9698         properly.
9699         Fixes #441408.
9700
9701 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9702
9703         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9704           Don't leak newsegment events.
9705
9706 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9707
9708         * gst/wavparse/Makefile.am:
9709           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9710           drags it in.
9711
9712 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9713
9714         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9715         (notgst_value_array_append_buffer),
9716         (gst_flac_enc_process_stream_headers),
9717         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9718         (gst_flac_enc_change_state):
9719         * ext/flac/gstflacenc.h:
9720           Collect headers, add "streamheader" field to output caps and set
9721           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9722           produces output according to the official FLAC-to-Ogg mapping
9723           instead of completely broken files. Fixes #426044.
9724
9725 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9726
9727         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9728         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9729         (gst_id3demux_sink_event):
9730         * gst/id3demux/gstid3demux.h:
9731         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9732         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9733         (gst_tag_demux_send_new_segment):
9734         Handle and adjust new-segment events so that downstream really
9735         sees a stream with the tag pieces stripped off the front and back.
9736         Fixes strangeness in seeking when mp3 decoders use the new-segment
9737         byte position to estimate their current playback position timestamp
9738         and then the arriving buffers don't match up.
9739
9740 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9741
9742         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9743           Don't unnecessarily perform a READY->NULL->READY transition on the
9744           detected audio sink when starting up. Fixes: #440127
9745
9746 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
9747
9748         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9749         (gst_flac_enc_chain):
9750           Don't crash in chain function if setcaps hasn't been called.
9751
9752 2007-05-24  Wim Taymans  <wim@fluendo.com>
9753
9754         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9755         Init value to avoid infinte loops.
9756
9757 2007-05-24  Wim Taymans  <wim@fluendo.com>
9758
9759         Patch by: Peter Kjellerstedt  <pkj at axis com>
9760
9761         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9762         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9763         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9764         (gst_rtspsrc_play):
9765         (rtsp_connection_send), (rtsp_connection_receive):
9766         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9767         Fix for new API.
9768
9769         * gst/rtsp/rtspconnection.c: (add_auth_header),
9770         Only add authorisation and session headers when sending messages.
9771
9772         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9773         (rtsp_message_init_request), (rtsp_message_init_response),
9774         (rtsp_message_unset), (rtsp_message_add_header),
9775         (rtsp_message_remove_header), (rtsp_message_get_header),
9776         (rtsp_message_append_headers), (dump_key_value),
9777         (rtsp_message_dump):
9778         * gst/rtsp/rtspmessage.h:
9779         Add support for multiple headers of the same type by storing the parsed
9780         headers in a GArray instaed of a hashtable.
9781
9782 2007-05-21  Wim Taymans  <wim@fluendo.com>
9783
9784         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9785         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9786         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9787         safer shutdown.
9788
9789 2007-05-21  Wim Taymans  <wim@fluendo.com>
9790
9791         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9792         * gst/rtsp/gstrtpdec.h:
9793         Added signal for backwards compat.
9794
9795 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
9796         
9797         Patch by: René Stadler <mail at renestadler dot de>
9798
9799         * configure.ac:
9800         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9801         (gst_au_parse_parse_header), (gst_au_parse_chain):
9802         * gst/auparse/gstauparse.h:
9803         Use audioconvert for converting from non-native endianness floats
9804         in auparse instead of doing it ourself. Fixes #424527.
9805         This needs the audioconvert from plugins-base CVS.
9806         
9807 2007-05-21  Wim Taymans  <wim@fluendo.com>
9808
9809         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9810         (gst_rtp_h263p_pay_flush):
9811         Fix enum registration.
9812
9813 2007-05-21  Wim Taymans  <wim@fluendo.com>
9814
9815         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9816
9817         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9818         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9819         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9820         (gst_rtp_h263p_pay_flush):
9821         * gst/rtp/gstrtph263ppay.h:
9822         Add new fragmentation mode base on GOB headers. Fixes #438940.
9823
9824 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
9825
9826         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9827           Printf format fix.
9828
9829 2007-05-18  Wim Taymans  <wim@fluendo.com>
9830
9831         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9832         Don't crash when an unsupported transport error was returned by the
9833         server, just try to configure the next stream. Fixes #439255.
9834
9835 2007-05-18  Wim Taymans  <wim@fluendo.com>
9836
9837         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9838         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9839         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9840         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9841         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9842         * gst/rtsp/gstrtspsrc.h:
9843         Add TCP timeout property and use it for all TCP connection.
9844
9845         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9846         (rtsp_connection_write), (rtsp_connection_next_timeout),
9847         (rtsp_connection_reset_timeout):
9848         Make connect and writes cancelable and make them use the timeout.
9849
9850 2007-05-18  Wim Taymans  <wim@fluendo.com>
9851
9852         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9853         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9854         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9855         (gst_rtspsrc_setup_streams):
9856         Refactor timeout handling.
9857         Also send keep-alive when dealing with TCP transport.
9858
9859         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9860         (rtsp_connection_free), (rtsp_connection_next_timeout),
9861         (rtsp_connection_reset_timeout):
9862         * gst/rtsp/rtspconnection.h:
9863         Use a timer to handle the session timeouts, add some methods to deal
9864         with timeouts.
9865
9866 2007-05-17  Wim Taymans  <wim@fluendo.com>
9867
9868         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9869         (gst_rtspsrc_setup_streams):
9870         Ignore streams that fail the setup command, we will retry with a
9871         different transport later on.
9872
9873         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9874         (rtsp_ext_wms_configure_stream):
9875         Fix encoding name case.
9876
9877 2007-05-16  Edward Hervey  <edward@fluendo.com>
9878
9879         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9880         Fix build on macosx.
9881
9882 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
9883
9884         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9885         Replace direct comparison of a string with the string literal "" with
9886         a comparison of the first character with '\0'. Fixes #438926.
9887
9888 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9889
9890         * gst/debug/breakmydata.c (gst_break_my_data_init):
9891           One more try. This should be the proper fix now.
9892
9893 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9894
9895         * gst/debug/breakmydata.c:
9896           Ooops, no // comments please.
9897
9898 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9899
9900         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9901         (gst_break_my_data_init):
9902           Fix gst_buffer_is_writable() assertion.
9903
9904 2007-05-14  David Schleef  <ds@schleef.org>
9905
9906         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9907           video/x-raw-bayer.  Fixes #314160.
9908
9909 2007-05-14  Wim Taymans  <wim@fluendo.com>
9910
9911         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9912         (gst_rtp_theora_depay_parse_configuration):
9913         * gst/rtp/gstrtptheorapay.c: (encode_base64),
9914         (gst_rtp_theora_pay_finish_headers),
9915         (gst_rtp_theora_pay_handle_buffer):
9916         Update theora pay/depayloader in a similar to vorbis.
9917
9918         * gst/rtp/gstrtpvorbisdepay.c:
9919         (gst_rtp_vorbis_depay_parse_configuration):
9920         Update docs.
9921
9922 2007-05-14  Wim Taymans  <wim@fluendo.com>
9923
9924         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
9925         When we try to execute a method that is not supported by the server,
9926         don't error out but remove the method from the accepted methods so that
9927         we never try to perform this method again.
9928
9929 2007-05-14  Wim Taymans  <wim@fluendo.com>
9930
9931         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
9932         Remove annoying _dump_mem.
9933
9934 2007-05-14  Wim Taymans  <wim@fluendo.com>
9935
9936         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
9937         Parse range correctly.
9938
9939         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
9940         The baseurl now always has a '/' at the start.
9941
9942 2007-05-14  Wim Taymans  <wim@fluendo.com>
9943
9944         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
9945         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
9946         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
9947         Factor out caps configuration and configure more stuff such as the time
9948         ranges and speed/scale values.
9949
9950         * gst/rtsp/rtsptransport.c:
9951         Add Copyright after non-trival fixes.
9952
9953 2007-05-12  Wim Taymans  <wim@fluendo.com>
9954
9955         Patch by: Peter Kjellerstedt  <pkj at axis com>
9956
9957         * gst/rtsp/gstrtspsrc.h:
9958         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
9959         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
9960         (rtsp_message_get_header):
9961         * gst/rtsp/rtspmessage.h:
9962         Make channel guint8 where possible.
9963         Make rtsp_message_init_data() take the channel as a guint8.
9964
9965         * gst/rtsp/rtspdefs.c:
9966         Fixed a typo: Timout -> Timeout
9967
9968         * gst/rtsp/rtspdefs.h:
9969         Make RTSP_CHECK() behave as a statement.
9970
9971         * gst/rtsp/sdpmessage.c:
9972         Avoid a compiler warning in INIT_ARRAY().
9973         Fixes #437692.
9974
9975 2007-05-12  Wim Taymans  <wim@fluendo.com>
9976
9977         Patch by: Peter Kjellerstedt  <pkj at axis com>
9978
9979         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
9980         (rtsp_url_get_request_uri):
9981         * gst/rtsp/rtspurl.h:
9982         Add support for query parameters to RTSP URLs.
9983
9984 2007-05-12  Wim Taymans  <wim@fluendo.com>
9985
9986         Patch by: Peter Kjellerstedt  <pkj at axis com>
9987
9988         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
9989         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
9990         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
9991         (rtsp_transport_parse), (rtsp_transport_as_text):
9992         * gst/rtsp/rtsptransport.h:
9993         Add validation to rtsp_transport_parse().
9994         Add rtsp_transport_as_text() to generate an RTSP header from an
9995         RTSPTransport.
9996         Change ssrc to guint (was a string) since that is what it is, even
9997         though it is sent as a hex string.
9998         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
9999         incorrect, which can be seen when looking at the examples in the RFC).
10000         Fixes #437670.
10001
10002 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10003
10004         Patch by: Eric Anholt
10005
10006         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
10007           gst_ximage_src_ximage_get):
10008         Use union of all damage between frames to make it faster.
10009         Fixes bug #342463.
10010         Also fix crasher when cursor is at bottom right of window.
10011
10012 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
10013
10014         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10015           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
10016           streaming mode regression for file from #343837 with 'bext' chunk
10017           before the 'fmt' chunk.
10018
10019 2007-05-11  Wim Taymans  <wim@fluendo.com>
10020
10021         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
10022         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
10023         (gst_rtspsrc_handle_src_event),
10024         (gst_rtspsrc_stream_configure_manager),
10025         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
10026         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
10027         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10028         * gst/rtsp/gstrtspsrc.h:
10029         * gst/rtsp/rtspdefs.h:
10030         Preliminary seek support.
10031         Activate internal pads so that we can receive events on them.
10032         Don't try to parse a range string when it's NULL.
10033
10034 2007-05-11  Wim Taymans  <wim@fluendo.com>
10035
10036         * gst/rtp/README:
10037         Update README with new RTP variables that will be used for
10038         synchronisation.
10039
10040         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
10041         (gst_rtp_vorbis_depay_parse_configuration),
10042         (gst_rtp_vorbis_depay_process):
10043         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
10044         (gst_rtp_vorbis_pay_finish_headers),
10045         (gst_rtp_vorbis_pay_handle_buffer):
10046         Update vorbis pay and depayloader to draft-04.
10047
10048 2007-05-11  Wim Taymans  <wim@fluendo.com>
10049
10050         * gst/rtsp/rtsptransport.c:
10051         UDP MCAST is actually the default for RTP/AVP.
10052 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
10053
10054         * gst/level/gstlevel.c: (gst_level_transform_ip):
10055         Use guint8 * instead of gpointer then vs6 can build 
10056         in_data += (filter->width / 8).
10057
10058 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10059
10060         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
10061           gst_ximage_src_ximage_get):
10062         * sys/ximage/gstximagesrc.h (last_ximage):
10063         When using Damage actually keep the last frame, and not assume
10064         that the buffer we get already has the last frame on it.
10065         Copy the cursor over if we specify a non-zero start x and
10066         start y.
10067
10068 2007-05-11  Wim Taymans  <wim@fluendo.com>
10069
10070         * gst/rtsp/rtsptransport.c:
10071         Make UDP the default transport when not specified.
10072
10073 2007-05-09  David Schleef  <ds@schleef.org>
10074
10075         * gst/level/gstlevel.c:
10076           Revert last change.
10077
10078 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
10079
10080         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
10081         (gst_level_transform_ip):
10082         Use guint8 * instead of gpointer then vs6 know the size of data
10083         pointed when moving the pointer.
10084         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
10085         Move instructions after variables declaration.
10086         * win32/vs6/autogen.dsp:
10087         * win32/vs6/libgstrtp.dsp:
10088         * win32/vs6/libgstrtsp.dsp:
10089         Update vs6 project files.
10090
10091 2007-05-09  Wim Taymans  <wim@fluendo.com>
10092
10093         * gst/rtsp/Makefile.am:
10094         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
10095         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
10096         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
10097         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
10098         (rtsp_range_free):
10099         * gst/rtsp/rtsprange.h:
10100         Add code to parse time ranges.
10101         Report DURATION on the stream when possible.
10102
10103 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
10104
10105         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10106         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10107         (gst_videomixer_collected):
10108           Fix strides calculation for AYUV (it's just width*4) (#436910).
10109
10110 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
10111
10112         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10113         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10114         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10115         Sync the GObject properties before each processing step to properly
10116         work with the controller.
10117
10118 2007-05-04  Wim Taymans  <wim@fluendo.com>
10119
10120         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10121         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10122         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10123         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10124         (gst_rtspsrc_change_state):
10125         Let more error state trickle down so that we can catch more error
10126         cases.
10127         Handle keep-alive a little smarter by selecting a method the server
10128         actually supports.
10129         Fix a race in UDP streaming shutdown.
10130
10131 2007-05-04  Wim Taymans  <wim@fluendo.com>
10132
10133         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10134         Ignore errors when trying to use the keep-alive messages.
10135
10136 2007-05-04  Wim Taymans  <wim@fluendo.com>
10137
10138         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10139         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10140         (gst_rtspsrc_stream_configure_manager),
10141         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10142         (gst_rtspsrc_stream_configure_mcast),
10143         (gst_rtspsrc_stream_configure_udp),
10144         (gst_rtspsrc_stream_configure_udp_sink),
10145         (gst_rtspsrc_stream_configure_transport):
10146         Send RTCP messages back to the server over the TCP connection.
10147
10148         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10149         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10150         (rtsp_connection_receive):
10151         * gst/rtsp/rtspconnection.h:
10152         Factor out and expose lowlevel _write and _read methods.
10153         Implement sending data messages to the server.
10154
10155 2007-05-03  Wim Taymans  <wim@fluendo.com>
10156
10157         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10158         (gst_multipart_mux_collected):
10159         Fix timestamps on outgoing buffers.
10160
10161 2007-05-03  Wim Taymans  <wim@fluendo.com>
10162
10163         * gst/multipart/multipartmux.c:
10164         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10165         (gst_multipart_mux_change_state):
10166         Emit NEWSEGMENT events before pushing the first buffer.
10167
10168 2007-05-03  Wim Taymans  <wim@fluendo.com>
10169
10170         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10171         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10172         (gst_rtspsrc_handle_src_query),
10173         (gst_rtspsrc_stream_configure_manager),
10174         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10175         (gst_rtspsrc_stream_configure_mcast),
10176         (gst_rtspsrc_stream_configure_udp),
10177         (gst_rtspsrc_stream_configure_udp_sink),
10178         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10179         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10180         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10181         (gst_rtspsrc_pause):
10182         Refactor transport configuration code.
10183         Create internal pads for TCP transport so that we can implement events
10184         and queries.
10185         Handle events and queries.
10186         Parse range from the SDP.
10187         Fix race in pause handler where the connection could still be flushing.
10188
10189 2007-05-02  Wim Taymans  <wim@fluendo.com>
10190
10191         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10192         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10193         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10194         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10195         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10196         (gst_rtspsrc_change_state):
10197         * gst/rtsp/gstrtspsrc.h:
10198         Fix race when multiple udp sources post timeouts, just act on the first
10199         received timeout.
10200         Protect stream list with a recursive lock to fix some races.
10201         Flush connection when we need to do a reconnect or stop.
10202         Make state lock recursive.
10203
10204         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10205         (rtsp_connection_close):
10206         Some small cleanups.
10207
10208 2007-05-02  Wim Taymans  <wim@fluendo.com>
10209
10210         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10211         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10212         Only set DISCONT when there actually is a discont or when we just
10213         started.
10214
10215 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10216
10217         * ext/flac/gstflac.c: (plugin_init):
10218         Call bindtextdomain() to get localized strings.
10219
10220 2007-05-02  Wim Taymans  <wim@fluendo.com>
10221
10222         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10223         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10224         (gst_wavparse_stream_data):
10225         * gst/wavparse/gstwavparse.h:
10226         Be a bit more clever when dealing with VBR files with FACT tags, we
10227         don't want to timestamp buffers in that case but the estimated BPS can
10228         be used for seeking.
10229         Only send close segment in the streaming thread.
10230
10231 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10232
10233         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10234         Correctly post an error on the bus if something went wrong in the loop
10235         function. This fixes a few cases where the task was paused and nothing
10236         happened anymore.
10237
10238 2007-05-02  Wim Taymans  <wim@fluendo.com>
10239
10240         * gst/rtsp/test.c: (main):
10241         Fix compilation of deprecated test just because I'm too lazy to delete
10242         it.
10243
10244 2007-05-02  Wim Taymans  <wim@fluendo.com>
10245
10246         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10247         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10248         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10249         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10250         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10251         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10252         * gst/rtsp/gstrtspsrc.h:
10253         Fix sending RTCP to the right place.
10254         Fix bug in reffing the wrong UDP element.
10255         Use new pad names for the session manager.
10256         Implement handling server requests in interleaved and UDP modes.
10257         Handle session keep-alive in UDP modes.
10258         Remove GCond for handling UDP timeouts.
10259
10260         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10261         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10262         (rtsp_connection_receive), (rtsp_connection_close):
10263         * gst/rtsp/rtspconnection.h:
10264         Store connection IP address for later.
10265         Add timeout args to all operations that might block forever.
10266         Parse session timeout.
10267         Only close sockets when not already closed.
10268
10269         * gst/rtsp/rtspdefs.c:
10270         * gst/rtsp/rtspdefs.h:
10271         Add timeout return value and error string.
10272
10273         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10274         Add small comment.
10275
10276 2007-05-01  Wim Taymans  <wim@fluendo.com>
10277
10278         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10279
10280         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10281         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10282         * gst/rtp/gstrtpmp4vpay.h:
10283         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10284
10285 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
10286
10287         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10288           Remove v4l2src from docs, since it breaks the docs build, and the
10289           plugin is only built if --enable-experimental is used anyway.
10290
10291         * docs/plugins/Makefile.am:
10292           Spaces => tab.
10293
10294 2007-04-29  Wim Taymans  <wim@fluendo.com>
10295
10296         * gst/udp/gstmultiudpsink.c: (leave_multicast),
10297         (gst_multiudpsink_add), (gst_multiudpsink_remove):
10298         Add code to drop membership of a multicast group.
10299
10300         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10301         (gst_udpsink_set_uri):
10302         Implement URI handler.
10303
10304         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10305         (gst_rtspsrc_parse_rtpinfo):
10306         Use URI handler to make udpsink instace.
10307         Improve code to configure port and destination.
10308
10309 2007-04-29  Wim Taymans  <wim@fluendo.com>
10310
10311         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10312         Fix multicast detection.
10313         Don't try to join a multicast group if the address is not multicast.
10314
10315         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10316         Small debug improvement.
10317
10318 2007-04-27  Wim Taymans  <wim@fluendo.com>
10319
10320         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10321         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10322         (gst_rtspsrc_handle_message):
10323         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10324         parent.
10325
10326 2007-04-27  Wim Taymans  <wim@fluendo.com>
10327
10328         * gst/rtp/gstrtpilbcdepay.h:
10329         Fix mode property when specified as an arg.
10330
10331 2007-04-26  Edward Hervey  <edward@fluendo.com>
10332
10333         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10334         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10335         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10336         * docs/plugins/inspect/plugin-osxaudio.xml:
10337         Add documentation for osxaudio plugin.
10338
10339 2007-04-26  Wim Taymans  <wim@fluendo.com>
10340
10341         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10342         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10343         (gst_rtspsrc_open), (gst_rtspsrc_close),
10344         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10345         (gst_rtspsrc_pause):
10346         * gst/rtsp/gstrtspsrc.h:
10347         Protect state changes with a lock.
10348
10349         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10350         (parse_line):
10351         * gst/rtsp/rtspconnection.h:
10352         Remove some unused stuff.
10353
10354 2007-04-26  Wim Taymans  <wim@fluendo.com>
10355
10356         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10357         Handle the case where there are exactly 0 bytes to read and the ioctl
10358         did not report an error. Fixes #433530.
10359
10360 2007-04-26  Wim Taymans  <wim@fluendo.com>
10361
10362         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10363         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10364         * gst/wavparse/gstwavparse.h:
10365         Apply DISCONT to buffers.
10366         Only apply timestamp to the first sample after a DISCONT, too many VBR
10367         files cause random jitter in the timestamps. Fixes #433119.
10368
10369 2007-04-25  Wim Taymans  <wim@fluendo.com>
10370
10371         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10372         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10373         (gst_rtp_dec_get_property):
10374         * gst/rtsp/gstrtpdec.h:
10375         Add dummy latency property to be backwards compat with rtpbin.
10376
10377         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10378         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10379         (gst_rtspsrc_stream_configure_transport),
10380         (gst_rtspsrc_parse_rtpinfo):
10381         * gst/rtsp/gstrtspsrc.h:
10382         Add latency property and configure in the session manager.
10383         Don't set invalid clock-base and seqnum-base on caps, some servers
10384         sometimes don't send them.
10385
10386 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10387
10388         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10389         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10390           Double-check that RGB input caps are really RGBA caps (apparently
10391           the core doesn't always catch it if those caps aren't a subset of
10392           our template caps, also see #421543). Fixes #429319 in a way.
10393           Also, don't leak the pad template in the transform_caps function.
10394
10395         * tests/check/Makefile.am:
10396         * tests/check/elements/.cvsignore:
10397         * tests/check/elements/alphacolor.c: (setup_alphacolor),
10398         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10399         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10400         (GST_START_TEST), (alphacolor_suite):
10401           Add some basic unit tests for alphacolor.
10402
10403 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10404
10405         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10406           If we get a fatal flow return in the loop function, first post the
10407           error message and only then send the EOS event downstream, otherwise
10408           applications might get an eos message before the error message and
10409           think everything was ok (related to #429319).
10410
10411 2007-04-25  Wim Taymans  <wim@fluendo.com>
10412
10413         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10414         Read the channel byte as an unsigned byte.
10415
10416 2007-04-25  Wim Taymans  <wim@fluendo.com>
10417
10418         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10419         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10420         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10421         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10422         (gst_rtp_gsm_depay_setcaps):
10423         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10424         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10425         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10426         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10427         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10428         (gst_ilbc_depay_get_property):
10429         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10430         * gst/rtp/gstrtpmp4adepay.c:
10431         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10432         (gst_rtp_pcma_depay_setcaps):
10433         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10434         (gst_rtp_pcmu_depay_setcaps):
10435         Make sure we configure the clock_rate in the baseclass in the setcaps
10436         function. Fixes #431282.
10437
10438 2007-04-25  Wim Taymans  <wim@fluendo.com>
10439
10440         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10441         (gst_rtspsrc_stream_free), (request_pt_map),
10442         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10443         * gst/rtsp/gstrtspsrc.h:
10444         Parse server address from SDP.
10445         Hook up a udpsink to send RTCP back to the server.
10446
10447         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10448         * gst/rtsp/rtsptransport.h:
10449         Add some docs.
10450
10451 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
10452
10453         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10454           Make header field check conditional. Fixes #433135
10455
10456 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
10457
10458         * docs/plugins/Makefile.am:
10459         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10460         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10461         * docs/plugins/inspect/plugin-alphacolor.xml:
10462         * gst/alpha/Makefile.am:
10463         * gst/alpha/gstalphacolor.c:
10464         * gst/alpha/gstalphacolor.h:
10465           Add minimal docs blurb to alphacolor; split out headers into
10466           separate header file for gtk-doc.
10467
10468 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
10469
10470         * gst/debug/progressreport.c: (gst_progress_report_report):
10471           Don't try to post NULL message (in case we can't query upstream
10472           position or duration).
10473
10474 2007-04-18  Michael Smith  <msmith@fluendo.com>
10475
10476         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10477         (gst_cutter_get_caps):
10478         * gst/cutter/gstcutter.h:
10479           Fix some of the most obvious bugs in cutter. Now doesn't leak
10480           everything if input is silent.
10481
10482 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
10483
10484         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10485         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10486         * gst/wavenc/gstwavenc.h:
10487         Wav apparently only supports width==GST_ROUND_UP(depth), everything
10488         else results in a invalid block align and invalid files.
10489
10490 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10491
10492         Patch by: Snaik <snaik32 gmail com>
10493
10494         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10495           Add missing break statement for BOX_HORIZONTAL case.
10496
10497 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10498
10499         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10500
10501         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10502         Use correct format strings for integer types.
10503
10504 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10505
10506         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10507         (gst_wavparse_create_sourcepad):
10508         Use gst_riff_create_audio_template_caps () instead of the local caps.
10509         This makes updates of the local caps unecessary whenever libgstriff
10510         gets support for new formats.
10511
10512 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
10513
10514         Patch by: Brian Cameron  <brian.cameron at sun dot com>
10515
10516         * sys/sunaudio/gstsunaudio.c:
10517         * sys/sunaudio/gstsunaudiomixer.c:
10518         * sys/sunaudio/gstsunaudiomixer.h:
10519         * sys/sunaudio/gstsunaudiomixerctrl.c:
10520         * sys/sunaudio/gstsunaudiomixerctrl.h:
10521         * sys/sunaudio/gstsunaudiomixertrack.h:
10522         * sys/sunaudio/gstsunaudiosink.c:
10523         * sys/sunaudio/gstsunaudiosink.h:
10524         * sys/sunaudio/gstsunaudiosrc.c:
10525         * sys/sunaudio/gstsunaudiosrc.h:
10526           Fix and/or update copyright attributions (#430228).
10527
10528 2007-04-13  Wim Taymans  <wim@fluendo.com>
10529
10530         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10531         Fix docs.
10532
10533         * gst/rtsp/URLS:
10534         Add some more example urls.
10535
10536         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10537         (gst_rtp_dec_chain_rtp):
10538         Better debugging.
10539
10540         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10541         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10542         (gst_rtspsrc_parse_rtpinfo):
10543         Remove unused code.
10544
10545 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10546
10547         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10548         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10549         (gst_wavparse_stream_data):
10550           Relax the audio/mpeg caps again and add FIXME: comment.
10551
10552 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10553
10554         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10555         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10556         (gst_wavparse_stream_data):
10557         * gst/wavparse/gstwavparse.h:
10558           More sanity check for the header fields. Fix type for 'rate' header
10559           field.
10560
10561 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
10562
10563         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10564         (gst_icydemux_unicodify):
10565           If the metadata strings we get in the stream are not UTF-8, try to
10566           interpret them according to the character encodings specified in the
10567           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10568           only fall back to locale/ISO-8859-1 if those aren't set or don't
10569           work. Should fix #428901.
10570
10571 2007-04-12  Wim Taymans  <wim@fluendo.com>
10572
10573         * gst/rtp/gstrtph264depay.c:
10574         Use the proper sync word for SPS and PPS.
10575
10576 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10577
10578         * gst/rtp/Makefile.am:
10579         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10580           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10581         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10582           Add a simple hashing implementation that we can use to generate
10583           a 24-bit ident value based on the codebooks for vorbis and theora.
10584         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10585           gst_rtp_theora_pay_handle_buffer):
10586         * gst/rtp/gstrtpvorbisdepay.c
10587           (gst_rtp_vorbis_depay_parse_configuration,
10588           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10589         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10590           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10591           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10592           Use the hashing function, ensuring that the same codebooks result
10593           in the same ident and thus the same SDP description.
10594           Various log fixes/changes.
10595
10596 2007-04-12  Wim Taymans  <wim@fluendo.com>
10597
10598         Patch by: jerry tan <jerry dot tan at sun dot com>
10599
10600         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10601         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10602         application's responsibility to make sure it open the device once.
10603         Remove a careless error if AUDIODEV is set. Fixes #392620.
10604
10605 2007-04-12  Wim Taymans  <wim@fluendo.com>
10606
10607         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10608         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10609         * gst/rtsp/gstrtpdec.h:
10610         Make backward compat with rtpbin by adding the request-pt-map signals.
10611
10612         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10613         (new_session_pad), (request_pt_map),
10614         (gst_rtspsrc_stream_configure_transport),
10615         (gst_rtspsrc_stream_configure_caps),
10616         (gst_rtspsrc_activate_streams):
10617         * gst/rtsp/gstrtspsrc.h:
10618         Implement request-pt-map signals instead of setting caps on the buffers
10619         for the session manager.
10620
10621 2007-04-11  Wim Taymans  <wim@fluendo.com>
10622
10623         * gst/udp/gstudp.c: (plugin_init):
10624         Register GstNetBuffer in plugin_init so that the type can be used from
10625         multiple threads without races.
10626
10627 2007-04-10  Wim Taymans  <wim@fluendo.com>
10628
10629         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10630         (gst_rtp_amr_depay_process):
10631         Fix depayloader clock_rate and some cleanups.
10632
10633         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10634         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10635         * gst/rtp/gstrtph264depay.h:
10636         Don't push codec_data in the adapter because it might get flushed when
10637         we get a discont.
10638
10639         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10640         Handle multiple AU per packet.
10641
10642         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10643         (gst_rtp_sv3v_depay_plugin_init):
10644         Disable rank, this one does not work.
10645         Remove timestamping, base class does that.
10646
10647 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
10648
10649         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10650           limit caps to the formats we announce in the template
10651
10652         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10653         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10654         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10655           fix some crashers/asserts when dealing with broken files
10656
10657 2007-04-10  Wim Taymans  <wim@fluendo.com>
10658
10659         Patch by: Peter Kjellerstedt  <pkj at axis com>
10660
10661         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10662         * gst/rtp/gstrtpL16depay.c:
10663         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10664         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10665         (gst_rtp_speex_depay_setcaps):
10666         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10667         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10668         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10669         Fix some compiler warnings. Fixes #428182.
10670
10671 2007-04-06  Wim Taymans  <wim@fluendo.com>
10672
10673         * gst/rtsp/Makefile.am:
10674         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10675         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10676         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10677         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10678         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10679         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10680         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10681         (create_rtcp), (gst_rtp_dec_request_new_pad),
10682         (gst_rtp_dec_release_pad):
10683         * gst/rtsp/gstrtpdec.h:
10684         * gst/rtsp/gstrtsp.c: (plugin_init):
10685         Morph RTPDec into something compatible with RTPBin as a fallback.
10686         Various other style fixes.
10687
10688         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10689         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10690         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10691         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10692         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10693         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10694         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10695         * gst/rtsp/gstrtspsrc.h:
10696         Implement RTPBin session manager handling.
10697         Don't try to add empty properties to caps.
10698         Implement fallback session manager, handling.
10699         Don't combine errors from RTCP streams, just ignore them.
10700
10701         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10702         * gst/rtsp/rtsptransport.h:
10703         Implement fallback session manager.
10704         Make RTPBin the default one when available.
10705
10706 2007-04-05  Wim Taymans  <wim@fluendo.com>
10707
10708         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10709         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10710         This element is ready to be autoplugged.
10711
10712 2007-04-05  Julien MOUTTE  <julien@moutte.net>
10713
10714         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10715         Don't leave the offsets defined by upstream element on the
10716         compressed data buffer we are pushing downstream. Make them
10717         GST_BUFFER_OFFSET_NONE.
10718
10719 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
10720
10721         * gst/avi/README:
10722         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10723         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10724         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10725         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10726         (gst_avi_demux_calculate_durations_from_index),
10727         (gst_avi_demux_stream_header_push),
10728         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10729         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10730           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10731
10732 2007-04-03  Wim Taymans  <wim@fluendo.com>
10733
10734         * gst/smpte/barboxwipes.c:
10735         Fix error as spotted by Snaik <snaik32 at gmail dot com>
10736
10737 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10738
10739         * gst/wavparse/gstwavparse.c:
10740         Support audio/x-raw-float in wav files. This only works with
10741         plugins-base CVS, using an older version doesn't have any
10742         disadvantages though.
10743
10744 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10745
10746         * configure.ac:
10747         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10748         (gst_au_parse_parse_header), (gst_au_parse_chain):
10749         * gst/auparse/gstauparse.h:
10750         Revert last change as we don't want plugins-good to depend on
10751         plugins-base CVS now.
10752
10753 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10754
10755         * configure.ac:
10756         Require gst-plugins-base CVS for audioconvert with non-native
10757         float support and width/depth fix in libgstriff.
10758
10759         Patch by: René Stadler <mail at renestadler dot de>
10760
10761         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10762         (gst_au_parse_parse_header), (gst_au_parse_chain):
10763         * gst/auparse/gstauparse.h:
10764         Don't swap the floats ourself if they're not in native endianness.
10765         Instead let audioconvert handle this. Fixes #339838.
10766
10767 2007-03-29  Wim Taymans  <wim@fluendo.com>
10768
10769         * gst/rtp/gstasteriskh263.h:
10770         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10771         (gst_rtp_h263p_depay_change_state):
10772         * gst/rtp/gstrtph263pdepay.h:
10773         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10774         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10775         (gst_rtp_h264_depay_change_state):
10776         * gst/rtp/gstrtph264depay.h:
10777         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10778         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10779         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10780         Flush adapter on disconts.
10781
10782 2007-03-29  Wim Taymans  <wim@fluendo.com>
10783
10784         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10785         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10786         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10787         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10788         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10789         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10790         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10791         (gst_rtp_mp4v_depay_process):
10792         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10793         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10794         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10795         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10796         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10797         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10798         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10799         Use more efficient adapter and rtpbuffer methods when possible.
10800
10801 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10802
10803         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10804         (gst_wavenc_sink_setcaps):
10805         Correctly handle width!=depth input.
10806         * gst/wavparse/gstwavparse.c:
10807         Already export in the caps that width==8 uses unsigned samples and
10808         everything else uses signed samples.
10809
10810 2007-03-29  Wim Taymans  <wim@fluendo.com>
10811
10812         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10813
10814         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10815         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10816         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10817         (gst_dynudpsink_close):
10818         * gst/udp/gstdynudpsink.h:
10819         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10820         (gst_udpsrc_create), (gst_udpsrc_set_property),
10821         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10822         * gst/udp/gstudpsrc.h:
10823         Rework the socket allocation a bit based on the sockfd argument so that
10824         it becomes usable.
10825         Add a closefd property to instruct the udp elements to close the custom
10826         file descriptors when going to READY. Fixes #423304.
10827         API:GstUDPSrc::closefd property
10828         API:GstDynUDPSink::closefd property
10829
10830 2007-03-29  Wim Taymans  <wim@fluendo.com>
10831
10832         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10833
10834         * gst/rtp/Makefile.am:
10835         * gst/rtp/gstrtp.c: (plugin_init):
10836         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10837         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10838         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10839         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10840         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10841         (gst_rtp_h264_pay_plugin_init):
10842         * gst/rtp/gstrtph264pay.h:
10843         Added H264 payloader. Fixes #423782.
10844
10845         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10846         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10847         Small fixes.
10848
10849 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10850
10851         * gst/wavparse/gstwavparse.c:
10852         Actually support depths from 1 to 32, not only 8 to 32.
10853
10854 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10855
10856         * gst/wavparse/gstwavparse.c:
10857         Add support for wav files containing audio/x-raw-int with random
10858         depths between 1 and 32 bits.
10859
10860 2007-03-28  Wim Taymans  <wim@fluendo.com>
10861
10862         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
10863
10864         * gst/rtp/Makefile.am:
10865         * gst/rtp/gstrtp.c: (plugin_init):
10866         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10867         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10868         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10869         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10870         (gst_rtp_mp4a_depay_get_property),
10871         (gst_rtp_mp4a_depay_change_state),
10872         (gst_rtp_mp4a_depay_plugin_init):
10873         * gst/rtp/gstrtpmp4adepay.h:
10874         Added MP4A-LATM depayloader. Fixes #417792.
10875
10876         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10877         (gst_rtp_mp4v_depay_process):
10878         Fixup depayloader, setting codec_data, using more efficient adaptor and
10879         rtpbuffer handling.
10880
10881         * gst/rtsp/URLS:
10882         Add url to test above.
10883
10884 2007-03-25  Wim Taymans  <wim@fluendo.com>
10885
10886         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10887         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10888         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10889         (gst_rtspsrc_media_to_caps),
10890         (gst_rtspsrc_stream_configure_transport),
10891         (gst_rtspsrc_stream_configure_caps),
10892         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10893         * gst/rtsp/gstrtspsrc.h:
10894         Handle default clock-rates for static payload types, rearrange stuff so
10895         that the rtpmap field in the sdp can override the defaults.
10896         Parse RTP-Info field to get the seqnum and timebase fields that should
10897         go in the caps.
10898         Delay configuring caps after we got the RTP-Info from the PLAY reply from
10899         the server. 
10900
10901 2007-03-22  Wim Taymans  <wim@fluendo.com>
10902
10903         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10904
10905         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10906         Accept complex pipeline descriptions as an audio profile instead of just
10907         a single element. Fixes #420658.
10908
10909 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10910
10911         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10912           Rename registered type in preparation of GstTagDemux moving to
10913           -base at some point in the future.
10914
10915 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
10916
10917         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10918           Streaming mode fixes: don't unref buffer we don't own any longer;
10919           remove bogus adapter flush. Fixes #419338.
10920
10921 2007-03-17  David Schleef  <ds@schleef.org>
10922
10923         * REQUIREMENTS: Change the format to key/value, add a bunch of
10924           information, remove a bunch of requirements that are for
10925           other GStreamer packages.
10926
10927 2007-03-17  David Schleef  <ds@schleef.org>
10928
10929         * REQUIREMENTS: Fix a few things.  This file really needs a
10930         good once-over.
10931
10932 2007-03-15  Edward Hervey  <edward@fluendo.com>
10933
10934         * sys/Makefile.am:
10935         Don't forget to distribute the sys/osxaudio/ directory.
10936
10937 2007-03-15  Edward Hervey  <edward@fluendo.com>
10938
10939         * configure.ac:
10940         * sys/Makefile.am:
10941         * sys/osxaudio/Makefile.am:
10942         * sys/osxaudio/gstosxaudio.c:
10943         * sys/osxaudio/gstosxaudiosink.c:
10944         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
10945         (gst_osx_audio_sink_getcaps),
10946         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
10947         * sys/osxaudio/gstosxaudiosrc.c:
10948         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
10949         (gst_osx_audio_src_create_ringbuffer):
10950         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
10951         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
10952         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
10953         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
10954         * sys/osxaudio/gstosxringbuffer.h:
10955         Activate osxaudio in gst-plugins-good with proper build setup.
10956         Add inlined documentation.
10957         Fix debug statements
10958         Fix ringbuffer when pausing.
10959         Fixes #323471
10960
10961 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10962         * gst/rtp/gstrtppcmapay.c:
10963         * gst/rtp/gstrtppcmapay.h:
10964         * gst/rtp/gstrtppcmupay.c:
10965         * gst/rtp/gstrtppcmupay.h:
10966         Ported mulaw and alaw payloaders to use new base class
10967
10968 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10969
10970         * po/af.po:
10971         * po/az.po:
10972         * po/cs.po:
10973         * po/en_GB.po:
10974         * po/it.po:
10975         * po/nl.po:
10976         * po/or.po:
10977         * po/sq.po:
10978         * po/sr.po:
10979         * po/sv.po:
10980         * po/uk.po:
10981         * po/vi.po:
10982           Update translations.
10983
10984 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10985
10986         * configure.ac:
10987           Fix string replace error (AG_AG_GST_* => AG_GST_*).
10988
10989 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
10990
10991         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
10992           Fix handling of -1 values for start and stop values when seeking,
10993           and SEEK_CUR+SEEK_END here as well.
10994
10995 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
10996
10997         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
10998           Fix handling of -1 values for start and stop values when seeking, 
10999           and SEEK_CUR+SEEK_END.
11000
11001 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11002
11003         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
11004           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
11005           the image format a variable-length NUL-terminated string; in
11006           versions before that the image format is a fixed-length string of
11007           3 characters (see #348644 for a sample tag).
11008           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
11009
11010 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
11011
11012         * win32/MANIFEST:
11013         Add new project files to MANIFEST.
11014         * win32/vs6/libgstaudiofx.dsp:
11015         * win32/vs6/libgstrtp.dsp:
11016         * win32/vs6/libgstrtsp.dsp:
11017         Update project files.
11018         
11019 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
11020
11021         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
11022         (gst_avi_demux_parse_index):
11023         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
11024         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
11025           Printf format fixes; also add some missing quotes in translated
11026           strings. Fixes #416728 and #416727.
11027
11028 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11029
11030         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
11031           Tim and I can't think of any reason the child audio sink needs to 
11032           be set back to NULL after successfully determining that it can 
11033           reach READY - it gets immediately set back to READY by the caller
11034           anyway, causing an unnecessary close/open of any audio devices
11035           involved.
11036
11037 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11038
11039         * po/LINGUAS:
11040         * po/ja.po:
11041           Add ja.po file from #377306.
11042
11043 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11044
11045         * sys/sunaudio/gstsunaudio.c: (plugin_init):
11046         * sys/sunaudio/gstsunaudiomixertrack.c:
11047         (gst_sunaudiomixer_track_new):
11048           Actually translate sunaudio mixer track labels instead of just
11049           marking the strings as translatable (#377306); clean up weird
11050           label string mapping code that serves no apparent purpose. Also
11051           set the 'untranslated-label' property when creating mixer tracks
11052           if the GstMixerTrack base class supports this.
11053
11054         * tests/check/Makefile.am:
11055         * tests/check/elements/.cvsignore:
11056         * tests/check/elements/sunaudio.c: (GST_START_TEST),
11057         (sunaudio_suite):
11058           Very minimalistic unit test for sunaudiomixer element (compiles, but not
11059           actually tested on a system where sunaudiomixer is available).
11060
11061 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11062
11063         * tests/check/Makefile.am:
11064         Re-enable the states test and see if it works on the buildbots.
11065
11066 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11067
11068         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
11069         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
11070         (gst_dvdec_change_state):
11071         * ext/dv/gstdvdec.h:
11072         Infer pixel-aspect-ratio from the video frame format if it isn't
11073         provided by the container, as happens when playing DV from AVI
11074         or Quicktime containers.
11075
11076         Patch by: Wim Taymans <wim@fluendo.com>
11077         Fixes #380944
11078
11079 2007-03-09  Wim Taymans  <wim@fluendo.com>
11080
11081         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
11082         When activated, remove the udpsrc timeout, we have dataflow and timeouts
11083         will later be handled by the jitterbuffer.
11084
11085 2007-03-09  Wim Taymans  <wim@fluendo.com>
11086
11087         * ext/taglib/gstid3v2mux.cc:
11088         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
11089         Fixes #414496.
11090         
11091         Patch by: Alex Lancaster <alexl at users sourceforge net>
11092
11093 2007-03-09  Wim Taymans  <wim@fluendo.com>
11094
11095         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11096         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
11097         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11098         (gst_avi_demux_chain):
11099         Fix stream position reporting after a seek. Fixes #416445.
11100
11101 2007-03-08  Wim Taymans  <wim@fluendo.com>
11102
11103         Patch by: René Stadler <mail at renestadler dot de>
11104
11105         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11106         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
11107         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
11108         Make avidemux accept optional header chunks in any order.
11109         Fixes #415446.
11110
11111 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
11112
11113         * tests/check/Makefile.am:
11114         Disable the states check until the remaining Valgrind errors
11115         are fixed or suppressed.
11116
11117 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11118
11119         * tests/check/elements/.cvsignore:
11120           Add audiodynamic check to .cvsignore
11121
11122 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11123
11124         reviewed by: Stefan Kost  <ensonic@users.sf.net>
11125
11126         * gst/audiofx/Makefile.am:
11127         * gst/audiofx/audiodynamic.c:
11128         (gst_audio_dynamic_characteristics_get_type),
11129         (gst_audio_dynamic_mode_get_type),
11130         (gst_audio_dynamic_set_process_function),
11131         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11132         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11133         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11134         (gst_audio_dynamic_transform_hard_knee_compressor_int),
11135         (gst_audio_dynamic_transform_hard_knee_compressor_float),
11136         (gst_audio_dynamic_transform_soft_knee_compressor_int),
11137         (gst_audio_dynamic_transform_soft_knee_compressor_float),
11138         (gst_audio_dynamic_transform_hard_knee_expander_int),
11139         (gst_audio_dynamic_transform_hard_knee_expander_float),
11140         (gst_audio_dynamic_transform_soft_knee_expander_int),
11141         (gst_audio_dynamic_transform_soft_knee_expander_float),
11142         (gst_audio_dynamic_transform_ip):
11143         * gst/audiofx/audiodynamic.h:
11144         * gst/audiofx/audiofx.c: (plugin_init):
11145         Add new audiodynamic element which can act as a compressor or
11146         expander. Supported are hard-knee and soft-knee operation modes with
11147         user-specified ratio and threshold.
11148         Attack and release parameters are not yet implemented but will follow.
11149         * docs/plugins/Makefile.am:
11150         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11151         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11152         * docs/plugins/gst-plugins-good-plugins.args:
11153         * docs/plugins/inspect/plugin-audiofx.xml:
11154         Integrate audiodynamic into the docs.
11155         * tests/check/Makefile.am:
11156         * tests/check/elements/audiodynamic.c: (setup_dynamic),
11157         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11158         Add unit test for audiodynamic.
11159
11160 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
11161
11162         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11163         Free handles that we allocated when exiting via the error paths.
11164
11165 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
11166
11167         * gst/level/gstlevel.c: (gst_level_class_init),
11168         (gst_level_set_caps), (gst_level_start), (gst_level_event),
11169         (gst_level_transform_ip):
11170         * gst/level/gstlevel.h:
11171           Resolve message timestamps against the playback segment.
11172
11173 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11174
11175         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11176         (gst_id3demux_sink_activate):
11177           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11178           caps passed to it (previously one code path assumed it took ownership
11179           while another one assumed it didn't, while in fact it sometimes did and
11180           sometimes didn't ...).
11181
11182         * configure.ac:
11183         * tests/files/Makefile.am:
11184         * tests/files/id3-407349-1.tag:
11185         * tests/files/id3-407349-2.tag:
11186           Add directory where data for unit tests can be stored.
11187
11188         * tests/Makefile.am:
11189         * tests/check/Makefile.am:
11190         * tests/check/elements/.cvsignore:
11191         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11192         (read_tags_from_file), (run_check_for_file),
11193         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11194           Add unit test for id3demux, and in particular for bug #407349. Only
11195           testing pull-mode for now; push mode doesn't work yet because the test
11196           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11197
11198 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11199
11200         * tests/check/Makefile.am:
11201           Add missing backslash at end of line.
11202
11203 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11204
11205         Trigger rebuild.
11206
11207 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11208
11209         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11210         * gst/id3demux/id3tags.h:
11211         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11212         (parse_obsolete_tdat_frame):
11213           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11214           the four-digit number will be interpreted as a year, whereas it is
11215           month and day in DDMM format. Instead, parse TDAT frames and fix up
11216           the date in the GST_TAG_DATE tag later if we also extracted a year.
11217           Fixes #407349.
11218
11219 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11220
11221         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11222         (gst_switch_commit_new_kid):
11223         Fix up the dispose logic so it doesn't leak, and fix setting of 
11224         the child state so that we don't set a child to our current state 
11225         just as we are changing it to something else.
11226
11227 2007-03-06  Wim Taymans  <wim@fluendo.com>
11228
11229         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11230         (gst_goom_chain):
11231         * gst/goom/gstgoom.h:
11232         Document, fix and improve goom adapter behaviour.
11233         Fixes #407006.
11234
11235 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11236
11237         * ext/esd/esdsink.c: (gst_esdsink_open):
11238         Unref static pad template after using it.
11239
11240 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11241
11242         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11243         (gst_switch_commit_new_kid):
11244         Fix up the reference counting of the child elements.
11245
11246 2007-03-05  Wim Taymans  <wim@fluendo.com>
11247
11248         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11249         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11250         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11251         Fix encoding-name case.
11252
11253 2007-03-05  Wim Taymans  <wim@fluendo.com>
11254
11255         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11256         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11257         (gst_rtp_speex_depay_process):
11258         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11259         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11260         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11261         (gst_rtp_speex_pay_change_state):
11262         * gst/rtp/gstrtpspeexpay.h:
11263         Fix speex (de)payloader. Fixes #358040.
11264
11265 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11266
11267         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11268         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11269         Install fakesink in NULL by fixing some broken logic. This obviates
11270         the need to manually set _IS_SINK.
11271         Add some comments and remove a little cruft while I'm at it.
11272
11273 2007-03-05  Wim Taymans  <wim@fluendo.com>
11274
11275         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11276         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11277
11278 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
11279
11280         * po/POTFILES.in:
11281           Update.
11282
11283 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11284
11285         * tests/check/Makefile.am:
11286         Gah! Also disable gconfvideosink from the tests, otherwise
11287         it will instantiate autovideosink, and dfbvideosink and
11288         leak on the buildbots.
11289
11290 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11291
11292         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11293         (gst_cdio_cdda_src_finalize):
11294         Make sure we always destroy our libcdio handle.
11295
11296 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11297
11298         * tests/check/Makefile.am:
11299         Disable autovideosink so the buildbots don't barf over memory
11300         leaked in the directfb sink.
11301
11302 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11303
11304         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11305         Chain up in dispose
11306
11307 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11308
11309         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11310         (gst_multipart_find_pad_by_mime):
11311         Use gst_pad_new_from_static_template instead of
11312         static_pad_template_get+pad_new.
11313
11314 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11315
11316         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11317         Catch the case where no clock has been set.
11318
11319 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11320
11321         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11322         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11323         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11324         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11325         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11326         (gst_gconf_audio_src_finalize), (do_toggle_element):
11327         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11328         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11329         (do_toggle_element):
11330         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11331         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11332         (gst_gconf_video_src_finalize), (do_toggle_element):
11333         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11334         (gst_switch_sink_reset), (gst_switch_sink_set_child):
11335         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11336         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11337         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11338         (gst_shout2send_init), (gst_shout2send_finalize):
11339         * gst/debug/testplugin.c: (gst_test_class_init),
11340         (gst_test_finalize):
11341         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11342         (gst_flxdec_dispose):
11343         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11344         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11345         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11346         (gst_rtspsrc_finalize):
11347         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11348         * gst/rtsp/rtspextwms.h:
11349         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11350         (gst_smpte_finalize):
11351         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11352         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11353         (gst_udpsink_finalize):
11354         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11355         (gst_wavparse_sink_activate):
11356         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11357         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11358         (gst_oss_src_finalize):
11359         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11360         * sys/v4l2/gstv4l2object.h:
11361         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11362         (gst_v4l2src_finalize):
11363         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11364
11365         Fix a bunch of leaks shown by the newly-added states test.
11366
11367 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11368
11369         * ext/dv/gstdvdec.c: (gst_dvdec_init):
11370         Use gst_pad_new_from_static_template instead of 
11371         static_pad_template_get+pad_new.
11372
11373 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
11374
11375         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11376
11377         * ext/libcaca/Makefile.am:
11378         * gst/debug/Makefile.am:
11379           Don't mix tabs and spaces (#414168).
11380
11381 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11382
11383         * tests/check/generic/.cvsignore:
11384           Ignore files to please buildbot.
11385
11386 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11387
11388         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11389         (gst_wavparse_stream_data):
11390           Unbreak my previous commit (swapped nominator & denominator). Tim,
11391           thanks for spotting.
11392
11393 2007-03-02  Wim Taymans  <wim@fluendo.com>
11394
11395         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11396         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11397         (gst_cdio_cdda_src_finalize):
11398         Small code cleanups.
11399         Don't use pad_alloc as the base class cannot deal with the error codes.
11400
11401 2007-03-02  Wim Taymans  <wim@fluendo.com>
11402
11403         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11404         (gst_udpsrc_create):
11405         Fix doc.
11406
11407 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11408
11409         Patch by: René Stadler <mail@renestadler.de>
11410
11411         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11412         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11413         (gst_wavparse_stream_data):
11414           Handle rounding better to not drop last sample frame. Fixes #356692
11415
11416 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
11417
11418         * tests/check/Makefile.am:
11419         Disable cacasink from the states check too - it also calls exit(1)
11420         on us when it can't find a terminal to talk to.
11421
11422 2007-03-02  Wim Taymans  <wim@fluendo.com>
11423
11424         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11425
11426         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11427         (gst_udpsrc_create), (gst_udpsrc_set_property),
11428         (gst_udpsrc_get_property):
11429         * gst/udp/gstudpsrc.h:
11430         Add support to strip proprietary headers. Fixes #350296.
11431
11432 2007-03-02  Wim Taymans  <wim@fluendo.com>
11433
11434         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11435         Fix compilation.
11436
11437 2007-03-02  Wim Taymans  <wim@fluendo.com>
11438
11439         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11440
11441         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11442         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11443         (gst_rtp_mp2t_depay_set_property),
11444         (gst_rtp_mp2t_depay_get_property):
11445         * gst/rtp/gstrtpmp2tdepay.h:
11446         Add support to strip off proprietary headers. Fixes #350278.
11447
11448 2007-03-02  Wim Taymans  <wim@fluendo.com>
11449
11450         * ext/hal/hal.c:
11451         Fix compilation.
11452
11453 2007-03-02  Wim Taymans  <wim@fluendo.com>
11454
11455         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11456         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11457         (gst_sunaudiosrc_open):
11458         * sys/sunaudio/gstsunaudiosrc.h:
11459         Remove device-name from GstSunAudioSrc. Fixes #412597.
11460
11461 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11462
11463         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11464         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11465         Having NULL as UDI previously selected the default sink/src. Change
11466         this back but mention it in the debug output.
11467         * ext/hal/hal.c: (gst_hal_get_alsa_element),
11468         (gst_hal_get_oss_element), (gst_hal_get_string),
11469         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11470         (gst_hal_get_audio_src):
11471         * ext/hal/hal.h:
11472         Refactor a bit, check all error conditions, greatly improve debugging
11473         and fix some possible memory leaks. Also implement OSS support
11474         and allow specifying an UDI that points to a real device. For this the
11475         child device which supports ALSA (preferred) or OSS is used.
11476         As a side effect this makes it impossible now to get a alsasink in
11477         halaudiosrc and a alsasrc in halaudiosink.
11478
11479 2007-03-01  Wim Taymans  <wim@fluendo.com>
11480
11481         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11482         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11483         Errors from the udp sources are not fatal unless all of them are in
11484         error.
11485
11486 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11487
11488         * tests/check/Makefile.am:
11489         Disable aasink in the states test. I suspect this is the element that
11490         is calling exit(1) when it can't proceed.
11491
11492 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11493
11494         * tests/check/Makefile.am:
11495         Draw plugins in from the build tree sys/ dir, rather than picking
11496         up the already installed versions.
11497
11498 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11499
11500         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11501         Error out correctly when getting xcontext fails.
11502
11503 2007-03-01  Wim Taymans  <wim@fluendo.com>
11504
11505         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11506         Make state change to PAUSED NO_PREROLL because that's what it will be in
11507         the future and rtspsrc relies on it.
11508
11509         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11510         (gst_rtspsrc_change_state):
11511         Don't error out when we don't get an error from the state change
11512         function.
11513
11514 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11515
11516         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11517         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11518           Check if the device UDI is set before trying to query HAL
11519           about it and give a useful error message if it wasn't set.
11520         * ext/hal/hal.c: (gst_hal_get_string):
11521           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11522           gives an assertion failure in D-Bus when running with
11523           DBUS_FATAL_WARNINGS=1.
11524
11525 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11526
11527         * configure.ac:
11528           Convert to new AG_GST style.
11529
11530 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11531
11532         * tests/check/Makefile.am:
11533         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11534           add test for states
11535
11536 2007-02-28  Wim Taymans  <wim@fluendo.com>
11537
11538         * tests/check/elements/.cvsignore:
11539         Add new videofilter check to .cvsignore.
11540
11541 2007-02-28  Wim Taymans  <wim@fluendo.com>
11542
11543         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11544         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11545         (gst_avi_demux_loop), (gst_avi_demux_chain):
11546         Fix combined flow return. Fixes #412608.
11547
11548 2007-02-28  Wim Taymans  <wim@fluendo.com>
11549
11550         * gst/videofilter/Makefile.am:
11551         Dist header..
11552
11553 2007-02-28  Wim Taymans  <wim@fluendo.com>
11554
11555         * gst/videofilter/gstgamma.h:
11556         Add header too.
11557
11558 2007-02-28  Wim Taymans  <wim@fluendo.com>
11559
11560         Patch by: Mark Nauwelaerts <manauw at skynet be>
11561
11562         * gst/videofilter/Makefile.am:
11563         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11564         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11565         (gst_gamma_get_property), (gst_gamma_calculate_tables),
11566         (oil_tablelookup_u8), (gst_gamma_set_caps),
11567         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11568         Port gamma filter to 0.10. Fixes #412704.
11569
11570         * tests/check/Makefile.am:
11571         * tests/check/elements/videofilter.c: (setup_filter),
11572         (cleanup_filter), (check_filter), (GST_START_TEST),
11573         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11574         Add unit tests for videofilters.
11575
11576 2007-02-28  Wim Taymans  <wim@fluendo.com>
11577
11578         * gst/rtsp/URLS:
11579         Add another interesting test url.
11580
11581         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11582         Don't allow getting header fields from data packets.
11583
11584 2007-02-28  Michael Smith  <msmith@fluendo.com>
11585
11586         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11587         (gst_shout2send_init), (gst_shout2send_start),
11588         (gst_shout2send_set_property), (gst_shout2send_get_property):
11589         * ext/shout2/gstshout2.h:
11590           Add a property for username.
11591
11592 2007-02-27  Christian Schallerr <christian@fluendo.com>
11593
11594         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11595
11596 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11597
11598         * gst/rtsp/Makefile.am:
11599         Fix make check too.
11600
11601 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11602
11603         * gst/rtsp/base64.c: (util_base64_encode):
11604         * gst/rtsp/base64.h:
11605         Commit missing files for base64 encoding.
11606
11607 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11608
11609         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11610
11611         * configure.ac:
11612         * ext/annodex/Makefile.am:
11613         * ext/jpeg/Makefile.am:
11614         * ext/speex/Makefile.am:
11615         * gst/alpha/Makefile.am:
11616         * gst/cutter/Makefile.am:
11617         * gst/debug/Makefile.am:
11618         * gst/effectv/Makefile.am:
11619         * gst/goom/Makefile.am:
11620         * gst/level/Makefile.am:
11621         * gst/smpte/Makefile.am:
11622         * gst/videofilter/Makefile.am:
11623           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11624
11625 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11626
11627         * gst/rtsp/Makefile.am:
11628         * gst/rtsp/rtspconnection.c: (append_auth_header),
11629         (rtsp_connection_send), (rtsp_connection_set_auth):
11630         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11631         from icecast to replace it. Relicensed from GPL courtesy of Mike
11632         Smith.
11633
11634 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11635
11636         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11637         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11638         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11639         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11640         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11641         (gst_rtspsrc_uri_set_uri):
11642         * gst/rtsp/gstrtspsrc.h:
11643         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11644         (append_auth_header), (rtsp_connection_send),
11645         (rtsp_connection_free), (rtsp_connection_set_auth):
11646         * gst/rtsp/rtspconnection.h:
11647         * gst/rtsp/rtspdefs.h:
11648         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11649         * gst/rtsp/rtspurl.h:
11650
11651         Implement simple Basic Authentication support so that urls like
11652         rtsp://user:pass@hostname/rtspstream work on hosts that require
11653         authentication.
11654
11655 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
11656
11657         * sys/v4l2/gstv4l2object.c:
11658         * sys/v4l2/gstv4l2tuner.c:
11659         * sys/v4l2/v4l2_calls.c:
11660         Fix segfault when oppening a radio device.
11661         
11662 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
11663
11664         * gst/level/gstlevel.c: (gst_level_set_caps),
11665         (gst_level_transform_ip):
11666         * sys/v4l2/README:
11667         * tests/check/elements/level.c: (GST_START_TEST):
11668           Fix level for multi-channel case.
11669
11670 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
11671
11672         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11673         (gst_level_transform_ip):
11674         * gst/level/gstlevel.h:
11675           Use function pointer for process function and add process functions
11676           for float audio.
11677
11678 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
11679
11680         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11681         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11682         (gst_v4l2src_capture_init):
11683           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11684           fixes #407369
11685
11686 2007-02-18  Wim Taymans  <wim@fluendo.com>
11687
11688         * gst/rtp/Makefile.am:
11689         * gst/rtp/gstrtp.c: (plugin_init):
11690         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11691         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11692         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11693         (gst_rtp_mp2t_pay_plugin_init):
11694         * gst/rtp/gstrtpmp2tpay.h:
11695         Added simple mpeg transport stream payloader.
11696
11697 2007-02-16  Wim Taymans  <wim@fluendo.com>
11698
11699         * gst/rtsp/URLS:
11700         Add example H264 rtsp url.
11701
11702         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11703         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11704         Don't convert values to lowercase or we might mess up base64 encoded
11705         properties.
11706
11707 2007-02-16  Wim Taymans  <wim@fluendo.com>
11708
11709         * gst/rtp/README:
11710         Fix case of string params.
11711
11712         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11713         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11714         Fix depayloader, support more packet types.
11715         Add sync codes to make sure the packetizer can do its job.
11716
11717         * gst/rtp/gstrtpmp4gdepay.c:
11718         * gst/rtp/gstrtpmp4gpay.c:
11719         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11720         Fix caps case again.
11721
11722 2007-02-15  Wim Taymans  <wim@fluendo.com>
11723
11724         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11725         Set right caps on output buffers.
11726
11727 2007-02-14  Wim Taymans  <wim@fluendo.com>
11728
11729         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11730         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
11731         Clear stack allocated SDPMedia struct before calling _init() on it.
11732         Clarify this in the docs as well.
11733
11734 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
11735
11736         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11737         (do_change_child):
11738         Don't reset the profile when going switching states, as it makes
11739         the element non-reusable.
11740
11741 2007-02-14  Wim Taymans  <wim@fluendo.com>
11742
11743         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11744         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11745         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11746         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11747         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11748         (sdp_parse_line):
11749         * gst/rtsp/sdpmessage.h:
11750         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11751         Fix memory management of SDP messages. Fixes #407793.
11752
11753 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
11754
11755         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11756
11757         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11758         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11759
11760 2007-02-14  Wim Taymans  <wim@fluendo.com>
11761
11762         Patch by: jp.liu <jp_liu at astrocom dot cn>
11763
11764         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11765         Fix parsing of password field in url. Fixes #407797.
11766
11767 2007-02-14  Wim Taymans  <wim@fluendo.com>
11768
11769         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11770         (gst_wavparse_reset), (gst_wavparse_init),
11771         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11772         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11773         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11774         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11775         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11776         (gst_wavparse_loop), (gst_wavparse_chain),
11777         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11778         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11779         (plugin_init):
11780         * gst/wavparse/gstwavparse.h:
11781         Update docs.
11782         Use boilerplate.
11783         Various code cleanups.
11784         When the bitrate is not known (bps == 0 or compressed formats) let
11785         downstream element guestimate the duration and position and don't
11786         generate timestamps or durations. Fixes #405213.
11787         Fix EOS and ERROR conditions in chain mode, we just need to forward the
11788         error flowreturn upstream.
11789
11790 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11791
11792         * ext/gconf/Makefile.am:
11793         * ext/gconf/gconf.c: (gst_gconf_get_string),
11794         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11795         (gst_gconf_render_bin_with_default):
11796         * ext/gconf/gconf.h:
11797         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11798         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11799         (gst_gconf_audio_sink_dispose), (do_change_child),
11800         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11801         (cb_change_child), (gst_gconf_audio_sink_change_state):
11802         * ext/gconf/gstgconfaudiosink.h:
11803         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11804         (gst_switch_sink_class_init), (gst_switch_sink_reset),
11805         (gst_switch_sink_init), (gst_switch_sink_dispose),
11806         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11807         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11808         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11809         * ext/gconf/gstswitchsink.h:
11810         * gst/autodetect/gstautoaudiosink.c:
11811         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11812         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11813         (gst_auto_audio_sink_detect):
11814         * gst/autodetect/gstautovideosink.c:
11815         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11816         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11817         (gst_auto_video_sink_detect):
11818         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11819         and a child that implements the GConf key monitoring. The end goal of
11820         this is an audio sink that can be changed on the fly, but at the 
11821         moment it still only changes on the next READY transition.
11822
11823 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11824
11825         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11826         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11827         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11828         (gst_avi_demux_calculate_durations_from_index),
11829         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11830         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11831         (gst_avi_demux_loop):
11832           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11833
11834 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11835
11836         * configure.ac:
11837         * docs/plugins/Makefile.am:
11838           Add crossreferences to glib/gobject/gstream docs.
11839
11840 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11841
11842         * gst/monoscope/Makefile.am:
11843         * gst/monoscope/gstmonoscope.c:
11844           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11845           (but no LIBS, since we only use defines from the headers).
11846
11847 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11848
11849         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
11850
11851         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11852         (gst_wavparse_stream_data):
11853           Fix massive memory leak when operating in streaming mode due to
11854           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11855           Fixes #407057.
11856
11857 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11858
11859         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11860         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11861         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11862         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11863         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11864         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11865         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11866         (gst_avi_demux_calculate_durations_from_index),
11867         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11868         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11869         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11870         * gst/avi/gstavidemux.h:
11871           Save some memory (8%) by repacking the index entry structure (more to
11872           come). Add more FIXMEs to questionable parts.
11873
11874 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11875
11876         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11877         (gst_v4l2src_get_caps):
11878         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11879         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11880         (gst_v4l2src_capture_init):
11881           More FIXME comments and messaging changes.
11882
11883 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11884
11885         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11886         (gst_goom_change_state):
11887         * gst/goom/gstgoom.h:
11888           Improved docs and use GST_DEBUG_FUNCPTR.
11889
11890         * gst/level/gstlevel.c: (gst_level_class_init):
11891           Use GST_DEBUG_FUNCPTR.
11892
11893         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11894         (gst_monoscope_chain), (gst_monoscope_change_state):
11895           Improved docs source cleanups.
11896
11897 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11898
11899         * gst/debug/Makefile.am:
11900         * gst/debug/gstdebug.c: (plugin_init):
11901         * gst/debug/gstpushfilesrc.c:
11902         * gst/debug/gstpushfilesrc.h:
11903           Add code for a pushfilesrc element that implements a pushfile:// URI
11904           handler, to make debugging push-mode operation of demuxer/decoders
11905           that support both easier in connection with seek/playbin/etc.
11906           The element isn't registered at the moment.
11907
11908 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
11909
11910         * gst/avi/gstavimux.c:
11911           Comment a #if 0 in caps template definition as VS6 seems to 
11912         do not support it.
11913         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11914           Use gst_guint64_to_gdouble for conversion.
11915         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11916           Move variables declaration before the first instruction.
11917         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11918           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11919           And don't include netdb.h for G_OS_WIN32
11920         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11921           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
11922           by VS6 then use an other way to initialize SDPMedia structure.
11923         * gst/udp/gstdynudpsink.h:
11924         * gst/udp/gstdynudpnetutils.h:
11925           Do not include <sys/time.h> for G_OS_WIN32
11926         * gst/udp/gstudpsrc.c:
11927           Define socklen_t as int for G_OS_WIN32
11928         * win/common/config.h.in:
11929           Undef HAVE_NETINET_IN_H
11930         * win32/vs6/gst_plugins_good.dsw:
11931         * win32/vs6/libgstrtp.dsp:
11932         * win32/vs6/libgstrtsp.dsp:
11933         * win32/vs6/libgstautogen.dsp:
11934         * win32/vs6/libgstaudiofx.dsp:
11935         * win32/vs6/libgstudp.dsp:
11936           Add and update project files.
11937         * win32/common/gstudp-enumtypes.c:
11938         * win32/common/gstudp-enumtypes.h:
11939           Add a copy of udp enumtypes to win32/common as in core 
11940           and base.
11941         
11942 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
11943
11944         * configure.ac:
11945           Activate monoscope when building with --enable-experimental. Fix
11946           --enable-external configure switch description.
11947
11948         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
11949         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
11950           Help gst-indent.
11951
11952 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
11953
11954         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
11955           Explicitly cast result of pointer arithmetic to integer in order to
11956           avoid compiler warnings on some 64-bit systems. Should fix #406018.
11957
11958 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
11959
11960         * gst/debug/progressreport.c:
11961           Some more docs.
11962
11963 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11964
11965         * docs/plugins/inspect/plugin-rtp.xml:
11966           Update for new elements.
11967
11968         * gst/debug/progressreport.h:
11969           Commit newly-created header file as well.
11970
11971 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11972
11973         * docs/plugins/Makefile.am:
11974         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11975         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11976         * docs/plugins/gst-plugins-good-plugins.hierarchy:
11977         * gst/debug/Makefile.am:
11978         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
11979         (gst_progress_report_do_query), (gst_progress_report_report):
11980           Make progressreport element post messages with the current progress
11981           on the bus. Also add some basic docs for it.
11982
11983 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
11984
11985         * ext/hal/hal.c: (gst_hal_get_string):
11986         * ext/hal/hal.h:
11987           Some small cleanups; deal with errors when parsing the HAL ALSA
11988           capabilities a bit better.
11989
11990 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11991
11992         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11993           Let's try this again and use the right cast this time.
11994
11995 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11996
11997         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11998           Add cast to avoid compiler warnings with older GLib versions
11999           where the nick/name members in GEnumValue are not declared as
12000           constant strings.
12001
12002 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12003
12004         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
12005         (gst_gconf_render_bin_from_key),
12006         (gst_gconf_get_default_audio_sink):
12007         * ext/gconf/gconf.h:
12008         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
12009         (do_toggle_element), (gst_gconf_audio_sink_set_property),
12010         (gst_gconf_audio_sink_get_property):
12011           In gconfaudiosink, get the right key as the old key in do_toggle
12012           (ie. one dependent on the profile selected). Log some more stuff so
12013           we can see what's actually going on.
12014
12015 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
12016
12017         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
12018         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
12019         (gst_audio_amplify_set_process_function),
12020         (gst_audio_amplify_setup):
12021         * gst/audiofx/audioamplify.h:
12022         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12023         (gst_audio_invert_class_init), (gst_audio_invert_setup):
12024         * gst/audiofx/audioinvert.h:
12025         Some small cleanups and port both elements to the new GstAudioFilter
12026         base class to save a few lines of common code.
12027         * gst/audiofx/Makefile.am:
12028         Link against libgstaudio for the above changes
12029
12030 2007-01-29  Wim Taymans  <wim@fluendo.com>
12031
12032         * tests/check/elements/.cvsignore:
12033         Some more ignores.
12034
12035 2007-01-26  Wim Taymans  <wim@fluendo.com>
12036
12037         Patch by: charles <charlesg3 at gmail dot com>
12038
12039         * ext/shout2/gstshout2.c: (gst_shout2send_init),
12040         (set_shout_metadata), (gst_shout2send_event):
12041         * ext/shout2/gstshout2.h:
12042         Properly handle tags in shout2send. Fixes #399825.
12043
12044 2007-01-25  Wim Taymans  <wim@fluendo.com>
12045
12046         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
12047         (gst_rtspsrc_activate_streams):
12048         Convert SDP fields to upper/lowercase following the rules in the SDP to
12049         caps document. 
12050
12051 2007-01-25  Wim Taymans  <wim@fluendo.com>
12052
12053         * gst/rtp/README:
12054         * gst/rtp/gstrtpilbcdepay.c:
12055         * gst/rtp/gstrtpilbcpay.c:
12056         * gst/rtp/gstrtpmp4gdepay.c:
12057         * gst/rtp/gstrtpmp4gpay.c:
12058         * gst/rtp/gstrtpspeexdepay.c:
12059         * gst/rtp/gstrtpspeexpay.c:
12060         * gst/rtp/gstrtpsv3vdepay.c:
12061         * gst/rtp/gstrtptheoradepay.c:
12062         * gst/rtp/gstrtptheorapay.c:
12063         * gst/rtp/gstrtpvorbisdepay.c:
12064         * gst/rtp/gstrtpvorbispay.c:
12065         Fix case of encoding-name and key/value pairs to match the document.
12066         This is to make interoperation with SDP case-insensitive as required by
12067         the relevant RFCs.
12068
12069 2007-01-25  Wim Taymans  <wim@fluendo.com>
12070
12071         * configure.ac:
12072         Bump required -core/-base to CVS
12073
12074 2007-01-25  Wim Taymans  <wim@fluendo.com>
12075
12076         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
12077         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
12078         * gst/rtp/gstrtpL16pay.h:
12079         Fill up to MTU using adapter.
12080         Timestamp rtp packets.
12081
12082 2007-01-25  Edward Hervey  <edward@fluendo.com>
12083
12084         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12085         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
12086         Use G_GSIZE_FORMAT in print statements for portability.
12087         Fixes build on macosx.
12088
12089 2007-01-24  Wim Taymans  <wim@fluendo.com>
12090
12091         * gst/rtp/Makefile.am:
12092         * gst/rtp/gstrtp.c: (plugin_init):
12093         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
12094         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
12095         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
12096         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
12097         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
12098         (gst_rtp_L16_depay_plugin_init):
12099         * gst/rtp/gstrtpL16depay.h:
12100         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
12101         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
12102         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
12103         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
12104         (gst_rtp_L16_pay_plugin_init):
12105         * gst/rtp/gstrtpL16pay.h:
12106         Port and enable raw audio payloader/depayloader. Needs a bit more work
12107         on the payloader side.
12108
12109 2007-01-24  Wim Taymans  <wim@fluendo.com>
12110
12111         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
12112         (gst_rtspsrc_stream_configure_transport),
12113         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12114         * gst/rtsp/gstrtspsrc.h:
12115         Only unblock the udp pads when we linked and activated them all.
12116         Fixes #395688.
12117
12118 2007-01-24  Wim Taymans  <wim@fluendo.com>
12119
12120         * gst/rtp/Makefile.am:
12121         * gst/rtp/gstrtp.c: (plugin_init):
12122         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12123         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12124         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12125         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12126         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12127         * gst/rtp/gstrtpac3depay.h:
12128         Added simple AC3 depayloader (RFC 4184).
12129
12130         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12131         Fix a leak.
12132
12133 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
12134
12135         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12136
12137         * gst/audiofx/Makefile.am:
12138         * gst/audiofx/audioamplify.c:
12139         (gst_audio_amplify_clipping_method_get_type),
12140         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12141         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12142         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12143         (gst_audio_amplify_set_caps),
12144         (gst_audio_amplify_transform_int_clip),
12145         (gst_audio_amplify_transform_int_wrap_negative),
12146         (gst_audio_amplify_transform_int_wrap_positive),
12147         (gst_audio_amplify_transform_float_clip),
12148         (gst_audio_amplify_transform_float_wrap_negative),
12149         (gst_audio_amplify_transform_float_wrap_positive),
12150         (gst_audio_amplify_transform_ip):
12151         * gst/audiofx/audioamplify.h:
12152         * gst/audiofx/audiofx.c: (plugin_init):
12153         Add new element "audioamplify". This allows scaling of raw audio
12154         samples, similar to the "volume" element, but provides different modes
12155         for clipping and allows unlimited amplification. It's mainly targeted
12156         for creative sound design and not as a replacement of the "volume"
12157         element. Fixes #397162
12158         * docs/plugins/Makefile.am:
12159         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12160         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12161         * docs/plugins/gst-plugins-good-plugins.args:
12162         * docs/plugins/inspect/plugin-audiofx.xml:
12163         Add docs for audioamplify and integrate them into the build system
12164         * tests/check/Makefile.am:
12165         * tests/check/elements/audioamplify.c: (setup_amplify),
12166         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12167         Add fairly extensive unit test suite for audioamplify
12168
12169 2007-01-24  Wim Taymans  <wim@fluendo.com>
12170
12171         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12172         Unblock pads after adding the pads to the element so that autopluggers
12173         get a change to link something. Possibly fixes #395688.
12174
12175 2007-01-24  Wim Taymans  <wim@fluendo.com>
12176
12177         * gst/rtp/gstrtpamrdepay.c:
12178         * gst/rtp/gstrtpgsmdepay.c:
12179         * gst/rtp/gstrtph263pdepay.c:
12180         * gst/rtp/gstrtph263ppay.c:
12181         * gst/rtp/gstrtph264depay.c:
12182         * gst/rtp/gstrtpilbcdepay.c:
12183         * gst/rtp/gstrtpmp2tdepay.c:
12184         * gst/rtp/gstrtpmp4gdepay.c:
12185         * gst/rtp/gstrtpmp4gpay.c:
12186         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12187         * gst/rtp/gstrtpmp4vpay.c:
12188         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12189         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12190         (gst_rtp_mpa_depay_process):
12191         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12192         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12193         * gst/rtp/gstrtppcmadepay.c:
12194         * gst/rtp/gstrtppcmudepay.c:
12195         * gst/rtp/gstrtpspeexdepay.c:
12196         * gst/rtp/gstrtpspeexpay.c:
12197         * gst/rtp/gstrtpsv3vdepay.c:
12198         * gst/rtp/gstrtptheoradepay.c:
12199         * gst/rtp/gstrtptheorapay.c:
12200         * gst/rtp/gstrtpvorbisdepay.c:
12201         * gst/rtp/gstrtpvorbispay.c:
12202         Fix caps with payload numbers.
12203         Add some fixed payload numbers to caps when possible.
12204
12205 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
12206
12207         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12208
12209         * gst/audiofx/Makefile.am:
12210         * gst/audiofx/audiofx.c: (plugin_init):
12211         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12212         (gst_audio_invert_class_init), (gst_audio_invert_init),
12213         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12214         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12215         (gst_audio_invert_transform_float),
12216         (gst_audio_invert_transform_ip):
12217         * gst/audiofx/audioinvert.h:
12218         Add new audiofx element "audioinvert". This element swaps the upper
12219         and lower half of samples and can be used for example for a
12220         wide-stereo effect. Fixes #396057
12221         * docs/plugins/Makefile.am:
12222         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12223         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12224         * docs/plugins/gst-plugins-good-plugins.args:
12225         * docs/plugins/inspect/plugin-audiofx.xml:
12226         Add docs for the audioinvert element and add them to the build system.
12227         * tests/check/Makefile.am:
12228         * tests/check/elements/audioinvert.c: (setup_invert),
12229         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12230         Add unit test suite for the audioinvert element.
12231
12232 2007-01-23  Wim Taymans  <wim@fluendo.com>
12233
12234         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12235         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12236         Parse config params as string and int.
12237         Parse and use AU header length
12238
12239 2007-01-23  Wim Taymans  <wim@fluendo.com>
12240
12241         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12242         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12243         * gst/smpte/gstmask.c: (_gst_mask_register):
12244         * gst/smpte/gstmask.h:
12245         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12246         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12247         (gst_smpte_paint_triangle_clock):
12248         constify some static structs.
12249         Don't update the mask if nothing changed to the params.
12250         Make sure we never draw outside of the picture. Fixes #398325.
12251
12252 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
12253
12254         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12255           Error out properly when pull_range fails while we're reading the
12256           headers, instead of just pausing the task silently. Fixes #399338.
12257
12258 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
12259
12260         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12261           Some more sanity checks to make sure the input formats match and the
12262           input pads are actually negotiated, in case someone tries to feed
12263           buffers from fakesrc or filesrc. Fixes #398299.
12264           Also const-ify an array, just because we can.
12265
12266 2007-01-19  Edward Hervey  <edward@fluendo.com>
12267
12268         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12269         Ignore previous commit, that was only valid for widths and heights
12270         that are multiples of 4.
12271         Copy over size/stride macros from jpegdec. This allows the element
12272         to work with any width,height...
12273         ... but puts in evidence that the actual transformations only work
12274         with width/height that are multiples of 4.
12275
12276 2007-01-19  Edward Hervey  <edward@fluendo.com>
12277
12278         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12279         Allocate buffers of the right size.
12280         The proper size of a I420 buffer in bytes is:
12281         
12282             width * height * 3
12283             ------------------
12284                     2
12285
12286 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12287
12288         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12289           Proxy getcaps on sink pads too, so that we either end up with the
12290           same dimensions on all pads or error out if that's not possible
12291           (seems to work even!). Fixes #398086, I think.
12292
12293 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12294
12295         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12296         * docs/plugins/gst-plugins-good-plugins.args:
12297         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12298           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12299           fix integer properties with -1 as minimum value.
12300
12301         * docs/plugins/inspect/plugin-1394.xml:
12302         * docs/plugins/inspect/plugin-aasink.xml:
12303         * docs/plugins/inspect/plugin-alaw.xml:
12304         * docs/plugins/inspect/plugin-alpha.xml:
12305         * docs/plugins/inspect/plugin-alphacolor.xml:
12306         * docs/plugins/inspect/plugin-annodex.xml:
12307         * docs/plugins/inspect/plugin-apetag.xml:
12308         * docs/plugins/inspect/plugin-audiofx.xml:
12309         * docs/plugins/inspect/plugin-auparse.xml:
12310         * docs/plugins/inspect/plugin-autodetect.xml:
12311         * docs/plugins/inspect/plugin-avi.xml:
12312         * docs/plugins/inspect/plugin-cacasink.xml:
12313         * docs/plugins/inspect/plugin-cairo.xml:
12314         * docs/plugins/inspect/plugin-cdio.xml:
12315         * docs/plugins/inspect/plugin-cutter.xml:
12316         * docs/plugins/inspect/plugin-debug.xml:
12317         * docs/plugins/inspect/plugin-dv.xml:
12318         * docs/plugins/inspect/plugin-efence.xml:
12319         * docs/plugins/inspect/plugin-effectv.xml:
12320         * docs/plugins/inspect/plugin-esdsink.xml:
12321         * docs/plugins/inspect/plugin-flac.xml:
12322         * docs/plugins/inspect/plugin-flxdec.xml:
12323         * docs/plugins/inspect/plugin-gconfelements.xml:
12324         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12325         * docs/plugins/inspect/plugin-goom.xml:
12326         * docs/plugins/inspect/plugin-halelements.xml:
12327         * docs/plugins/inspect/plugin-icydemux.xml:
12328         * docs/plugins/inspect/plugin-id3demux.xml:
12329         * docs/plugins/inspect/plugin-jpeg.xml:
12330         * docs/plugins/inspect/plugin-level.xml:
12331         * docs/plugins/inspect/plugin-matroska.xml:
12332         * docs/plugins/inspect/plugin-mulaw.xml:
12333         * docs/plugins/inspect/plugin-multipart.xml:
12334         * docs/plugins/inspect/plugin-navigationtest.xml:
12335         * docs/plugins/inspect/plugin-ossaudio.xml:
12336         * docs/plugins/inspect/plugin-png.xml:
12337         * docs/plugins/inspect/plugin-rtp.xml:
12338         * docs/plugins/inspect/plugin-rtsp.xml:
12339         * docs/plugins/inspect/plugin-shout2send.xml:
12340         * docs/plugins/inspect/plugin-smpte.xml:
12341         * docs/plugins/inspect/plugin-speex.xml:
12342         * docs/plugins/inspect/plugin-taglib.xml:
12343         * docs/plugins/inspect/plugin-udp.xml:
12344         * docs/plugins/inspect/plugin-videobalance.xml:
12345         * docs/plugins/inspect/plugin-videobox.xml:
12346         * docs/plugins/inspect/plugin-videoflip.xml:
12347         * docs/plugins/inspect/plugin-videomixer.xml:
12348         * docs/plugins/inspect/plugin-wavenc.xml:
12349         * docs/plugins/inspect/plugin-wavparse.xml:
12350         * docs/plugins/inspect/plugin-ximagesrc.xml:
12351           Update to CVS.
12352
12353 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
12354
12355         Patch by: Sebastian Dröge <slomo circular-chaos org>
12356
12357         * gst/audiofx/audiopanorama.c:
12358           Fix doc section name (Fixes #397946)
12359
12360 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
12361
12362         * sys/v4l2/gstv4l2object.c:
12363         (gst_v4l2_object_install_properties_helper),
12364         (gst_v4l2_object_set_property_helper),
12365         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12366         * sys/v4l2/gstv4l2object.h:
12367         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12368         (gst_v4l2src_init), (gst_v4l2src_set_property),
12369         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12370         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12371         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12372         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12373         (gst_v4l2src_capture_deinit):
12374           Fix EIO handing when capturing. Add new property to specify the number of
12375           buffers to enque (and remove the borked num-buffers usage).
12376
12377 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
12378
12379         Patch by: Sebastian Dröge <slomo circular-chaos org>
12380
12381         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12382         (gst_audio_panorama_set_process_function):
12383           Use a function array for process methods, add more docs and define the
12384           startindex of enums.
12385
12386 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
12387
12388         Patch by: Mark Nauwelaerts <manauw at skynet be>
12389
12390         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12391         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12392         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12393         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12394         (gst_avi_mux_riff_get_avi_header),
12395         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12396         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12397         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12398         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12399         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12400         (gst_avi_mux_change_state):
12401         * gst/avi/gstavimux.h:
12402         * tests/check/elements/avimux.c: (teardown_src_pad):
12403           Add support for more than one audio stream; write better AVIX
12404           header; refactor code a bit; don't announce vorbis caps on our audio
12405           sink pads since we don't support it anyway. Closes #379298.
12406
12407 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
12408
12409         Patch by: Sebastian Dröge <slomo circular-chaos org>
12410
12411         * gst/audiofx/audiopanorama.c:
12412         (gst_audio_panorama_method_get_type),
12413         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12414         (gst_audio_panorama_set_process_function),
12415         (gst_audio_panorama_set_property),
12416         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12417         (gst_audio_panorama_transform_m2s_int_simple),
12418         (gst_audio_panorama_transform_s2s_int_simple),
12419         (gst_audio_panorama_transform_m2s_float_simple),
12420         (gst_audio_panorama_transform_s2s_float_simple):
12421         * gst/audiofx/audiopanorama.h:
12422           Add 'method' property and provide a simple (non-psychoacustic)
12423           processing method (#394859).
12424
12425         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12426         (panorama_suite):
12427           Tests for new method.
12428
12429 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
12430
12431         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12432         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12433           Set correct caps on outgoing pulled buffers, or things blow up
12434           after recent core changes.
12435
12436 2007-01-11  Wim Taymans  <wim@fluendo.com>
12437
12438         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12439
12440         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12441         (gst_multipart_mux_request_new_pad),
12442         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12443         (gst_multipart_mux_change_state):
12444         Return FLOW errors ASAP. Fixes #394977.
12445         Misc cleanups.
12446
12447 2007-01-11  Wim Taymans  <wim@fluendo.com>
12448
12449         Patch by: Lutz Mueller <lutz at topfrose dot de>
12450
12451         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12452         Check for stream pad before activating. 
12453
12454 2007-01-10  Wim Taymans  <wim@fluendo.com>
12455
12456         Patch by: Peter Kjellerstedt  <pkj at axis com>
12457
12458         * gst/rtsp/COPYING.MIT:
12459         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12460         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12461         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12462         (gst_rtspsrc_stream_configure_transport),
12463         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12464         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12465         (gst_rtspsrc_parse_methods),
12466         (gst_rtspsrc_create_transports_string),
12467         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12468         (gst_rtspsrc_open), (gst_rtspsrc_close):
12469         * gst/rtsp/gstrtspsrc.h:
12470         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12471         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12472         (parse_request_line), (parse_line), (rtsp_connection_read),
12473         (rtsp_connection_close):
12474         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12475         (rtsp_method_as_text), (rtsp_header_as_text),
12476         (rtsp_status_as_text), (rtsp_find_header_field),
12477         (rtsp_find_method):
12478         * gst/rtsp/rtspdefs.h:
12479         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12480         (rtsp_ext_wms_configure_stream):
12481         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12482         (rtsp_message_new_request), (rtsp_message_init_request),
12483         (rtsp_message_new_response), (rtsp_message_init_response),
12484         (rtsp_message_init_data), (rtsp_message_unset),
12485         (rtsp_message_free), (rtsp_message_add_header),
12486         (rtsp_message_get_header), (rtsp_message_set_body),
12487         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12488         * gst/rtsp/rtspmessage.h:
12489         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12490         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12491         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12492         (sdp_message_dump):
12493         Allow url to be NULL to be able to use it for server connections.
12494         Can now send responses as well as requests.
12495         No longer hangs in an endless loop if EOF is received.
12496         Can now convert a status code to a text string.
12497         Return RTSP_HDR_INVALID for unknown headers.
12498         Return RTSP_INVALID for unknown methods.
12499         Copy CSeq and Session headers from the request.
12500         Only free memory corresponding to the currently set message type.
12501         Added const to function arguments as appropriate.
12502         Avoid a compiler warning when initializing nmedia.
12503         Use guint rather than gint to avoid compiler warnings.
12504         Fix crasher in wms extension.
12505         Factor out stream setup from open_connection.
12506         Delay activation of streams when actual data is received from the
12507         server, this prepares us to do proper protocol switching.
12508         Added new license.
12509         Fixes #380895.
12510
12511
12512 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
12513
12514         Patch by: Sebastian Dröge <slomo ubuntu com>
12515
12516         * docs/plugins/Makefile.am:
12517         * gst/audiofx/audiopanorama.c:
12518           Some small docs fixes (#394851).
12519
12520 2007-01-09  Wim Taymans  <wim@fluendo.com>
12521
12522         * gst/avi/gstavidemux.c:
12523         Fix docs.
12524
12525 2007-01-09  Wim Taymans  <wim@fluendo.com>
12526
12527         * gst/rtp/Makefile.am:
12528         * gst/rtp/gstrtp.c: (plugin_init):
12529         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12530         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12531         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12532         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12533         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12534         * gst/rtp/gstrtpmpvdepay.h:
12535           Added RFC 2250 MPEG Video Depayloader.
12536
12537         * gst/rtp/gstrtpL16depay.h:
12538         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12539         (gst_rtp_h263p_depay_process):
12540         Fix Header file. Small cleanups.
12541
12542         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12543         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12544         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12545         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12546         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12547         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12548         (gst_rtp_mp4v_depay_change_state):
12549         Remove usused code. Remove Adapter from state Change. Added debug.
12550
12551         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12552         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12553         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12554         * gst/rtp/gstrtpmpadepay.h:
12555         Subclass base depayloader.
12556         Added debug.
12557         Support static payload type assignment as well.
12558
12559         * gst/rtp/gstrtpmpapay.c:
12560         Fix caps.
12561
12562 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
12563
12564         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12565
12566         * ext/jpeg/gstjpegdec.c:
12567         * ext/jpeg/gstjpegenc.c:
12568         * ext/jpeg/smokecodec.c:
12569           These libjpeg callbacks should return a 'boolean' (unsigned char
12570           apparently) and not a 'gboolean' (which maps to gint). Fixes
12571           warnings when compiling with MingW (#393427).
12572
12573         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12574           Use ioctlsocket on win32.
12575
12576         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12577           Some printf format fixes for win32.
12578
12579 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
12580
12581         * gst/cutter/gstcutter.c: (gst_cutter_chain):
12582           Use gst_guint64_to_gdouble for conversion.
12583         * win32/vs6/libgstmatroska.dsp:
12584           Add zlib to the link.
12585         * win32/vs6/libgstvideobox.dsp:
12586           Update liboil library name (project is linked to 
12587           liboil-0.3-0.lib now).
12588           
12589 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
12590
12591         * gst/matroska/Makefile.am:
12592           If zlib is available and used, we must link it explicitly for
12593           things to work on MingW (fixes #392855).
12594
12595 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
12596
12597         * ext/esd/esdsink.c: (gst_esdsink_delay):
12598           Don't return bogus values when esd_get_delay() fails for some
12599           reason (#392189).
12600
12601 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12602
12603         * sys/ximage/gstximagesrc.c: (composite_pixel):
12604           Fix presumably copy'n'pasto for 16bpp depth.
12605
12606 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12607
12608         * gst/matroska/matroska-mux.c:
12609         (gst_matroska_mux_audio_pad_setcaps):
12610           The "signed" field in audio caps is of boolean type, trying to use
12611           gst_structure_get_int() to extract it will fail. Fixing this makes
12612           matroskamux accept raw audio input (#387121) (use at your own risk
12613           though, due to the matroska spec being not entirely useful in this
12614           respect).
12615           Also fix up raw audio structures in template caps so that they
12616           represent what our setcaps function will actually accept, so that
12617           converters know what to convert to.
12618           Finally, don't fail if there isn't an "endianness" field in 8-bit
12619           PCM caps.
12620
12621 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
12622
12623         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12624         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12625         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12626         (teardown_cmmldec):
12627         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12628         (teardown_cmmlenc):
12629         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12630           reapply consistent pad (de)activation
12631
12632 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12633
12634         * configure.ac:
12635         Back to CVS
12636
12637         * gst-plugins-good.doap:
12638         Add 0.10.5 doap entry
12639
12640 === release 0.10.5 ===
12641
12642 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
12643
12644         * configure.ac:
12645           releasing 0.10.5, "The Path of Thorns"
12646
12647 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12648
12649         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12650         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12651         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12652         (teardown_cmmldec):
12653         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12654         (teardown_cmmlenc):
12655         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12656           revert my freeze breakage
12657
12658 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12659
12660         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12661         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12662         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12663         (teardown_cmmldec):
12664         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12665         (teardown_cmmlenc):
12666         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12667           consistent pad (de)activation
12668
12669 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12670
12671         * configure.ac:
12672         * ext/Makefile.am:
12673         Disable LADPSA, as it has moved to the -bad module for the duration.
12674
12675 2006-12-18  Wim Taymans  <wim@fluendo.com>
12676
12677         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12678         (gst_signal_processor_event):
12679         Reset flow_state back to _OK after a flush stop so that we exit our
12680         error state after the flush. Fixes #374213
12681
12682 2006-12-16  David Schleef  <ds@schleef.org>
12683
12684         * sys/osxvideo/osxvideosink.h:
12685         * sys/osxvideo/osxvideosink.m:
12686           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
12687
12688 2006-12-16  David Schleef  <ds@schleef.org>
12689
12690         Patch by: Vijay Santhanam <vijay santhanam gmail com>
12691
12692         * sys/osxvideo/Makefile.am:
12693         * sys/osxvideo/osxvideosink.h:
12694         * sys/osxvideo/osxvideosink.m:
12695           Preliminary patch for porting osxvideosink
12696
12697 2006-12-16  Wim Taymans  <wim@fluendo.com>
12698
12699         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12700
12701         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12702         (gst_videomixer_set_master_geometry),
12703         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12704         (gst_videomixer_reset), (gst_videomixer_init),
12705         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12706         (gst_videomixer_release_pad), (gst_videomixer_collected),
12707         (gst_videomixer_change_state):
12708         Introduce some locking around the videomixer state so that it does not
12709         crash when adding/removing pads. Fixes #383043.
12710
12711 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12712
12713         * configure.ac:
12714           Make sure libcaca can actually be used instead of just checking for
12715           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12716           cross-compiling (fixes #384587).
12717
12718 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12719
12720         * Makefile.am:
12721         * gst-plugins-good.doap:
12722         * gst-plugins-good.spec.in:
12723           adding doap file
12724
12725 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12726
12727         * configure.ac:
12728           libflac-1.1.3 changed API again, but we can't build against it yet,
12729           so make sure our check doesn't use libflac-1.1.3 and add a comment
12730           to this effect.
12731
12732 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12733
12734         * gst/effectv/gstquark.c: (gst_quarktv_transform),
12735         (gst_quarktv_planetable_clear):
12736           Add some NULL pointer checks (possibly related to #385623).
12737
12738 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12739
12740         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12741         (gst_tag_demux_chain):
12742         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12743           In streaming mode, if the first buffer we get doesn't have an
12744           offset, fix it up to be 0, otherwise trimming won't work later on
12745           and we'll be typefinding application/x-id3, which may result in
12746           decodebin plugging an endless number of id3demux elements as a
12747           consequence. Fixes #385031.
12748           
12749 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12750
12751         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12752           Ignore the buffer_time the sound device reports. Turns out it is 
12753           sometimes completely bogus and we're better off without it.
12754
12755 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12756
12757         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12758         (gst_matroska_demux_video_caps):
12759         * gst/matroska/matroska-ids.c:
12760         (gst_matroska_track_init_video_context):
12761         * gst/matroska/matroska-ids.h:
12762           Try harder to extract the framerate for video tracks correctly and
12763           save it directly instead of converting it back and forth a few
12764           times. Mostly makes a difference for very small framerates (<1).
12765           Fixes #380199.
12766
12767 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12768
12769         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12770         (gst_gconf_audio_src_dispose), (do_toggle_element):
12771         * ext/gconf/gstgconfaudiosrc.h:
12772           Remove gconf notify hook when the gconfaudiosrc element is
12773           destroyed, otherwise the callback may be called on an
12774           already-destroyed instance and bad things happen. Should fix
12775           #378184.
12776           Also ignore gconf key changes when the source is already running.
12777
12778 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
12779
12780         Patch by: Sebastian Dröge  <mail at slomosnail de>
12781
12782         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12783           We need to be able to read and parse any possible floating point string
12784           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12785           will parse the former only in certain locales though, so we really need
12786           to canonicalise the separator to '.' and then use g_ascii_strtod() to
12787           make sure we can parse either version at all times.
12788           Fixes #382982 for real.
12789
12790 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12791
12792         * sys/sunaudio/gstsunaudiomixerctrl.c:
12793         * sys/sunaudio/gstsunaudiosrc.c:
12794
12795         Use the sunaudio debug category.
12796
12797         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12798         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12799         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12800         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12801         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12802         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12803         (gst_sunaudiosink_reset):
12804         * sys/sunaudio/gstsunaudiosink.h:
12805
12806         Uses the sunaudio debug category for all debug output
12807         Implements the _delay() callback to synchronise video playback better
12808         Change the segtotal and segsize values back to the parent class 
12809           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
12810           respectively)
12811         Measure the samples written to the device vs. played.
12812         Keep track of segments in the device by writing empty eof frames, and
12813         sleep using a GCond when we get too far ahead and risk overrunning the
12814         sink's ringbuffer.
12815
12816         Fixes: #360673
12817
12818 2006-12-08  Wim Taymans  <wim@fluendo.com>
12819
12820         Patch by: Sebastian Dröge  <mail at slomosnail de >
12821
12822         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12823         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12824         * gst/audiofx/audiopanorama.h:
12825         Fix audiopanorame with float samples. Fixes #383726.
12826
12827 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12828
12829         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12830         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12831         (gst_sunaudiosrc_reset):
12832
12833         Implement reset functions to unblock the src/sink more quickly on 
12834         state change requests.
12835         Patch by: Brian Cameron <brian dot cameron at sun com>
12836
12837 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12838
12839         * sys/sunaudio/gstsunaudiomixer.c:
12840         (gst_sunaudiomixer_change_state):
12841         Construct the correct mixer device name when the AUDIODEV env var
12842         is set.
12843
12844         Patch by: Jerry Tan <jerry.tan at sun dot com>
12845         Fixes: #383596
12846
12847 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12848
12849         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12850         Apply patch to open the mixer control and set the MULTIPLE_OPEN
12851         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
12852         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
12853         Patch by: Jerry Tan <jerry.tan at sun dot com>
12854         Fixes: #349015
12855
12856 2006-12-07  Wim Taymans  <wim@fluendo.com>
12857
12858         * gst/smpte/gstmask.h:
12859         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12860         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12861         (gst_smpte_collected), (gst_smpte_set_property),
12862         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12863         * gst/smpte/gstsmpte.h:
12864         Port to 0.10 some more. 
12865         Added duration property to specify the duration of the transition.
12866         Make framerate a fraction.
12867         Deprecate fps property, we only use negotiated fps.
12868         Added docs.
12869         Fix collectpad usage.
12870         Reset state in READY.
12871         Send NEWSEGMENT event.
12872         Fix racy updates of object properties.
12873         Added debug category.
12874         Fixes #383323.
12875
12876 2006-12-06  Wim Taymans  <wim@fluendo.com>
12877
12878         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12879
12880         * gst/videomixer/videomixer.c:
12881         (gst_videomixer_set_master_geometry),
12882         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12883         Don't reset xpos and ypos in the setcaps function because causes
12884         unexpected behaviour.
12885         Fixes #382179.
12886
12887 2006-12-06  Wim Taymans  <wim@fluendo.com>
12888
12889         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12890         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12891         Keep track of the buffer timestamp in the collectdata member instead
12892         of modifying the buffer without making the metadata writable first.
12893         Fixes #382277.
12894
12895 2006-12-06  Wim Taymans  <wim@fluendo.com>
12896
12897         Patch by: Rob Taylor <robtaylor at floopily dot org>
12898
12899         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12900         If using multicast in udpsrc, bind to the multicast address rather than
12901         IN_ADDR_ANY.
12902         This allows the simultanous use of multiple udpsrcs listening on
12903         different multicat addresses. Without this all udpsrcs will receive all
12904         packets from all subscribed multicast addresses.
12905         Fixes #383001.
12906
12907 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12908
12909         * ext/taglib/gstid3v2mux.cc:
12910         Don't attempt to write a NULL frame into the ID3 tag set when the 
12911         createFrame method returned NULL.
12912         Fixes: #381857
12913         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12914
12915 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12916
12917         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12918         Use g_strtod() instead of sscanf to parse doubles, so that it will
12919         try parsing in the C locale if the current locale fails.
12920         Fixes: #382982
12921         Patch by: Sebastian Dröge  <mail at slomosnail de >
12922
12923 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
12924
12925         * win32/MANIFEST:
12926         Fix compilation on win32 under VS8
12927         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
12928         Partially fixes #381175
12929
12930 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12931
12932         * gst/avi/gstavimux.c:
12933           accept all mpegversions,fixes #380825
12934           spotted by: Jerome Alet  
12935
12936 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12937
12938         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12939         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
12940         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
12941         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
12942           cleanup the error message a bit more
12943
12944 2006-11-28  Wim Taymans  <wim@fluendo.com>
12945
12946         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
12947         Fix width and height properties.
12948
12949         * ext/libcaca/gstcacasink.h:
12950         Fix compilation on newer libcaca that require us to include a new
12951         header. Fixes #379918.
12952
12953 2006-11-28  Wim Taymans  <wim@fluendo.com>
12954
12955         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
12956         * gst/rtsp/gstrtspsrc.h:
12957         * gst/rtsp/rtspext.h:
12958         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
12959         (rtsp_ext_wms_get_context):
12960         Add method so that extensions can choose to disable the setup of
12961         a stream.
12962         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
12963
12964 2006-11-27  Wim Taymans  <wim@fluendo.com>
12965
12966         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12967
12968         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12969         Push header in a separate buffer instead of memcpy:ing all data.
12970         Change LF => CRLF in headers.
12971         Move trailing LF to header. Fixes #379792.
12972
12973 2006-11-27  Wim Taymans  <wim@fluendo.com>
12974
12975         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
12976         Small buffer overflow fix and improve debugging.
12977
12978 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12979
12980         * ext/esd/esdmon.h:
12981         * ext/esd/esdsink.h:
12982           remove obsolete _factory_init protos
12983
12984 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12985
12986         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
12987         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
12988         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
12989         (gst_avi_demux_read_subindexes_push),
12990         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
12991         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
12992         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
12993         (gst_avi_demux_massage_index),
12994         (gst_avi_demux_calculate_durations_from_index),
12995         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
12996         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
12997         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
12998           remove dead code, tweak debugs statements, add comments, use
12999           _uint64_scale instead _uint64_scale_int when using guint64 values,
13000           small optimizations, reflow some error handling
13001
13002 2006-11-22  Edward Hervey  <edward@fluendo.com>
13003
13004         * po/.cvsignore:
13005         We never put .pot files in cvs. Let's ignore them all.
13006
13007 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13008
13009         * po/POTFILES.in:
13010           ... but better exclude files that aren't disted.
13011
13012 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13013
13014         * po/POTFILES.in:
13015           Add v4l2 source files to list of files with translations, so the
13016           strings are actually extracted (however bad they still may be).
13017
13018 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13019
13020         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13021           Minor clean-ups: const-ify static array, remove trailing comma from
13022           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
13023
13024 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
13025
13026         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13027         Make sure that g_free always gets called on the same pointer that was 
13028         returned by g_malloc.  Fixes #376594.
13029         Do not leak memory if decompressed size is wrong.
13030         Remove unneeded check of return value of g_malloc.
13031         Patch by: René Stadler <mail@renestadler.de>
13032
13033 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
13034
13035         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
13036           Add missing curly brackets.
13037
13038 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
13039
13040         * sys/v4l2/v4l2src_calls.c:
13041         Fix capture_deinit.
13042
13043 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13044
13045         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13046         (gst_matroska_mux_request_new_pad):
13047           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
13048
13049         * tests/check/elements/matroskamux.c: (setup_src_pad),
13050         (setup_sink_pad), (GST_START_TEST):
13051         Activate pads before using them.
13052
13053 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13054
13055         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13056           Initialise variable to get rid of bogus compiler warning.
13057
13058 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
13059
13060         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
13061
13062         * gst/rtp/gstrtph263pay.c:
13063         * gst/rtp/gstrtph263pdepay.c:
13064         * gst/rtp/gstrtph263ppay.c:
13065           Specify H.263 variant and version in the caps (fixes #361637)
13066
13067 2006-11-15  Wim Taymans  <wim@fluendo.com>
13068
13069         * gst/rtsp/rtspconnection.c: (read_body):
13070         Don't set a data pointer to NULL and a size > 0 when we deal
13071         with empty packets.
13072
13073         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13074         (rtsp_message_init_response), (rtsp_message_init_data),
13075         (rtsp_message_unset), (rtsp_message_free),
13076         (rtsp_message_take_body):
13077         Check that we can't create invalid empty packets. 
13078
13079 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13080
13081         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13082
13083         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
13084         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
13085         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
13086         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
13087         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13088         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
13089         * gst/matroska/matroska-mux.h:
13090           Add basic tag writing support; implement releasing pads (#374658).
13091
13092 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13093
13094         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13095         (gst_matroska_demux_audio_caps):
13096           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
13097
13098 2006-11-14  David Schleef  <ds@schleef.org>
13099
13100         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
13101
13102 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
13103
13104         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13105
13106         * win32/vs8/gst-plugins-good.sln:
13107         * win32/vs8/libgst1394.vcproj:
13108         * win32/vs8/libgstaasink.vcproj:
13109         * win32/vs8/libgstalaw.vcproj:
13110         * win32/vs8/libgstalpha.vcproj:
13111         * win32/vs8/libgstalphacolor.vcproj:
13112         * win32/vs8/libgstannodex.vcproj:
13113         * win32/vs8/libgstapetag.vcproj:
13114         * win32/vs8/libgstaudiofx.vcproj:
13115         * win32/vs8/libgstauparse.vcproj:
13116         * win32/vs8/libgstautodetect.vcproj:
13117         * win32/vs8/libgstavi.vcproj:
13118         * win32/vs8/libgstcacasink.vcproj:
13119         * win32/vs8/libgstcdio.vcproj:
13120         * win32/vs8/libgstcutter.vcproj:
13121         * win32/vs8/libgstdv.vcproj:
13122         * win32/vs8/libgsteffectv.vcproj:
13123         * win32/vs8/libgstflac.vcproj:
13124         * win32/vs8/libgstflxdec.vcproj:
13125         * win32/vs8/libgstgoom.vcproj:
13126         * win32/vs8/libgsticydemux.vcproj:
13127         * win32/vs8/libgstid3demux.vcproj:
13128         * win32/vs8/libgstjpeg.vcproj:
13129         * win32/vs8/libgstladspa.vcproj:
13130         * win32/vs8/libgstlevel.vcproj:
13131         * win32/vs8/libgstmatroska.vcproj:
13132         * win32/vs8/libgstmikmod.vcproj:
13133         * win32/vs8/libgstmng.vcproj:
13134         * win32/vs8/libgstmonoscope.vcproj:
13135         * win32/vs8/libgstmulaw.vcproj:
13136         * win32/vs8/libgstmultipart.vcproj:
13137         * win32/vs8/libgstpng.vcproj:
13138         * win32/vs8/libgstrtp.vcproj:
13139         * win32/vs8/libgstrtsp.vcproj:
13140         * win32/vs8/libgstshout2.vcproj:
13141         * win32/vs8/libgstsmpte.vcproj:
13142         * win32/vs8/libgstspeex.vcproj:
13143         * win32/vs8/libgsttaglib.vcproj:
13144         * win32/vs8/libgstudp.vcproj:
13145         * win32/vs8/libgstvideobalance.vcproj:
13146         * win32/vs8/libgstvideobox.vcproj:
13147         * win32/vs8/libgstvideoflip.vcproj:
13148         * win32/vs8/libgstvideomixer.vcproj:
13149         * win32/vs8/libgstwavenc.vcproj:
13150         * win32/vs8/libgstwavparse.vcproj:
13151           Make end-of-line returns unixy, so that when the files are checked
13152           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13153           Hopefully fixes #366492.
13154
13155 2006-11-14  Wim Taymans  <wim@fluendo.com>
13156
13157         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13158         Disable init_frames delay timestamp adjustment, it does not
13159         seem to be needed at all. Fixes #369621.
13160
13161 2006-11-13  Wim Taymans  <wim@fluendo.com>
13162
13163         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13164
13165         * gst/videomixer/videomixer.c:
13166         (gst_videomixer_set_master_geometry),
13167         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13168         (gst_videomixer_collect_free), (gst_videomixer_reset),
13169         (gst_videomixer_init), (gst_videomixer_finalize),
13170         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13171         (gst_videomixer_collected), (gst_videomixer_change_state):
13172         Fix memleak by unref'ing collectpads instance (when finalizing)
13173         Implement releasing a request pad. Fixes #374479.
13174
13175 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
13176
13177         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13178
13179         * win32/vs8/gst-plugins-good.sln:
13180         * win32/vs8/libgst1394.vcproj:
13181         * win32/vs8/libgstaasink.vcproj:
13182         * win32/vs8/libgstalaw.vcproj:
13183         * win32/vs8/libgstalpha.vcproj:
13184         * win32/vs8/libgstalphacolor.vcproj:
13185         * win32/vs8/libgstannodex.vcproj:
13186         * win32/vs8/libgstapetag.vcproj:
13187         * win32/vs8/libgstaudiofx.vcproj:
13188         * win32/vs8/libgstauparse.vcproj:
13189         * win32/vs8/libgstautodetect.vcproj:
13190         * win32/vs8/libgstavi.vcproj:
13191         * win32/vs8/libgstcacasink.vcproj:
13192         * win32/vs8/libgstcdio.vcproj:
13193         * win32/vs8/libgstcutter.vcproj:
13194         * win32/vs8/libgstdv.vcproj:
13195         * win32/vs8/libgsteffectv.vcproj:
13196         * win32/vs8/libgstflac.vcproj:
13197         * win32/vs8/libgstflxdec.vcproj:
13198         * win32/vs8/libgstgoom.vcproj:
13199         * win32/vs8/libgsticydemux.vcproj:
13200         * win32/vs8/libgstid3demux.vcproj:
13201         * win32/vs8/libgstjpeg.vcproj:
13202         * win32/vs8/libgstladspa.vcproj:
13203         * win32/vs8/libgstlevel.vcproj:
13204         * win32/vs8/libgstmatroska.vcproj:
13205         * win32/vs8/libgstmikmod.vcproj:
13206         * win32/vs8/libgstmng.vcproj:
13207         * win32/vs8/libgstmonoscope.vcproj:
13208         * win32/vs8/libgstmulaw.vcproj:
13209         * win32/vs8/libgstmultipart.vcproj:
13210         * win32/vs8/libgstpng.vcproj:
13211         * win32/vs8/libgstrtp.vcproj:
13212         * win32/vs8/libgstrtsp.vcproj:
13213         * win32/vs8/libgstshout2.vcproj:
13214         * win32/vs8/libgstsmpte.vcproj:
13215         * win32/vs8/libgstspeex.vcproj:
13216         * win32/vs8/libgsttaglib.vcproj:
13217         * win32/vs8/libgstudp.vcproj:
13218         * win32/vs8/libgstvideobalance.vcproj:
13219         * win32/vs8/libgstvideobox.vcproj:
13220         * win32/vs8/libgstvideoflip.vcproj:
13221         * win32/vs8/libgstvideomixer.vcproj:
13222         * win32/vs8/libgstwavenc.vcproj:
13223         * win32/vs8/libgstwavparse.vcproj:
13224           Add VS8 project files (note that many of the plugins in ext are
13225           disabled by default). Fixes #366492.
13226
13227 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
13228
13229         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13230           we do not translate debug messages
13231
13232 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
13233
13234         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13235           fix categorisation, make short desc more explicit, remove unused code
13236           Fixes #372021
13237
13238 2006-11-08  Wim Taymans  <wim@fluendo.com>
13239
13240         * gst/rtp/gstrtpL16depay.c:
13241         * gst/rtp/gstrtpamrdepay.c:
13242         * gst/rtp/gstrtpamrpay.c:
13243         * gst/rtp/gstrtpgsmdepay.c:
13244         * gst/rtp/gstrtph263pay.c:
13245         * gst/rtp/gstrtph263pdepay.c:
13246         * gst/rtp/gstrtph263ppay.c:
13247         * gst/rtp/gstrtph264depay.c:
13248         * gst/rtp/gstrtpmp2tdepay.c:
13249         * gst/rtp/gstrtpmp4gdepay.c:
13250         * gst/rtp/gstrtpmp4gpay.c:
13251         * gst/rtp/gstrtpmp4vdepay.c:
13252         * gst/rtp/gstrtpmp4vpay.c:
13253         * gst/rtp/gstrtpmpadepay.c:
13254         * gst/rtp/gstrtpmpapay.c:
13255         * gst/rtp/gstrtppcmadepay.c:
13256         * gst/rtp/gstrtppcmapay.c:
13257         * gst/rtp/gstrtppcmudepay.c:
13258         * gst/rtp/gstrtppcmupay.c:
13259         * gst/rtp/gstrtpspeexdepay.c:
13260         * gst/rtp/gstrtpspeexpay.c:
13261         * gst/rtp/gstrtpsv3vdepay.c:
13262         Fix element descriptions.
13263
13264 2006-11-08  Wim Taymans  <wim@fluendo.com>
13265
13266         * gst/rtp/gstrtpvorbisdepay.c:
13267         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13268         Fix description.
13269         Small cleanup in the payloader.
13270
13271 2006-11-08  Wim Taymans  <wim@fluendo.com>
13272
13273         * gst/rtp/Makefile.am:
13274         * gst/rtp/gstrtp.c: (plugin_init):
13275         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13276         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13277         (gst_rtp_theora_depay_finalize),
13278         (gst_rtp_theora_depay_parse_configuration),
13279         (gst_rtp_theora_depay_setcaps),
13280         (gst_rtp_theora_depay_switch_codebook),
13281         (gst_rtp_theora_depay_process),
13282         (gst_rtp_theora_depay_set_property),
13283         (gst_rtp_theora_depay_get_property),
13284         (gst_rtp_theora_depay_change_state),
13285         (gst_rtp_theora_depay_plugin_init):
13286         * gst/rtp/gstrtptheoradepay.h:
13287         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13288         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13289         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13290         (gst_rtp_theora_pay_init_packet),
13291         (gst_rtp_theora_pay_flush_packet),
13292         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13293         (gst_rtp_theora_pay_handle_buffer),
13294         (gst_rtp_theora_pay_plugin_init):
13295         * gst/rtp/gstrtptheorapay.h:
13296         Add theora pay/depayloaders.
13297
13298 2006-11-06  Wim Taymans  <wim@fluendo.com>
13299
13300         * gst/rtp/Makefile.am:
13301         We depend on gsttag to generate the vorbis comments.
13302
13303         * gst/rtp/gstrtpvorbisdepay.c:
13304         (gst_rtp_vorbis_depay_parse_configuration),
13305         (gst_rtp_vorbis_depay_setcaps),
13306         (gst_rtp_vorbis_depay_switch_codebook),
13307         (gst_rtp_vorbis_depay_process):
13308         * gst/rtp/gstrtpvorbisdepay.h:
13309         Parse configuration string in the depayloader.
13310         Implement selecting and switching to a new codebook.
13311         Receiving vorbis over RTP now works.
13312
13313         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13314         (gst_rtp_vorbis_pay_init_packet),
13315         (gst_rtp_vorbis_pay_finish_headers),
13316         (gst_rtp_vorbis_pay_handle_buffer):
13317         * gst/rtp/gstrtpvorbispay.h:
13318         Set timestamps on outgoing buffers and RTP packets.
13319         Fix configuration string, prepend number of Packet headers.
13320         Fix encoding of ident string.
13321         Add delivery-method to caps.
13322         Streaming vorbis over RTP now works.
13323
13324 2006-11-06  Wim Taymans  <wim@fluendo.com>
13325
13326         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13327         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13328         (gst_rtp_vorbis_pay_handle_buffer):
13329         * gst/rtp/gstrtpvorbispay.h:
13330         Generate a valid configuration string in the caps based on the
13331         vorbis headers.
13332
13333 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13334
13335         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13336         * ext/cdio/gstcdio.h:
13337         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13338           Move CD-TEXT utility function into common file so it can also be
13339           used by a future cdioparanoiasrc.
13340
13341 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
13342         
13343         * sys/v4l2/Makefile.am:
13344         * sys/v4l2/gstv4l2object.c:
13345         * sys/v4l2/gstv4l2src.c:
13346         * sys/v4l2/gstv4l2xoverlay.c:
13347         * sys/v4l2/v4l2_calls.c:
13348         * sys/v4l2/v4l2src_calls.c:
13349         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13350         xoverlay code that is still not implemented.
13351
13352 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13353
13354         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13355           We require a -base more recent than 0.10.9, so it's safe to use
13356           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13357
13358         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13359         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13360           Use _newsegment_full() now that we depend on a recent enough core.
13361
13362         * gst/wavparse/gstwavparse.c:
13363           Remove cruft that we don't need any longer now that we depend on
13364           a recent enough -base.
13365
13366 2006-10-31  Wim Taymans  <wim@fluendo.com>
13367
13368         * gst/rtp/Makefile.am:
13369         * gst/rtp/gstrtp.c: (plugin_init):
13370         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13371         (gst_rtpilbcpay_setcaps):
13372         Fix and activate ILBC pay and depayloaders. Fixes #368162.
13373
13374 2006-10-31  Wim Taymans  <wim@fluendo.com>
13375
13376         * ext/speex/gstspeexdec.c: (speex_dec_convert),
13377         (speex_dec_sink_event), (speex_dec_chain_parse_header):
13378         Some small cleanups, use _scale.
13379
13380 2006-10-31  Wim Taymans  <wim@fluendo.com>
13381
13382         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13383         Use higher precision scale function.
13384
13385 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
13386
13387         Patch by: Michal Benes  <michal dot benes at itonis tv>
13388
13389         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13390         (gst_matroska_demux_read_track_encodings),
13391         (gst_matroska_decode_buffer):
13392           Fix several issues with encoded/compressed/encrypted/signed tracks;
13393           also, remove superfluous newline characters from some debug
13394           statements. (#366155)
13395
13396 2006-10-30  Wim Taymans  <wim@fluendo.com>
13397
13398         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13399         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13400         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13401         (gst_smokedec_change_state):
13402         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13403         (gst_smokeenc_init), (gst_smokeenc_finalize),
13404         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13405         (gst_smokeenc_resync), (gst_smokeenc_chain),
13406         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13407         (gst_smokeenc_change_state):
13408         Various cleanups, capsnego and leak fixes.
13409
13410 2006-10-30  Wim Taymans  <wim@fluendo.com>
13411
13412         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13413
13414         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13415         Fix videomixer so that it can handle any combination of framerates.
13416         Fixes #367221.
13417
13418 2006-10-28  Wim Taymans  <wim@fluendo.com>
13419
13420         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13421         (gst_avi_demux_parse_file_header),
13422         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13423         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13424         (gst_avi_demux_chain):
13425         Fix position query for audio. also fixes timestamps in streaming
13426         mode and bug #364958.
13427         Small cleanups.
13428
13429 2006-10-27  Wim Taymans  <wim@fluendo.com>
13430
13431         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13432         * ext/libpng/gstpngenc.h:
13433         Fix strides. Fixes #364856.
13434         Cleanup capsnego.
13435         Set caps on outgoing buffers.
13436
13437 2006-10-18  Wim Taymans  <wim@fluendo.com>
13438
13439         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13440
13441         * gst/rtp/gstrtpgsmpay.c:
13442         * gst/rtp/gstrtph263pay.c:
13443         * gst/rtp/gstrtpmpapay.c:
13444         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13445         (gst_rtp_pcma_pay_handle_buffer):
13446         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13447         Add static payload numbers in addition to the dynamic ones.
13448         Fixes #361639.
13449
13450 2006-10-18  Wim Taymans  <wim@fluendo.com>
13451
13452         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13453         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13454         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13455         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13456         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13457         * gst/rtsp/rtspdefs.h:
13458         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13459         * gst/rtsp/rtspurl.h:
13460         Reuse already existing enum for lower transport.
13461         Add rtspt and rtspu protocols.
13462         Send redirect to rtspt when udp times out.
13463
13464 2006-10-18  Wim Taymans  <wim@fluendo.com>
13465
13466         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13467         (gst_wavparse_stream_data):
13468         Fix seeking some more, mostly for speed changes.
13469
13470 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
13471
13472         Patch by: Fredrik Persson  <frepe at bredband net>
13473
13474         * sys/v4l2/gstv4l2tuner.c:
13475         * sys/v4l2/gstv4l2tuner.h:
13476           Fix _set_channel(): remove useless g_object_notify() for "channel"
13477           property that doesn't exist any longer and therefore now also
13478           useless redirect (#338818).
13479
13480 2006-10-17  Wim Taymans  <wim@fluendo.com>
13481
13482         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13483         Some drivers do not support unsetting the non-blocking flag once the
13484         device is opened. In those cases, close/open the device in
13485         non-blocking mode. Fixes #362673.
13486
13487 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13488
13489         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13490         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13491         (gst_v4l2src_get_fps):
13492           dear stefan, framespersecond is not frameperiod, reverting but adding
13493           comment
13494
13495 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13496
13497         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13498         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13499         (gst_v4l2src_get_fps):
13500           Numerator is numerator and denominator is denominator. Say that aloud
13501           5 times and retry after next beer.
13502
13503 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
13504
13505         Patch by: Josep Torra Valles  <josep at fluendo com>
13506
13507         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13508         * ext/esd/esdsink.c: (gst_esdsink_write):
13509         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13510         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13511         (gst_flac_dec_send_newsegment):
13512         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13513         (gst_flac_enc_tell_callback):
13514         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13515         (smokecodec_parse_header), (smokecodec_decode):
13516         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13517         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13518         * gst/goom/Makefile.am:
13519         * gst/goom/gstgoom.c:
13520         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13521         * gst/rtsp/gstrtspsrc.c:
13522         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13523         * gst/udp/gstudpsink.c:
13524         * gst/udp/gstudpsrc.c:
13525         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13526         * sys/sunaudio/gstsunaudiomixertrack.h:
13527           Fix a bunch of problems discovered by the Forte compiler, mostly type
13528           mixups and pointer arithmetics with void pointers. Fixes #362603.
13529
13530 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13531
13532         * ext/speex/gstspeex.c: (plugin_init):
13533         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13534         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13535         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13536         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13537         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13538         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13539         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13540         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13541         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13542         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13543         (gst_speex_enc_chain), (gst_speex_enc_get_property),
13544         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13545         * ext/speex/gstspeexenc.h:
13546           Miscellaneous clean-ups, among other things: speexenc => enc to
13547           enhance code readability; change speexenc => speex_enc; in chain
13548           function unref input buffer in case of error; take reference in
13549           event function; use boilerplate macro; use gst_pad_query_peer_*
13550           convenience functions.
13551
13552 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13553
13554         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13555         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13556         (gst_speexenc_set_header_on_caps):
13557           Fix some mem leaks.
13558
13559 2006-10-11  Wim Taymans  <wim@fluendo.com>
13560
13561         * gst/rtsp/URLS:
13562         Added some other URL.
13563
13564         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13565         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13566         (gst_rtspsrc_open), (gst_rtspsrc_play),
13567         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13568         * gst/rtsp/gstrtspsrc.h:
13569         Work on fallback to TCP connection when the UDP socket times out.
13570         Handler server requests, just reply with OK for now.
13571
13572         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13573         * gst/rtsp/rtspdefs.h:
13574         Added some more Real extension headers.
13575
13576         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13577         Fix parsing of urls with a ':' that is not part of the hostname:port
13578         part of the url.
13579
13580 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
13581
13582         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13583         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13584         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13585           Activate pad before adding it to the already-running element.
13586
13587         * tests/check/elements/icydemux.c: (icydemux_found_pad):
13588           Activate newly-created pad too.
13589
13590 2006-10-11  Wim Taymans  <wim@fluendo.com>
13591
13592         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13593
13594         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13595         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13596         (gst_udpsrc_start):
13597         Fix some leaks in caps and uris. Fixes #361252.
13598
13599 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
13600
13601         * gst/wavparse/Makefile.am:
13602           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13603
13604 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
13605
13606         * sys/v4l2/gstv4l2xoverlay.c:
13607         * sys/v4l2/gstv4l2xoverlay.h:
13608         Fix build as per the patch in #338818 comment 36.
13609
13610 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
13611
13612         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13613           Activate pads before adding them to the source.
13614
13615 2006-10-06  Wim Taymans  <wim@fluendo.com>
13616
13617         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13618         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13619         Activate pads before adding.
13620
13621 2006-10-06  Wim Taymans  <wim@fluendo.com>
13622
13623         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13624         (gst_multipart_find_pad_by_mime):
13625         Activate pads before adding.
13626
13627         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13628         BOILERPLATE sets parent_class for us.
13629
13630 2006-10-06  Wim Taymans  <wim@fluendo.com>
13631
13632         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13633         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13634         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13635         (gst_rtspsrc_alloc_udp_ports),
13636         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13637         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13638         (gst_rtspsrc_create_transports_string),
13639         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13640         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13641         * gst/rtsp/gstrtspsrc.h:
13642         Rework how the transport string is constructed, try to share channels
13643         and udp ports.
13644         Make most of the stuff less dependant on RTP as we are also going to use
13645         it for RDT.
13646         Add support for transport specific session managers.
13647
13648         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13649         Implement _flush().
13650
13651         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13652         * gst/rtsp/rtspdefs.h:
13653         Add generic error return code.
13654
13655         * gst/rtsp/rtspext.h:
13656         Add support for pluggable tranport strings.
13657
13658         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13659         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13660         (rtsp_ext_wms_get_context):
13661         Detect WMServer and activate the extension.
13662
13663         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13664         (rtsp_transport_get_manager), (rtsp_transport_parse):
13665         * gst/rtsp/rtsptransport.h:
13666         Added methods to get mime/manager for certain transports.
13667
13668 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
13669
13670         * ext/cairo/gsttimeoverlay.c:
13671         (gst_cairo_time_overlay_update_font_height):
13672         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13673         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13674         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13675         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13676         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13677         * ext/libpng/gstpngdec.c: (user_endrow_callback):
13678         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13679         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13680         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13681         (gst_avi_demux_stream_data):
13682         * gst/cutter/gstcutter.c: (gst_cutter_chain):
13683         * gst/debug/efence.c: (gst_efence_buffer_alloc),
13684         (gst_fenced_buffer_copy):
13685         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13686         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13687         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13688         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13689         (gst_rtspsrc_handle_message):
13690         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13691         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13692           Printf format fixes.
13693
13694 2006-10-04  Wim Taymans  <wim@fluendo.com>
13695
13696         * gst/rtsp/Makefile.am:
13697         Dist new .h file too.
13698
13699 2006-10-04  Wim Taymans  <wim@fluendo.com>
13700
13701         * gst/rtsp/Makefile.am:
13702         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13703         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13704         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13705         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13706         (gst_rtspsrc_parse_rtpmap),
13707         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13708         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13709         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13710         * gst/rtsp/gstrtspsrc.h:
13711         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13712         * gst/rtsp/rtspdefs.h:
13713         * gst/rtsp/rtspext.h:
13714         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13715         (rtsp_ext_wms_get_context):
13716         * gst/rtsp/rtspextwms.h:
13717         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13718         (rtsp_transport_parse):
13719         * gst/rtsp/rtsptransport.h:
13720         Factor out extension in separate module.
13721         Fix getcaps to filter against the padtemplate.
13722         Use Content-Base if the server gives one.
13723         Rework the transport parsing a bit for future extensions.
13724         Added some Real Header field definitions.
13725
13726 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13727
13728         * docs/plugins/Makefile.am:
13729         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13730         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13731           added v4l2 stubs
13732         * gst-plugins-good.spec.in:
13733           add v4l2
13734
13735 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
13736
13737         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13738           Extract disc/album/medium number and count and try harder
13739           to extract track number/count.
13740
13741 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13742
13743         * configure.ac:
13744         * sys/Makefile.am:
13745           add build stuff for v4l2, needs --enable-experimental until
13746           the last bits are resolved
13747
13748 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
13749
13750         * tests/check/Makefile.am:
13751           Disable autodetect test temporarily, so that the build bots
13752           update -bad and the ranks of unreliable video sinks in there.
13753
13754         * tests/check/elements/autodetect.c: (GST_START_TEST):
13755           Skip test if no usable videosink is found.
13756
13757 2006-09-29  Wim Taymans  <wim@fluendo.com>
13758
13759         * gst/rtsp/URLS:
13760         Add some more URLs.
13761
13762         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13763         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13764         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13765         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13766         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13767         (gst_rtspsrc_loop), (gst_rtspsrc_send),
13768         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13769         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13770         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13771         * gst/rtsp/gstrtspsrc.h:
13772         Add timeout property to control UDP timeouts.
13773         Fix error messages.
13774         Also start a loop function when operating in UDP mode so that we can
13775         do some more stuff async.
13776         Handle element messages from udpsrc to detect timeouts. If a timeout
13777         happens we currently generate an error.
13778         API: rtspsrc::timeout property.
13779
13780         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13781         (gst_udpsrc_create):
13782         Really implement the timeout in microseconds and not milliseconds.
13783
13784 2006-09-29  Wim Taymans  <wim@fluendo.com>
13785
13786         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13787         (gst_udpsrc_create), (gst_udpsrc_set_property),
13788         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13789         * gst/udp/gstudpsrc.h:
13790         Added property to post a message on timeout.
13791         Updated docs.
13792         When restarting the select, initialize the fdsets again.
13793         Init control sockets so we don't accidentally close a random socket.
13794         API: GstUDPSrc::timeout property
13795
13796 2006-09-29  Wim Taymans  <wim@fluendo.com>
13797
13798         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13799         Fix flag registration.
13800
13801         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13802         Reading 0 also means 'no more commands'
13803
13804 2006-09-29  Wim Taymans  <wim@fluendo.com>
13805
13806         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13807
13808         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13809         Fix possible infinite loop when shutting down, a read can also return
13810         0 to indicate no more messages are available. Fixes #358156.
13811
13812 2006-09-25  Wim Taymans  <wim@fluendo.com>
13813
13814         * gst/autodetect/gstautoaudiosink.c:
13815         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13816         (gst_auto_audio_sink_find_best):
13817         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13818         Small cleanups.
13819         don't try to set "sync" property when it is not available.
13820
13821 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13822
13823         Patch by: Peter Kjellerstedt  <pkj at axis com>
13824
13825         * gst/alpha/gstalpha.c:
13826         * gst/rtp/gstrtpamrdepay.c:
13827         * gst/rtsp/gstrtspsrc.c:
13828         * gst/udp/gstudpsrc.c:
13829         * gst/videomixer/videomixer.c:
13830           Include stdlib.h in some more places, makes things compile
13831           with uClibc and -Werror (#357592).
13832
13833 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13834
13835         * ext/jpeg/gstjpegdec.c:
13836           Set minimum height to 8 (from 16), our code should handle
13837           that fine. Some of the buttons on the apple trailer site
13838           are apparently only 15 pixels high (see #357470).
13839
13840 2006-09-23  Wim Taymans  <wim@fluendo.com>
13841
13842         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13843         (gst_rtspsrc_open):
13844         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13845         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13846         (rtsp_connection_receive):
13847         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13848         * gst/rtsp/rtspdefs.h:
13849         Improve error reporting.
13850
13851 2006-09-23  Wim Taymans  <wim@fluendo.com>
13852
13853         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13854         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13855         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13856         * gst/rtp/gstrtpdepay.c:
13857         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13858         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13859         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13860         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13861         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13862         (gst_rtp_mp2t_depay_plugin_init):
13863         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13864         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13865         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13866         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13867         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13868         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13869         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13870         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13871         Fix klass typos.
13872         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13873
13874 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13875
13876         * configure.ac:
13877           Need  -base CVS for gst_base_rtp_depayload_push_ts().
13878
13879 2006-09-22  Wim Taymans  <wim@fluendo.com>
13880
13881         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13882         Don't check for a tag that is never there and check if we read the
13883         correct tag. Fixes seeking again.
13884         We must post an error when all pads are unlinked.
13885
13886 2006-09-22  Wim Taymans  <wim@fluendo.com>
13887
13888         * gst/rtp/Makefile.am:
13889         * gst/rtp/gstrtp.c: (plugin_init):
13890         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13891         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13892         (gst_rtp_vorbis_pay_reset_packet),
13893         (gst_rtp_vorbis_pay_init_packet),
13894         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13895         (gst_rtp_vorbis_pay_handle_buffer):
13896         More fixage, set endoder-params correctly in the payloader.
13897
13898 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13899
13900         * gst/autodetect/gstautoaudiosink.c:
13901         (gst_auto_audio_sink_base_init):
13902         * gst/autodetect/gstautovideosink.c:
13903         (gst_auto_video_sink_base_init):
13904           Make static pad templates static to appease valgrind's leak
13905           detector.
13906
13907         * tests/check/Makefile.am:
13908         * tests/check/elements/.cvsignore:
13909         * tests/check/elements/autodetect.c: (GST_START_TEST),
13910         (autodetect_suite):
13911           Add simple test for the ghostpad lockup on shutdown fixed in core
13912           CVS (audio bit disabled because it would need dozens of alsa
13913           suppressions and I'm too lazy to add those now).
13914
13915 2006-09-22  Wim Taymans  <wim@fluendo.com>
13916
13917         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13918         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13919         Small cleanups.
13920
13921         * gst/rtp/Makefile.am:
13922         * gst/rtp/gstrtp.c: (plugin_init):
13923         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
13924         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
13925         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
13926         (gst_rtp_vorbis_depay_process),
13927         (gst_rtp_vorbis_depay_set_property),
13928         (gst_rtp_vorbis_depay_get_property),
13929         (gst_rtp_vorbis_depay_change_state),
13930         (gst_rtp_vorbis_depay_plugin_init):
13931         * gst/rtp/gstrtpvorbisdepay.h:
13932         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
13933         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
13934         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
13935         (gst_rtp_vorbis_pay_flush_packet),
13936         (gst_rtp_vorbis_pay_append_buffer),
13937         (gst_rtp_vorbis_pay_handle_buffer),
13938         (gst_rtp_vorbis_pay_plugin_init):
13939         * gst/rtp/gstrtpvorbispay.h:
13940         Add experimental vorbis pay and depayloaders.
13941
13942 2006-09-21  Wim Taymans  <wim@fluendo.com>
13943
13944         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
13945         Fix profile-level-id parsing and setup.
13946
13947 2006-09-21  Wim Taymans  <wim@fluendo.com>
13948
13949         * gst/udp/README:
13950         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
13951         Update README, simple cleanup.
13952
13953 2006-09-21  Wim Taymans  <wim@fluendo.com>
13954
13955         * gst/rtp/README:
13956         Update README with some examples.
13957
13958         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
13959         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
13960         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
13961         (gst_rtp_mp4g_pay_setcaps):
13962         * gst/rtp/gstrtpmp4gpay.h:
13963         Make optional RTP parameters of type STRING, as required by the
13964         application/x-rtp caps specification.
13965
13966 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
13967
13968         * gst/rtp/gstrtph263pdepay.c:
13969         * gst/rtp/gstrtph263ppay.c:
13970         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
13971         RTP header.
13972
13973 2006-09-20  Wim Taymans  <wim@fluendo.com>
13974
13975         * gst/rtp/Makefile.am:
13976         And makefile too.
13977
13978 2006-09-20  Wim Taymans  <wim@fluendo.com>
13979
13980         * gst/rtp/gstrtp.c: (plugin_init):
13981         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
13982         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
13983         (decode_base64), (gst_rtp_asf_depay_setcaps),
13984         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
13985         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
13986         (gst_rtp_asf_depay_plugin_init):
13987         * gst/rtp/gstrtpasfdepay.h:
13988         Added preliminary ASF depayloader.
13989
13990         * gst/rtp/gstrtph264depay.c: (decode_base64):
13991         Fix base64 decoding.
13992
13993 2006-09-20  Wim Taymans  <wim@fluendo.com>
13994
13995         * gst/rtsp/URLS:
13996         Added some test URLS.
13997
13998         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
13999         (gst_rtspsrc_loop), (gst_rtspsrc_open):
14000         * gst/rtsp/gstrtspsrc.h:
14001         When creating streams, give access to the complete SDP.
14002         Fix some leaks.
14003         Collect and merge global stream properties in stream caps.
14004         Preliminary support for WMServer.
14005
14006         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
14007         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
14008         (rtsp_connection_receive):
14009         * gst/rtsp/rtspconnection.h:
14010         Make connection interruptable.
14011         Refactor to make it reconnectable.
14012         Don't fail on short reads when reading data packets.
14013
14014         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
14015         (rtsp_url_get_port):
14016         * gst/rtsp/rtspurl.h:
14017         Add methods for getting/setting the port.
14018
14019         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
14020         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
14021         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
14022         (sdp_media_get_format), (sdp_parse_line),
14023         (sdp_message_parse_buffer):
14024         Fix headers. 
14025         Add methods for getting multiple attributes with the same name.
14026         Increase buffer size when parsing.
14027         Fix parsing of a=foo fields.
14028
14029         * gst/rtsp/test.c: (main):
14030         Update to new connection API.
14031
14032         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
14033         (rtsp_message_init_response), (rtsp_message_init_data),
14034         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
14035         * gst/rtsp/rtspmessage.h:
14036         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
14037         * gst/rtsp/rtsptransport.h:
14038         * gst/rtsp/sdp.h:
14039         * gst/rtsp/sdpmessage.h:
14040         * gst/rtsp/gstrtsp.c:
14041         * gst/rtsp/gstrtsp.h:
14042         * gst/rtsp/gstrtpdec.c:
14043         * gst/rtsp/gstrtpdec.h:
14044         * gst/rtsp/rtsp.h:
14045         * gst/rtsp/rtspdefs.c:
14046         * gst/rtsp/rtspdefs.h:
14047         Dual licensed under MIT and LGPL now.
14048
14049 2006-09-19  Wim Taymans  <wim@fluendo.com>
14050
14051         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
14052         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
14053         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14054         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
14055         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
14056         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
14057         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
14058         * gst/rtsp/gstrtspsrc.h:
14059         Reorganize stream parsing and creation.
14060         Detect container formats in interleaved mode.
14061         Keep more state about the streams.
14062         Assume a server also supports PLAY if it does not say.
14063         Add unicast and interleaved properties to TCP transport requests to make
14064         some servers happy (WMServer).
14065
14066         * gst/rtsp/sdpmessage.h:
14067         Add some defines for the standard Bandwidth types.
14068
14069 2006-09-19  Wim Taymans  <wim@fluendo.com>
14070
14071         * gst/rtsp/test.c: (main):
14072         Fix build.
14073
14074 2006-09-19  Wim Taymans  <wim@fluendo.com>
14075
14076         * gst/wavparse/gstwavparse.c:
14077         Add ms-gsm to the src template.
14078
14079 2006-09-18  Wim Taymans  <wim@fluendo.com>
14080
14081         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14082         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
14083         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14084         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
14085         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14086         * gst/rtsp/gstrtspsrc.h:
14087         Small cleanups, added documentation.
14088         Try to clean up the requests and responses.
14089         Refactor parsing the supported methods.
14090
14091         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
14092         (rtsp_connection_create), (rtsp_connection_send),
14093         (parse_response_status), (parse_request_line),
14094         (rtsp_connection_receive), (rtsp_connection_close),
14095         (rtsp_connection_free):
14096         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
14097         (rtsp_transport_init), (rtsp_transport_parse),
14098         (rtsp_transport_free):
14099         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
14100         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
14101         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
14102         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
14103         Use g_return_val some more.
14104
14105         * gst/rtsp/rtspdefs.h:
14106         Add more enum values to track initial states.
14107
14108         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
14109         (rtsp_message_init_request), (rtsp_message_new_response),
14110         (rtsp_message_init_response), (rtsp_message_init_data),
14111         (rtsp_message_unset), (rtsp_message_free),
14112         (rtsp_message_add_header), (rtsp_message_remove_header),
14113         (rtsp_message_get_header), (rtsp_message_set_body),
14114         (rtsp_message_take_body), (rtsp_message_get_body),
14115         (rtsp_message_steal_body), (rtsp_message_dump):
14116         * gst/rtsp/rtspmessage.h:
14117         Reorder arguments, object goes as the first one.
14118         Use g_return_val some more.
14119
14120 2006-09-18  Wim Taymans  <wim@fluendo.com>
14121
14122         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14123         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14124         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14125         * gst/rtsp/gstrtspsrc.h:
14126         Export sometimes source pad with correct caps on the template, create
14127         the ghostpad from the template.
14128         Remove RTCP template as we never expose RTCP.
14129         Protect against invalid body size.
14130         Avoid memcpy when creating the output buffer.
14131         Properly post an error and send EOS when the loop function is shut down.
14132
14133 2006-09-18  Wim Taymans  <wim@fluendo.com>
14134
14135         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14136
14137         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14138         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14139         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14140         * gst/rtsp/gstrtspsrc.h:
14141         Make sure we can never set an invalid location.
14142
14143         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14144         * gst/rtsp/rtspmessage.h:
14145         Added _steal_body method for future use.
14146
14147         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14148         Make freeing of NULL url return immediatly.
14149
14150 2006-09-18  Wim Taymans  <wim@fluendo.com>
14151
14152         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14153
14154         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14155         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14156         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14157         (gst_rtspsrc_change_state):
14158         * gst/rtsp/gstrtspsrc.h:
14159         Use boilerplate.
14160         Make rtspsrc subclass GstBin to make state changes easier.
14161         Add Range header field on the PLAY request.
14162
14163 2006-09-18  Wim Taymans  <wim@fluendo.com>
14164
14165         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14166
14167         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14168         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14169         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14170         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14171         * gst/rtsp/rtspconnection.c: (inet_aton):
14172         Small cleanups.
14173         when multicast is selected as the transport, create UDP sources and
14174         connect to the multicast group.
14175         Move parsing and setting of caps to a common place.
14176         Fixes #349894.
14177
14178 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
14179
14180         * ext/flac/gstflactag.c:
14181         * gst/alpha/gstalpha.c:
14182         * gst/debug/breakmydata.c:
14183         * gst/debug/negotiation.c:
14184         * gst/debug/testplugin.c:
14185         * gst/effectv/gstaging.c:
14186         * gst/effectv/gstdice.c:
14187         * gst/effectv/gstedge.c:
14188         * gst/effectv/gstquark.c:
14189         * gst/effectv/gstrev.c:
14190         * gst/effectv/gstshagadelic.c:
14191         * gst/effectv/gstvertigo.c:
14192         * gst/effectv/gstwarp.c:
14193         * gst/multipart/multipartdemux.c:
14194         * gst/multipart/multipartmux.c:
14195         * gst/videobox/gstvideobox.c:
14196         * gst/videofilter/gstgamma.c:
14197         * gst/videofilter/gstvideotemplate.c:
14198         * gst/videomixer/videomixer.c:
14199         * sys/sunaudio/gstsunaudiosrc.h:
14200         More G_OBJECT macro fixing.
14201
14202 2006-09-16  Wim Taymans  <wim@fluendo.com>
14203
14204         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14205
14206         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14207         Correctly set the dwLength in strh.
14208         With this patch, the file duration is now displayed correctly in window
14209         media player and the AVI plays completely. Fixes #356147
14210
14211 2006-09-15  Wim Taymans  <wim@fluendo.com>
14212
14213         Patch by: Darren Kenny <darren dot kenny at sun dot com>
14214
14215         * sys/sunaudio/gstsunaudiomixerctrl.c:
14216         (gst_sunaudiomixer_ctrl_build_list):
14217         Set the output track as the MASTER so that the gnome-settings-daemon
14218         keybindings for changing the volume using the keyboard works.
14219         Fixes #356142.
14220
14221 2006-09-15  Wim Taymans  <wim@fluendo.com>
14222
14223         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14224         Fix documentation, it is not possible to control the framerate of jpegdec
14225         using filtered caps yet. Fixes #355210.
14226         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14227         stop when there is an error.
14228
14229 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14230
14231         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14232         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14233           Don't interpret a first buffer with an offset of NONE as
14234           'from the middle of the stream', but only a first buffer
14235           that has a valid buffer offset that's non-zero (see #345449).
14236
14237 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14238
14239         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14240         (gst_icydemux_typefind_or_forward):
14241         * gst/icydemux/gsticydemux.h:
14242           When we merge/collect multiple incoming buffers for typefinding
14243           purposes, keep an initial 0 offset on the first outgoing buffer
14244           as well (otherwise id3demux won't work right). Fixes #345449.
14245           Also Make buffer metadata writable before setting buffer caps.
14246
14247         * tests/check/elements/icydemux.c: (typefind_succeed),
14248         (cleanup_icydemux), (push_data), (GST_START_TEST),
14249         (icydemux_suite):
14250           Small test case for the above.
14251
14252 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
14253
14254         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14255         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14256         (gst_avi_demux_stream_header_push),
14257         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14258         (gst_avi_demux_loop):
14259           More code reuse and better logging in _peek_chunk(). Reintroduce check
14260           for chunk sizes before reading them (avoid oom). Better handling for 
14261           invalid chunksizes when streaming.
14262
14263 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
14264
14265         * gst/level/gstlevel.c: (gst_level_set_property):
14266         * gst/level/gstlevel.h:
14267           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14268           René Stadler
14269
14270 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
14271
14272         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14273         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14274         (gst_avi_demux_stream_data):
14275           Revert one change to fix streaming avi (adapter size != data size).
14276
14277 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14278
14279         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
14280
14281         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14282         (gst_matroska_demux_reset),
14283         (gst_matroska_demux_read_track_encodings),
14284         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14285         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14286         (gst_matroska_demux_subtitle_caps):
14287         * gst/matroska/matroska-ids.h:
14288           Add support for VOBSUB subtitle tracks and zlib-compressed
14289           tracks. Make sure we start on a keyframe after a seek. (#343348)
14290
14291 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14292
14293         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14294         (gst_matroska_demux_push_flac_codec_priv_data),
14295         (gst_matroska_demux_push_xiph_codec_priv_data),
14296         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14297         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14298         * gst/matroska/matroska-ids.h:
14299           Add basic FLAC support (#311586), not perfect yet though, needs some
14300           tweaking in flacdec; also, seeking could be better.
14301           Do better bounds checking when deserialising vorbis stream headers
14302           to make sure we don't read beyond the end of the buffer on bad input.
14303
14304 2006-09-04  Wim Taymans  <wim@fluendo.com>
14305
14306         Patch by: Alessandro Decina <alessandro at nnva dot org>
14307
14308         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14309         Seeking back in a file containing a CMML stream errors out if the seek
14310         goes back up to the CMML headers. This is because after the seek the xml
14311         processing instruction <?xml ...?> is submitted to the xml parser again, 
14312         which results in an error. The attached patch fixes the problem. 
14313         Fixes #353908.
14314
14315         * ext/annodex/gstcmmlenc.h:
14316         Fix authors name.
14317
14318
14319 2006-08-28  Andy Wingo  <wingo@pobox.com>
14320
14321         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14322         New helper function to lessen the ifdefs.
14323         (GST_INFO_OBJECT): 
14324         (gst_dv1394src_iso_receive): Use it.
14325         (gst_dv1394src_create): Also use the control sockets in iec61883
14326         mode.
14327         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14328         handle for AVC operations; fixes #348233.
14329
14330 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14331
14332         * configure.ac:
14333         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14334         * docs/plugins/inspect/plugin-audiofx.xml:
14335         * docs/plugins/inspect/plugin-audiofxgood.xml:
14336         * gst/audiofx/Makefile.am:
14337         * gst/audiofx/audiofx.c:
14338         * gst/audiofxgood/.cvsignore:
14339         * gst/audiofxgood/Makefile.am:
14340         * gst/audiofxgood/audiofx.c:
14341         * gst/audiofxgood/audiopanorama.c:
14342         * gst/audiofxgood/audiopanorama.h:
14343           Rename again (audiofxgood -> audiofx).
14344
14345 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14346
14347         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14348         (gst_avi_demux_stream_scan):
14349           Initialze variables.
14350
14351 2006-08-25  Wim Taymans  <wim@fluendo.com>
14352
14353         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14354         (gst_avi_demux_init), (gst_avi_demux_finalize),
14355         (gst_avi_demux_reset), (gst_avi_demux_index_last),
14356         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14357         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14358         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14359         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14360         (gst_avi_demux_massage_index),
14361         (gst_avi_demux_calculate_durations_from_index),
14362         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14363         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14364         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14365         (gst_avi_demux_change_state):
14366         * gst/avi/gstavidemux.h:
14367         More attempts to turn this into readable code.
14368         Don't leak adapters.
14369         Calculate duration according to index more efficiently.
14370         Don't try to act like we drive the pipeline in chain mode.
14371
14372 2006-08-25  Wim Taymans  <wim@fluendo.com>
14373
14374         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14375         Fix build.
14376
14377 2006-08-25  Wim Taymans  <wim@fluendo.com>
14378
14379         Patch by: Alessandro Decina <alessandro at nnva dot org>
14380
14381         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14382         Do some extra sanity checks.
14383         Fixes #350340.
14384
14385         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14386         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14387         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14388         Check if clip->start_time is valid before adding the clip to the
14389         track list.
14390         Reset enc->preamble going from PAUSED to READY.
14391         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14392         only used for EOS.
14393         Only post an error message if we were the one that created the fatal
14394         GstFlowReturn value.
14395
14396         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14397         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14398         Parse the seconds field of the npt-sec time format using %llu rather than
14399         %d and check that the value scaled by GST_SECOND doesn't overflow.
14400         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14401         Lookup a clip's track with clip->track rather than clip->id which
14402         makes no sense.
14403         Identify a clip by its track and start time and not its xml id.
14404         do some more input checking and make sure we don't do undefined shifts.
14405
14406         * tests/check/elements/cmmldec.c: (setup_cmmldec),
14407         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14408         (cmml_tag_message_pop), (check_headers), (push_clip_full),
14409         (push_clip), (push_empty_clip), (check_output_clip),
14410         (GST_START_TEST), (cmmldec_suite):
14411         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14412         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14413         (check_headers), (push_clip), (check_clip_times), (check_clip),
14414         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14415         Added some more checks.
14416
14417 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14418
14419         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14420         (gst_audio_panorama_set_property),
14421         (gst_audio_panorama_get_property),
14422         (gst_audio_panorama_transform_m2s_int),
14423         (gst_audio_panorama_transform_s2s_int),
14424         (gst_audio_panorama_transform_m2s_float),
14425         (gst_audio_panorama_transform_s2s_float):
14426         * gst/audiofxgood/audiopanorama.h:
14427         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14428           Make also the pan-property float (saves scaling and yields better
14429           resolution)
14430
14431 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14432
14433         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14434         (gst_audio_panorama_transform_m2s_float),
14435         (gst_audio_panorama_transform_s2s_float):
14436           ChangeLog surgery to add cymax's real name
14437
14438
14439 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14440
14441         Patch by: René Stadler <mail@renestadler.de>
14442
14443         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14444         (gst_audio_panorama_transform_m2s_int),
14445         (gst_audio_panorama_transform_s2s_int),
14446         (gst_audio_panorama_transform_m2s_float),
14447         (gst_audio_panorama_transform_s2s_float),
14448         (gst_audio_panorama_transform):
14449         * gst/audiofxgood/audiopanorama.h:
14450           Added float support
14451
14452 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14453
14454         * gst/audiofxgood/audiopanorama.c:
14455         (gst_audio_panorama_transform_m2s):
14456           Fix docs & debug category. Add Fixme for volume pan levels.
14457
14458 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14459
14460         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14461         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14462         (gst_avi_demux_stream_header_pull),
14463         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14464         (gst_avi_demux_chain):
14465           unbreak AVI index handling, some more debug, remove an obsolete
14466           adapter_flush that caused streaming to wander off in the wild
14467
14468 2006-08-24  Wim Taymans  <wim@fluendo.com>
14469
14470         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14471         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14472         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14473         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14474         (gst_avi_demux_calculate_durations_from_index),
14475         (gst_avi_demux_stream_header_push),
14476         (gst_avi_demux_stream_header_pull):
14477         * gst/avi/gstavidemux.h:
14478         Some more cleanups. 
14479         Fix totalFrames parsing in ODML.
14480         Disable use of index for length calculation in case of ODML as this is
14481         broken now.
14482
14483 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
14484
14485         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14486           Use libgsttag helper function here too.
14487
14488 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
14489
14490         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14491         (gst_avi_demux_init), (gst_avi_demux_dispose),
14492         (gst_avi_demux_reset), (gst_avi_demux_index_next),
14493         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14494         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14495         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14496         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14497         (gst_avi_demux_parse_subindex),
14498         (gst_avi_demux_read_subindexes_push),
14499         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14500         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14501         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14502         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14503         (gst_avi_demux_stream_header_pull),
14504         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14505         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14506         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14507         (gst_avi_demux_change_state):
14508         * gst/avi/gstavidemux.h:
14509           Initial streaming support for avidemux (fixes #336465)
14510
14511 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14512
14513         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14514           There is no taglibmux element ...
14515
14516         * gst/rtsp/gstrtspsrc.c:
14517           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14518           was complaining about unknown entity here.
14519
14520 2006-08-22  Wim Taymans  <wim@fluendo.com>
14521
14522         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14523         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14524         (gst_avi_demux_process_next_entry):
14525         * gst/avi/gstavidemux.h:
14526         Mark DISCONT.
14527         Remove old unused fields and reorder the struct a bit.
14528
14529 2006-08-22  Wim Taymans  <wim@fluendo.com>
14530
14531         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14532         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14533         (gst_rtspsrc_pause):
14534         * gst/rtsp/gstrtspsrc.h:
14535         * sys/oss/gstosssink.c: (gst_oss_sink_open),
14536         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14537         Small documentation updates.
14538
14539 2006-08-22  Wim Taymans  <wim@fluendo.com>
14540
14541         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14542         (gst_avi_demux_index_entry_for_time),
14543         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14544         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14545         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14546         (gst_avi_demux_next_data_buffer),
14547         (gst_avi_demux_calculate_durations_from_index),
14548         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14549         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14550         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14551         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14552         * gst/avi/gstavidemux.h:
14553         Precalc most of the duration query for each stream.
14554         Make seeking more correct.
14555         Use GstSegment to track position and duration.
14556         Code cleanups and leak fixes.
14557         Calculate correct total duration based on index length.
14558
14559 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
14560
14561         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14562         (parse_insert_string_field):
14563           If strings in text fields are marked ISO8859-1, but contain
14564           valid UTF-8 already, then handle them as UTF-8 and ignore
14565           the encoding. (#351794)
14566
14567 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14568
14569         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14570         (gst_flac_dec_write), (gst_flac_dec_loop),
14571         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14572         (gst_flac_dec_src_query):
14573         * ext/flac/gstflacdec.h:
14574           Make flac-in-ogg work (#352100).
14575
14576 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14577
14578         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14579           Don't unref buffers of which we've already given away
14580           ownership to the adapter.
14581
14582 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14583
14584         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14585           Make metadata extraction actually work.
14586
14587         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14588         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14589         (gst_speexenc_chain):
14590           Fix metadata writing: replace old code which wrote completely
14591           broken tags with libgsttag-based code. Plus miscellaneous
14592           code cleanups (use static pad templates etc.) and a bunch
14593           of leak fixes.
14594
14595 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14596
14597         * gst/audiopanorama/.cvsignore:
14598         * gst/audiopanorama/Makefile.am:
14599         * gst/audiopanorama/audiofx.c:
14600         * gst/audiopanorama/audiopanorama.c:
14601         * gst/audiopanorama/audiopanorama.h:
14602           die! die! die! you should never have been there
14603
14604 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
14605
14606         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14607         Fix invalid memory access in audiopanorama test suite.
14608
14609 2006-08-21  Edward Hervey  <edward@fluendo.com>
14610
14611         * tests/check/elements/.cvsignore:
14612         ignore built file
14613
14614 2006-08-21  Wim Taymans  <wim@fluendo.com>
14615
14616         * gst/rtp/Makefile.am:
14617         Fix the build again.
14618
14619 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14620
14621         * gst/audiofxgood/.cvsignore:
14622         * gst/audiofxgood/Makefile.am:
14623         * gst/audiofxgood/audiofx.c: (plugin_init):
14624         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14625         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14626         (gst_audio_panorama_set_property),
14627         (gst_audio_panorama_get_property),
14628         (gst_audio_panorama_get_unit_size),
14629         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14630         (gst_audio_panorama_transform_m2s),
14631         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14632         * gst/audiofxgood/audiopanorama.h:
14633           resubmit with the desired name *again*
14634
14635 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14636
14637         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14638         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14639           use g_assert in _get_unit_size
14640
14641 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14642
14643         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14644         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14645         * docs/plugins/inspect/plugin-audiofxgood.xml:
14646           cleanup -unused.txt to make it useful, add previously missing docs
14647
14648         * ext/Makefile.am:
14649           Quietly (accidentally) enable LADSPA for building by default, 
14650           despite the fact that it doesn't meet the plugin checklist.
14651             -- Added by Jan Schmidt 18 Dec 2006
14652
14653         * ext/esd/esdmon.c:
14654         * ext/esd/esdsink.c:
14655         * ext/esd/gstesd.c: (plugin_init):
14656           reflow to get rid of two external symbols
14657
14658         * gst/audiofxgood/audiofx.c: (plugin_init):
14659           re-add
14660
14661 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14662
14663         * configure.ac:
14664         * gst/audiofxgood/.cvsignore:
14665         * gst/audiofxgood/Makefile.am:
14666         * gst/audiofxgood/audiofx.c
14667         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14668         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14669         (gst_audio_panorama_set_property),
14670         (gst_audio_panorama_get_property),
14671         (gst_audio_panorama_get_unit_size),
14672         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14673         (gst_audio_panorama_transform_m2s),
14674         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14675         * gst/audiofxgood/audiopanorama.h:
14676         * tests/check/Makefile.am:
14677         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14678         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14679         (panorama_suite), (main):
14680         Add audiofxgood plugin with audiopanorama element
14681
14682 2006-08-18  Wim Taymans  <wim@fluendo.com>
14683
14684         * docs/plugins/Makefile.am:
14685         More Oss docs fixage. 
14686
14687 2006-08-18  Wim Taymans  <wim@fluendo.com>
14688
14689         * gst/rtp/Makefile.am:
14690         * gst/rtp/gstrtp.c: (plugin_init):
14691         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14692         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14693         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14694         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14695         (gst_rtp_sv3v_depay_get_property),
14696         (gst_rtp_sv3v_depay_change_state),
14697         (gst_rtp_sv3v_depay_plugin_init):
14698         * gst/rtp/gstrtpsv3vdepay.h:
14699         Added experimental SVQ3 depayloader.
14700
14701 2006-08-18  Edward Hervey  <edward@fluendo.com>
14702
14703         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14704         (gst_dvdemux_loop), (gst_dvdemux_change_state):
14705         * ext/dv/gstdvdemux.h:
14706         When handling seek requests, don't send the newsegment event from the
14707         calling thread. Instead save it so it can be sent from the streaming
14708         thread.
14709
14710 2006-08-17  Wim Taymans  <wim@fluendo.com>
14711
14712         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14713
14714         * gst/multipart/multipartdemux.c: (multipart_parse_header):
14715         Accept leading whitespace before the boundary
14716         This patch makes the demuxer allow some whitespace before the actual
14717         boundary. This makes the demuxer work with the ``old'' gstreamer
14718         multipartmuxer again (which placed an extra \n before the start
14719         of the stream) Fixes #349068.
14720
14721 2006-08-17  Wim Taymans  <wim@fluendo.com>
14722
14723         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14724         Error out on non-implemented stuff.
14725
14726 2006-08-16  Wim Taymans  <wim@fluendo.com>
14727
14728         Patch by: Andy Wingo <wingo at pobox dot com>
14729
14730         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14731         (gst_signal_processor_start), (gst_signal_processor_stop),
14732         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14733         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14734         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14735         (gst_signal_processor_change_state):
14736         Make ladspa elements reusable. Fixes #350006.
14737
14738 2006-08-16  Wim Taymans  <wim@fluendo.com>
14739
14740         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14741         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14742         names as possible. Fixes #349901.
14743
14744 2006-08-16  Wim Taymans  <wim@fluendo.com>
14745
14746         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14747         (gst_signal_processor_do_pushes):
14748         A push() gives away our refcount so we should not use the buffer on the
14749         pen anymore.
14750
14751 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14752
14753         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14754         (gst_oss_mixer_element_finalize):
14755           Don't leak device string.
14756
14757 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14758
14759         * configure.ac:
14760           Require CVS of GStreamer core and -base (for
14761           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14762
14763         * ext/taglib/gstid3v2mux.cc:
14764           Write extended comment tags properly (#348762).
14765
14766         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14767         (parse_comment_frame):
14768           Extract COMM frames into extended comments, which makes it
14769           easier to properly retain the description bit of the tag
14770           and maintain this information when re-tagging (#348762).
14771
14772 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14773
14774         * tests/check/Makefile.am:
14775           Don't try to run annodex unit tests if the annodex
14776           plugin has not been built (Fixes #351116).
14777
14778 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14779
14780         * gst/autodetect/gstautoaudiosink.c:
14781         (gst_auto_audio_sink_find_best):
14782           When we can't find a usable audiosink, don't error out,
14783           but use a fake sink instead and post a warning message
14784           on the bus (#341278).
14785
14786 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14787
14788         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14789         * sys/oss/gstosssink.c:
14790         * sys/oss/gstosssrc.c:
14791           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14792           ossmixer's new device property.
14793
14794         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14795         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14796           Add docs for OSS elements.
14797
14798         * docs/plugins/inspect/plugin-aasink.xml:
14799         * docs/plugins/inspect/plugin-alaw.xml:
14800         * docs/plugins/inspect/plugin-alpha.xml:
14801         * docs/plugins/inspect/plugin-alphacolor.xml:
14802         * docs/plugins/inspect/plugin-annodex.xml:
14803         * docs/plugins/inspect/plugin-apetag.xml:
14804         * docs/plugins/inspect/plugin-auparse.xml:
14805         * docs/plugins/inspect/plugin-autodetect.xml:
14806         * docs/plugins/inspect/plugin-avi.xml:
14807         * docs/plugins/inspect/plugin-cacasink.xml:
14808         * docs/plugins/inspect/plugin-cairo.xml:
14809         * docs/plugins/inspect/plugin-cdio.xml:
14810         * docs/plugins/inspect/plugin-cutter.xml:
14811         * docs/plugins/inspect/plugin-debug.xml:
14812         * docs/plugins/inspect/plugin-dv.xml:
14813         * docs/plugins/inspect/plugin-efence.xml:
14814         * docs/plugins/inspect/plugin-effectv.xml:
14815         * docs/plugins/inspect/plugin-esdsink.xml:
14816         * docs/plugins/inspect/plugin-flac.xml:
14817         * docs/plugins/inspect/plugin-flxdec.xml:
14818         * docs/plugins/inspect/plugin-gconfelements.xml:
14819         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14820         * docs/plugins/inspect/plugin-goom.xml:
14821         * docs/plugins/inspect/plugin-halelements.xml:
14822         * docs/plugins/inspect/plugin-icydemux.xml:
14823         * docs/plugins/inspect/plugin-id3demux.xml:
14824         * docs/plugins/inspect/plugin-jpeg.xml:
14825         * docs/plugins/inspect/plugin-level.xml:
14826         * docs/plugins/inspect/plugin-matroska.xml:
14827         * docs/plugins/inspect/plugin-mulaw.xml:
14828         * docs/plugins/inspect/plugin-multipart.xml:
14829         * docs/plugins/inspect/plugin-navigationtest.xml:
14830         * docs/plugins/inspect/plugin-ossaudio.xml:
14831         * docs/plugins/inspect/plugin-png.xml:
14832         * docs/plugins/inspect/plugin-rtp.xml:
14833         * docs/plugins/inspect/plugin-rtsp.xml:
14834         * docs/plugins/inspect/plugin-shout2send.xml:
14835         * docs/plugins/inspect/plugin-smpte.xml:
14836         * docs/plugins/inspect/plugin-speex.xml:
14837         * docs/plugins/inspect/plugin-taglib.xml:
14838         * docs/plugins/inspect/plugin-udp.xml:
14839         * docs/plugins/inspect/plugin-videobalance.xml:
14840         * docs/plugins/inspect/plugin-videobox.xml:
14841         * docs/plugins/inspect/plugin-videoflip.xml:
14842         * docs/plugins/inspect/plugin-videomixer.xml:
14843         * docs/plugins/inspect/plugin-wavenc.xml:
14844         * docs/plugins/inspect/plugin-wavparse.xml:
14845         * docs/plugins/inspect/plugin-ximagesrc.xml:
14846           Update to CVS version.
14847           
14848 2006-08-16  Wim Taymans  <wim@fluendo.com>
14849
14850         * gst/rtp/gstrtpamrdepay.c:
14851         * gst/rtp/gstrtpmp4gdepay.c:
14852         Caps extra properties must be defined as strings for
14853         depayloaders because they are generated from an SDP.
14854
14855         * gst/rtp/Makefile.am:
14856         * gst/rtp/gstrtp.c: (plugin_init):
14857         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14858         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14859         (gst_rtp_h264_depay_finalize), (decode_base64),
14860         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14861         (gst_rtp_h264_depay_set_property),
14862         (gst_rtp_h264_depay_get_property),
14863         (gst_rtp_h264_depay_change_state),
14864         (gst_rtp_h264_depay_plugin_init):
14865         * gst/rtp/gstrtph264depay.h:
14866         Added basic, not completely functional RFC 3984 H264 depayloader.
14867
14868 2006-08-16  Wim Taymans  <wim@fluendo.com>
14869
14870         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14871         Add pads after setting them up.
14872
14873         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14874         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14875         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14876         (gst_rtspsrc_stream_setup_rtp),
14877         (gst_rtspsrc_stream_configure_transport),
14878         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14879         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14880         (gst_rtspsrc_pause):
14881         * gst/rtsp/gstrtspsrc.h:
14882         Fix interleaved mode.
14883          - Protect streaming with lock.
14884          - Combine flows
14885          - set caps on outgoing buffers.
14886          - strip trailing \0 from data packets.
14887          - Configure RTP/RTCP in stream.
14888         Use DEBUG_OBJECT more.
14889
14890 2006-08-16  Wim Taymans  <wim@fluendo.com>
14891
14892         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14893         Turn a g_print into a DEBUG line.
14894
14895 2006-08-13  Wim Taymans  <wim@fluendo.com>
14896
14897         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14898         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14899         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14900         (gst_oss_mixer_element_get_property),
14901         (gst_oss_mixer_element_change_state):
14902         * sys/oss/gstossmixerelement.h:
14903         Small cleanups. Better error reporting.
14904         Add device property for the mixer instead of the hardcoded
14905         /dev/mixer. Fixes #350785.
14906         API: GstOssMixerElement::device property
14907
14908 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
14909
14910         Patch by: Jens Granseuer <jensgr at gmx net>
14911
14912         * gconf/Makefile.am:
14913           Make --disable-schemas work right (they still need
14914           to be copied to the installation directory, just not
14915           applied). Fixes #351347 (also #344100).
14916           
14917 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14918
14919         * configure.ac: back to HEAD
14920
14921 === release 0.10.4 ===
14922
14923 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
14924
14925         * configure.ac:
14926           releasing 0.10.4, "Dear Leader"
14927
14928 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14929
14930         Patch by: Edward Hervey <edward@fluendo.com>
14931
14932         * configure.ac:
14933         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
14934         (gst_wavparse_stream_data):
14935         Send the newsegment event in the streaming thread.
14936         Fixes #347529
14937
14938 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
14939
14940         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
14941         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
14942         (gst_smokeenc_resync), (gst_smokeenc_chain):
14943           Refuse sink caps in the encoder if width or height is not a
14944           multiple of 16, the encoder does not support that yet (#349939);
14945           along the same lines, check the return value of the encoder
14946           setup function; also remove some debug log clutter.
14947
14948 2006-08-04  Andy Wingo  <wingo@pobox.com>
14949
14950         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
14951         whether a processor can work in place or not, and for keeping
14952         track of its state. Change the FlowReturn instance variable from
14953         "state" to "flow_state", all callers changed.
14954
14955         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
14956         (gst_signal_processor_start, gst_signal_processor_stop)
14957         (gst_signal_processor_cleanup): New functions to manage the
14958         processor's state.
14959         (gst_signal_processor_setcaps): start() as well as setup() here.
14960         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
14961         (gst_signal_processor_change_state): Stop and cleanup the
14962         processor as we go to NULL.
14963
14964         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
14965         INPLACE_BROKEN is not set.
14966
14967         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
14968         Do the alloc_buffer in bytes, not frames.
14969         
14970 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14971
14972         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
14973         Fix rgb masks when recording in < 24bpp.
14974
14975 2006-08-04  Andy Wingo  <wingo@pobox.com>
14976
14977         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
14978         (gst_signal_processor_prepare)
14979         (gst_signal_processor_update_inputs)
14980         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
14981         (gst_signal_processor_flush)
14982         (gst_signal_processor_sink_activate_push)
14983         (gst_signal_processor_src_activate_pull)
14984         (gst_signal_processor_change_state): Remove the last of the code
14985         that assumes that we process whole buffers at a time. Fix some
14986         debugging. Seems to work now in some cases.
14987         (gst_signal_processor_src_activate_pull): BPB
14988
14989 2006-08-01  Andy Wingo  <wingo@pobox.com>
14990
14991         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
14992         Fix nframes-choosing.
14993         (gst_signal_processor_init): Init pending_in and pending_out.
14994
14995         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
14996         more default sample rate, although we never check that the sample
14997         rate actually gets set. Something for the future.
14998         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
14999         (gst_signal_processor_event): Refcount fixen.
15000         (gst_signal_processor_process): Pull the number of frames to
15001         process from the sizes of the buffers in the input pens.
15002         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
15003         (gst_signal_processor_do_pulls): Add an nframes argument, and use
15004         it instead of buffer_frames.
15005         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
15006         to do_pulls.
15007         (gst_signal_processor_chain)
15008         (gst_signal_processor_sink_activate_push)
15009         (gst_signal_processor_src_activate_pull):  Refcount fixen.
15010
15011         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
15012
15013 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
15014
15015         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
15016         (gst_signal_processor_process):
15017           don't query buffer-frames from caps, add lots of debug-log,
15018           try fix for assert (#349189)
15019
15020 2006-07-31  Wim Taymans  <wim@fluendo.com>
15021
15022         * gst/udp/gstudpsrc.c:
15023         Fix docs.
15024
15025 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
15026
15027         * ext/ladspa/gstsignalprocessor.c:
15028         (gst_signal_processor_add_pad_from_template),
15029         (gst_signal_processor_init), (gst_signal_processor_setcaps),
15030         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
15031         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
15032         (gst_signal_processor_sink_activate_push),
15033         (gst_signal_processor_src_activate_pull),
15034         (gst_signal_processor_change_state):
15035          Add debugs logs here and there, add more error handling, add some
15036          FIXME comments, filed #349189
15037
15038 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15039
15040         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15041         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
15042         Set caps on buffer correctly.  Fixes bug #349155.
15043
15044 2006-07-28  Wim Taymans  <wim@fluendo.com>
15045
15046         Patch by: Sjoerd Simons <sjoerd at luon dot net>
15047
15048         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15049         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15050         (gst_multipart_demux_finalize), (get_line_end),
15051         (multipart_parse_header), (multipart_find_boundary),
15052         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15053         (gst_multipart_set_property), (gst_multipart_get_property):
15054         Uses GstAdapter instead of own buffering.
15055         Actually parses the mime-type correctly (In tests the mime-type was
15056         always "" with the old version).
15057         Uses the Content-length header if available to speed up things.
15058         Reliably autoscans the boundary name by default.
15059         Fixes #349068.
15060
15061         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
15062         Don't start the stream with a \n.
15063
15064 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
15065
15066         Patch by: Brian Cameron <brian dot cameron at sun com>
15067
15068         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
15069           Open source with O_NONBLOCK (#349015).
15070
15071 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
15072
15073         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15074         (gst_avi_demux_massage_index):
15075         * gst/avi/gstavidemux.h:
15076           Whitespace fixes and more debug
15077
15078 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15079
15080         * gst/autodetect/gstautoaudiosink.c:
15081         (gst_auto_audio_sink_create_element_with_pretty_name),
15082         (gst_auto_audio_sink_find_best),
15083         (gst_auto_audio_sink_change_state):
15084           Get rid of old and unused magic sound-server properties stuff.
15085           Add suffix to child sink's name that makes it easy to see from
15086           the name alone which type it actually is (alsa, oss, esd, etc.).
15087
15088 2006-07-27  Wim Taymans  <wim@fluendo.com>
15089
15090         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15091         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
15092         (gst_udpsrc_start):
15093         * gst/udp/gstudpsrc.h:
15094         Rename "buffer" to "buffer-size" to make clear it is a size we set and
15095         not some sort of feature we enable.
15096
15097 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15098
15099         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
15100           Use CLOSE_SOCKET() here instead of close() to maintain
15101           win32 workiness.
15102
15103 2006-07-27  Wim Taymans  <wim@fluendo.com>
15104
15105         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
15106
15107         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15108         (gst_udpsrc_create), (gst_udpsrc_set_property),
15109         (gst_udpsrc_get_property), (gst_udpsrc_start):
15110         * gst/udp/gstudpsrc.h:
15111         Added "buffer-size" property to control the kernel receive buffer size.
15112         Update documentation.
15113         Small cleanups. Fixes #348752.
15114         API: buffer-size property
15115
15116 2006-07-26  Wim Taymans  <wim@fluendo.com>
15117
15118         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15119
15120         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15121         (gst_rtp_pcma_pay_handle_buffer):
15122         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15123         (gst_rtp_pcmu_pay_handle_buffer):
15124         Fix timestamp calculation on outgoing RTP packets.
15125         Fixes #348675.
15126
15127 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15128
15129         * ext/taglib/gstid3v2mux.cc:
15130           Fix writing of comment frames (should be COMM not TCOM),
15131           is still sub-optimal though, since we don't retain or
15132           extract the comment descriptions properly (#334375,
15133           also see #334375).
15134
15135 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15136
15137         * gst/wavparse/gstwavparse.c:
15138           #define 'fact' RIFF chunk if we are not compiling against
15139           -base CVS (we don't want to depend on -base CVS for this
15140           one define only, and also not for release order reasons).
15141
15142 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15143
15144         * ext/taglib/gstid3v2mux.cc:
15145           Handle multiple tags of the same type properly. Re-inject
15146           unparsed ID3v2 frames that we get as binary blobs from
15147           id3demux into the tag again so we don't lose information
15148           when retagging (#334375).
15149
15150 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15151
15152         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15153           Document newly-added properties properly, so that there is a
15154           'Since: 0.10.4' in the plugin docs. Convert some property
15155           names into canonical GObject style (GObject will do that
15156           internally anyway).
15157
15158 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15159
15160         * gst/id3demux/id3tags.c:
15161         (id3demux_add_id3v2_frame_blob_to_taglist):
15162           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15163           well, and add the version to the blob's buffer caps, since that
15164           information will be needed for deserialisation later on (#348644).
15165
15166 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
15167
15168         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15169         (gst_avi_demux_parse_stream):
15170          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15171          indentation and spacing.
15172
15173 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15174
15175         * docs/plugins/Makefile.am:
15176         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15177         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15178         * docs/plugins/gst-plugins-good-plugins.args:
15179         * docs/plugins/inspect/plugin-1394.xml:
15180         * docs/plugins/inspect/plugin-aasink.xml:
15181         * docs/plugins/inspect/plugin-alaw.xml:
15182         * docs/plugins/inspect/plugin-alpha.xml:
15183         * docs/plugins/inspect/plugin-alphacolor.xml:
15184         * docs/plugins/inspect/plugin-annodex.xml:
15185         * docs/plugins/inspect/plugin-apetag.xml:
15186         * docs/plugins/inspect/plugin-auparse.xml:
15187         * docs/plugins/inspect/plugin-autodetect.xml:
15188         * docs/plugins/inspect/plugin-avi.xml:
15189         * docs/plugins/inspect/plugin-cacasink.xml:
15190         * docs/plugins/inspect/plugin-cairo.xml:
15191         * docs/plugins/inspect/plugin-cdio.xml:
15192         * docs/plugins/inspect/plugin-cutter.xml:
15193         * docs/plugins/inspect/plugin-debug.xml:
15194         * docs/plugins/inspect/plugin-dv.xml:
15195         * docs/plugins/inspect/plugin-efence.xml:
15196         * docs/plugins/inspect/plugin-effectv.xml:
15197         * docs/plugins/inspect/plugin-esdsink.xml:
15198         * docs/plugins/inspect/plugin-flac.xml:
15199         * docs/plugins/inspect/plugin-flxdec.xml:
15200         * docs/plugins/inspect/plugin-gconfelements.xml:
15201         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15202         * docs/plugins/inspect/plugin-goom.xml:
15203         * docs/plugins/inspect/plugin-halelements.xml:
15204         * docs/plugins/inspect/plugin-icydemux.xml:
15205         * docs/plugins/inspect/plugin-id3demux.xml:
15206         * docs/plugins/inspect/plugin-jpeg.xml:
15207         * docs/plugins/inspect/plugin-level.xml:
15208         * docs/plugins/inspect/plugin-matroska.xml:
15209         * docs/plugins/inspect/plugin-mulaw.xml:
15210         * docs/plugins/inspect/plugin-multipart.xml:
15211         * docs/plugins/inspect/plugin-navigationtest.xml:
15212         * docs/plugins/inspect/plugin-ossaudio.xml:
15213         * docs/plugins/inspect/plugin-png.xml:
15214         * docs/plugins/inspect/plugin-rtp.xml:
15215         * docs/plugins/inspect/plugin-rtsp.xml:
15216         * docs/plugins/inspect/plugin-shout2send.xml:
15217         * docs/plugins/inspect/plugin-smpte.xml:
15218         * docs/plugins/inspect/plugin-speex.xml:
15219         * docs/plugins/inspect/plugin-udp.xml:
15220         * docs/plugins/inspect/plugin-videobalance.xml:
15221         * docs/plugins/inspect/plugin-videobox.xml:
15222         * docs/plugins/inspect/plugin-videoflip.xml:
15223         * docs/plugins/inspect/plugin-videomixer.xml:
15224         * docs/plugins/inspect/plugin-wavenc.xml:
15225         * docs/plugins/inspect/plugin-wavparse.xml:
15226         * docs/plugins/inspect/plugin-ximagesrc.xml:
15227           Update files to CVS/Prerelease version, add esdsink docs.
15228
15229         * ext/esd/esdsink.c:
15230           Add gtk-doc blurb.
15231
15232         * gst/rtp/gstrtpmp4vpay.c:
15233           Fix typo in element description.
15234
15235 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15236
15237         * ext/esd/esdsink.c: (gst_esdsink_open),
15238         (gst_esdsink_factory_init):
15239           Prevent libesd from auto-spawning a sound daemon if it
15240           is not already running. Now that we don't do evil stuff
15241           like that any longer we can give esdsink a rank so that
15242           autoaudiosink will try it as well if all other audio
15243           sinks fail (#343051).
15244
15245 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15246
15247         * ext/esd/Makefile.am:
15248           Oops, need to remove README from EXTRA_DIST as well.
15249
15250 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15251
15252         * ext/esd/README:
15253           Remove, it contains nothing useful anyway.
15254
15255         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15256         (gst_esdsink_delay):
15257           Some small clean-ups; use GST_BOILERPLATE etc.
15258
15259 2006-07-24  Wim Taymans  <wim@fluendo.com>
15260
15261         * gst/law/alaw-decode.c: (alawdec_getcaps):
15262         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15263         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15264         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15265         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15266
15267 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
15268
15269         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15270         (gst_wavparse_other), (gst_wavparse_perform_seek),
15271         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15272         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15273         (gst_wavparse_pad_query):
15274         * gst/wavparse/gstwavparse.h:
15275           Use information from 'fact' chunk for length calculation of compressed
15276           samples. Calculate bps if bogus value is found in wav header (embeded
15277           mp2/mp3).
15278           
15279
15280 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15281
15282         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
15283
15284         * configure.ac:
15285         * gst/udp/Makefile.am:
15286         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15287         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15288         * gst/udp/gstdynudpsink.h:
15289         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15290         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15291         * gst/udp/gstmultiudpsink.h:
15292         * gst/udp/gstudp.c: (plugin_init):
15293         * gst/udp/gstudpsink.h:
15294         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15295         (gst_udpsrc_start), (gst_udpsrc_stop):
15296         * gst/udp/gstudpsrc.h:
15297         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15298         (gst_udp_net_utils_win32_wsa_startup):
15299         * gst/udp/gstudpnetutils.h:
15300           Port udp plugin to win32 (#345288).
15301
15302 2006-07-24  Wim Taymans  <wim@fluendo.com>
15303
15304         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15305         Remove unwanted DEBUG line.
15306
15307 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15308
15309         * gst/id3demux/gstid3demux.c: (plugin_init):
15310         * gst/id3demux/id3tags.c:
15311         (id3demux_add_id3v2_frame_blob_to_taglist):
15312         * gst/id3demux/id3tags.h:
15313           On second thought, it might be wiser and more efficient
15314           not to do tag registration from a streaming thread.
15315
15316 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15317
15318         * gst/id3demux/id3tags.c:
15319         (id3demux_add_id3v2_frame_blob_to_taglist),
15320         (id3demux_id3v2_frames_to_tag_list):
15321           Put ID3v2 frames we can't parse as binary blobs into private
15322           tags, so that they are not lost when retagging, at least once
15323           id3v2mux has been taught to re-inject those frames again.
15324           See bug #334375.
15325
15326 2006-07-21  Wim Taymans  <wim@fluendo.com>
15327
15328         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15329         (gst_avi_demux_process_next_entry):
15330         Fix some leaks.
15331
15332         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15333         Don't use \n in debug lines.
15334
15335 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
15336
15337         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15338         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15339           Add annodex and icydemux, cleanup the sections a bit
15340
15341 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
15342
15343         Patch by: Alex Lancaster <alexl at users sourceforge net>
15344
15345         * ext/taglib/gstid3v2mux.cc:
15346           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15347           ID3v2 TSSE frames (#347898).
15348
15349 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
15350
15351         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15352           Respect mpegversion for "video/mpeg" and give message in case of
15353           unhandled versions.
15354
15355 2006-07-17  Wim Taymans  <wim@fluendo.com>
15356
15357         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15358         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15359         (gst_pngdec_chain), (gst_pngdec_sink_event),
15360         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15361         (gst_pngdec_sink_activate_push):
15362         * ext/libpng/gstpngdec.h:
15363         Use statically allocated segment instead of leaking.
15364         Various cleanups.
15365         Fix flush and seek handling.
15366
15367 2006-07-16  Wim Taymans  <wim@fluendo.com>
15368
15369         * gst/rtp/Makefile.am:
15370         * gst/rtp/gstrtp.c: (plugin_init):
15371         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15372         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15373         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15374         (gst_rtp_mp4g_depay_set_property),
15375         (gst_rtp_mp4g_depay_get_property),
15376         (gst_rtp_mp4g_depay_change_state),
15377         (gst_rtp_mp4g_depay_plugin_init):
15378         * gst/rtp/gstrtpmp4gdepay.h:
15379         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15380         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15381         (gst_rtp_mp4g_pay_flush):
15382         Added simple generic mpeg4 depayloader.
15383         Fix generic mpeg4 payloader.
15384
15385 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
15386
15387         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15388           Don't try doing state changes on a NULL pointer.
15389
15390 2006-07-14  Wim Taymans  <wim@fluendo.com>
15391
15392         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15393
15394         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15395         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15396         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15397         * gst/rtp/gstrtpamrdepay.h:
15398         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15399         Fixes #321191
15400
15401 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15402
15403         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15404         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15405         Fix segfault when moving mouse pointer to the bottom right corner.
15406
15407 2006-07-12  Wim Taymans  <wim@fluendo.com>
15408
15409         * gst/rtp/Makefile.am:
15410         * gst/rtp/gstrtp.c: (plugin_init):
15411         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15412         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15413         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15414         (gst_rtp_mp2t_depay_set_property),
15415         (gst_rtp_mp2t_depay_get_property),
15416         (gst_rtp_mp2t_depay_change_state),
15417         (gst_rtp_mp2t_depay_plugin_init):
15418         * gst/rtp/gstrtpmp2tdepay.h:
15419         Added mpeg2 TS depayloader. Closing #347234.
15420
15421 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
15422
15423         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15424           Remove g_assert that shouldn't be there and was triggered
15425           after trying to open a device that doesn't exist or can't
15426           be opened for some other reason (#347972).
15427
15428 2006-07-10  Edward Hervey  <edward@fluendo.com>
15429
15430         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15431         (gst_avi_demux_stream_header), (push_tag_lists):
15432         * gst/avi/gstavidemux.h:
15433         Don't push tag events found by gst_riff_parse_info() before outputting
15434         GST_EVENT_NEWSEGMENT.
15435
15436 2006-07-10  Wim Taymans  <wim@fluendo.com>
15437
15438         * gst/rtsp/Makefile.am:
15439         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15440         (rtsp_connection_close):
15441         * gst/rtsp/rtspdefs.h:
15442         replaced closesocket and close in code with one CLOSE_SOCKET. 
15443         Some more cleanups. Fixes #345301.
15444
15445 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
15446
15447         * gst/autodetect/gstautoaudiosink.c:
15448           Fix example pipeline in docs.
15449
15450 2006-07-10  Wim Taymans  <wim@fluendo.com>
15451
15452         Patch by: Rob Taylor <robtaylor at floopily dot org>
15453
15454         * gst/udp/gstmultiudpsink.c: (join_multicast),
15455         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15456         If a destination is added before the stream is set to PAUSED, the
15457         multicast group is not joined as the socket is not created yet. 
15458         Also TTL and LOOP should also be set. Fixes #346921.
15459
15460 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15461
15462         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15463         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15464         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15465         (gst_ximage_src_init):
15466         * sys/ximage/gstximagesrc.h:
15467         Fix use-damage property to actually work :)
15468         Add startx, starty, endx, endy properties so screencasts other than full
15469         screen ones can work.
15470
15471 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15472
15473         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15474         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15475         (gst_ximage_src_class_init), (gst_ximage_src_init):
15476         * sys/ximage/gstximagesrc.h:
15477         Add use_damage property to offer ability to choose whether to use
15478         XDamage or not.
15479
15480 2006-07-07  Wim Taymans  <wim@fluendo.com>
15481
15482         * gst/goom/filters.c: (zoomFilterSetResolution):
15483         Avoid goom coredumping by clearing memory. 
15484         Fixes 345679.
15485
15486 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
15487
15488         * win32/vs6/libgstid3demux.dsp:
15489         Add a link to libgsttag-0.10.lib.
15490
15491 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15492
15493         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15494         (gst_tag_demux_read_range):
15495         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15496         (gst_id3demux_read_range):
15497           Don't return FLOW_UNEXPECTED when a buffer is before
15498           the start of the stream (which might happen with
15499           large ID3v2 tags if the tag reading was done pullrange
15500           based and we then switched to push mode later on).
15501           Fixes regression introduced by commit from June 29th.
15502
15503 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15504
15505         * ext/taglib/gstid3v2mux.cc:
15506           Make UTF-8 the default encoding when writing string
15507           tags (before, our UTF-8 strings would automatically
15508           be converted to ISO-8859-1 by taglib and written as
15509           ISO-8859-1 fields if that was possible).
15510
15511         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15512         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15513         (test_taglib_id3mux_with_tags):
15514           Add test case that makes sure our UTF-8 strings have
15515           actually been written into the tag as UTF-8.
15516
15517 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15518
15519         * configure.ac:
15520           Let's try that again.
15521
15522 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15523
15524         * configure.ac:
15525           Disable monoscope plugin for now until it fulfills
15526           all the requirements.
15527
15528 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15529
15530         * configure.ac:
15531         * gst/monoscope/Makefile.am:
15532         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15533         (gst_monoscope_class_init), (gst_monoscope_init),
15534         (gst_monoscope_finalize), (gst_monoscope_reset),
15535         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15536         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15537         (gst_monoscope_sink_event), (gst_monoscope_src_event),
15538         (gst_monoscope_change_state), (plugin_init):
15539         * gst/monoscope/gstmonoscope.h:
15540           Port monoscope visualisation to 0.10.
15541
15542 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15543
15544         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15545         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15546           Return FLOW_UNEXPECTED when at the end of the file, not
15547           FLOW_ERROR. Fixes 'internal stream error' errors that
15548           would sometimes occur in totem when scrubbing to the
15549           end of an ID3v1 tagged mp3 file.
15550
15551 2006-07-03  Edward Hervey  <edward@fluendo.com>
15552
15553         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15554         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15555         (gst_pngdec_sink_event), (gst_pngdec_change_state):
15556         * ext/libpng/gstpngdec.h:
15557         Implement buffer clipping/dropping using GstSegment.
15558         This provides accurate seeking.
15559
15560 2006-07-03  Edward Hervey  <edward@fluendo.com>
15561
15562         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15563         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15564         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15565         (gst_avi_demux_process_next_entry), (push_tag_lists),
15566         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15567         * gst/avi/gstavidemux.h:
15568         Proper aggregation of each stream's GstFlowReturn in order to figure out
15569         whether the task should stop or not.
15570         Don't send inline events before pushing out a NEW_SEGMENT, more
15571         specifically for GST_TAG_EVENT.
15572         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15573         sub-indexes.
15574
15575 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
15576
15577         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15578
15579         * sys/sunaudio/gstsunaudiomixerctrl.c:
15580         (gst_sunaudiomixer_ctrl_build_list):
15581           Move "Monitor" slider to input tab so it works more like
15582           sdtaudiocontrol, which is what people on Solaris are used
15583           to using for their mixer program (#346259).
15584
15585 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15586
15587         * tests/check/elements/level.c: (GST_START_TEST):
15588           fix a leak, clean up at the end
15589
15590 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15591
15592         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15593         (gst_matroska_demux_send_event),
15594         (gst_matroska_demux_loop_stream_parse_id):
15595         * gst/matroska/matroska-ids.h:
15596           Send tag event after newsegment event.
15597
15598 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15599
15600         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15601         (gst_id3demux_read_range):
15602           Make sure we don't return GST_FLOW_OK with a NULL buffer in
15603           certain cases where a read beyond the end of the file is
15604           requested. Fixes #345930.
15605
15606         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15607         (gst_tag_demux_read_range):
15608           Fix same issue here as well.
15609
15610 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15611
15612         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15613         
15614         Fix hypothetical crash.
15615
15616 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
15617
15618         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15619
15620         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15621           Do not modify the ports value. If the user has turned off the
15622           built-in speakers, then we should not reset it in the prepare
15623           function, since this causes the built-in speakers to turn
15624           back on anytime the user changes a track in totem, rhythmbox,
15625           etc. (#346066).
15626
15627 2006-06-23  Wim Taymans  <wim@fluendo.com>
15628
15629         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15630         Fix double caps unref when negotiation fails.
15631
15632 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15633
15634         * ext/annodex/gstcmmldec.c:
15635         * ext/annodex/gstcmmlenc.c:
15636         * ext/annodex/gstcmmlparser.c:
15637         * ext/dv/gstdvdec.c:
15638         * ext/dv/gstdvdemux.c:
15639         * ext/gdk_pixbuf/pixbufscale.c:
15640         * ext/jpeg/gstjpegenc.c:
15641         * ext/jpeg/gstsmokedec.c:
15642         * ext/jpeg/gstsmokeenc.c:
15643         * ext/libpng/gstpngdec.c:
15644         * ext/libpng/gstpngenc.c:
15645         * ext/speex/gstspeexenc.c:
15646         * gst/alpha/gstalphacolor.c:
15647         * gst/cutter/gstcutter.c:
15648         * gst/debug/gstnavigationtest.c:
15649         * gst/icydemux/gsticydemux.c:
15650         * gst/level/gstlevel.c:
15651         * gst/multipart/multipart.c:
15652         * gst/rtp/gstrtpamrpay.c:
15653         * gst/rtp/gstrtpdepay.c:
15654         * gst/rtp/gstrtpilbcpay.c:
15655         * gst/rtp/gstrtpmp4gpay.c:
15656         * gst/rtp/gstrtpmp4vpay.c:
15657         * gst/rtsp/gstrtpdec.c:
15658         * gst/rtsp/gstrtspsrc.c:
15659         * gst/udp/gstdynudpsink.c:
15660         * gst/udp/gstmultiudpsink.c:
15661         * gst/udp/gstudpsrc.c:
15662         * gst/videobox/gstvideobox.c:
15663         * gst/videofilter/gstvideoflip.c:
15664           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15665           plus two minor macro fixes.
15666
15667 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15668
15669         * gst/matroska/matroska-demux.c:
15670         (gst_matroska_demux_check_subtitle_buffer),
15671         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15672         (gst_matroska_demux_subtitle_caps):
15673         * gst/matroska/matroska-ids.c:
15674         (gst_matroska_track_init_subtitle_context):
15675         * gst/matroska/matroska-ids.h:
15676           Try to fix up broken matroska files containing subtitle
15677           streams with non-UTF8 character encodings (courtesy of
15678           mkvmerge) using either the encoding specified in the
15679           GST_SUBTITLE_ENCODING environment variable or the
15680           current locale's character set if it is non-UTF8.
15681           Fixes #337076.
15682
15683 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15684
15685         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15686           Set image type from APIC frame as "image-type" field
15687           of GST_TAG_IMAGE buffer caps (#344605).
15688
15689 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
15690
15691         * ext/flac/Makefile.am:
15692         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15693         (gst_flac_dec_reset_decoders),
15694         (gst_flac_dec_setup_seekable_decoder),
15695         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15696         (gst_flac_dec_metadata_callback),
15697         (gst_flac_dec_metadata_callback_seekable),
15698         (gst_flac_dec_metadata_callback_stream),
15699         (gst_flac_dec_error_callback),
15700         (gst_flac_dec_error_callback_seekable),
15701         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15702         (gst_flac_dec_read_stream), (gst_flac_dec_write),
15703         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15704         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15705         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15706         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15707         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15708         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15709         (gst_flac_dec_sink_activate_push),
15710         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15711         * ext/flac/gstflacdec.h:
15712           Support chain-based operation, should make flac-over-DAAP
15713           work (#340492).
15714
15715 2006-06-20  Wim Taymans  <wim@fluendo.com>
15716
15717         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15718         Doc updates, merge some unused symbols.
15719
15720 2006-06-20  Wim Taymans  <wim@fluendo.com>
15721
15722         * docs/plugins/Makefile.am:
15723         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15724         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15725         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15726         * gst/rtsp/gstrtspsrc.c:
15727         * gst/rtsp/gstrtspsrc.h:
15728         Added documentation for the rtsp plugin. Fixes #345393.
15729
15730 2006-06-20  Wim Taymans  <wim@fluendo.com>
15731
15732         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15733         (rtsp_connection_close), (rtsp_connection_free):
15734         Use better G_OS_* macros. Fixes #345301 some more.
15735
15736 2006-06-20  Wim Taymans  <wim@fluendo.com>
15737
15738         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15739
15740         * sys/sunaudio/Makefile.am:
15741         * sys/sunaudio/gstsunaudio.c: (plugin_init):
15742         * sys/sunaudio/gstsunaudiomixerctrl.c:
15743         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15744         (gst_sunaudiomixer_ctrl_list_tracks),
15745         (gst_sunaudiomixer_ctrl_get_volume),
15746         (gst_sunaudiomixer_ctrl_set_volume),
15747         (gst_sunaudiomixer_ctrl_set_mute),
15748         (gst_sunaudiomixer_ctrl_set_record):
15749         * sys/sunaudio/gstsunaudiomixerctrl.h:
15750         * sys/sunaudio/gstsunaudiomixertrack.c:
15751         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15752         * sys/sunaudio/gstsunaudiomixertrack.h:
15753         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15754         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15755         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15756         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15757         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15758         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15759         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15760         (gst_sunaudiosrc_reset):
15761         * sys/sunaudio/gstsunaudiosrc.h:
15762         Add a SunAudio source plugin.
15763         Support stereo and right/left channel gain in the mixer plugin.
15764         Support the RECORD flag so that you can switch between line-input and
15765         microphone in gnome-volume-control.
15766         Code cleanups like using an enumerator for track number instead of an 
15767         integer. Fixes #344923.
15768
15769 2006-06-20  Wim Taymans  <wim@fluendo.com>
15770
15771         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15772
15773         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15774         (rtsp_connection_close):
15775         Make RTSP plugin compile on windows. Fixes #345301.
15776         Some changes to original patch to catch errors better.
15777         use ifdef WIN32 instead of ifndef.
15778
15779 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15780
15781         * configure.ac:
15782         If we have libraw1394 >= 1.2.1, then we need libiec61883.
15783
15784 2006-06-18  Edward Hervey  <edward@fluendo.com>
15785
15786         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
15787         After a failed buffer alloc, we need to abort the jpeg decoding (it
15788         started when parsing headers to figure out how many bytes we need
15789         to request downstream).
15790
15791 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
15792
15793         Patch by: Mark Nauwelaerts  <manauw at skynet be>
15794
15795         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15796           Make sure we don't read beyond the end of the file (#345232).
15797
15798 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
15799
15800         * configure.ac:
15801           Fix --disable-external (can't set conditionals conditionally,
15802           #343602).
15803
15804 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
15805
15806         * autogen.sh:
15807         * configure.ac:
15808         * docs/Makefile.am:
15809           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15810
15811         * docs/plugins/Makefile.am:
15812         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15813         * docs/plugins/inspect/plugin-taglib.xml:
15814           Add/fix apev2mux docs.
15815
15816 2006-06-14  Wim Taymans  <wim@fluendo.com>
15817
15818         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15819         (gst_dvdec_finalize), (gst_dvdec_sink_event),
15820         (gst_dvdec_change_state):
15821         Reset segment info on flush.
15822         Alloc segment in _init, free in _finalize.
15823
15824         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15825         Don't send segments twice.
15826
15827 2006-06-14  Wim Taymans  <wim@fluendo.com>
15828
15829         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15830         Respect segment.stop. Fixes #342592.
15831
15832 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15833
15834         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15835           No language specified means the implied language is English
15836           according to the matroska spec (partially fixes #344708);
15837           add some more debug output.
15838
15839 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15840
15841         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15842         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15843         (gst_wavparse_chain):
15844           When operating chain-based, don't make any assumptions about the
15845           chunking of the incoming data and make streaming work on days other
15846           than the second Thursday after a full moon. Also fix up debug
15847           messages here and there and make use of the most excellent new
15848           gst_pad_query_peer_duration() utility function.
15849           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15850
15851         * gst/wavparse/gstwavparse.h:
15852           Remove trailing comma after last enum value, some compilers don't
15853           like that.
15854
15855 2006-06-13  Wim Taymans  <wim@fluendo.com>
15856
15857         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15858         Handle premature EOS gracefully.
15859
15860 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
15861
15862         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15863           Prevent out of bounds array access when scrubbing towards
15864           the end of the file between the last index entry and the
15865           end. Fixes occasional 'start <= stop' newsegment event
15866           assertions when scrubbing in MJPEG files.
15867
15868 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
15869
15870         * tests/check/elements/.cvsignore:
15871           And another one.
15872
15873 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15874
15875         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15876         (scan_encoded_string), (parse_picture_frame):
15877           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15878
15879         * configure.ac:
15880           Require core >= 0.10.8 (for GST_TAG_IMAGE and
15881           GST_TAG_PPEVIEW_IMAGE used in the patch above).
15882
15883 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15884
15885         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15886           gratuitous comment changes
15887         * tests/check/elements/level.c: (GST_START_TEST):
15888           fix level test leaks
15889
15890 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15891
15892         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15893         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15894           Use gst_pad_query_peer_duration() utility function here.
15895
15896 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15897
15898         * autogen.sh:
15899           require am17
15900         * configure.ac:
15901         * ext/annodex/Makefile.am:
15902         * ext/cdio/Makefile.am:
15903         * ext/dv/Makefile.am:
15904         * ext/esd/Makefile.am:
15905         * ext/flac/Makefile.am:
15906         * ext/gdk_pixbuf/Makefile.am:
15907         * ext/ladspa/Makefile.am:
15908         * ext/libcaca/Makefile.am:
15909         * ext/speex/Makefile.am:
15910         * ext/taglib/Makefile.am:
15911         * sys/oss/Makefile.am:
15912         * sys/sunaudio/Makefile.am:
15913         * sys/ximage/Makefile.am:
15914           clean up build further
15915
15916 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15917
15918         * gconf/Makefile.am:
15919           Honour --disable-schemas-install configure option. Fixes #344100.
15920
15921 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15922
15923         * tests/examples/level/Makefile.am:
15924           Add -lm to LIBS for pow() function, don't assume one of our
15925           dependencies (such as libxml-2.0) drags it in automatically
15926           (#343603).
15927
15928 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15929
15930         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
15931
15932         * configure.ac:
15933           We should use $SED and not $(SED) in configure.ac (#343678).
15934
15935 2006-06-09  Wim Taymans  <wim@fluendo.com>
15936
15937         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15938
15939         * sys/sunaudio/gstsunaudiomixerctrl.c:
15940         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
15941         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
15942         (gst_sunaudiomixer_ctrl_set_mute):
15943         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
15944         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
15945         (gst_sunaudiosink_write):
15946         Attached find a patch that fixes a number of bugs with the SunAudio
15947         mixer plugin and fixes #344101:
15948         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
15949            tracks onto the tracklist causing gnome-volume-control's preferences
15950            dialog to be messed up and would core dump if you checked/unchecked
15951            any item.
15952         2. We weren't previously setting the MUTE flag properly.  Fixing this
15953            makes gnome-volume-control work better.
15954         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
15955            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
15956            gnome-volume-control look better.
15957         Also some minor cleanup in gstsunaudiosink.c.
15958
15959 2006-06-09  Wim Taymans  <wim@fluendo.com>
15960
15961         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
15962         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
15963         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
15964         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
15965         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
15966         * ext/jpeg/gstjpegdec.h:
15967         API: Added IDCT method property
15968         Small cleanups.
15969         Avoid dynamic allocation of trivial fixed structure.
15970         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
15971
15972 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15973
15974         * configure.ac:
15975         We now require libraw1394 >= 1.1.0 and that version onwards all
15976         have .pc files.
15977
15978 2006-06-02  Edward Hervey  <edward@fluendo.com>
15979
15980         * gst/law/alaw-decode.c: (alawdec_getcaps): 
15981         Trying to get items from an ANY or EMPTY caps is ... stupid.
15982
15983 2006-06-02  Edward Hervey  <edward@fluendo.com>
15984
15985         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
15986         (gst_dvdec_chain), (gst_dvdec_change_state):
15987         * ext/dv/gstdvdec.h:
15988         Added GstSegment handling, now implements dropping/clipping.
15989
15990 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15991
15992         * ext/aalib/gstaasink.h:
15993         * ext/annodex/gstcmmldec.h:
15994         * ext/cairo/gsttimeoverlay.h:
15995         * ext/dv/gstdvdec.h:
15996         * ext/dv/gstdvdemux.h:
15997         * ext/esd/esdmon.h:
15998         * ext/esd/esdsink.h:
15999         * ext/flac/gstflacenc.h:
16000         * ext/gconf/gstgconfaudiosink.h:
16001         * ext/gconf/gstgconfaudiosrc.h:
16002         * ext/gconf/gstgconfvideosink.h:
16003         * ext/gconf/gstgconfvideosrc.h:
16004         * ext/gdk_pixbuf/gstgdkanimation.h:
16005         * ext/gdk_pixbuf/pixbufscale.h:
16006         * ext/hal/gsthalaudiosink.h:
16007         * ext/hal/gsthalaudiosrc.h:
16008         * ext/jpeg/gstjpegenc.h:
16009         * ext/jpeg/gstsmokedec.h:
16010         * ext/jpeg/gstsmokeenc.h:
16011         * ext/libcaca/gstcacasink.h:
16012         * ext/libmng/gstmngdec.h:
16013         * ext/libmng/gstmngenc.h:
16014         * ext/libpng/gstpngdec.h:
16015         * ext/libpng/gstpngenc.h:
16016         * ext/raw1394/gstdv1394src.h:
16017         * ext/speex/gstspeexenc.h:
16018         * gst/autodetect/gstautoaudiosink.h:
16019         * gst/autodetect/gstautovideosink.h:
16020         * gst/avi/gstavidemux.h:
16021         * gst/cutter/gstcutter.h:
16022         * gst/debug/efence.h:
16023         * gst/debug/gstnavigationtest.h:
16024         * gst/debug/gstnavseek.h:
16025         * gst/flx/gstflxdec.h:
16026         * gst/goom/gstgoom.h:
16027         * gst/icydemux/gsticydemux.h:
16028         * gst/id3demux/gstid3demux.h:
16029         * gst/law/alaw-decode.h:
16030         * gst/law/alaw-encode.h:
16031         * gst/law/mulaw-decode.h:
16032         * gst/law/mulaw-encode.h:
16033         * gst/matroska/matroska-mux.h:
16034         * gst/median/gstmedian.h:
16035         * gst/oldcore/gstaggregator.h:
16036         * gst/oldcore/gstfdsink.h:
16037         * gst/oldcore/gstmd5sink.h:
16038         * gst/oldcore/gstmultifilesrc.h:
16039         * gst/oldcore/gstpipefilter.h:
16040         * gst/oldcore/gstshaper.h:
16041         * gst/oldcore/gststatistics.h:
16042         * gst/rtp/gstasteriskh263.h:
16043         * gst/rtp/gstrtpL16depay.h:
16044         * gst/rtp/gstrtpL16pay.h:
16045         * gst/rtp/gstrtpamrdepay.h:
16046         * gst/rtp/gstrtpamrpay.h:
16047         * gst/rtp/gstrtpdepay.h:
16048         * gst/rtp/gstrtpgsmdepay.h:
16049         * gst/rtp/gstrtpgsmpay.h:
16050         * gst/rtp/gstrtph263pay.h:
16051         * gst/rtp/gstrtph263pdepay.h:
16052         * gst/rtp/gstrtph263ppay.h:
16053         * gst/rtp/gstrtpmp4gpay.h:
16054         * gst/rtp/gstrtpmp4vdepay.h:
16055         * gst/rtp/gstrtpmp4vpay.h:
16056         * gst/rtp/gstrtpmpadepay.h:
16057         * gst/rtp/gstrtpmpapay.h:
16058         * gst/rtp/gstrtppcmadepay.h:
16059         * gst/rtp/gstrtppcmapay.h:
16060         * gst/rtp/gstrtppcmudepay.h:
16061         * gst/rtp/gstrtppcmupay.h:
16062         * gst/rtp/gstrtpspeexdepay.h:
16063         * gst/rtp/gstrtpspeexpay.h:
16064         * gst/rtsp/gstrtpdec.h:
16065         * gst/rtsp/gstrtspsrc.h:
16066         * gst/smpte/gstsmpte.h:
16067         * gst/udp/gstdynudpsink.h:
16068         * gst/udp/gstmultiudpsink.h:
16069         * gst/udp/gstudpsink.h:
16070         * gst/udp/gstudpsrc.h:
16071         * gst/videofilter/gstvideobalance.h:
16072         * gst/videofilter/gstvideoflip.h:
16073         * sys/oss/gstossdmabuffer.h:
16074         * sys/oss/gstossmixerelement.h:
16075         * sys/oss/gstosssink.h:
16076         * sys/oss/gstosssrc.h:
16077         * sys/osxvideo/osxvideosink.h:
16078         * sys/sunaudio/gstsunaudiomixer.h:
16079         * sys/sunaudio/gstsunaudiosink.h:
16080         * sys/ximage/gstximagesrc.h:
16081         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16082
16083 2006-05-31  Wim Taymans  <wim@fluendo.com>
16084
16085         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16086         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
16087         (gst_goom_src_setcaps), (gst_goom_src_event),
16088         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
16089         (gst_goom_change_state):
16090         * gst/goom/gstgoom.h:
16091         Handle QoS.
16092         Handle flushing, discont and events.
16093         Fix timestamps and various other cleanups.
16094
16095 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16096
16097         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
16098         Fix bus reset when using libiec61883
16099
16100 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16101
16102         * configure.ac:
16103         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
16104         * ext/raw1394/Makefile.am:
16105         Add CFLAGS.
16106         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
16107         New method, to receive using libiec61883.
16108         (gst_dv1394src_iso_receive),
16109         #ifdef'd out if libiec61883 is present.
16110         (gst_dv1394src_bus_reset),
16111         Get userdata correctly if using libiec61883. 
16112         (gst_dv1394src_create),
16113         When using libiec61883, only poll one fd and no need to read.
16114         (gst_dv1394src_discover_avc_node),
16115         Replace g_warnings.
16116         (gst_dv1394src_start),
16117         Create new handle when we know which dv port.  More reliable
16118         than setting port on an existing handle.  Initialise libiec61883.
16119         (gst_dv1394src_stop):
16120         If using libiec61883, then cleanup its handle properly.
16121         * ext/raw1394/gstdv1394src.h:
16122         Add libiec61883 handle.
16123
16124 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
16125
16126         * gst/avi/gstavidemux.c:
16127           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16128         * win32/MANIFEST:
16129           sort file listing
16130         * win32/vs6/libgstavi.dsp:
16131           add gstavimux.c to the project
16132         * win32/vs6/libgstid3demux.dsp:
16133           add link to zlib library
16134         * win32/vs6/libgstmatroska.dsp:
16135           add matroska-ids.c to the project
16136
16137 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
16138
16139         Patch by: Sebastian Dröge  <mail at slomosnail de >
16140
16141         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16142         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16143         * ext/taglib/Makefile.am:
16144         * ext/taglib/gstapev2mux.cc:
16145         * ext/taglib/gstapev2mux.h:
16146         * ext/taglib/gstid3v2mux.cc:
16147         * ext/taglib/gsttaglibmux.c: (plugin_init):
16148         * ext/taglib/gsttaglibmux.h:
16149           Add apev2mux element (#343122).
16150         
16151         * tests/check/Makefile.am:
16152         * tests/check/elements/apev2mux.c:
16153         (test_taglib_apev2mux_create_tags),
16154         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16155         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16156         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16157         (apev2mux_suite), (main):
16158           Add unit test for apev2mux element.
16159
16160 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16161
16162         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16163         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16164         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16165           GST_PTR_FORMAT should be used to print caps in debug statements.
16166
16167 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16168
16169         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
16170
16171         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16172         (ape_demux_parse_tags):
16173           Some clean-ups and additions: map APE 'file' tag to
16174           GST_TAG_LOCATION (#343123); add support for extracting
16175           the track count and clean up parsing a bit (#343127).
16176
16177 2006-05-28  Edward Hervey  <edward@fluendo.com>
16178
16179         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16180         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16181
16182 2006-05-28  Edward Hervey  <edward@fluendo.com>
16183
16184         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16185         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16186         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16187         * ext/jpeg/gstjpegdec.h:
16188         Clip outgoing buffers according to currently configured segment.
16189
16190 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16191
16192         * ext/taglib/gstid3v2mux.cc:
16193           Handle  writing of track-count or album-volume-count without
16194           track-number or albume-volume-number (in this case the number
16195           will just be set to 0).
16196
16197         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16198           It would be nice if we actually checked the values received for
16199           track/album-volume number/count in  _check_tags(), rather than
16200           setting them again ...
16201
16202 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16203
16204         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16205           A track/volume number or count of 0 does not make sense,
16206           just ignore it along with negative numbers (a tag might
16207           only contain a track count without a track number).
16208
16209 2006-05-27  Edward Hervey  <edward@fluendo.com>
16210
16211         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16212         (gst_jpeg_dec_sink_event):
16213         Abort decompression when receiving FLUSH_STOP. This should avoid
16214         issues when interrupting decoding with flushes.
16215
16216 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16217
16218         * ext/flac/gstflac.c:
16219           Don't #include file we don't dist any longer.
16220
16221 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16222
16223         * README:
16224           Replace current README (containing the release notes from
16225           some 0.9.x version) with a proper README taken from the core.
16226
16227 2006-05-24  Wim Taymans  <wim@fluendo.com>
16228
16229         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16230         Implement EOS correctly by either posting
16231         SEGMENT_DONE or pushing an EOS message depending
16232         on the seek type. Fixes #342592
16233
16234 2006-05-24  Wim Taymans  <wim@fluendo.com>
16235
16236         * gst/law/alaw-decode.c: (gst_alawdec_chain):
16237         * gst/law/alaw-decode.h:
16238         * gst/law/alaw-encode.c: (gst_alawenc_chain):
16239         * gst/law/alaw-encode.h:
16240         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16241         * gst/law/mulaw-decode.h:
16242         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16243         * gst/law/mulaw-encode.h:
16244         Some cleanups in the chain functions.
16245         Remove some GStreamer 0.0.2 bits.
16246
16247 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16248
16249         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16250
16251         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16252           gst_collect_pads_stop() needs to be called before chaining up
16253           to the parent class (#342734).
16254
16255 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16256
16257         * ext/flac/Makefile.am:
16258         * ext/flac/flac_compat.h:
16259         * ext/flac/gstflac.c:
16260         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16261         * ext/flac/gstflacenc.c:
16262           Remove backwards compatibility cruft for dealing with FLAC API
16263           changes in the 1.0.x series - we require 1.1.1 or newer these days.
16264
16265 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16266
16267         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16268         (gst_matroska_demux_push_xiph_codec_priv_data),
16269         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16270         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16271         * gst/matroska/matroska-ids.h:
16272         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16273         (gst_matroska_mux_video_pad_setcaps),
16274         (xiph3_streamheader_to_codecdata),
16275         (vorbis_streamheader_to_codecdata),
16276         (theora_streamheader_to_codecdata),
16277         (gst_matroska_mux_audio_pad_setcaps),
16278         (gst_matroska_mux_write_data):
16279           Add support for muxing/demuxing theora video (#342448; too bad
16280           none of the usual linux players can actually play this). Playback
16281           in GStreamer will require additional changes to theoradec in -base.
16282           Refactor streamheaders <=> CodecPrivateData code a bit; some small
16283           cleanups.
16284
16285 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16286
16287         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16288         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16289           Fix crashes when the horizontal subsampling is 1.
16290           Fixes #342097.
16291
16292 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16293
16294         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16295
16296         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16297         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16298         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16299         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16300         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16301         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16302         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16303         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16304         (gst_avi_mux_change_state):
16305         * gst/avi/gstavimux.h:
16306           Some enhancements for avimux (#342526):
16307            - add odml (large file) index support
16308            - store codec init data (e.g. huffyuv)
16309            - miscellaneous other fixes/cleanups
16310
16311 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
16312
16313         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16314         Don't output any tag when we encounter a negative track number - the
16315         tag type is uint, so we end up outputting huge positive numbers
16316         instead. (Fixes: #342029)
16317
16318 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16319
16320         * configure.ac:
16321           update for new GSTPB_PLUGINS_DIR
16322
16323 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
16324
16325         * rtp/gst/gstrtph263pay.c:
16326         Properly set static caps for H263 at 34.
16327
16328 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
16329
16330         Patch by: James "Doc" Livingston  <doclivingston gmail com>
16331
16332         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16333           Merge event tags and tag setter tags correctly (#339918). Also,
16334           don't leak taglist in case of an error.
16335           
16336 2006-05-17  Edward Hervey  <edward@fluendo.com>
16337
16338         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
16339         We can only do caps intersection if the othercaps are non-empty and not
16340         ANY. Else we return the pad template (base_caps).
16341
16342 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
16343
16344         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16345           Fix crash when outputting debugging information for certain
16346           pictures (always good to use the right struct member for
16347           the number of records in an array).
16348
16349 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
16350
16351         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
16352
16353         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16354         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16355         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16356         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16357         (gst_ebml_read_float), (gst_ebml_read_ascii),
16358         (gst_ebml_read_binary):
16359           Don't create unnecessary sub-buffers all the time. Dramatically
16360           improves performance with multiple concurrently running
16361           matroskademux instances (#341818) (and avoids doing
16362           unnecessarily inefficient things in the general case).
16363
16364 2006-05-16  Edward Hervey  <edward@fluendo.com>
16365
16366         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
16367         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16368         return value of gst_pad_push_event().
16369
16370 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
16371
16372         * gst/autodetect/gstautoaudiosink.c:
16373         (gst_auto_audio_sink_find_best):
16374         * gst/autodetect/gstautovideosink.c:
16375         (gst_auto_video_sink_find_best):
16376         Make the name of the child element be based on the name of the
16377         parent, so that debug output is more useful.
16378         
16379         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16380         (parse_insert_string_field), (parse_split_strings):
16381         Rework string parsing to always walk over BOM markers in UTF16
16382         strings, using the endianness indicated by the innermost one,
16383         then trying the opposite endianness if that fails to convert
16384         to valid UTF-8. Fixes #341774
16385
16386 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16387
16388         Patch from: Matthieu <matthieu at fluendo dot com>
16389
16390         * ext/libpng/Makefile.am:
16391         Add LIBPNG_CFLAGS.
16392
16393 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
16394
16395         * ext/taglib/gstid3v2mux.cc:
16396           Add support for writing images (APIC frames) into ID3v2
16397           tags (picture type always set to 'other' for now though).
16398
16399 2006-05-14  Michael Smith  <msmith@fluendo.com>
16400
16401         * gst/wavparse/gstwavparse.c:
16402           Update docs; wavparse implements push and pull modes.
16403
16404 2006-05-12  Wim Taymans  <wim@fluendo.com>
16405
16406         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16407         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16408         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16409         Ooops, bitten by the copy-and-paste design paradigm, fixes
16410         seek again.
16411
16412 2006-05-12  Wim Taymans  <wim@fluendo.com>
16413
16414         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16415         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16416         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16417         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16418         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16419         (gst_avi_demux_massage_index),
16420         (gst_avi_demux_calculate_durations_from_index),
16421         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16422         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16423         (gst_avi_demux_loop):
16424         * gst/avi/gstavidemux.h:
16425         Some cleanups, prepare to use GstSegment.
16426         Fix error in entry walking code.
16427         Fix VBR detection.
16428         Smarter timestamp calculation code.
16429         Uniform error/eos handling.
16430
16431 2006-05-12  Michael Smith  <msmith@fluendo.com>
16432
16433         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16434         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16435           Fix use of uninitialised values if we're NOT seeking in ready.
16436           Fix typos.
16437
16438 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
16439
16440         * gst/wavparse/Makefile.am:
16441           Add CFLAGS and LIBS for libgstbase, fixes build on
16442           Cygwin (#341489).
16443
16444 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16445
16446         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16447           Some more debug info. No need to check whether the string
16448           returned by g_convert() is really UTF-8 - either it is or
16449           we get NULL returned.
16450
16451 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
16452
16453         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16454           Fix parsing of numeric genre strings some more, by ensuring that
16455           we only try and parse strings that a) Start with '(' and b) Consist
16456           only of digits.
16457           Also, when finding an escaping '((' sequence, bust it back to '(' by
16458           swallowing the first parenthesis
16459
16460 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16461
16462         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16463         (gst_esdsink_open), (gst_esdsink_close):
16464         * ext/esd/esdsink.h:
16465           Move the esd_get_server_info() into gst_esdsink_open() and fail
16466           with a decent error message on errors.
16467
16468 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16469
16470         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16471         (gst_esdmon_channels_get_type):
16472         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16473         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16474         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16475         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16476         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16477         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16478         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16479         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16480         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16481         * gst/videomixer/videomixer.c:
16482         (gst_video_mixer_background_get_type):
16483           Const-ify GEnumValue arrays.
16484
16485 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16486
16487         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
16488
16489         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16490         (gst_avi_mux_do_video_buffer):
16491           Work around gst_buffer_make_metadata_writable() bug that
16492           results in avimux marking all frames in the index as
16493           keyframes (#340859).
16494           
16495 2006-05-08  Wim Taymans  <wim@fluendo.com>
16496
16497         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16498         Make parsing of urls suck slightly less.
16499
16500 2006-05-08  Edward Hervey  <edward@fluendo.com>
16501
16502         * autogen.sh: (CONFIGURE_DEF_OPT): 
16503         libtoolize on Darwin/MacOSX is called glibtoolize.
16504
16505 2006-05-08  Wim Taymans  <wim@fluendo.com>
16506
16507         Patch by: Jens Granseuer <jensgr at gmx dot net>
16508
16509         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16510         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16511         C89 compliance fixes. Fixes #340980
16512
16513 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
16514
16515         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16516         * ext/flac/gstflacdec.h:
16517           Handle segment seeks that include the end of the file as stop point
16518           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16519           message instead of an EOS event in case we're in segment seek
16520           mode (fixes #340699).
16521           
16522 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
16523
16524         * ext/cairo/gsttextoverlay.c:
16525         * ext/flac/gstflacdec.c:
16526         * ext/gdk_pixbuf/pixbufscale.c:
16527         * gst/apetag/gstapedemux.c:
16528         * gst/debug/breakmydata.c:
16529         * gst/debug/testplugin.c:
16530         * gst/matroska/ebml-write.c:
16531         * gst/multipart/multipartdemux.c:
16532         * sys/osxaudio/gstosxaudiosink.c:
16533         * sys/osxaudio/gstosxaudiosrc.c:
16534         Add semicolons after GST_BOILERPLATE[_FULL] so that
16535         indent doesn't mess up following lines.
16536
16537 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
16538
16539         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16540
16541         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16542           Don't leak caps when freeing the stream context (#340623).
16543
16544 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
16545
16546         * configure.ac:
16547           Back to CVS
16548
16549 === release 0.10.3 ===
16550
16551 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
16552
16553         * configure.ac:
16554           releasing 0.10.3, "Desplazado"
16555
16556 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16557
16558         * gst/matroska/matroska-mux.c:
16559         (gst_matroska_mux_stream_is_vorbis_header),
16560         (gst_matroska_mux_write_data):
16561           Don't strcmp() NULL strings.
16562           Only start new clusters on video keyframes, not on any
16563           random audio buffer that doesn't have the DELTA_UNIT
16564           flag set (fixes 'make check' again).
16565
16566 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16567
16568         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16569
16570         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16571         (gst_matroska_mux_stream_is_vorbis_header),
16572         (gst_matroska_mux_write_data):
16573           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16574           value and then dead-lock when muxing vorbis audio streams
16575           (the three vorbis header buffers carry no timestamp, and it
16576           would try to mux these after all video buffers). Fixes #340346.
16577
16578           Improve clustering: start a new cluster also whenever we get
16579           a keyframe.     
16580
16581 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16582
16583         * win32/common/config.h:
16584         * win32/MANIFEST
16585           add the generated file as well
16586
16587 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16588
16589         * Makefile.am:
16590         * configure.ac:
16591         * win32/common/config.h.in:
16592           add win32 stuff
16593
16594 2006-05-03  Michael Smith  <msmith@fluendo.com>
16595
16596         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16597           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16598           SUCKS.
16599
16600 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16601
16602         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16603         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16604         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16605           don't leak caps-string
16606
16607 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16608
16609         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16610         (gst_id3demux_sink_activate):
16611           Let core insert default error message for TYPE_NOT_FOUND
16612           errors, it's just as good as our own and has the added
16613           bonus of being translated.
16614
16615 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16616
16617         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16618         (gst_tag_demux_sink_event):
16619         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16620         (gst_id3demux_sink_event):
16621           Post an error message when we get an EOS event and were not
16622           able to find out the type of stream.
16623
16624         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16625         (test_taglib_id3mux_with_tags):
16626           Decrease num-buffers to 16 per iteration again, otherwise the
16627           many memcpy()s and reallocations in the test will hammer slow
16628           CPUs completely and make the test timeout.
16629
16630 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16631
16632         * configure.ac:
16633           figure out where plugins-base plugins are
16634         * tests/check/Makefile.am:
16635           use plugins-base plugins, so we have typefind functions
16636         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16637           increase num-buffers, this makes sure the test errors out instead
16638           of timing out when no typefind functions are present
16639
16640 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16641
16642         * docs/plugins/Makefile.am:
16643           also check .cc files for gtk-doc markup
16644         * configure.ac:
16645         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16646         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16647         * tests/check/Makefile.am:
16648         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16649         * ext/Makefile.am:
16650         * ext/taglib/Makefile.am:
16651         * ext/taglib/gstid3v2mux.h:
16652         * ext/taglib/gsttaglibmux.c:
16653         * ext/taglib/gsttaglibmux.h:
16654           move taglib-based id3v2muxer to -good.  Fixes #336110.
16655
16656 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16657
16658         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16659           ... and fix multichannel/WAVFORMATEX support again.
16660
16661 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
16662
16663         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16664         (gst_wavparse_class_init), (gst_wavparse_dispose),
16665         (gst_wavparse_reset), (gst_wavparse_init),
16666         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16667         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16668         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16669         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16670         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16671         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16672         (gst_wavparse_stream_data), (gst_wavparse_loop),
16673         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16674         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16675         (gst_wavparse_change_state), (plugin_init):
16676         * gst/wavparse/gstwavparse.h:
16677           Add push (streaming) mode to wavparse (fixes #337625)
16678
16679 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16680
16681         * configure.ac:
16682         * tests/Makefile.am:
16683           add ximagesrc icles test
16684
16685 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16686
16687         * configure.ac:
16688         * docs/plugins/Makefile.am:
16689         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16690         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16691         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16692         (gst_cmml_enc_push_clip):
16693         * sys/Makefile.am:
16694         * sys/ximage/Makefile.am:
16695         * sys/ximage/gstximagesrc.c:
16696           Move ximagesrc plug-in to good after review.  Fixes #336756.
16697
16698 2006-04-28  Michael Smith  <msmith@fluendo.com>
16699
16700         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16701         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16702         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16703         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16704         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16705         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16706         * gst/icydemux/gsticydemux.h:
16707           Fix event handling: cache events when typefinding and forward later.
16708
16709 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16710
16711         * sys/osxaudio/gstosxaudiosink.c:
16712         (plugin_init):
16713          Register osxaudiosrc to the plugin.
16714         * sys/osxaudio/gstosxaudiosrc.c:
16715         (gst_osx_audio_src_osxelement_do_init),
16716         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16717         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16718         (gst_osx_audio_src_get_property),
16719         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16720         (gst_osx_audio_src_osxelement_init):
16721         * sys/osxaudio/gstosxaudiosrc.h:
16722           Port of osxaudiosrc to 0.10.
16723         * sys/osxaudio/Makefile.am:
16724           Add osxaudiosrc
16725
16726 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16727
16728         * sys/osxaudio/gstosxringbuffer.c:
16729         * sys/osxaudio/gstosxringbuffer.h:
16730           Forgot to commit earlier, part of the OSX audio plugin port
16731
16732 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16733
16734         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16735         (parse_split_strings):
16736           Recognise and skip any byte order marker (BOM) in
16737           UTF-16 strings.
16738
16739 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16740
16741         * docs/plugins/Makefile.am:
16742         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16743         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16744         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16745         * docs/plugins/inspect/plugin-avi.xml:
16746         * gst/avi/gstavidemux.c:
16747         * gst/avi/gstavimux.c:
16748           Add docs for both avidemux and avimux.
16749
16750 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16751
16752         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16753
16754         * gst/avi/Makefile.am:
16755         * gst/avi/gstavi.c: (plugin_init):
16756         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16757         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16758         (gst_avi_mux_class_init), (gst_avi_mux_init),
16759         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16760         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16761         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16762         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16763         (gst_avi_mux_riff_get_avix_header),
16764         (gst_avi_mux_riff_get_video_header),
16765         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16766         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16767         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16768         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16769         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16770         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16771         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16772         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16773         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16774         (gst_avi_mux_change_state):
16775         * gst/avi/gstavimux.h:
16776           Port AVI muxer to GStreamer-0.10 (#332031).
16777
16778         * tests/check/Makefile.am:
16779         * tests/check/elements/avimux.c:
16780         * tests/check/elements/.cvsignore:
16781           Add unit test for AVI muxer.
16782
16783 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
16784
16785         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16786         (gst_wavparse_class_init), (gst_wavparse_reset),
16787         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16788         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16789         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16790         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16791         (gst_wavparse_stream_data), (gst_wavparse_loop),
16792         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16793         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16794         (plugin_init):
16795         * gst/wavparse/gstwavparse.h:
16796           reverted patch #337625 for the price of 1 hour sleep
16797
16798 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16799
16800         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16801         (gst_wavparse_class_init), (gst_wavparse_reset),
16802         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16803         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16804         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16805         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16806         (gst_wavparse_stream_data), (gst_wavparse_loop),
16807         (gst_wavparse_chain), (plugin_init):
16808         * gst/wavparse/gstwavparse.h:
16809           correct partial implementation of push mode
16810           (from my last commit)
16811
16812 2006-04-26  Wim Taymans  <wim@fluendo.com>
16813
16814         * ext/esd/esdsink.c:
16815         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16816         it is not in esd.h
16817
16818 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
16819
16820         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16821         (gst_au_parse_class_init), (gst_au_parse_init),
16822         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16823         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16824         (gst_au_parse_chain), (gst_au_parse_src_convert),
16825         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16826         (gst_au_parse_sink_event), (gst_au_parse_src_event),
16827         (gst_au_parse_change_state):
16828         * gst/auparse/gstauparse.h:
16829           Rewrite auparse to suck a little bit less: make source pad
16830           dynamic, so decodebin/playbin work with non-raw formats
16831           like alaw/mulaw; add query function for duration/position
16832           queries; check whether we have enough data before attempting
16833           to parse the header (instead of crashing when that is not the
16834           case); work around audioconvert sucking by swapping endianness
16835           to the native endianness ourselves for float formats; send
16836           initial newsegment event. Fixes #161712.
16837
16838 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16839
16840         * sys/osxaudio/Makefile.am:
16841         * sys/osxaudio/gstosxaudioelement.c:
16842         (gst_osx_audio_element_get_type),
16843         (gst_osx_audio_element_class_init):
16844         * sys/osxaudio/gstosxaudioelement.h:
16845         * sys/osxaudio/gstosxaudiosink.c:
16846         (gst_osx_audio_sink_osxelement_do_init),
16847         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16848         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16849         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16850         (gst_osx_audio_sink_create_ringbuffer),
16851         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16852         (plugin_init):
16853         * sys/osxaudio/gstosxaudiosink.h:
16854         Port of osxaudiosink to 0.10
16855
16856 2006-04-26  Wim Taymans  <wim@fluendo.com>
16857
16858         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16859         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16860         the size of the ringbuffer. This should fix hangs with older 
16861         esd sound servers.
16862
16863 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16864
16865         * ext/aalib/gstaasink.c:
16866         * ext/annodex/gstcmmldec.c:
16867         * ext/annodex/gstcmmlenc.c:
16868         * ext/cairo/gsttextoverlay.c:
16869         * ext/cairo/gsttimeoverlay.c:
16870         * ext/cdio/gstcdiocddasrc.c:
16871         * ext/dv/gstdvdec.c:
16872         * ext/dv/gstdvdemux.c:
16873         * ext/esd/esdmon.c:
16874         * ext/esd/esdsink.c:
16875         * ext/flac/gstflacenc.c:
16876         * ext/flac/gstflactag.c:
16877         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16878         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16879         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16880         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16881         * ext/gdk_pixbuf/pixbufscale.c:
16882         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16883         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16884         * ext/jpeg/gstjpegdec.c:
16885         * ext/jpeg/gstjpegenc.c:
16886         * ext/jpeg/gstsmokedec.c:
16887         * ext/jpeg/gstsmokeenc.c:
16888         * ext/libcaca/gstcacasink.c:
16889         * ext/libmng/gstmngdec.c:
16890         * ext/libmng/gstmngenc.c:
16891         * ext/libpng/gstpngdec.c:
16892         * ext/libpng/gstpngenc.c:
16893         * ext/mikmod/gstmikmod.c:
16894         * ext/raw1394/gstdv1394src.c:
16895         * ext/shout2/gstshout2.c: (gst_shout2send_init):
16896         * ext/shout2/gstshout2.h:
16897         * ext/speex/gstspeexdec.c:
16898         * ext/speex/gstspeexenc.c:
16899         * gst/alpha/gstalpha.c:
16900         * gst/alpha/gstalphacolor.c:
16901         * gst/apetag/gstapedemux.c:
16902         * gst/auparse/gstauparse.c:
16903         * gst/autodetect/gstautoaudiosink.c:
16904         (gst_auto_audio_sink_base_init):
16905         * gst/autodetect/gstautovideosink.c:
16906         (gst_auto_video_sink_base_init):
16907         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16908         * gst/avi/gstavimux.c: (gst_avimux_base_init):
16909         * gst/cutter/gstcutter.c:
16910         * gst/debug/breakmydata.c:
16911         * gst/debug/efence.c:
16912         * gst/debug/gstnavigationtest.c:
16913         * gst/debug/gstnavseek.c:
16914         * gst/debug/negotiation.c:
16915         * gst/debug/progressreport.c:
16916         * gst/debug/testplugin.c:
16917         * gst/effectv/gstaging.c:
16918         * gst/effectv/gstdice.c:
16919         * gst/effectv/gstedge.c:
16920         * gst/effectv/gstquark.c:
16921         * gst/effectv/gstrev.c:
16922         * gst/effectv/gstshagadelic.c:
16923         * gst/effectv/gstvertigo.c:
16924         * gst/effectv/gstwarp.c:
16925         * gst/flx/gstflxdec.c:
16926         * gst/goom/gstgoom.c:
16927         * gst/icydemux/gsticydemux.c:
16928         * gst/id3demux/gstid3demux.c:
16929         * gst/interleave/deinterleave.c:
16930         * gst/interleave/interleave.c:
16931         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
16932         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
16933         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
16934         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
16935         * gst/level/gstlevel.c:
16936         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
16937         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
16938         * gst/median/gstmedian.c:
16939         * gst/monoscope/gstmonoscope.c:
16940         * gst/multipart/multipartdemux.c:
16941         * gst/multipart/multipartmux.c:
16942         * gst/oldcore/gstaggregator.c:
16943         * gst/oldcore/gstfdsink.c:
16944         * gst/oldcore/gstmd5sink.c:
16945         * gst/oldcore/gstmultifilesrc.c:
16946         * gst/oldcore/gstpipefilter.c:
16947         * gst/oldcore/gstshaper.c:
16948         * gst/oldcore/gststatistics.c:
16949         * gst/rtp/gstasteriskh263.c:
16950         * gst/rtp/gstrtpL16depay.c:
16951         * gst/rtp/gstrtpL16pay.c:
16952         * gst/rtp/gstrtpamrdepay.c:
16953         * gst/rtp/gstrtpamrpay.c:
16954         * gst/rtp/gstrtpdepay.c:
16955         * gst/rtp/gstrtpgsmpay.c:
16956         * gst/rtp/gstrtph263pay.c:
16957         * gst/rtp/gstrtph263pdepay.c:
16958         * gst/rtp/gstrtph263ppay.c:
16959         * gst/rtp/gstrtpilbcdepay.c:
16960         * gst/rtp/gstrtpmp4gpay.c:
16961         * gst/rtp/gstrtpmp4vdepay.c:
16962         * gst/rtp/gstrtpmp4vpay.c:
16963         * gst/rtp/gstrtpmpadepay.c:
16964         * gst/rtp/gstrtpmpapay.c:
16965         * gst/rtp/gstrtppcmadepay.c:
16966         * gst/rtp/gstrtppcmapay.c:
16967         * gst/rtp/gstrtppcmudepay.c:
16968         * gst/rtp/gstrtppcmupay.c:
16969         * gst/rtp/gstrtpspeexdepay.c:
16970         * gst/rtp/gstrtpspeexpay.c:
16971         * gst/rtsp/gstrtpdec.c:
16972         * gst/rtsp/gstrtspsrc.c:
16973         * gst/smpte/gstsmpte.c:
16974         * gst/udp/gstdynudpsink.c:
16975         * gst/udp/gstmultiudpsink.c:
16976         * gst/udp/gstudpsink.c:
16977         * gst/udp/gstudpsrc.c:
16978         * gst/videobox/gstvideobox.c:
16979         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
16980         * gst/videofilter/gstvideobalance.c:
16981         * gst/videofilter/gstvideoflip.c:
16982         * gst/videofilter/gstvideotemplate.c:
16983         (gst_videotemplate_base_init):
16984         * gst/videomixer/videomixer.c:
16985         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16986         (gst_wavparse_class_init), (gst_wavparse_dispose),
16987         (gst_wavparse_reset), (gst_wavparse_init),
16988         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
16989         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
16990         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
16991         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
16992         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16993         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16994         (gst_wavparse_change_state):
16995         * gst/wavparse/gstwavparse.h:
16996         * sys/oss/gstossmixerelement.c:
16997         * sys/oss/gstosssink.c:
16998         * sys/oss/gstosssrc.c:
16999         * sys/osxaudio/gstosxaudioelement.c:
17000         * sys/osxaudio/gstosxaudiosink.c:
17001         * sys/osxaudio/gstosxaudiosrc.c:
17002         * sys/sunaudio/gstsunaudiomixer.c:
17003         * sys/sunaudio/gstsunaudiosink.c:
17004           Define GstElementDetails as const and also static (when defined as
17005           global)
17006
17007 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17008
17009         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
17010           Source pad has fixed caps. If we don't set this, bad
17011           things happen when the window is resized.
17012
17013 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17014
17015         * gst/matroska/Makefile.am:
17016         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17017         (gst_matroska_demux_handle_src_event):
17018         * gst/matroska/matroska-ids.c:
17019         (gst_matroska_track_init_video_context),
17020         (gst_matroska_track_init_audio_context),
17021         (gst_matroska_track_init_subtitle_context),
17022         (gst_matroska_track_init_complex_context):
17023         * gst/matroska/matroska-ids.h:
17024           Handle case where the TrackType ebml chunk does not come before the
17025           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
17026           events.
17027
17028 2006-04-25  Wim Taymans  <wim@fluendo.com>
17029
17030         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
17031         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
17032         It's codec_data, not codec_info.
17033
17034 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17035
17036         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17037
17038         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17039           Handle codec_data for VfW compatibility codec IDs (#339451)
17040
17041         * gst/matroska/matroska-mux.c:
17042         (gst_matroska_mux_video_pad_setcaps):
17043           Same here, handle codec_data and add additional caps we can handle
17044           now to the pad template (huffyuv, dv and h263 video) (#339451)
17045
17046 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17047
17048         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
17049
17050         * gst/matroska/matroska-mux.c:
17051         (gst_matroska_mux_create_buffer_header),
17052         (gst_matroska_mux_write_data):
17053           Fix timestamping of B-frames, use signed integers, do
17054           some rounding (#339678).
17055
17056 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
17057
17058         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
17059         just make it compile with --disable-gst-debug.
17060
17061 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
17062
17063         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17064         Fix a bad conversion using gst_guint64_to_gdouble.
17065         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
17066         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
17067         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
17068     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
17069         mistake.
17070
17071 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
17072
17073         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17074         Use gst_guint64_to_gdouble for conversions
17075         * win32/vs6/gst_plugins_good.dsw:
17076         * win32/vs6/libgsticydemux.dsp:
17077         Add a project file for icydemux
17078
17079 2006-04-21  Wim Taymans  <wim@fluendo.com>
17080
17081         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17082
17083         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
17084         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
17085         When splitting audio chunks, the block alignment is not taken in
17086         consideration, so the smaller chunks could be of size which is 
17087         not a multiple of the block alignment. Fixes #336904
17088
17089 2006-04-21  Wim Taymans  <wim@fluendo.com>
17090
17091         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
17092         Use scale functions
17093
17094 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17095
17096         * ext/dv/gstdv.c: (plugin_init):
17097           Fix build.
17098
17099 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17100
17101         * gst/debug/progressreport.c: (gst_progress_report_finalize),
17102         (gst_progress_report_class_init), (gst_progress_report_init),
17103         (gst_progress_report_do_query), (gst_progress_report_report),
17104         (gst_progress_report_set_property),
17105         (gst_progress_report_get_property):
17106           Add 'format' property to force querying to a particular format.
17107
17108 2006-04-21  Andy Wingo  <wingo@pobox.com>
17109
17110         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
17111         best, on big endian systems. Drop its rank in that case. OTOH on
17112         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17113
17114 2006-04-21  Michael Smith  <msmith@fluendo.com>
17115
17116         * configure.ac:
17117         * gst/icydemux/Makefile.am:
17118         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17119         (gst_icydemux_base_init), (gst_icydemux_class_init),
17120         (gst_icydemux_reset), (gst_icydemux_init),
17121         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17122         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17123         (unicodify), (gst_icydemux_unicodify),
17124         (gst_icydemux_parse_and_send_tags),
17125         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17126         (gst_icydemux_chain), (gst_icydemux_change_state),
17127         (gst_icydemux_send_tag_event), (plugin_init):
17128         * gst/icydemux/gsticydemux.h:
17129         * tests/check/Makefile.am:
17130         * tests/check/elements/icydemux.c: (typefind_succeed),
17131         (plugin_init), (icydemux_found_pad), (create_icydemux),
17132         (cleanup_icydemux), (push_data), (GST_START_TEST),
17133         (icydemux_suite), (main):
17134           Add icydemux, and tests.
17135
17136 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17137
17138         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17139           Post SEGMENT_DONE message in TIME format.
17140
17141 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17142
17143         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17144
17145         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17146         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17147           Fix index creation when we have to scan the file to create
17148           an index. There may be other types of RIFF 'LIST' chunks than
17149           'movi' and we need to skip them properly as well or we'll end up
17150           reading garbage (#336889). Some other cosmetic changes.
17151           
17152 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17153
17154         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17155         (gst_flac_dec_handle_seek_event):
17156           Add support for segment seeks (fixes #338290). Also demote
17157           some recurring debug message from DEBUG to LOG level.
17158
17159 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17160
17161         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17162         (gst_matroskademux_do_index_seek),
17163         (gst_matroska_demux_handle_seek_event),
17164         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17165         * gst/matroska/matroska-ids.h:
17166           Set DISCONT flag on first buffer after a discontinuity.
17167           Fix newsegment events sent when seeking and honour KEY_UNIT
17168           seek flag. Create pad with bogus caps if we don't recognise
17169           the stream codec id.
17170
17171         * gst/matroska/matroska-demux.h:
17172           Fix GObject macros.
17173
17174 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17175
17176         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17177
17178         * gst/matroska/matroska-demux.c:
17179         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17180           Handle end of segment properly when set; don't dead-lock when
17181           posting start of segment message when doing a segment seek.
17182           Fixes #338810.
17183
17184 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17185
17186         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17187         (gst_matroska_demux_plugin_init):
17188           Make mpeg2 aac audio work: create artificial private codec data
17189           chunk which faad2 seems to require, just as we do for mpeg4 aac.
17190           Also call gst_riff_init(). Partially fixes #338767.
17191
17192 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
17193
17194         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17195         (gst_wavenc_class_init), (gst_wavenc_init),
17196         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17197         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17198         (gst_wavenc_chain), (gst_wavenc_change_state):
17199         * gst/wavenc/gstwavenc.h:
17200           Set caps on first outgoing buffer, so that it doesn't error out
17201           immediately with a non-negotiated error (#338716). Rewrite and
17202           clean up a bit; fix setcaps function to parse things properly;
17203           fix sink caps (8bit audio is unsigned and doesn't have depth);
17204           use boilerplate macros; remove unused properties stuff.
17205
17206 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17207
17208         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17209           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17210           handle MJPEG streams and might be autoplugged for those if the
17211           user doesn't have jpegdec installed (resulting in a cryptic error
17212           message about huffman tables). Better to disable JPEG decoding here
17213           and let the user figure out that she needs to install jpegdec.
17214
17215 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17216
17217         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17218         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17219         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17220         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17221           Make work with packetised/framed input (e.g. png-in-quicktime). Use
17222           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17223           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17224           debug messages. Fix boilerplate macros.
17225
17226 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17227
17228         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17229         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17230           No need to special-case for Gdk-2.0 any longer, we require
17231           Gdk 2.2 or newer; minor clean-ups.
17232
17233 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17234
17235         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17236         (gst_shout2send_class_init), (gst_shout2send_init),
17237         (set_shout_metadata), (gst_shout2send_set_metadata),
17238         (gst_shout2send_event), (gst_shout2send_start),
17239         (gst_shout2send_connect), (gst_shout2send_stop),
17240         (gst_shout2send_render), (gst_shout2send_set_property),
17241         (gst_shout2send_get_property), (gst_shout2send_setcaps),
17242         (plugin_init):
17243         * ext/shout2/gstshout2.h:
17244         * po/POTFILES.in:
17245           Rewrite a bit: use GstBaseSink::start and stop instead of a state
17246           change function; use GST_ELEMENT_ERROR for error reporting, not
17247           g_error() or GST_ERROR(); don't unref caps in setcaps function,
17248           will cause crashes or assertion failures; remove (unused) "sync"
17249           property, basesink already has such a property; misc. other
17250           minor fixes and cleanups.
17251
17252 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17253
17254         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17255         * ext/esd/gstesd.c: (plugin_init):
17256         * po/POTFILES.in:
17257           Add translatable error message for when we cannot
17258           connect to the sound server, as "Cannot open resource
17259           for writing" isn't really an acceptable message to show
17260           to the user in this case.
17261
17262 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17263
17264         * sys/oss/gst-i18n-plugin.h:
17265           Remove bogus file that doesn't belong here.
17266
17267 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17268
17269         Patch by: Philippe Valembois
17270
17271         * ext/shout2/gstshout2.c: (gst_shout2send_init),
17272         (gst_shout2send_set_metadata), (gst_shout2send_event),
17273         (gst_shout2send_render), (gst_shout2send_change_state):
17274         * ext/shout2/gstshout2.h:
17275           Handle tags being received before the connection to
17276           the server is established properly (see #338636).
17277
17278 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17279
17280         * ext/shout2/gstshout2.c: (gst_shout2send_render):
17281           Don't crash in case the connection to the server fails:
17282           don't set pointer to NULL by assigning FALSE; error out
17283           properly by using GST_ELEMENT_ERROR and returning
17284           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17285           before resetting the pointer.
17286
17287 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
17288
17289         * gst/id3demux/id3tags.c:
17290         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17291         (Fixes #338713)
17292
17293 2006-04-12  Wim Taymans  <wim@fluendo.com>
17294
17295         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17296         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17297         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17298         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17299         (gst_gdk_pixbuf_chain):
17300         Some cleanups.
17301         Added RGBA as a possible output format.
17302         Correctly free the supported mimetypes.
17303         deprecate silent arg, it's not used.
17304         Return result from _alloc_buffer to peer.
17305
17306 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17307
17308         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17309           Don't leak memory allocated by gst_buffer_new_and_alloc() by
17310           overwriting GST_BUFFER_MALLOCDATA.
17311
17312 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17313
17314         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17315         (user_endrow_callback), (user_end_callback),
17316         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17317         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17318         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17319         * ext/libpng/gstpngdec.h:
17320           Handle more than one frame if the content is framed,
17321           like with png-in-quicktime (#331917).
17322
17323 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17324
17325         * sys/oss/Makefile.am:
17326         * sys/oss/common.h:
17327         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17328         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17329         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17330         (gst_oss_src_unprepare):
17331           - the user-visible error strings were in the wrong category
17332           - and the messages were not marked for translation
17333           - which is actually a good thing, because they were exactly
17334             the kind of message you would never want anyone to see
17335           - the macros were using variables that didn't exist in the macro
17336             arguments
17337           - and they were obviously copied from each other and then modified
17338           - so a common header makes sense
17339
17340 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17341
17342         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17343           Don't try to modify read-only data.
17344
17345         * gst/matroska/matroska-demux.c:
17346         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17347           Fix comment (won't crash any longer now).
17348
17349 2006-04-10  Michael Smith  <msmith@fluendo.com>
17350
17351         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17352           Use copies of header buffers for caps to avoid circular refcounting
17353           problems (as in theoradec, vorbisdec).
17354
17355         * tests/check/elements/cmmldec.c: (GST_START_TEST):
17356           Fix a typo in test that meant it was testing the wrong thing.
17357
17358         * tests/check/elements/cmmlenc.c: (check_headers):
17359           Fix refcount checks now that we use buffer-copies for caps.
17360
17361 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17362
17363         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17364         (gst_matroska_demux_handle_seek_event),
17365         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17366         (gst_matroska_demux_subtitle_caps),
17367         (gst_matroska_demux_plugin_init):
17368           Use static pad templates with ANY caps for audio and video
17369           source pads and get rid of a lot of unnecessary (and partially
17370           broken) code for the template caps. Clean up caps finding
17371           functions. Fixes playback of audio files/streams that do not
17372           contain the sample rate and/or number of channels in the audio
17373           context (happens a lot with vorbis/mp3 .mka files it seems).
17374           Fixes #337183.
17375           Also add myself to copyright holders.
17376
17377 2006-04-10  Michael Smith  <msmith@fluendo.com>
17378
17379         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17380           Use g_list_delete_link () instead of g_list_remove_link () so that
17381           we free the link as well as the contained data.
17382
17383 2006-04-10  Wim Taymans  <wim@fluendo.com>
17384
17385         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17386
17387         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17388         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17389         (gst_avi_demux_stream_header):
17390         Fix some crashers with empty chunks. (Fixes #337749)
17391
17392 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17393
17394         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17395           use G_GINT64_CONSTANT for INT64 constants
17396         * gst/videofilter/gstvideobalance.c:
17397           define rint for WIN32 #define rint(x) (floor((x)+0.5))
17398         * win32/vs6/libgstavi.dsp:
17399          add missing libraries for the link and remove avimux.c from
17400          the project as it isn't ported to 0.10 yet
17401         
17402 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
17403
17404         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17405           Even better would be if we actually did the right thing
17406           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17407
17408 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17409
17410         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17411           Can't just replace 1LL with 1L here just because MSVC doesn't
17412           support it, as it might lead to incorrect results when doing the
17413           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17414           force a 64-bit constant in a way that all compilers are happy with.
17415
17416 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17417
17418         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17419         * ext/esd/esdsink.c: (gst_esdsink_class_init):
17420         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17421         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17422         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17423         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17424         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17425         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17426         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17427         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17428         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17429         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17430         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17431         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17432         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17433         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17434         * gst/avi/gstavimux.c: (gst_avimux_class_init):
17435         * gst/debug/efence.c: (gst_efence_class_init):
17436         * gst/debug/negotiation.c: (gst_negotiation_class_init):
17437         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17438         * gst/goom/gstgoom.c: (gst_goom_class_init):
17439         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17440         * gst/interleave/deinterleave.c: (deinterleave_class_init):
17441         * gst/interleave/interleave.c: (interleave_class_init):
17442         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17443         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17444         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17445         * gst/median/gstmedian.c: (gst_median_class_init):
17446         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17447         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17448         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17449         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17450         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17451         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17452         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17453         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17454         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17455         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17456         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17457         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17458         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17459         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17460         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17461         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17462         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17463         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17464         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17465         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17466         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17467         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17468         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17469         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17470         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17471         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17472         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17473         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17474         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17475         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17476         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17477         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17478         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17479         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17480         * sys/osxaudio/gstosxaudioelement.c:
17481         (gst_osxaudioelement_class_init):
17482         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17483         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17484         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17485         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17486
17487 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17488
17489         * ext/mikmod/gstmikmod.h:
17490         * gst/level/gstlevel.h:
17491         Fix more broken GObject macros
17492
17493 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17494
17495         * ext/annodex/gstcmmldec.h:
17496         * ext/annodex/gstcmmlenc.h:
17497         * ext/annodex/gstcmmltag.h:
17498         * ext/cairo/gsttextoverlay.h:
17499         * ext/ladspa/gstsignalprocessor.h:
17500         * gst/matroska/ebml-read.h:
17501         * gst/matroska/ebml-write.h:
17502         * sys/osxaudio/gstosxaudioelement.h:
17503         Fix broken GObject macros
17504
17505 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17506
17507         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17508           Don't try to seek beyond the end of the file (would
17509           occasionally display error dialogs in totem when seeking
17510           to the end) (#335869). Will still throw an error though
17511           if the file is truncated and the total_samples value in
17512           the stream header is wrong.
17513
17514 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
17515
17516         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17517         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17518         (gst_flac_dec_metadata_callback):
17519         * ext/flac/gstflacdec.h:
17520           If the stream header doesn't contain the total number of samples,
17521           search for the last flac frame at the end of the file and calculate
17522           the total duration from that frame's offset (fixes #337609).
17523
17524 2006-04-07  Edward Hervey  <edward@fluendo.com>
17525
17526         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17527         Don't unref the GstPadTemplate returned by
17528         gst_element_class_get_pad_template().
17529
17530 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17531
17532         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
17533
17534         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17535         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17536         * sys/sunaudio/gstsunaudiosink.h:
17537           Use spec->segsize and spec->segtotal in the prepare function
17538           to initialise the ring buffer instead of using the buffer-time
17539           property (#337421).
17540
17541 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17542
17543         * configure.ac:
17544           Bump core requirements to CVS for gst_pad_query_peer_duration()
17545           which is used by speexdec.
17546
17547 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
17548
17549         * ext/speex/gstspeex.c: (plugin_init):
17550         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17551         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17552         (speex_get_sink_query_types), (speex_dec_sink_query),
17553         (speex_get_src_query_types), (speex_dec_src_query),
17554         (speex_dec_src_event), (speex_dec_sink_event),
17555         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17556         (speex_dec_chain_parse_data), (speex_dec_chain),
17557         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17558         (speex_dec_change_state):
17559         * ext/speex/gstspeexdec.h:
17560           Fix seeking and duration queries (#337033); clean up and
17561           refactor a bit.
17562
17563 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17564
17565         * ext/raw1394/gstdv1394src.c:
17566           distinguish between device not found and could not open for
17567           reading
17568
17569 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17570
17571         * Makefile.am:
17572         * configure.ac:
17573         * pkgconfig/.cvsignore:
17574         * pkgconfig/Makefile.am:
17575         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17576           add a .pc file so other modules can use good plugins in tests
17577
17578 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17579
17580         * configure.ac:
17581           clean up, use AS_VERSION and AS_NANO
17582         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17583           use PACKAGE_VERSION define
17584         * po/af.po:
17585         * po/az.po:
17586         * po/cs.po:
17587         * po/en_GB.po:
17588         * po/hu.po:
17589         * po/it.po:
17590         * po/nb.po:
17591         * po/nl.po:
17592         * po/or.po:
17593         * po/sq.po:
17594         * po/sr.po:
17595         * po/sv.po:
17596         * po/uk.po:
17597         * po/vi.po:
17598           updated
17599
17600 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
17601
17602         * ext\jpeg\smokecodec.c:
17603           use of GST_DEBUG instead of DEBUG(a...) for WIN32
17604         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17605           move first instruction after all variables declarations
17606         * gst\alpha\gstalpha.c:
17607         * gst\effectv\gstshagadelic.c:
17608         * gst\smpte\paint.c:
17609         * gst\videofilter\gstvideobalance.c:
17610           define M_PI if it's not defined (it's not defined on WIN32)
17611         * gst\cutter\gstcutter.c: (gst_cutter_chain):
17612         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17613         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17614         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
17615         (gst_matroska_demux_video_caps):
17616         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17617         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17618           use gst_guint64_to_gdouble for conversions
17619         * gst\goom\filters.c: (setPixelRGB_):
17620           fix a debug which was using undefined variable
17621         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17622         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17623           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17624         * win32/vs6:
17625           add vs6 projects files for most of plugins-good
17626         
17627 2006-03-30  j^  <j@bootlab.org>
17628
17629         * ext/aalib/gstaasink.c:
17630         * ext/annodex/gstcmmldec.c:
17631         * ext/annodex/gstcmmlenc.c:
17632         * ext/cairo/gsttextoverlay.c:
17633         * ext/cairo/gsttimeoverlay.c:
17634         * ext/cdio/gstcdiocddasrc.c:
17635         * ext/dv/gstdvdec.c:
17636         * ext/esd/esdmon.c:
17637         * ext/esd/esdsink.c:
17638         * ext/flac/gstflacdec.c:
17639         * ext/flac/gstflacenc.c:
17640         * ext/flac/gstflactag.c:
17641         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17642         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17643         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17644         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17645         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17646         * ext/gdk_pixbuf/pixbufscale.c:
17647         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17648         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17649         * ext/jpeg/gstjpegdec.c:
17650         * ext/jpeg/gstjpegenc.c:
17651         * ext/jpeg/gstsmokedec.c:
17652         * ext/jpeg/gstsmokeenc.c:
17653         * ext/libcaca/gstcacasink.c:
17654         * ext/libmng/gstmngdec.c:
17655         * ext/libmng/gstmngenc.c:
17656         * ext/libpng/gstpngdec.c:
17657         * ext/libpng/gstpngenc.c:
17658         * ext/mikmod/gstmikmod.c:
17659         * ext/raw1394/gstdv1394src.c:
17660         * ext/shout2/gstshout2.c:
17661         * ext/speex/gstspeexdec.c:
17662         * ext/speex/gstspeexenc.c:
17663         * gst/alpha/gstalpha.c:
17664         * gst/alpha/gstalphacolor.c:
17665         * gst/auparse/gstauparse.c:
17666         * gst/autodetect/gstautoaudiosink.c:
17667         (gst_auto_audio_sink_base_init):
17668         * gst/autodetect/gstautovideosink.c:
17669         (gst_auto_video_sink_base_init):
17670         * gst/avi/gstavimux.c: (gst_avimux_base_init):
17671         * gst/cutter/gstcutter.c:
17672         * gst/debug/breakmydata.c:
17673         * gst/debug/efence.c:
17674         * gst/debug/gstnavigationtest.c:
17675         * gst/debug/negotiation.c:
17676         * gst/debug/progressreport.c:
17677         * gst/debug/testplugin.c:
17678         * gst/effectv/gstaging.c:
17679         * gst/effectv/gstdice.c:
17680         * gst/effectv/gstedge.c:
17681         * gst/effectv/gstquark.c:
17682         * gst/effectv/gstrev.c:
17683         * gst/effectv/gstvertigo.c:
17684         * gst/effectv/gstwarp.c:
17685         * gst/flx/gstflxdec.c:
17686         * gst/goom/gstgoom.c:
17687         * gst/interleave/deinterleave.c:
17688         * gst/interleave/interleave.c:
17689         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17690         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17691         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17692         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17693         * gst/level/gstlevel.c:
17694         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17695         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17696         * gst/median/gstmedian.c:
17697         * gst/monoscope/gstmonoscope.c:
17698         * gst/multipart/multipartdemux.c:
17699         * gst/multipart/multipartmux.c:
17700         * gst/oldcore/gstmd5sink.c:
17701         * gst/oldcore/gstmultifilesrc.c:
17702         * gst/oldcore/gstpipefilter.c:
17703         * gst/oldcore/gstshaper.c:
17704         * gst/oldcore/gststatistics.c:
17705         * gst/rtp/gstasteriskh263.c:
17706         * gst/rtp/gstrtpL16depay.c:
17707         * gst/rtp/gstrtpL16pay.c:
17708         * gst/rtp/gstrtpamrdepay.c:
17709         * gst/rtp/gstrtpamrpay.c:
17710         * gst/rtp/gstrtpdepay.c:
17711         * gst/rtp/gstrtpgsmpay.c:
17712         * gst/rtp/gstrtph263pay.c:
17713         * gst/rtp/gstrtph263pdepay.c:
17714         * gst/rtp/gstrtph263ppay.c:
17715         * gst/rtp/gstrtpmp4gpay.c:
17716         * gst/rtp/gstrtpmp4vdepay.c:
17717         * gst/rtp/gstrtpmp4vpay.c:
17718         * gst/rtp/gstrtpmpadepay.c:
17719         * gst/rtp/gstrtpmpapay.c:
17720         * gst/rtp/gstrtppcmadepay.c:
17721         * gst/rtp/gstrtppcmapay.c:
17722         * gst/rtp/gstrtppcmudepay.c:
17723         * gst/rtp/gstrtppcmupay.c:
17724         * gst/rtp/gstrtpspeexdepay.c:
17725         * gst/rtp/gstrtpspeexpay.c:
17726         * gst/rtsp/gstrtpdec.c:
17727         * gst/smpte/gstsmpte.c:
17728         * gst/videobox/gstvideobox.c:
17729         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17730         * gst/videofilter/gstvideobalance.c:
17731         * gst/videofilter/gstvideoflip.c:
17732         * gst/videofilter/gstvideotemplate.c:
17733         (gst_videotemplate_base_init):
17734         * gst/videomixer/videomixer.c:
17735         * gst/wavenc/gstwavenc.c:
17736         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17737          better/unified long descriptions
17738          Fixed #336602
17739          Some cleanups to auparse, don't send multiple newsegments.
17740
17741 2006-03-29  Wim Taymans  <wim@fluendo.com>
17742
17743         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17744
17745         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17746         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17747         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17748         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17749         * ext/dv/gstdvdemux.h:
17750         Seek in READY patch. Only works for pull based mode.
17751         Fixes #323880
17752
17753 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
17754
17755         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17756         (gst_gdk_pixbuf_event):
17757           Fix two crashers: don't unref the same caps twice, and
17758           set pixbuf loader to NULL after freeing it.
17759
17760 2006-03-27  Wim Taymans  <wim@fluendo.com>
17761
17762         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17763         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17764         (gst_speexenc_chain):
17765         * ext/speex/gstspeexenc.h:
17766         Don't leak adapter.
17767         A push *always* takes ownership of the buffer, even on
17768         errors.
17769         Small cleanups.
17770
17771 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
17772
17773         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17774           Create source pad without leaking.
17775
17776 2006-03-24  Wim Taymans  <wim@fluendo.com>
17777
17778         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17779         * ext/flac/gstflacdec.h:
17780         * ext/flac/gstflacenc.h:
17781         Spifify a bit.
17782         Fix deadly lock order error in seeking code, STREAM_LOCK
17783         cannot be taken within LOCK and the streaming variables are
17784         protected with the STREAM_LOCK anyway.
17785
17786 2006-03-24  Wim Taymans  <wim@fluendo.com>
17787
17788         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17789         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17790         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17791         this patch combines the global init_frames with the stream
17792         init_frames. Rationale being that the global delay should 
17793         be subtracted from any stream delay.
17794         Fixes #335858.
17795
17796 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
17797
17798         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17799         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17800         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17801         * gst/videomixer/videomixer.c: (gst_videomixer_init):
17802         use DEBUG_FUNCPTR for collectpads
17803
17804 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
17805
17806         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17807           Don't crash when encoding images where the number of rows isn't
17808           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17809
17810 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17811
17812         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17813         * gst/interleave/deinterleave.c: (deinterleave_change_state):
17814         * gst/interleave/interleave.c: (interleave_change_state):
17815         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17816           More state change function fixes.
17817
17818 2006-03-23  Wim Taymans  <wim@fluendo.com>
17819
17820         * ext/esd/esdsink.c: (gst_esdsink_class_init),
17821         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17822         (gst_esdsink_prepare), (gst_esdsink_unprepare),
17823         (gst_esdsink_delay), (gst_esdsink_reset):
17824         * ext/esd/esdsink.h:
17825         Fix esd choppy playback by configuring audiosink
17826         correctly. Fixes #325191
17827
17828 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17829
17830         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17831           Make state change function thread-safe.
17832
17833 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17834
17835         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17836         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17837           Don't try to read beyond the end of the file just because
17838           the header claims a bigger size (like with truncated files).
17839
17840 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17841
17842         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17843         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17844         (gst_wavparse_stream_data), (gst_wavparse_loop):
17845         * gst/wavparse/gstwavparse.h:
17846           Delay source pad creation until we have the first chunk of
17847           media data, so the we can examine the data and adjust the
17848           caps accordingly if required. This makes playback of .wav
17849           files with DTS-declared-as-PCM content work (#313266).
17850
17851 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
17852
17853         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17854         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17855         Don't attempt typefinding on too-short buffers that have been
17856         completely trimmed away. (Fixes #330239)
17857
17858         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17859         Improve the debug output
17860
17861 2006-03-21  Wim Taymans  <wim@fluendo.com>
17862
17863         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17864         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17865         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17866         (gst_esdsink_set_property), (gst_esdsink_get_property):
17867         Some cleanups.
17868         Reset fd to -1 when we close them.
17869
17870 2006-03-21  Wim Taymans  <wim@fluendo.com>
17871
17872         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17873         the OPTIONS request result is optional so don't
17874         fail on it.
17875
17876 2006-03-21  Edward Hervey  <edward@fluendo.com>
17877
17878         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17879         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17880         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17881         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17882         (gst_wavparse_change_state):
17883         gcc 4.1 unreferenced pointer fixes.
17884
17885 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
17886
17887         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17888
17889         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17890           Fix block alignment calculation. Alignment should be done before
17891           adding the byte offset where the data starts (#335231).
17892
17893 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17894
17895         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17896           Ensure that we set correct caps on buffers that are transferred
17897           direct from the input.
17898
17899 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17900
17901         * gst/goom/filters.c: (zoomFilterDestroy):
17902         * gst/goom/goom_core.c: (goom_close):
17903           Free filter data when cleaning up. (Fixes: #334995)
17904
17905 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
17906
17907         * configure.ac:
17908           Don't compile udp and rtsp plugins on win32 (mingw) or other
17909           systems that don't have <sys/socket.h> for some reason (#316203).
17910
17911 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17912
17913         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17914         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17915         * ext/raw1394/gstdv1394src.h:
17916           Change bus reset handler so it reports useful information such as
17917           whether the device being used connected or disconnected
17918
17919 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17920
17921         * gst/id3demux/id3v2frames.c:
17922         (parse_relative_volume_adjustment_two):
17923           We only care about gain and peak data for the master volume.
17924
17925 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17926
17927         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17928         (parse_id_string), (parse_unique_file_identifier),
17929         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
17930           Read replay gain tags (#323721).
17931
17932 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17933
17934         * configure.ac:
17935           Bump requirements to gst-plugins-base CVS because
17936           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
17937
17938 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
17939
17940         * rtp/gst/gstrtppcmadepay.c:
17941         Fixed one of the caps in the code from mulaw to alaw.
17942
17943 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
17944
17945         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17946           Ensure that we set caps on the buffers we pass.
17947
17948         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
17949         (gst_id3demux_sink_activate):
17950           Ensure that we set caps on the buffers we pass.
17951
17952           Use STREAM, TYPE_NOT_FOUND as the error class when
17953           typefinding fails.
17954
17955 2006-03-15  Edward Hervey  <edward@fluendo.com>
17956
17957         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
17958         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
17959         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
17960         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
17961         (gst_jpeg_dec_setcaps):
17962         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
17963         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
17964         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
17965         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
17966         (gst_mngdec_src_getcaps):
17967         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17968         (gst_pngdec_caps_create_and_set):
17969         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
17970         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
17971         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
17972         * gst/alpha/gstalpha.c: (gst_alpha_init):
17973         * gst/auparse/gstauparse.c: (gst_au_parse_init):
17974         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
17975         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
17976         * gst/cutter/gstcutter.c: (gst_cutter_init):
17977         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
17978         (gst_efence_checkgetrange):
17979         * gst/debug/negotiation.c: (gst_negotiation_init):
17980         * gst/flx/gstflxdec.c: (gst_flxdec_init):
17981         * gst/goom/gstgoom.c: (gst_goom_init):
17982         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
17983         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
17984         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
17985         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
17986         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
17987         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
17988         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
17989         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17990         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
17991         (gst_wavparse_create_sourcepad):
17992         Fix memleak with gst_static_pad_template_get().
17993         This uses gst_pad_new_from_static_template() instead.
17994         Fixes #333512
17995
17996 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17997
17998         * configure.ac:
17999           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
18000           used by id3demux.
18001
18002         * gst/id3demux/gstid3demux.c: (plugin_init):
18003         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18004         (parse_user_text_identification_frame),
18005         (parse_unique_file_identifier):
18006           Add support for UFID and TXXX frames and extract musicbrainz tags.
18007
18008 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18009
18010         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18011           Catch short reads, like they might happen with truncated
18012           files (see #305279); remove unnecessary indentation.
18013
18014 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18015
18016         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18017           Fix DIB image inversion for pictures with a
18018           depth != 8 (#305279).
18019
18020 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18021
18022         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
18023         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
18024         * ext/jpeg/gstjpegdec.h:
18025           Fix durations on outgoing buffers after seeking
18026           in MJPEG files (#334083); some minor clean-ups.
18027
18028 2006-03-13  Wim Taymans  <wim@fluendo.com>
18029
18030         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
18031         (gst_wavparse_change_state):
18032         Implement seek in READY (re-fixes #327658)
18033
18034 2006-03-13  Wim Taymans  <wim@fluendo.com>
18035
18036         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
18037         * ext/esd/esdmon.c: (gst_esdmon_get):
18038         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
18039         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
18040         (gst_gdk_pixbuf_sink_getcaps):
18041         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
18042         (gst_jpegenc_setcaps):
18043         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
18044         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
18045         (gst_smokeenc_setcaps):
18046         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
18047         (gst_mngdec_src_getcaps):
18048         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
18049         (gst_mngenc_chain):
18050         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
18051         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
18052         * ext/speex/gstspeexdec.c: (speex_dec_convert),
18053         (speex_dec_src_event), (speex_dec_chain):
18054         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
18055         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
18056         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
18057         (gst_negotiation_pad_link), (gst_negotiation_chain):
18058         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18059         (gst_flxdec_chain):
18060         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
18061         (deinterleave_chain):
18062         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
18063         * gst/median/gstmedian.c: (gst_median_link):
18064         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
18065         (gst_monoscope_chain):
18066         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
18067         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
18068         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
18069         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
18070         close #333784 unref the result of gst_pad_get_parent()
18071         by: Christophe Fergeau.
18072
18073 2006-03-09  Wim Taymans  <wim@fluendo.com>
18074
18075         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18076         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
18077         Handle events in push mode better, can now do non-flushing
18078         seeks in push mode as well.
18079
18080 2006-03-07  Wim Taymans  <wim@fluendo.com>
18081
18082         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
18083         Applied patch from Kai Vehmanen, fixes #333624.
18084
18085 2006-03-06  Julien MOUTTE  <julien@moutte.net>
18086
18087         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
18088         Implement paletted and grayscale png files handling.
18089         (#150363).
18090
18091 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18092
18093         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
18094         (gst_speexenc_chain):
18095           fix a tag list assert
18096           follow gst-plugins-base/ext/ogg/README; set OFFSET
18097           and OFFSET_END.  Muxes correctly with gst-plugins-base
18098           > 0.9.3
18099
18100 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18101
18102         * gst/id3demux/Makefile.am:
18103         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
18104         (gst_id3demux_chain), (gst_id3demux_sink_activate):
18105           Use new typefind helper functions here as well, and
18106           do typefinding in pull-mode if upstream supports that.
18107
18108 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18109
18110         * sys/sunaudio/gstsunaudiomixerctrl.c:
18111         (gst_sunaudiomixer_ctrl_get_volume),
18112         (gst_sunaudiomixer_ctrl_set_volume):
18113         * sys/sunaudio/gstsunaudiomixertrack.c:
18114         (gst_sunaudiomixer_track_new):
18115           Remove unused variables, breaks build from CVS
18116           with -Werror (#333392, patch by: Benjamin Pineau)
18117
18118 2006-03-03  Wim Taymans  <wim@fluendo.com>
18119
18120         * docs/plugins/Makefile.am:
18121         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18122         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18123         Added wavparse docs.
18124
18125         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18126         (gst_wavparse_reset), (gst_wavparse_init),
18127         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18128         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18129         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18130         (gst_wavparse_stream_data), (gst_wavparse_loop),
18131         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18132         (gst_wavparse_change_state):
18133         * gst/wavparse/gstwavparse.h:
18134         Implement seek in READY (fixes #327658)
18135         Added docs and did some cleanups.
18136
18137 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18138
18139         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18140         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18141         (gst_avi_demux_calculate_durations_from_index),
18142         (gst_avi_demux_stream_header):
18143         * gst/avi/gstavidemux.h:
18144           If we have an index, use a duration based on the index instead
18145           of blindly trusting the information in the stream headers
18146           (fixes #331817).
18147
18148 2006-03-03  Wim Taymans  <wim@fluendo.com>
18149
18150         * docs/plugins/Makefile.am:
18151         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18152         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18153         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18154         Added smoke and jpeg to the docs.
18155
18156         * ext/jpeg/Makefile.am:
18157         * ext/jpeg/gstjpeg.c: (plugin_init):
18158         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18159         * ext/jpeg/gstjpegenc.h:
18160         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18161         (gst_smokedec_chain):
18162         * ext/jpeg/gstsmokedec.h:
18163         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18164         * ext/jpeg/gstsmokeenc.h:
18165         * ext/jpeg/smokecodec.h:
18166         Port smokedec (fixes #331905).
18167         Added some docs.
18168         Some cleanups.
18169
18170 2006-03-03  Wim Taymans  <wim@fluendo.com>
18171
18172         * docs/plugins/Makefile.am:
18173         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18174         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18175         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18176         Added videobalance and videoflip to the docs.
18177
18178         * gst/videofilter/Makefile.am:
18179         * gst/videofilter/gstvideobalance.c:
18180         (gst_video_balance_update_tables_planar411),
18181         (gst_video_balance_is_passthrough),
18182         (gst_video_balance_update_properties), (oil_tablelookup_u8),
18183         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18184         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18185         (gst_video_balance_finalize), (gst_video_balance_class_init),
18186         (gst_video_balance_init), (gst_video_balance_interface_supported),
18187         (gst_video_balance_interface_init),
18188         (gst_video_balance_colorbalance_list_channels),
18189         (gst_video_balance_colorbalance_set_value),
18190         (gst_video_balance_colorbalance_get_value),
18191         (gst_video_balance_colorbalance_init),
18192         (gst_video_balance_set_property), (gst_video_balance_get_property),
18193         (gst_video_balance_get_type), (plugin_init):
18194         * gst/videofilter/gstvideobalance.h:
18195         Ported to 0.10. (Fixes #326160)
18196         Added docs.
18197
18198         * gst/videofilter/gstvideoflip.c:
18199         * gst/videofilter/gstvideoflip.h:
18200         Added docs.
18201
18202 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
18203
18204         * configure.ac:
18205           Bump requirements to current core and -base CVS
18206           (core for new typefind helper API, and -base for the
18207           WAVFORMATEX support that was added to libgstriff and
18208           is needed by wavparse).
18209         
18210         * gst/apetag/Makefile.am:
18211         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18212         (gst_tag_demux_sink_activate):
18213           Use new typefind helpers for typefinding instead of our
18214           home-grown stuff; also, do typefinding in pull-mode if
18215           upstream supports that.
18216
18217 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
18218
18219         Reviewed by: Christian Schaller <christian@fluendo.com>
18220
18221         This patch fixes bug: 329107
18222
18223         This Changelog entry is for a commit done on February 17
18224
18225         * ext/gconf/gconf.c
18226         * ext/gconf/gconf.h
18227         * ext/gconf/gstgconfaudiosink.c
18228         * ext/gconf/gstgconfaudiosink.h
18229         * gconf/gstreamer.schemas.in
18230
18231 2006-02-28  Wim Taymans  <wim@fluendo.com>
18232
18233         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18234         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18235         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18236         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18237         Use DEBUG_OBJECT more.
18238
18239 2006-02-28  Wim Taymans  <wim@fluendo.com>
18240
18241         * docs/plugins/Makefile.am:
18242         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18243         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18244         Added dvdec and dvdemux to docs.
18245
18246         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18247         Added docs.
18248         Check frame sizes so we don't crash when don't have enough
18249         data.
18250         Send nice error messages on error.
18251
18252         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18253         (gst_dvdemux_class_init), (gst_dvdemux_init),
18254         (gst_dvdemux_finalize), (gst_dvdemux_reset),
18255         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18256         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18257         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18258         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18259         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18260         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18261         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18262         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18263         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18264         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18265         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18266         * ext/dv/gstdvdemux.h:
18267         Added docs.
18268         Implement pull mode.
18269         Fix memleaks.
18270         Reduce memcpy for the video demuxing.
18271
18272 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
18273
18274         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18275         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18276         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18277         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18278           Add a little extra debug. Make the decoder not return NOT_LINKED,
18279           as we want to continue decoding all CMML and emitting tags.
18280
18281 2006-02-27  Michael Smith  <msmith@fluendo.com>
18282
18283         * ext/annodex/gstskeltag.c:
18284         * ext/annodex/gstskeltag.h:
18285           Deleted; these files aren't used any more either.
18286
18287 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18288
18289         * ext/Makefile.am: Fix dist-check.
18290
18291 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18292
18293         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18294         memleak.
18295
18296 2006-02-25  Alessandro Decina <alessandro@nnva.org>
18297
18298         * ext/annodex/Makefile.am:
18299         * ext/annodex/gstannodex.c:
18300         * ext/annodex/gstcmmldec.c:
18301         * ext/annodex/gstcmmlenc.c:
18302         * ext/annodex/gstcmmlparser.c:
18303         * ext/annodex/gstcmmlparser.h:
18304         * ext/annodex/gstcmmlutils.c:
18305         * tests/check/elements/cmmldec.c:
18306         * tests/check/elements/cmmlenc.c:
18307           Fix a memleak in gst_cmml_track_list_add_clip.
18308           Handle overflows in clip's start and end times.
18309           Add the "encoded" parameter to cmmldec and cmmlenc caps.
18310           Do not parse junk at the end of a CMML preamble buffer.
18311           Register a libxml error handler to not print stuff on stderr.
18312           Check for bad clip start and end times in the testsuites.
18313
18314 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18315
18316         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18317         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18318         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18319         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18320         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18321         possible memleaks.
18322
18323 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18324
18325         * tests/check/Makefile.am:
18326         * tests/check/elements/cmmldec.c:
18327         * tests/check/elements/cmmlenc.c: Fix tests so that they use
18328         the plugins-base tags.
18329
18330 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18331
18332         * ext/Makefile.am: Re-enable module.
18333
18334 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18335
18336         * tests/check/Makefile.am: Forgot to remove that test.
18337
18338 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18339
18340         * ext/annodex/Makefile.am:
18341         * ext/annodex/gstannodex.c: (plugin_init):
18342         * ext/annodex/gstcmmldec.c:
18343         * ext/annodex/gstskeldec.c:
18344         * ext/annodex/gstskeldec.h:
18345         * tests/check/Makefile.am:
18346         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18347
18348 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18349
18350         * tests/check/Makefile.am: Disable those checks as well.
18351
18352 2006-02-24  Julien MOUTTE  <julien@moutte.net>
18353
18354         * ext/Makefile.am: Disable annodex for now until we figure out
18355         how to make it build.
18356         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18357         Add a rule to your checklist : "please try to at least build 
18358         what you are going to commit into -good, or if you are too lazy
18359         to do that, please check that the buildbots are not crying because
18360         of your commit."
18361
18362 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18363
18364         * configure.ac:
18365         * ext/Makefile.am:
18366         * ext/gdk_pixbuf/Makefile.am:
18367         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18368         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18369         * ext/gdk_pixbuf/pixbufscale.c:
18370         * ext/gdk_pixbuf/pixbufscale.h:
18371           Gdkpixbuf ported from 0.8 to 0.10 by
18372           Renato Filho <renato.filho@indt.org.br>.
18373           gst_loader and gdkpixbufanimation still need port.
18374
18375 2006-02-24  Michael Smith  <msmith@fluendo.com>
18376
18377         * configure.ac:
18378         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18379         * ext/Makefile.am:
18380         * ext/annodex/Makefile.am:
18381         * ext/annodex/gstannodex.c:
18382         * ext/annodex/gstannodex.h:
18383         * ext/annodex/gstcmmldec.c:
18384         * ext/annodex/gstcmmldec.h:
18385         * ext/annodex/gstcmmlenc.c:
18386         * ext/annodex/gstcmmlenc.h:
18387         * ext/annodex/gstcmmlparser.c:
18388         * ext/annodex/gstcmmlparser.h:
18389         * ext/annodex/gstcmmltag.c:
18390         * ext/annodex/gstcmmltag.h:
18391         * ext/annodex/gstcmmlutils.c:
18392         * ext/annodex/gstcmmlutils.h:
18393         * ext/annodex/gstskeldec.c:
18394         * ext/annodex/gstskeldec.h:
18395         * ext/annodex/gstskeltag.c:
18396         * ext/annodex/gstskeltag.h:
18397         * tests/check/Makefile.am:
18398         * tests/check/elements/cmmldec.c:
18399         * tests/check/elements/cmmlenc.c:
18400         * tests/check/elements/skeldec.c:
18401           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
18402           Includes tests & docs, oh my! Passes Thomas's -good checklist
18403           entirely. Wow.
18404
18405 2006-02-24  Michael Smith  <msmith@fluendo.com>
18406
18407         * autogen.sh:
18408           Check for automake 1.9 as well.
18409
18410 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18411
18412         * ext/flac/gstflacenc.c:
18413           Change min. sample rate to 8kHz to match flacdec's.
18414           
18415 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
18416
18417         * ext/cdio/Makefile.am:
18418           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18419           required for Cygwin, see #317048)
18420
18421         * gst/rtp/gstasteriskh263.c:
18422           Cygwin has includes for both the unix network socket API
18423           and the windows API, but only one can be included, so fix
18424           includes to only use one or the other, prefering the unxi
18425           one (#317048).
18426
18427 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18428
18429         * rtp/gst/gstrtppcmadepay.c:
18430         * rtp/gst/gstrtppcmadepay.h:
18431         * rtp/gst/gstgstrtppcmapay.c:
18432         * rtp/gst/gstgstrtppcmapay.h:
18433         * rtp/gst/gstrtppcmudepay.c:
18434         * rtp/gst/gstrtppcmudepay.h:
18435         * rtp/gst/gstrtppcmupay.c:
18436         * rtp/gst/gstrtppcmupay.h:
18437         * rtp/gst/Makefile.am:
18438         * rtp/gst/gstrtp.c:
18439         * rtp/gst/README:
18440         Separated the G711 payloaders/depayloaders into separate elements for
18441         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18442
18443 2006-02-22  Wim Taymans  <wim@fluendo.com>
18444
18445         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18446         (gst_dvdec_change_state):
18447         * ext/dv/gstdvdec.h:
18448         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18449         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18450         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18451         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18452         (gst_dvdemux_flush), (gst_dvdemux_chain),
18453         (gst_dvdemux_change_state):
18454         * ext/dv/gstdvdemux.h:
18455         Ueber spiffify some more, added debug category.
18456         Use _scale.
18457         Use segments, respect playback rate from newsegment.
18458         Fix refcount issue.
18459
18460 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18461
18462         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18463         (gst_signal_processor_process):
18464         Fix compilation of LADPSA. It doesn't seem to work, and isn't
18465         enabled for the build, but it helps me win the feature-count
18466         competitions ooh yeah.
18467
18468 2006-02-19  Wim Taymans  <wim@fluendo.com>
18469
18470         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18471         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18472         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18473         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18474         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18475         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18476         Use scaling code for added precission and more correct stop
18477         position in case scale==0.
18478
18479 2006-02-19  Wim Taymans  <wim@fluendo.com>
18480
18481         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18482         (gst_flxdec_chain):
18483         * gst/flx/gstflxdec.h:
18484         Implement DURATION query.
18485
18486 2006-02-19  Wim Taymans  <wim@fluendo.com>
18487
18488         * gst/flx/flx_color.h:
18489         * gst/flx/flx_fmt.h:
18490         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18491         (gst_flxdec_src_query_handler), (flx_decode_color),
18492         (gst_flxdec_chain):
18493         * gst/flx/gstflxdec.h:
18494         Set MALLOCDATA for the temp buffers so we don't leak.
18495         Some debug cleanups.
18496         Consume all data in the adapter before leaving the chain
18497         function. Fixes #330678.
18498
18499 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
18500
18501         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18502         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18503          Handle 0 data size in otherwise valid frames.
18504          Handle numeric strings in 2.4.0 even when not in parentheses 
18505
18506 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
18507
18508         * gst/matroska/matroska-demux.c:
18509         (gst_matroska_demux_subtitle_caps),
18510         (gst_matroska_demux_plugin_init):
18511         * gst/matroska/matroska-ids.h:
18512           Recognise SSA/ASS and USF subtitle formats and
18513           set proper caps when they are found.
18514
18515 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18516
18517         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18518         (gst_jpeg_dec_chain):
18519           Fix invalid memory access for some odd-sized images
18520           (see image contained in quicktime stream in #327083);
18521           use g_malloc() instead of g_alloca().
18522
18523 2006-02-17  Wim Taymans  <wim@fluendo.com>
18524
18525         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18526         Patch from Sebastien Cote, fixes #319884
18527
18528 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18529
18530         * ext/cdio/gstcdio.c: (plugin_init):
18531           Init debug category (#331253).
18532
18533 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18534
18535         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18536           Pass extra_data to gst_riff_create_audio_caps(), so that
18537           WAVEFORMATEX stuff works. Post audio codec name and post
18538           it as taglist on the bus. Allow up to 8 channesl for raw
18539           PCM in the source pad template caps.
18540
18541 2006-02-16  Wim Taymans  <wim@fluendo.com>
18542
18543         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18544         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18545         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18546         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18547         (gst_multipart_set_property), (gst_multipart_get_property):
18548         Applied #318663. Gives quite a few false positives in
18549         autoscan mode, but it's better than nothing. Not closing yet.
18550
18551 2006-02-16  Wim Taymans  <wim@fluendo.com>
18552
18553         * docs/plugins/Makefile.am:
18554         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18555         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18556         * docs/plugins/gst-plugins-good-plugins.args:
18557         * docs/plugins/inspect/plugin-udp.xml:
18558         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18559         (gst_udpsrc_start):
18560         Update documentation.
18561         Fix args.
18562
18563 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
18564
18565         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18566         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18567         frame size. (Fixes #331368)
18568
18569 2006-02-16  Wim Taymans  <wim@fluendo.com>
18570
18571         * gst/rtsp/README:
18572         Updated README.
18573
18574         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18575         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18576         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18577         * gst/rtsp/gstrtspsrc.h:
18578         Make sure the RTP port is an even port an try to allocate 
18579         another if not.
18580         Added retry property to control max retries for port allocation.
18581         Make sure RTCP port is RTP port+1.
18582         Cleanup when port allocation fails.
18583         Fixes #319183.
18584         
18585 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18586
18587         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18588           Don't ignore return value of the parent class's state
18589           change function (#331385, patch by: Wouter Paesen).
18590
18591 2006-02-15  Wim Taymans  <wim@fluendo.com>
18592
18593         * configure.ac:
18594         * docs/plugins/Makefile.am:
18595         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18596         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18597         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18598         * ext/Makefile.am:
18599         * ext/hal/Makefile.am:
18600         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18601         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18602         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18603         (do_toggle_element), (gst_hal_audio_sink_set_property),
18604         (gst_hal_audio_sink_get_property),
18605         (gst_hal_audio_sink_change_state):
18606         * ext/hal/gsthalaudiosink.h:
18607         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18608         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18609         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18610         (do_toggle_element), (gst_hal_audio_src_set_property),
18611         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18612         * ext/hal/gsthalaudiosrc.h:
18613         * ext/hal/gsthalelements.c: (plugin_init):
18614         * ext/hal/gsthalelements.h:
18615         * ext/hal/hal.c: (gst_hal_get_string),
18616         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18617         (gst_hal_get_audio_src):
18618         * ext/hal/hal.h:
18619         Add HAL sound device wrapper plugins. Closes #329106
18620
18621 2006-02-15  Wim Taymans  <wim@fluendo.com>
18622
18623         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18624         Add comment in a fultile attempt to stop the copy-and-paste 
18625         paradigm leading to duplication of bad code.
18626
18627         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18628         Mime parameters have to be checked case insensitive
18629
18630 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18631
18632         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18633           Advance stream time for lagging subtitle streams by sending
18634           newsegment events with the update flag set.
18635
18636 2006-02-14  Edward Hervey  <edward@fluendo.com>
18637
18638         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18639         There can be bogus data before the hdrl LIST tag in the RIFF header.
18640         It's hard to say if it's not respecting the AVI specifications or not,
18641         but since Google Video is producing AVIs like that and the other player
18642         don't seem to complain, I guess we should do the same.
18643
18644 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
18645
18646         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18647         (parse_split_strings):
18648         Add more validation to ensure that a char encoding conversion
18649         produced a valid UTF-8 string.
18650
18651 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
18652
18653         Reviewed by: Edward Hervey  <edward@fluendo.com>
18654
18655         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18656         Properly handle end of segment. Closes #330885.
18657
18658 2006-02-13  Wim Taymans  <wim@fluendo.com>
18659
18660         * gst/rtp/gstrtpmp4gpay.h:
18661         For got to commit this one.
18662
18663 2006-02-12  Wim Taymans  <wim@fluendo.com>
18664
18665         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18666         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18667         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18668         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18669         * gst/rtp/gstrtpmp4gpay.h:
18670         Make more things work.
18671         Handle ACC config strings.
18672
18673 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18674
18675         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18676           set timestamps if no incoming timestamps set
18677
18678 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
18679
18680         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18681         (gst_tag_demux_do_typefind):
18682           ... and fix the very same leaks in GstTagDemux.
18683
18684 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
18685
18686         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18687         (gst_id3demux_do_typefind):
18688         Fix a couple of mem leaks. (Patch by Jonathan Matthew
18689         <jonathan at kaolin dot wh9 dot net>)
18690
18691 2006-02-10  Wim Taymans  <wim@fluendo.com>
18692
18693         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18694         First set options, then set caps or else the baseclass
18695         will not know about the options, duh.
18696
18697 2006-02-10  Wim Taymans  <wim@fluendo.com>
18698
18699         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18700         (gst_rtp_mp4v_pay_setcaps):
18701         Don't waste time looking for a config string if we have codec_info
18702         on the incomming caps.
18703
18704 2006-02-10  Wim Taymans  <wim@fluendo.com>
18705
18706         * gst/rtp/README:
18707         Say something about case-sensitivity of caps vs mime-attributes.
18708
18709         * gst/rtp/Makefile.am:
18710         * gst/rtp/gstrtp.c: (plugin_init):
18711         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18712         (gst_rtp_amr_pay_handle_buffer):
18713         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18714         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18715         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18716         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18717         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18718         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18719         (gst_rtp_mp4g_pay_plugin_init):
18720         * gst/rtp/gstrtpmp4gpay.h:
18721         Added beginnings of mpeg4-generic payloader (RFC 3640)
18722
18723 2006-02-09  Wim Taymans  <wim@fluendo.com>
18724
18725         * gst/rtsp/Makefile.am:
18726         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18727         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18728         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18729         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18730         (gst_rtpdec_change_state):
18731         * gst/rtsp/gstrtpdec.h:
18732         * gst/rtsp/gstrtsp.c: (plugin_init):
18733         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18734         * gst/rtsp/rtspconnection.c: (read_body),
18735         (rtsp_connection_receive):
18736         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18737         Resurected rtpdec to make rtspsrc happy again.
18738         Skip attributes from the session id.
18739         Don't crash when dumping a message with an empty body.
18740
18741
18742 2006-02-09  Wim Taymans  <wim@fluendo.com>
18743
18744         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18745         Added more meaningfull warnings when something goes wrong.
18746         Clear F bit on outgoing AMR packets.
18747
18748         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18749         (gst_rtp_amr_pay_handle_buffer):
18750         Added debugging category
18751         Support payloading of multiple AMR frames.
18752
18753         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18754         Added some debugging.
18755
18756 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18757
18758         * configure.ac:
18759           Back to CVS
18760
18761 === release 0.10.2 ===
18762
18763 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18764
18765         * configure.ac:
18766           releasing 0.10.2, "Papa was a rolling stone"
18767
18768 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18769
18770         * configure.ac:
18771           Bump core and plugins-base requirement to 0.10.2.2
18772           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18773
18774 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18775
18776         * ext/flac/gstflac.c: (plugin_init):
18777         * ext/speex/gstspeex.c: (plugin_init):
18778           Register musicbrainz tags.
18779
18780 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18781
18782         * ext/gconf/gconf.h:
18783           Remove declaration of function that no longer exists.
18784
18785 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18786
18787         * ext/shout2/gstshout2.c: (gst_shout2send_render),
18788         (gst_shout2send_setcaps), (gst_shout2send_change_state):
18789         Make shout2 work for non ogg streams
18790
18791 2006-02-06  Wim Taymans  <wim@fluendo.com>
18792
18793         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18794         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18795         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18796         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18797         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18798         * gst/udp/gstmultiudpsink.h:
18799         Updated docs.
18800         Added properties bytes-served, bytes_to_serve.
18801         Post proper error messages,
18802         Emit client added signal too.
18803
18804 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18805
18806         * docs/plugins/Makefile.am:
18807         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18808         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18809         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18810         (gst_multiudpsink_get_stats):
18811           adding docs for multiudpsink
18812
18813 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18814
18815         * gst/level/gstlevel.c: (gst_level_transform_ip):
18816           peak below decay is not necessarily an error, so don't ERROR log
18817
18818 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18819
18820         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18821         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18822         (gst_ebml_write_seek):
18823         * gst/matroska/ebml-write.h:
18824           Make sure we send a newsegment event in BYTES format
18825           before sending buffers (#328531).
18826
18827 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18828
18829         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18830         (gst_dvdemux_sink_query):
18831         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18832         * ext/speex/gstspeexdec.c: (speex_get_query_types),
18833         (speex_dec_src_query):
18834         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18835         (gst_speexenc_sink_query):
18836         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18837         * gst/matroska/matroska-demux.c:
18838         (gst_matroska_demux_get_src_query_types),
18839         (gst_matroska_demux_handle_src_query):
18840         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18841         (gst_wavparse_pad_query):
18842           Pass unhandled queries upstream instead of just dropping
18843           them (#326446). Update query type arrays here and there.
18844
18845 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18846
18847         * tests/check/elements/matroskamux.c: (setup_src_pad):
18848           Collectpads in core got changed and now also holds a
18849           reference to any pad that is part of it. Fix refcount
18850           checks in test case accordingly.
18851
18852 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18853
18854         * gst/apetag/gstapedemux.h:
18855           Fix include, for now GstTagDemux is in the apetag dir.
18856
18857 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18858
18859         * docs/plugins/Makefile.am:
18860         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18861         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18862         * docs/plugins/inspect/plugin-cdio.xml:
18863           Add cdio plugin to docs.
18864
18865         * ext/cdio/gstcdiocddasrc.c:
18866           Add gtk-doc blurb.
18867
18868         * ext/cdio/gstcdio.c:
18869           The plugin is called 'cdio' not 'cddio'.
18870
18871 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18872
18873         * configure.ac:
18874         * docs/plugins/Makefile.am:
18875         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18876         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18877         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18878         * docs/plugins/inspect/plugin-apetag.xml:
18879         * gst/apetag/Makefile.am:
18880         * gst/apetag/gstapedemux.c:
18881         * gst/apetag/gstapedemux.h:
18882         * gst/apetag/gsttagdemux.c:
18883         * gst/apetag/gsttagdemux.h:
18884           Add APE tag demuxer (#325649).
18885
18886 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18887
18888         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18889         (gst_gconf_get_default_video_sink),
18890         (gst_gconf_get_default_audio_src),
18891         (gst_gconf_get_default_video_src):
18892         * ext/gconf/gconf.h:
18893         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18894         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18895         (do_toggle_element):
18896         * ext/gconf/gstgconfaudiosink.h:
18897         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18898         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18899         (do_toggle_element):
18900         * ext/gconf/gstgconfaudiosrc.h:
18901         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18902         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18903         (do_toggle_element):
18904         * ext/gconf/gstgconfvideosink.h:
18905         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18906         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18907         (do_toggle_element):
18908         * ext/gconf/gstgconfvideosrc.h:
18909           Ignore changing the GConf key to "". Ignore GConf key updates
18910           that don't actually change the string.
18911           For now, ignore the GConf key when the state is > READY, as
18912           it breaks streaming. Sometime it will be nice to bring the
18913           new sink online even mid-stream, by sending NEWSEGMENT info
18914           and possibly prerolling.
18915           (Fixes #326736)
18916
18917 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18918
18919         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18920         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18921         (zoomFilterSetResolution), (zoomFilterDestroy),
18922         (zoomFilterFastRGB), (pointFilter):
18923         * gst/goom/filters.h:
18924         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
18925         (goom_update), (goom_close):
18926         * gst/goom/goom_core.h:
18927         * gst/goom/goom_tools.h:
18928         * gst/goom/graphic.c:
18929         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18930         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
18931         * gst/goom/gstgoom.h:
18932         * gst/goom/lines.c: (goom_lines):
18933         * gst/goom/lines.h:
18934           Make goom reentrant by moving all important static variables
18935           into instance structures.
18936           (Fixes #329181)
18937
18938 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
18939
18940         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
18941         (gst_avi_demux_all_source_pads_unlinked),
18942         (gst_avi_demux_process_next_entry):
18943         * gst/avi/gstavidemux.h:
18944           Third attempt, use gst_pad_is_linked() this time.
18945
18946 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
18947
18948         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18949         (parse_split_strings):
18950         Adjust for data length indicators when parsing (Fixes #329810)
18951         Fix stupid bug parsing UTF-8 tag text.
18952         Output tag strings with multiple fields as multiple tags, so the
18953         app gets all the data.
18954
18955 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18956
18957         * ext/flac/gstflacenc.c:
18958         Fixed a bug add in last commit, where no event is send. Thanks Tim to
18959         show me.
18960         
18961 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18962
18963         * ext/flac/gstflacenc.c:
18964         * gst/matroska/ebml-read.c:
18965         Just make it compile with --disable-gst-debug.
18966
18967 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
18968
18969         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
18970         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
18971         (id3v2_genre_fields_to_taglist):
18972           Never output a tag with a null contents string.
18973
18974 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18975
18976         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
18977           Only pause if all pads are unlinked AND we've tried to send data
18978           on all of them at least once.
18979
18980 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18981
18982         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
18983         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
18984           Make loop function/task pause itself when all source pads are
18985           unlinked.
18986
18987 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18988
18989         * configure.ac:
18990         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
18991           Use new functions from core to render a bin from a
18992           string. Fixes build. Up requirements to core CVS.
18993
18994 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18995
18996         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
18997           Don't push buffers into the adapter that we are going to
18998           push downstream again without framing anyway. Also, the
18999           adaptor takes ownership of buffers put into it (fixes
19000           auparse pushing invalid buffers for .au files with
19001           ADPCM contents). Finally, set caps on all outgoing buffers.
19002
19003 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
19004
19005         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
19006         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
19007         (gst_id3demux_send_tag_event):
19008         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
19009         Someone should kick my butt. Remove ID3v1 tags from the end of the
19010         file.
19011
19012         Improve error messages. Send the TAG message as soon as we complete
19013         typefinding, instead of waiting until we send the first buffer.
19014         Downstream tag event is still sent before the first buffer.
19015
19016 2006-01-27  Jan Gerber  <j@bootlab.org>
19017
19018         Reviewed by: Andy Wingo <wingo@pobox.com>
19019
19020         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
19021         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
19022         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
19023         to not have warings flooding stderr. this is the suggested way
19024         also used in dvgrab and kino. (#328336)
19025
19026 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
19027
19028         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
19029         (gst_oss_sink_init), (gst_oss_sink_finalise):
19030           Free the device name string when finalised.
19031
19032 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
19033
19034         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
19035           Don't put function calls in g_return_if_fail() statements,
19036           or they'll be replaced with NOOPs if someone compiles with
19037           G_DISABLE_CHECKS defined.
19038           
19039 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
19040
19041         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19042         Never trust ANY information encoded in a media file, especially
19043         when it's giving you sizes. (Fixes #328452)
19044
19045 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
19046
19047         * gst/rtp/gstrtpg711pay.c:
19048         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
19049         bug #325148.
19050
19051 2006-01-23  Edward Hervey  <edward@fluendo.com>
19052
19053         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
19054         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
19055         * gst/matroska/matroska-ids.h:
19056         Added recognition of Real Audio and Video streams in matroska demuxer.
19057
19058 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19059
19060         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
19061           Remove errant break statement, and fix compilation with
19062           older GCC.
19063
19064 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
19065
19066         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19067
19068         * sys/sunaudio/gstsunaudiomixerctrl.c:
19069         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
19070           Export functions that are needed in other parts of the code,
19071           makes the mixer actually work; adjust magic minimum buffer-time
19072           value from 3ms to 5ms to work around stuttering during mp3
19073           playback (#327765).
19074
19075 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
19076
19077         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19078
19079         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
19080         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
19081           Fix possible deadlock in matroska muxer (#327825).
19082
19083 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
19084
19085         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
19086         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
19087         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
19088         * gst/rtsp/sdpmessage.h:
19089         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
19090         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
19091           C89 fixes: declare variables at the beginning of a block and
19092           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
19093           <jensgr at gmx dot net>).
19094
19095 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19096
19097         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19098         * gst/id3demux/id3tags.h:
19099         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19100         (parse_comment_frame), (parse_text_identification_frame),
19101         (id3v2_tag_to_taglist), (id3v2_are_digits),
19102         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
19103         (parse_split_strings), (free_tag_strings):
19104           Rewrite parsing of text tags to handle multiple NULL terminated
19105           strings. Parse numeric genre strings and ID3v2 type
19106           "(3)(6)Alternative" style genre strings.
19107           Parse dates that are only YYYY or YYYY-mm format.
19108           (Fixes #328241 and #322154)
19109
19110 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
19111
19112         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19113           Don't forget to initialize liboil, otherwise our oil functions
19114           will crash (fixes #327871; patch by: Christoph Burghardt
19115           <hawkes at web dot de>).
19116
19117 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19118
19119         * configure.ac:
19120           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19121           like in the core and gst-plugins-base. Fixes #324367 and #326683;
19122           patch by: Brian Cameron <brian dot cameron at sun dot com>
19123
19124 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19125
19126         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19127         * ext/cdio/gstcdio.h:
19128         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19129           Fix build for libcdio versions >= 76; give slightly lower rank
19130           than cdparanoia.
19131
19132 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19133
19134         * configure.ac:
19135         * ext/Makefile.am:
19136         * ext/cdio/Makefile.am:
19137         * ext/cdio/gstcdio.c:
19138         * ext/cdio/gstcdio.h:
19139         * ext/cdio/gstcdiocddasrc.c:
19140         * ext/cdio/gstcdiocddasrc.h:
19141           Port libcdio cdda source, formerly known as cddasrc, now known as
19142           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19143           but that's not tested (fixes #317658).
19144
19145 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19146
19147         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19148           Fix conversion from TIME to BYTES format (fixes #326864;
19149           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19150
19151 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
19152
19153         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19154           Fix compilation of id3demux when zlib is not present.
19155           (Fixes #326602; patch by: Sergey Scobich)
19156
19157 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
19158
19159         * ext/esd/Makefile.am:
19160           Add $(ESD_CFLAGS), otherwise build will fail for folks
19161           with libesd in a non-standard prefix (#327009).
19162
19163 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19164
19165         * configure.ac:
19166           back to HEAD
19167
19168 === release 0.10.1 ===
19169
19170 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
19171
19172         * configure.ac:
19173           releasing 0.10.1, "Li"
19174
19175 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19176
19177           patch by: Wim Taymans
19178
19179         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19180           fix memleak.  Fixes #326618
19181
19182 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19183
19184           patch by: Mike Smith
19185
19186         * gst/level/gstlevel.c: (gst_level_message_new),
19187         (gst_level_message_append_channel):
19188           Fix memleak.  Fixes #326612
19189
19190 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19191
19192         * configure.ac:
19193           prereleasing
19194         * po/af.po:
19195         * po/az.po:
19196         * po/cs.po:
19197         * po/en_GB.po:
19198         * po/hu.po:
19199         * po/it.po:
19200         * po/nb.po:
19201         * po/nl.po:
19202         * po/or.po:
19203         * po/sq.po:
19204         * po/sr.po:
19205         * po/sv.po:
19206         * po/uk.po:
19207         * po/vi.po:
19208           update translations
19209
19210 2006-01-10  Michael Smith  <msmith@fluendo.com>
19211
19212         * gst/level/gstlevel.c: (gst_level_class_init),
19213         (gst_level_dispose):
19214           Don't leak filter arrays.
19215
19216 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19217
19218         reviewed by: Christian Schaller <uraeus@gnome.org>
19219         
19220         * configure.ac:
19221         * gst-plugins-good.spec.in:
19222         * sys/Makefile.am:
19223         * sys/sunaudio/Makefile.am:
19224         * sys/sunaudio/gstsunaudio.c: (plugin_init):
19225         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19226         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19227         (gst_sunaudiomixer_change_state):
19228         * sys/sunaudio/gstsunaudiomixer.h:
19229         * sys/sunaudio/gstsunaudiomixerctrl.c:
19230         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19231         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19232         (gst_sunaudiomixer_ctrl_list_tracks),
19233         (gst_sunaudiomixer_ctrl_get_volume),
19234         (gst_sunaudiomixer_ctrl_set_volume),
19235         (gst_sunaudiomixer_ctrl_set_mute),
19236         (gst_sunaudiomixer_ctrl_set_record):
19237         * sys/sunaudio/gstsunaudiomixerctrl.h:
19238         * sys/sunaudio/gstsunaudiomixertrack.c:
19239         (gst_sunaudiomixer_track_class_init),
19240         (gst_sunaudiomixer_track_init), (fill_labels),
19241         (gst_sunaudiomixer_track_new):
19242         * sys/sunaudio/gstsunaudiomixertrack.h:
19243         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19244         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19245         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19246         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19247         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19248         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19249         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19250         * sys/sunaudio/gstsunaudiosink.h:
19251
19252         Add SunAudio plugin - tested to make sure it doesn't break
19253         the build under GNU/Linux.      
19254
19255 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
19256
19257         * gst-plugins-good/gst/udp/gstdynudpsink.c:
19258         * gst-plugins-good/gst/udp/gstudpsrc.c:
19259         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19260         overrides the port or multicast parameters. Fixes bugs #323021.
19261         API addition: adds GstUDPSrc::sockfd property   
19262
19263 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
19264
19265         * ext/gconf/Makefile.am:
19266         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19267         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19268         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19269         (do_toggle_element), (cb_toggle_element),
19270         (gst_gconf_audio_src_change_state):
19271         * ext/gconf/gstgconfaudiosrc.h:
19272         * ext/gconf/gstgconfelements.c: (plugin_init):
19273         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19274         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19275         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19276         (do_toggle_element), (cb_toggle_element),
19277         (gst_gconf_video_src_change_state):
19278         * ext/gconf/gstgconfvideosrc.h:
19279           Add new gconfaudiosrc and gconfvideosrc elements
19280           (needed for gnome-sound-recorder).
19281
19282 2006-01-06  Edward Hervey  <edward@fluendo.com>
19283
19284         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19285         Add gst_element_no_more_pads() for proper decodebin behaviour.
19286         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19287         (parse_text_identification_frame), (parse_split_strings):
19288         Failure to decode some tags is not a GST_ERROR() but a
19289         GST_WARNING()
19290         When iterating over a chunk of text, check that we haven't gone too
19291         far.
19292
19293 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19294
19295         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19296         (plugin_init):
19297           call oil_init() when using liboil
19298
19299 2006-01-04  Wim Taymans  <wim@fluendo.com>
19300
19301         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19302         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19303         Fix leaks.
19304
19305 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
19306
19307         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19308
19309         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19310         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19311         (gst_flac_dec_change_state):
19312           Don't g_assert() where we should just return FALSE; remove
19313           unnecessary g_assert(); initialize some fields properly in
19314           state change function (fixes #325504). Also, use
19315           GST_DEBUG_OBJECT in two more places.
19316
19317 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19318
19319         * configure.ac:
19320           also remove smoothwave's Makefile.am
19321         * docs/plugins/Makefile.am:
19322           fix plugin docs
19323
19324 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19325
19326         * tests/examples/Makefile.am:
19327           added missing Makefile.am
19328
19329 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19330
19331         * configure.ac:
19332         * gst/level/Makefile.am:
19333         * gst/level/level-example.c:
19334         * tests/Makefile.am:
19335         * tests/examples/level/Makefile.am:
19336         * tests/examples/level/level-example.c: (message_handler), (main):
19337           moved level-example to tests/examples/level-example
19338         * tests/old/examples/level/demo.c: (main):
19339         * tests/old/examples/level/plot.c: (main):
19340           some initial fixes
19341
19342 2005-12-29  Michael Smith  <msmith@fluendo.com>
19343
19344         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19345         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19346         * gst/udp/gstmultiudpsink.h:
19347           Track packets sent per client in addition to bytes sent; provide
19348           this info through get-stats signal
19349
19350 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19351
19352         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19353           Can't use gst_object_unref() on a GstAdapter (#325191).
19354
19355 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
19356
19357         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19358         If a broken tag has 0 bytes payload, at least still skip
19359         the 10 byte header
19360
19361 2005-12-22  Philippe Khalaf  <burger@speedy.org>
19362
19363         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19364         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19365         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19366         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19367           Making these depayloaders (H263+ and mpeg4 video) inherit from
19368           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19369
19370 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19371
19372         * docs/plugins/gst-plugins-good-plugins.args:
19373         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19374         Regenerate the plugin hiearchy.
19375
19376 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19377
19378         * docs/plugins/Makefile.am:
19379         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19380         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19381         * docs/plugins/gst-plugins-good-plugins.args:
19382         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19383         (gst_id3demux_base_init), (gst_id3demux_class_init),
19384         (gst_id3demux_chain):
19385         * gst/id3demux/gstid3demux.h:
19386           Add documentation for id3demux.
19387           Don't fail if the first buffer is not at offset 0, just
19388           attempt to typefind and do pass through
19389           Rename the gst_type function from gst_gst_id3demux..
19390
19391 2005-12-20  Michael Smith  <msmith@fluendo.com>
19392
19393         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19394         (gst_multiudpsink_add), (gst_multiudpsink_remove),
19395         (gst_multiudpsink_get_stats):
19396         * gst/udp/gstmultiudpsink.h:
19397           Collect statistics; return them from get_stats.
19398
19399 2005-12-19  Edward Hervey  <edward@fluendo.com>
19400
19401         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19402         Stupid signedness issue...
19403
19404 2005-12-19  Edward Hervey  <edward@fluendo.com>
19405
19406         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19407         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19408         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19409         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19410         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19411         Construct index for indexless files.
19412         Make sure pad/buffers are correctly reset to NULL once we don't need
19413         them anymore, else we get lovely segfaults/assertions.
19414         * gst/wavparse/gstwavparse.c:
19415         Yes, you can have 96KHz audio and wma in wav :(
19416
19417 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19418
19419         * configure.ac:
19420           Check for optional dependency on zlib for id3demux
19421
19422         * gst/id3demux/Makefile.am:
19423         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19424         (gst_id3demux_base_init), (gst_id3demux_class_init),
19425         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19426         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19427         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19428         (gst_id3demux_set_property), (gst_id3demux_get_property),
19429         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19430         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19431         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19432         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19433         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19434         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19435         (simple_find_peek), (simple_find_suggest),
19436         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19437         (plugin_init):
19438         * gst/id3demux/gstid3demux.h:
19439         * gst/id3demux/id3tags.c: (read_synch_uint),
19440         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19441         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19442         (id3demux_id3v2_frames_to_tag_list):
19443         * gst/id3demux/id3tags.h:
19444         * gst/id3demux/id3v2.4.0-frames.txt:
19445         * gst/id3demux/id3v2.4.0-structure.txt:
19446         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19447         (parse_comment_frame), (parse_text_identification_frame),
19448         (id3v2_tag_to_taglist), (parse_split_strings):
19449           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
19450           otherwise it discards them. Works on my test files. 
19451
19452         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19453           Don't send EOS to a non-existing srcpad
19454           The debug category can be static
19455
19456 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19457
19458         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19459         * ext/esd/esdsink.c: (gst_esdsink_prepare):
19460         * gst/multipart/multipartdemux.c:
19461           change some char* into char[]
19462
19463 2005-12-16  Wim Taymans  <wim@fluendo.com>
19464
19465         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19466         (gst_wavparse_other), (gst_wavparse_perform_seek),
19467         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19468         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19469         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19470         * gst/wavparse/gstwavparse.h:
19471         Use GstSegment to implement more seeking features.
19472
19473 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19474
19475         * gst/rtsp/rtspconnection.c:
19476           Add <netinet/in.h> include and move <arpa/inet.h> include
19477           to make things work on OpenBSD as well (fixes #323717;
19478           patch by: Benjamin Pineau)
19479
19480 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19481
19482         * gst/rtp/gstrtpspeexdepay.c:
19483         * gst/rtp/gstrtpspeexpay.c:
19484         Set clock rate to be fixed in 8000. It fixes bug #324012.
19485
19486 2005-12-14  Philippe Khalaf  <burger@speedy.org>
19487
19488         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19489         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19490         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19491         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19492         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19493         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19494         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19495         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19496         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19497         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19498         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19499         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19500         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19501         * gst-plugins-good/gst/rtp/README:
19502         Fixed payload range in payloder caps. Removed payload range completely
19503         from depayloaders as they don't require payload type in their caps.
19504         In effect, there isn't any specific payload type for any given codec,
19505         only suggestions.
19506         Fixes bug #324011.
19507
19508 2005-12-13  Julien MOUTTE  <julien@moutte.net>
19509
19510         * gst/videomixer/videomixer.c: (gst_videomixer_init),
19511         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19512         (gst_videomixer_collected): Code cleanup and re-enabling 
19513         queued time validity check for correct EOS handling.
19514
19515 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
19516
19517         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19518         (gst_oss_mixer_element_get_property),
19519         (gst_oss_mixer_element_change_state):
19520         Add 'device-name' property and fix state change function.
19521
19522 2005-12-13  Edward Hervey  <edward@fluendo.com>
19523
19524         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
19525         If the speed of the file is null in the header, set the frame_time to
19526         the default setting of GST_SECOND / 70. Which is the default
19527         frame_delay for .fli files as stated in this document :
19528         http://www.compuphase.com/flic.htm
19529         Would be nice to have the time conversion done properly too (duration =
19530         flxh->frames * flxdec->frame_time)
19531
19532 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19533
19534         * docs/plugins/Makefile.am:
19535         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19536         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19537         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19538         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19539         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19540         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19541         documentation for videomixer on my way with a funny sample
19542         pipeline.
19543
19544 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19545
19546         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19547         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19548         (gst_videomixer_update_queues), (gst_videomixer_collected):
19549         Fix caps negotiation. (#323896)
19550
19551 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
19552
19553         * gst/matroska/matroska-demux.c:
19554         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19555           Set correct timestamps on audio laces, fixes playback of mp3 from
19556                 matroska.
19557
19558 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19559
19560         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19561         (gst_au_parse_class_init), (gst_au_parse_init),
19562         (gst_au_parse_dispose), (gst_au_parse_chain),
19563         (gst_au_parse_change_state), (plugin_init):
19564         * gst/auparse/gstauparse.h:
19565           Use gst_object_unref() for GstObjects instead of
19566           g_object_unref() and fix a mem leak in a debug
19567           statement; while we're at it, also borgify, use
19568           boilerplate macros and clean up a little bit.
19569
19570 2005-12-11  Edward Hervey  <edward@fluendo.com>
19571
19572         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19573         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19574         Added pull mode.
19575
19576 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19577
19578         * gst/goom/gstgoom.c:
19579         * gst/level/level-example.c: (main):
19580         * gst/smoothwave/demo-osssrc.c: (main):
19581           Use audiotestsrc instead of sinesrc (#323798).
19582
19583 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
19584
19585         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19586           more debug-func-ptr usage
19587
19588 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
19589
19590         * gst/flx/flx_color.c: (flx_colorspace_convert):
19591         * gst/flx/flx_color.h:
19592         * gst/flx/flx_fmt.h:
19593         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19594         * gst/flx/gstflxdec.h:
19595           Now flxdec works on big-endian machines as well.
19596
19597 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19598
19599         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19600         (gst_fenced_buffer_copy):
19601           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19602           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19603           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19604           and use GST_DEBUG_FUNCPTR for pad functions.
19605
19606 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19607
19608         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19609         (gst_flac_dec_class_init), (gst_flac_dec_init),
19610         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19611         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19612         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19613         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19614         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19615         (gst_flac_dec_change_state):
19616         * ext/flac/gstflacdec.h:
19617           Rewrite flacdec a bit, so that even seeking might work now. Most
19618           importantly, don't act upon any flow return values we get, just tell
19619           the decoder everything's dandy and act on the flow return values
19620           later on in the loop function. We don't want to mess up the internal
19621           decoder state for non-fatal things like flushing pads etc. Other
19622           than that, use GstSegment (segment seeks don't work yet though, but
19623           should be easy to add), use boilerplate macros, drop the superfluous
19624           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19625           lots of other things.
19626
19627 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19628
19629         * configure.ac:
19630           Update comment in OSS includes check.
19631
19632         * sys/oss/gstossdmabuffer.c:
19633         * sys/oss/gstosshelper.c:
19634         * sys/oss/gstossmixer.c:
19635         * sys/oss/gstossmixertrack.c:
19636         * sys/oss/gstosssink.c:
19637         * sys/oss/gstosssrc.c:
19638         * sys/oss/oss_probe.c:
19639           Don't assume the OSS soundcard.h include is always in
19640           the sys/ directory. Instead, use the existing defines
19641           from config.h to include the right file. Fixes
19642           compilation on OpenBSD 3.8 (#323718).
19643
19644 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19645
19646         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19647         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19648         * docs/plugins/inspect/plugin-1394.xml:
19649         * docs/plugins/inspect/plugin-aasink.xml:
19650         * docs/plugins/inspect/plugin-alaw.xml:
19651         * docs/plugins/inspect/plugin-alpha.xml:
19652         * docs/plugins/inspect/plugin-alphacolor.xml:
19653         * docs/plugins/inspect/plugin-auparse.xml:
19654         * docs/plugins/inspect/plugin-autodetect.xml:
19655         * docs/plugins/inspect/plugin-avi.xml:
19656         * docs/plugins/inspect/plugin-cacasink.xml:
19657         * docs/plugins/inspect/plugin-cairo.xml:
19658         * docs/plugins/inspect/plugin-cutter.xml:
19659         * docs/plugins/inspect/plugin-debug.xml:
19660         * docs/plugins/inspect/plugin-dv.xml:
19661         * docs/plugins/inspect/plugin-efence.xml:
19662         * docs/plugins/inspect/plugin-effectv.xml:
19663         * docs/plugins/inspect/plugin-esdsink.xml:
19664         * docs/plugins/inspect/plugin-flac.xml:
19665         * docs/plugins/inspect/plugin-flxdec.xml:
19666         * docs/plugins/inspect/plugin-gconfelements.xml:
19667         * docs/plugins/inspect/plugin-goom.xml:
19668         * docs/plugins/inspect/plugin-jpeg.xml:
19669         * docs/plugins/inspect/plugin-level.xml:
19670         * docs/plugins/inspect/plugin-matroska.xml:
19671         * docs/plugins/inspect/plugin-mulaw.xml:
19672         * docs/plugins/inspect/plugin-multipart.xml:
19673         * docs/plugins/inspect/plugin-navigationtest.xml:
19674         * docs/plugins/inspect/plugin-ossaudio.xml:
19675         * docs/plugins/inspect/plugin-png.xml:
19676         * docs/plugins/inspect/plugin-rtp.xml:
19677         * docs/plugins/inspect/plugin-rtsp.xml:
19678         * docs/plugins/inspect/plugin-shout2send.xml:
19679         * docs/plugins/inspect/plugin-smpte.xml:
19680         * docs/plugins/inspect/plugin-speex.xml:
19681         * docs/plugins/inspect/plugin-udp.xml:
19682         * docs/plugins/inspect/plugin-videobox.xml:
19683         * docs/plugins/inspect/plugin-videoflip.xml:
19684         * docs/plugins/inspect/plugin-videomixer.xml:
19685         * docs/plugins/inspect/plugin-wavenc.xml:
19686         * docs/plugins/inspect/plugin-wavparse.xml:
19687         * ext/flac/gstflac.c: (plugin_init):
19688         * ext/flac/gstflacdec.c: (flacdec_get_type),
19689         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19690         (gst_flac_dec_init), (gst_flac_dec_finalize),
19691         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19692         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19693         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19694         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19695         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19696         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19697         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19698         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19699         * ext/flac/gstflacdec.h:
19700         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19701         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19702         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19703         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19704         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19705         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19706         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19707         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19708         (gst_flac_enc_change_state):
19709         * ext/flac/gstflacenc.h:
19710           borgify and fix up documentation
19711
19712 2005-12-09  Michael Smith  <msmith@fluendo.com>
19713
19714         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19715           Accept a wider range of flac files, more closely matching flac spec.
19716
19717 2005-12-08  Julien MOUTTE  <julien@moutte.net>
19718
19719         * docs/plugins/Makefile.am: Add multipart elements.
19720         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19721         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19722         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19723         * gst/multipart/multipartdemux.c:
19724         * gst/multipart/multipartmux.c: Add docs.
19725
19726 2005-12-07  Edward Hervey  <edward@fluendo.com>
19727
19728         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19729         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19730         (gst_avi_demux_invert):
19731         Memleak and crasher fixes.
19732         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19733         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19734         Memleak fixes
19735
19736 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19737
19738         * ext/aalib/gstaasink.h:
19739         * ext/cairo/gsttextoverlay.h:
19740         * ext/dv/gstdvdec.h:
19741         * ext/dv/gstdvdemux.c:
19742         * ext/dv/gstdvdemux.h:
19743         * ext/esd/esdsink.h:
19744         * ext/flac/flac_compat.h:
19745         * ext/flac/gstflacdec.h:
19746         * ext/flac/gstflacenc.h:
19747         * ext/gconf/gconf.h:
19748         * ext/gconf/gstgconfaudiosink.h:
19749         * ext/gconf/gstgconfvideosink.h:
19750         * ext/gdk_pixbuf/gstgdkanimation.h:
19751         * ext/jpeg/gstjpegdec.h:
19752         * ext/jpeg/smokecodec.h:
19753         * ext/jpeg/smokeformat.h:
19754         * ext/ladspa/gstsignalprocessor.h:
19755         * ext/ladspa/search.c: (LADSPAPluginSearch):
19756         * ext/ladspa/utils.h:
19757         * ext/libmng/gstmng.c:
19758         * ext/libmng/gstmngdec.h:
19759         * ext/libmng/gstmngenc.c:
19760         * ext/libmng/gstmngenc.h:
19761         * ext/libpng/gstpng.c:
19762         * ext/libpng/gstpngenc.c:
19763         * ext/libpng/gstpngenc.h:
19764         * ext/shout2/gstshout2.h:
19765         * ext/speex/gstspeexdec.h:
19766         * ext/speex/gstspeexenc.c:
19767         * ext/speex/gstspeexenc.h:
19768         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19769         * gst/autodetect/gstautoaudiosink.h:
19770         * gst/autodetect/gstautovideosink.h:
19771         * gst/avi/gstavidemux.h:
19772         * gst/cutter/gstcutter.c: (gst_cutter_chain),
19773         (gst_cutter_set_property), (gst_cutter_get_caps):
19774         * gst/cutter/gstcutter.h:
19775         * gst/debug/tests.c: (md5_process_block):
19776         * gst/debug/tests.h:
19777         * gst/effectv/gstwarp.c:
19778         * gst/flx/flx_fmt.h:
19779         * gst/flx/gstflxdec.h:
19780         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19781         (zoomFilterFastRGB):
19782         * gst/goom/filters.h:
19783         * gst/goom/goom_tools.h:
19784         * gst/law/alaw-encode.c:
19785         * gst/level/gstlevel.c:
19786         * gst/level/gstlevel.h:
19787         * gst/matroska/ebml-write.h:
19788         * gst/matroska/matroska-demux.h:
19789         * gst/matroska/matroska-ids.h:
19790         * gst/matroska/matroska-mux.h:
19791         * gst/monoscope/convolve.c: (convolve_match):
19792         * gst/monoscope/convolve.h:
19793         * gst/multipart/multipartmux.c:
19794         * gst/oldcore/gstaggregator.c:
19795         * gst/oldcore/gstaggregator.h:
19796         * gst/oldcore/gstmd5sink.c: (md5_process_block):
19797         * gst/oldcore/gstmd5sink.h:
19798         * gst/oldcore/gstmultifilesrc.c:
19799         * gst/oldcore/gstmultifilesrc.h:
19800         * gst/oldcore/gstpipefilter.h:
19801         * gst/oldcore/gstshaper.h:
19802         * gst/rtp/gstrtpL16depay.h:
19803         * gst/rtp/gstrtpL16pay.h:
19804         * gst/rtp/gstrtpdepay.h:
19805         * gst/rtp/gstrtpmp4vpay.c:
19806         * gst/rtp/gstrtpmp4vpay.h:
19807         * gst/rtsp/gstrtspsrc.c:
19808         * gst/rtsp/gstrtspsrc.h:
19809         * gst/rtsp/rtspconnection.h:
19810         * gst/rtsp/rtspdefs.h:
19811         * gst/rtsp/rtspmessage.h:
19812         * gst/rtsp/rtsptransport.h:
19813         * gst/rtsp/rtspurl.c:
19814         * gst/rtsp/rtspurl.h:
19815         * gst/rtsp/sdpmessage.c:
19816         * gst/rtsp/sdpmessage.h:
19817         * gst/smpte/barboxwipes.c:
19818         * gst/smpte/gstmask.h:
19819         * gst/smpte/gstsmpte.h:
19820         * gst/smpte/paint.c:
19821         * gst/smpte/paint.h:
19822         * gst/udp/gstdynudpsink.h:
19823         * gst/udp/gstmultiudpsink.h:
19824         * gst/udp/gstudpsink.c:
19825         * gst/udp/gstudpsink.h:
19826         * gst/udp/gstudpsrc.c:
19827         * gst/videomixer/videomixer.c:
19828         * gst/wavenc/riff.h:
19829         * gst/wavparse/gstwavparse.h:
19830         * sys/oss/gstossdmabuffer.h:
19831         * sys/oss/gstossmixer.h:
19832         * sys/oss/gstossmixerelement.h:
19833         * sys/oss/gstossmixertrack.h:
19834         * sys/oss/gstosssink.c:
19835         * sys/oss/gstosssink.h:
19836         * sys/oss/gstosssrc.c:
19837         * sys/oss/gstosssrc.h:
19838         * sys/osxaudio/gstosxaudioelement.h:
19839         * sys/osxaudio/gstosxaudiosink.h:
19840         * sys/osxaudio/gstosxaudiosrc.h:
19841           expand tabs
19842
19843 === release 0.10.0 ===
19844
19845 2005-12-05   <thomas (at) apestaart (dot) org>
19846
19847         * configure.ac:
19848           releasing 0.10.0, "Abondance"
19849
19850 2005-12-05  Andy Wingo  <wingo@pobox.com>
19851
19852         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19853         * ext/flac/gstflacdec.c: (gst_flacdec_write):
19854         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19855         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19856         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19857         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19858         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19859         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19860         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19861         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19862         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19863         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19864         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19865         * gst/goom/gstgoom.c: (gst_goom_chain):
19866         * gst/matroska/matroska-demux.c:
19867         (gst_matroska_demux_push_vorbis_codec_priv_data),
19868         (gst_matroska_demux_add_wvpk_header):
19869         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19870         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19871         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19872         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19873         alloc_buffer changes.
19874
19875 2005-12-05  Michael Smith  <msmith@fluendo.com>
19876
19877         * docs/plugins/gst-plugins-good-plugins.args:
19878           Remove args for plugins that aren't in -good.
19879
19880 === release 0.9.7 ===
19881
19882 2005-12-01   <thomas (at) apestaart (dot) org>
19883
19884         * configure.ac:
19885           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19886
19887 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19888
19889         * docs/plugins/.cvsignore:
19890         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19891         * docs/plugins/inspect/plugin-multipart.xml:
19892         * docs/plugins/inspect/plugin-rtp.xml:
19893           add multipart plugin to docs
19894
19895 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19896
19897         * configure.ac:
19898         * ext/Makefile.am:
19899         * ext/pango/Makefile.am:
19900         * ext/pango/gstclockoverlay.c:
19901         * ext/pango/gstclockoverlay.h:
19902         * ext/pango/gsttextoverlay.c:
19903         * ext/pango/gsttextoverlay.h:
19904         * ext/pango/gsttextrender.c:
19905         * ext/pango/gsttextrender.h:
19906         * ext/pango/gsttimeoverlay.c:
19907         * ext/pango/gsttimeoverlay.h:
19908           move pango to base
19909
19910 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19911
19912         * gst/rtp/Makefile.am:
19913         * gst/rtp/gstrtpL16depay.c:
19914         * gst/rtp/gstrtpL16depay.h:
19915         * gst/rtp/gstrtpL16parse.c:
19916         * gst/rtp/gstrtpL16parse.h:
19917         * gst/rtp/gstrtpgsmdepay.c:
19918         * gst/rtp/gstrtpgsmdepay.h:
19919         * gst/rtp/gstrtpgsmparse.c:
19920         * gst/rtp/gstrtpgsmparse.h:
19921           parsers are depayers
19922
19923 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19924
19925         * gst/rtp/Makefile.am:
19926         * gst/rtp/gstasteriskh263.c:
19927         * gst/rtp/gstrtp.c:
19928         * gst/rtp/gstrtpL16enc.c:
19929         * gst/rtp/gstrtpL16enc.h:
19930         * gst/rtp/gstrtpL16parse.c:
19931         * gst/rtp/gstrtpL16parse.h:
19932         * gst/rtp/gstrtpL16pay.c:
19933         * gst/rtp/gstrtpL16pay.h:
19934         * gst/rtp/gstrtpamrdec.c:
19935         * gst/rtp/gstrtpamrdec.h:
19936         * gst/rtp/gstrtpamrdepay.c:
19937         * gst/rtp/gstrtpamrdepay.h:
19938         * gst/rtp/gstrtpamrenc.c:
19939         * gst/rtp/gstrtpamrenc.h:
19940         * gst/rtp/gstrtpamrpay.c:
19941         * gst/rtp/gstrtpamrpay.h:
19942         * gst/rtp/gstrtpdec.c:
19943         * gst/rtp/gstrtpdec.h:
19944         * gst/rtp/gstrtpdepay.c:
19945         * gst/rtp/gstrtpdepay.h:
19946         * gst/rtp/gstrtpg711dec.c:
19947         * gst/rtp/gstrtpg711dec.h:
19948         * gst/rtp/gstrtpg711depay.c:
19949         * gst/rtp/gstrtpg711depay.h:
19950         * gst/rtp/gstrtpg711enc.c:
19951         * gst/rtp/gstrtpg711enc.h:
19952         * gst/rtp/gstrtpg711pay.c:
19953         * gst/rtp/gstrtpg711pay.h:
19954         * gst/rtp/gstrtpgsmenc.c:
19955         * gst/rtp/gstrtpgsmenc.h:
19956         * gst/rtp/gstrtpgsmparse.c:
19957         * gst/rtp/gstrtpgsmparse.h:
19958         * gst/rtp/gstrtpgsmpay.c:
19959         * gst/rtp/gstrtpgsmpay.h:
19960         * gst/rtp/gstrtph263enc.c:
19961         * gst/rtp/gstrtph263enc.h:
19962         * gst/rtp/gstrtph263pay.c:
19963         * gst/rtp/gstrtph263pay.h:
19964         * gst/rtp/gstrtph263pdec.c:
19965         * gst/rtp/gstrtph263pdec.h:
19966         * gst/rtp/gstrtph263pdepay.c:
19967         * gst/rtp/gstrtph263pdepay.h:
19968         * gst/rtp/gstrtph263penc.c:
19969         * gst/rtp/gstrtph263penc.h:
19970         * gst/rtp/gstrtph263ppay.c:
19971         * gst/rtp/gstrtph263ppay.h:
19972         * gst/rtp/gstrtpmp4vdec.c:
19973         * gst/rtp/gstrtpmp4vdec.h:
19974         * gst/rtp/gstrtpmp4vdepay.c:
19975         * gst/rtp/gstrtpmp4vdepay.h:
19976         * gst/rtp/gstrtpmp4venc.c:
19977         * gst/rtp/gstrtpmp4venc.h:
19978         * gst/rtp/gstrtpmp4vpay.c:
19979         * gst/rtp/gstrtpmp4vpay.h:
19980         * gst/rtp/gstrtpmpadec.c:
19981         * gst/rtp/gstrtpmpadec.h:
19982         * gst/rtp/gstrtpmpadepay.c:
19983         * gst/rtp/gstrtpmpadepay.h:
19984         * gst/rtp/gstrtpmpaenc.c:
19985         * gst/rtp/gstrtpmpaenc.h:
19986         * gst/rtp/gstrtpmpapay.c:
19987         * gst/rtp/gstrtpmpapay.h:
19988         * gst/rtp/gstrtpspeexdec.c:
19989         * gst/rtp/gstrtpspeexdec.h:
19990         * gst/rtp/gstrtpspeexdepay.c:
19991         * gst/rtp/gstrtpspeexdepay.h:
19992         * gst/rtp/gstrtpspeexenc.c:
19993         * gst/rtp/gstrtpspeexenc.h:
19994         * gst/rtp/gstrtpspeexpay.c:
19995         * gst/rtp/gstrtpspeexpay.h:
19996           Do burger's rename for rtp payloaders and depayloaders
19997
19998 2005-11-30  Wim Taymans  <wim@fluendo.com>
19999
20000         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
20001         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
20002         * ext/dv/gstdvdemux.h:
20003         Fix seeking in dvdemux again, add some more debug info.
20004
20005 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20006
20007         * configure.ac:
20008           fix tests
20009
20010 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20011
20012         * PORTED_09:
20013         * docs/random/PORTED_09:
20014           move
20015         * tests/Makefile.am:
20016           add
20017         * win32/gst.sln:
20018           remove
20019
20020 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20021
20022         * Makefile.am:
20023         * check/.cvsignore:
20024         * check/Makefile.am:
20025         * check/elements/.cvsignore:
20026         * check/elements/level.c:
20027         * check/elements/matroskamux.c:
20028         * configure.ac:
20029         * examples/Makefile.am:
20030         * examples/capsfilter/Makefile.am:
20031         * examples/capsfilter/capsfilter1.c:
20032         * examples/gob/Makefile.am:
20033         * examples/gob/gst-identity2.gob:
20034         * examples/gstplay/.cvsignore:
20035         * examples/gstplay/Makefile.am:
20036         * examples/gstplay/player.c:
20037         * examples/indexing/.cvsignore:
20038         * examples/indexing/Makefile.am:
20039         * examples/indexing/indexmpeg.c:
20040         * examples/level/Makefile.am:
20041         * examples/level/README:
20042         * examples/level/demo.c:
20043         * examples/level/plot.c:
20044         * examples/stats/Makefile.am:
20045         * examples/stats/mp2ogg.c:
20046         * examples/switch/.cvsignore:
20047         * examples/switch/Makefile.am:
20048         * examples/switch/switcher.c:
20049           move under tests/
20050
20051 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20052
20053         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
20054         (gst_text_render_class_init), (resize_bitmap),
20055         (gst_text_render_render_text), (gst_text_render_setcaps),
20056         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
20057         (gst_text_render_chain), (gst_text_render_finalize),
20058         (gst_text_render_init), (gst_text_render_set_property):
20059         * ext/pango/gsttextrender.h:
20060           Add missing files.
20061
20062 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20063
20064         * configure.ac:
20065         * ext/Makefile.am:
20066         * ext/pango/Makefile.am:
20067         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
20068         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
20069         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
20070         * ext/pango/gstclockoverlay.h:
20071         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
20072         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
20073         (gst_text_overlay_finalize), (gst_text_overlay_init),
20074         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
20075         (gst_text_overlay_text_pad_linked),
20076         (gst_text_overlay_text_pad_unlinked),
20077         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
20078         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
20079         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
20080         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20081         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20082         (gst_text_overlay_change_state), (plugin_init):
20083         * ext/pango/gsttextoverlay.h:
20084         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
20085         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
20086         (gst_time_overlay_class_init), (gst_time_overlay_init):
20087         * ext/pango/gsttimeoverlay.h:
20088           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
20089           and add background shading and text wrapping modes. Make 
20090           timoverlay derive from textoverlay. Also add new clockoverlay
20091           element.
20092
20093 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20094
20095         * gst/udp/Makefile.am: Moved to netbuffer.
20096
20097 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20098
20099         * configure.ac:
20100         * PORTED_O9:
20101         * gst/multipart/Makefile.am:
20102         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
20103         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
20104         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
20105         (gst_multipart_demux_change_state),
20106         (gst_multipart_demux_plugin_init):
20107         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20108         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
20109         (gst_multipart_mux_sinkconnect),
20110         (gst_multipart_mux_request_new_pad),
20111         (gst_multipart_mux_handle_src_event),
20112         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20113         (gst_multipart_mux_change_state): Ported multipart mux/demux to
20114         0.9.
20115
20116 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20117
20118         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20119         * gst/debug/gstnavigationtest.h:
20120         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20121         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20122         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20123         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20124         * gst/effectv/gstrev.c: (gst_revtv_get_type):
20125         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20126         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20127         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20128         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20129         (gst_video_flip_get_type):
20130         * gst/videofilter/gstvideoflip.h:
20131           update for symbols change
20132
20133 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20134
20135         * gst/udp/gstdynudpsink.c:
20136         * gst/udp/gstudpsrc.c:
20137           the old gstnet lib was renamed gstnetbuffer (#322257)
20138
20139 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20140
20141         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20142         (gst_text_overlay_collected):
20143           Actually render the text from the text pad.
20144
20145 2005-11-29  Edward Hervey  <edward@fluendo.com>
20146
20147         * gst/debug/gstnavseek.c: (gst_navseek_event):
20148         * gst/debug/progressreport.c: (gst_progress_report_event):
20149         Update for GstBaseTransform event virtual method
20150
20151 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20152
20153         * ext/cairo/Makefile.am:
20154           no need to link to videofilter
20155
20156 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20157
20158         * gst/debug/Makefile.am:
20159         * gst/debug/gstnavigationtest.h:
20160         * gst/effectv/Makefile.am:
20161         * gst/effectv/gstaging.c:
20162         * gst/effectv/gstdice.c:
20163         * gst/effectv/gstedge.c:
20164         * gst/effectv/gstquark.c:
20165         * gst/effectv/gstrev.c:
20166         * gst/effectv/gstshagadelic.c:
20167         * gst/effectv/gstvertigo.c:
20168         * gst/effectv/gstwarp.c:
20169         * gst/videofilter/Makefile.am:
20170         * gst/videofilter/gstvideofilter.c:
20171         * gst/videofilter/gstvideofilter.h:
20172         * gst/videofilter/gstvideoflip.h:
20173           remove the videofilter library and link to the one in base
20174
20175 2005-11-28  Edward Hervey  <edward@fluendo.com>
20176
20177         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20178         Useless check now we're setting the current entry correctly.
20179
20180 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20181
20182         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20183         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20184         (gst_jpegenc_change_state):
20185           Don't leak input buffer in chain function (fixes #322667); make 
20186           state change function thread-safe; don't repeat the current function
20187           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20188           gst_pad_alloc_buffer(); misc. minor cleanups.
20189
20190 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20191
20192         * gst/matroska/matroska-mux.c:
20193         (gst_matroska_mux_video_pad_setcaps):
20194         Look for pixel-aspect-ratio in caps, not pixel_width and
20195         pixel_height (Fixes: #322645)
20196
20197 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20198
20199         * gst/matroska/matroska-mux.c:
20200         (gst_matroska_mux_video_pad_setcaps):
20201         From Michal Benes:
20202         frame duration should be GST_SECOND / framerate, not
20203         GST_SECOND * framerate. (Fixes: #322643)
20204
20205 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20206
20207         * configure.ac:
20208           fix up GST_PLUGIN_LDFLAGS
20209         * gst/rtsp/rtspconnection.c:
20210           fix includes (see #317043)
20211         * gst/videofilter/Makefile.am:
20212           stop installing this library
20213
20214 2005-11-26  Edward Hervey  <edward@fluendo.com>
20215
20216         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20217         Handle the case where the incoming Video dv stream doesn't have
20218         a pixel aspect ratio set.
20219
20220 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20221
20222         * docs/plugins/Makefile.am:
20223         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20224         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20225         * ext/flac/gstflacdec.c:
20226           document flacdec
20227
20228 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20229
20230         * docs/plugins/Makefile.am:
20231         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20232         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20233         * docs/plugins/inspect/plugin-autodetect.xml:
20234         * ext/cairo/gstcairo.c: (plugin_init):
20235         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20236         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20237         (gst_text_overlay_init), (gst_text_overlay_font_init),
20238         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20239         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20240         (gst_text_overlay_text_pad_linked),
20241         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20242         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20243         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20244         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20245         (gst_text_overlay_change_state):
20246         * ext/cairo/gsttextoverlay.h:
20247         * ext/cairo/gsttimeoverlay.c:
20248         (gst_cairo_time_overlay_update_font_height),
20249         (gst_cairo_time_overlay_set_caps),
20250         (gst_cairo_time_overlay_get_unit_size),
20251         (gst_cairo_time_overlay_print_smpte_time),
20252         (gst_cairo_time_overlay_transform),
20253         (gst_cairo_time_overlay_base_init),
20254         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20255         (gst_cairo_time_overlay_get_type):
20256         * ext/cairo/gsttimeoverlay.h:
20257           do some name borgifying
20258           document
20259
20260 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20261
20262         * docs/plugins/Makefile.am:
20263         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20264         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20265         * gst/autodetect/gstautoaudiosink.c:
20266         (gst_auto_audio_sink_base_init):
20267         * gst/autodetect/gstautovideosink.c:
20268         (gst_auto_video_sink_base_init),
20269         (gst_auto_video_sink_factory_filter):
20270           documenting auto*sink
20271           using strstr for the video sink lookup, class field is not ordered
20272         * docs/plugins/inspect/plugin-1394.xml:
20273         * docs/plugins/inspect/plugin-aasink.xml:
20274         * docs/plugins/inspect/plugin-alaw.xml:
20275         * docs/plugins/inspect/plugin-alpha.xml:
20276         * docs/plugins/inspect/plugin-alphacolor.xml:
20277         * docs/plugins/inspect/plugin-auparse.xml:
20278         * docs/plugins/inspect/plugin-autodetect.xml:
20279         * docs/plugins/inspect/plugin-avi.xml:
20280         * docs/plugins/inspect/plugin-cacasink.xml:
20281         * docs/plugins/inspect/plugin-cairo.xml:
20282         * docs/plugins/inspect/plugin-cutter.xml:
20283         * docs/plugins/inspect/plugin-debug.xml:
20284         * docs/plugins/inspect/plugin-dv.xml:
20285         * docs/plugins/inspect/plugin-efence.xml:
20286         * docs/plugins/inspect/plugin-effectv.xml:
20287         * docs/plugins/inspect/plugin-esdsink.xml:
20288         * docs/plugins/inspect/plugin-flac.xml:
20289         * docs/plugins/inspect/plugin-flxdec.xml:
20290         * docs/plugins/inspect/plugin-gconfelements.xml:
20291         * docs/plugins/inspect/plugin-goom.xml:
20292         * docs/plugins/inspect/plugin-jpeg.xml:
20293         * docs/plugins/inspect/plugin-level.xml:
20294         * docs/plugins/inspect/plugin-matroska.xml:
20295         * docs/plugins/inspect/plugin-mulaw.xml:
20296         * docs/plugins/inspect/plugin-navigationtest.xml:
20297         * docs/plugins/inspect/plugin-ossaudio.xml:
20298         * docs/plugins/inspect/plugin-png.xml:
20299         * docs/plugins/inspect/plugin-rtp.xml:
20300         * docs/plugins/inspect/plugin-rtsp.xml:
20301         * docs/plugins/inspect/plugin-shout2send.xml:
20302         * docs/plugins/inspect/plugin-smpte.xml:
20303         * docs/plugins/inspect/plugin-speex.xml:
20304         * docs/plugins/inspect/plugin-udp.xml:
20305         * docs/plugins/inspect/plugin-videobox.xml:
20306         * docs/plugins/inspect/plugin-videoflip.xml:
20307         * docs/plugins/inspect/plugin-videomixer.xml:
20308         * docs/plugins/inspect/plugin-wavenc.xml:
20309         * docs/plugins/inspect/plugin-wavparse.xml:
20310           update for HEAD version
20311
20312 2005-11-25  Michael Smith  <msmith@fluendo.com>
20313
20314         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20315           Patch from Sebastien Cote to close control sockets in udpsrc.
20316
20317 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20318
20319         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20320         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20321         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20322         (gst_quarktv_base_init), (gst_quarktv_class_init),
20323         (gst_quarktv_init): Flush the planes list on reverse caps
20324         negotiation. This was crashing because of differently sized
20325         buffers.
20326
20327 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20328
20329         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20330         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20331         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20332         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20333         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20334         (gst_videoflip_set_property), (gst_videoflip_base_init),
20335         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20336         correctly, fix identity flipping, convert navigation event 
20337         correctly again.
20338
20339 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20340
20341         * configure.ac: back to HEAD
20342
20343 === release 0.9.6 ===
20344
20345 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20346
20347         * configure.ac:
20348           releasing 0.9.6, "Everything's Not Lost"
20349
20350 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20351
20352         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20353         Oops, initialise the framerate GValue
20354
20355 2005-11-23  Julien MOUTTE  <julien@moutte.net>
20356
20357         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20358         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20359         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20360         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20361         (gst_timeoverlay_get_type):
20362         * ext/cairo/gsttimeoverlay.h:
20363         * gst/debug/Makefile.am:
20364         * gst/debug/gstnavigationtest.c:
20365         (gst_navigationtest_handle_src_event),
20366         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20367         (gst_navigationtest_transform), (gst_navigationtest_change_state),
20368         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20369         (gst_navigationtest_init), (gst_navigationtest_get_type),
20370         (plugin_init):
20371         * gst/debug/gstnavigationtest.h:
20372         * gst/effectv/Makefile.am:
20373         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20374         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20375         (gst_agingtv_base_init), (gst_agingtv_class_init),
20376         (gst_agingtv_init), (gst_agingtv_get_type):
20377         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20378         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20379         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20380         (gst_dicetv_get_type):
20381         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20382         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20383         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20384         (gst_edgetv_get_type):
20385         * gst/effectv/gsteffectv.c:
20386         * gst/effectv/gsteffectv.h:
20387         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20388         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20389         (gst_quarktv_change_state), (gst_quarktv_base_init),
20390         (gst_quarktv_class_init), (gst_quarktv_init),
20391         (gst_quarktv_get_type):
20392         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20393         (gst_revtv_get_unit_size), (gst_revtv_transform),
20394         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20395         (gst_revtv_get_type):
20396         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20397         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20398         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20399         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20400         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20401         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20402         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20403         (gst_vertigotv_init), (gst_vertigotv_get_type):
20404         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20405         (gst_warptv_get_unit_size), (gst_warptv_transform),
20406         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20407         (gst_warptv_get_type):
20408         * gst/videofilter/Makefile.am:
20409         * gst/videofilter/gstvideobalance.c:
20410         * gst/videofilter/gstvideobalance.h:
20411         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20412         (gst_videofilter_class_init), (gst_videofilter_init):
20413         * gst/videofilter/gstvideofilter.h:
20414         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20415         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20416         (gst_videoflip_flip), (gst_videoflip_transform),
20417         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20418         (gst_videoflip_base_init), (gst_videoflip_class_init),
20419         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20420         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20421         BaseTransform, it's just a place holder for now and every video
20422         effect plugin has been ported to use BaseTransform features 
20423         directly. QuarkTV was fixed too (was broken), navigationtest works
20424         and best for the end, videoflip converts navigation events depending
20425         on flip method ! Fixes #320953
20426
20427 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20428
20429         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20430         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20431         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20432         (gst_goom_src_negotiate), (gst_goom_chain):
20433         * gst/matroska/matroska-mux.c:
20434         (gst_matroska_mux_video_pad_setcaps):
20435         * sys/osxvideo/osxvideosink.m:
20436           Fixes for API changes
20437
20438 2005-11-23  Michael Smith <msmith@fluendo.com>
20439
20440         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20441         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20442         * ext/jpeg/gstjpegdec.h:
20443         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20444         * ext/jpeg/gstjpegenc.h:
20445         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20446         (gst_smokeenc_resync):
20447         * ext/jpeg/gstsmokeenc.h:
20448           JPEG fractiony goodness.
20449
20450 2005-11-22  Michael Smith <msmith@fluendo.com>
20451
20452         * gst/goom/filters.c:
20453         * gst/goom/graphic.h:
20454           Fix compilation by making some functions static inline instead of
20455           extern inline, matching the way they're used.
20456
20457 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20458
20459         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20460         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20461         * ext/cairo/gsttextoverlay.h:
20462         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20463         * ext/gdk_pixbuf/gstgdkpixbuf.h:
20464         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20465         (gst_pngdec_caps_create_and_set):
20466         * ext/libpng/gstpngdec.h:
20467         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20468         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20469         * gst/avi/gstavimux.c: (gst_avimux_init),
20470         (gst_avimux_vidsinkconnect):
20471         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20472         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20473         (gst_goom_src_negotiate), (gst_goom_chain):
20474         * gst/goom/gstgoom.h:
20475         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20476         * gst/matroska/matroska-mux.c:
20477         (gst_matroska_mux_video_pad_setcaps):
20478         * sys/osxvideo/osxvideosink.h:
20479         * sys/osxvideo/osxvideosink.m:
20480           More fractional framerate conversions 
20481
20482 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20483
20484         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20485         * gst/debug/gstnavigationtest.c:
20486         (gst_navigationtest_handle_src_event):
20487         * gst/videofilter/gstvideofilter.c:
20488         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20489         (gst_videofilter_init):
20490         * gst/videofilter/gstvideofilter.h:
20491           Convert to fractional framerates.
20492
20493 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20494
20495         * ext/aalib/gstaasink.c:
20496         * ext/dv/gstdvdec.c:
20497         * ext/esd/esdmon.c:
20498         * ext/flac/gstflacenc.c:
20499         * ext/gdk_pixbuf/pixbufscale.c:
20500         * ext/libcaca/gstcacasink.c:
20501         * ext/shout2/gstshout2.c:
20502         * gst/alpha/gstalpha.c:
20503         * gst/oldcore/gstaggregator.c:
20504         * gst/oldcore/gstshaper.c:
20505         * gst/smpte/barboxwipes.c:
20506         * gst/smpte/gstsmpte.c:
20507         * gst/videobox/gstvideobox.c:
20508         * gst/videofilter/gstvideoflip.c:
20509         * gst/videomixer/videomixer.c:
20510           fix up more enums
20511
20512 2005-11-22  Michael Smith <msmith@fluendo.com>
20513
20514         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20515         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20516         (gst_videomixer_update_queues):
20517           Fractional framerates, videomixer.
20518
20519 2005-11-22  Michael Smith <msmith@fluendo.com>
20520
20521         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20522         * ext/dv/gstdvdec.h:
20523         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20524         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20525         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20526         (gst_dvdemux_flush):
20527         * ext/dv/gstdvdemux.h:
20528           Fractional framerates for DV. 
20529
20530 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20531
20532         * gst/autodetect/gstautoaudiosink.c:
20533         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20534         * gst/autodetect/gstautovideosink.c:
20535         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20536           Use gst_plugin_feature_list_free() to free feature list and
20537           in the case of autovideosink free the list at all. Also
20538           miscellaneous cosmetic fixes.
20539
20540 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20541
20542         * gst/cutter/gstcutter.c: (gst_cutter_chain),
20543         (gst_cutter_set_property), (gst_cutter_get_caps):
20544           copy calculation code from level; remove use of some audio
20545           functions
20546
20547 2005-11-22  Andy Wingo  <wingo@pobox.com>
20548
20549         * Update for gst_tag_setter API changes.
20550
20551 2005-11-22  Andy Wingo  <wingo@pobox.com>
20552
20553         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20554         (gst_dvdemux_demux_frame)
20555         * ext/flac/gstflacdec.c (gst_flacdec_write)
20556         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20557         (gst_flacenc_sink_event)
20558         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20559         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20560         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20561         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20562         * gst/auparse/gstauparse.c (gst_auparse_chain)
20563         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20564         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20565         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20566         (gst_avi_demux_handle_seek)
20567         * gst/goom/gstgoom.c (gst_goom_event)
20568         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20569         * gst/matroska/matroska-demux.c
20570         (gst_matroska_demux_handle_seek_event)
20571         (gst_matroska_demux_loop_stream_parse_id)
20572         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20573         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20574         (gst_wavparse_stream_headers): Run update-funcnames.
20575
20576 2005-11-22  Edward Hervey  <edward@fluendo.com>
20577
20578         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20579         (gst_dv1394src_init), (gst_dv1394src_dispose),
20580         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20581         (gst_dv1394src_uri_set_uri):
20582         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20583         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20584         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20585         URIHandler interface and element properties are now properly
20586         synchronized for DV1394src and UDPSrc
20587
20588 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20589
20590         * ext/flac/Makefile.am:
20591         * ext/speex/Makefile.am:
20592           libgsttagedit has been renamed to libgsttag.
20593
20594 2005-11-21  Wim Taymans  <wim@fluendo.com>
20595
20596         * gst/rtsp/rtspconnection.c: (read_body):
20597         Apply patch from Sebastien Cote to fix #319184.
20598
20599 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20600
20601         * configure.ac:
20602         * gst/cutter/Makefile.am:
20603         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20604         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20605         (gst_cutter_set_property), (gst_cutter_get_property),
20606         (plugin_init), (gst_cutter_get_caps):
20607           port cutter
20608         * gst/level/gstlevel.c:
20609           fix up plugin details
20610
20611 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20612
20613         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20614         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20615         (gst_flacdec_src_event):
20616         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20617         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20618         (gst_signal_processor_getrange), (gst_signal_processor_chain):
20619         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20620         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20621         (gst_flxdec_sink_event_handler):
20622         * gst/matroska/matroska-demux.c:
20623         (gst_matroska_demux_handle_seek_event):
20624         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20625           Update for stream lock API changes: don't take stream log
20626           in sink event handlers any longer and change GST_STREAM_LOCK
20627           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20628           functions.
20629
20630 2005-11-21  Michael Smith <msmith@fluendo.com>
20631
20632         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20633           gst_object_unref, not g_object_unref
20634
20635 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20636
20637         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20638         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20639           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20640
20641 2005-11-21  Michael Smith <msmith@fluendo.com>
20642
20643         * gst/auparse/Makefile.am:
20644         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20645         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20646         (gst_auparse_change_state):
20647         * gst/auparse/gstauparse.h:
20648           Partially fix #161712. playbin still doesn't work on these files,
20649           (on the bug report, Andy says we aren't typefinding it for some
20650           reason?) but at least auparse isn't totally busted like it was before.
20651
20652 2005-11-21  Andy Wingo  <wingo@pobox.com>
20653
20654         * *.h:
20655         * *.c: Ran scripts/update-macros. Oh yes.
20656
20657 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20658
20659         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20660           Filler events are gone for now, comment out section generating
20661           them.
20662
20663 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20664
20665         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20666         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20667         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20668         * sys/osxvideo/osxvideosink.m:
20669           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20670           (#322027)
20671
20672 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20673
20674         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20675         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20676         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20677         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20678         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20679         (gst_avi_demux_stream_data):
20680         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20681         * gst/wavenc/gstwavenc.c: (write_metadata):
20682         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20683         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20684         Fixes for GST_FOURCC_FORMAT API change.
20685
20686 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20687
20688         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20689         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20690         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20691         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20692         (gst_text_overlay_change_state):
20693         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20694         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20695         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20696         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20697         * gst/videomixer/videomixer.c: (gst_videomixer_init),
20698         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20699         (gst_videomixer_change_state):
20700           Fix for collect pads API change. Also fix textoverlay state
20701           change function.
20702
20703 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20704
20705         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20706         GST_PAD_IS_USABLE by something approaching it.
20707
20708 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20709
20710         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20711         API changes.
20712         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20713         but also fix the code that was not checking return values from
20714         pad_push neither using pad_alloc_buffer.
20715
20716 2005-11-18  Edward Hervey  <edward@fluendo.com>
20717
20718         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20719         (gst_pngenc_chain):
20720         Added debug category
20721         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20722         goes to EOS.
20723
20724 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
20725
20726         * gst/rtp/Makefile.am
20727         * gst/rtp/gstrtp.c
20728         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20729         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20730         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20731         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20732         * gst/rtp/gstrtpg711enc.h:
20733         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20734         * gst/rtp/gstrtpspeexenc.c:
20735         * gst/rtp/gstrtpspeexenc.h:
20736         * gst/rtp/gstrtpspeexdec.c:
20737         * gst/rtp/gstrtpspeexdec.h:
20738         Created Speex payloader and depayloader; Optimize G711 payloader to
20739         use adapter and send packets until MTU size.
20740
20741 2005-11-16  Wim Taymans  <wim@fluendo.com>
20742
20743         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20744         Fix leak in check.
20745
20746 2005-11-16  Wim Taymans  <wim@fluendo.com>
20747
20748         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20749         Fix state change.
20750
20751 2005-11-16  Andy Wingo  <wingo@pobox.com>
20752
20753         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20754         (gst_udpsrc_create): Move comment.
20755
20756 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
20757
20758         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20759
20760         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20761           When seeking, seek to closest index entry at or before the requested
20762           seek position, not just the closest one (#321001).
20763
20764 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20765
20766         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20767         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20768           Invert DIB images again (see #132341).
20769
20770 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20771
20772         * configure.ac:
20773           rework configure.ac file
20774         * ext/aalib/gstaasink.c:
20775         * ext/cairo/gstcairo.c:
20776         * ext/dv/gstdv.c:
20777         * ext/esd/gstesd.c:
20778         * ext/flac/gstflac.c:
20779         * ext/gconf/gstgconfelements.c:
20780         * ext/gdk_pixbuf/gstgdkpixbuf.c:
20781         * ext/jpeg/gstjpeg.c:
20782         * ext/ladspa/gstladspa.c:
20783         * ext/libcaca/gstcacasink.c:
20784         * ext/libmng/gstmng.c:
20785         * ext/libpng/gstpng.c:
20786         * ext/mikmod/gstmikmod.c:
20787         * ext/pango/gsttextoverlay.c:
20788         * ext/pango/gsttimeoverlay.c:
20789         * ext/raw1394/gst1394.c:
20790         * ext/speex/gstspeex.c:
20791         * gst/alpha/Makefile.am:
20792         * gst/alpha/gstalpha.c:
20793         * gst/alpha/gstalphacolor.c:
20794         * gst/auparse/gstauparse.c:
20795         * gst/autodetect/gstautoaudiosink.c:
20796         (gst_auto_audio_sink_factory_filter),
20797         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20798         * gst/autodetect/gstautodetect.c:
20799         * gst/avi/gstavi.c:
20800         * gst/cutter/gstcutter.c:
20801         * gst/debug/efence.c:
20802         * gst/debug/gstdebug.c:
20803         * gst/debug/gstnavigationtest.c:
20804         * gst/effectv/gsteffectv.c:
20805         * gst/flx/gstflxdec.c:
20806         * gst/goom/gstgoom.c:
20807         * gst/interleave/plugin.c:
20808         * gst/law/alaw.c:
20809         * gst/law/mulaw.c:
20810         * gst/level/gstlevel.c:
20811         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20812         * gst/matroska/matroska.c:
20813         * gst/median/gstmedian.c:
20814         * gst/monoscope/gstmonoscope.c:
20815         * gst/multipart/multipart.c:
20816         * gst/oldcore/gstelements.c:
20817         * gst/rtp/gstrtp.c:
20818         * gst/rtsp/gstrtsp.c:
20819         * gst/smoothwave/gstsmoothwave.c:
20820         * gst/smpte/gstsmpte.c:
20821         * gst/udp/gstudp.c:
20822         * gst/videobox/gstvideobox.c:
20823         * gst/videofilter/gstgamma.c:
20824         * gst/videofilter/gstvideobalance.c:
20825         * gst/videofilter/gstvideoflip.c:
20826         * gst/videofilter/gstvideotemplate.c:
20827         * gst/videomixer/videomixer.c:
20828         * gst/wavenc/gstwavenc.c:
20829         * gst/wavparse/gstwavparse.c:
20830         * sys/oss/gstossaudio.c:
20831         * sys/osxaudio/gstosxaudio.c:
20832           update GST_PLUGIN_DEFINE
20833         * gst/rtp/Makefile.am:
20834         * gst/rtp/gstasteriskh263.c:
20835           check for htons/htonl headers and possibly link to winsock2 lib
20836
20837 2005-11-12  Edward Hervey  <edward@fluendo.com>
20838
20839         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
20840         Only GST_DEBUG() information on the valid components.
20841
20842 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20843
20844         * configure.ac: back to HEAD
20845
20846 === release 0.9.5 ===
20847
20848 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20849
20850         * configure.ac:
20851           releasing 0.9.5, "Phone Alarm"
20852
20853 2005-11-11  Edward Hervey  <edward@fluendo.com>
20854
20855         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20856         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20857         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20858         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20859         (gst_avi_demux_loop):
20860         * gst/avi/gstavidemux.h:
20861         Yeah, implement proper seeking. Exact seeking and segment seeking.
20862         Still need to do some checks for segment_stop.
20863
20864 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20865
20866         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20867
20868         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20869           Don't try to ready buffer duration from buffer that we don't
20870           own any  longer and that might already have been unreffed.
20871           (#321136)
20872
20873 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
20874
20875         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20876         (flx_decode_delta_flc), (gst_flxdec_chain):
20877         Attempting to optimize the code for embedded systems.
20878
20879 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
20880
20881         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20882
20883         * sys/oss/gstosssink.c: (gst_oss_sink_close):
20884           Don't re-use already closed file descriptor. (#320920)
20885
20886 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20887
20888         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20889         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20890         (gst_oss_sink_prepare):
20891         * sys/oss/gstosssink.h:
20892           Cache probed caps; fix debug output for SET_PARAM macros.
20893
20894 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20895
20896         * ext/cairo/Makefile.am:
20897         * ext/cairo/gstcairo.c: (plugin_init):
20898         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20899         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20900         (gst_text_overlay_init), (gst_text_overlay_font_init),
20901         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20902         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20903         (gst_text_overlay_text_pad_linked),
20904         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20905         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20906         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20907         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20908         (gst_text_overlay_change_state):
20909         * ext/cairo/gsttextoverlay.h:
20910           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20911           property and redo positioning. Doesn't handle upstream renegotiation
20912           yet though.
20913
20914 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20915
20916         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20917         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20918         (gst_avi_demux_loop):
20919           No need to take the STREAM_LOCK in the loop function. Improve
20920           some debug messages. Don't leak pad names in debug messages.
20921
20922 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20923
20924         * gst/matroska/matroska-demux.c:
20925         (gst_matroska_demux_push_vorbis_codec_priv_data),
20926         (gst_matroska_demux_add_wvpk_header):
20927           Don't error out when the source pad isn't linked.
20928
20929 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
20930
20931         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
20932         (gst_gconf_audio_sink_change_state):
20933         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
20934         (gst_gconf_video_sink_change_state):
20935           Fix state change functions here as well and set kid
20936           to NULL state before removing it.
20937
20938 2005-11-01  Edward Hervey  <edward@fluendo.com>
20939
20940         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
20941         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
20942         Added proper event handlind, 
20943         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
20944         ignored),
20945         and don't set a duration of 0 for buffers otherwise they are discarded
20946         by GstBaseSink.
20947
20948         GstWavEnc needs some serious loving, after going through the code I'm
20949         really wondering how this can stay in -good ...
20950
20951 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20952
20953         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
20954         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
20955         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
20956         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
20957         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
20958         (gst_matroska_mux_collected):
20959           Fix leaks and invalid memory access as reported by valgrind
20960
20961 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20962
20963         Patch by: Michal Benes <michal.benes@xeris.cz>
20964
20965         * check/Makefile.am:
20966         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20967         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
20968         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
20969           add a unit test for matroskamux
20970           fix the bugs that the unit test exposed
20971
20972 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
20973
20974         * gst/autodetect/gstautoaudiosink.c:
20975         (gst_auto_audio_sink_class_init),
20976         (gst_auto_audio_sink_change_state):
20977         * gst/autodetect/gstautovideosink.c:
20978         (gst_auto_video_sink_class_init),
20979         (gst_auto_video_sink_change_state):
20980           Fix state change function and use GST_DEBUG_FUNCPTR in
20981           class_init.
20982
20983 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20984
20985         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20986
20987         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
20988         (gst_ebml_write_reset), (gst_ebml_write_element_new):
20989         * gst/matroska/ebml-write.h:
20990         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20991           Set timestamps on outgoing ebml headers as well, so that the
20992           element after matroskamux can get the timestamp already when
20993           reading the first ebml element and doesn't have to wait for
20994           the actual data buffer for that (#320308).
20995           
20996 2005-10-31  Andy Wingo  <wingo@pobox.com>
20997
20998         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
20999         (gst_videomixer_pad_link): Kill some memleaks.
21000         (gst_videomixer_pad_get_property): Style fix.
21001         (gst_videomixer_pad_set_property): Style fix.
21002         (gst_videomixer_pad_init): Style fix.
21003         (gst_videomixer_update_queues): Kill memleak.
21004         (gst_videomixer_loop): Kill memleak.
21005         (gst_videomixer_collected): Kill memleak.
21006
21007 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21008
21009         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
21010         gst_auparse_change_state:
21011         Just some cleanup.
21012
21013 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21014
21015         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
21016         Add checks to GST_FLOW_NOT_LINKED for values returned
21017         from gst_pad_push.
21018         
21019 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21020
21021         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
21022         (gst_rtpg711dec_process):
21023         * gst/rtp/gstrtpgsmenc.c:
21024         Payloader now sets some default caps on the srcpad if caps on the sinkpad
21025         are never set. This is important for the g711 to work with burger's rtpbin
21026         element.
21027
21028 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
21029
21030         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
21031         (gst_speexenc_push_buffer):
21032         Add checks for return values from gst_pad_push and
21033         gst_pad_alloc_buffer.
21034
21035 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
21036
21037         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21038
21039         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21040         (gst_matroska_demux_parse_info),
21041         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
21042         (gst_matroska_demux_parse_cluster):
21043         * gst/matroska/matroska-ids.h:
21044         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
21045         (gst_matroska_mux_init), (gst_matroska_mux_start),
21046         (gst_matroska_mux_create_buffer_header),
21047         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
21048         (gst_matroska_mux_get_property):
21049         * gst/matroska/matroska-mux.h:
21050           Add SimpleBlock support to matroska demuxer and muxer (part of
21051           Matroska v2). (#319731)
21052
21053 2005-10-28  Wim Taymans  <wim@fluendo.com>
21054
21055         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
21056         (gst_jpeg_dec_change_state):
21057         * ext/jpeg/gstjpegdec.h:
21058         Cleanups. Don't create caps for every chain.
21059
21060 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
21061
21062         * gst/law/alaw-encode.c: (gst_alawenc_init),
21063         (alawenc_setcaps), (gst_alawenc_chain)
21064         * gst/law/alaw-encode.h:
21065         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
21066         (mulawenc_setcaps), (gst_mulawenc_chain)
21067         * gst/law/mulaw-encode.h:
21068         Set timestamp on buffer and it allows RTP G711 elements
21069         work properly.
21070
21071 2005-10-27  Wim Taymans  <wim@fluendo.com>
21072
21073         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21074         Set correct format on oss instead of a silly value. 
21075
21076 2005-10-27  Julien MOUTTE  <julien@moutte.net>
21077
21078         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21079         (gst_video_box_transform_caps), (gst_video_box_set_caps),
21080         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
21081         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
21082         I420 rendering as well, doesn't bring much for my platform.
21083         Might help on some other platforms.
21084
21085 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21086
21087         * gst/rtp/gstrtpgsmenc.c:
21088         * gst/rtp/gstrtpgsmparse.c:
21089         Declaring the padtemplate correctly.
21090
21091 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21092
21093         * gst/rtp/gstrtpg711dec.c:
21094         * gst/rtp/gstrtpg711enc.c:
21095         * gst/rtp/gstrtpgsmenc.c:
21096         * gst/rtp/gstrtpgsmparse.c:
21097         Setting the proper copyright notice.
21098
21099 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21100
21101         * gst/videobox/Makefile.am: Use liboil.
21102         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21103         (gst_video_box_set_property), (gst_video_box_transform_caps),
21104         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
21105         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
21106         using liboil. Will dot the same to I420 border generation
21107         tomorrow.
21108
21109 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21110
21111         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
21112         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21113         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21114         * gst/rtp/gstrtpg711dec.h:
21115         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21116         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21117         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21118         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21119         (gst_rtpgsmenc_handle_buffer):
21120         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21121         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21122         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21123         * gst/rtp/gstrtpgsmparse.h:
21124         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21125         inherits from the basertpdepayloader.
21126
21127 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21128
21129         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21130         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21131         (gst_video_box_ayuv): Removing this forgotten debug.
21132
21133 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21134
21135         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21136         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21137         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21138
21139 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21140
21141         * sys/oss/gstossaudio.c:
21142         * sys/oss/gstossdmabuffer.c:
21143         * sys/oss/gstosshelper.c:
21144         * sys/oss/gstossmixer.c:
21145         * sys/oss/gstossmixerelement.c:
21146         * sys/oss/gstossmixertrack.c:
21147         * sys/oss/gstosssink.c:
21148         * sys/oss/gstosssrc.c:
21149           Actually use the 'oss' debug category we register.
21150
21151 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21152
21153         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21154         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21155         Use gst_pad_get_parent and drop the ref that was added through
21156         that call.
21157
21158 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21159
21160         * gst/rtp/gstrtpgsmenc.c:
21161           Fix compilation
21162
21163 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21164
21165         * gst/rtp/gstrtpg711dec.c
21166         Just removed a couple of lines of weird code used during
21167         development/test time.
21168
21169 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21170
21171         * gst/rtp/Makefile.am
21172         * gst/rtp/gstrtp.c
21173         * gst/rtp/gstrtpg711enc.c
21174         * gst/rtp/gstrtpg711enc.h
21175         * gst/rtp/gstrtpg711dec.c
21176         * gst/rtp/gstrtpg711dec.h
21177         Created G711 payloader and depayloader (it supports mulaw and alaw
21178         (dec)encoders)
21179
21180 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21181
21182         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21183         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21184         Doh ! I introduced wingo's bug again ! Sorry...
21185
21186 2005-10-25  Christian Schaller <christian@fluendo.com> 
21187
21188         * gst/rtp/Makefile.am: add missing header files for disting
21189
21190 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21191
21192         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21193         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21194         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21195         (gst_rtpgsmenc_handle_buffer):
21196         * gst/rtp/gstrtpgsmenc.h:
21197         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21198         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21199         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21200         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21201         * gst/rtp/gstrtpgsmparse.h:
21202         Getting the GSM (de)payloader working and compatible with our plans for RTP.
21203
21204 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21205
21206         * ext/libpng/gstpngdec.c: (user_info_callback),
21207         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21208         a newsegment event, move some redundant code in a single place.
21209
21210 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21211
21212         * ext/libpng/gstpngdec.c: (user_info_callback),
21213         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21214         hack to get correct colors order when we have a png image with
21215         alpha channel.
21216
21217 2005-10-24  Edward Hervey  <edward@fluendo.com>
21218
21219         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
21220         Call gst_element_no_more_pads when there will be no more pads.
21221
21222 2005-10-24  Wim Taymans  <wim@fluendo.com>
21223
21224         * gst/rtp/Makefile.am:
21225         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21226         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21227         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21228         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21229         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21230         (gst_asteriskh263_plugin_init):
21231         * gst/rtp/gstasteriskh263.h:
21232         * gst/rtp/gstrtp.c: (plugin_init):
21233         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21234         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21235         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21236         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21237         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21238         (gst_rtph263enc_plugin_init):
21239         * gst/rtp/gstrtph263enc.h:
21240         Added two new payloaders, an RFC 2190 payloader for h263 and
21241         a payload convertor for an asterisk server.
21242
21243 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21244
21245         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21246           Set bytes_per_sample correctly (is not always 4, but 
21247           depends on width and number of channels).
21248
21249 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21250
21251         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21252         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21253         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21254         (gst_flacenc_sink_event), (gst_flacenc_chain),
21255         (gst_flacenc_set_property), (gst_flacenc_get_property),
21256         (gst_flacenc_change_state):
21257         * ext/flac/gstflacenc.h:
21258           Fix seeking, so that flacenc can rewrite the header with the
21259           correct duration and amount of samples and all that at EOS;
21260           also set timestamps and granulepos on outgoing buffers; add
21261           debug category; fix state change function.
21262           
21263 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21264
21265         * gst/videomixer/videomixer.c: Don't restrict video geometry
21266         from 16 to 4096.
21267
21268 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21269
21270         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21271         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21272         Fix caps negotiation correctly, add debugging category.
21273
21274 2005-10-24  Christian Schaller  <christian@fluendo.com>
21275
21276         * configure.ac: Port over Thomas's change from base listing all plugins
21277
21278 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21279
21280         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21281         a sink pad.
21282
21283 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21284
21285         * configure.ac:
21286         * docs/upload.mak:
21287           back to HEAD
21288
21289 === release 0.9.4 ===
21290
21291 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21292
21293         * configure.ac:
21294           Releasing 0.9.4, "Dromiceiomimus"
21295
21296 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
21297
21298         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21299         (gst_speexenc_src_query):
21300           Add position and duration query, fix query type function.
21301           
21302         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21303         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21304           Let's not set non-fixed caps on source pads.
21305
21306 2005-10-21  Wim Taymans  <wim@fluendo.com>
21307
21308         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21309         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21310         (gst_avi_demux_handle_seek):
21311         Set correct stream_time in newsegment event.
21312         avi can also handle a duration query now.
21313
21314 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21315
21316         * gst/matroska/matroska-demux.c:
21317         (gst_matroska_demux_handle_src_query),
21318         (gst_matroska_demux_handle_seek_event),
21319         (gst_matroska_demux_loop_stream_parse_id):
21320           Fix duration query; fix basetime in newsegment event after
21321           seek; fix duration in initial newsegment event.
21322
21323         * gst/matroska/matroska-mux.c:
21324         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21325           Extract number of channels and samplerate from vorbis headers;
21326           add some debug messages when querying the durations of the
21327           input streams.
21328
21329 2005-10-20  Wim Taymans  <wim@fluendo.com>
21330
21331         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21332         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21333         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21334         Set stream time correctly in newsegment.
21335
21336 2005-10-20  Wim Taymans  <wim@fluendo.com>
21337
21338         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21339         Correctly fill in the stream time.
21340
21341 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21342
21343         * check/elements/level.c: (GST_START_TEST):
21344         * gst/level/gstlevel.c: (gst_level_message_new):
21345         * gst/level/level-example.c: (message_handler):
21346           use ELEMENT messages instead
21347
21348 2005-10-19  Wim Taymans  <wim@fluendo.com>
21349
21350         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21351         (gst_dvdemux_src_query):
21352         * ext/flac/gstflacdec.c: (gst_flacdec_length),
21353         (gst_flacdec_src_query):
21354         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21355         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21356         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21357         * gst/debug/gstnavseek.c: (gst_navseek_seek):
21358         * gst/debug/progressreport.c: (gst_progress_report_report):
21359         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21360         * gst/matroska/matroska-demux.c:
21361         (gst_matroska_demux_handle_src_query):
21362         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21363         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21364         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21365         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21366         (gst_wavparse_srcpad_event):
21367         API change fix.
21368
21369 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21370
21371         * gst/goom/filters.c:
21372         * gst/goom/graphic.h:
21373         * gst/goom/lines.c:
21374           Make inline functions either 'static inline' or 'extern inline',
21375           otherwise the Forte compiler apparently won't inline them (#317300).
21376
21377 2005-10-19  Julien MOUTTE  <julien@moutte.net>
21378
21379         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21380         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21381         (user_info_callback), (user_endrow_callback), (user_end_callback),
21382         (user_read_data), (gst_pngdec_caps_create_and_set),
21383         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21384         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21385         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21386         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21387         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21388         very nice and handle push/pull based model. if you have filesrc
21389         connected to it, it will do random access to load the png file.
21390         If you have a network source that can't do _getrange, it does 
21391         progressive loading through the chain function.
21392         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21393         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21394         thanks to Master Wim Taymans ;-)
21395
21396 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
21397
21398         * gst/matroska/Makefile.am:
21399         * gst/matroska/ebml-read.c:
21400         * gst/matroska/ebml-read.h:
21401         * gst/matroska/matroska-demux.c:
21402         * gst/matroska/matroska-demux.h:
21403         * gst/matroska/matroska.c: (plugin_init):
21404           Ported matroska demuxer to 0.9.
21405
21406 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
21407
21408         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21409
21410         * gst/matroska/matroska-mux.c:
21411         (gst_matroska_mux_video_pad_setcaps),
21412         (gst_matroska_mux_audio_pad_setcaps):
21413           Fix mpeg4 input handling (#318847); also, while we're at it,
21414           fix media type for Motion-JPEG: should be image/jpeg.
21415
21416 2005-10-18  Wim Taymans  <wim@fluendo.com>
21417
21418         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21419         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21420         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21421         Fix for segment-start/stop API change.
21422
21423 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21424
21425         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21426         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21427         way.
21428
21429 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21430
21431         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21432         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21433         output declared in transform_caps.
21434
21435 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21436
21437         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21438
21439 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21440
21441         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21442         (gst_video_box_get_unit_size): Fix wrong size calculations and
21443         implement get_unit_size correctly.
21444
21445 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
21446
21447         * configure.ac:
21448           Enable flx plugin.
21449
21450         * gst/flx/gstflxdec.c: (flx_decode_chunks):
21451           Fix gcc4 signedness issue.
21452
21453 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21454
21455         * configure.ac: Adding videomixer.
21456         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21457         (user_read_data), (gst_pngdec_chain): More debugging.
21458         * gst/alpha/Makefile.am: Adding alphacolor
21459         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21460         (gst_alpha_color_class_init), (gst_alpha_color_init),
21461         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21462         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21463         (plugin_init): Ported to 0.9 using in place base tranform.
21464         * gst/videomixer/Makefile.am:
21465         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21466         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21467         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21468         (gst_videomixer_pad_init), (gst_videomixer_class_init),
21469         (gst_videomixer_init), (gst_videomixer_getcaps),
21470         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21471         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21472         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21473         to 0.9 using collectpads.
21474
21475 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
21476
21477         * configure.ac:
21478         * gst/flx/Makefile.am:
21479         * gst/flx/gstflxdec.c: (gst_flxdec_init),
21480         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21481         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21482         * gst/flx/gstflxdec.h:
21483         flx plugin ported to 0.9
21484
21485 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21486
21487         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21488           use new gst_version_string()
21489
21490 2005-10-16  Andy Wingo  <wingo@pobox.com>
21491
21492         * configure.ac: GLIB_CHECK.
21493
21494 2005-10-15  Julien MOUTTE  <julien@moutte.net>
21495
21496         * ext/libpng/Makefile.am:
21497         * ext/libpng/gstpng.c: (plugin_init):
21498         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21499         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21500         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21501
21502 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
21503
21504         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21505
21506         * configure.ac:
21507         * gst/matroska/Makefile.am:
21508         * gst/matroska/ebml-ids.h:
21509         * gst/matroska/ebml-write.c:
21510         * gst/matroska/ebml-write.h:
21511         * gst/matroska/matroska-ids.h:
21512         * gst/matroska/matroska-mux.c:
21513         * gst/matroska/matroska-mux.h:
21514         * gst/matroska/matroska.c: (plugin_init):
21515           Port matroska muxer to 0.9 (#318847).
21516
21517 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21518
21519         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21520         (comment_init), (comment_add):
21521           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21522           use GST_READ_UINT32_LE() and friends rather than the private
21523           implementation of those same macros.
21524
21525 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21526
21527         * examples/stats/mp2ogg.c:
21528           more typo fixes
21529
21530 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21531
21532         * examples/indexing/indexmpeg.c: (main):
21533         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21534         (gst_esdmon_close_audio), (gst_esdmon_change_state):
21535         * ext/esd/esdmon.h:
21536         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21537         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21538         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21539         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21540         * gst/avi/gstavimux.c: (gst_avimux_init):
21541         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21542         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21543         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21544         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21545         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21546         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21547         * gst/oldcore/gstmultifilesrc.h:
21548         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21549         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21550         (gst_pipefilter_change_state):
21551         * gst/oldcore/gstpipefilter.h:
21552         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21553         * gst/videomixer/videomixer.c: (gst_videomixer_init):
21554         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21555         * sys/osxaudio/gstosxaudiosink.h:
21556         * sys/osxaudio/gstosxaudiosrc.h:
21557           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21558           moved bitshift from macro to enum definition
21559
21560 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21561
21562         * ext/Makefile.am:
21563         * ext/cairo/Makefile.am:
21564         * ext/cairo/gstcairo.c: (plugin_init):
21565         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21566         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21567         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21568         * ext/cairo/gsttimeoverlay.h:
21569           update of cairo-based timeoverlay to 1.0 Cairo API
21570           doesn't work yet for resizing of output sink
21571
21572 2005-10-11  Wim Taymans  <wim@fluendo.com>
21573
21574         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21575         newsegment API fix.
21576
21577 2005-10-11  Wim Taymans  <wim@fluendo.com>
21578
21579         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21580         (gst_dvdemux_demux_frame):
21581         * ext/flac/gstflacdec.c: (gst_flacdec_write):
21582         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21583         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21584         (gst_avi_demux_handle_seek):
21585         * gst/goom/gstgoom.c: (gst_goom_event):
21586         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21587         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21588         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21589         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21590         (gst_wavparse_srcpad_event):
21591         newsegment API update.
21592
21593 2005-10-11  Andy Wingo  <wingo@pobox.com>
21594
21595         * ext/speex/gstspeexenc.c: Signedness cleanups.
21596
21597 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
21598
21599         * PORTED_09:
21600         * ext/speex/Makefile.am:
21601         * ext/speex/gstspeex.c:
21602         * ext/speex/gstspeexenc.c:
21603         Speexenc ported to 0.9
21604
21605 2005-10-10  Wim Taymans  <wim@fluendo.com>
21606
21607         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21608         (gst_oss_sink_init), (gst_oss_sink_set_property),
21609         (gst_oss_sink_get_property), (gst_oss_sink_open),
21610         (gst_oss_sink_prepare), (gst_oss_sink_reset):
21611         * sys/oss/gstosssink.h:
21612         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21613         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21614         (gst_oss_src_prepare):
21615         Cleanups, make device configurable in the sink, handle and report
21616         errors.
21617
21618 2005-10-10  Wim Taymans  <wim@fluendo.com>
21619
21620         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21621         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21622         Make sure element is NULL before removing from the bin.
21623
21624 2005-10-07  Andy Wingo  <wingo@pobox.com>
21625
21626         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21627         block forever in a read().
21628         (gst_dv1394src_bus_reset): Post a message when the cable is
21629         unplugged.
21630         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21631         (gst_dv1394src_bus_reset): Don't unref the message.
21632
21633         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21634         hacking. The only change should be that the state change stuff was
21635         put into basesrc's start() and stop() routines, which coalesces
21636         some steps.
21637
21638 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
21639
21640         * configure.ac:
21641           Add check for mmap
21642           
21643         * gst/debug/Makefile.am:
21644           Only compile efence plugin on systems that have mmap.
21645
21646 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
21647
21648         * gst/debug/Makefile.am:
21649         * gst/debug/breakmydata.c:
21650         * gst/debug/gstdebug.c:
21651         * gst/debug/gstnavigationtest.c:
21652         * gst/debug/gstnavseek.c: 
21653         * gst/debug/gstnavseek.h:
21654         * gst/debug/progressreport.c: 
21655         * gst/debug/testplugin.c:
21656           Port progressreport, navseek, navigationtest, testsink and
21657           breakmydata.
21658
21659 2005-10-05  Edward Hervey  <edward@fluendo.com>
21660
21661         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21662         (gst_dvdemux_src_query):
21663         Fixes for better conversion
21664
21665 2005-10-04  Michael Smith <msmith@fluendo.com>
21666
21667         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21668         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21669         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21670         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21671           Set state of elements to NULL before removing from bins.
21672           Set state of test element to NULL if we failed to move it to READY
21673
21674 2005-10-04  Edward Hervey  <edward@fluendo.com>
21675
21676         * ext/dv/Makefile.am:
21677         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
21678         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21679         Corrected the query function for position so it doesn't forget what
21680         format was asked, and calls the conversion functions on the correct pad.
21681
21682 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21683
21684         * configure.ac:
21685           back to development
21686
21687 === release 0.9.3 ===
21688
21689 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21690
21691         * configure.ac:
21692           Releasing 0.9.3, "Aramis"
21693
21694 2005-10-03  Andy Wingo  <wingo@pobox.com>
21695
21696         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21697         error returns.
21698
21699 2005-10-02  Andy Wingo  <wingo@pobox.com>
21700
21701         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21702
21703         * ext/flac/gstflacenc.c: Ported to 0.9.
21704
21705         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21706
21707         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21708         and link to gsttagedit. Enable flacenc.
21709
21710         * ext/flac/gstflacdec.c: Re-enable tag reading.
21711
21712 2005-09-30  Wim Taymans  <wim@fluendo.com>
21713
21714         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21715         * gst/rtp/gstrtpgsmparse.c:
21716         * gst/rtp/gstrtph263penc.c:
21717         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21718         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21719         (gst_rtpmp4venc_set_property):
21720         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21721         Various class and caps fixes from Andre Magalhaes (andrunko)
21722
21723 2005-09-29  Wim Taymans  <wim@fluendo.com>
21724
21725         * gst/level/level-example.c: (main):
21726         Update for new bus API.
21727
21728 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
21729
21730         * configure.ac:
21731           Fix unexpanded autoconf macro GST_DOC, which has been renamed
21732           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21733
21734 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
21735
21736         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21737           Fix playback of mono streams (bytes_per_sample should be set
21738           from the sample width and the number of channels negotiated,
21739           and not just be set to 4) (#317338)
21740
21741 2005-09-26  Wim Taymans  <wim@fluendo.com>
21742
21743         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21744         (gst_rtpmpaenc_handle_buffer):
21745         Set buffer duration correctly.
21746
21747 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
21748
21749         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21750         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21751         (gst_avi_demux_change_state):
21752           Don't crash when encountering a stream with an unknown fourcc or
21753           codec id. Instead, create a pad of type video/x-avi-unknown or
21754           audio/x-avi-unknown, which as a side-effect also results in less
21755           confusing error messages in players ('no decoder' vs. 'no streams');
21756           minor fixes to state change function and class_init function.
21757
21758 2005-09-24  Wim Taymans  <wim@fluendo.com>
21759
21760         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21761         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21762         These are sinks.
21763
21764 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21765
21766         * check/elements/level.c: (GST_START_TEST):
21767           fix test for new GstClockTime use
21768         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21769         (gst_level_transform_ip):
21770         * gst/level/gstlevel.h:
21771           fix up the decay peak, ensuring the decay peak is never lower
21772           than the peak for that interval
21773
21774 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21775
21776         * docs/plugins/gst-plugins-good-plugins.args:
21777         * docs/plugins/inspect/plugin-alpha.xml:
21778         * docs/plugins/inspect/plugin-rtp.xml:
21779         * gst/level/gstlevel.c: (gst_level_set_caps),
21780         (gst_level_transform_ip):
21781           updating docs
21782
21783 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21784
21785         * Makefile.am:
21786         * check/elements/level.c: (GST_START_TEST):
21787         * gst/level/Makefile.am:
21788         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21789         (gst_level_set_property), (gst_level_get_property),
21790         (gst_level_set_caps), (gst_level_message_new),
21791         (gst_level_transform_ip):
21792         * gst/level/gstlevel.h:
21793         * gst/level/level-example.c: (message_handler), (main):
21794           convert to using GstClockTime for all time values, finally.
21795
21796 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21797
21798         * gst/auparse/Makefile.am:
21799         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21800           fix up build
21801         * configure.ac:
21802         * ext/cairo/Makefile.am:
21803         * ext/dv/Makefile.am:
21804         * ext/esd/Makefile.am:
21805         * ext/flac/Makefile.am:
21806         * ext/gconf/Makefile.am:
21807         * ext/gdk_pixbuf/Makefile.am:
21808         * ext/jpeg/Makefile.am:
21809         * ext/ladspa/Makefile.am:
21810         * ext/libcaca/Makefile.am:
21811         * ext/libmng/Makefile.am:
21812         * ext/libpng/Makefile.am:
21813         * ext/mikmod/Makefile.am:
21814         * ext/pango/Makefile.am:
21815         * ext/raw1394/Makefile.am:
21816         * ext/shout2/Makefile.am:
21817         * ext/speex/Makefile.am:
21818         * gst/alpha/Makefile.am:
21819         * gst/autodetect/Makefile.am:
21820         * gst/avi/Makefile.am:
21821         * gst/cutter/Makefile.am:
21822         * gst/debug/Makefile.am:
21823         * gst/effectv/Makefile.am:
21824         * gst/flx/Makefile.am:
21825         * gst/goom/Makefile.am:
21826         * gst/interleave/Makefile.am:
21827         * gst/law/Makefile.am:
21828         * gst/matroska/Makefile.am:
21829         * gst/median/Makefile.am:
21830         * gst/monoscope/Makefile.am:
21831         * gst/multipart/Makefile.am:
21832         * gst/oldcore/Makefile.am:
21833         * gst/rtp/Makefile.am:
21834         * gst/rtsp/Makefile.am:
21835         * gst/smoothwave/Makefile.am:
21836         * gst/smpte/Makefile.am:
21837         * gst/videobox/Makefile.am:
21838         * gst/videofilter/Makefile.am:
21839         * gst/videomixer/Makefile.am:
21840         * gst/wavenc/Makefile.am:
21841         * gst/wavparse/Makefile.am:
21842         * sys/oss/Makefile.am:
21843         * sys/osxaudio/Makefile.am:
21844         * sys/osxvideo/Makefile.am:
21845           fix up GST_LIBS use
21846
21847 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21848
21849         * gst/auparse/Makefile.am:
21850         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21851           fix build of auparse
21852
21853 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21854
21855         * configure.ac:
21856         * PORTED_09:
21857         * gst/auparse/gstauparse.c:
21858         * gst/auparse/gstauparse.h:
21859         Auparse ported to 0.9.
21860
21861 2005-09-22  Wim Taymans  <wim@fluendo.com>
21862
21863         * gst/rtp/TODO:
21864         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21865         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21866         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21867         (gst_rtpmp4venc_set_property):
21868         * gst/rtp/gstrtpmp4venc.h:
21869         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21870         * gst/rtp/gstrtpmpaenc.h:
21871         Use is_filled to both check MTU and max-ptime of base class.
21872
21873 2005-09-22  Wim Taymans  <wim@fluendo.com>
21874
21875         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21876         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21877         (gst_rtpmp4venc_set_property):
21878         Don't fragment packets with multiple frames.
21879
21880 2005-09-22  Wim Taymans  <wim@fluendo.com>
21881
21882         * gst/rtp/TODO:
21883         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21884         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21885         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21886         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21887         (gst_rtpmp4venc_get_property):
21888         * gst/rtp/gstrtpmp4venc.h:
21889         Remove g_print.
21890         Update TODO
21891         Make payload encoder a bit smarter and more correct with
21892         timestamps.
21893         Added option in payloader to include config string in-band.
21894
21895 2005-09-21  Wim Taymans  <wim@fluendo.com>
21896
21897         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21898         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21899         (gst_rtspsrc_send):
21900         Strip spaces for key/value pairs.
21901
21902 2005-09-21  Wim Taymans  <wim@fluendo.com>
21903
21904         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21905         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21906         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21907         (gst_rtspsrc_change_state):
21908         More SDP parsing and caps setting.
21909         Do NO_PREROLL differently.
21910         add pads only after negotiated.
21911
21912         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21913         (gst_udpsrc_getcaps):
21914         Implement the getcaps function.
21915
21916 2005-09-21  Wim Taymans  <wim@fluendo.com>
21917
21918         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21919         (gst_rtpamrdec_chain):
21920         Handle multiple AMr packets per payload. Handle CRC and
21921         parse ILL/ILP.
21922
21923         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21924         Make caps params strings for easy SDP mapping.
21925         
21926         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
21927         Handle capsnego better.
21928
21929         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21930         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
21931         Generate and parse config string in the caps.
21932
21933 2005-09-21  Wim Taymans  <wim@fluendo.com>
21934
21935         * gst/rtp/README:
21936         Update README
21937
21938         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
21939         Make extra params as strings.
21940
21941         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
21942         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21943         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
21944         Make state change return NO_PREROLL as this is a live
21945         source.
21946
21947         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21948         Don't unref old caps when NULL.
21949
21950 2005-09-20  Wim Taymans  <wim@fluendo.com>
21951
21952         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
21953         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21954         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
21955         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
21956         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
21957         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
21958         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
21959         * gst/rtsp/sdpmessage.h:
21960         Add URI handler.
21961         Parse SDP and create caps.
21962
21963 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
21964
21965         * gst/alpha/gstalpha.c:
21966           fix element description
21967
21968 2005-09-19  Wim Taymans  <wim@fluendo.com>
21969
21970         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
21971         Don't check payload for now.
21972
21973 2005-09-19  Wim Taymans  <wim@fluendo.com>
21974
21975         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
21976         (gst_wavparse_init), (gst_wavparse_parse_file_header),
21977         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
21978         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21979         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21980         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
21981         (gst_wavparse_change_state):
21982         * gst/wavparse/gstwavparse.h:
21983         Fix wavparse some more.
21984
21985 2005-09-19  Wim Taymans  <wim@fluendo.com>
21986
21987         * check/elements/level.c: (GST_START_TEST):
21988         Fix for bus API change.
21989
21990 2005-09-19  Wim Taymans  <wim@fluendo.com>
21991
21992         * gst/level/level-example.c: (main):
21993         Fix for new bus API.
21994
21995         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21996         Set caps on pads.
21997
21998 2005-09-15  Wim Taymans  <wim@fluendo.com>
21999
22000         * gst/rtp/Makefile.am:
22001         * gst/rtp/README:
22002         * gst/rtp/gstrtp.c: (plugin_init):
22003         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
22004         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
22005         (gst_rtpamrdec_change_state):
22006         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
22007         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
22008         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
22009         * gst/rtp/gstrtpamrenc.h:
22010         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
22011         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
22012         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
22013         * gst/rtp/gstrtpgsmenc.h:
22014         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
22015         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
22016         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
22017         (gst_rtpgsmparse_change_state):
22018         * gst/rtp/gstrtpgsmparse.h:
22019         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
22020         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
22021         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
22022         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
22023         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
22024         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
22025         * gst/rtp/gstrtph263penc.h:
22026         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
22027         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
22028         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22029         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
22030         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
22031         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
22032         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
22033         * gst/rtp/gstrtpmp4venc.h:
22034         * gst/rtp/gstrtpmpadec.c:
22035         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
22036         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
22037         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
22038         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
22039         * gst/rtp/gstrtpmpaenc.h:
22040         Updates to payloader/depayloaders, make payloaders use
22041         the base classes.
22042         Updated README with suggested RTP caps and how to convert
22043         to/from SDP.
22044         Added config descriptor in mp4v payloader.
22045
22046 2005-09-15  Andy Wingo  <wingo@pobox.com>
22047
22048         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
22049         * gst/autodetect/gstautovideosink.c
22050         (gst_auto_video_sink_find_best): Update for new registry API.
22051
22052 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22053
22054         * common/c-to-xml.py:
22055         * common/gtk-doc-plugins.mak:
22056           a simple py script to generate valid xml from a C example
22057           probably also need to strip an MIT license when we decide
22058         * docs/plugins/Makefile.am:
22059         * gst/level/Makefile.am:
22060         * gst/level/gstlevel.c: (gst_level_init):
22061         * gst/level/level-example.c: (message_handler), (main):
22062           add an example to level that will show up in the docs
22063         * gst/rtp/TODO:
22064           add a note for the future
22065
22066 2005-09-14  Michael Smith <msmith@fluendo.com>
22067
22068         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
22069           Actually define the debug object being used in wavenc. Fixes #316205
22070
22071 2005-09-14  Michael Smith <msmith@fluendo.com>
22072
22073         * gst/smpte/Makefile.am:
22074           Link against GST_BASE_LIBS, to get it linked against libgstbase;
22075           needed to build on windows (bug 316204)
22076
22077 2005-09-12  Andy Wingo  <wingo@pobox.com>
22078
22079         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
22080
22081 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22082
22083         * configure.ac:
22084         * gst/fdsrc/Makefile.am:
22085         * gst/fdsrc/gstfdsrc.c:
22086         * gst/fdsrc/gstfdsrc.h:
22087           Move fdsrc back into gstreamer core elements.
22088
22089         * gst/level/gstlevel.c: (gst_level_class_init),
22090         (gst_level_transform_ip):
22091         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
22092           Basetransform changes.
22093
22094 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22095
22096         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
22097         * ext/jpeg/smokecodec.c: (find_best_size):
22098           fix compiler warnings
22099
22100 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22101
22102         * gst-plugins-good.spec.in:
22103           spec file fixes
22104         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
22105         (gst_multiudpsink_render), (gst_multiudpsink_add),
22106         (gst_multiudpsink_clear):
22107           it actually helps to actually stream if we hook up the
22108           "add" signal to an actual implementation
22109         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
22110           some debugging
22111
22112 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
22113
22114         * ext/jpeg/Makefile.am:
22115         * ext/jpeg/gstjpeg.c
22116         * ext/jpeg/gstjpegenc.c:
22117         * ext/jpeg/gstsmokeenc.c:
22118
22119 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22120
22121         * ext/flac/gstflacdec.c:
22122         * ext/flac/gstflacenc.c:
22123         * ext/flac/gstflactag.c:
22124         * ext/speex/gstspeexenc.c:
22125           gsttaginterface.h -> gsttagsetter.h
22126
22127 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22128
22129         * configure.ac:
22130         * gst/debug/Makefile.am:
22131         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22132         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22133         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22134         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22135         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22136           Port to 0.9 and re-enable efence plugin.
22137
22138 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
22139
22140         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22141         (gst_flacdec_write), (gst_flacdec_convert_src):
22142         * ext/flac/gstflacdec.h:
22143           Add support for flac files with 24/32 bits per sample; and misc.
22144           minor clean-ups. Seeking is still partly broken (for me at least).
22145
22146 2005-09-06  Wim Taymans  <wim@fluendo.com>
22147
22148         * gst/rtp/Makefile.am:
22149         * gst/rtp/gstrtp.c: (plugin_init):
22150         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22151         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22152         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22153         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22154         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22155         (gst_rtpmp4vdec_plugin_init):
22156         * gst/rtp/gstrtpmp4vdec.h:
22157         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22158         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22159         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22160         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22161         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22162         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22163         * gst/rtp/gstrtpmp4venc.h:
22164         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22165         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22166         Added mpeg4 video payload encoder/decoder.
22167         Added some docs in mpa payloader.
22168
22169 === release 0.9.1 ===
22170
22171 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22172
22173         * NEWS:
22174         * README:
22175         * RELEASE:
22176         * autogen.sh:
22177         * configure.ac:
22178           releasing 0.9.1, "Blondie"
22179
22180 2005-09-05  Andy Wingo  <wingo@pobox.com>
22181
22182         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22183         here from the state change handler, so we fire signals without
22184         holding the state lock.
22185
22186 2005-09-02  Andy Wingo  <wingo@pobox.com>
22187
22188         * All plugins updated for element state changes.
22189
22190 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22191
22192         * Makefile.am:
22193         * check/.cvsignore:
22194         * check/Makefile.am:
22195         * check/elements/.cvsignore:
22196         * check/elements/level.c: (setup_level), (cleanup_level),
22197         (GST_START_TEST), (level_suite), (main):
22198           add a test for level
22199         * common/release.mak:
22200           move the enum checking to release.mak
22201         * configure.ac:
22202           add valgrind and check checking
22203         * gst/level/gstlevel.c: (gst_level_transform):
22204         * gst/level/gstlevel.h:
22205           fix Andy's cast bug
22206           convert a field to int
22207           fix the arithmetic to int when checking for emit so that a
22208           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22209
22210 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22211
22212         * Makefile.am:
22213         * configure.ac:
22214           add docs to build
22215         * common/plugins.xsl:
22216           wrap Description into a refsect2
22217         * docs/Makefile.am:
22218         * docs/plugins/Makefile.am:
22219         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22220         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22221         * gst/goom/Makefile.am:
22222         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22223         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22224         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22225         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22226         (gst_goom_change_state):
22227         * gst/goom/gstgoom.h:
22228           GstGOOM -> GstGoom
22229           add an example launch line
22230         * gst/level/gstlevel.h:
22231         * gst/monoscope/gstmonoscope.c:
22232           cleanups
22233
22234 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22235
22236         * configure.ac:
22237         * docs/plugins/Makefile.am:
22238         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22239         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22240         * docs/plugins/gst-plugins-good-plugins.types:
22241           document elements and plugins.  Shazam !
22242
22243 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22244
22245         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
22246           be found under doc/random/ChangeLog-0.8