Add an echo/reverb filter to the audiofx plugin, with configurable echo delay, intens...
[platform/upstream/gst-plugins-good.git] / ChangeLog
1 2009-01-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * docs/plugins/Makefile.am:
4         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6         * docs/plugins/gst-plugins-good-plugins.args:
7         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8         * docs/plugins/inspect/plugin-audiofx.xml:
9         * docs/plugins/inspect/plugin-spectrum.xml:
10         * gst/audiofx/Makefile.am:
11         * gst/audiofx/audiofx.c: (plugin_init):
12         * gst/audiofx/audioreverb.c: (gst_audio_reverb_base_init),
13         (gst_audio_reverb_class_init), (gst_audio_reverb_init),
14         (gst_audio_reverb_finalize), (gst_audio_reverb_set_property),
15         (gst_audio_reverb_get_property), (gst_audio_reverb_setup),
16         (gst_audio_reverb_stop), (gst_audio_reverb_transform_ip):
17         * gst/audiofx/audioreverb.h:
18         * tests/check/Makefile.am:
19         * tests/check/elements/audioreverb.c: (setup_reverb),
20         (cleanup_reverb), (GST_START_TEST), (audioreverb_suite):
21         Add an echo/reverb filter to the audiofx plugin, with configurable
22         echo delay, intensity and feedback. Fixes bug #567874.
23
24 2009-01-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
25
26         * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state),
27         (gst_spectrum_transform_ip):
28         * gst/spectrum/gstspectrum.h:
29         Implement a simple compensation algorithm for rounding errors.
30         This makes sure that a spectrum message is posted on the bus
31         every interval nanoseconds. Fixes bug #567955.
32
33 2009-01-15  Michael Smith <msmith@songbirdnest.com>
34
35         * sys/osxaudio/Makefile.am:
36           Link against CoreServices (needed for osx 10.4) and fix up the linker
37           flags. Fixes #567853.
38
39 2009-01-15  Wim Taymans  <wim.taymans@collabora.co.uk>
40
41         * gst/qtdemux/qtdemux.c: (qtdemux_parse_segments):
42         Catch invalid and commonly wrong playback rates in the elst atoms.
43         Fixes #567800.
44
45 2009-01-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
46
47         * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state):
48         Don't call gst_fft_f32_free() with NULL to prevent a
49         crash. Fixes bug #567642.
50
51 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
52
53         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
54         * gst/spectrum/gstspectrum.h:
55         Use correct types for frame/fft counters and some minor
56         cleanup.
57
58 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
59
60         Patch by: Lennart Poettering <lennart at poettering dot net>
61
62         * ext/pulse/pulseprobe.c: (gst_pulseprobe_new),
63         (gst_pulseprobe_free):
64         Fix refcount loop, resulting in a thread leak. Fixes bug #567746.
65
66 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
67
68         * gst/spectrum/Makefile.am:
69         * gst/spectrum/README:
70         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
71         (gst_spectrum_class_init), (gst_spectrum_init),
72         (gst_spectrum_reset_state), (gst_spectrum_finalize),
73         (gst_spectrum_set_property), (gst_spectrum_start),
74         (gst_spectrum_stop), (gst_spectrum_setup),
75         (gst_spectrum_transform_ip):
76         * gst/spectrum/gstspectrum.h:
77         Post a spectrum message on the bus for every interval, even
78         if the interval is small than the length of the FFT.
79         Fixes bug #567642.
80
81         Major cleanup of the spectrum element.
82
83 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
84
85         * configure.ac:
86         * gst/audiofx/Makefile.am:
87         * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init),
88         (gst_audio_fir_filter_class_init),
89         (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init),
90         (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize),
91         (gst_audio_fir_filter_set_property),
92         (gst_audio_fir_filter_get_property):
93         * gst/audiofx/audiofirfilter.h:
94         * gst/audiofx/audiofx.c: (plugin_init):
95         * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init),
96         (gst_audio_iir_filter_class_init),
97         (gst_audio_iir_filter_update_coefficients),
98         (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup),
99         (gst_audio_iir_filter_finalize),
100         (gst_audio_iir_filter_set_property),
101         (gst_audio_iir_filter_get_property):
102         * gst/audiofx/audioiirfilter.h:
103         Add audioiirfilter and audiofirfilter elements which allow
104         generic IIR/FIR filters to be implemented by providing the
105         filter coefficients. Fixes bug #567577.
106
107         * docs/plugins/Makefile.am:
108         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
109         * docs/plugins/gst-plugins-good-plugins-sections.txt:
110         * docs/plugins/gst-plugins-good-plugins.args:
111         * docs/plugins/gst-plugins-good-plugins.hierarchy:
112         * docs/plugins/gst-plugins-good-plugins.signals:
113         * docs/plugins/inspect/plugin-alaw.xml:
114         * docs/plugins/inspect/plugin-audiofx.xml:
115         * docs/plugins/inspect/plugin-avi.xml:
116         * docs/plugins/inspect/plugin-flac.xml:
117         * docs/plugins/inspect/plugin-mulaw.xml:
118         * docs/plugins/inspect/plugin-video4linux2.xml:
119         * docs/plugins/inspect/plugin-wavparse.xml:
120         Add documentation for the audioiirfilter and audiofirfilter
121         elements.
122
123         * tests/check/Makefile.am:
124         * tests/check/elements/audiofirfilter.c: (on_message),
125         (on_rate_changed), (on_handoff), (GST_START_TEST),
126         (audiofirfilter_suite):
127         * tests/check/elements/audioiirfilter.c: (on_message),
128         (on_rate_changed), (on_handoff), (GST_START_TEST),
129         (audioiirfilter_suite):
130         * tests/examples/Makefile.am:
131         * tests/examples/audiofx/Makefile.am:
132         * tests/examples/audiofx/firfilter-example.c: (on_message),
133         (on_rate_changed), (main):
134         * tests/examples/audiofx/iirfilter-example.c: (on_message),
135         (on_rate_changed), (main):
136         Add unit tests and example applications for the two filter
137         elements.
138
139 2009-01-13  Michael Smith <msmith@songbirdnest.com>
140
141         Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
142         * gst/qtdemux/qtdemux.c:
143           Fix format string for guint64.
144
145 2009-01-13  Michael Smith <msmith@songbirdnest.com>
146
147         * sys/osxaudio/Makefile.am:
148           osxaudio plugin now requires AudioUnit framework, so link against that.
149           Clean up tabs v spaces while I'm there.
150
151 2009-01-13  Wim Taymans  <wim.taymans@collabora.co.uk>
152
153         * tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
154         (print_stats), (main):
155         Add some example code for printing the RTP manager stats.
156
157 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
158
159         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_class_init),
160         (gst_audio_cheb_band_init), (gst_audio_cheb_band_finalize),
161         (gst_audio_cheb_band_set_property):
162         * gst/audiofx/audiochebband.h:
163         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_class_init),
164         (gst_audio_cheb_limit_init), (gst_audio_cheb_limit_finalize),
165         (gst_audio_cheb_limit_set_property):
166         * gst/audiofx/audiocheblimit.h:
167         * gst/audiofx/audiowsincband.c: (gst_audio_wsincband_class_init),
168         (gst_audio_wsincband_init), (gst_audio_wsincband_finalize),
169         (gst_audio_wsincband_set_property):
170         * gst/audiofx/audiowsincband.h:
171         * gst/audiofx/audiowsinclimit.c: (gst_audio_wsinclimit_class_init),
172         (gst_audio_wsinclimit_init), (gst_audio_wsinclimit_finalize),
173         (gst_audio_wsinclimit_set_property):
174         * gst/audiofx/audiowsinclimit.h:
175         Use a custom mutex for protecting the instance fields instead of
176         the GstObject lock. Using the latter can lead to deadlocks, especially
177         with the FIR filters when updating the latency.
178
179 2009-01-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
180
181         * gst/audiofx/Makefile.am:
182         * gst/audiofx/audiofxbasefirfilter.c:
183         (gst_audio_fx_base_fir_filter_dispose),
184         (gst_audio_fx_base_fir_filter_base_init),
185         (gst_audio_fx_base_fir_filter_class_init),
186         (gst_audio_fx_base_fir_filter_init),
187         (gst_audio_fx_base_fir_filter_push_residue),
188         (gst_audio_fx_base_fir_filter_setup),
189         (gst_audio_fx_base_fir_filter_transform),
190         (gst_audio_fx_base_fir_filter_start),
191         (gst_audio_fx_base_fir_filter_stop),
192         (gst_audio_fx_base_fir_filter_query),
193         (gst_audio_fx_base_fir_filter_query_type),
194         (gst_audio_fx_base_fir_filter_event),
195         (gst_audio_fx_base_fir_filter_set_kernel):
196         * gst/audiofx/audiofxbasefirfilter.h:
197         * gst/audiofx/audiofxbaseiirfilter.c:
198         Implement a base class for generic audio FIR filters.
199
200         * gst/audiofx/audiowsincband.c:
201         (gst_gst_audio_wsincband_mode_get_type),
202         (gst_gst_audio_wsincband_window_get_type),
203         (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
204         (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
205         (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
206         (gst_audio_wsincband_get_property):
207         * gst/audiofx/audiowsincband.h:
208         * gst/audiofx/audiowsinclimit.c:
209         (gst_audio_wsinclimit_mode_get_type),
210         (gst_audio_wsinclimit_window_get_type),
211         (gst_audio_wsinclimit_base_init),
212         (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
213         (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
214         (gst_audio_wsinclimit_set_property),
215         (gst_audio_wsinclimit_get_property):
216         * gst/audiofx/audiowsinclimit.h:
217         * tests/check/elements/audiowsincband.c: (GST_START_TEST):
218         * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
219         Use this new base class for audiowsincband and audiowsinclimit.
220         Also cleanup both elements.
221
222 2009-01-08  Michael Smith <msmith@songbirdnest.com>
223
224         * gst/qtdemux/qtdemux.c:
225           In push mode, error out if we get EOS before we've created any srcpads.
226           Handle (in pull mode) some files that have a truncated moov atom where
227           the final sub-atom is a 'free' atom and the contents of that are not
228           present in the file.
229
230 2009-01-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
231
232         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
233         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
234         Some cleanups, refactoring and minor enhancements in caps handling.
235
236         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
237         (gst_matroska_mux_init), (gst_matroska_pad_reset),
238         (gst_matroska_pad_free), (gst_matroska_mux_reset),
239         (gst_matroska_mux_video_pad_setcaps),
240         (gst_matroska_mux_request_new_pad):
241         * tests/check/elements/matroskamux.c: (teardown_src_pad):
242         Only remove, release or reset what is appropriate upon state change.
243
244 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
245
246         * ext/pulse/pulsesink.c:
247         * ext/pulse/pulsesink.h:
248         Use a mutex to protect the current stream pointer, and ignore
249         callbacks for stream objects that have been destroyed already.
250         Fixes problems with unprepare/prepare cycles caused by the input
251         caps changing, without reintroducing bug #556986.
252
253 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
254
255         * sys/v4l2/gstv4l2src.c:
256         Remove () from translateable string, so that it makes more sense.
257
258 2009-01-07  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
259
260         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
261         Minor fix/cleanup in header field calculation.
262
263 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
264
265         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
266         (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
267         * gst/matroska/matroska-mux.h:
268         Remove internal taglist and fully use tagsetter interface.
269
270 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
271
272         * gst/avi/gstavimux.c: (gst_avi_mux_reset),
273         (gst_avi_mux_riff_get_avi_header):
274         * gst/avi/gstavimux.h:
275         Ensure header size invariance during subsequent rewrite by using
276         tags snapshot.
277
278 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
279
280         * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
281         Don't wait for the pulse mainloop when destroying the stream.
282         Fixes a deadlock when the pulsedaemon goes away while pulsesink
283         is PLAYING. Fixes bug #556986.
284
285 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
286
287         Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
288                   Luotao Fu <l dot fu at pengutronix dot de>
289
290         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
291         (gst_v4l2_get_caps_info):
292         Add support for grayscale v4l2 devices. Fixes bug #566616.
293
294 2009-01-05  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
295
296         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
297         (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
298         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
299         (qtdemux_tag_add_blob), (qtdemux_parse_udta):
300         * gst/qtdemux/qtdemux.h:
301         * gst/qtdemux/quicktime.c: (plugin_init):
302         Streamline tag handling and pass unparsed tags as binary blob
303         in private tag.
304
305 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
306
307         * gst/audiofx/Makefile.am:
308         * gst/audiofx/audiofxbaseiirfilter.c:
309         (gst_audio_fx_base_iir_filter_base_init),
310         (gst_audio_fx_base_iir_filter_dispose),
311         (gst_audio_fx_base_iir_filter_class_init),
312         (gst_audio_fx_base_iir_filter_init),
313         (gst_audio_fx_base_iir_filter_calculate_gain),
314         (gst_audio_fx_base_iir_filter_set_coefficients),
315         (gst_audio_fx_base_iir_filter_setup), (process),
316         (gst_audio_fx_base_iir_filter_transform_ip),
317         (gst_audio_fx_base_iir_filter_stop):
318         * gst/audiofx/audiofxbaseiirfilter.h:
319         Implement a base class for IIR filters.
320
321         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
322         (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
323         (generate_coefficients), (gst_audio_cheb_band_set_property),
324         (gst_audio_cheb_band_setup):
325         * gst/audiofx/audiochebband.h:
326         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
327         (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
328         (generate_coefficients), (gst_audio_cheb_limit_set_property),
329         (gst_audio_cheb_limit_setup):
330         * gst/audiofx/audiocheblimit.h:
331         Use the IIR filter base class for the chebyshev filters.
332
333 2009-01-02  Michael Smith <msmith@songbirdnest.com>
334
335           Patch by: Justin Karnegas <justin@affinix.com> and
336                     Michael Smith <msmith@songbirdnest.com>
337         * sys/osxaudio/gstosxaudio.c:
338         * sys/osxaudio/gstosxaudioelement.c:
339         * sys/osxaudio/gstosxaudioelement.h:
340         * sys/osxaudio/gstosxaudiosink.c:
341         * sys/osxaudio/gstosxaudiosink.h:
342         * sys/osxaudio/gstosxaudiosrc.c:
343         * sys/osxaudio/gstosxaudiosrc.h:
344         * sys/osxaudio/gstosxringbuffer.c:
345         * sys/osxaudio/gstosxringbuffer.h:
346           Rewrite osxaudio to work more flexibly and more reliably, using a
347           different abstraction layer of coreaudio that is the recommended way of
348           doing low-level audio I/O on OSX.
349           Fixes byg #564948.
350
351 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
352
353         * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
354         Add example RTP transcoding pipeline from any file decodedable with
355         uridecodebin.
356
357 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
358
359         * tests/examples/rtp/.cvsignore:
360         * tests/examples/rtp/Makefile.am:
361         * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
362         * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
363         Add two C examples of using gstrtpbin as a sender and a receiver.
364
365 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
366
367         * ChangeLog:
368         Remove conflict marker from ChangeLog
369
370 2008-12-28  Edward Hervey  <edward.hervey@collabora.co.uk>
371
372         Patch by: j^ <j at oil21.org>
373
374         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
375         (qtdemux_audio_caps):
376         Add codec mapping for xvid, fmp4 and ac3 tracks.
377         Fixes #565850
378
379 2008-12-23  Wim Taymans  <wim.taymans@collabora.co.uk>
380
381         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
382         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
383         (gst_smokeenc_chain), (gst_smokeenc_change_state):
384         * ext/jpeg/gstsmokeenc.h:
385         Implement getcaps function.
386         Set caps on the pad and on all outgoing buffers.
387         Fixes #565441.
388
389 2008-12-19  Stefan Kost  <ensonic@users.sf.net>
390
391         * ext/pulse/pulsemixerctrl.c:
392           And remove temporary comment pointing to the bug ticket.
393
394         * gst/avi/gstavimux.c:
395           Move reoccuring logging to LOG and log instance too.
396
397 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
398
399         * ext/pulse/pulsemixerctrl.c:
400           Don't leak the pa_operation.
401
402 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
403
404         * configure.ac:
405           Require core cvs.
406
407 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
408
409         * gst/avi/gstavimux.c:
410           Rename api from _flush to _reset_tags. 
411
412 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
413
414         * gst/avi/gstavimux.c:
415           Use new tagsetter api to flush tags.
416
417 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
418
419         * tests/check/elements/deinterleave.c: (deinterleave_suite):
420         Increase timeout to 3 minutes to prevent timeouts.
421
422 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
423
424         * tests/check/elements/interleave.c: (interleave_suite):
425         Increase timeout to 3 minutes to prevent timeouts.
426
427 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
428
429         * gst/avi/gstavimux.c:
430         * gst/avi/gstavimux.h:
431           Totally remove the internal taglists and fully use tagsetter.
432
433 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
434
435         * gst/avi/gstavimux.c:
436           Instead of filtering wrongly just use the mergemode. Applications is
437           use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
438           avi for real (I hope). Everyone chime in, before I fix the others.
439
440 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
441
442         * ext/pulse/pulsemixerctrl.c:
443           Add note about memleak.
444
445 2008-12-13  Edward Hervey  <bilboed@gmail.com>
446
447         * m4/Makefile.am:
448         A couple more .m4 that aren't shipped anymore with gettext 0.17.
449
450 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
451
452         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
453         (gst_flac_dec_init):
454         * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
455         (gst_alaw_dec_init):
456         * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
457         (gst_alaw_enc_init):
458         * gst/law/alaw.c: (plugin_init):
459         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
460         (gst_mulawdec_init):
461         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
462         (gst_mulawenc_init):
463         * gst/law/mulaw.c: (plugin_init):
464         Switch to using GstStaticPadTemplate.
465         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
466         Don't forget to free the addrinfo structure.
467         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
468         (gst_wavparse_sink_activate):
469         Don't forget to unref the GstAdapter.
470
471 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
472
473         * m4/Makefile.am:
474         inttypes.m4 hasn't been available since gettext-0.15, and since we now
475         require gettext >= 0.17 ... we can remove it from the list of files to
476         dist.
477
478 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
479
480         * gst/avi/gstavidemux.c:
481           More logging.
482
483         * gst/avi/gstavimux.c:
484           Handle more metadata fields. Better estimate of metadata size. Don't
485           merge received tags, if application has specified tags using
486           GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
487
488 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
489
490         * tests/check/Makefile.am:
491         Also ignore pulsemixer for the states unit test.
492
493 2008-12-09  Wim Taymans  <wim.taymans@collabora.co.uk>
494
495         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
496         Add an EOI marker at the end of the jpeg frame when it's missing.
497         Fixes #563056.
498
499 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
500
501         * tests/check/elements/videocrop.c: (check_1x1_buffer):
502         Update the unit test for the new color values for BT.601 red.
503         Fixes bug #563510.
504
505 2008-12-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
506
507         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
508           Restore previous behaviour of not passing QoS and navigation
509           events upstream, which presumably wasn't meant to be changed.
510
511 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
512
513         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
514         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
515         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
516         (gst_dvdemux_chain), (gst_dvdemux_loop),
517         (gst_dvdemux_change_state):
518         Add srcpads only when needed and remove them again when going
519         back to READY. This prevents stalled pipelines if there's no
520         audio inside the DV stream, which happens for many MXF files.
521
522 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
523
524         * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
525         (run_server):
526         The ports in libsoup are unsigned integers and not signed
527         integers.
528
529 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
530
531         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
532         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
533         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
534         (gst_dvdemux_chain), (gst_dvdemux_loop),
535         (gst_dvdemux_change_state):
536         Add srcpads only when they're needed. If we add all pads in any
537         case we will get a stalling audio pad if the stream contains
538         no audio, which is the case for many MXF files.
539
540 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
541
542         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
543         Forward all events upstream unless it's something we really
544         don't handle. This fixes latency configuration of pipelines.
545
546 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
547
548         * ext/dv/gstdv.c: (plugin_init):
549         * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
550         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
551         Really call dv_init() exactly one time, not one time for
552         the demuxer and one time for the decoder.
553
554 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
555
556         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
557         Copy incomming timestamp to outgoing packets.
558
559 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
560
561         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
562         (gst_rtp_mp4v_pay_event):
563         Don't try to push packets before we could find a valid config
564         startcode. Fixes #563509.
565
566 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
567
568         Patch by: Brian Cameron <brian.cameron at sun dot com>
569
570         * sys/sunaudio/gstsunaudiomixerctrl.c:
571         (gst_sunaudiomixer_ctrl_open):
572         Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
573
574 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
575
576         Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
577
578         * configure.ac:
579         Make usage of libv4l optional by a configure parameter.
580         Fixes bug #563504.
581
582 2008-12-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
583
584         * docs/plugins/Makefile.am:
585         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
586         * docs/plugins/gst-plugins-good-plugins-sections.txt:
587         * docs/plugins/gst-plugins-good-plugins.args:
588         * docs/plugins/gst-plugins-good-plugins.hierarchy:
589         * docs/plugins/gst-plugins-good-plugins.interfaces:
590         * docs/plugins/inspect/plugin-1394.xml:
591         * docs/plugins/inspect/plugin-aasink.xml:
592         * docs/plugins/inspect/plugin-alaw.xml:
593         * docs/plugins/inspect/plugin-alpha.xml:
594         * docs/plugins/inspect/plugin-alphacolor.xml:
595         * docs/plugins/inspect/plugin-annodex.xml:
596         * docs/plugins/inspect/plugin-apetag.xml:
597         * docs/plugins/inspect/plugin-audiofx.xml:
598         * docs/plugins/inspect/plugin-auparse.xml:
599         * docs/plugins/inspect/plugin-autodetect.xml:
600         * docs/plugins/inspect/plugin-avi.xml:
601         * docs/plugins/inspect/plugin-cacasink.xml:
602         * docs/plugins/inspect/plugin-cairo.xml:
603         * docs/plugins/inspect/plugin-cutter.xml:
604         * docs/plugins/inspect/plugin-debug.xml:
605         * docs/plugins/inspect/plugin-dv.xml:
606         * docs/plugins/inspect/plugin-efence.xml:
607         * docs/plugins/inspect/plugin-effectv.xml:
608         * docs/plugins/inspect/plugin-equalizer.xml:
609         * docs/plugins/inspect/plugin-esdsink.xml:
610         * docs/plugins/inspect/plugin-flac.xml:
611         * docs/plugins/inspect/plugin-flxdec.xml:
612         * docs/plugins/inspect/plugin-gamma.xml:
613         * docs/plugins/inspect/plugin-gconfelements.xml:
614         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
615         * docs/plugins/inspect/plugin-goom.xml:
616         * docs/plugins/inspect/plugin-goom2k1.xml:
617         * docs/plugins/inspect/plugin-halelements.xml:
618         * docs/plugins/inspect/plugin-icydemux.xml:
619         * docs/plugins/inspect/plugin-id3demux.xml:
620         * docs/plugins/inspect/plugin-interleave.xml:
621         * docs/plugins/inspect/plugin-jpeg.xml:
622         * docs/plugins/inspect/plugin-level.xml:
623         * docs/plugins/inspect/plugin-matroska.xml:
624         * docs/plugins/inspect/plugin-monoscope.xml:
625         * docs/plugins/inspect/plugin-mulaw.xml:
626         * docs/plugins/inspect/plugin-multifile.xml:
627         * docs/plugins/inspect/plugin-multipart.xml:
628         * docs/plugins/inspect/plugin-navigationtest.xml:
629         * docs/plugins/inspect/plugin-ossaudio.xml:
630         * docs/plugins/inspect/plugin-png.xml:
631         * docs/plugins/inspect/plugin-pulseaudio.xml:
632         * docs/plugins/inspect/plugin-quicktime.xml:
633         * docs/plugins/inspect/plugin-replaygain.xml:
634         * docs/plugins/inspect/plugin-rtp.xml:
635         * docs/plugins/inspect/plugin-rtsp.xml:
636         * docs/plugins/inspect/plugin-shout2send.xml:
637         * docs/plugins/inspect/plugin-smpte.xml:
638         * docs/plugins/inspect/plugin-soup.xml:
639         * docs/plugins/inspect/plugin-spectrum.xml:
640         * docs/plugins/inspect/plugin-speex.xml:
641         * docs/plugins/inspect/plugin-taglib.xml:
642         * docs/plugins/inspect/plugin-udp.xml:
643         * docs/plugins/inspect/plugin-video4linux2.xml:
644         * docs/plugins/inspect/plugin-videobalance.xml:
645         * docs/plugins/inspect/plugin-videobox.xml:
646         * docs/plugins/inspect/plugin-videocrop.xml:
647         * docs/plugins/inspect/plugin-videoflip.xml:
648         * docs/plugins/inspect/plugin-videomixer.xml:
649         * docs/plugins/inspect/plugin-wavenc.xml:
650         * docs/plugins/inspect/plugin-wavpack.xml:
651         * docs/plugins/inspect/plugin-wavparse.xml:
652         * docs/plugins/inspect/plugin-ximagesrc.xml:
653         * gst/matroska/matroska-demux.c:
654         * gst/matroska/matroska-demux.h:
655         * gst/matroska/matroska-mux.c:
656         * gst/matroska/matroska-mux.h:
657         Add documentation for matroskamux and matroskademux and
658         update the inspection xml files.
659
660 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
661
662         * configure.ac:
663         Apparently AC_CONFIG_MACRO_DIR breaks when using more
664         than one macro directory, reverting last change.
665
666 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
667
668         * configure.ac:
669         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
670         our M4 macros.
671
672 2008-11-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
673
674         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
675         Provide the parameters that are required for the format string
676         to fix a compiler warning.
677
678 2008-11-29  Stefan Kost  <ensonic@users.sf.net>
679
680         * gst/autodetect/gstautoaudiosrc.c:
681           Fix classification.
682
683 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
684
685         Patch by: Cygwin Ports maintainer
686                   <yselkowitz at users dot sourceforge dot net>
687
688         * autogen.sh:
689         * configure.ac:
690         Require gettext 0.17 because older versions don't mix with libtool
691         2.2. At build time an older gettext version will still work.
692         Fixes bug #556091.
693
694 2008-11-28  Wim Taymans  <wim.taymans@collabora.co.uk>
695
696         Patch by: Peter Kjellerstedt <pkj at axis com>
697
698         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
699         Make gst_multiudpsink_render() ignore errors from sendto() instead of
700         breaking streaming. Emit a warning instead. Fixes #562572.
701
702 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
703
704         Patch by: Ron McOuat <rmcouat at smartt dot com>
705
706         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
707         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
708         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
709         (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
710         * ext/soup/gstsouphttpsrc.h:
711         * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
712         (digest_auth_cb), (run_test), (GST_START_TEST),
713         (souphttpsrc_suite), (run_server):
714         Add support for basic and digest authentication in souphttpsrc.
715         Fixes bug #561775.
716
717 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
718
719         Patch by: Pepijn Van Eeckhoudt
720                       <pepijn dot vaneeckhoudt at luciad dot com>
721
722         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
723         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
724         * gst/wavenc/gstwavenc.h:
725         * gst/wavenc/riff.h:
726         Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
727
728 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
729
730         Patch by: 이문형 <iwings at gmail dot com>
731
732         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
733         Prevent further read/write actions taken to the connect-failed socket by
734         erroring out quickly. See #562258.
735
736 2008-11-26  Stefan Kost  <ensonic@users.sf.net>
737
738         * tests/examples/level/level-example.c:
739           Set fakesink to sync. Otherwise people might question the message
740           interval. Nevertheless the timestamp in the message is what matters.
741
742 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
743
744         * tests/icles/.cvsignore:
745         cvsignore newly generated file.
746
747 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
748
749         * gst/rtp/gstasteriskh263.c:
750         * gst/rtp/gstasteriskh263.h:
751         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
752         * gst/rtp/gstrtpL16depay.h:
753         * gst/rtp/gstrtpL16pay.c:
754         * gst/rtp/gstrtpL16pay.h:
755         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
756         * gst/rtp/gstrtpac3depay.h:
757         * gst/rtp/gstrtpamrdepay.c:
758         * gst/rtp/gstrtpamrdepay.h:
759         * gst/rtp/gstrtpamrpay.c:
760         * gst/rtp/gstrtpamrpay.h:
761         * gst/rtp/gstrtpdepay.c:
762         * gst/rtp/gstrtpdepay.h:
763         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
764         * gst/rtp/gstrtpg726depay.c:
765         * gst/rtp/gstrtpg726pay.c:
766         * gst/rtp/gstrtpg729depay.c:
767         * gst/rtp/gstrtpg729pay.c:
768         * gst/rtp/gstrtpgsmdepay.c:
769         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
770         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
771         * gst/rtp/gstrtph263depay.h:
772         * gst/rtp/gstrtph263pay.c:
773         * gst/rtp/gstrtph263pay.h:
774         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
775         * gst/rtp/gstrtph263pdepay.h:
776         * gst/rtp/gstrtph263ppay.c:
777         * gst/rtp/gstrtph263ppay.h:
778         * gst/rtp/gstrtph264depay.c:
779         * gst/rtp/gstrtph264depay.h:
780         * gst/rtp/gstrtph264pay.c:
781         * gst/rtp/gstrtph264pay.h:
782         * gst/rtp/gstrtpilbcdepay.c:
783         * gst/rtp/gstrtpilbcpay.c:
784         * gst/rtp/gstrtpjpegdepay.h:
785         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
786         * gst/rtp/gstrtpmp1sdepay.h:
787         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
788         * gst/rtp/gstrtpmp2tdepay.h:
789         * gst/rtp/gstrtpmp2tpay.c:
790         * gst/rtp/gstrtpmp2tpay.h:
791         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
792         * gst/rtp/gstrtpmp4apay.c:
793         * gst/rtp/gstrtpmp4apay.h:
794         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
795         * gst/rtp/gstrtpmp4gdepay.h:
796         * gst/rtp/gstrtpmp4gpay.c:
797         * gst/rtp/gstrtpmp4gpay.h:
798         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
799         * gst/rtp/gstrtpmp4vdepay.h:
800         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
801         * gst/rtp/gstrtpmp4vpay.h:
802         * gst/rtp/gstrtpmpadepay.c:
803         * gst/rtp/gstrtpmpadepay.h:
804         * gst/rtp/gstrtpmpapay.c:
805         * gst/rtp/gstrtpmpapay.h:
806         * gst/rtp/gstrtpmpvdepay.c:
807         * gst/rtp/gstrtpmpvdepay.h:
808         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
809         * gst/rtp/gstrtppcmapay.c:
810         * gst/rtp/gstrtppcmudepay.c:
811         * gst/rtp/gstrtppcmupay.c:
812         * gst/rtp/gstrtpspeexdepay.c:
813         * gst/rtp/gstrtpspeexpay.c:
814         * gst/rtp/gstrtpsv3vdepay.c:
815         * gst/rtp/gstrtpsv3vdepay.h:
816         * gst/rtp/gstrtptheoradepay.c:
817         * gst/rtp/gstrtptheoradepay.h:
818         * gst/rtp/gstrtptheorapay.c:
819         * gst/rtp/gstrtptheorapay.h:
820         * gst/rtp/gstrtpvorbisdepay.c:
821         * gst/rtp/gstrtpvorbisdepay.h:
822         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
823         * gst/rtp/gstrtpvorbispay.h:
824         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
825         * gst/rtp/gstrtpvrawpay.c:
826         Fix the descriptions and fix some email addresses.
827
828 2008-11-25  Julien Moutte  <julien@fluendo.com>
829
830         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
831         to supported qtdemux video codecs as I found some video clips using 
832         those.
833
834 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
835
836         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
837         * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
838         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
839         (gst_auto_video_sink_detect):
840         * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
841         Post an error when we can't set the internal ghostpad target.
842
843 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
844
845         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
846         (gst_video_crop_transform), (gst_video_crop_transform_caps),
847         (gst_video_crop_set_caps), (gst_video_crop_set_property):
848         * gst/videocrop/gstvideocrop.h:
849         Fix renegotiation when changing properties using the new basetransform
850         features. Fixes #561502.
851
852         * tests/icles/Makefile.am:
853         * tests/icles/videocrop2-test.c: (make_pipeline), (main):
854         Add crazy interactive test unit for dynamically changing properties.
855
856 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
857
858         * gst/rtsp/gstrtspsrc.c: (new_session_pad),
859         (gst_rtspsrc_parse_range):
860         Add some more debugging.
861         Use the reanges received from the server unconditionally.
862         Fixes #561625.
863
864 2008-11-23  Stefan Kost  <ensonic@users.sf.net>
865
866         * ext/pulse/pulsesink.c:
867           Change #if 0 to something more expresive and add pointer to related
868           bug ticket.
869
870 2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
871
872         Patch by: Tal Shalif <tshalif at nargila dot org>
873
874         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
875         Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
876         the latter don't exist on some systems (mingw). Fixes bug #561990.
877
878 2008-11-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
879
880         Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
881
882         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
883         Add transferMode.dnla.org header to HTTP requests as this is
884         required by the DLNA specs and doesn't hurt in other situations.
885         Fixes bug #561802.
886
887 2008-11-20  Michael Smith <msmith@songbirdnest.com>
888
889         * sys/osxvideo/osxvideosink.h:
890         * sys/osxvideo/osxvideosink.m:
891           Handle video window resizing more correctly, avoiding crashes when
892           embedding the window and resizing it.
893
894 2008-11-20  Michael Smith <msmith@songbirdnest.com>
895
896         * gst/udp/gstmultiudpsink.c:
897         * gst/udp/gstudpnetutils.c:
898         * gst/udp/gstudpnetutils.h:
899         * gst/udp/gstudpsrc.c:
900           Fix multiudpsink on OSX by passing the specific length of the socket,
901           refactor that into a function shared with the same thing in udpsrc.
902
903 2008-11-20  Wim Taymans  <wim.taymans@collabora.co.uk>
904
905         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
906         (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
907         (gst_wavparse_stream_headers):
908         Fix the scaling code.
909         Fix parsing of the INFO chunks, we were reading the wrong number of
910         bytes.  Fixes #561580.
911
912 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
913
914         * gst/matroska/matroska-mux.c:
915         Fix NULL pointer dereference of an unset codec_id in the recently 
916         added Dirac paths
917
918 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
919
920         * tests/check/Makefile.am:
921         Just keep disabling elements that hang the states test until it
922         works.
923
924 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
925
926         * ext/libpng/gstpngenc.c:
927         Don't flush downstream after every buffer - that's not what
928         this libpng callback is for at all!
929
930 2008-11-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
931
932         * sys/v4l2/v4l2src_calls.c:
933           (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
934           (gst_v4l2src_probe_caps_for_format):
935           Turns out we don't always get the frame sizes in a predefined
936           order from lowest to highest resolution, so let's just sort the
937           list by frame size once we've queried the possible resolutions
938           rather than assume any particular order. Fixes probed caps for
939           the camera in my HP2133 mini notebook and makes v4l2src default
940           to a decent size.
941
942 2008-11-16  Edward Hervey  <edward.hervey@collabora.co.uk>
943
944         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
945         * gst/matroska/matroska-ids.h:
946         Make mkvdemux aware of E-AC3.
947
948 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
949
950         * gst/rtp/Makefile.am:
951         * gst/rtp/gstrtp.c: (plugin_init):
952         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
953         (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
954         (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
955         (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
956         (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
957         (gst_rtp_jpeg_depay_change_state),
958         (gst_rtp_jpeg_depay_plugin_init):
959         * gst/rtp/gstrtpjpegdepay.h:
960         Add a jpeg depayloader.
961
962         * gst/rtp/gstrtpjpegpay.c:
963         Set the default properties on the payloader to better defaults.
964
965 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
966
967         * sys/v4l2/gstv4l2.c:
968           Give it a primary rank for autovideosrc.
969
970 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
971
972         Patch by: Bjorn Ostby <bjornos at axis dot com>
973
974         * gst/rtp/Makefile.am:
975         * gst/rtp/gstrtp.c: (plugin_init):
976         * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
977         (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
978         (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
979         (gst_rtp_jpeg_pay_read_quant_table),
980         (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
981         (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
982         (gst_rtp_jpeg_pay_plugin_init):
983         * gst/rtp/gstrtpjpegpay.h:
984         Add JPEG payloader. Fixes #560756.
985
986 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
987
988         Patch by: Fabricio Godoy <skarllot at gmail dot com>
989
990         * sys/oss/gstosssink.c: (gst_oss_sink_open):
991         * sys/oss/gstosssrc.c: (gst_oss_src_open):
992         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
993         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
994         Fix some spelling mistakes. Fixes #556802.
995
996 2008-11-13  Stefan Kost  <ensonic@users.sf.net>
997
998         * gst/equalizer/GstIirEqualizer10Bands.prs:
999         * gst/equalizer/GstIirEqualizer3Bands.prs:
1000         * gst/equalizer/Makefile.am:
1001         * gst/equalizer/gstiirequalizer10bands.c:
1002         * gst/equalizer/gstiirequalizer3bands.c:
1003           Add presets for equalizer. Fixes #522183.
1004
1005 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1006
1007         * gst/rtsp/Makefile.am:
1008         * gst/rtsp/gstrtsp.c: (plugin_init):
1009         * gst/rtsp/gstrtspgoogle.c:
1010         * gst/rtsp/gstrtspgoogle.h:
1011         Remove google extension again, it's not needed anymore because we never
1012         send multiple transports anymore.
1013
1014 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1015
1016         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1017
1018         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
1019         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
1020         (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
1021         (gst_rtspsrc_stream_free),
1022         (gst_rtspsrc_stream_configure_udp_sinks),
1023         (gst_rtspsrc_stream_configure_transport),
1024         (gst_rtspsrc_send_dummy_packets),
1025         (gst_rtspsrc_create_transports_string),
1026         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
1027         * gst/rtsp/gstrtspsrc.h:
1028         Add property to configure NAT traversal method.
1029         Ignore EOS from the internal sinks.
1030         Implement sending dummy packets as a (simple) method to open up
1031         some firewalls.
1032         Send PLAY request to the server after we started the udp sources.
1033         Fixes #559545.
1034
1035 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1036
1037         Patch by: Yotam <sh dot yotam at gmail dot com>
1038
1039         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
1040         Flush the remaining frames on EOS. Fixes #560641.
1041
1042 2008-11-12  Jan Schmidt  <jan.schmidt@sun.com>
1043
1044         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
1045         Fix compiler warning about printf formatting.
1046
1047 2008-11-12  Andy Wingo  <wingo@pobox.com>
1048
1049         * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
1050         * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
1051         segment events instead of sending them from the seeking thread.
1052         Fixes #559288.
1053         (gst_qtdemux_push_pending_newsegment): New helper, sends out
1054         queued newsegment events.
1055         (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
1056         call it here, as we only seek when looping, and only push in the
1057         movie state.
1058
1059 2008-11-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1060
1061         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
1062         (qtdemux_tag_add_covr), (qtdemux_parse_udta):
1063         * gst/qtdemux/qtdemux_fourcc.h:
1064         * gst/qtdemux/qtdemux_types.c:
1065         Add cover and alternative copyright tag, and enhance some existing
1066         ones by marking them as container atoms.
1067
1068 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1069
1070         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
1071         Don't ignore the return value of setcaps.
1072
1073 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1074
1075         Patch by: Olivier Crete <tester at tester dot ca>
1076
1077         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
1078         (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
1079         (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
1080         * gst/rtp/gstrtpg729pay.h:
1081         Replace G729 payloader with an improved version. Fixes #532409.
1082
1083 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1084
1085         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
1086         (gst_rtspsrc_change_state):
1087         Only send one transport at a time for improved compatibility with some
1088         broken servers. See #537832.
1089
1090 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1091
1092         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1093         (gst_rtspsrc_perform_seek):
1094         Only pause/play in the seek handler when the source was playing.
1095         Fixes #529379.
1096
1097 2008-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
1098
1099         * gst/matroska/matroska-mux.c:
1100         (gst_matroska_mux_handle_dirac_packet):
1101         Fix muxing of Dirac streams if the input already has the format
1102         we need, i.e. is the output of matroskademux.
1103
1104 2008-11-11  Stefan Kost  <ensonic@users.sf.net>
1105
1106         * gst/avi/gstavimux.c:
1107           Don't segfault on string typed tags being NULL. Fixes #560155.
1108
1109 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1110
1111         * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
1112         (gst_matroska_mux_audio_pad_setcaps):
1113         Fix mapping AAC profile to Matroska codec id.
1114
1115 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1116
1117         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
1118         (qtdemux_video_caps), (qtdemux_audio_caps):
1119         Refactor some raw audio caps building, and handle >16-bit cases.
1120         Fix/replace building caps from a string description.
1121
1122 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1123
1124         * gst/audiofx/audiowsincband.c:
1125         * gst/audiofx/audiowsinclimit.c:
1126         * gst/cutter/gstcutter.c:
1127           Make author name consistent with others.
1128
1129 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1130
1131         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1132
1133         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
1134         (gst_rtspsrc_stream_configure_udp_sink):
1135         Pause the RTSP stream before doing a new play request.
1136         Make sure that adding the udpsinks does not cause the rtspsrc to become
1137         a sink. Fixes #559547.
1138
1139 2008-11-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1140
1141         * gst/matroska/matroska-ids.h:
1142         * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
1143         (gst_matroska_mux_handle_dirac_packet),
1144         (gst_matroska_mux_write_data):
1145         Implement Dirac muxing into Matroska comforming to the spec, i.e.
1146         put all Dirac packages up to a picture into a Matroska block.
1147
1148         TODO: Implement writing of the ReferenceBlock Matroska elements,
1149         currently the Dirac muxing is only 100% correct if Matroska version 2
1150         is selected for muxing.
1151
1152 2008-11-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1153
1154         Patch by: Bastien Nocera <hadess at hadess dot net>,
1155                   Hans de Goede <jwrdegoede at fedoraproject dot org>
1156
1157         * configure.ac:
1158         * sys/v4l2/Makefile.am:
1159         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
1160         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1161         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
1162         (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
1163         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
1164         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
1165         (gst_v4l2_get_input), (gst_v4l2_set_input):
1166         * sys/v4l2/v4l2_calls.h:
1167         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1168         (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
1169         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1170         (gst_v4l2src_fill_format_list),
1171         (gst_v4l2src_probe_caps_for_format_and_size),
1172         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
1173         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
1174         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
1175         (gst_v4l2src_get_nearest_size):
1176         Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
1177
1178 2008-11-04  Stefan Kost  <ensonic@users.sf.net>
1179
1180         * ext/aalib/Makefile.am:
1181         * ext/annodex/Makefile.am:
1182         * ext/cairo/Makefile.am:
1183         * ext/dv/Makefile.am:
1184         * ext/esd/Makefile.am:
1185         * ext/flac/Makefile.am:
1186         * ext/gconf/Makefile.am:
1187         * ext/gdk_pixbuf/Makefile.am:
1188         * ext/hal/Makefile.am:
1189         * ext/jpeg/Makefile.am:
1190         * ext/ladspa/Makefile.am:
1191         * ext/libcaca/Makefile.am:
1192         * ext/libmng/Makefile.am:
1193         * ext/libpng/Makefile.am:
1194         * ext/mikmod/Makefile.am:
1195         * ext/pulse/Makefile.am:
1196         * ext/raw1394/Makefile.am:
1197         * ext/shout2/Makefile.am:
1198         * ext/soup/Makefile.am:
1199         * ext/speex/Makefile.am:
1200         * ext/taglib/Makefile.am:
1201         * ext/wavpack/Makefile.am:
1202         * gst/alpha/Makefile.am:
1203         * gst/apetag/Makefile.am:
1204         * gst/audiofx/Makefile.am:
1205         * gst/auparse/Makefile.am:
1206         * gst/autodetect/Makefile.am:
1207         * gst/avi/Makefile.am:
1208         * gst/cutter/Makefile.am:
1209         * gst/debug/Makefile.am:
1210         * gst/effectv/Makefile.am:
1211         * gst/equalizer/Makefile.am:
1212         * gst/flx/Makefile.am:
1213         * gst/goom/Makefile.am:
1214         * gst/goom2k1/Makefile.am:
1215         * gst/icydemux/Makefile.am:
1216         * gst/id3demux/Makefile.am:
1217         * gst/interleave/Makefile.am:
1218         * gst/law/Makefile.am:
1219         * gst/level/Makefile.am:
1220         * gst/matroska/Makefile.am:
1221         * gst/median/Makefile.am:
1222         * gst/monoscope/Makefile.am:
1223         * gst/multifile/Makefile.am:
1224         * gst/multipart/Makefile.am:
1225         * gst/oldcore/Makefile.am:
1226         * gst/qtdemux/Makefile.am:
1227         * gst/replaygain/Makefile.am:
1228         * gst/rtp/Makefile.am:
1229         * gst/rtsp/Makefile.am:
1230         * gst/smpte/Makefile.am:
1231         * gst/spectrum/Makefile.am:
1232         * gst/udp/Makefile.am:
1233         * gst/videobox/Makefile.am:
1234         * gst/videocrop/Makefile.am:
1235         * gst/videofilter/Makefile.am:
1236         * gst/videomixer/Makefile.am:
1237         * gst/wavenc/Makefile.am:
1238         * gst/wavparse/Makefile.am:
1239         * sys/directdraw/Makefile.am:
1240         * sys/directsound/Makefile.am:
1241         * sys/oss/Makefile.am:
1242         * sys/osxaudio/Makefile.am:
1243         * sys/osxvideo/Makefile.am:
1244         * sys/sunaudio/Makefile.am:
1245         * sys/v4l2/Makefile.am:
1246         * sys/waveform/Makefile.am:
1247         * sys/ximage/Makefile.am:
1248           Don't install static libs for plugins. Fixes #550851 for -good.
1249
1250 2008-10-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1251
1252         * ext/flac/Makefile.am:
1253         Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1254         This fixes compilation if FLAC is installed in an uncommon location
1255         that is not already handled by other CFLAGS. Fixes bug #558711.
1256
1257 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1258
1259         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1260         Guard more uncommon formats with ifdefs so that we can compile on older
1261         versions.
1262
1263 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1264
1265         Patch by: Nick Haddad <nick at haddads dot net>
1266
1267         * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1268         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1269         (gst_avi_demux_stream_data):
1270         Invert other uncompressed RGB formats. Fixes #558554.
1271
1272 2008-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
1273
1274         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1275         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1276         * gst/wavenc/gstwavenc.h:
1277         Add support for float/double as input and remove the (nowadays)
1278         useless parsing of the depth as we require width==depth.
1279
1280 2008-10-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1281
1282         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1283         * gst/rtp/gstrtpmpapay.c:
1284         Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1285         mpeg version 1. Fixes #558427.
1286
1287 2008-10-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1288
1289         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1290         (gst_rtp_L16_pay_getcaps):
1291         Only put an integral amount of samples in the RTP packet.
1292         Fixes #556641.
1293
1294 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1295
1296         * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1297         * gst/rtp/gstrtpchannels.h:
1298         Add method to get possible channel positions.
1299
1300 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1301
1302         * gst/rtp/Makefile.am:
1303         Also commit updated makefile
1304
1305 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1306
1307         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1308         Don't allow width=32,depth=24 as input. WAV requires that the width
1309         is the next integer multiply of 8 from the depth.
1310
1311 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1312
1313         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1314         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1315         (gst_rtp_L16_pay_getcaps):
1316         * gst/rtp/gstrtpchannels.c: (check_channels),
1317         (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1318         (gst_rtp_channels_create_default):
1319         * gst/rtp/gstrtpchannels.h:
1320         Add mappings for multichannel support. Does not completely just work
1321         because the getcaps function does not yet return the allowed channel
1322         mappings. See #556641.
1323
1324 2008-10-28  Stefan Kost  <ensonic@users.sf.net>
1325
1326         * gst/goom/Makefile.am:
1327         * gst/goom/README:
1328         * gst/goom/config_param.c:
1329         * gst/goom/convolve_fx.c:
1330         * gst/goom/drawmethods.c:
1331         * gst/goom/drawmethods.h:
1332         * gst/goom/filters.c:
1333         * gst/goom/filters_mmx.s:
1334         * gst/goom/flying_stars_fx.c:
1335         * gst/goom/goom.h:
1336         * gst/goom/goom_config.h:
1337         * gst/goom/goom_config_param.h:
1338         * gst/goom/goom_core.c:
1339         * gst/goom/goom_filters.h:
1340         * gst/goom/goom_fx.h:
1341         * gst/goom/goom_graphic.h:
1342         * gst/goom/goom_plugin_info.h:
1343         * gst/goom/goom_tools.c:
1344         * gst/goom/goom_tools.h:
1345         * gst/goom/goom_typedefs.h:
1346         * gst/goom/goom_visual_fx.h:
1347         * gst/goom/graphic.c:
1348         * gst/goom/ifs.c:
1349         * gst/goom/ifs.h:
1350         * gst/goom/lines.c:
1351         * gst/goom/lines.h:
1352         * gst/goom/mathtools.c:
1353         * gst/goom/mathtools.h:
1354         * gst/goom/mmx.c:
1355         * gst/goom/motif_goom1.h:
1356         * gst/goom/motif_goom2.h:
1357         * gst/goom/plugin_info.c:
1358         * gst/goom/ppc_drawings.h:
1359         * gst/goom/ppc_zoom_ultimate.h:
1360         * gst/goom/sound_tester.c:
1361         * gst/goom/sound_tester.h:
1362         * gst/goom/surf3d.c:
1363         * gst/goom/surf3d.h:
1364         * gst/goom/tentacle3d.c:
1365         * gst/goom/tentacle3d.h:
1366         * gst/goom/v3d.c:
1367         * gst/goom/v3d.h:
1368         * gst/goom/xmmx.c:
1369           Add license headers in all source files. Remove filter.c from
1370           EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1371           which are not used right now. Fixes #557709.
1372
1373 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1374
1375         Patch by: Olivier Crete <tester at tester dot ca>
1376
1377         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1378         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1379         Implement getcaps in rtpL16pay. Fixes #556484.
1380
1381 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1382
1383         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1384         (gst_rtp_L16_depay_process):
1385         Check if clock-rate and channels are valid.
1386         Don't ignore the return value of setcaps.
1387         No need to validate the buffer, the base class does that for us.
1388         Use the marker bit to set the DISCONT flag on outgoing buffers.
1389
1390         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1391         Don't ignore the return value of set_outcaps.
1392
1393         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1394         (gst_rtp_ac3_depay_process):
1395         Don't ignore the return value of set_caps.
1396         No need to validate the buffer, the base class does that for us.
1397
1398         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1399         (gst_rtp_amr_depay_process):
1400         * gst/rtp/gstrtpamrdepay.h:
1401         Don't ignore the return value of setcaps.
1402         No need to validate the buffer, the base class does that for us.
1403         No need to set output caps on the buffers, the base class does that for
1404         us.
1405         The subclass will make sure we are negotiated.
1406         
1407         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1408         (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1409         * gst/rtp/gstrtpdvdepay.h:
1410         Clean up caps negotiation.
1411         The subclass will make sure we are negotiated.
1412
1413         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1414         (gst_rtp_g726_depay_process):
1415         Clean up caps negotiation.
1416         Use the marker bit to set the DISCONT flag on outgoing buffers.
1417
1418         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1419         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1420         * gst/rtp/gstrtpg729depay.h:
1421         The subclass will make sure we are negotiated.
1422         Use the marker bit to set the DISCONT flag on outgoing buffers.
1423
1424         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1425         (gst_rtp_gsm_depay_process):
1426         Clean up caps negotiation.
1427         Use the marker bit to set the DISCONT flag on outgoing buffers.
1428
1429         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1430         Clean up caps negotiation.
1431         Don't ignore the return value of set_outcaps.
1432
1433         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1434         (gst_rtp_h263_depay_process):
1435         Clean up caps negotiation.
1436         No need to validate the buffer, the base class does that for us.
1437
1438         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1439         (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1440         * gst/rtp/gstrtph263pay.h:
1441         Don't ignore the return value of set_outcaps.
1442         Do some more timestamps.
1443
1444         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1445         (gst_rtp_h263p_depay_process):
1446         Clean up caps negotiation.
1447         Don't ignore the return value of setcaps.
1448         No need to validate the buffer, the base class does that for us.
1449
1450         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1451         (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1452         (gst_rtp_h263p_pay_handle_buffer):
1453         * gst/rtp/gstrtph263ppay.h:
1454         Don't ignore the return value of set_outcaps.
1455         Do some more timestamps.
1456
1457         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1458         (gst_rtp_h264_depay_process):
1459         Clean up caps negotiation.
1460         Don't ignore the return value of setcaps.
1461         Fix possible caps leak.
1462         No need to validate the buffer, the base class does that for us.
1463
1464         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1465         Add some more debug info.
1466
1467         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1468         (gst_rtp_ilbc_depay_process):
1469         Clean up caps negotiation.
1470         Use the marker bit to set the DISCONT flag on outgoing buffers.
1471
1472         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1473         Clean up caps negotiation.
1474
1475         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1476         (gst_rtp_mp1s_depay_process):
1477         Clean up caps negotiation.
1478         Don't ignore the return value of setcaps.
1479         No need to validate the buffer, the base class does that for us.
1480         No need to set caps on buffers, subclass does that for us.
1481
1482         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1483         (gst_rtp_mp2t_depay_process):
1484         Clean up caps negotiation.
1485         Don't ignore the return value of setcaps.
1486         No need to validate the buffer, the base class does that for us.
1487         No need to set caps on buffers, subclass does that for us.
1488
1489         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1490         (gst_rtp_mp4a_depay_process):
1491         Clean up caps negotiation.
1492         Don't ignore the return value of setcaps.
1493         No need to validate the buffer, the base class does that for us.
1494
1495         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1496         (gst_rtp_mp4a_pay_setcaps):
1497         Don't ignore the return value of set_outcaps.
1498
1499         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1500         (gst_rtp_mp4g_depay_process):
1501         Clean up caps negotiation.
1502         Don't ignore the return value of setcaps.
1503         No need to validate the buffer, the base class does that for us.
1504         No need to set caps on buffers, subclass does that for us.
1505
1506         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1507         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1508         Don't ignore the return value of set_outcaps.
1509
1510         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1511         (gst_rtp_mp4v_depay_process):
1512         Clean up caps negotiation.
1513         Don't ignore the return value of setcaps.
1514         No need to validate the buffer, the base class does that for us.
1515         No need to set caps on buffers, subclass does that for us.
1516
1517         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1518         (gst_rtp_mp4v_pay_setcaps):
1519         Don't ignore the return value of set_outcaps.
1520
1521         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1522         (gst_rtp_mpa_depay_process):
1523         Clean up caps negotiation.
1524         Don't ignore the return value of setcaps.
1525         No need to validate the buffer, the base class does that for us.
1526         Use the marker bit to set the DISCONT flag on outgoing buffers.
1527
1528         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1529         Don't ignore the return value of set_outcaps.
1530
1531         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1532         (gst_rtp_mpv_depay_process):
1533         Clean up caps negotiation.
1534         Actually set output caps.
1535         No need to validate the buffer, the base class does that for us.
1536
1537         * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1538         Don't ignore the return value of set_outcaps.
1539
1540         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1541         (gst_rtp_pcma_depay_process):
1542         Clean up caps negotiation.
1543         Set output buffer duration because we can.
1544         Use the marker bit to set the DISCONT flag on outgoing buffers.
1545
1546         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1547         Don't ignore the return value of set_outcaps.
1548
1549         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1550         (gst_rtp_pcmu_depay_process):
1551         Clean up caps negotiation.
1552         Use the marker bit to set the DISCONT flag on outgoing buffers.
1553
1554         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1555         Don't ignore the return value of set_outcaps.
1556
1557         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1558         (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1559         Clean up caps negotiation.
1560         Set output caps on the pad and header buffers.
1561         Set duration on output buffers because we can.
1562
1563         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1564         Don't ignore the return value of set_outcaps.
1565
1566         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1567         (gst_rtp_sv3v_depay_process):
1568         Clean up caps negotiation.
1569         No need to validate the buffer, the base class does that for us.
1570         No need to set caps out output buffers, subclass does that.
1571
1572         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1573         (gst_rtp_theora_depay_process):
1574         Don't ignore the return value of setcaps.
1575         No need to validate the buffer, the base class does that for us.
1576
1577         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1578         (gst_rtp_theora_pay_flush_packet), (encode_base64),
1579         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1580         (gst_rtp_theora_pay_handle_buffer):
1581         Don't ignore the return value of set_outcaps.
1582
1583         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1584         (gst_rtp_vorbis_depay_process):
1585         Don't ignore the return value of setcaps.
1586         No need to validate the buffer, the base class does that for us.
1587
1588         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1589         Don't ignore the return value of set_outcaps.
1590
1591         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1592         Clean up caps negotiation, don't ignore setcaps return.
1593
1594         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1595         Don't ignore the return value of set_outcaps.
1596
1597 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1598
1599         * gst/matroska/matroska-demux.c:
1600         (gst_matroska_demux_handle_src_event):
1601         Forward unknown events upstream.
1602
1603 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1604
1605         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1606         Add some refcount check
1607
1608         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1609         Don't ignore the result of write(), fixes a  compiler warning for me.
1610
1611         * tests/icles/videobox-test.c: (main):
1612         Make the output a little more pretty.
1613
1614 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1615
1616         * ext/esd/esdmon.c:
1617           Add doc blob.
1618
1619 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1620
1621         * docs/plugins/Makefile.am:
1622         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1623         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1624         * docs/plugins/gst-plugins-good-plugins.args:
1625         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1626         * docs/plugins/gst-plugins-good-plugins.interfaces:
1627         * docs/plugins/inspect/plugin-autodetect.xml:
1628           Add the docs of the new elements.
1629
1630 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1631
1632         * gst/autodetect/gstautoaudiosrc.c:
1633         (gst_auto_audio_src_class_init):
1634         * gst/autodetect/gstautovideosrc.c:
1635         (gst_auto_video_src_class_init):
1636         Fix "Since" tags in the documentation.
1637
1638 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1639
1640         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1641
1642         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1643         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1644         Add support for souphttpsrc to act as a live source. This makes it
1645         possible to get timestamped buffers in combination with the
1646         "do-timestamp" property. Fixes bug #556019.
1647
1648 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1649
1650         * gst/autodetect/Makefile.am:
1651         * gst/autodetect/gstautoaudiosink.c:
1652         * gst/autodetect/gstautoaudiosrc.c:
1653         * gst/autodetect/gstautoaudiosrc.h:
1654         * gst/autodetect/gstautodetect.c:
1655         * gst/autodetect/gstautovideosink.c:
1656         * gst/autodetect/gstautovideosrc.c:
1657         * gst/autodetect/gstautovideosrc.h:
1658           Implement src plugins. Little code/string cleanup in the sinks.
1659           Fixes #523813.
1660
1661 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1662
1663         Patch by: Peter Kjellerstedt <pkj at axis com>
1664
1665         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1666         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1667         Fix a memory leak when pads are requested but the pipeline never
1668         goes into PLAYING.
1669
1670         Correctly remove request pads, no matter if they have collected
1671         data or not.
1672
1673         Fixes bug #557710.
1674
1675 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1676
1677         Patch by: <lrn1986 at gmail dot com>
1678
1679         * gst/udp/gstudpnetutils.h:
1680         Define the correct WINVER so getaddinfo() can be used when using
1681         mingw32. Fixes bug #557294.
1682
1683 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1684
1685         Patch by: <lrn1986 at gmail dot com>
1686
1687         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1688         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1689         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1690         Fix "argument type mismatch" compiler warnings on Windows.
1691         Fixes bug #557293.
1692
1693 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1694
1695         * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1696         Don't calculate the filter coefficients for every single buffer
1697         but only when it's needed. Fixes bug #557260.
1698
1699 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
1700
1701         * configure.ac:
1702         Back to development -> 0.10.11.1
1703
1704 2008-10-25  Jan Schmidt  <jan.schmidt@sun.com>
1705
1706         * gst-plugins-good.doap:
1707         Fix version number of 0.10.11 release in doap file
1708
1709 === release 0.10.11 ===
1710
1711 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
1712
1713         * configure.ac:
1714           releasing 0.10.11, "Secondary Consideration"
1715
1716 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
1717
1718         * configure.ac:
1719         Commit 0.10.10.4 pre-release
1720
1721 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1722
1723         * gst/avi/gstavimux.c:
1724         Fix VPRP chunk setup in avimux.
1725         Fixes: #556010
1726         Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1727
1728 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1729
1730         * gst/videobox/gstvideobox.c:
1731         support dynamically changing properties in videobox
1732         Fixed: #557085
1733         Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1734
1735 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1736
1737         * configure.ac:
1738         0.10.10.3 pre-release
1739
1740 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1741
1742         * tests/check/Makefile.am:
1743         Don't run the states test on pulsesrc and pulsesink
1744
1745 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1746
1747         * configure.ac:
1748         Commit 0.10.10.2 pre-release bump that actually went
1749         out on 2008-10-11
1750
1751 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1752
1753         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1754         Skip entries for streams that don't have a output pad yet, thereby
1755         avoiding calling pad functions with a NULL pad.
1756         Fixes #556424
1757
1758 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1759
1760         * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1761         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1762         Remove problematic and useless refcount check.
1763         Fixes #556381
1764
1765 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1766
1767         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1768         Remove problematic and useless refcount check.
1769         Fixes #556381
1770
1771 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
1772
1773         * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1774         * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1775         Cast some size_t arguments to guint to avoid compiler
1776         warnings on 64-bit systems.
1777
1778 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
1779
1780         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1781         Return TRUE instead of FALSE from the event handler when we swallowed the
1782         event.
1783
1784 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1785
1786         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1787         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1788         Reset header state. Fixes #555321.
1789
1790 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1791
1792         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1793         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1794         * gst/avi/gstavidemux.h:
1795         For timestamping audio packets we need to take into account the
1796         amount of blocks in one entry using the blockalign. Fixes some sync
1797         issues with zero-padded audio blocks in the beginning of avi files.
1798
1799 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1800
1801         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1802         (gst_multi_file_src_query):
1803         Implement DEFAULT and BUFFER position queries. See #555260.
1804
1805 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1806
1807         * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1808         Fix build for systems that don't have XDamage.
1809
1810 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1811
1812         * tests/examples/rtp/client-H263p.sdp:
1813         * tests/examples/rtp/client-H263p.sh:
1814         * tests/examples/rtp/server-VTS-H263p.sh:
1815         Add some more H263p server and client examples.
1816
1817 2008-10-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1818
1819         * configure.ac::
1820           Depend on released versions of core and base.
1821
1822 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1823
1824         * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1825         * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1826         Return -1 instead of 0 in error cases. Fixes #554771.
1827
1828 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1829
1830         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1831         (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1832         Stop leaking the cursor image.
1833         Unref the last_ximage and the cached cursor image on shutdown.
1834         Fixes #551570.
1835
1836 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1837
1838         * sys/v4l2/gstv4l2object.h:
1839         Getting the Class from an instance is not just a matter of casting it to
1840         the class struct but it involves calling G_OBJECT_GET_CLASS on the
1841         instance. Fixes #549784.
1842
1843 2008-10-01  Michael Smith <msmith@songbirdnest.com>
1844
1845         * configure.ac:
1846           Fix libs for linking directsound.
1847         * sys/directsound/gstdirectsoundsink.c:
1848           Fix buffer sizing to prevent racing the ringbuffer at startup.
1849           Add volume property.
1850
1851 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
1852
1853         * ext/pulse/pulsesink.c:
1854         Fix problems with pulsesink randomly erroring with code 'OK' after a
1855         format change on the stream by waiting when disconnecting the stream.
1856
1857 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1858
1859         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1860         (gst_rtp_amr_depay_process):
1861         Mark DISCONT on output buffers when the marker bit signals a new talk
1862         spurt.
1863
1864         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1865         Set the marker bit for buffers with a DISCONT flag to signal a talk
1866         spurt.
1867
1868 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1869
1870         * gst/rtp/Makefile.am:
1871         * gst/rtp/gstrtp.c: (plugin_init):
1872         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1873         (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1874         (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1875         (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1876         (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1877         (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1878         * gst/rtp/gstrtpmp4apay.h:
1879         Added MP4A-LATM payloader to match the depayloader.
1880
1881 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1882
1883         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1884         (gst_videomixer_sink_event):
1885         Handle segments a little better. Fixes #537361.
1886
1887 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1888
1889         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1890         Don't assume the server supports PAUSE by default. Fixes #551048.
1891
1892 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1893
1894         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1895         (gst_udpsrc_set_uri), (gst_udpsrc_start):
1896         Switch on the socket family to get the addrlen size right.
1897
1898 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1899
1900         Patch by: Daniel Franke <df at dfranke dot us>
1901
1902         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1903         OS X's bind() implementation is picky about its addrlen parameter and
1904         fails with EINVAL if it is larger than expected for the socket's address
1905         family. Set the length to the expected length instead. Fixes #553191.
1906
1907 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1908
1909         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1910         Handle the case where we cannot do desribe or when the describe result
1911         does not contain a valid SDP message.
1912
1913 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1914
1915         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1916         Fix setting the qos.
1917
1918 2008-09-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1919
1920         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1921         (gst_qtdemux_chain):
1922         Some 'broken' files out there have atom lengths of zero...
1923         which basically results in qtdemux consuming that atom again and again
1924         until the *end of night* !
1925         Detect that and emits an adequate element error message.
1926
1927 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
1928
1929         * gst/interleave/Makefile.am:
1930         * gst/matroska/Makefile.am:
1931         Fix build flags order.
1932
1933         * tests/check/elements/audioamplify.c: (GST_START_TEST):
1934         * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1935         * tests/check/elements/audioinvert.c: (GST_START_TEST):
1936         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1937         Format fixes.
1938
1939         * tests/check/elements/multifile.c:
1940         Pull in unistd.h
1941
1942 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1943
1944         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1945         (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1946         (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1947         (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1948         (gst_rtp_mp4g_depay_change_state):
1949         * gst/rtp/gstrtpmp4gdepay.h:
1950         Handle interleaved streams by reordering AU in a queue.
1951
1952 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1953
1954         * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1955         (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1956         Change some of the ranges in the caps, mostly for the amount of bits we
1957         can use.
1958         Added a little bitstream parse and use it to parse the AU header fields.
1959         Check for malformed and wrongly sized packets better.
1960         Implement more header field parsing.
1961         Handle the size of fragmented packets correctly.
1962
1963 2008-09-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1964
1965         Patch by: Jonathan Matthew <notverysmart@gmail.com>
1966         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1967         Add mapping for 'tiff' => image/tiff
1968         Fixes #552213
1969
1970 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
1971
1972
1973         * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1974         * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1975           Pretend to care about the result of write() which works around
1976           compiler warnings.
1977
1978 2008-09-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1979
1980         * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1981           Make sure the desired default values are actually set, not only
1982           registered as defaults (actual problem is that the stereo-specific
1983           values are only updated if channels==2, which is not the case yet
1984           when the object is created, so the default values for the
1985           mid-side-stereo and loose-mid-side-stereo settings are never
1986           set in _update_quality()). Makes flacenc create smaller files by
1987           default (for stereo input), and fixes #550791.
1988
1989 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1990
1991         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1992         (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
1993         (qtdemux_parse_trak), (qtdemux_video_caps):
1994         * gst/qtdemux/qtdemux.h:
1995         * gst/qtdemux/qtdemux_fourcc.h:
1996         * gst/qtdemux/qtdemux_types.c:
1997         Add support for video/mj2 mime-type and its additional atoms/boxes.
1998         Fixes #550646.
1999
2000 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
2001
2002         * gst/debug/gsttaginject.c:
2003           Add warning when tags parameter is unparsable and give example for
2004           quoting in the docs.
2005
2006 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2007
2008         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
2009         Add mapping for IMA Loki SDL MJPEG ADPCM codec.
2010         Add some alternative byteswapped mappings that seem to pop up sometimes.
2011         Fixes #550288.
2012
2013 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2014
2015         * po/LINGUAS:
2016         * po/POTFILES.in:
2017         * po/POTFILES.skip:
2018           Add 'ca' to LINGUAS; add some more files with translations and some
2019           files which should be ignored by translation tools.
2020
2021 2008-09-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2022
2023         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2024         * ext/speex/gstspeexdec.h:
2025         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2026         * ext/speex/gstspeexenc.h:
2027         Use integer encoding and decoding functions instead of converting
2028         the integer input to float in the element. The libspeex integer
2029         functions are doing this for us already or, if libspeex was compiled
2030         in integer mode, they're doing everything using integer arithmetics.
2031         Also saves some copying around.
2032
2033 2008-09-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2034
2035         * configure.ac:
2036           Fix --disable-external
2037
2038 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2039
2040         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
2041         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
2042         * ext/wavpack/gstwavpackenc.h:
2043         Handle non-zero start timestamps and stream discontinuities
2044         correctly. This only has an effect if we're muxing into
2045         a container format as the raw WavPack stream must contain
2046         continous sample numbers.
2047
2048 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2049
2050         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2051         Correct the timestamp and granulepos calculation by one Speex
2052         frame.
2053
2054 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2055
2056         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2057         Correctly take the granulepos from upstream if possible and
2058         correctly handle the granulepos in various calculations: the
2059         granulepos is the sample number of the _last_ sample in a frame, not
2060         the first.
2061
2062         * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
2063         (gst_speex_enc_encode), (gst_speex_enc_chain),
2064         (gst_speex_enc_change_state):
2065         * ext/speex/gstspeexenc.h:
2066         Handle non-zero start timestamps in the encoder and detect/handle
2067         stream discontinuities. Fixes bug #547075.
2068
2069 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2070
2071         Patch by: Craig Keogh <cskeogh at adam dot com dot au>
2072
2073         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
2074         Fix compiler warnings caused by passing a string as format string
2075         instead of "%s" and then the string. This is only exposed by -Wformat=2
2076         as used by default on Ubuntu. Fixes bug #550015.
2077
2078 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2079
2080         * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
2081         * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
2082         * gst/audiofx/audiocheblimit.c: (generate_coefficients):
2083         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
2084         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2085           (gst_ebml_read_element_length):
2086         * gst/matroska/matroska-demux.c:
2087           (gst_matroska_demux_check_subtitle_buffer):
2088           Make stuff compile with GST_DISABLE_GST_DEBUG.
2089
2090 2008-08-28  Michael Smith <msmith@songbirdnest.com>
2091
2092         * gst/law/alaw.c:
2093         * gst/law/mulaw.c:
2094           Ref caps before passing to gst_pad_template_new(), since that takes
2095           ownership.
2096
2097 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2098
2099         Patch by: Mersad Jelacic <mersad at axis dot com>
2100
2101         * gst/multipart/multipartdemux.c:
2102         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
2103         Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
2104         demuxer. Fixes #549551.
2105
2106 2008-08-27  Edward Hervey  <edward.hervey@collabora.co.uk>
2107
2108         * sys/osxaudio/gstosxaudiosink.c:
2109         (gst_osx_audio_sink_select_device):
2110         * sys/osxaudio/gstosxaudiosrc.c:
2111         (gst_osx_audio_src_create_ringbuffer),
2112         (gst_osx_audio_src_select_device):
2113         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
2114         Fix the build on macosx.
2115
2116 2008-08-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2117
2118         * gst/icydemux/gsticydemux.c:
2119           Small docs fix: in the example pipeline, we need to pass
2120           iradio-mode=true to the source, so the server actually sends
2121           an ICY stream.
2122
2123 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2124
2125         * sys/osxaudio/gstosxaudio.c:
2126           Oops. Revert more completely.
2127
2128 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2129
2130         * sys/osxaudio/gstosxaudio.c:
2131           Revert accidental element rename from testing.
2132
2133 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2134
2135         * gst-plugins-good.doap:
2136         Pull in 0.10.10 doap entry from release branch
2137
2138 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2139
2140         * configure.ac:
2141         Update version number to reflect 0.10.10 release from
2142         branch.
2143
2144 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2145
2146         * sys/osxaudio/Makefile.am:
2147         * sys/osxaudio/gstosxaudio.c:
2148         * sys/osxaudio/gstosxaudiosink.c:
2149         * sys/osxaudio/gstosxaudiosink.h:
2150         * sys/osxaudio/gstosxaudiosrc.c:
2151         * sys/osxaudio/gstosxaudiosrc.h:
2152         * sys/osxaudio/gstosxringbuffer.c:
2153         * sys/osxaudio/gstosxringbuffer.h:
2154           Rewrite caps setting and ring buffer initialisation.
2155           Previously we never told CoreAudio what format we were going to send it,
2156           so it only worked due to luck, and not at all on some hardware.
2157           Now we explicitly advertise what formats the hardware supports, and then
2158           configure the selected one correctly.
2159
2160 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2161
2162         * sys/v4l2/gstv4l2object.c:
2163         * sys/v4l2/gstv4l2src.c:
2164         * sys/v4l2/gstv4l2src.h:
2165         * sys/v4l2/v4l2_calls.c:
2166         * sys/v4l2/v4l2src_calls.c:
2167           Fix memory leaks. Small code cleanups : No need for empty _init(). No
2168           need to memset instance structures. Some more FIXME's and comments.
2169
2170 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2171
2172         * tests/icles/.cvsignore:
2173           Ignore more.
2174
2175 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2176
2177         * gst/goom/.cvsignore:
2178         * gst/goom2k1/.cvsignore:
2179           Ignore files.
2180
2181 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2182
2183         * ext/cairo/gsttextoverlay.c:
2184           Fix compiler warning.
2185
2186 2008-08-25  David Schleef  <ds@schleef.org>
2187
2188         * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2189
2190 2008-08-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2191
2192         * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2193         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2194         * gst/matroska/matroska-mux.c:
2195         (gst_matroska_mux_video_pad_setcaps),
2196         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2197         Add Real[Audio|Video] support to Matroska containers.
2198         It works fine for:
2199         * decoding real audio/video streams contained in mkv
2200         * 'transmuxing' real (.rm) files into .mkv files
2201         It will not work though for encoding real[audio/video] streams that
2202         don't contain the 'mdpr_data' extra data on the caps.
2203         The reason why this will not work is because I never intended to
2204         duplicate virtually all the 'mdpr' block creation into mkvmux.
2205         Fixes #536067
2206
2207 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2208
2209         * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2210         * gst/law/mulaw-conversion.c:
2211         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2212         (gst_mulawenc_chain):
2213         The encoder can't really renegotiate at the time they perform a
2214         pad-alloc so make the srcpads use fixed caps.
2215         Check the buffer size after a pad-alloc because the returned size might
2216         not be right when the downstream element does not know the size of the
2217         new buffer (capsfilter). Fixes #549073.
2218
2219 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2220
2221         Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2222
2223         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2224         v4l2src doesn't have a property named "norm" so don't try to notify
2225         about changes to that property. The "norm" property and related
2226         code are commented out currently. Fixes bug #549090.
2227
2228 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2229
2230         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2231
2232         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2233         Reprobe devices again instead of taking a cached list as new
2234         devices could've been plugged in. Fixes bug #549062.
2235
2236 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2237
2238         * gst/autodetect/Makefile.am:
2239         Don't link the autodetect plugin with GConf as it doesn't
2240         use GConf. Fixes bug #545463.
2241
2242 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2243
2244         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2245         (gst_ebml_read_element_length), (gst_ebml_read_uint),
2246         (gst_ebml_read_sint), (gst_ebml_read_float),
2247         (gst_ebml_read_header):
2248         Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2249         possible to ignore errors and not post any ERROR messages on
2250         the bus.
2251
2252         * gst/matroska/matroska-demux.c:
2253         (gst_matroska_demux_parse_contents):
2254         Ignore any errors and not just EOS when parsing the contents of
2255         a SeekHead. Errors here are usually caused by truncated files
2256         and playback of the file works fine. Fixes playback of the
2257         audio_only_chapter_seekbroken.mka file from the MPlayer samples
2258         archive.
2259
2260 2008-08-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2261
2262         * gst/multipart/multipartdemux.c:
2263         * gst/multipart/multipartmux.c:
2264         Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2265
2266 2008-08-21  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
2267
2268         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2269           gst_directdraw_sink_bufferpool_clear):
2270           Fix two more buffer ref leaks.
2271
2272 2008-08-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
2273
2274         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2275
2276         * sys/directdraw/gstdirectdrawsink.c:
2277           (gst_directdraw_sink_show_frame):
2278           Fix buffer ref leak.
2279
2280 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2281
2282         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2283         Revert the last commit. wavenc still supports width!=depth for 32 bit
2284         width. Thanks Tim.
2285
2286 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2287
2288         * gst/matroska/matroska-demux.c:
2289         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2290         If the duration of a block is unknown only use the timestamp for the
2291         first lace and use GST_CLOCK_TIME_NONE as duration for the following
2292         laces. Otherwise every lace has the same timestamp which leads to
2293         various problems. Really fixes bug #548831.
2294
2295 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2296
2297         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2298         If we're not allowing width!=depth in wavenc we should also disable
2299         the code that was added to support width!=depth.
2300
2301 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2302
2303         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2304         Don't calculate the default duration of a frame from the audio sampling
2305         rate. This only works for raw audio if every frame contains a single
2306         sample and results in broken buffer durations for other formats
2307         if no specified default duration is given or the blocks have no
2308         duration. Fixes bug #548831.
2309
2310 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2311
2312         * gst/matroska/matroska-demux.c:
2313         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2314         Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2315         are used for text/plain subtitles as a gap-filler in some files.
2316
2317 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2318
2319         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2320         (gst_v4l2_get_caps_info):
2321         Add S910 and PWC formats with a low priority.
2322
2323         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2324         (gst_v4l2src_probe_caps_for_format):
2325         Add more debugging.
2326
2327 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
2328
2329         * ext/flac/gstflacenc.c:
2330           Fix compilation against older libflac versions.
2331
2332 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2333
2334         * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2335         (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2336         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2337         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2338         (gst_pulsemixer_ctrl_set_volume):
2339         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2340         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2341         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2342         (gst_pulsesink_init), (gst_pulsesink_open),
2343         (gst_pulsesink_prepare), (gst_pulsesink_write),
2344         (gst_pulsesink_delay), (gst_pulsesink_reset):
2345         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2346         (gst_pulsesrc_init):
2347         Use GST_BOILERPLATE everywhere and fix coding style at some places.
2348         Fix a locking issue in pulsesink's prepare function.
2349
2350         * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2351         Check if the created channel layout is valid for GStreamer.
2352
2353 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2354
2355         * gst/rtsp/gstrtspgoogle.c:
2356         Things that can happen when your brain is in google mode trying to
2357         deal with their google rtsp server extensions and trying to type your
2358         google mail account.
2359
2360 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2361
2362         * gst/rtsp/Makefile.am:
2363         * gst/rtsp/gstrtsp.c: (plugin_init):
2364         * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2365         (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2366         (_do_init), (gst_rtsp_google_base_init),
2367         (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2368         (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2369         (gst_rtsp_google_extension_init):
2370         * gst/rtsp/gstrtspgoogle.h:
2371         Add google RTSP extension, it can only handle udp and responds with
2372         unsupported if we do anything else. Fixes #546465.
2373
2374         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2375         (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2376         (gst_rtspsrc_create_transports_string),
2377         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2378         (gst_rtspsrc_close), (gst_rtspsrc_pause):
2379         Make transport setup code a bit better using GString.
2380         Add some more debug.
2381         Check for closed connections before doing anything on them.
2382
2383 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2384
2385         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2386         (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2387         (gst_pulsesrc_prepare):
2388         * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2389         (gst_pulse_channel_map_to_gst):
2390         * ext/pulse/pulseutil.h:
2391         If downstream provides no channel layout and >2 channels should be
2392         used use the default layout that pulseaudio chooses and also
2393         add this layout to the caps. Fixes bug #547258.
2394
2395 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2396
2397         Patch by: Peter Kjellerstedt <pkj at axis com>
2398
2399         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2400         (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2401         (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2402         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2403         (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2404         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2405         (gst_udpsrc_set_property):
2406         Avoid leaking internally allocated file descriptors when setting
2407         custom file descriptors. Fixes #543101.
2408
2409 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2410
2411         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2412         Don't try to configure RTCP back to the server when the server did not
2413         give us a valid port number.
2414
2415 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2416
2417         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2418         Use new basetransform method to renegotiate. Fixes #544956.
2419
2420         * tests/icles/Makefile.am:
2421         * tests/icles/videobox-test.c: (make_pipeline), (main):
2422         Add videobox renegotiation example.
2423
2424 2008-08-19  David Schleef  <ds@schleef.org>
2425
2426         * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2427         with sane values.  Fixes #548530.
2428
2429 2008-08-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2430
2431         * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2432         * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2433         The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2434         are already filled with the correct values by
2435         gst_ring_buffer_parse_caps() so there's no need to set them again
2436         with wrong values.
2437
2438 2008-08-16  Edward Hervey  <edward.hervey@collabora.co.uk>
2439
2440         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2441         (gst_avi_demux_read_subindexes_push):
2442         Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2443         and instead of using the 'ix##' nomenclature, use '##ix'.
2444         They're still valid though, this fixes the duration and indexes for
2445         virtually all the ODML files I have.
2446
2447 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
2448
2449         Patch by: Olivier Crete <tester at tester dot ca>
2450
2451         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2452         (gst_rtp_vorbis_depay_process):
2453         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2454         Update the vorbis RTP pay/depay to RFC 5215.
2455         Fixes #547842.
2456
2457 2008-08-14  David Schleef  <ds@schleef.org>
2458
2459         * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2460           with 3:2 pulldown, i.e., 24p.
2461
2462 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2463
2464         * tests/check/elements/level.c: (GST_START_TEST):
2465         Fix compilation some more.
2466
2467 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2468
2469         * configure.ac::
2470           Require -base CVS for wavparse acid chunk parsing.
2471
2472 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2473
2474         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2475         (gst_pulsesink_init), (gst_pulsesink_finalize),
2476         (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2477         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2478         (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2479         * ext/pulse/pulsesink.h:
2480         Add "device-name" property to pulsesink too and currently commented
2481         out and not working support for a "volume" property.
2482
2483 2008-08-13  Thijs Vermeir  <thijsvermeir@gmail.com>
2484
2485         * configure.ac:
2486         Remove more cdio stuff (moved to ugly)
2487
2488 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2489
2490         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2491
2492         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2493         (gst_pulsesrc_get_property):
2494         Add "device-name" property, which provides a human readable string
2495         for the audio device, to make it more consisten with other audio
2496         sources. Fixes bug #547519.
2497
2498 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2499
2500         * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2501         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2502         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2503         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2504         * ext/pulse/pulsemixerctrl.h:
2505         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2506         (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2507         (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2508         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2509         * ext/pulse/pulseprobe.h:
2510         * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2511         * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2512         (gst_pulsesrc_change_state):
2513         Improve debugging a bit by including the parent object in pulsemixerctrl
2514         and pulseprobe objects and using GST_WARNING_OBJECT instead of
2515         GST_WARNING.
2516
2517         Use the parent GObject subclass instead of a random struct as GObject
2518         parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2519         when probing for another property than "device".
2520
2521 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2522
2523         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2524
2525         * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2526         Fix property probing after the device property is set by calling
2527         set_server when the server property changes. Fixes bug #547518.
2528
2529 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2530
2531         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2532
2533         * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2534         (gst_pulsesink_implements_interface_init),
2535         (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2536         (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2537         (gst_pulsesink_get_type):
2538         * ext/pulse/pulsesink.h:
2539         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2540         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2541         (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2542         * ext/pulse/pulsesrc.h:
2543         Implement GstPropertyProbe interface on pulsesink for detecting
2544         sink devices and on pulsesrc for detecting source devices.
2545         Fixes bugs #547227 and #547217.
2546
2547 2008-08-13  Stefan Kost  <ensonic@users.sf.net>
2548
2549         * gst/spectrum/gstspectrum.c:
2550           Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2551
2552 2008-08-13  Edward Hervey  <edward.hervey@collabora.co.uk>
2553
2554         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2555         Properly set the maximum latency value, in the same way it is done in
2556         v4lsrc.
2557         * sys/v4l2/v4l2src_calls.c:
2558         Simplify fraction equality check, no need to use GValues for this.
2559
2560 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2561
2562         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2563         Add warning messages stating exactly why the latency query failed.
2564         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2565         In some cases, the negotiated framerate might be the default one which
2566         is already set internally. But we still need to mark it down in fps_n
2567         and fps_d so that the latency query can happen properly.
2568
2569 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2570
2571         * docs/plugins/inspect/plugin-1394.xml:
2572         Whoops, forgot one doc file for people who can't/don't build the
2573         raw1394 plugin.
2574
2575 2008-08-12  Jan Schmidt  <jan.schmidt@sun.com>
2576
2577         * docs/plugins/Makefile.am:
2578         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2579         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2580         * docs/plugins/inspect/plugin-cdio.xml:
2581         * ext/Makefile.am:
2582         * ext/cdio/Makefile.am:
2583         * ext/cdio/gstcdio.c:
2584         * ext/cdio/gstcdio.h:
2585         * ext/cdio/gstcdiocddasrc.c:
2586         * ext/cdio/gstcdiocddasrc.h:
2587
2588         Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2589         CDDA source to -ugly.
2590
2591         * po/LINGUAS:
2592         * po/POTFILES.in:
2593         * po/id.po:
2594         Pull in new translation from 0.10.9.2 release branch.
2595
2596 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2597
2598         * docs/plugins/Makefile.am:
2599         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2600         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2601         * docs/plugins/gst-plugins-good-plugins.args:
2602         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2603         * docs/plugins/gst-plugins-good-plugins.interfaces:
2604         Integrate documentation for new hdv1394src element.
2605
2606 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2607
2608         * ext/raw1394/Makefile.am:
2609         * ext/raw1394/gst1394.c: (plugin_init):
2610         * ext/raw1394/gsthdv1394src.c: (_do_init),
2611         (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2612         (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2613         (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2614         (gst_hdv1394src_from_raw1394handle),
2615         (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2616         (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2617         (gst_hdv1394src_start), (gst_hdv1394src_stop),
2618         (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2619         (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2620         (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2621         (gst_hdv1394src_uri_handler_init):
2622         * ext/raw1394/gsthdv1394src.h:
2623         mpeg2-ts (HDV) variant of firewire capture element.
2624         Fixes #350830
2625
2626 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2627
2628         * gst/level/gstlevel.c: (gst_level_message_new):
2629          Fix compilation (also known as the classic 'fix code that someone
2630          committed without compiling it first').
2631
2632 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2633
2634         * tests/check/elements/level.c:
2635           Add a test for level in stereo mode.
2636
2637 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2638
2639         * tests/examples/spectrum/demo-audiotest.c:
2640         * tests/examples/spectrum/demo-osssrc.c:
2641           Demo how to draw analyzer results synced to the clock.
2642
2643 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2644
2645         * gst/level/gstlevel.c:
2646           Little renaming (l -> level).
2647
2648         * gst/spectrum/gstspectrum.c:
2649         * gst/spectrum/gstspectrum.h:
2650           Also send full timestamp/duration details here.
2651
2652 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2653
2654         * gst/level/gstlevel.c:
2655         * gst/level/gstlevel.h:
2656           Send same timestamp/duration details as videoanalysis. This gives
2657           applications better chance to sync analysis results with playback.
2658
2659 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2660
2661         * gst/matroska/matroska-mux.c:
2662         (gst_matroska_mux_handle_sink_event),
2663         (flac_streamheader_to_codecdata):
2664         We need to drop one additional buffer for FLAC as the fLaC
2665         marker and STREAMINFO block are merged into one buffer in the caps.
2666
2667         Also don't pretend to support NEWSEGMENT events, otherwise we
2668         will most probably write some invalid data.
2669
2670 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2671
2672         * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2673         (gst_matroska_mux_audio_pad_setcaps):
2674         Add support for muxing FLAC into Matroska containers.
2675         Fixes bug #311586.
2676
2677 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2678
2679         * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2680         Actually provide the variables required for the format string.
2681
2682 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2683
2684         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2685         (gst_matroska_demux_element_send_event),
2686         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2687         * gst/matroska/matroska-demux.h:
2688         Close the current segment if we're doing a non-flushing seek and send
2689         the close-segment and the new segment of the seek from the streaming
2690         thread.
2691
2692 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2693
2694         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2695         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2696         (gst_flac_enc_change_state):
2697         * ext/flac/gstflacenc.h:
2698         Handle non-zero start timestamps correctly, mark header packets as
2699         IN_CAPS and print a warning and suggest using audiorate if stream
2700         discontinuities are detected. When FLAC supports flushing the encoder
2701         somehow this should be done for discontinuities instead.
2702
2703         Remove some unused variables from the instance struct.
2704
2705 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2706
2707         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2708         If seeking failed return the appropiate return value to FLAC.
2709         Otherwise it thinks seeking was successfull and tries to rewrite
2710         parts of the headers which then get appended to the output.
2711
2712 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2713
2714         Patch by: Frederic Crozat <fcrozat@mandriva.org>
2715
2716         * ext/esd/gstesd.c: (plugin_init):
2717         * ext/flac/gstflac.c: (plugin_init):
2718         * ext/shout2/gstshout2.c: (plugin_init):
2719         * ext/wavpack/gstwavpack.c: (plugin_init):
2720         * sys/oss/gstossaudio.c: (plugin_init):
2721         * sys/v4l2/gstv4l2.c: (plugin_init):
2722         Make sure gettext returns translations in UTF-8 encoding rather
2723         than in the current locale encoding (#546822).
2724
2725 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2726
2727         * ext/flac/gstflacdec.c:
2728         Add FIXME for 0.11 to simply output everything with width=32 as given
2729         by FLAC and let audioconvert handle the conversions instead of doing
2730         them in flacdec.
2731
2732 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
2733
2734         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2735         When outputting a pad template range for the size, include a framerate
2736         range too, to avoid 'not a real subset of template caps' errors.
2737
2738 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2739
2740         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2741
2742         * ext/flac/Makefile.am:
2743         * ext/flac/gstflac.c: (plugin_init):
2744         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2745         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2746         (gst_flac_tag_dispose), (gst_flac_tag_init),
2747         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2748         (gst_flac_tag_change_state):
2749         * ext/flac/gstflactag.h:
2750         Port flactag to 0.10, add documentation for it and clean it up a bit.
2751         Fixes bug #413841.
2752
2753         * docs/plugins/Makefile.am:
2754         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2755         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2756         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2757         * docs/plugins/gst-plugins-good-plugins.interfaces:
2758         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2759         * docs/plugins/inspect/plugin-flac.xml:
2760         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2761         * ext/flac/gstflacdec.h:
2762         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2763         * ext/flac/gstflacenc.h:
2764         Add flactag and flacenc to the documentation and mark
2765         the private parts of the flacdec instance structure as private.
2766
2767         Also use gst_element_class_set_details_simple() in flacdec and
2768         flacenc.
2769
2770 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
2771
2772         * gst/qtdemux/qtdemux.c:
2773           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2774           for it but ffmpeg does not.
2775
2776 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2777
2778         * gst/wavparse/gstwavparse.c:
2779           Handle the list chunk and use gst_riff_parse_info() to parse the info
2780           sub-chunk.
2781
2782 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2783
2784         * gst/wavparse/gstwavparse.c:
2785           Handle the acid chunk and send tempo as part of tags. Other fields are
2786           interesting too, but need more tag-definitions. Fixes #545433.
2787
2788 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2789
2790         * gst/wavparse/gstwavparse.c:
2791           Refactor wavparse. Call _reset() from dispose() and move old code from
2792           dispose into reset. This way we don't leak taglists when we abort
2793           parsing. Fix some comments. Move code for skipping a chunk into extra
2794           function. Replace chunk sizes with a const to ease readability.         
2795
2796 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2797
2798         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2799
2800         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2801         Improve udp port setup. Fixes #545710.
2802
2803 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2804
2805         * gst/rtp/Makefile.am:
2806         * gst/rtp/gstrtp.c: (plugin_init):
2807         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2808         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2809         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2810         (gst_rtp_mp1s_depay_set_property),
2811         (gst_rtp_mp1s_depay_get_property),
2812         (gst_rtp_mp1s_depay_change_state),
2813         (gst_rtp_mp1s_depay_plugin_init):
2814         * gst/rtp/gstrtpmp1sdepay.h:
2815         Add MP1S depayloader.
2816
2817         * gst/rtsp/URLS:
2818         Some more sample rtsp streams.
2819
2820 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2821
2822         * gst/rtsp/URLS:
2823         Add another URL.
2824
2825         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2826         * tests/check/elements/rglimiter.c: (GST_START_TEST):
2827         Add some more debug info.
2828
2829 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2830
2831         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2832         Provide cbSize field for audio extra_data size, and take care to
2833         pad extra_data.
2834
2835 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2836
2837         * gst/qtdemux/qtdemux.c:
2838           Return the result of gst_pad_{start,stop}_task instead of hard-coded
2839           TRUE.
2840
2841 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2842
2843         * gst/qtdemux/qtdemux.c:
2844         * gst/qtdemux/qtdemux_fourcc.h:
2845           Add keyword tag support. Fixes #520694 for qtdemux.
2846
2847 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2848
2849         * gst/qtdemux/qtdemux.c:
2850           Add support for tmpo tag (BPM).
2851
2852 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2853
2854         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2855         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2856         Set an estimate for the total number of samples that will be encoded
2857         if possible to help decoders if the streaminfo can't be rewritten
2858         later (like when muxing into Ogg containers).
2859
2860         Add a warning if we get header packets after data packets as those
2861         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2862         work.
2863
2864 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2865
2866         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2867         (gst_flac_dec_write):
2868         Support decoding of all depths between 4 and 32 bits and read the
2869         depth from the streaminfo header if needed. Also support all sampling
2870         rates between 1 and 655350 Hz.
2871
2872         * ext/flac/gstflacenc.c:
2873         (gst_flac_enc_caps_append_structure_with_widths),
2874         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2875         (gst_flac_enc_chain):
2876         * ext/flac/gstflacenc.h:
2877         Support encoding in all bit depths supported by the streamable
2878         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2879         between 1 Hz and 655350 Hz.
2880
2881 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2882
2883         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2884         (gst_flac_enc_sink_getcaps):
2885         Support encoding of up to 8 channels.
2886
2887 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2888
2889         * ext/soup/gstsouphttpsrc.c:
2890         * ext/soup/gstsouphttpsrc.h:
2891         Fix seeking race condition in #540300
2892         Patch By: Wouter Cloetens  <wouter at mind be>
2893
2894 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2895
2896         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2897         (gst_matroska_demux_element_send_event),
2898         (gst_matroska_demux_handle_seek_event),
2899         (gst_matroska_demux_handle_src_event):
2900         When receiving a SEEK event on a specific pad first search for a seek
2901         table entry for the stream of the pad and then fall back to an entry
2902         for a different stream.
2903
2904 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2905
2906         * configure.ac:
2907         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2908         * gst/matroska/matroska-ids.h:
2909         Build depend on core CVS for the attachment tag.
2910
2911 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2912
2913         * configure.ac:
2914         * gst/matroska/Makefile.am:
2915         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2916         (copy_backptr), (lzo1x_decode), (main):
2917         * gst/matroska/lzo.h:
2918         * gst/matroska/matroska-demux.c:
2919         (gst_matroska_demux_read_track_encoding),
2920         (gst_matroska_decompress_data), (gst_matroska_decode_data),
2921         (gst_matroska_decode_buffer),
2922         (gst_matroska_decode_content_encodings),
2923         (gst_matroska_demux_read_track_encodings),
2924         (gst_matroska_demux_add_stream),
2925         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2926         * gst/matroska/matroska-ids.h:
2927         Decode the codec private data and following ContentEncoding if
2928         necessary.
2929
2930         Support bzip2, lzo and header stripped compression. For lzo use the
2931         ffmpeg lzo implementation as liblzo is GPL licensed.
2932         
2933         Fix zlib decompression.
2934
2935 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2936
2937         * gst/matroska/matroska-mux.c:
2938         (gst_matroska_mux_audio_pad_setcaps):
2939         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2940         duration of a frame with the new mpegaudioversion caps field.
2941
2942 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2943
2944         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2945         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2946         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2947         (gst_matroska_demux_stream_from_num),
2948         (gst_matroska_demux_tracknumber_unique),
2949         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2950         (gst_matroska_demux_handle_seek_event),
2951         (gst_matroska_demux_sync_streams),
2952         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2953         (gst_matroska_demux_loop):
2954         * gst/matroska/matroska-demux.h:
2955         Allow an infinite number of stream inside Matroska containers and use
2956         a GPtrArray for storing them instead of allowing "only" 127 streams.
2957
2958 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2959
2960         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2961         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2962         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2963         (gst_ebml_read_element_length), (gst_ebml_peek_id),
2964         (gst_ebml_read_get_length), (gst_ebml_read_skip),
2965         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2966         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2967         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2968         (gst_ebml_read_master), (gst_ebml_read_binary),
2969         (gst_ebml_read_header):
2970         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2971         (gst_ebml_write_element_size), (gst_ebml_write_uint),
2972         (gst_ebml_write_sint), (gst_ebml_write_ascii),
2973         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2974         (gst_ebml_replace_uint):
2975         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2976         (gst_matroska_demux_read_track_encoding),
2977         (gst_matroska_demux_read_track_encodings),
2978         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2979         (gst_matroska_demux_send_event),
2980         (gst_matroska_demux_element_send_event),
2981         (gst_matroska_demux_handle_seek_event),
2982         (gst_matroska_demux_handle_src_event),
2983         (gst_matroska_demux_init_stream),
2984         (gst_matroska_demux_parse_tracks),
2985         (gst_matroska_demux_parse_index_cuetrack),
2986         (gst_matroska_demux_parse_index_pointentry),
2987         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
2988         (gst_matroska_demux_parse_metadata_id_simple_tag),
2989         (gst_matroska_demux_parse_metadata_id_tag),
2990         (gst_matroska_demux_parse_metadata),
2991         (gst_matroska_demux_parse_attached_file),
2992         (gst_matroska_demux_parse_attachments),
2993         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
2994         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
2995         (gst_matroska_demux_push_flac_codec_priv_data),
2996         (gst_matroska_demux_push_xiph_codec_priv_data),
2997         (gst_matroska_demux_push_dvd_clut_change_event),
2998         (gst_matroska_demux_add_mpeg_seq_header),
2999         (gst_matroska_demux_add_wvpk_header),
3000         (gst_matroska_demux_check_subtitle_buffer),
3001         (gst_matroska_decode_buffer),
3002         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3003         (gst_matroska_demux_parse_cluster),
3004         (gst_matroska_demux_parse_contents_seekentry),
3005         (gst_matroska_demux_parse_contents),
3006         (gst_matroska_demux_loop_stream_parse_id),
3007         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
3008         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3009         (gst_matroska_demux_subtitle_caps),
3010         (gst_matroska_demux_change_state):
3011         * gst/matroska/matroska-ids.c:
3012         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
3013         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
3014         (gst_matroska_mux_video_pad_setcaps),
3015         (xiph3_streamheader_to_codecdata),
3016         (vorbis_streamheader_to_codecdata),
3017         (theora_streamheader_to_codecdata),
3018         (gst_matroska_mux_audio_pad_setcaps),
3019         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
3020         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
3021         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
3022         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
3023         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
3024         Fix indention everywhere. A broken indent version has added newlines
3025         after every single declaration some time ago.
3026
3027 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3028
3029         * gst/matroska/matroska-demux.c:
3030         (gst_matroska_demux_loop_stream_parse_id):
3031         If no Tracks are found error out instead of trying it again until the
3032         end of time.
3033
3034 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3035
3036         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
3037         Fix demuxing of raw integer audio. The samples are unsigned only for 8
3038         bit and signed otherwise, not the other way around.
3039
3040 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3041
3042         * gst/matroska/matroska-mux.c:
3043         Add more raw YUV formats to the list of supported formats.
3044
3045 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3046
3047         * gst/matroska/matroska-mux.c:
3048         (gst_matroska_mux_audio_pad_setcaps):
3049         Add support for muxing raw float audio now that the spec defines the
3050         endianness and add support for muxing raw integer audio with 24 and
3051         32 bits.
3052
3053         Allow muxing of more than 8 audio channels.
3054
3055 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3056
3057         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
3058         (gst_matroska_mux_reset), (gst_matroska_mux_start):
3059         Add locking to the global array of used track UIDs to prevent random
3060         crashes if more than a single matrosmux instance is used.
3061
3062         Use 64 bit values for the track UIDs.
3063
3064         Use the global GRandom of GLib instead of creating our own one
3065         for the few random numbers we need every single time.
3066
3067 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3068
3069         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
3070         (gst_flac_dec_setup_stream_decoder),
3071         (gst_flac_dec_update_metadata):
3072         Always post the audio-codec tag, not only if other tags are present.
3073
3074 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
3075
3076         * configure.ac:
3077         Back to development -> 0.10.9.1
3078
3079 === release 0.10.9 ===
3080
3081 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
3082
3083         * configure.ac:
3084           releasing 0.10.9, "Steam Train Rolling"
3085
3086 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
3087
3088         * ext/soup/gstsouphttpsrc.c:
3089         Don't throw an error when soup completes a msg with status
3090         'cancelled', as that indicates we cancelled a request while
3091         shutting down or seeking, and it's not an error.
3092         Fixes: #540300 again.
3093
3094 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
3095
3096         * configure.ac:
3097         0.10.8.4 pre-release
3098
3099 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
3100
3101         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
3102         Fix segment-stop regression.
3103         Add documentation regarding segments in quicktime files by Wim Taymans.
3104         Fixes #544509
3105
3106 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
3107
3108         * configure.ac:
3109         0.10.8.3 pre-release
3110
3111         * po/LINGUAS:
3112         * po/pt_BR.po:
3113         Add pt_BR translation
3114
3115 2008-07-23  Michael Smith <msmith@songbirdnest.com>
3116
3117         * gst/goom/convolve_fx.c:
3118         * gst/goom/filters.c:
3119         * gst/goom/goom_config.h:
3120         * gst/goom/goom_core.c:
3121         * gst/goom/goom_tools.h:
3122           Fix build with MSVC: include glib.h to define inline appropriately,
3123           use header guards where needed.
3124         * gst/udp/gstudpnetutils.c:
3125         * gst/udp/gstudpsrc.c:
3126           Fix build with MSVC: use WSA* constants/functions where appropriate, use
3127           g_snprintf rather than snprintf.
3128           Fixes #544433.
3129
3130 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
3131
3132         * gst/debug/gsttaginject.c:
3133         * gst/debug/gsttaginject.h:
3134           Sent tags in _transform_ip() instead of _start(). Fixes #543404
3135           partially.
3136
3137 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3138
3139         * configure.ac:
3140         0.10.8.2 pre-release
3141
3142 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3143
3144         * ext/Makefile.am:
3145         Finish hooking up pulseaudio plugin to the build.
3146
3147         * ext/pulse/pulsemixerctrl.c:
3148         Fix compilation error.
3149
3150 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3151
3152         * po/LINGUAS:
3153         * po/lt.po:
3154         Add new lithunian translation, and add french to the LINGUAS
3155         file.
3156
3157 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3158
3159         * ext/soup/gstsouphttpsrc.c:
3160         Fix Soup HTTP source seeking.
3161         Patch By: Wouter Cloetens  <wouter at mind be>
3162         Fixes: #540300
3163
3164         * tests/check/elements/.cvsignore:
3165         Ignore new check programs.
3166
3167 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3168
3169         * configure.ac:
3170         * docs/plugins/Makefile.am:
3171         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3172         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3173         * docs/plugins/gst-plugins-good-plugins.args:
3174         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3175         * docs/plugins/gst-plugins-good-plugins.interfaces:
3176         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3177         * docs/plugins/inspect/plugin-interleave.xml:
3178         * docs/plugins/inspect/plugin-replaygain.xml:
3179         * tests/check/Makefile.am:
3180
3181         Move replaygain and interleave plugins from -bad.
3182         Fixes: #543406
3183         Fixes: #536228
3184
3185 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3186
3187         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3188         (qtdemux_parse_trak):
3189         Revert ISO base media spec based pixel-aspect-ratio calculation.
3190         Fixes #543300.
3191
3192 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
3193
3194         * sys/osxvideo/osxvideosink.m:
3195         Fix minor build issues on macosx.
3196         Fixes #543054
3197
3198 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3199
3200         * configure.ac::
3201         * ext/taglib/Makefile.am::
3202           Only use -Wno-attributes (which is there to work around a
3203           bug in the taglib 1.5 headers) if the c++ compiler actually
3204           supports it (#543255).
3205
3206 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3207
3208         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3209
3210         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3211           Avoid compiler warning by initialising variable to NULL (#543259).
3212
3213 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3214
3215         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3216         Don't pass NULL taglists to gst_tag_list_is_empty().
3217
3218 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3219
3220         * tests/check/elements/cmmldec.c: (GST_START_TEST):
3221         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3222         (rtp_pipeline_run):
3223         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3224         Don't use declarations after statements.
3225
3226 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3227
3228         * ext/jpeg/gstjpegdec.c:
3229         Align documentation with reality.
3230
3231 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3232
3233         * gst/udp/gstudpnetutils.c:
3234         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3235         old value (1) if it's not defined which should not cause any problems
3236         as we're using it internal only anyway.
3237
3238 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3239
3240         Patch by: Alessandro Decina <alessandro at nnva dot org>
3241
3242         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3243         Fix build of avidemux on big endian architectures.
3244
3245 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3246
3247         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3248
3249         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3250         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
3251
3252 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3253
3254         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3255         (qtdemux_parse_trak):
3256         Set pixel-aspect-ratio in caps using display width and height
3257         provided in track.
3258
3259 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3260
3261         * configure.ac:
3262         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3263         flags that are invalid for C++. Fixes bug #516509.
3264
3265 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3266
3267         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3268         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3269         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3270         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3271         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3272         * tests/examples/equalizer/demo.c: (message_handler):
3273         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3274         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3275         Don't use declarations after statements and variable length arrays.
3276
3277 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3278
3279         Patch by: Daniel Drake <dsd at gentoo dot org>
3280
3281         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3282         (gst_v4l2src_get_nearest_size):
3283         Try progressive video if interlaced fails. Fixes bug #541956
3284         and the usage of v4l2src on OLPC.
3285
3286 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3287
3288         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3289         (gst_rtp_speex_depay_process):
3290         * gst/rtp/gstrtpspeexdepay.h:
3291         Revert last change: Only the jitterbuffer is able to convert RTP to
3292         Gstreamer timestamps and normal (de)payloaders should simply copy it.
3293         Reopens bug #541787.
3294
3295 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
3296
3297         * gst/rtp/gstrtpvrawdepay.c:
3298           Include stdlib.h for atoi().
3299
3300         * gst/rtsp/gstrtspsrc.c:
3301           Use floating point math for latencies < 0 sec in log output.
3302
3303 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3304
3305         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3306
3307         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3308         (gst_rtp_speex_depay_process):
3309         * gst/rtp/gstrtpspeexdepay.h:
3310         Take timestamp from the RTP packet as a first step to fix problems
3311         with transmission over RTP when the network is not reliable.
3312         Fixes bug #541787.
3313
3314 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3315
3316         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3317
3318         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3319         Fix parsing of udp:// URIs containing IPv6 addresses.
3320         Fixes bug #541650.
3321
3322 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3323
3324         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3325         Do not leak incoming buffers.
3326
3327 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3328
3329         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3330
3331         * configure.ac:
3332         Fix build of the RTP plugin with mingw32 by linking to ws2_32
3333         for htons() and htonl(). Fixes bug #541412.
3334
3335 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3336
3337         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3338         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3339         (gst_matroska_demux_element_query),
3340         (gst_matroska_demux_handle_src_query),
3341         (gst_matroska_demux_handle_seek_event):
3342         Handle position and duration query in DEFAULT format if the
3343         pad's track has a default frame duration set.
3344
3345         Fix seeking now that the segment's duration doesn't contain the
3346         (possibly wrong or inaccurate) duration of the Matroska file.
3347
3348 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3349
3350         * gst/matroska/ebml-read.c: (_ext2dbl):
3351         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3352         in math.h except on MSVC where it is defined in xmath.h.
3353         Fixes compilation with MSVC.
3354
3355 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3356
3357         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3358         (gst_matroska_demux_handle_src_query),
3359         (gst_matroska_demux_parse_info),
3360         (gst_matroska_demux_loop_stream_parse_id):
3361         * gst/matroska/matroska-demux.h:
3362         Don't set the segment duration to the duration from the Matroska
3363         header as this value could be wrong and is just informational.
3364
3365 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3366
3367         * gst/matroska/matroska-demux.c:
3368         (gst_matroska_demux_loop_stream_parse_id):
3369         If no Tracks element is found until the first Cluster is found
3370         search it and error out if none is found in the complete file.
3371
3372 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3373
3374         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3375         Resync non-subtitle tracks too if a too large gap compared to other
3376         tracks is detected.
3377
3378 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3379
3380         * gst/rtp/Makefile.am:
3381         * gst/rtp/gstrtp.c: (plugin_init):
3382         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3383         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3384         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3385         (gst_rtp_vraw_depay_change_state),
3386         (gst_rtp_vraw_depay_plugin_init):
3387         * gst/rtp/gstrtpvrawdepay.h:
3388         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3389         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3390         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3391         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3392         (gst_rtp_vraw_pay_plugin_init):
3393         * gst/rtp/gstrtpvrawpay.h:
3394         Add raw video pay and depayloaders, see RFC4175.
3395
3396 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
3397
3398         * ext/libpng/gstpngdec.c:
3399         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3400         whatever it returned.
3401
3402 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3403
3404         * gst/avi/avi-ids.h:
3405         Add vprp chunk related structures.
3406         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3407         (gst_avi_demux_parse_stream):
3408         Parse optional vprp chunk and add calculated pixel-aspect-ratio
3409         to caps.  Fixes #539482.
3410         * gst/avi/gstavimux.h:
3411         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3412         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3413         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3414
3415 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3416
3417         * tests/check/elements/avimux.c: (check_avimux_pad):
3418         Adjust avimux unit test according to increased streamheader size.
3419
3420 2008-06-27  David Schleef  <ds@schleef.org>
3421
3422         * gst/qtdemux/qtdemux.c: Add Dirac stream type
3423
3424 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3425
3426         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3427         * gst/avi/gstavimux.h:
3428         Add 8 bytes to current streamheader to make for a complete one
3429         and to make more players happy.  Fixes #519460.
3430
3431 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
3432
3433         * sys/v4l2/v4l2_calls.c::
3434           Don't include unused gstv4l2xoverlay.h. Fixes build
3435           in case where X11 headers are not installed.
3436
3437 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3438
3439         * ext/dv/gstdv.c: (plugin_init):
3440         Fix compilation.
3441
3442 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
3443
3444         * ext/dv/gstdv.c: (plugin_init):
3445         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3446         DV decoder available.
3447         Fixes #532393
3448
3449 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3450
3451         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3452         Call getsockname() after the call to bind() to get updated values
3453         for the port, etc. This fixes the usage of udpsrc on anonymous
3454         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3455         Thanks to Aurelien Grimaud for pointing out the obvious fix.
3456
3457 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3458
3459         * tests/check/pipelines/wavpack.c: (bus_handler):
3460         Remove workaround for a bug in identity that is fixed in 0.10.20.
3461
3462 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3463
3464         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3465
3466         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3467         Fix HTTP auth support with user/password passed via the URI.
3468         Fixes bug #540067.
3469
3470 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
3471
3472         * configure.ac:
3473           Depend on released versions of core and -base.
3474
3475 2008-06-23  Julien Moutte  <julien@fluendo.com>
3476
3477         * gst/matroska/matroska-demux.c:
3478         (gst_matroska_demux_read_track_encoding),
3479         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3480         format strings in macros. (makes it build on OS X again...)
3481
3482 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3483
3484         * gst/rtp/gstrtptheorapay.c:
3485         * gst/udp/gstmultiudpsink.c:
3486           Added debug.
3487
3488 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
3489
3490         * configure.ac: switch v4l2src over to the normal build instead of
3491         being 'experimental'. Fixes bug #536831.
3492
3493 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3494
3495         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3496         Remove unused variable so that we can compile again.
3497
3498 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
3499
3500         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3501         No need to check for audio/G723 and audio/32KADPCM here as they are
3502         no longer supported.
3503
3504 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3505
3506         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3507         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3508         Use G_GINT64_CONSTANT, this fixes the duration query on files without
3509         known length.
3510
3511 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3512
3513         * gst/matroska/matroska-demux.c:
3514         (gst_matroska_demux_add_wvpk_header),
3515         (gst_matroska_demux_audio_caps):
3516         * gst/matroska/matroska-ids.h:
3517         Fix demuxing of WavPack files. Muxing is still broken.
3518
3519 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3520
3521         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3522         (gst_matroska_demux_add_mpeg_seq_header),
3523         (gst_matroska_demux_add_wvpk_header),
3524         (gst_matroska_demux_check_subtitle_buffer),
3525         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3526         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3527         (gst_matroska_demux_subtitle_caps):
3528         * gst/matroska/matroska-ids.h:
3529         Add a "vfunc" to the track context for postprocessing frames and
3530         convert the wavpack and subtitle postprocessing to this vfunc.
3531         Copy buffer flags in those functions to the new buffers too.
3532
3533         Parse CodecState elements of Blocks.
3534
3535         Add a postprocessing function for MPEG video that adds the sequence
3536         header from the codec private data or codec state to the frames if
3537         it's not already there.
3538
3539 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3540
3541         * gst/matroska/matroska-demux.c:
3542         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3543         If a gap of more than 1/2 second is found in one stream send a
3544         NEWSEGMENT event to not stall the pipeline if the gap is too large.
3545         This also fixes Matroska files where the first buffer doesn't start
3546         at timestamp 0. Fixes bug #429322.
3547
3548         The duration of a block is the default duration multiplied with the
3549         number of laces. Every lace is one frame and the default duration
3550         is the duration of one frame. This fixes playback of files that use
3551         lacing for some tracks.
3552
3553 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3554
3555         * gst/matroska/matroska-demux.c:
3556         (gst_matroska_demux_parse_contents_seekentry):
3557         Update FIXME/TODOs and only ignore EOS at the central, important place
3558         instead of several places.
3559
3560 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3561
3562         * gst/rtp/gstrtpg726pay.c:
3563         Fix caps, See #538891.
3564
3565 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3566
3567         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3568         (gst_matroska_demux_stream_from_num),
3569         (gst_matroska_demux_encoding_cmp),
3570         (gst_matroska_demux_encoding_order_unique),
3571         (gst_matroska_demux_read_track_encoding),
3572         (gst_matroska_demux_read_track_encodings),
3573         (gst_matroska_demux_tracknumber_unique),
3574         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3575         (gst_matroska_demux_parse_tracks),
3576         (gst_matroska_demux_parse_index_cuetrack),
3577         (gst_matroska_demux_parse_index_pointentry),
3578         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3579         (gst_matroska_demux_parse_metadata_id_simple_tag),
3580         (gst_matroska_demux_parse_metadata_id_tag),
3581         (gst_matroska_demux_parse_metadata),
3582         (gst_matroska_demux_parse_attached_file),
3583         (gst_matroska_demux_parse_attachments),
3584         (gst_matroska_demux_parse_chapters),
3585         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3586         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3587         (gst_matroska_demux_parse_cluster),
3588         (gst_matroska_demux_parse_contents_seekentry),
3589         (gst_matroska_demux_parse_contents),
3590         (gst_matroska_demux_loop_stream_parse_id),
3591         (gst_matroska_demux_loop):
3592         Improve debug output everywhere and fix the EOS logic.
3593
3594         Check the values of the ContentEncoding elements more strictly and
3595         don't use tracks for which it's invalid.
3596
3597         Check that the track number is unique for this stream.
3598
3599         Check that seek positions are below G_MAXINT64 as our seeks are
3600         int64-based and overflows will fail badly.
3601
3602         After seeks also don't push SimpleBlocks until the first one
3603         containing a keyframe is found. Before this was done only for normal
3604         Blocks.
3605
3606         Update some FIXME/TODOs.
3607         
3608         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3609         (gst_ebml_read_utf8), (gst_ebml_read_header):
3610         Improve debug output.
3611
3612         * gst/matroska/matroska-ids.c:
3613         (gst_matroska_track_init_video_context):
3614         * gst/matroska/matroska-ids.h:
3615         * gst/matroska/matroska-mux.c:
3616         (gst_matroska_mux_video_pad_setcaps):
3617         Remove eye mode and don't parse it anymore. We can't use that
3618         information in GStreamer yet so it's useless.
3619
3620
3621 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3622
3623         Patch by: Mersad Jelacic <mersad at axis dot com>
3624
3625         * gst/rtp/Makefile.am:
3626         * gst/rtp/gstrtp.c: (plugin_init):
3627         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3628         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3629         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3630         (gst_rtp_g726_depay_plugin_init):
3631         * gst/rtp/gstrtpg726depay.h:
3632         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3633         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3634         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3635         * gst/rtp/gstrtpg726pay.h:
3636         Added G726 pay/depayloaders. Fixes #538891.
3637
3638 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3639
3640         * gst/rtsp/URLS:
3641         Some more urls.
3642
3643         * gst/smpte/barboxwipes.c:
3644         Add a comment
3645
3646         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3647         Fix typo, add audioresample to the pipeline.
3648
3649 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3650
3651         * ext/libmng/Makefile.am:
3652         * ext/libmng/gstmng.c: (plugin_init):
3653         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3654         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3655         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3656         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3657         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3658         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3659         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3660         (gst_mng_dec_change_state):
3661         * ext/libmng/gstmngdec.h:
3662         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3663         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3664         (gst_mng_enc_init), (gst_mng_enc_chain),
3665         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3666         * ext/libmng/gstmngenc.h:
3667         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3668         bits ifdeffed out still.
3669
3670 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3671
3672         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3673         When comparing index elements with the same time compare their
3674         block number.
3675
3676 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
3677
3678         * gst/matroska/matroska-demux.c:
3679           (gst_matroska_demux_parse_attached_file)
3680           Init variable to NULL to avoid compiler warning.
3681
3682 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3683
3684         * gst/matroska/Makefile.am:
3685         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3686         (gst_matroska_demux_parse_attached_file),
3687         (gst_matroska_demux_parse_attachments),
3688         (gst_matroska_demux_parse_contents_seekentry),
3689         (gst_matroska_demux_loop_stream_parse_id):
3690         * gst/matroska/matroska-demux.h:
3691         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3692         * gst/matroska/matroska-ids.h:
3693         * gst/matroska/matroska.c: (plugin_init):
3694         Parse Attachments and post them as GST_TAG_IMAGE if we detect
3695         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3696         and description of the attachments in the caps. Fixes bug #537622.
3697
3698 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
3699
3700         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3701         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3702         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3703         (gst_speex_enc_src_query), (gst_speex_enc_init),
3704         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3705         (gst_speex_enc_chain), (gst_speex_enc_get_property),
3706         (gst_speex_enc_set_property):
3707         Add mode property.
3708         Some cleanups, add more debug info.
3709         Add latency query.
3710
3711 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3712
3713         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3714         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3715         If we get less bytes than requested we can't do anything except doing
3716         our EOS logic.
3717
3718 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3719
3720         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3721         (gst_matroskademux_do_index_seek),
3722         (gst_matroska_demux_parse_index_cuetrack),
3723         (gst_matroska_demux_parse_index_pointentry),
3724         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3725         (gst_matroska_demux_parse_metadata):
3726         * gst/matroska/matroska-demux.h:
3727         * gst/matroska/matroska-ids.h:
3728         Use a GArray for storing the Cue (i.e. seek) information, store
3729         the CueTrackPositions for every track, store the block number
3730         and optimize searching in the array by sorting it after the last
3731         element was added.
3732
3733         Fix a small memory leak when trying to parse a tags element that was
3734         already parsed.
3735
3736 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3737
3738         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3739         (gst_matroska_mux_start), (gst_matroska_mux_finish),
3740         (gst_matroska_mux_write_data):
3741         * gst/matroska/matroska-mux.h:
3742         Don't write another SeekHead which indexes all Clusters to the end of
3743         the file. This isn't useful for anything and just increases filesize.
3744
3745 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3746
3747         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3748         Prevent unaligned memory access when reading floats.
3749
3750 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3751
3752         * gst/matroska/ebml-read.c:
3753         * gst/matroska/ebml-read.h:
3754         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3755         (gst_matroska_demux_parse_metadata):
3756         * gst/matroska/matroska-demux.h:
3757         Make sure that every Tags element is only parsed once and it's
3758         containing tags are only posted once.
3759
3760 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3761
3762         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3763         (gst_ebml_read_header):
3764         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3765         (gst_matroska_demux_parse_tracks),
3766         (gst_matroska_demux_parse_index_cuetrack),
3767         (gst_matroska_demux_parse_index_pointentry),
3768         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3769         (gst_matroska_demux_parse_metadata_id_simple_tag),
3770         (gst_matroska_demux_parse_metadata_id_tag),
3771         (gst_matroska_demux_parse_metadata),
3772         (gst_matroska_demux_parse_attachments),
3773         (gst_matroska_demux_parse_chapters),
3774         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3775         (gst_matroska_demux_parse_cluster),
3776         (gst_matroska_demux_parse_contents_seekentry),
3777         (gst_matroska_demux_parse_contents),
3778         (gst_matroska_demux_loop_stream_parse_id):
3779         Handle EBML elements like Void or CRC32 in the EbmlRead base class
3780         already. They're not useful in the matroska parser and only cause
3781         additional code.
3782
3783 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
3784
3785         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3786         (gst_ebml_finalize), (gst_ebml_read_change_state),
3787         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3788         * gst/matroska/matroska-demux.c:
3789         (gst_matroska_demux_parse_contents_seekentry):
3790         Reverse the level list as we usually are only interested in the
3791         first element or want to add a new first element. Having the
3792         first element stored at the end and calling g_list_last() and
3793         g_list_append() is more expensive.
3794
3795         Also use GSlice for allocating the GstEbmlLevel structs.
3796
3797 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
3798
3799         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3800           (gst_tag_inject_class_init), (gst_tag_inject_init):
3801           Don't unref NULL taglist in finalize. Don't use c++ style
3802           comments.
3803
3804 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3805
3806         * gst/matroska/matroska-demux.c:
3807         (gst_matroska_demux_parse_metadata_id_simple_tag):
3808         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3809         (gst_matroska_mux_write_data):
3810         Use gst_value_serialize() and gst_value_deserialize() for transforming
3811         tags from some GType to a string and the other way around. The default
3812         transformations in GLib don't include transformations from string to
3813         number types.
3814
3815 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3816
3817         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3818         (gst_matroska_demux_parse_tracks),
3819         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3820         (gst_matroska_demux_parse_attachments),
3821         (gst_matroska_demux_parse_chapters),
3822         (gst_matroska_demux_parse_contents_seekentry),
3823         (gst_matroska_demux_loop_stream_parse_id):
3824         * gst/matroska/matroska-demux.h:
3825         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3826         Tags multiple times. The first ones can appear more than once but must
3827         contain the same content as the first for backup purposes so we ignore
3828         all but the first one. Tags can appear multiple times with different
3829         content.
3830
3831         Jump to all elements except Clusters that are available from a
3832         SeekHead to make it more likely to have all required informations
3833         before getting to the first Clusters.
3834
3835         Add dummy functions for parsing Attachments and Chapters.
3836
3837 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3838
3839         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3840         (gst_udpsrc_create), (gst_udpsrc_set_property),
3841         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3842         * gst/udp/gstudpsrc.h:
3843         Add property to control automatic join/leave of multicast groups.
3844         Add G_LIKELY.
3845         Remove setting caps on buffers explicitly, basesrc does that for us now.
3846         Improve debug info.
3847         Convert some non-fatal error into warnings.
3848         Use g_ntohs for better portability.
3849         Leave multicast groups when stopping.
3850         When using external sockets, use getsockname() on them to fill up the
3851         addr structure before calling methods that use the structure.
3852         Should all fix #536903.
3853         API: GstUDPSrc::auto-multicast property
3854
3855 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3856
3857         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3858         Use g_ntohl for better portability.
3859
3860 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3861
3862         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3863         (gst_multiudpsink_remove):
3864         Fix a typo and do some small cleanups.
3865
3866 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3867
3868         Patch by: Olivier Crete <tester at tester dot ca>
3869
3870         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3871         Make the delivery-method mandatory on the caps and only accept inline
3872         for now.
3873         Reverse strcmp checks for delivery-method.
3874
3875         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3876         Make delivery method optional when parsing caps and note this in the
3877         caps.
3878         Reverse strcmp checks for delivery-method.
3879
3880         * gst/rtp/gstrtpvorbispay.c:
3881         Update a comment to note that the delivery-method is optional, 
3882         Fixes #537675.
3883
3884 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3885
3886         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3887         Set udpsrc for receiving data from multicast groups to PAUSED instead of
3888         leaving them in READY. Fixes #537832.
3889
3890 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3891
3892         * gst/avi/gstavimux.c:
3893           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3894           for a random constant in tagmuxing code.
3895
3896 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3897
3898         * gst/debug/gsttaginject.c:
3899         * gst/debug/gsttaginject.h:
3900           Now actually adding the new element.
3901
3902 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3903
3904         * docs/plugins/Makefile.am:
3905         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3906         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3907         * docs/plugins/gst-plugins-good-plugins.args:
3908         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3909         * docs/plugins/gst-plugins-good-plugins.interfaces:
3910         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3911         * docs/plugins/inspect/plugin-aasink.xml:
3912         * docs/plugins/inspect/plugin-alaw.xml:
3913         * docs/plugins/inspect/plugin-alpha.xml:
3914         * docs/plugins/inspect/plugin-alphacolor.xml:
3915         * docs/plugins/inspect/plugin-annodex.xml:
3916         * docs/plugins/inspect/plugin-apetag.xml:
3917         * docs/plugins/inspect/plugin-audiofx.xml:
3918         * docs/plugins/inspect/plugin-auparse.xml:
3919         * docs/plugins/inspect/plugin-autodetect.xml:
3920         * docs/plugins/inspect/plugin-avi.xml:
3921         * docs/plugins/inspect/plugin-cacasink.xml:
3922         * docs/plugins/inspect/plugin-cairo.xml:
3923         * docs/plugins/inspect/plugin-cdio.xml:
3924         * docs/plugins/inspect/plugin-cutter.xml:
3925         * docs/plugins/inspect/plugin-debug.xml:
3926         * docs/plugins/inspect/plugin-dv.xml:
3927         * docs/plugins/inspect/plugin-efence.xml:
3928         * docs/plugins/inspect/plugin-effectv.xml:
3929         * docs/plugins/inspect/plugin-equalizer.xml:
3930         * docs/plugins/inspect/plugin-esdsink.xml:
3931         * docs/plugins/inspect/plugin-flac.xml:
3932         * docs/plugins/inspect/plugin-flxdec.xml:
3933         * docs/plugins/inspect/plugin-gamma.xml:
3934         * docs/plugins/inspect/plugin-gconfelements.xml:
3935         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3936         * docs/plugins/inspect/plugin-goom.xml:
3937         * docs/plugins/inspect/plugin-goom2k1.xml:
3938         * docs/plugins/inspect/plugin-halelements.xml:
3939         * docs/plugins/inspect/plugin-icydemux.xml:
3940         * docs/plugins/inspect/plugin-id3demux.xml:
3941         * docs/plugins/inspect/plugin-jpeg.xml:
3942         * docs/plugins/inspect/plugin-level.xml:
3943         * docs/plugins/inspect/plugin-matroska.xml:
3944         * docs/plugins/inspect/plugin-monoscope.xml:
3945         * docs/plugins/inspect/plugin-mulaw.xml:
3946         * docs/plugins/inspect/plugin-multifile.xml:
3947         * docs/plugins/inspect/plugin-multipart.xml:
3948         * docs/plugins/inspect/plugin-navigationtest.xml:
3949         * docs/plugins/inspect/plugin-ossaudio.xml:
3950         * docs/plugins/inspect/plugin-png.xml:
3951         * docs/plugins/inspect/plugin-quicktime.xml:
3952         * docs/plugins/inspect/plugin-rtp.xml:
3953         * docs/plugins/inspect/plugin-rtsp.xml:
3954         * docs/plugins/inspect/plugin-smpte.xml:
3955         * docs/plugins/inspect/plugin-soup.xml:
3956         * docs/plugins/inspect/plugin-spectrum.xml:
3957         * docs/plugins/inspect/plugin-speex.xml:
3958         * docs/plugins/inspect/plugin-taglib.xml:
3959         * docs/plugins/inspect/plugin-udp.xml:
3960         * docs/plugins/inspect/plugin-video4linux2.xml:
3961         * docs/plugins/inspect/plugin-videobalance.xml:
3962         * docs/plugins/inspect/plugin-videobox.xml:
3963         * docs/plugins/inspect/plugin-videocrop.xml:
3964         * docs/plugins/inspect/plugin-videoflip.xml:
3965         * docs/plugins/inspect/plugin-videomixer.xml:
3966         * docs/plugins/inspect/plugin-wavenc.xml:
3967         * docs/plugins/inspect/plugin-wavpack.xml:
3968         * docs/plugins/inspect/plugin-wavparse.xml:
3969         * docs/plugins/inspect/plugin-ximagesrc.xml:
3970         * gst/debug/Makefile.am:
3971         * gst/debug/breakmydata.c:
3972         * gst/debug/efence.c:
3973         * gst/debug/gstdebug.c:
3974         * gst/debug/gstnavseek.c:
3975         * gst/debug/gstpushfilesrc.c:
3976         * gst/debug/gstpushfilesrc.h:
3977         * gst/debug/negotiation.c:
3978         * gst/debug/progressreport.c:
3979         * gst/debug/progressreport.h:
3980         * gst/debug/rndbuffersize.c:
3981         * gst/debug/testplugin.c:
3982           Remove dummy plugin_init. Remove some undefined entries from doc-
3983           section file. Add taginject element and rebuild docs for it.
3984
3985 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3986
3987         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
3988         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
3989         Update the counter for the number of streams when pads are added or
3990         removed. This will make sure that a seek table is generated for
3991         files with just one audio stream.
3992
3993 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3994
3995         * gst/matroska/matroska-demux.c:
3996         (gst_matroska_demux_parse_metadata_id_simple_tag):
3997         * gst/matroska/matroska-ids.h:
3998         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
3999         Add some more tags, improve debugging a bit and make sure that
4000         GValue transformation has succeeded before using the result
4001         as a tag.
4002
4003 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
4004
4005         Patch by: Olivier Crete <tester at tester dot ca>
4006
4007         * gst/rtp/gstrtptheorapay.c:
4008         The Theora RTP payloader only supports the "inline" delievery method
4009         so let's declare this on the caps of the static pad template.
4010         Fixes bug #537675.
4011
4012 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4013
4014         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4015         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
4016         Remove bogus check.
4017
4018 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4019
4020         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4021         (gst_videomixer_blend_buffers):
4022         Use stream_time to synchronize the object properties.
4023         Use running_time of the master pad to timestamp outgoing buffers.
4024         Fix the initial segment event to extend an unknown amount of time.
4025         Fixes #537361.
4026
4027 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4028
4029         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
4030         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
4031         (gst_avi_demux_calculate_durations_from_index),
4032         (gst_avi_demux_stream_header_push),
4033         (gst_avi_demux_stream_header_pull):
4034         Try to ignore unparsable/unknown streams and give a warning instead of
4035         erroring out. Fixes #537377.
4036
4037 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4038
4039         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
4040         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
4041
4042         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4043         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4044         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4045         (gst_matroska_demux_read_track_encodings),
4046         (gst_matroska_demux_add_stream),
4047         (gst_matroska_demux_handle_src_query),
4048         (gst_matroska_demux_init_stream),
4049         (gst_matroska_demux_parse_index_cuetrack),
4050         (gst_matroska_demux_parse_index_pointentry),
4051         (gst_matroska_demux_parse_info),
4052         (gst_matroska_demux_parse_metadata_id_simple_tag),
4053         (gst_matroska_demux_parse_metadata),
4054         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4055         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4056         (gst_matroska_demux_parse_cluster),
4057         (gst_matroska_demux_parse_contents_seekentry),
4058         (gst_matroska_demux_loop_stream_parse_id),
4059         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4060         (gst_matroska_demux_audio_caps),
4061         (gst_matroska_demux_subtitle_caps):
4062         * gst/matroska/matroska-demux.h:
4063         * gst/matroska/matroska-ids.c:
4064         (gst_matroska_track_init_subtitle_context):
4065         * gst/matroska/matroska-ids.h:
4066         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4067         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
4068         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
4069         (gst_matroska_mux_video_pad_setcaps),
4070         (gst_matroska_mux_audio_pad_setcaps),
4071         (gst_matroska_mux_subtitle_pad_setcaps),
4072         (gst_matroska_mux_request_new_pad),
4073         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
4074         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
4075         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
4076         (gst_matroska_mux_set_property):
4077         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
4078         elements, do some checks for valid values in the demuxer, handle
4079         tracktimecodescale in the demuxer, set correct default values for all
4080         settings in the demuxer, review and add all missing matroska
4081         IDs and some more raw YUV formats, and some trivial cleanup.
4082
4083 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4084
4085         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
4086         (gst_pulsemixer_class_init):
4087         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4088         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
4089         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4090         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
4091         (gst_pulsesrc_prepare):
4092         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
4093         gst_element_class_set_details_simple() and fix coding style a bit
4094         more.
4095
4096 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4097
4098         * docs/plugins/Makefile.am:
4099         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4100         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4101         * docs/plugins/gst-plugins-good-plugins.args:
4102         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4103         * docs/plugins/gst-plugins-good-plugins.interfaces:
4104         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4105         * docs/plugins/inspect/plugin-aasink.xml:
4106         * docs/plugins/inspect/plugin-alaw.xml:
4107         * docs/plugins/inspect/plugin-alpha.xml:
4108         * docs/plugins/inspect/plugin-alphacolor.xml:
4109         * docs/plugins/inspect/plugin-annodex.xml:
4110         * docs/plugins/inspect/plugin-apetag.xml:
4111         * docs/plugins/inspect/plugin-audiofx.xml:
4112         * docs/plugins/inspect/plugin-auparse.xml:
4113         * docs/plugins/inspect/plugin-autodetect.xml:
4114         * docs/plugins/inspect/plugin-avi.xml:
4115         * docs/plugins/inspect/plugin-cacasink.xml:
4116         * docs/plugins/inspect/plugin-cairo.xml:
4117         * docs/plugins/inspect/plugin-cdio.xml:
4118         * docs/plugins/inspect/plugin-cutter.xml:
4119         * docs/plugins/inspect/plugin-debug.xml:
4120         * docs/plugins/inspect/plugin-dv.xml:
4121         * docs/plugins/inspect/plugin-efence.xml:
4122         * docs/plugins/inspect/plugin-effectv.xml:
4123         * docs/plugins/inspect/plugin-equalizer.xml:
4124         * docs/plugins/inspect/plugin-esdsink.xml:
4125         * docs/plugins/inspect/plugin-flac.xml:
4126         * docs/plugins/inspect/plugin-flxdec.xml:
4127         * docs/plugins/inspect/plugin-gamma.xml:
4128         * docs/plugins/inspect/plugin-gconfelements.xml:
4129         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4130         * docs/plugins/inspect/plugin-goom.xml:
4131         * docs/plugins/inspect/plugin-goom2k1.xml:
4132         * docs/plugins/inspect/plugin-halelements.xml:
4133         * docs/plugins/inspect/plugin-icydemux.xml:
4134         * docs/plugins/inspect/plugin-id3demux.xml:
4135         * docs/plugins/inspect/plugin-jpeg.xml:
4136         * docs/plugins/inspect/plugin-level.xml:
4137         * docs/plugins/inspect/plugin-matroska.xml:
4138         * docs/plugins/inspect/plugin-monoscope.xml:
4139         * docs/plugins/inspect/plugin-mulaw.xml:
4140         * docs/plugins/inspect/plugin-multifile.xml:
4141         * docs/plugins/inspect/plugin-multipart.xml:
4142         * docs/plugins/inspect/plugin-navigationtest.xml:
4143         * docs/plugins/inspect/plugin-ossaudio.xml:
4144         * docs/plugins/inspect/plugin-png.xml:
4145         * docs/plugins/inspect/plugin-pulseaudio.xml:
4146         * docs/plugins/inspect/plugin-quicktime.xml:
4147         * docs/plugins/inspect/plugin-rtp.xml:
4148         * docs/plugins/inspect/plugin-rtsp.xml:
4149         * docs/plugins/inspect/plugin-smpte.xml:
4150         * docs/plugins/inspect/plugin-soup.xml:
4151         * docs/plugins/inspect/plugin-spectrum.xml:
4152         * docs/plugins/inspect/plugin-speex.xml:
4153         * docs/plugins/inspect/plugin-taglib.xml:
4154         * docs/plugins/inspect/plugin-udp.xml:
4155         * docs/plugins/inspect/plugin-video4linux2.xml:
4156         * docs/plugins/inspect/plugin-videobalance.xml:
4157         * docs/plugins/inspect/plugin-videobox.xml:
4158         * docs/plugins/inspect/plugin-videocrop.xml:
4159         * docs/plugins/inspect/plugin-videoflip.xml:
4160         * docs/plugins/inspect/plugin-videomixer.xml:
4161         * docs/plugins/inspect/plugin-wavenc.xml:
4162         * docs/plugins/inspect/plugin-wavpack.xml:
4163         * docs/plugins/inspect/plugin-wavparse.xml:
4164         * docs/plugins/inspect/plugin-ximagesrc.xml:
4165         * ext/pulse/plugin.c:
4166         * ext/pulse/pulsemixer.c:
4167         * ext/pulse/pulsesink.c:
4168         * ext/pulse/pulsesrc.c:
4169         Add documentation to the pulseaudio plugin and run make update
4170         in docs/plugins.
4171
4172 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4173
4174         Patch by: Brian Cameron <brian.cameron at sun dot com>
4175
4176         * sys/sunaudio/gstsunaudiomixerctrl.c:
4177         (gst_sunaudiomixer_ctrl_get_volume),
4178         (gst_sunaudiomixer_ctrl_set_volume):
4179         Improvements for the SunAudio mixer by handling mute as no gain
4180         for tracks that have a gain property but no mute property.
4181         Fixes bug #536067.
4182
4183 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4184
4185         * configure.ac:
4186         * ext/pulse/Makefile.am:
4187         * ext/pulse/plugin.c: (plugin_init):
4188         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4189         (gst_pulsemixer_implements_interface_init),
4190         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4191         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4192         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4193         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4194         * ext/pulse/pulsemixer.h:
4195         * ext/pulse/pulsemixerctrl.c:
4196         (gst_pulsemixer_ctrl_context_state_cb),
4197         (gst_pulsemixer_ctrl_sink_info_cb),
4198         (gst_pulsemixer_ctrl_source_info_cb),
4199         (gst_pulsemixer_ctrl_subscribe_cb),
4200         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4201         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4202         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4203         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4204         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4205         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4206         * ext/pulse/pulsemixerctrl.h:
4207         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4208         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4209         * ext/pulse/pulsemixertrack.h:
4210         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4211         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4212         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4213         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4214         (gst_pulseprobe_new), (gst_pulseprobe_free),
4215         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4216         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4217         (gst_pulseprobe_set_server):
4218         * ext/pulse/pulseprobe.h:
4219         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4220         (gst_pulsesink_class_init), (gst_pulsesink_init),
4221         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4222         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4223         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4224         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4225         (gst_pulsesink_stream_request_cb),
4226         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4227         (gst_pulsesink_close), (gst_pulsesink_prepare),
4228         (gst_pulsesink_unprepare), (gst_pulsesink_write),
4229         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4230         (gst_pulsesink_reset), (gst_pulsesink_change_title),
4231         (gst_pulsesink_event), (gst_pulsesink_get_type):
4232         * ext/pulse/pulsesink.h:
4233         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4234         (gst_pulsesrc_implements_interface_init),
4235         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4236         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4237         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4238         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4239         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4240         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4241         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4242         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4243         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4244         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4245         (gst_pulsesrc_get_type):
4246         * ext/pulse/pulsesrc.h:
4247         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4248         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4249         * ext/pulse/pulseutil.h:
4250         Add pulseaudio GStreamer element from gst-pulse. Development will
4251         continue here instead of pulseaudio SVN. Fixes bug #400679.
4252         Only changes over gst-pulse SVN are added copyright to the top of
4253         files and coding style changes.
4254
4255 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
4256
4257         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
4258
4259         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4260           (gst_cdio_add_cdtext_album_tags):
4261         * ext/cdio/gstcdio.h:
4262         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4263           Also extract album title and album genre from CD-TEXT if
4264           available (#537021).
4265
4266 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4267
4268         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4269
4270         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4271         Improve negotiation a bit more by picking the smallest possible
4272         resolution that is larger than the resolution specified in the
4273         first caps entry of the peer caps. Fixes bug #536994.
4274
4275 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4276
4277         Patch by: Bastien Nocera <hadess at hadess dot net>
4278
4279         * sys/v4l2/gstv4l2vidorient.c:
4280         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4281         Fix compilation with newer GIT kernels that deprecated
4282         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4283
4284 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4285
4286         * configure.ac:
4287         * ext/cdio/gstcdio.c:
4288         * ext/cdio/gstcdio.h:
4289         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4290           Require libcdio >= 0.76.
4291
4292 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
4293
4294         * gst/avi/gstavidemux.c:
4295         Catch UNEXPECTED when downstream has reached end of
4296         segment in reverse mode.
4297
4298 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4299
4300         * gst/avi/gstavidemux.c:
4301         Fix typo in comment
4302
4303 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4304
4305         * gst/avi/gstavidemux.c:
4306         Because we don't know the frame order we need to push till
4307         the next keyframe
4308
4309 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4310
4311         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4312
4313         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4314         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4315         Provide a custom negotiation function to make sure to pick the highest
4316         possible framerate and resolution. Fixes bug #536646.
4317
4318 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4319
4320         * gst/avi/gstavidemux.c:
4321         Set EOS when going out of the segment in reverse playback
4322
4323 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4324
4325         * ext/taglib/Makefile.am::
4326           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4327           taglib headers (with gcc 4.3.1).
4328
4329 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
4330
4331         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4332         Use the new gst_rtsp_connection_get_ip() to access the IP address
4333         of a GstRTSPConnection since it is a private member.
4334
4335 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4336
4337         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4338         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4339           Use new utility functions in libgsttag to process coverart (#512333).
4340
4341 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4342
4343         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4344         We actually support left/side, right/side and mid/side files. The
4345         conversion to normal, interleaved stereo is done by libflac.
4346
4347 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4348
4349         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4350         (gst_ebml_write_set_cache):
4351         Unref the write cache in finalize if it was set and add add "FIXME"
4352         to a comment that needs it.
4353
4354 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4355
4356         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4357
4358         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4359         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4360         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4361         (gst_avi_demux_process_next_entry):
4362         * gst/avi/gstavidemux.h:
4363         Implement reverse playback. Fixes #535300.
4364         Small cleanups.
4365
4366 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
4367
4368         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4369         (gst_videomixer_query_latency):
4370         When using gst_element_iterate_pads() one has to unref every pad
4371         after usage.
4372
4373 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
4374
4375         Patch by: Bastien Nocera <hadess at hadess dot net>
4376         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4377         (qtdemux_parse_udta):
4378         * gst/qtdemux/qtdemux_fourcc.h:
4379         Improve meta-data handling, add 'comment', 'description' and
4380         'copyright' tag handling.
4381         Fixes #535935
4382
4383 2008-05-31  Julien Moutte  <julien@fluendo.com>
4384
4385         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4386         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4387         (gst_qtdemux_seek_to_previous_keyframe),
4388         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4389         we don't clip the segment's stop using the main segment duration as
4390         that could crop quite some video frames. Make reverse playback support
4391         more robust and support edit lists. Support seeking to the last frame,
4392         and fix reverse looping playback. Add some debugging.
4393         * win32/common/config.h: Updated.
4394
4395 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
4396
4397         * gst/equalizer/gstiirequalizer.c:
4398         (gst_iir_equalizer_transform_ip):
4399         Don't clip float/double samples, correctly unset passthrough mode
4400         and use better rounding for integer samples.
4401
4402 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
4403
4404         * gst/equalizer/gstiirequalizer.c:
4405         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4406         (setup_filter), (set_passthrough), (update_coefficients),
4407         (gst_iir_equalizer_compute_frequencies),
4408         (gst_iir_equalizer_transform_ip):
4409         * gst/equalizer/gstiirequalizer.h:
4410         Update the filter coefficients only when needed in the transform_ip
4411         function and correctly set the element into passthrough mode if the
4412         gain of all bands is 0.
4413
4414 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4415
4416         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4417
4418         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4419         (gst_alpha_set_property), (gst_alpha_get_property),
4420         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4421         Try to skip pixels or areas that are too dark or too bright for us to do
4422         meaningfull color detection.
4423         Added properties to control the sensitivity to light and darkness.
4424         Added some small cleanups. Fixes #512345.
4425
4426 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
4427
4428         * docs/plugins/.cvsignore:
4429         * tests/check/elements/.cvsignore:
4430         Ignore some more generated things
4431
4432         * tests/check/Makefile.am:
4433         Ignore OSS elements in the state changes test too.
4434
4435 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4436
4437         * docs/plugins/Makefile.am:
4438         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4439         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4440         Add SMPTE effect elements to docs.
4441
4442 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4443
4444         * docs/plugins/Makefile.am:
4445         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4446         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4447         * ext/raw1394/gstdv1394src.c:
4448           Document whats first shown on the fdo plugin docs page :)
4449
4450 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4451
4452         * docs/plugins/Makefile.am:
4453         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4454         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4455         * docs/plugins/gst-plugins-good-plugins.args:
4456         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4457         * docs/plugins/inspect/plugin-audiofx.xml:
4458         * gst/audiofx/Makefile.am:
4459         * gst/audiofx/audiofx.c:
4460         * gst/audiofx/audiokaraoke.c:
4461         * gst/audiofx/audiokaraoke.h:
4462         * gst/audiofx/audiovoice.c:
4463         * gst/audiofx/audiovoice.h:
4464           Rename audiovoice to audiokaraoke and add it to the docs.
4465
4466 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4467
4468         * REQUIREMENTS:
4469         * docs/plugins/Makefile.am:
4470         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4471         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4472         * docs/plugins/gst-plugins-good-plugins.args:
4473         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4474         * docs/plugins/gst-plugins-good-plugins.interfaces:
4475         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4476         * docs/plugins/inspect/plugin-aasink.xml:
4477         * docs/plugins/inspect/plugin-alaw.xml:
4478         * docs/plugins/inspect/plugin-alpha.xml:
4479         * docs/plugins/inspect/plugin-alphacolor.xml:
4480         * docs/plugins/inspect/plugin-annodex.xml:
4481         * docs/plugins/inspect/plugin-apetag.xml:
4482         * docs/plugins/inspect/plugin-audiofx.xml:
4483         * docs/plugins/inspect/plugin-auparse.xml:
4484         * docs/plugins/inspect/plugin-autodetect.xml:
4485         * docs/plugins/inspect/plugin-avi.xml:
4486         * docs/plugins/inspect/plugin-cacasink.xml:
4487         * docs/plugins/inspect/plugin-cairo.xml:
4488         * docs/plugins/inspect/plugin-cdio.xml:
4489         * docs/plugins/inspect/plugin-cutter.xml:
4490         * docs/plugins/inspect/plugin-debug.xml:
4491         * docs/plugins/inspect/plugin-dv.xml:
4492         * docs/plugins/inspect/plugin-efence.xml:
4493         * docs/plugins/inspect/plugin-effectv.xml:
4494         * docs/plugins/inspect/plugin-equalizer.xml:
4495         * docs/plugins/inspect/plugin-esdsink.xml:
4496         * docs/plugins/inspect/plugin-flac.xml:
4497         * docs/plugins/inspect/plugin-flxdec.xml:
4498         * docs/plugins/inspect/plugin-gamma.xml:
4499         * docs/plugins/inspect/plugin-gconfelements.xml:
4500         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4501         * docs/plugins/inspect/plugin-goom.xml:
4502         * docs/plugins/inspect/plugin-goom2k1.xml:
4503         * docs/plugins/inspect/plugin-halelements.xml:
4504         * docs/plugins/inspect/plugin-icydemux.xml:
4505         * docs/plugins/inspect/plugin-id3demux.xml:
4506         * docs/plugins/inspect/plugin-jpeg.xml:
4507         * docs/plugins/inspect/plugin-level.xml:
4508         * docs/plugins/inspect/plugin-matroska.xml:
4509         * docs/plugins/inspect/plugin-monoscope.xml:
4510         * docs/plugins/inspect/plugin-mulaw.xml:
4511         * docs/plugins/inspect/plugin-multifile.xml:
4512         * docs/plugins/inspect/plugin-multipart.xml:
4513         * docs/plugins/inspect/plugin-navigationtest.xml:
4514         * docs/plugins/inspect/plugin-ossaudio.xml:
4515         * docs/plugins/inspect/plugin-png.xml:
4516         * docs/plugins/inspect/plugin-quicktime.xml:
4517         * docs/plugins/inspect/plugin-rtp.xml:
4518         * docs/plugins/inspect/plugin-rtsp.xml:
4519         * docs/plugins/inspect/plugin-smpte.xml:
4520         * docs/plugins/inspect/plugin-soup.xml:
4521         * docs/plugins/inspect/plugin-spectrum.xml:
4522         * docs/plugins/inspect/plugin-speex.xml:
4523         * docs/plugins/inspect/plugin-taglib.xml:
4524         * docs/plugins/inspect/plugin-udp.xml:
4525         * docs/plugins/inspect/plugin-video4linux2.xml:
4526         * docs/plugins/inspect/plugin-videobalance.xml:
4527         * docs/plugins/inspect/plugin-videobox.xml:
4528         * docs/plugins/inspect/plugin-videocrop.xml:
4529         * docs/plugins/inspect/plugin-videoflip.xml:
4530         * docs/plugins/inspect/plugin-videomixer.xml:
4531         * docs/plugins/inspect/plugin-wavenc.xml:
4532         * docs/plugins/inspect/plugin-wavpack.xml:
4533         * docs/plugins/inspect/plugin-wavparse.xml:
4534         * docs/plugins/inspect/plugin-ximagesrc.xml:
4535         * ext/aalib/gstaasink.c:
4536         * ext/libcaca/gstcacasink.c:
4537           Document aasink and cacasink.
4538
4539 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
4540
4541         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4542         (gst_videomixer_init), (gst_videomixer_query_duration),
4543         (gst_videomixer_query_latency), (gst_videomixer_query),
4544         (gst_videomixer_blend_buffers):
4545         * gst/videomixer/videomixer.h:
4546         Implement position (in time), duration and latency queries.
4547
4548 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
4549
4550         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4551         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4552         (gst_videomixer_fill_queues), (forward_event_func),
4553         (forward_event), (gst_videomixer_src_event),
4554         (gst_videomixer_sink_event):
4555         * gst/videomixer/videomixer.h:
4556         Implement proper seek/newsegment handling.
4557         Based on adder's implementation.
4558         Fixes #535121
4559
4560 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4561
4562         Patch by: Jan Gerber <j at oil21 dot org>
4563
4564         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4565         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4566
4567 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4568
4569         * gst/audiofx/Makefile.am:
4570         * gst/audiofx/audiofx.c: (plugin_init):
4571         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4572         (gst_audio_voice_class_init), (gst_audio_voice_init),
4573         (update_filter), (gst_audio_voice_set_property),
4574         (gst_audio_voice_get_property), (gst_audio_voice_setup),
4575         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4576         (gst_audio_voice_transform_ip):
4577         * gst/audiofx/audiovoice.h:
4578         Add simple voice removal element. Yay karaoke.
4579
4580 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4581
4582         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4583
4584         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4585         Fix potential caps leak.
4586         If we can't get the framerate with an ioctl, try to get it with the
4587         current norm. Fixes #520092.
4588
4589 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4590
4591         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4592
4593         * sys/v4l2/v4l2src_calls.c:
4594         (gst_v4l2src_probe_caps_for_format_and_size):
4595         If we fail to get the frame intervals, simply don't touch the framerates
4596         on the template caps instead of discarding the format. See #520092.
4597
4598 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4599
4600         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4601
4602         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4603         (gst_v4l2_get_caps_info):
4604         Add NV12, NV21 and bayer support. See #520092.
4605
4606 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4607
4608         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4609         (gst_qtdemux_activate_segment):
4610         Unbreak segment activation again. Fixes #531672.
4611
4612 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
4613
4614         * ext/flac/Makefile.am:
4615         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4616         Set the channel layout when decoding FLAC files with more than 2
4617         channels as defined by the FLAC spec. Fixes bug #534570.
4618
4619         Also don't try to decode left/side, right/side and mid/side files
4620         as we don't support this at all.
4621
4622 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
4623
4624         * configure.ac:
4625           We need -base CVS (rtsp).
4626
4627 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
4628
4629         * gst/udp/Makefile.am:
4630           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4631           when including netdb.h when building against glibc >= 2.8.
4632
4633 2008-05-22  Julien Moutte  <julien@fluendo.com>
4634
4635         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4636         debug statement arguments.
4637         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4638         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4639         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4640         on more platforms.
4641
4642 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4643
4644         * tests/check/elements/avimux.c: (setup_src_pad),
4645         (teardown_src_pad):
4646         * tests/check/elements/icydemux.c: (icydemux_found_pad),
4647         (GST_START_TEST):
4648         * tests/check/elements/matroskamux.c: (setup_src_pad),
4649         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4650         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4651         (GST_START_TEST):
4652         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4653         (setup_wavpackparse), (cleanup_wavpackparse):
4654         Don't use gst_element_get_pad(), it's a bad, bad method.
4655
4656 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4657
4658         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4659         (do_toggle_element):
4660         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4661         (do_toggle_element):
4662         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4663         (do_toggle_element):
4664         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4665         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4666         (do_toggle_element):
4667         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4668         (do_toggle_element):
4669         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4670         (gst_auto_audio_sink_detect):
4671         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4672         (gst_auto_video_sink_detect):
4673         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4674         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4675         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4676         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4677         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4678         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4679         * tests/icles/videocrop-test.c: (test_with_caps),
4680         (video_crop_get_test_caps):
4681         Don't use gst_element_get_pad(), it's a bad method.
4682
4683 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4684
4685         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4686         (gst_multiudpsink_add_internal):
4687         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4688         (gst_udp_join_group):
4689         * gst/udp/gstudpnetutils.h:
4690         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4691         Joining a multicast group and setting the loop/ttl properties are
4692         totally unrelated tasks are must be separated.
4693
4694 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
4695
4696         * gst/avi/gstavimux.c:
4697           Also support alaw/mulaw.
4698
4699 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4700
4701         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4702         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4703         * gst/udp/gstmultiudpsink.h:
4704         Add a fixme for the auto-multicast property.
4705         Fix some confusing debug messages.
4706         Disable setting a qos value by default.
4707
4708 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4709
4710         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4711
4712         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4713         Ignore EPERM errors from sendto. Fixes #533619.
4714
4715 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4716
4717         Patch by: Henrik Eriksson <henriken at axis dot com>
4718
4719         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4720         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4721         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4722         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4723         * gst/udp/gstmultiudpsink.h:
4724         Add qos-dscp property to manage the Quality of service. Fixes #469917.
4725
4726 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4727
4728         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4729         Improve debugging of the ident.
4730
4731 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4732
4733         Patch by: Bruno Santos <brunof at ua dot pt>
4734
4735         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4736         (gst_udp_join_group), (gst_udp_leave_group),
4737         (gst_udp_is_multicast):
4738         * gst/udp/gstudpnetutils.h:
4739         Provide a bunch of helper methods to deal with IPv4 and IPv6
4740         transparently.
4741
4742         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4743         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4744         (gst_multiudpsink_get_property), (join_multicast),
4745         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4746         (gst_multiudpsink_remove):
4747         * gst/udp/gstmultiudpsink.h:
4748         Add multicast TTL and loopback properties.
4749         Use the helper methods to implement ip4 and ip6.
4750
4751         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4752         * gst/udp/gstudpsrc.h:
4753         Use the helper methods to implement ip4 and ip6.
4754         Fixes #515962.
4755
4756 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4757
4758         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4759
4760         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4761         (gst_multipart_demux_get_gstname),
4762         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4763         * gst/multipart/multipartdemux.h:
4764         Don't blindly copy the mime-type as the caps name because they not
4765         always map directly. Instead use a hashtable with common mappings.
4766         Fixes #533287.
4767
4768 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4769
4770         * ext/esd/esdsink.c: (gst_esdsink_write):
4771         When we post an error, we must return -1 to let the parent know that we
4772         cannot write the segment else it will loop and continue to call us again
4773         forever. Patch by Michael Meeks.
4774
4775 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
4776
4777         * gst/videomixer/videomixer.c:
4778           Add missing incudes.
4779
4780 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
4781
4782         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4783         (gst_rtp_h264_pay_handle_buffer):
4784         * gst/rtp/gstrtph264pay.h:
4785         Correct a typo (sinle -> single).
4786
4787 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4788
4789         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4790         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4791         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4792         (gst_rtp_h264_depay_process):
4793         * gst/rtp/gstrtph264depay.h:
4794         Add experimental support for outputting quicktime-like AVC output in
4795         addition to the existing bytestream output.
4796
4797         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4798         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4799         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4800         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4801         (gst_rtp_h264_pay_get_property):
4802         * gst/rtp/gstrtph264pay.h:
4803         Make the parsing mode configurable, for some inputs we don't need to
4804         scan every byte for start codes.
4805         Only set the marker bit on ACCESS units.
4806
4807 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
4808
4809         * gst/equalizer/gstiirequalizer.c:
4810         Use a bigger type in integer mode for the intermediate results to
4811         prevent overflows. This fixes the crippled sound when using the
4812         equalizer in integer mode. Fixes bug #510865.
4813
4814 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
4815
4816         * gst/videomixer/videomixer.c:
4817         * gst/videomixer/videomixer.h:
4818         Instead of a random number for the request pad id's,
4819         use a counter.
4820
4821         Register the videomixerpad class from the element's class_init
4822         where it's safer, and allows the docs generator to scan it.
4823
4824 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4825
4826         * gst/smpte/Makefile.am:
4827         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4828         * gst/smpte/gstsmpte.h:
4829         * gst/smpte/gstsmptealpha.c:
4830         (gst_smpte_alpha_transition_type_get_type),
4831         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4832         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4833         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4834         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4835         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4836         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4837         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4838         * gst/smpte/gstsmptealpha.h:
4839         * gst/smpte/plugin.c: (plugin_init):
4840         Add new plugin that adds the SMPTE transition in the alpha channel of
4841         I420 and AYUV frames so that they can be blended with videomixer later
4842         on. Uses all niceties such as using base transform for efficient alloc
4843         and negotiation. It currently requires GstController to control the
4844         position in the transition effect.
4845
4846 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
4847
4848         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4849         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4850         * docs/plugins/gst-plugins-good-plugins.args:
4851         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4852         * docs/plugins/gst-plugins-good-plugins.interfaces:
4853         * docs/plugins/gst-plugins-good-plugins.types:
4854         * gst/videomixer/videomixer.c:
4855           Try using thaytans new mechanism to get extra classes into plugin
4856           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4857           missing still.
4858
4859 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
4860
4861         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4862         Set proper rate in avi stream header for PCM audio, and also do some
4863         more sanity checks on caps in this case.  Fixes #511489.
4864
4865 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4866
4867         * sys/v4l2/gstv4l2src.c:
4868         Don't include the gstv4l2xoverlay.h header as the XOverlay support
4869         isn't implemented at all yet and this requires X headers to be
4870         installed. Fixes bug #533264.
4871
4872 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4873
4874         reviewed by: <delete if not using a buddy>
4875
4876         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4877         (gst_ebml_write_set_cache):
4878         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4879         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4880         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4881         (gst_matroska_demux_read_track_encodings),
4882         (gst_matroska_demux_add_stream),
4883         (gst_matroska_demux_handle_src_query),
4884         (gst_matroska_demux_init_stream),
4885         (gst_matroska_demux_parse_index_cuetrack),
4886         (gst_matroska_demux_parse_index_pointentry),
4887         (gst_matroska_demux_parse_info),
4888         (gst_matroska_demux_parse_metadata_id_simple_tag),
4889         (gst_matroska_demux_parse_metadata),
4890         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4891         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4892         (gst_matroska_demux_parse_cluster),
4893         (gst_matroska_demux_parse_contents_seekentry),
4894         (gst_matroska_demux_loop_stream_parse_id),
4895         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4896         (gst_matroska_demux_audio_caps),
4897         (gst_matroska_demux_subtitle_caps):
4898         * gst/matroska/matroska-demux.h:
4899         * gst/matroska/matroska-ids.c:
4900         (gst_matroska_track_init_subtitle_context):
4901         * gst/matroska/matroska-ids.h:
4902         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4903         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4904         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4905         * sys/v4l2/gstv4l2src.c:
4906         * tests/check/pipelines/wavpack.c: (bus_handler):
4907         * win32/common/config.h:
4908
4909 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
4910
4911         * ext/wavpack/gstwavpackstreamreader.c:
4912         * tests/examples/spectrum/demo-audiotest.c:
4913         * tests/examples/spectrum/demo-osssrc.c:
4914         Fix some compiler warnings.
4915
4916 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4917
4918         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4919         Small comment added.
4920
4921         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4922         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4923         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4924         Debug string cleanups (remove trailing \n)
4925         Refactor and clean up the payloader a bit and make sure that we only
4926         put one NAL unit in an RTP packet even if the input buffer contains
4927         multiple NAL units.
4928         Add suport for AVC format input.
4929
4930 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
4931
4932         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4933         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4934         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4935         * gst/rtp/gstrtph264pay.h:
4936         Make it possible to specify profile-level-id and sprop-parameter-sets
4937         using properties in case they are not available in-stream.
4938
4939 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
4940
4941         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4942         * docs/plugins/gst-plugins-good-plugins.args:
4943         * docs/plugins/inspect/plugin-ladspa.xml:
4944           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4945
4946 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
4947
4948         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4949         Send an initial BYTE segment to inform downstream of later seeking,
4950         and to forego sync attempts.
4951
4952 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4953
4954         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4955         Fix wrong caps string.
4956
4957 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4958
4959         Based on patch by: Olivier Crete <tester at tester dot ca>
4960
4961         * gst/rtp/Makefile.am:
4962         * gst/rtp/gstrtp.c: (plugin_init):
4963         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4964         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4965         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4966         (gst_rtp_g729_depay_plugin_init):
4967         * gst/rtp/gstrtpg729depay.h:
4968         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4969         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4970         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4971         * gst/rtp/gstrtpg729pay.h:
4972         Added G729 pay and depayloaders. Fixes #532409.
4973
4974 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4975
4976         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4977         Fix the calculation of the duration of the concealment packets.
4978
4979 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4980
4981         Based on patch by: Olivier Crete <tester at tester dot ca>
4982
4983         * gst/rtp/Makefile.am:
4984         * gst/rtp/gstrtp.c: (plugin_init):
4985         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4986         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
4987         (parse_encode), (gst_rtp_dv_depay_setcaps),
4988         (calculate_difblock_location), (gst_rtp_dv_depay_process),
4989         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
4990         (gst_rtp_dv_depay_plugin_init):
4991         * gst/rtp/gstrtpdvdepay.h:
4992         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
4993         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
4994         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
4995         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
4996         (gst_dv_pay_negotiate), (include_dif),
4997         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
4998         * gst/rtp/gstrtpdvpay.h:
4999         Add DV pay and depayloaders. Fixes #532423.
5000
5001 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
5002
5003         * gst/matroska/matroska-demux.c:
5004         (gst_matroska_demux_push_dvd_clut_change_event):
5005         Convert subtitle palette info in VobSub private data from VobSub's
5006         (buggy) RGB to YUV.
5007
5008 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
5009
5010         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
5011         Do not leave fourcc stream header field empty upon reset.
5012         Fixes #519301.
5013
5014 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
5015
5016         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5017         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5018         * docs/plugins/inspect/plugin-goom.xml:
5019         * docs/plugins/inspect/plugin-goom2k1.xml:
5020         * gst/goom/gstgoom.c:
5021         * gst/goom2k1/gstgoom.c:
5022         Add goom2k1 into the docs.
5023
5024 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5025
5026         Based on patch by: Wouter Cloetens  <wouter at mind be>
5027
5028         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5029         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
5030         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
5031         (gst_rtsp_decode_quoted_string),
5032         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
5033         (gst_rtspsrc_setup_auth):
5034         Support Digest authentication. Fixes #532065.
5035
5036 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
5037
5038         * gst/level/gstlevel.c:
5039           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
5040           about whats needed for liboil acceleration. Simplify docs a bit.
5041
5042 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
5043
5044         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5045
5046         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
5047         Update the track duration if the old one was invalid.
5048         Fixes bug #532117.
5049
5050 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5051
5052         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
5053           Use GST_STR_NULL when trying to print sps and pps strings that could
5054           be NULL, as this might crash on some platforms.
5055
5056 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5057
5058         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5059
5060         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
5061           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
5062           set after creating the clipper.
5063
5064 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5065
5066         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5067
5068         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
5069           Added checking of surface lost case after an unsuccessful
5070           IDirectDrawSurface7_Lock() call.
5071           If surface is lost, return GST_FLOW_OK.
5072
5073 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5074
5075         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5076
5077         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
5078           WndProc, gst_directdraw_sink_window_thread):
5079           Improved Windows message loop and fixed window destruction issue.
5080           When the window which DirectDraw is rendering to is destroyed, the
5081           render/show_frame function will return GST_FLOW_ERROR.
5082           Partially fixes #520885.
5083
5084 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5085
5086         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5087
5088         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
5089           Fixed mid stream resolution change bug, the offscreen surface is now
5090           released when set_caps is called.
5091           Partially fixes #520885.
5092
5093 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5094
5095         * sys/directdraw/gstdirectdrawsink.c
5096           (gst_directdraw_sink_buffer_alloc):
5097           Make it so that gst_directdraw_sink_buffer_alloc uses the right
5098           width/height.
5099
5100           Especially when looking through the pool of buffers, make sure that
5101           the width/height of caps is used instead of the already negotiated
5102           dimensions.
5103           For example if a buffer with different caps is requested, i.e.
5104           higher resolution, the caller would get a buffer with the old
5105           dimensions and thus corrupt the heap.
5106
5107 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5108
5109         * sys/directdraw/gstdirectdrawsink.c
5110           (gst_directdraw_sink_buffer_alloc):
5111           Clear the flags on recycled buffers from buffer_alloc.
5112           Partially fixes #520885.
5113
5114 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5115
5116         * gst/rtp/gstrtpilbcpay.c:
5117           Added missing stdlib.h include for strtol(), and made include ordering and
5118           style consistent with the corresponding depayloader.
5119
5120 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
5121
5122         * configure.ac:
5123           Error out if we don't have the required core/base versions.
5124
5125 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
5126
5127         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5128
5129         * sys/osxvideo/cocoawindow.m:
5130         Fix compiler warnings on PPC64. Fixes bug #499318.
5131
5132 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5133
5134         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5135
5136         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
5137         Don't leak file descriptors on error. Fixes #531532.
5138
5139 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
5140
5141         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
5142         (gst_gconf_audio_src_change_state):
5143         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
5144         (gst_gconf_video_sink_change_state):
5145         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
5146         (gst_gconf_video_src_change_state):
5147         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5148         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
5149         When we can't create a fakesink/fakesrc complain instead of unreffing
5150         NULL pointers and crashing later. See bug #530535.
5151
5152 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5153
5154         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5155         Add some more debug info and guard against small payloads.
5156
5157         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
5158         Set duration on outgoing buffers because we can.
5159
5160 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5161
5162         Patch by: Olivier Crete <tester at tester dot ca>
5163
5164         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
5165         (gst_speex_enc_init), (gst_speex_enc_chain):
5166         Add negotiation for the speex channels and rate. Fixes #465146.
5167
5168 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5169
5170         Patch by: Olivier Crete <tester at tester dot ca>
5171
5172         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
5173         (gst_rtp_speex_pay_getcaps):
5174         Add negotiation for the speex channels and rate. See #465146.
5175
5176 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5177
5178         Patch by: Olivier Crete <tester at tester dot ca>
5179
5180         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5181         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5182         Add negotiation for the ILBC mode. See #465146.
5183
5184 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
5185
5186         * ext/soup/gstsouphttpsrc.c:
5187           Include stdlib to fix the build. Use g_free instead of free, libsoup
5188           uses glib.
5189
5190 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5191
5192         Patch by: j^ <j@bootlab.org>
5193
5194         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5195         Add more mpeg2 variants. Fixes #530886.
5196
5197 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
5198
5199         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5200
5201         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5202           Don't error out if we get an ICMP destination-unreachable
5203           message when trying to read packets on win32 (#529454).
5204
5205 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5206
5207         * configure.ac:
5208         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5209           Use new error code for encrypted streams (which requires core CVS).
5210
5211 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5212
5213         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5214           (gst_qtdemux_audiosrc_template):
5215           Fix swapped pad template names, spotted by Thiago Sousa Santos.
5216
5217 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5218
5219         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5220         (speex_dec_chain_parse_data):
5221         Produce concealment data when time progresses in a segment update.
5222
5223 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
5224
5225         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5226         (speex_dec_chain):
5227         Try to preserve input timestamps when we can.
5228         Do beginnings of error concealment.
5229
5230 2008-04-28  Michael Smith <msmith@songbirdnest.com>
5231
5232         * gst/debug/gstnavigationtest.c:
5233           MSVC doesn't provide rint(), define an adequate replacement locally as
5234           elsewhere.
5235
5236 2008-04-28  Julien Moutte  <julien@fluendo.com>
5237
5238         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5239         format to pacify Mac OSX's gcc.
5240
5241 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5242
5243         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5244           (DEFAULT_MAX), (src_template), (sink_template),
5245           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5246           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5247           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5248           Bring rndbuffersize element into a state that doesn't require us
5249           to move it to -bad immediately. For one, fix up default min/max
5250           values so that the element actuall works using the default values.
5251           Also, don't ignore flow return values and do some kind of minimal
5252           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5253           other gratuitious clean-ups.
5254
5255 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5256
5257         * docs/plugins/Makefile.am:
5258         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5259         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5260         * docs/plugins/gst-plugins-good-plugins.args:
5261         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5262         * docs/plugins/gst-plugins-good-plugins.interfaces:
5263         * docs/plugins/gst-plugins-good-plugins.prerequisites:
5264         * docs/plugins/inspect/plugin-1394.xml:
5265         * docs/plugins/inspect/plugin-aasink.xml:
5266         * docs/plugins/inspect/plugin-alaw.xml:
5267         * docs/plugins/inspect/plugin-alpha.xml:
5268         * docs/plugins/inspect/plugin-alphacolor.xml:
5269         * docs/plugins/inspect/plugin-annodex.xml:
5270         * docs/plugins/inspect/plugin-apetag.xml:
5271         * docs/plugins/inspect/plugin-audiofx.xml:
5272         * docs/plugins/inspect/plugin-auparse.xml:
5273         * docs/plugins/inspect/plugin-autodetect.xml:
5274         * docs/plugins/inspect/plugin-avi.xml:
5275         * docs/plugins/inspect/plugin-cacasink.xml:
5276         * docs/plugins/inspect/plugin-cairo.xml:
5277         * docs/plugins/inspect/plugin-cdio.xml:
5278         * docs/plugins/inspect/plugin-cutter.xml:
5279         * docs/plugins/inspect/plugin-debug.xml:
5280         * docs/plugins/inspect/plugin-dv.xml:
5281         * docs/plugins/inspect/plugin-efence.xml:
5282         * docs/plugins/inspect/plugin-effectv.xml:
5283         * docs/plugins/inspect/plugin-equalizer.xml:
5284         * docs/plugins/inspect/plugin-esdsink.xml:
5285         * docs/plugins/inspect/plugin-flac.xml:
5286         * docs/plugins/inspect/plugin-flxdec.xml:
5287         * docs/plugins/inspect/plugin-gamma.xml:
5288         * docs/plugins/inspect/plugin-gconfelements.xml:
5289         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5290         * docs/plugins/inspect/plugin-goom.xml:
5291         * docs/plugins/inspect/plugin-halelements.xml:
5292         * docs/plugins/inspect/plugin-icydemux.xml:
5293         * docs/plugins/inspect/plugin-id3demux.xml:
5294         * docs/plugins/inspect/plugin-jpeg.xml:
5295         * docs/plugins/inspect/plugin-level.xml:
5296         * docs/plugins/inspect/plugin-matroska.xml:
5297         * docs/plugins/inspect/plugin-monoscope.xml:
5298         * docs/plugins/inspect/plugin-mulaw.xml:
5299         * docs/plugins/inspect/plugin-multifile.xml:
5300         * docs/plugins/inspect/plugin-multipart.xml:
5301         * docs/plugins/inspect/plugin-navigationtest.xml:
5302         * docs/plugins/inspect/plugin-ossaudio.xml:
5303         * docs/plugins/inspect/plugin-png.xml:
5304         * docs/plugins/inspect/plugin-quicktime.xml:
5305         * docs/plugins/inspect/plugin-rtp.xml:
5306         * docs/plugins/inspect/plugin-rtsp.xml:
5307         * docs/plugins/inspect/plugin-shout2send.xml:
5308         * docs/plugins/inspect/plugin-smpte.xml:
5309         * docs/plugins/inspect/plugin-spectrum.xml:
5310         * docs/plugins/inspect/plugin-speex.xml:
5311         * docs/plugins/inspect/plugin-taglib.xml:
5312         * docs/plugins/inspect/plugin-udp.xml:
5313         * docs/plugins/inspect/plugin-video4linux2.xml:
5314         * docs/plugins/inspect/plugin-videobalance.xml:
5315         * docs/plugins/inspect/plugin-videobox.xml:
5316         * docs/plugins/inspect/plugin-videocrop.xml:
5317         * docs/plugins/inspect/plugin-videoflip.xml:
5318         * docs/plugins/inspect/plugin-videomixer.xml:
5319         * docs/plugins/inspect/plugin-wavenc.xml:
5320         * docs/plugins/inspect/plugin-wavpack.xml:
5321         * docs/plugins/inspect/plugin-wavparse.xml:
5322         * docs/plugins/inspect/plugin-ximagesrc.xml:
5323           Add docs for gdkpixbufsink; update docs to CVS version.
5324
5325 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5326
5327         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5328         Remove test sync-offset by default.
5329
5330 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5331
5332         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5333         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5334         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5335           Use GLib versions of htonl, htons, ntohl and ntohs in order
5336           to avoid problems on win32 (#529707).
5337
5338 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5339
5340         Patch by: Jesús Corrius <jesus at softcatala org>
5341
5342         * gst/goom/filters.c: (zoomVector):
5343         * gst/goom/goom_core.c: (init_buffers):
5344           Fix build with mingw32: use rand() instead of random() and
5345           replace bzero() with memset(). Fixes #529692.
5346
5347 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5348
5349         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5350         Fix typo in comments.
5351
5352         * tests/examples/rtp/client-H263p-PCMA.sdp:
5353         * tests/examples/rtp/client-H263p-PCMA.sh:
5354         * tests/examples/rtp/client-H264-PCMA.sdp:
5355         * tests/examples/rtp/client-H264-PCMA.sh:
5356         * tests/examples/rtp/client-H264.sdp:
5357         * tests/examples/rtp/client-H264.sh:
5358         * tests/examples/rtp/client-PCMA.sdp:
5359         * tests/examples/rtp/client-PCMA.sh:
5360         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5361         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5362         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5363         Add some more docs and fix examples.
5364
5365 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
5366
5367         * tests/check/elements/multifile.c:
5368         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5369         declared in the former, some have it declared in the latter.
5370
5371 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
5372
5373         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5374         * gst/debug/tests.c: (md5_get_value):
5375         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5376         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5377         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5378         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5379         Stop using deprecated GLib functions.
5380
5381 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
5382
5383         * configure.ac:
5384         Back to development -> 0.10.8.1
5385
5386 === release 0.10.8 ===
5387
5388 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
5389
5390         * configure.ac:
5391           releasing 0.10.8, "One For The Money"
5392
5393 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5394
5395         * configure.ac:
5396         0.10.7.4 pre-release
5397
5398 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5399
5400         * gst/goom/config_param.c: (goom_plugin_parameters_free):
5401         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5402         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5403         * gst/goom/flying_stars_fx.c: (fs_free):
5404         * gst/goom/goom_config_param.h:
5405         * gst/goom/goom_core.c: (goom_init), (goom_close):
5406         * gst/goom/goom_plugin_info.h:
5407         * gst/goom/gstgoom.c: (gst_goom_finalize):
5408         * gst/goom/lines.c: (goom_lines_free):
5409         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5410         * gst/goom/surf3d.c: (grid3d_free):
5411         * gst/goom/surf3d.h:
5412         * gst/goom/tentacle3d.c: (tentacle_free):
5413         Free a bunch of stuff, and initialise things to fix leaks
5414         and valgrind warnings in the testsuite.
5415
5416         Fixes: #529268
5417
5418 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
5419
5420         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5421         (gst_rtspsrc_configure_caps):
5422         Ref caps as the return value for the request_pt_map signal.
5423         Remove some caps weirdness when configuring a stream. See #528245.
5424
5425 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
5426
5427         * tests/icles/gdkpixbufsink-test.c:
5428           Add cast to placate gcc 4.1.2.
5429
5430 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5431
5432         * configure.ac:
5433         0.10.7.3 pre-release
5434
5435 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5436
5437         * tests/check/Makefile.am:
5438         Disable some more elements in the state test.
5439         Add a define so the soup test can find the test files
5440         it needs at runtime.
5441
5442         * tests/check/elements/souphttpsrc.c: (run_server):
5443
5444         Add a define so the soup test can find the test files
5445         it needs at runtime.
5446
5447 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5448
5449         * gst/goom/convolve_fx.c: (convolve_apply):
5450         Don't ever draw the GOOM logo.
5451         Fixes: #528615
5452
5453 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5454
5455         * ext/cdio/gstcdiocddasrc.c:
5456         * ext/dv/gstdvdemux.c: 
5457         gst_atomic_int_set ==> g_atomic_int_set
5458
5459 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
5460
5461         * configure.ac:
5462         * gst/goom/Makefile.am:
5463         * gst/goom/convolve_fx.c:
5464         * gst/goom/default_scripts.h:
5465         * gst/goom/goom.h:
5466         * gst/goom/goom_core.c: (choose_a_goom_line):
5467         * gst/goom/goom_plugin_info.h:
5468         * gst/goom/goomsl.c:
5469         * gst/goom/goomsl.h:
5470         * gst/goom/goomsl_hash.c:
5471         * gst/goom/goomsl_hash.h:
5472         * gst/goom/goomsl_heap.c:
5473         * gst/goom/goomsl_heap.h:
5474         * gst/goom/goomsl_private.h:
5475         * gst/goom/plugin_info.c:
5476           Strip out the config/script parsing stuff, we don't need it.
5477           Fixes #527999.
5478
5479 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
5480
5481         * gst/goom/plugin_info.c: (setOptimizedMethods):
5482           Disable altivec optimisations for 32-bit PPC as well to make
5483           things build properly on all PPC systems. Fixes #528143
5484
5485 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
5486
5487         * gst-plugins-good.spec.in:
5488           Update for souphttpsrc plugin which has moved to -good.
5489
5490 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
5491
5492         * gst/matroska/matroska-demux.c:
5493         (gst_matroska_demux_handle_seek_event):
5494         Fix open-ended seeks in matroskademux
5495         Patch by: Mark Nauwelaerts <manauw skynet be>
5496         Fixes: #526557
5497
5498 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
5499
5500         * tests/check/Makefile.am:
5501         Add soup test certificates to the dist.
5502
5503 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5504
5505         * ext/Makefile.am:
5506         Remove LADSPA reference I missed.
5507
5508 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
5509
5510         * ext/soup/gstsouphttpsrc.c: (plugin_init):
5511         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5512         over gnome-vfs and everything else. Fixes bug #527848.
5513
5514 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5515
5516         * configure.ac:
5517         * ext/Makefile.am:
5518         Remove LADSPA plugin. Fixes: #515978
5519
5520 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5521
5522         * configure.ac:
5523         * docs/plugins/Makefile.am:
5524         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5525         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5526         * docs/plugins/gst-plugins-good-plugins.args:
5527         * docs/plugins/inspect/plugin-soup.xml:
5528         * ext/Makefile.am:
5529         * tests/check/Makefile.am:
5530         Move soup plugin from -bad (Fixes: #523124)
5531
5532 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
5533
5534         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5535         Fix bounds checking of mode in Speex header, which may
5536         produce negative numbers in speex <= 1.1.12
5537
5538 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5539
5540         * gst/goom/Makefile.am:
5541         * gst/goom/gfontlib.c:
5542         * gst/goom/gfontlib.h:
5543         * gst/goom/gfontrle.c:
5544         * gst/goom/gfontrle.h:
5545         * gst/goom/goom.h:
5546         * gst/goom/goom_core.c: (goom_update):
5547         * gst/goom/goom_plugin_info.h:
5548         * gst/goom/gstgoom.c: (gst_goom_chain):
5549         * gst/goom/plugin_info.c:
5550           Remove a bunch of font/text related code that we don't need.
5551
5552 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5553
5554         * gst/goom/ppc_drawings.s:
5555         * gst/goom/ppc_zoom_ultimate.s:
5556           Change license of these files to LGPL, as permitted by the
5557           author, Guillaume Borios. See #515073.
5558
5559 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
5560
5561         * gst/goom/convolve_fx.c:
5562         * gst/goom/motif_goom1.h:
5563         * gst/goom/motif_goom2.h:
5564           As hinted in Bug #518213, revert one change and fix warnings properly.
5565           This fixes both #518213 and #520073 for me.     
5566
5567 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
5568
5569         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5570         * gst/matroska/matroska-demux.c:
5571         (gst_matroska_demux_handle_seek_event),
5572         (gst_matroska_demux_parse_contents_seekentry),
5573         (gst_matroska_demux_loop):
5574         Fix the Forte build by making function declaration signatures
5575         match the implementations.
5576
5577 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
5578
5579         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5580         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5581         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5582           More logging when probing (see #518474), some comments in _reset().
5583
5584 2008-04-07  Julien Moutte  <julien@fluendo.com>
5585
5586         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5587         because of a bad argument number.
5588
5589 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
5590
5591         * tests/icles/.cvsignore:
5592         * tests/icles/Makefile.am:
5593         * tests/icles/gdkpixbufsink-test.c:
5594           Interactive test app for gdkpixbufsink.
5595
5596 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
5597
5598         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5599
5600         * configure.ac:
5601         Actually build dlls when cross-compiling with mingw32.
5602         Fixes bug #526247.
5603
5604 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
5605
5606         * ext/hal/hal.c: (gst_hal_get_alsa_element):
5607           Don't munge device string to 'default:x' for capture devices.
5608           Fixes #525833.
5609
5610 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
5611
5612         * ext/wavpack/gstwavpackparse.c:
5613         (gst_wavpack_parse_index_entry_free):
5614         Always use GSlice as we actually depend on GLib 2.12 already.
5615
5616 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5617
5618         * configure.ac:
5619           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5620           Also bump the GLib requirement to the current de-facto requirement
5621           (ie. 2.12).
5622
5623 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5624
5625         * gst/rtp/gstrtph264pay.c: (encode_base64),
5626         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5627         * gst/rtp/gstrtph264pay.h:
5628         Parse codec_data for future AVC compatibility.
5629         Fail when we encounter AVC data for now.
5630
5631 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5632
5633         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5634           (gst_spectrum_init), (gst_spectrum_set_property),
5635           (gst_spectrum_get_property), (gst_spectrum_message_new):
5636           Rename property enums and default defines for the properties to match
5637           the property names and rephrase property descriptions to make them a
5638           bit clearer (hopefully). See #518188.
5639
5640 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5641
5642         * tests/check/Makefile.am:
5643         * tests/check/elements/.cvsignore:
5644         * tests/check/elements/gdkpixbufsink.c:
5645           Add unit test for gdkpixbufsink element.
5646
5647 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5648
5649         * ext/gdk_pixbuf/Makefile.am:
5650         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5651         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5652           (gst_gdk_pixbuf_sink_base_init),
5653           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5654           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5655           (gst_gdk_pixbuf_sink_set_caps),
5656           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5657           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5658           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5659           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5660           (gst_gdk_pixbuf_sink_get_property):
5661         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5662           Add gdkpixbufsink element for easy snapshotting (#525946).
5663
5664 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5665
5666         * tests/check/pipelines/wavpack.c: (wavpack_suite):
5667         Bump timeout from 3 to 60 seconds.
5668
5669 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5670
5671         * tests/check/pipelines/.cvignore:
5672         Remove useless file.
5673
5674         * tests/check/pipelines/.cvsignore:
5675         Add new test to .cvsignore.
5676
5677 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5678
5679         * tests/check/Makefile.am:
5680         * tests/check/pipelines/wavpack.c: (bus_handler),
5681         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5682         (wavpack_suite), (main):
5683         Add unit test that encodes and decodes some data, checks that it
5684         is still the same and that all timestamps/offsets are perfect.
5685
5686 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5687
5688         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5689         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5690         * ext/wavpack/gstwavpackparse.c:
5691         (gst_wavpack_parse_index_entry_new),
5692         (gst_wavpack_parse_index_entry_free),
5693         (gst_wavpack_parse_base_init),
5694         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5695         Use GSlice for allocating index entries and use
5696         gst_element_class_set_details_simple().
5697
5698 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5699
5700         Patch by: Brian Cameron <brian.cameron at sun dot com>
5701
5702         * sys/sunaudio/gstsunaudio.c:
5703         * sys/sunaudio/gstsunaudiomixer.c:
5704         * sys/sunaudio/gstsunaudiomixer.h:
5705         * sys/sunaudio/gstsunaudiomixerctrl.c:
5706         * sys/sunaudio/gstsunaudiomixerctrl.h:
5707         * sys/sunaudio/gstsunaudiomixertrack.c:
5708         * sys/sunaudio/gstsunaudiomixertrack.h:
5709         * sys/sunaudio/gstsunaudiosink.c:
5710         * sys/sunaudio/gstsunaudiosink.h:
5711         * sys/sunaudio/gstsunaudiosrc.c:
5712         * sys/sunaudio/gstsunaudiosrc.h:
5713           Fix up copyrights (#525860).
5714
5715 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5716
5717         * gst/goom/goomsl.c: (gsl_read_file):
5718           Check return value of fread() to avoid compiler warnings.
5719
5720 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5721
5722         Based on patch by: Mersad Jelacic <mersad at axis dot com>
5723
5724         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5725         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5726         * gst/law/alaw-decode.h:
5727         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5728         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5729         (gst_mulawdec_chain), (gst_mulawdec_change_state):
5730         * gst/law/mulaw-decode.h:
5731         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5732         Make negotiation a bit modern.
5733         Use pad_alloc. Fixes #525359.
5734
5735 2008-03-31  David Schleef  <ds@schleef.org>
5736
5737         * gst/goom/xmmx.c: Fix constraints on asm code so that it
5738           compiles consistently.  Fixes #522278.
5739
5740 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
5741
5742         Patch by: Brian Cameron <brian.cameron at sun dot com>
5743
5744         * sys/sunaudio/gstsunaudiomixerctrl.c:
5745           (gst_sunaudiomixer_ctrl_get_volume),
5746           (gst_sunaudiomixer_ctrl_set_volume):
5747         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5748           Fix up the mixer tracks to use a volume range of 0-255, which is what
5749           the sun audio API uses. This simplifies the code and avoids rounding
5750           errors. Fixes #524593.
5751
5752 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
5753
5754         * sys/v4l2/gstv4l2object.c:
5755         * sys/v4l2/gstv4l2object.h:
5756         Add device-fd property to make it possible to apps to call ioctl's.
5757
5758 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5759
5760         * gst/qtdemux/qtdemux.c: (next_entry_size):
5761         Unbreak streaming mode again.
5762
5763 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5764
5765         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5766           Remove superfluous DEBUG macro.
5767
5768 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5769
5770         Based on patch by: William M. Brack <wbrack at mmm com hk>
5771
5772         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5773           (gst_v4l2src_set_capture):
5774           Check whether the device supports setting the framerate before
5775           trying to set it and then posting a warning or error if it doesn't
5776           work (#516649, #520092). Also compare fractions more correctly.
5777
5778 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5779
5780         * gst/goom/Makefile.am:
5781           Remove ppc assembler optimisations from the build until they
5782           actually build (they also seem to have GPL headers).
5783
5784 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5785
5786         * m4/Makefile.am:
5787           Better not dist files that don't exist any longer (lrint*m4).
5788
5789 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
5790
5791         * configure.ac:
5792         * m4/lrint.m4:
5793         * m4/lrintf.m4:
5794         Remove lrint/lrintf checks. We don't use it anywhere.
5795
5796 2008-03-18  Andy Wingo  <wingo@pobox.com>
5797
5798         * sys/osxvideo/osxvideosink.m
5799         (gst_osx_video_sink_osxwindow_destroy)
5800         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5801         task, whoopdee.
5802         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5803         2 ms.
5804
5805 2008-03-18  Andy Wingo  <wingo@pobox.com>
5806
5807         * sys/osxvideo/osxvideosink.m
5808         (gst_osx_video_sink_osxwindow_destroy)
5809         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5810         task, whoopdee.
5811         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5812         2 ms.
5813         
5814 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
5815
5816         Patch by: William M. Brack <wbrack at mmm com hk>
5817
5818         * sys/v4l2/v4l2src_calls.c:
5819           (gst_v4l2src_probe_caps_for_format_and_size),
5820           (gst_v4l2src_probe_caps_for_format):
5821           Make sure the probed frame sizes are reversed in the resulting
5822           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5823           highest resolution first); also remove unused variable.
5824           (Partly fixes #520092)
5825
5826 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5827
5828         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5829
5830         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5831         (gst_rtspsrc_finalize):
5832         Call WSAStartup() and WSACleanup before using the Winsock API.
5833         See #520808.
5834
5835 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5836
5837         * gst/avi/gstavidemux.c:
5838           Erm, the buffer-size is just guint, no need for the special format
5839           specifier.
5840
5841 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
5842
5843         * gst/goom/plugin_info.c:
5844         * gst/goom/ppc_zoom_ultimate.h:
5845           Small fixes to build more on PPC: ifdef out code that uses unknown
5846           define; add newline at end of header file to avoid compiler warning.
5847           Assembler code still doesn't build though.
5848
5849 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5850
5851         * gst/avi/gstavidemux.c:
5852           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5853           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5854
5855 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5856
5857         * gst/avi/gstavidemux.c:
5858           Chunksize is uint32. Fix format specifier.
5859
5860 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
5861
5862         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5863         mistake. Return file to pure MIT text.
5864
5865 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5866
5867         * gst/audiofx/audiofx.c:
5868         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5869         of hardcoding values.
5870
5871 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5872
5873         Patch by: Mark Nauwelaerts <manauw skynet be>
5874
5875         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5876           (gst_oss_src_close):
5877         * sys/oss/gstosssrc.h:
5878           Cache probed caps, so _get_caps() during recording doesn't cause
5879           ioctl calls which may disrupt the recording (fixes #521875).
5880
5881 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5882
5883         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5884         (gst_qtdemux_activate_segment),
5885         (gst_qtdemux_prepare_current_sample),
5886         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5887         Make sure we always send a DISCONT after a seek by setting the sample
5888         index to an undefined value after a seek.
5889
5890 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5891
5892         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5893           (GST_IS_AVI_SUBTITLE_CLASS):
5894           Fix up IS_FOO macros, which makes gtk-doc much happier.
5895
5896 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
5897
5898         * tests/icles/Makefile.am:
5899           Move the -lgstfoo where it belongs.
5900
5901 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5902
5903         * gst/matroska/ebml-ids.h:
5904         Add ID for EBML CRC32 elements.
5905
5906         * gst/matroska/Makefile.am:
5907         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5908         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5909         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5910         (gst_ebml_read_header):
5911         Support reading 80bit floats, add finalize method to clean up
5912         in any case, support reading length/id elements with any length
5913         as long as it's smaller than our supported maximum, don't leak
5914         buffers if reading as much data as we wanted failed and some
5915         smaller cleanup.
5916
5917 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5918
5919         Patch by: Olivier Crete <tester at tester dot ca>
5920
5921         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5922         Check that a buffer is large enough before reading from it.
5923         Fixes bug #521102.
5924         
5925 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5926
5927         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5928         Fix compilation after removing the GstPollMode from the
5929         constructor.
5930
5931 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5932
5933         * configure.ac:
5934         * gst/audiofx/Makefile.am:
5935         * gst/audiofx/audiochebband.c:
5936         * gst/audiofx/audiocheblimit.c:
5937         * gst/audiofx/math_compat.h:
5938         Check for sinh(), cosh() and asinh() and define our own
5939         implementations if they're not available. Fixes bug #520880.
5940
5941 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5942
5943         Patch by: Olivier Crete <tester at tester dot ca>
5944
5945         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5946         Unref the buffers only once when handling not-negotiated errors.
5947         Fixes bug #520764.
5948
5949 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5950
5951         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5952
5953         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5954         (gst_udpsrc_stop):
5955         Properly balance WSA_Cleanup with WSA_Startup.
5956         Also make the poll controllable on windows. Fixes #520888.
5957
5958 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5959
5960         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5961         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5962         (gst_ebml_read_element_length), (gst_ebml_peek_id),
5963         (gst_ebml_read_skip), (gst_ebml_read_buffer),
5964         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5965         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5966         (gst_ebml_read_date), (gst_ebml_read_master),
5967         (gst_ebml_read_binary), (gst_ebml_read_header):
5968         * gst/matroska/ebml-read.h:
5969         * gst/matroska/matroska-demux.c:
5970         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5971         (gst_matroska_demux_read_track_encodings),
5972         (gst_matroska_demux_add_stream),
5973         (gst_matroska_demux_handle_src_query),
5974         (gst_matroska_demux_handle_seek_event),
5975         (gst_matroska_demux_init_stream),
5976         (gst_matroska_demux_parse_tracks),
5977         (gst_matroska_demux_parse_index_cuetrack),
5978         (gst_matroska_demux_parse_index_pointentry),
5979         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5980         (gst_matroska_demux_parse_metadata_id_simple_tag),
5981         (gst_matroska_demux_parse_metadata_id_tag),
5982         (gst_matroska_demux_parse_metadata),
5983         (gst_matroska_demux_sync_streams),
5984         (gst_matroska_demux_push_hdr_buf),
5985         (gst_matroska_demux_push_flac_codec_priv_data),
5986         (gst_matroska_demux_push_xiph_codec_priv_data),
5987         (gst_matroska_demux_add_wvpk_header),
5988         (gst_matroska_demux_check_subtitle_buffer),
5989         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5990         (gst_matroska_demux_parse_cluster),
5991         (gst_matroska_demux_parse_contents_seekentry),
5992         (gst_matroska_demux_parse_contents),
5993         (gst_matroska_demux_loop_stream_parse_id),
5994         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
5995         * gst/matroska/matroska-demux.h:
5996         * gst/matroska/matroska-ids.h:
5997         Handle return values from pull_range in a more granular way to properly
5998         shut down on seeks.
5999         Combine return values from push.
6000         Implement proper error handling.
6001         Prepare for handling seeking correctly.
6002
6003 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
6004
6005         * gst/matroska/ebml-read.c:
6006         Use GINT64 formatting constants from GLIB.
6007
6008         * gst/matroska/matroska-demux.c:
6009         Add some guards to avoid a possible division by 0 and crashing
6010         with NULL events on some systems.
6011         Use gst_gdouble_to_guint64 somewhere instead of an implicit
6012         conversion. 
6013
6014         * gst/matroska/matroska-mux.c:
6015         Check for invalid timestamps in a bunch of places to avoid
6016         writing bogus durations into the output file.
6017         Fix some double<->gint64 conversions that weren't using
6018         gst_guint64_to_gdouble
6019
6020 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
6021
6022         * configure.ac:
6023         Move the checks for bison, flex and as to the program section and the
6024         check for gcc inline asm to the compiler characteristics section.
6025
6026 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
6027
6028         * configure.ac:
6029         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
6030         plug-ins are included/excluded. (#498222)
6031
6032 2008-02-29  Michael Smith <msmith@fluendo.com>
6033
6034         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
6035           Don't call gst_object_sync_values() unless we have a valid timestamp.
6036
6037 2008-02-28  David Schleef  <ds@schleef.org>
6038
6039         * gst/matroska/matroska-demux.c:
6040         * gst/matroska/matroska-ids.h:
6041         * gst/matroska/matroska-mux.c:
6042           Fix Dirac mapping.  I had previously added a VfW-type
6043           mapping, but it looks like Dirac will get a native Matroska
6044           mapping, and this is the most likely method.
6045
6046 2008-02-28  David Schleef  <ds@schleef.org>
6047
6048         * gst/avi/gstavimux.c: Add Dirac encoding
6049
6050 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
6051
6052         Patch by: Peter Kjellerstedt <pkj at axis com>
6053
6054         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
6055         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
6056         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
6057         * gst/udp/gstudpsrc.h:
6058         Port to GstPoll. See #505417.
6059
6060 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
6061
6062         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
6063         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
6064         yet on the srcpad. We need rate and channels before we
6065         can do any processing. Fixes bug #519088.
6066
6067 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
6068
6069         * configure.ac:
6070         Detect and indicate if GCC inline assembly syntax is
6071         available.
6072
6073         * gst/goom/Makefile.am:
6074         * gst/goom/convolve_fx.c:
6075         * gst/goom/flying_stars_fx.c:
6076         * gst/goom/goom_config.h:
6077         * gst/goom/goom_core.c:
6078         * gst/goom/goomsl.c:
6079         * gst/goom/ifs.c:
6080         * gst/goom/mmx.c:
6081         * gst/goom/plugin_info.c:
6082         * gst/goom/xmmx.c:
6083         Fix various GCC-isms, and only build the inline assembly
6084         with compilers that support GCC inline assembly.
6085
6086         Fix a couple of other warnings shown with Forte.
6087
6088 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
6089
6090         * gst/goom/xmmx.c:
6091           Use 'emms' instead of 'femms' to not crash on cpus that do not
6092           implement this 3dnow specific instruction.
6093
6094 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6095
6096         * gst/goom/plugin_info.c: (setOptimizedMethods):
6097         Use extended MMX for draw_line() too if available, not only
6098         normal MMX.
6099
6100 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6101
6102         * ext/jpeg/gstjpeg.c: (plugin_init):
6103         Remove (commented out) smoke typefinder. This is in base now.
6104
6105 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
6106
6107         * gst/goom2k1/Makefile.am:
6108         * gst/goom2k1/gstgoom.c:
6109
6110         Rename the installed library, and don't register the same 
6111         GType name as the new goom.
6112
6113 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6114
6115         * configure.ac:
6116         * ext/taglib/Makefile.am:
6117           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
6118           when building C++ code (#516509).
6119
6120 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6121
6122         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
6123         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
6124           (setOptimizedMethods):
6125           Call oil_init(), otherwise oil_get_cpu_flags() won't return
6126           anything useful. Export goom debug category so we can get
6127           rid of the VERBOSE define and the printfs.
6128
6129 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6130
6131         * gst/goom/goomsl_heap.c: (align_it):
6132         * gst/goom/plugin_info.c: (setOptimizedMethods):
6133           Compile fixes for x86-64.
6134
6135 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6136
6137         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
6138         with warnings, but add other CFLAGS
6139
6140         * gst/goom/goomsl.c (gsl_instr_set_namespace),
6141         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
6142         (calculate_labels), (gsl_read_file):
6143         * gst/goom/goomsl_lex.l:
6144         * gst/goom/goomsl_yacc.y:
6145         * gst/goom/plugin_info.c: Remove a few live printf, and
6146         fprintf, replace exit() calls with g_assert_not_reached()
6147         if it not optimal for a library
6148
6149 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6150
6151         * gst/goom/Makefile.am: Remove the warnings being disabled,
6152         fix linkage on x86, spotted by Sebastian Dröge
6153         <slomo@circular-chaos.org>
6154
6155         * gst/goom/convolve_fx.c (convolve_init),
6156         (create_output_with_brightness), (convolve_apply):
6157         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
6158         * gst/goom/goomsl.c:
6159         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
6160         * gst/goom/plugin_info.c:
6161         * gst/goom/tentacle3d.c (tentacle_fx_create):
6162         Fix warnings, and disable the motifs in the convolve_fx
6163         plugin (they were causing warnings, and they were just
6164         "Goom" in funny letterring)
6165
6166 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6167
6168         * configure.ac: Add checks for Flex/Yacc/Bison and other
6169         furry animals, for the new goom 2k4 based plugin
6170
6171         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
6172         CPU optimisations (not working yet), move the old plugin to...
6173
6174         * gst/goom2k1/*: ... here, in case somebody is sick enough
6175
6176         Fixes #515073
6177
6178 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
6179
6180         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6181         Post the server response code in an error message instead of a generic
6182         'error' message. Fixes #517237.
6183
6184 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6185
6186         * tests/check/Makefile.am:
6187         Ignore gconfaudiosrc for the states unit test too. It will fallback
6188         to alsasrc if the gconf settings can't be read and not everybody has
6189         alsa.
6190
6191 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6192
6193         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6194         (gst_wavpack_parse_create_src_pad):
6195         * ext/wavpack/gstwavpackparse.h:
6196         Always report the duration if we know it in push mode and don't
6197         return 0 just to make totem believe we can't seek in push mode.
6198         Newer totem version use the SEEKING query which properly reports
6199         if we can seek or not.
6200
6201 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6202
6203         Patch by: Jens Granseuer <jensgr at gmx dot net>
6204
6205         * tests/examples/equalizer/demo.c: (main):
6206         C89 fix, moving variable declarations to the beginning of
6207         the block. Fixes bug #517933.
6208
6209 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
6210
6211         * configure.ac:
6212         Back to development...
6213
6214 === release 0.10.7 ===
6215
6216 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
6217
6218         * configure.ac:
6219           releasing 0.10.7, "Red Door Black"
6220
6221 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
6222
6223         * gst/alpha/Makefile.am:
6224         Link alpha plugin with libgstbase. Fixes bug #517386.
6225
6226 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6227
6228         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6229         Init values to -1 instead of the default 0 value.
6230         Fixes #516524.
6231
6232 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
6233
6234         * tests/examples/spectrum/spectrum-example.c:
6235         Add missing include to fix compilation when libxml usage is disabled.
6236         Fixes: #516371
6237
6238 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6239
6240         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
6241         fixes: #514889
6242
6243         * gst/rtp/gstrtph264pay.c:
6244         * gst/rtp/gstrtpmp4gdepay.c:
6245         * gst/rtp/gstrtpmp4gpay.c:
6246         * gst/rtp/gstrtpmp4gpay.h:
6247         * gst/rtp/gstrtptheorapay.c:
6248         * gst/rtp/gstrtpvorbispay.c:
6249
6250         Fix various leaks shown up in valgrind
6251         - free sprops and buffer in error cases in H264 payloader
6252         - fix leak in mp4g depayloader when construction the caps
6253         - don't leak config string in the mp4g payloader
6254         - don't leak buffers and headers in theora and vorbis payloaders
6255
6256         * tests/check/elements/rtp-payloading.c:
6257
6258         Fix the RTP data test
6259         - Actually send valid amr data to the payloader instead of 20
6260         zero-bytes
6261         - The mp4g payloader expects codec_data on the caps
6262
6263 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
6264
6265         * win32/MANIFEST:
6266         Add libgstpng.dsp to MANIFEST.
6267         * win32/vs6/libgstaudiofx.dsp:
6268         Add new source files to VS project file.
6269
6270 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6271
6272         * sys/ximage/gstximagesrc.c:
6273         Initialise variables when opening the X display rather
6274         than in _start(), as the display can be opened before that.
6275
6276         Fixes: #515985
6277
6278 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6279
6280         * sys/directdraw/gstdirectdrawsink.c:
6281         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6282         (gst_directdraw_sink_finalize):
6283         Properly chain up finalize functions. Fixes bug #515980.
6284
6285 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6286
6287         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6288         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6289         (gst_v4l2_buffer_pool_class_init):
6290         Chain up the finalize functions. Fixes bug #515984.
6291
6292 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6293
6294         * sys/ximage/ximageutil.c:
6295         Chain up in the finalize function for our custom
6296         buffer sub-class.
6297         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
6298         Fixes: #515706
6299
6300 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6301
6302         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6303         (gst_fenced_buffer_class_init):
6304         Properly chain up finalize method. Fixes bug #515979.
6305
6306 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6307
6308         * sys/ximage/gstximagesrc.c:
6309         Free allocated Damage memory before closing our connection to the
6310         X server. Partially fixes: #515706
6311
6312 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6313
6314         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6315         * tests/check/Makefile.am:
6316         * tests/check/gst-plugins-good.supp:
6317         Add a few libjpeg suppressions and initialize a variable to
6318         make smokeenc valgrind clean. Fixes bug #515701.
6319
6320 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
6321
6322         * gst/avi/gstavidemux.c:
6323         Revert patch which sends timestamps only on keyframes, as it
6324         breaks playback with current gst-ffmpeg.
6325
6326         Fixes: #515562
6327
6328 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6329
6330         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6331         * tests/check/elements/multifile.c: (GST_START_TEST):
6332         Close some memory leaks spotted by the unit test. Fixes bug #515697.
6333
6334 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6335
6336         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6337         Use and unset the GError when pipeline creation fails instead of
6338         simply leaking it. Fixes bug #515704.
6339
6340 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
6341
6342         * gst/audiofx/audioamplify.c:
6343         * gst/audiofx/audiochebband.c:
6344         * gst/audiofx/audiocheblimit.c:
6345         * gst/audiofx/audiodynamic.c:
6346         * gst/audiofx/audioinvert.c:
6347         * gst/audiofx/audiopanorama.c:
6348         * gst/audiofx/audiowsincband.c:
6349         * gst/audiofx/audiowsinclimit.c:
6350         Fix long description of audiofx elements. Fixes bug #515457.
6351
6352 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
6353
6354         * docs/plugins/Makefile.am:
6355         * gst/spectrum/gstspectrum.c:
6356         * tests/examples/spectrum/.cvsignore:
6357         * tests/examples/spectrum/Makefile.am:
6358         * tests/examples/spectrum/spectrum-example.c:
6359
6360         Add a simple example application for the spectrum element, include it
6361         in the docs, and fix some documentation ambiguities.
6362
6363         Fixes: #348085
6364
6365 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6366
6367         * gst/equalizer/Makefile.am:
6368         * gst/spectrum/Makefile.am:
6369         Fix includes order
6370
6371         * tests/check/Makefile.am:
6372         Exclude v4l2src from the states test - it takes too long to start.
6373
6374         * tests/check/elements/spectrum.c:
6375         Make the test run properly with CK_FORK=no
6376
6377 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6378
6379         * gst/audiofix/Makefile.am: add missing header files 
6380
6381 2008-02-08  Julien Moutte  <julien@fluendo.com>
6382
6383         * gst/matroska/matroska-demux.c:
6384         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6385         keyframe and delta units correctly when dealign with a BlockGroup.
6386         Fixes: #514397
6387
6388 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6389
6390         * tests/check/elements/.cvsignore:
6391         Spell the new tests correctly in .cvsignore
6392
6393 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6394
6395         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6396           Need to use gsize here for the size, fixes compiler warning.
6397
6398         * tests/examples/equalizer/.cvsignore:
6399         * tests/examples/equalizer/Makefile.am:
6400         * tests/examples/spectrum/.cvsignore:
6401         * tests/examples/spectrum/Makefile.am:
6402           Add missing files to fix the build.
6403
6404 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6405
6406         * configure.ac:
6407         * docs/plugins/Makefile.am:
6408         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6409         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6410         * docs/plugins/gst-plugins-good-plugins.args:
6411         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6412         * docs/plugins/inspect/plugin-multifile.xml:
6413         * tests/check/Makefile.am:
6414         * tests/check/elements/.cvsignore:
6415
6416         Move multifile plugin from -bad.
6417         Fixes: #490283
6418
6419 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6420
6421         * configure.ac:
6422         * docs/plugins/Makefile.am:
6423         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6424         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6425         * docs/plugins/gst-plugins-good-plugins.args:
6426         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6427         * docs/plugins/inspect/plugin-spectrum.xml:
6428         * gst/spectrum/Makefile.am:
6429         * tests/check/Makefile.am:
6430         * tests/check/elements/.cvsignore:
6431         * tests/examples/Makefile.am:
6432
6433         Move spectrum plugin from -bad.
6434         Move examples into tests/examples/spectrum.
6435
6436 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6437
6438         * configure.ac:
6439         * docs/plugins/Makefile.am:
6440         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6441         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6442         * docs/plugins/gst-plugins-good-plugins.args:
6443         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6444         * docs/plugins/gst-plugins-good-plugins.interfaces:
6445         * docs/plugins/inspect/plugin-equalizer.xml:
6446         * gst/equalizer/Makefile.am:
6447         * tests/check/Makefile.am:
6448         * tests/examples/Makefile.am:
6449         Move the equalizer plugin across from -bad
6450
6451         * tests/check/elements/.cvsignore:
6452         Add equalizer, audiosincwband and audiosincwlimit
6453
6454         * tests/check/elements/equalizer.c:
6455         Fix compiler warnings
6456
6457         Fixes: #415627
6458
6459 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6460
6461         * configure.ac:
6462         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6463         are treated like releases and build without it.
6464
6465 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6466
6467         * docs/plugins/Makefile.am:
6468         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6469         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6470         * docs/plugins/gst-plugins-good-plugins.args:
6471         * docs/plugins/inspect/plugin-audiofx.xml:
6472         * gst/audiofx/Makefile.am:
6473         * gst/audiofx/audiofx.c:
6474         * gst/audiofx/audiowsincband.c:
6475         * gst/audiofx/audiowsincband.h:
6476         * gst/audiofx/audiowsinclimit.c:
6477         * gst/audiofx/audiowsinclimit.h:
6478         * tests/check/Makefile.am:
6479         * tests/check/elements/audiowsincband.c:
6480         * tests/check/elements/audiowsinclimit.c:
6481
6482         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6483         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6484         respectively.
6485
6486         Fixes: #467666
6487
6488 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6489
6490         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6491         * tests/check/elements/icydemux.c:
6492           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6493           caps, and add a somewhat useful debug message. Plus test.
6494
6495 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
6496
6497         * gst/rtsp/gstrtspsrc.c:
6498         Include unistd.h only if HAVE_UNISTD_H is defined
6499         * win32/common/config.h.in:
6500         * win32/common/config.h:
6501         Define socklen_t as it seems it's not defined in default 
6502         Visual Studio headers.
6503         * win32/vs6/libgstalpha.dsp:
6504         * win32/vs6/libgstapetag.dsp:
6505         * win32/vs6/libgstavi.dsp:
6506         * win32/vs6/libgstrtp.dsp:
6507         * win32/vs6/libgstrtsp.dsp:
6508         * win32/vs6/libgstvideomixer.dsp:
6509         Update project file dependencies and add new source files       
6510
6511 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
6512
6513         Patch by: Bjarne Rosengren <bjarne at axis dot com>
6514
6515         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6516         Don't leak buffers when we don't push them downstream.
6517         Fixes bug #514965.
6518
6519 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6520
6521         * configure.ac:
6522           Bump requirements to (good) released versions to avoid
6523           confusion and make implicit core requirement explicit.
6524
6525 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
6526
6527         * docs/plugins/Makefile.am:
6528         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6529         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6530         * docs/plugins/gst-plugins-good-plugins.args:
6531         * docs/plugins/inspect/plugin-audiofx.xml:
6532         * gst/audiofx/Makefile.am:
6533         * gst/audiofx/audiochebband.c:
6534         * gst/audiofx/audiochebband.h:
6535         * gst/audiofx/audiocheblimit.c:
6536         * gst/audiofx/audiocheblimit.h:
6537         * gst/audiofx/audiochebyshevfreqband.c:
6538         * gst/audiofx/audiochebyshevfreqband.h:
6539         * gst/audiofx/audiochebyshevfreqlimit.c:
6540         * gst/audiofx/audiochebyshevfreqlimit.h:
6541         * gst/audiofx/audiofx.c:
6542         * tests/check/Makefile.am:
6543         * tests/check/elements/.cvsignore:
6544         * tests/check/elements/audiochebband.c:
6545         * tests/check/elements/audiocheblimit.c:
6546         * tests/check/elements/audiochebyshevfreqband.c:
6547         * tests/check/elements/audiochebyshevfreqlimit.c:
6548
6549         Rename audiochebyshevfreqband -> audiochebband and
6550         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6551         surgery.
6552
6553         Closes: #491811
6554
6555 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
6556
6557         Patch by: Orjan Friberg <orjanf at axis dot com>
6558
6559         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6560         Fix caps memory leak. Fixes #514573.
6561
6562 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6563
6564         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6565         If there's no entries in the subindex, don't try to do anything stupid,
6566         just return.
6567
6568 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6569
6570         Patch by: John Millikin <jmillikin at gmail dot com>
6571
6572         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6573           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6574           Fix extraction of picture blocks with newer libflac versions again:
6575           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6576
6577 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6578
6579         * tests/check/Makefile.am:
6580           Add rtp-payloading test to VALGRIND_TO_FIX.
6581
6582         * tests/check/elements/rtp-payloading.c:
6583           Add semicolons after GST_TEST_END so gst-indent gets the
6584           formatting right; make test less verbose in general, but
6585           more verbose in the error case (which should probably
6586           make the test fail anyway).
6587
6588 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
6589
6590         * docs/plugins/Makefile.am:
6591         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6592         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6593         * gst/avi/gstavisubtitle.c:
6594         Add documentation for avisubtitle and change class to
6595         Codec/Parser/Subtitle
6596
6597 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6598
6599         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6600         Treat ENOTTY (driver does not implement ioctl) the same as
6601         EINVAL since it implies there are no available standards.
6602
6603         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6604         (gst_v4l2src_get_nearest_size):
6605         Replace gst_v4l2src_get_size_limits with 2 calls to new function
6606         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6607         probe if the driver does not support VIDIOC_TRY_FMT for whatever
6608         reason, and if we aren't yet actively capturing.
6609
6610         * sys/v4l2/v4l2src_calls.h:
6611         Remove replaced function declaration.
6612
6613 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6614
6615         * configure.ac:
6616         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6617         API.
6618
6619 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
6620
6621         * configure.ac:
6622         Fix typo.
6623
6624 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
6625
6626         * gst/alpha/Makefile.am:
6627         * gst/alpha/gstalpha.c:
6628
6629         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6630         some stuff, and making buffer-alloc and resizing work automatically.
6631         No longer crashes on odd frame widths and heights, although there
6632         seems to be a disagreement with ffmpegcolorspace about what size
6633         an AYUV frame with odd height should be.
6634
6635 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6636
6637         Patch by: Alessandro Decina <alessandro at nnva dot org>
6638
6639         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6640         * ext/libpng/gstpngenc.h:
6641         Preallocate the output buffer so that g_memdup() and
6642         gst_buffer_merge() aren't needed anymore. This greatly improves
6643         performances and fixes #512544.
6644
6645 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6646
6647         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6648         (gst_avi_demux_stream_data):
6649         GStreamer timestamps are PTS values while AVI only knows about DTS
6650         timestamps. Make sure we only copy the DTS as the buffer timestamp when
6651         we are dealing with a key frame.
6652
6653 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6654
6655         * tests/check/Makefile.am:
6656         * tests/check/elements/.cvsignore:
6657         * tests/check/elements/rtp-payloading.c:
6658           Add add testsuite for the rtp-payloader that tries simulating
6659           dataflow. Needs more test data.
6660
6661 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6662
6663         * tests/check/elements/alphacolor.c:
6664           Remove two unused variables.
6665
6666 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6667
6668         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6669           Use g_ascii_strtoll() instead of atoll, which is only
6670           available in C99.
6671
6672 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
6673
6674         * gst/rtp/Makefile.am:
6675         * gst/rtp/gstrtp.c:
6676         * gst/rtp/gstrtpmpvpay.c:
6677         * gst/rtp/gstrtpmpvpay.h:
6678         Add MPEG2 video payloader
6679
6680 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6681
6682         * gst/level/gstlevel.c:
6683         Use #include <math.h> instead of #include "math.h".
6684
6685 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6686
6687         * tests/check/Makefile.am:
6688         Fix up some CFLAGS sets.
6689         Don't include gconfvideosrc in the states test.
6690
6691         * tests/check/elements/autodetect.c: (GST_START_TEST):
6692         Add some error strings to fail_unless arguments to fix some weird
6693         compiler errors on Solaris.
6694
6695 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6696
6697         * configure.ac:
6698         Detect video4linux headers on Solaris too.
6699         * sys/v4l2/gstv4l2colorbalance.h:
6700         * sys/v4l2/gstv4l2object.h:
6701         * sys/v4l2/v4l2_calls.c:
6702         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6703         (gst_v4l2_buffer_new):
6704
6705         Make v4l2 build on Solaris.
6706         Patch by: Brian Cameron  <brian.cameron at sun dot com>
6707         Fixes: #510505
6708
6709 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6710
6711         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6712           Update list from (still local) scanning script.
6713
6714 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6715
6716         Based on a patch by:
6717             Victor STINNER <victor dot stinner at haypocalc dot com>
6718
6719         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6720         Set variable to NULL after freeing it to prevent double frees
6721         or make failures by another use of it afterwards more obvious
6722         and fix use of it after the freeing. Fixes bug #510592.
6723
6724 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6725
6726         * gst/udp/gstmultiudpsink.c:
6727         use GST_WARNING for logging
6728
6729 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6730
6731         * gst/udp/gstmultiudpsink.c:
6732         Don't try to leave a multicast group with an invalid socket
6733
6734 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
6735
6736         * ext/flac/gstflacdec.c:
6737           Fix compilation against flac 1.1.2 (as on debian stable), where
6738           the picture metadata defines and structs don't exist yet.
6739           Fixes #509301.
6740
6741 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
6742
6743         Patch by: Olivier Crete <tester at tester dot ca>
6744
6745         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6746         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6747         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6748         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6749         * gst/udp/gstmultiudpsink.h:
6750         Add property to automatically join a multicast group or not. This can be
6751         useful when sharing a socket between multiple elements.
6752         Fixes #509531.
6753
6754 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6755
6756         * gst/videomixer/Makefile.am:
6757           Add controller flags.
6758
6759 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6760
6761         * gst/videomixer/videomixer.c:
6762           Also commit the missing gst_object_sync_values().
6763
6764 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6765
6766         * docs/plugins/Makefile.am:
6767           Remove duplicate entry.
6768
6769 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6770
6771         * docs/plugins/Makefile.am:
6772         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6773         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6774         * docs/plugins/inspect/plugin-gamma.xml:
6775         * docs/plugins/inspect/plugin-monoscope.xml:
6776         * docs/plugins/inspect/plugin-video4linux2.xml:
6777           Add 3 more plugins to docs.
6778
6779 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6780
6781         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6782         * sys/osxvideo/osxvideosink.h:
6783           Revert previous change caused by a file that got stuck on an old
6784           revision.
6785
6786 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6787
6788         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6789         * gst/multipart/Makefile.am:
6790         * gst/multipart/multipartdemux.c:
6791         * gst/multipart/multipartdemux.h:
6792         * gst/multipart/multipartmux.c:
6793         * gst/multipart/multipartmux.h:
6794           Re-add multipartdemux to the docs. Last round of section cleanup.
6795
6796 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6797
6798         * docs/plugins/Makefile.am:
6799         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6800         * sys/osxaudio/gstosxaudiosink.h:
6801         * sys/osxvideo/osxvideosink.h:
6802           Managed to resolve most unused declarations. Filed a bug for one left.          
6803
6804 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6805
6806         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6807           Cleanup section file.
6808
6809 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6810
6811         * docs/plugins/Makefile.am:
6812         * docs/plugins/gst-plugins-good-plugins.args:
6813         * docs/plugins/gst-plugins-good-plugins.signals:
6814         * docs/plugins/inspect/plugin-alaw.xml:
6815         * docs/plugins/inspect/plugin-alpha.xml:
6816         * docs/plugins/inspect/plugin-alphacolor.xml:
6817         * docs/plugins/inspect/plugin-annodex.xml:
6818         * docs/plugins/inspect/plugin-apetag.xml:
6819         * docs/plugins/inspect/plugin-audiofx.xml:
6820         * docs/plugins/inspect/plugin-auparse.xml:
6821         * docs/plugins/inspect/plugin-autodetect.xml:
6822         * docs/plugins/inspect/plugin-avi.xml:
6823         * docs/plugins/inspect/plugin-cairo.xml:
6824         * docs/plugins/inspect/plugin-cdio.xml:
6825         * docs/plugins/inspect/plugin-cutter.xml:
6826         * docs/plugins/inspect/plugin-debug.xml:
6827         * docs/plugins/inspect/plugin-dv.xml:
6828         * docs/plugins/inspect/plugin-efence.xml:
6829         * docs/plugins/inspect/plugin-effectv.xml:
6830         * docs/plugins/inspect/plugin-flac.xml:
6831         * docs/plugins/inspect/plugin-flxdec.xml:
6832         * docs/plugins/inspect/plugin-gconfelements.xml:
6833         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6834         * docs/plugins/inspect/plugin-goom.xml:
6835         * docs/plugins/inspect/plugin-halelements.xml:
6836         * docs/plugins/inspect/plugin-icydemux.xml:
6837         * docs/plugins/inspect/plugin-id3demux.xml:
6838         * docs/plugins/inspect/plugin-jpeg.xml:
6839         * docs/plugins/inspect/plugin-ladspa.xml:
6840         * docs/plugins/inspect/plugin-level.xml:
6841         * docs/plugins/inspect/plugin-matroska.xml:
6842         * docs/plugins/inspect/plugin-mulaw.xml:
6843         * docs/plugins/inspect/plugin-multipart.xml:
6844         * docs/plugins/inspect/plugin-navigationtest.xml:
6845         * docs/plugins/inspect/plugin-png.xml:
6846         * docs/plugins/inspect/plugin-quicktime.xml:
6847         * docs/plugins/inspect/plugin-rtp.xml:
6848         * docs/plugins/inspect/plugin-rtsp.xml:
6849         * docs/plugins/inspect/plugin-shout2send.xml:
6850         * docs/plugins/inspect/plugin-smpte.xml:
6851         * docs/plugins/inspect/plugin-speex.xml:
6852         * docs/plugins/inspect/plugin-taglib.xml:
6853         * docs/plugins/inspect/plugin-udp.xml:
6854         * docs/plugins/inspect/plugin-videobalance.xml:
6855         * docs/plugins/inspect/plugin-videobox.xml:
6856         * docs/plugins/inspect/plugin-videocrop.xml:
6857         * docs/plugins/inspect/plugin-videoflip.xml:
6858         * docs/plugins/inspect/plugin-videomixer.xml:
6859         * docs/plugins/inspect/plugin-wavenc.xml:
6860         * docs/plugins/inspect/plugin-wavpack.xml:
6861         * docs/plugins/inspect/plugin-wavparse.xml:
6862           Update plugin docs.
6863
6864         * gst/videomixer/Makefile.am:
6865         * gst/videomixer/videomixer.c:
6866         * gst/videomixer/videomixer.h:
6867         * gst/videomixer/videomixerpad.h:
6868           Split out header to fix warnings from the doc-build.
6869
6870 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6871
6872         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6873
6874         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6875         Use atoll to parse the rtptime with enough precision. Fixes #509329.
6876
6877 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6878
6879         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6880         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6881           Initialise variables to work around (false) 'foo might be used
6882           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6883
6884 2008-01-11  David Schleef  <ds@schleef.org>
6885
6886         * docs/plugins/.cvsignore:
6887         * tests/check/pipelines/.cvsignore:
6888           Ignore more files for the buildbot.
6889
6890 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
6891
6892         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6893         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6894         Generate the image-type values correctly. Leave them out of the caps
6895         when outputting a "preview image" tag, since it only makes sense
6896         to have one of those - the type is irrelevant.
6897
6898         * sys/sunaudio/gstsunaudiomixerctrl.c:
6899         (gst_sunaudiomixer_ctrl_open):
6900         If we can, mark the mixer multiple open when we use it, in case
6901         (for some reason) the process wants to open it again elsewhere.
6902
6903 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
6904
6905         Patch by: Olivier Crete <tester at tester dot ca>
6906
6907         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6908         * gst/rtp/gstrtptheorapay.c:
6909         Fix the clock rate to 90000 as required by the RFC.
6910         Fixes #508644.
6911
6912 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6913
6914         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6915           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6916
6917 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
6918
6919         * autogen.sh:
6920           Add -Wno-portability to the automake parameters to stop warnings
6921           about GNU make extensions being used. We require GNU make in almost
6922           every Makefile anyway.
6923           
6924         * configure.ac:
6925           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6926           at the same time is required for per target flags.
6927
6928 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6929
6930         * gst/videomixer/videomixer.c: (gst_videomixer_init):
6931         Fix error from my last commit.
6932
6933 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6934
6935         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6936
6937         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6938           Make sure the ISO 639-X language code in ID3v2 COMM frames
6939           is actually valid UTF-8 (or rather: ASCII), so we don't end
6940           up with non-UTF8 strings in tags if there's garbage in the
6941           language field. Also make sure the language code is always
6942           lower case. Fixes: #508291.
6943
6944 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6945
6946         * ChangeLog:
6947           Fix ChangeLog typo.
6948
6949 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6950
6951         * Makefile.am:
6952           Include lcov.mak to allow building coverage reports. Guard
6953           check-torture target like in the other packages.
6954
6955 2008-01-09  Sameer Naik  <sameer@damagehead.com>
6956
6957         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
6958
6959         * gst/videomixer/videomixer.c:
6960         (gst_videomixer_set_master_geometry), (_do_init),
6961         (gst_videomixer_child_proxy_get_child_by_index),
6962         (gst_videomixer_child_proxy_get_children_count),
6963         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6964         (gst_videomixer_init), (gst_videomixer_request_new_pad),
6965         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6966         Implement GstChildProxy interface.
6967         Send newsegment at the right moment
6968         Fixes #488879
6969
6970 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6971
6972         * gst/alpha/Makefile.am:
6973         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6974         (gst_alpha_sink_event), (gst_alpha_chain),
6975         (gst_alpha_change_state), (plugin_init):
6976         Make the various properties of 'alpha' controllable. This allows doing
6977         niceties like fade-in/fade-out.
6978
6979 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6980
6981         * gst/rtp/gstasteriskh263.c:
6982         * gst/rtp/gstrtpL16depay.c:
6983         * gst/rtp/gstrtpac3depay.c:
6984         * gst/rtp/gstrtpamrpay.c:
6985         * gst/rtp/gstrtpdepay.c:
6986         * gst/rtp/gstrtpgsmdepay.c:
6987         * gst/rtp/gstrtph263depay.c:
6988         * gst/rtp/gstrtph263pdepay.c:
6989         * gst/rtp/gstrtph263ppay.c:
6990         * gst/rtp/gstrtph264depay.c:
6991         * gst/rtp/gstrtph264pay.c:
6992         * gst/rtp/gstrtpmp2tdepay.c:
6993         * gst/rtp/gstrtpmp4adepay.c:
6994         * gst/rtp/gstrtpmp4gdepay.c:
6995         * gst/rtp/gstrtpmp4gpay.c:
6996         * gst/rtp/gstrtpmp4vdepay.c:
6997         * gst/rtp/gstrtpmpadepay.c:
6998         * gst/rtp/gstrtpmpvdepay.c:
6999         * gst/rtp/gstrtpsv3vdepay.c:
7000         * gst/rtp/gstrtptheoradepay.c:
7001         * gst/rtp/gstrtptheorapay.c:
7002         * gst/rtp/gstrtpvorbisdepay.c:
7003         * gst/rtp/gstrtpvorbispay.c:
7004           Remove copy/paste unused code (property setters and getter) found by
7005           the coverage suite (yay, saves ~20k on disk).
7006
7007 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
7008
7009         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
7010           (videosink_templ):
7011           Also fix up pad templates to indicate that image/jpeg doesn't
7012           absolutely require the framerate property to be set (#504081).
7013
7014 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
7015
7016         Based on patch by: Wouter Cloetens  <wouter at mind be>
7017
7018         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
7019           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
7020           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
7021         * gst/matroska/matroska-mux.h:
7022           Keep track of first and last timestamps for each incoming stream,
7023           so we can calculate the total duration for live sources and other
7024           input where we can't query the duration from the start or where
7025           there's no constant framerate from which we can deduce the
7026           duration; also use calculated/observed duration if it is bigger
7027           than the previously queried duration. Furthermore, use
7028           gst_pad_query_peer_duration() and take into account that it may
7029           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
7030           screws up comparisons when using unsigned integers. Fixes #504081.
7031
7032 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
7033
7034         * configure.ac:
7035         * gst/audiofx/audioamplify.c:
7036         (gst_audio_amplify_clipping_method_get_type),
7037         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
7038         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
7039         (gst_audio_dynamic_transform_ip):
7040         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
7041         (gst_audio_invert_transform_ip):
7042         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
7043         (gst_audio_panorama_transform):
7044         * gst/level/gstlevel.c: (gst_level_init):
7045         Make elements GST_BUFFER_FLAG_GAP aware and call
7046         gst_base_transform_set_gap_aware for this.
7047         Bump core requirement to CVS.
7048         
7049         * gst/audiofx/audiochebyshevfreqband.c:
7050         (gst_audio_chebyshev_freq_band_transform_ip):
7051         * gst/audiofx/audiochebyshevfreqlimit.c:
7052         (gst_audio_chebyshev_freq_limit_transform_ip):
7053         Also sync GObject properties to the controller if operating
7054         in passthrough mode.
7055
7056 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
7057
7058         * sys/directdraw/gstdirectdrawsink.c:
7059           (gst_directdraw_sink_window_thread):
7060           FALSE is not a gpointer.
7061
7062 2008-01-05  Julien Moutte  <julien@fluendo.com>
7063
7064         * sys/directdraw/gstdirectdrawsink.c:
7065         (gst_directdraw_sink_set_window_id),
7066         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
7067         (gst_directdraw_sink_buffer_alloc),
7068         (gst_directdraw_sink_draw_borders),
7069         (gst_directdraw_sink_show_frame),
7070         (gst_directdraw_sink_setup_ddraw),
7071         (gst_directdraw_sink_window_thread),
7072         (gst_directdraw_sink_get_ddrawcaps),
7073         (gst_directdraw_sink_surface_create): Make sure we create our
7074         internal window only when we need it. That will give a chance to
7075         the application to get the prepare-xwindow-id bus message. Draw
7076         black borders when keeping aspect ratio. Handle the case where our
7077         rendering window disappears (closed or errors) like other sinks
7078         do. Various 80 columns fixes, improve state change order. That
7079         element could need some more love.
7080
7081 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
7082
7083         * ext/taglib/gstapev2mux.h:
7084         * ext/taglib/gstid3v2mux.h:
7085         Remove useless typedefs without new type name. Fixes a warning with
7086         gcc 4.3.
7087
7088 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
7089
7090         Patch by: John Millikin <jmillikin at gmail dot com>
7091
7092         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
7093         (gst_flac_dec_setup_stream_decoder),
7094         (gst_flac_normalize_picture_mime_type),
7095         (gst_flac_extract_picture_buffer),
7096         (gst_flac_dec_metadata_callback):
7097         Emit metadata messages when a PICTURE block is encountered.
7098         Fixes #506715.
7099
7100 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
7101
7102         * gst/avi/gstavi.c:
7103         increase rank because no known issues anymore ...
7104         * gst/avi/gstavisubtitle.c:
7105         send subtitle name to the srcpad
7106
7107 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7108
7109         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
7110         * gst/rtsp/gstrtspsrc.h:
7111         Implement redirect for the DESCRIBE reply. Fixes #506025.
7112
7113 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7114
7115         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
7116         Fix 'xyz may be used uninitialized' compiler warnings caused
7117         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7118         abort() in any case but properly report the error.
7119
7120 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
7121
7122         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
7123         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
7124         * sys/ximage/gstximagesrc.c: (composite_pixel):
7125           Fix 'xyz may be used uninitialized' compiler warnings caused
7126           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
7127           not really nice to abort in any case). Fixes #505745.
7128
7129 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7130
7131         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
7132           Small unit test fix (has no practical impact at the moment,
7133           since we're only feeding utf8 and hence just create a sub-
7134           buffer for the output).
7135
7136 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
7137
7138         * gst/avi/gstavisubtitle.c:
7139         * tests/check/elements/avisubtitle.c:
7140         Add seeking support for avi subtitle
7141
7142 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7143
7144         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
7145         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
7146         (gst_flac_dec_write):
7147         * ext/flac/gstflacdec.h:
7148         Remove some unused vars.
7149         Do more cleanup of leftover events and tags.
7150         Output tags after the segment event. Fixes #504018.
7151
7152 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7153
7154         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
7155           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
7156           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
7157           Detect other UTF byte order markers and convert to UTF-8 as
7158           appropriate.
7159
7160 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7161
7162         * gst/avi/gstavisubtitle.c: (src_template),
7163           (gst_avi_subtitle_extract_utf8_file),
7164           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
7165           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
7166           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
7167         * gst/avi/gstavisubtitle.h:
7168           Refactor a bit; fix name extraction; don't assume all the data
7169           in the chunk is actually subtitle data, there may be padding at
7170           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
7171           file so it's there to send again after a seek (for future use).
7172
7173 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
7174
7175         * gst/avi/Makefile.am:
7176         * gst/avi/gstavi.c:
7177         * gst/avi/gstavisubtitle.c:
7178         * gst/avi/gstavisubtitle.h:
7179         * tests/check/Makefile.am:
7180         * tests/check/elements/avisubtitle.c:
7181         * win32/common/config.h:
7182                 Add avi subtitle element for bug #442034. Need seeking support
7183                 and more support for character conversion.
7184
7185 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7186
7187         * Makefile.am:
7188           Include common/win32.mak for CRLF check of win32 project
7189           files (see #393626).
7190
7191         * win32/vs6/libgstpng.dsp:
7192           Fix line endings and do cvs admin -kb.
7193
7194 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
7195
7196         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7197         Actually drop the buffers which are outside the currently configured
7198         segment instead of just emitting a WARNING.
7199
7200 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
7201
7202         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7203         (gst_flac_dec_write):
7204         * ext/flac/gstflacdec.h:
7205         Send segments from the streaming thread. Fixes #502187.
7206         Fix segment seeking and a bunch of other seeking cases.
7207
7208 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
7209
7210         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7211           Parse WOAF frames and put the result into GST_TAG_CONTACT,
7212           which is where it would end up if the same information was
7213           put in a vorbis comment (don't think it's worth adding a
7214           new URI tag for this). Fixes #488112.
7215
7216 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7217
7218         * configure.ac:
7219           We need core/base 0.10.15 or later.
7220
7221 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7222
7223         Patch by: Mark Nauwelaerts <manauw skynet be>
7224
7225         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7226         Fix regression in stream numbering. Fixes #502655.
7227
7228 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7229
7230         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7231
7232         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7233         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7234         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7235         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7236         (gst_rtp_h264_pay_handle_buffer):
7237         * gst/rtp/gstrtph264pay.h:
7238         Use higher performance start-code searching.
7239         Parse NALs and store SPS, PPS and profile in the caps so that they can
7240         be used in the SDP. Fixes #502814.
7241
7242 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7243
7244         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7245         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7246           Init some structs to zero before we pass them to ioctl, which
7247           avoids valgrind warnings.  Also fix a small memory leak.
7248
7249 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7250
7251         Patch by: Wouter Cloetens <wouter at mind dot be>
7252
7253         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7254         Copy timestamp from input to output. Not very perfect yet but better
7255         than nothing. Fixes #503023.
7256
7257 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7258
7259         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7260           Also print a useful error message with the old Wavpack API
7261           if possible.
7262
7263 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
7264
7265         * ext/wavpack/gstwavpackdec.c:
7266           More build fixes for old libwavpack versions: include config.h so
7267           that WAVPACK_OLD_API is actually defined as detected; only use
7268           WavpackGetErrorMessage if it is available. This fixes the build
7269           on debian stable for me.
7270
7271 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7272
7273         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7274         * ext/wavpack/gstwavpackparse.c:
7275           (gst_wavpack_parse_create_src_pad):
7276           Workaround the non-existance of WavpackGetChannelMask in Wavpack
7277           versions below 4.40.0.
7278
7279 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7280
7281         * configure.ac:
7282           And now do it right for real...
7283
7284 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7285
7286         * configure.ac:
7287           Correctly reset $LIBS to not contain -lm.
7288
7289 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7290
7291         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7292
7293         * configure.ac:
7294         * ext/cairo/gsttimeoverlay.c:
7295           (gst_cairo_time_overlay_print_smpte_time):
7296           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7297           and checking for rint() and implementing it ourself if it doesn't
7298           exist. Fixes #497293.
7299
7300 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7301
7302         * configure.ac:
7303           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7304
7305 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
7306
7307         * sys/oss/gstosshelper.c:
7308         Verify that the format returned after the ioctl is the one
7309         we requested. It is valid for the ioctl to succeed while
7310         substituting an alternate 'supported' sample format.
7311
7312 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
7313
7314         * sys/oss/gstossaudio.c: (plugin_init):
7315         * sys/oss/gstosssink.c: (gst_oss_sink_open):
7316         * sys/oss/gstosssrc.c: (gst_oss_src_open):
7317           Post decent (and translated) error message when we can't
7318           open the audio device for some reason.
7319
7320 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
7321
7322         * sys/oss/gstosssink.c:
7323         * sys/oss/gstosssrc.c:
7324         Allow the AUDIODEV environment variable to redirect us
7325         to a different default OSS device, like sunaudiosink does
7326         on Solaris (makes audio play automatically on SunRays).
7327
7328 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
7329
7330         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7331         * gst/audiofx/audiochebyshevfreqband.c:
7332         (gst_audio_chebyshev_freq_band_transform_ip):
7333         * gst/audiofx/audiochebyshevfreqlimit.c:
7334         (gst_audio_chebyshev_freq_limit_transform_ip):
7335         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7336         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7337         The transform_ip() methods should do nothing if in passthrough mode.
7338         It might get non-writable buffers in that case but the buffer might
7339         as well be writable.
7340
7341         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7342         The transform() methods won't be called in passthrough mode and
7343         otherwise the buffer is always writable so don't check here.
7344
7345 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
7346
7347         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7348           Fix seeking in .wav files again (#501775).  Some people seem to think
7349           they don't need to test their changes when they're just 'reflowing'
7350           some code.
7351
7352 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7353
7354         * gst/autodetect/gstautovideosink.c:
7355         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7356         (gst_auto_video_sink_init),
7357         (gst_auto_video_sink_create_element_with_pretty_name),
7358         (gst_auto_video_sink_find_best),
7359         (gst_auto_video_sink_set_property),
7360         (gst_auto_video_sink_get_property):
7361         * gst/autodetect/gstautovideosink.h:
7362         Fix docs.
7363         Use same error reporting code as autoaudiosink.
7364         Add property to filter sinks based on caps. Only select raw video sinks
7365         by default for backwards compat.
7366         API: GstAutoVideoSink::filter-caps
7367
7368 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7369
7370         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7371
7372         * gst/autodetect/gstautoaudiosink.c:
7373         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7374         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7375         (gst_auto_audio_sink_set_property),
7376         (gst_auto_audio_sink_get_property):
7377         * gst/autodetect/gstautoaudiosink.h:
7378         Add property to filter sinks based on caps. Only select raw audio sinks
7379         by default for backwards compat.  Fixes #417420.
7380         API: GstAutoAudioSink::filter-caps
7381
7382 2007-11-29  Michael Smith <msmith@fluendo.com>
7383
7384         Patch by: Arek Korbik <arkadini@gmail.com>
7385
7386         * gst/videobox/gstvideobox.c: (plugin_init):
7387           Initialise liboil in plugin_init()
7388
7389 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
7390
7391         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7392         Post error before sending EOS. Fixes #499178.
7393
7394 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
7395
7396         * win32/vs6/gst_plugins_good.dsw:
7397         * win32/vs6/libgstpng.dsp:
7398         Add a project file for libgstpng
7399
7400 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
7401
7402         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7403         (gst_rtp_h263_depay_process):
7404         Code beautification.
7405         Added debug statements.
7406         Don't bit-shift everything, just do operations on last/first byte
7407         instead.
7408
7409 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
7410
7411         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7412
7413         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7414         Fix wrong comparison in overrun check. Fixes #499239 some more.
7415
7416 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
7417
7418         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7419         (gst_rtp_h263_depay_process):
7420         * gst/rtp/gstrtph263depay.h:
7421         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7422         stream.
7423
7424 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
7425
7426         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7427
7428         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7429         (gst_rtp_mp4a_depay_process):
7430         * gst/rtp/gstrtpmp4adepay.h:
7431         Fix depayloading when multiple frames are inside one RTP packet.
7432         Fixes #499239.
7433
7434 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7435
7436         * gst/level/gstlevel.c:
7437           Add GAP-flag support.
7438
7439 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
7440
7441         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7442         Read the I flag for Mode A h263 rtp stream and set the
7443         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7444         Fixes #499383
7445
7446 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7447
7448         * gst/level/gstlevel.c:
7449           Remove some dead code and do cleanups.
7450
7451 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7452
7453         * tests/check/pipelines/simple-launch-lines.c:
7454           Improve the tests by allowing to set a target state.
7455
7456 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
7457
7458         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7459         Don't check the caps of the output buffer if they're equal some
7460         other caps. The caps can change in a backward compatible way
7461         and did at this point.
7462
7463 2007-11-24  Julien MOUTTE  <julien@moutte.net>
7464
7465         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7466         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7467         (gst_qtdemux_seek_to_previous_keyframe),
7468         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7469         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7470         reverse playback support.
7471
7472 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7473
7474         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7475         Also set the channel layout on the Wavpack caps if we're having
7476         a mono layout. Of course only do it for "audio/x-wavpack".
7477
7478 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7479
7480         * ext/wavpack/gstwavpackcommon.c:
7481         (gst_wavpack_get_default_channel_mask),
7482         (gst_wavpack_set_channel_layout),
7483         (gst_wavpack_get_default_channel_positions),
7484         (gst_wavpack_get_channel_mask_from_positions),
7485         (gst_wavpack_set_channel_mapping):
7486         * ext/wavpack/gstwavpackcommon.h:
7487         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7488         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7489         * ext/wavpack/gstwavpackdec.h:
7490         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7491         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7492         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7493         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7494         (gst_wavpack_enc_rewrite_first_block),
7495         (gst_wavpack_enc_sink_event):
7496         * ext/wavpack/gstwavpackenc.h:
7497         * ext/wavpack/gstwavpackparse.c:
7498         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7499         (gst_wavpack_parse_scan_to_find_sample),
7500         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7501         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7502         * ext/wavpack/gstwavpackparse.h:
7503         Add support for encoding, parsing and decoding multichannel
7504         files with up to 8 channels. This also improves the robustness
7505         of parsing quite a bit.
7506
7507         * ext/wavpack/gstwavpackstreamreader.c:
7508         (gst_wavpack_stream_reader_read_bytes),
7509         (gst_wavpack_stream_reader_get_pos),
7510         (gst_wavpack_stream_reader_set_pos_abs),
7511         (gst_wavpack_stream_reader_set_pos_rel),
7512         (gst_wavpack_stream_reader_push_back_byte),
7513         (gst_wavpack_stream_reader_get_length),
7514         (gst_wavpack_stream_reader_can_seek),
7515         (gst_wavpack_stream_reader_write_bytes):
7516         Improve debugging.
7517
7518 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7519
7520         * ext/libpng/gstpngdec.c:
7521         * ext/libpng/gstpngdec.h:
7522           Don't release the png-memory from within the callback.
7523
7524 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7525
7526         Patch by: René Stadler <mail at renestadler dot de>
7527
7528         * ext/libpng/gstpngenc.c:
7529           Don't leak buffer data memory. Fixes #498395.
7530
7531 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7532
7533         Patch by: René Stadler <mail at renestadler dot de>
7534
7535         * tests/check/pipelines/simple-launch-lines.c:
7536           Tests for #498395.
7537
7538 2007-11-20  Julien MOUTTE  <julien@moutte.net>
7539
7540         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7541         (gst_tag_lib_mux_adjust_event_offsets):
7542         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7543         * sys/osxaudio/Makefile.am:
7544         * sys/osxvideo/cocoawindow.h:
7545         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7546
7547 2007-11-15  David Schleef  <ds@schleef.org>
7548
7549         * ext/cairo/gsttextoverlay.c:
7550           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
7551
7552 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7553
7554         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7555
7556         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7557         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7558         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7559         * gst/rtp/gstrtpmp2tpay.h:
7560         Fill the MTU with as many packets as possible. Fixes #491323.
7561
7562 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7563
7564         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7565
7566         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7567         Fix some more leaks. Fixes #497007.
7568
7569 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7570
7571         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7572
7573         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7574         (gst_rtspsrc_stream_configure_tcp):
7575         Fix 3 pad leaks. Fixes #496983.
7576
7577 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7578
7579         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7580
7581         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7582         Fix small leak. Fixes #497017.
7583
7584 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7585
7586         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7587         (gst_qtdemux_prepare_current_sample),
7588         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7589         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7590         * gst/qtdemux/qtdemux_fourcc.h:
7591         * gst/qtdemux/qtdemux_types.c:
7592         Add suppport for theora in quicktime according to XiphQT.
7593
7594 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
7595
7596         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7597         (gst_v4l2src_init), (gst_v4l2src_set_property),
7598         (gst_v4l2src_get_property):
7599         * sys/v4l2/gstv4l2src.h:
7600         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7601           Always copy buffers by default (handle safer with bugged drivers)
7602           and added a property to make it possible to use mmap effectively (no
7603           copy if possible) when application wants to. Fixes: #480557.
7604
7605 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7606
7607         * gst/id3demux/id3tags.c:
7608         * gst/id3demux/id3tags.h:
7609         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7610           We don't want the same string multiple times in a tag list for the
7611           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7612           this doesn't happen and remove special-case code for GST_TAG_GENRE.
7613
7614 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7615
7616         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7617           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7618           into ID3v2 TXXX frames (fixes #347848).
7619
7620 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7621
7622         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7623           Don't leak sdp message contents (fixes #496773).
7624
7625         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7626           Don't leak URI string.
7627
7628 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7629
7630         Patch by: Julien Puydt <julien dot puydt at laposte net>
7631
7632         * ext/raw1394/Makefile.am:
7633         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7634           (gst_1394_property_probe_get_properties),
7635           (gst_1394_property_probe_probe_property),
7636           (gst_1394_property_probe_needs_probe),
7637           (gst_1394_property_probe_get_values),
7638           (gst_1394_property_probe_interface_init),
7639           (gst_1394_type_add_property_probe_interface):
7640         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7641         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7642           (gst_dv1394src_init), (gst_dv1394src_dispose),
7643           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7644           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7645           (gst_dv1394src_update_device_name):
7646         * ext/raw1394/gstdv1394src.h:
7647           Implement GstPropertyProbe interface and add "device-name" property,
7648           so applications can use this to probe for available devices in the
7649           same way they can already with v4lsrc and v4l2src (however horrible
7650           this property probe interface may be). Fixes #358841.
7651
7652 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7653
7654         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7655
7656         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7657           (gst_rtspsrc_parse_range):
7658           Don't leak event, don't leak range (fixes #496752).
7659
7660 2007-11-14  Michael Smith <msmith@fluendo.com>
7661
7662         Patch by: Arek Korbik <arkadini@gmail.com>
7663
7664         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7665           Detect RGBA/BGRA correctly on little endian systems.
7666
7667 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7668
7669         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7670           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7671           corresponding ioctl() call fails even though the driver claims to
7672           support this format, just fall back to the pre-2.6.19 kernel
7673           routine that creates caps with suitable height and width ranges
7674           (see #448278).
7675
7676 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7677
7678         Patch by: Mark Nauwelaerts <manauw skynet be>
7679
7680         * gst/matroska/matroska-demux.c:
7681           (gst_matroska_demux_push_dvd_clut_change_event),
7682           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7683           (gst_matroska_demux_subtitle_caps):
7684         * gst/matroska/matroska-ids.h:
7685           Extract palette data for dvd subpicture streams and send it
7686           downstream as custom gstreamer dvd event (fixes #453417).
7687
7688 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7689
7690         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7691           Implement minimal parsing of the passed pango font description
7692           string, so passing a font size works the same as with the
7693           pango textoverlay plugin; fixes #455086.
7694           (Maybe we could just use pangocairo here at some point).
7695
7696 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7697
7698         * gst/avi/gstavidemux.c:
7699         * gst/wavparse/gstwavparse.c:
7700           Return the result in _activate_pull(). Don't ref element there.
7701
7702 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7703
7704         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7705         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7706         (gst_wavparse_srcpad_event):
7707           Ref the element when we should, but not when we its not needed. Reflow
7708           the event_handling to not leak the event.       
7709
7710 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
7711
7712         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7713         (qtdemux_parse_samples):
7714         Properly free QTDemuxSamples array.
7715         Protect table write with a sensible check, some files apparently DO contain
7716         stts values starting with 0 :(
7717
7718 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7719
7720         * gst/avi/gstavidemux.c:
7721         * gst/qtdemux/qtdemux.c:
7722           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7723           previous commit messed up.
7724
7725 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7726
7727         * gst/avi/gstavidemux.c:
7728         * gst/qtdemux/qtdemux.c:
7729           Sync _handle_src_event() with oggdemux. In avidemux also ref the
7730           element when we should, but not when we its not needed.
7731
7732 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
7733
7734         * gst/wavparse/gstwavparse.c:
7735           Return FALSE if we can't handle a query instead of changing the
7736           format. Ignore fact when dealing with mpeg audio.
7737
7738 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7739
7740         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
7741
7742         * configure.ac:
7743         * gst/udp/gstdynudpsink.c:
7744         * gst/udp/gstdynudpsink.h:
7745         * gst/udp/gstmultiudpsink.c:
7746         * gst/udp/gstmultiudpsink.h:
7747         * gst/udp/gstudpsink.c:
7748         * gst/udp/gstudpsink.h:
7749           Fix includes for MSVC and GLib-2.14.0 (#492388).
7750
7751         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7752           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7753
7754 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
7755
7756         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7757         (gst_mulawdec_chain):
7758         * gst/law/mulaw-decode.h:
7759         Calculate outgoing buffer duration if incoming buffer didn't have a
7760         valid duration.
7761
7762 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
7763
7764         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7765         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7766         Smarter combine_flow code that also deals with downstream elements
7767         returning UNEXPECTED when they receive data out of the segment
7768         boundaries. Fixes #491305.
7769
7770 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7771
7772         * sys/v4l2/v4l2src_calls.c:
7773           Fix 'unused variable' compiler warning when compiling against
7774           older kernel headers.
7775
7776 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
7777
7778         * ext/taglib/gstid3v2mux.cc (add_funcs):
7779           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7780
7781 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
7782
7783         * tests/check/pipelines/simple-launch-lines.c:
7784            Improve the tests a little more.
7785
7786 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
7787
7788         patch by: Yun Zheng Hu
7789
7790         * sys/osxaudio/gstosxaudiosrc.c:
7791         Use default input device instead of default output device and
7792         only memcpy actual available bytes.
7793
7794 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
7795
7796         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7797           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7798           early. It is temporary until we find something better.
7799
7800 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7801
7802         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7803
7804         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7805         Fix race when pausing a RTSP stream in interleaved.
7806         Fixes #475784.
7807
7808 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7809
7810         Patch by: Peter Kjellerstedt <pkj at axis com>
7811
7812         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7813         Use correct unref function for buffers. #488844.
7814
7815 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
7816
7817         * gst/avi/gstavimux.c:
7818         * tests/check/elements/avimux.c:
7819           Add some debug and sync tests with the fix.     
7820
7821 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7822
7823         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7824
7825         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7826         When the socket is used by the app for other purposes, don't generate an
7827         error if there is activaty on the socket that is not data related.
7828         Fixes #487488.
7829
7830 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7831
7832         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7833         (gst_v4l2src_grab_frame):
7834         Add some more debug info. Generate an error when we run out of buffers
7835         for some reason. See #480557.
7836
7837 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7838
7839         Patch by: Anders Skargren <anders dot skargren at axis dot com>
7840
7841         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7842         Set marker bit correctly.
7843
7844 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
7845
7846         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7847         Use allowed name for the GstStructure.
7848
7849 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7850
7851         * ext/gconf/gstswitchsink.c:
7852         * gst/autodetect/gstautoaudiosink.c:
7853           Use new gst_bus_pop_filtered().
7854
7855 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7856
7857         * sys/v4l2/gstv4l2src.c:
7858         * sys/v4l2/v4l2src_calls.c:
7859           When probing the formats and sizes a camera supports, make
7860           sure the best ones (highest resolution, prefered format)
7861           end up at the beginning of the probed caps and the less
7862           desirable ones at the end.  This is important because the
7863           order within the caps matters for things like fixation and
7864           negotiation, ie. what format is chosen in the end.
7865           With recent kernels, the current probing code will end up
7866           querying the supported sizes from lowest resolution to
7867           highest resolution, adding them to the probed caps in that
7868           order, resulting to v4l2src fixating to the lowest possible
7869           resolution if downstream does not express a size preference.
7870           Also make up a somewhat random ranking of prefered output
7871           formats for the same reason. Fixes #485828.
7872         
7873 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7874
7875         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
7876
7877         * gst/id3demux/id3v2frames.c:
7878           Extract license/copyright URIs from ID3v2 WCOP frames
7879           (Fixes #447000).
7880
7881         * tests/check/elements/id3demux.c:
7882         * tests/files/Makefile.am:
7883         * tests/files/id3-447000-wcop.tag:
7884           Add simple unit test.
7885
7886 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7887
7888         * ext/taglib/gstid3v2mux.cc:
7889           Add support for license/copyright URI tags (ID3v2 WCOP frame).
7890           Prerequisite for #447000.
7891
7892 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
7893
7894         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7895         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7896         a GstClockTime.
7897
7898 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7899
7900         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7901         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7902         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7903         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7904         (gst_rtspsrc_change_state):
7905         More seeking fixes, mostly passing around the new playback segment in
7906         order to configure it properly.
7907         Also reset base_time of udp sources when setting them back to PLAYING as
7908         a temporary hack until core supports seek in live sources properly.
7909
7910 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7911
7912         * gst/rtp/gstrtpmp4adepay.c:
7913         Fix caps as to not confuse autopluggers.
7914
7915 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7916
7917         * gst/id3demux/gstid3demux.c:
7918         * gst/id3demux/gstid3demux.h:
7919         * gst/id3demux/id3tags.c:
7920         * gst/id3demux/id3tags.h:
7921         * gst/id3demux/id3v2frames.c:
7922           Port ID3 tag demuxer over to the new GstTagDemux in -base
7923           (now would be a good time to test re-importing your music
7924           collection).
7925
7926 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7927
7928         * gst/apetag/Makefile.am:
7929         * gst/apetag/gstapedemux.c:
7930         * gst/apetag/gstapedemux.h:
7931         * gst/apetag/gsttagdemux.c:
7932         * gst/apetag/gsttagdemux.h:
7933           Port APE tag demuxer over to the new GstTagDemux in -base.
7934
7935 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
7936
7937         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7938         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7939         (gst_rtspsrc_handle_internal_src_query),
7940         (gst_rtspsrc_handle_src_query), (new_session_pad),
7941         (gst_rtspsrc_stream_configure_tcp),
7942         (gst_rtspsrc_stream_configure_transport),
7943         (gst_rtspsrc_loop_send_cmd):
7944         Improve flushing behaviour.
7945         Set state of the udp sources to PAUSE/PLAYING correctly.
7946         Handle events and queries for UDP and TCP transport now.
7947
7948 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7949
7950         * gst/rtp/gstrtpgsmdepay.c:
7951         * gst/rtp/gstrtpgsmpay.c:
7952           Add log category.
7953
7954 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7955
7956         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7957
7958         * tests/check/Makefile.am:
7959         * tests/check/pipelines/simple-launch-lines.c:
7960           Add unit tests for payloaders/depayloaders.
7961
7962 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7963
7964         * gst/avi/gstavimux.c:
7965         * gst/avi/gstavimux.h:
7966           Also save codec data for audio streams. Fixes #482495.
7967
7968 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7969
7970         * gst/avi/gstavimux.c:
7971           Fix "Index entry has invalid stream nr 1".
7972           Add support for muxing aac - work in progress (see #482495).
7973
7974 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7975
7976         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7977         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7978         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7979         * gst/rtsp/gstrtspsrc.h:
7980         Parse bandwidth modifiers, they are not yet configured in the session
7981         manager because we don't have an API for that yet.
7982
7983 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7984
7985         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7986         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7987         Use shiny new function in -base to get the default clock-rate.
7988         Update some docs.
7989
7990 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
7991
7992         * win32/MANIFEST:
7993         Add files to win32 manifest.
7994         * win32/vs6/libgstaudiofx.dsp:
7995         * win32/vs6/libgstqtdemux.dsp:
7996         * win32/vs6/libgstrtp.dsp:
7997         * win32/vs6/libgstrtsp.dsp:
7998         Update project files.
7999
8000 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
8001
8002         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8003         (gst_rtspsrc_play):
8004         * gst/rtsp/gstrtspsrc.h:
8005         In TCP mode, only timestamp the first buffer. TCP is not real time and
8006         it does not make sense to try to skew compensate, also some servers send
8007         the first batch of data in a burst.
8008
8009 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
8010
8011         * gst/matroska/matroska-demux.c:
8012           Fix setting the discont flag on the first buffer
8013           pushed downstream for formats with private codec
8014           data that needs to be deserialised into buffers
8015           (such as vorbis and FLAC when in a matroska container).
8016
8017 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
8018
8019         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
8020
8021         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
8022         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
8023         (gst_rtp_mp4v_pay_handle_buffer):
8024         * gst/rtp/gstrtpmp4vpay.h:
8025         Free the config string. Fixes #480707.
8026         Clean up the timestamp code a little.
8027
8028 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8029
8030         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8031         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
8032         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
8033         * gst/rtsp/gstrtspsrc.h:
8034         Set timestamps on RTP buffers in interleaved mode.
8035         Mark first buffers with a DISCONT.
8036         Remove flush hack now that sync for live sources has been figured out.
8037
8038 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8039
8040         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8041         Update documentation.
8042
8043 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8044
8045         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
8046         (gst_rtp_xqt_depay_change_state):
8047         * gst/qtdemux/gstrtpxqtdepay.h:
8048         Fail if we don't know the quicktime format.
8049
8050 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
8051
8052         * ext/flac/gstflacenc.c:
8053         * ext/flac/gstflacenc.h:
8054           Save the flow return from the last gst_pad_push() and
8055           make sure we pass the right flow return value upstream
8056           in the case of failure; minor clean-ups.
8057
8058 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8059
8060         * ext/taglib/gstapev2mux.cc:
8061         * ext/taglib/gstid3v2mux.cc:
8062         * gst/apetag/gstapedemux.c:
8063           Add support for the new GST_TAG_COMPOSER (#459809).
8064
8065 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8066
8067         * gst/law/alaw-decode.c:
8068         * gst/law/alaw-decode.h:
8069         * gst/law/alaw-encode.c:
8070         * gst/law/alaw-encode.h:
8071         * gst/law/alaw.c:
8072         * gst/law/mulaw-conversion.h:
8073           Compulsive clean-ups: use boilerplate macros, add debug
8074           categories, fix up things to conform to symbol nomenklatura,
8075           etc.
8076
8077 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8078
8079         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
8080
8081         * gst/law/alaw-decode.c:
8082         * gst/law/alaw-encode.c:
8083           Use static tables for A-Law decoding and encoding; this makes
8084           A-Law decoding and encoding less CPU-intensive, but increases
8085           the binary size a bit. Leaving old code around for now,
8086           selectable by a define in the code. Fixes #435435.
8087
8088 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8089
8090         * configure.ac:
8091         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
8092         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
8093         in configure.ac.
8094
8095 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8096
8097         Patch by: Jan Gerber <j at bootlab dot org>
8098
8099         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8100         Add fourccs for MPEG2 HDV streams. Fixes #479960.
8101
8102 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
8103
8104         * sys/oss/gstosshelper.c:
8105           Use GST_WARNING instead of a g_critical. This situation is not caused
8106           by the application.
8107
8108 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8109
8110         * po/LINGUAS:
8111         * po/nl.po:
8112           Updated translations.
8113
8114 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8115
8116         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
8117
8118         * po/eu.po:
8119           Added Basque translation.
8120
8121 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8122
8123         translated by: Abel Cheung <abelcheung@gmail.com>
8124
8125         * po/zh_HK.po:
8126         * po/zh_TW.po:
8127           Added Chinese (traditional and Hong Kong) translation.
8128
8129 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8130
8131         translated by: Jakub Bogusz <qboosh@pld-linux.org>
8132
8133         * po/pl.po:
8134           Added Polish translation.
8135
8136 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8137
8138         translated by: Ilkka Tuohela <hile@iki.fi>
8139
8140         * po/fi.po:
8141           Added Finnish translation.
8142
8143 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8144
8145         translated by: Jorge González González <aloriel@gmail.com>
8146
8147         * po/es.po:
8148           Added Spanish translation.
8149
8150 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8151
8152         translated by: Mogens Jaeger <mogens@jaeger.tf>
8153
8154         * po/da.po:
8155           Added Danish translation.
8156
8157 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8158
8159         translated by: Funda Wang <fundawang@linux.net.cn>
8160
8161         * po/zh_CN.po:
8162           Added Chinese (simplified) translation.
8163
8164 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8165
8166         translated by: Alexander Shopov <ash@contact.bg>
8167
8168         * po/bg.po:
8169           Added Bulgarian translation.
8170
8171 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
8172
8173         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
8174         Set outgoing packet duration because we can. Fixes #478244 some more.
8175
8176 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
8177
8178         * ext/cairo/gsttextoverlay.c:
8179           Add info about static leak.
8180         
8181         * tests/check/Makefile.am:
8182         * tests/check/generic/states.c:
8183           Improved state change unit test.
8184
8185 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
8186
8187         * docs/plugins/.cvsignore:
8188         * tests/check/.cvsignore:
8189           Ignore registries in any format.
8190
8191 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
8192
8193         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8194         Removed some unused code.
8195
8196         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8197         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8198         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8199         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8200         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8201         (gst_rtp_theora_pay_flush_packet):
8202         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8203         Try to preserve the incomming buffer duration on the outgoing
8204         packets. Fixes #478244.
8205
8206 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8207
8208         * ext/taglib/gstapev2mux.cc:
8209         * ext/taglib/gstid3v2mux.cc:
8210           Work around compiler warnings with g++-4.2 when assigning a
8211           string constant to a gchar * (partially fixes #478092).
8212
8213 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8214
8215         * configure.ac:
8216           We require core CVS now for gst_base_src_set_do_timestamp().
8217
8218 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
8219
8220         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8221         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8222         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8223         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8224         (gst_rtspsrc_handle_message):
8225         Fix compiler warnings shown with Forte.
8226
8227 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8228
8229         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8230         (gst_rtspsrc_dup_printf):
8231         Give meaningfull error when all streams failed to configure for some
8232         reason.
8233
8234 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8235
8236         * gst/rtp/README:
8237         Update README with the design for synchronisation rules of RTP on
8238         sender and receiver.
8239
8240 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
8241
8242         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8243         (gst_wavparse_chain):
8244         Don't push EOS from the chain function, the element
8245         driving the pipeline is responsible for this. The bug
8246         this was meant to fix seems to be queue not forwarding
8247         EOS in all cases (see #476514).
8248
8249 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
8250
8251         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8252         (gst_level_transform_ip):
8253         * gst/level/gstlevel.h:
8254         Use basetransform segment so that it is correctly managed on flushes and
8255         start/stop.
8256         Report message timestamp as stream time, which is what an application
8257         can understand.
8258
8259 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8260
8261         * ext/taglib/gstapev2mux.cc:
8262         * ext/taglib/gstapev2mux.h:
8263         * ext/taglib/gsttaglibmux.c:
8264         * tests/check/elements/apev2mux.c:
8265         Update my mail address.
8266
8267 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8268
8269         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8270         (gst_wavparse_loop), (gst_wavparse_chain):
8271         Add EOS logic for the push-based mode too. Fixes #476514.
8272
8273 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
8274
8275         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8276         * gst/law/alaw-encode.h:
8277         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8278         (gst_mulawenc_chain):
8279         * gst/law/mulaw-encode.h:
8280         Fix law encoder timestamps.
8281
8282 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
8283
8284         * ext/gconf/gstgconfaudiosink.c:
8285           Fix warning when building without debug.
8286
8287         * sys/oss/gstossmixertrack.c:
8288           Use const like in alsamixertrack.c (fixes warnings).
8289
8290 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
8291
8292         * sys/v4l2/v4l2src_calls.c:
8293         (gst_v4l2src_probe_caps_for_format_and_size):
8294         Fix framerate detection code some more.
8295         Handle the case where there is a weird step in the stepwise framerates.
8296         Don't overwrite the min interval with the framerate, use a temp variable
8297         instead.
8298         Use max in the Continuous framerate intervals instead of step, which is
8299         1 according to the docs. Fixes #475424.
8300
8301 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
8302
8303         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8304         Make udpsrc timestamp outgoing buffers based on when they were received.
8305         Also make it output a segment in time.
8306
8307 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
8308
8309         * gst/avi/gstavidemux.c:
8310           Plug a little leak. Little code cleanups.
8311
8312 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
8313
8314         * configure.ac:
8315           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8316           flac versions, 's good for cross-compilation karma.
8317
8318 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
8319
8320         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
8321
8322         * gst/rtp/gstrtph263pay.c:
8323           Fix up header structure so that compilers don't add padding
8324           between the structure fields, since that would lead to us
8325           sending RTP packets with broken headers (as is currently the
8326           case when compiling with MSVC). Also see similar fixes in
8327           libgstrtp in gst-plugins-base. (#474616; #471194)
8328
8329 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
8330
8331         * sys/v4l2/v4l2src_calls.c:
8332         (gst_v4l2src_probe_caps_for_format_and_size):
8333         Don't overwrite our GValue with 0 but instead use the previously
8334         computed value. Fixes #471823 some more.
8335
8336 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8337
8338         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8339           No tabs in this file please, or gtk-doc will end up documenting
8340           rather absurd class hierarchies.
8341
8342 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8343
8344         * ext/gconf/gstswitchsink.c:
8345           If the new kid element fails to change state for some reason
8346           (e.g. esdsink not being able to connect to the sound server),
8347           forward the error message it posted on the bus instead of just
8348           posting a generic 'Internal state change error: please file a
8349           bug' error message. Fixes #471364.
8350
8351 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8352
8353         * gst/qtdemux/Makefile.am:
8354         * gst/qtdemux/qtdemux.c:
8355           Don't assume tags are encoded as UTF-8 (#473670).
8356
8357 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8358
8359         * sys/v4l2/gstv4l2src.c:
8360         * sys/v4l2/gstv4l2src.h:
8361         * sys/v4l2/v4l2src_calls.c:
8362           Implement LATENCY queries in the crudest way possible so I don't
8363           have to use sync=false any longer when testing with videosinks.
8364
8365 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8366
8367         * configure.ac:
8368           Fix build.
8369
8370 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8371
8372         * sys/v4l2/v4l2src_calls.c:
8373         (gst_v4l2src_probe_caps_for_format_and_size):
8374         Add some more debugging in the framerate function.
8375         Iterate stepwise framerate up to and _including_ the max and if nothing
8376         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8377         don't end up with an empty list. Fixes #471823
8378
8379 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8380
8381         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8382         (gst_multiudpsink_set_clients_string),
8383         (gst_multiudpsink_get_clients_string),
8384         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8385         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8386         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8387         (gst_multiudpsink_clear):
8388         Add property do configure destination address/port pairs
8389         API:GstMultiUDPSink::clients
8390
8391 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8392
8393         * tests/examples/Makefile.am:
8394         * tests/examples/rtp/Makefile.am:
8395         * tests/examples/rtp/client-H263p-AMR.sh:
8396         * tests/examples/rtp/client-H263p-PCMA.sdp:
8397         * tests/examples/rtp/client-H263p-PCMA.sh:
8398         * tests/examples/rtp/client-H264-PCMA.sdp:
8399         * tests/examples/rtp/client-H264-PCMA.sh:
8400         * tests/examples/rtp/client-PCMA.sh:
8401         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8402         * tests/examples/rtp/server-alsasrc-PCMA.sh:
8403         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8404         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8405         Added some RTP example scripts for sending and receiving RTP streams.
8406
8407 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8408
8409         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8410         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8411         Restructure the setcaps function so that we can also compute the
8412         expected GStreamer output size of the video frames.
8413         Set frame_byte_size correctly so that read-based devices have a chance
8414         of working correctly.
8415         When grabbing a frame, discard frames that are not of the expected size.
8416         Some cameras don't output the right framesize for the first buffer.
8417         Try only a couple of times to get a valid frame, else error out.
8418
8419         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8420         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8421         Add some more debug info when scanning the device.
8422
8423         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8424         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8425         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8426         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8427         Add some more debug info when dequeing a frame.
8428
8429 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8430
8431         * gst/wavparse/gstwavparse.c:
8432           More code cleanups. Add some more comment and improve debugs logs.
8433
8434 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8435
8436         * gst/wavparse/gstwavparse.c:
8437         * gst/wavparse/gstwavparse.h:
8438           Implement seek-query. Refactor duration calculations. Appropriate use
8439           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8440           out of loops.
8441
8442 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
8443
8444         * gst/avi/gstavidemux.c:
8445           Implement seek-query.
8446
8447 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
8448
8449         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8450         (gst_rtspsrc_dup_printf):
8451         Use new basesink async property to make sparse RTCP packet not wait for
8452         preroll.
8453
8454 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
8455
8456         * gst/audiofx/Makefile.am:
8457         Dist the right file.
8458
8459 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
8460
8461         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8462         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8463         Make sure we generate and parse floating point values in the POSIX
8464         locale instead of the current locale. 
8465
8466 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
8467
8468         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8469         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8470         (gst_rtspsrc_play):
8471         * gst/rtsp/gstrtspsrc.h:
8472         Fix method detection again.
8473         Keep track of when we must send a Range header.
8474         Use segment values for Range, Speed and Scale headers.
8475         Parse Speed and Scale headers to update the segment values.
8476
8477 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
8478
8479         patch by: Mark Nauwelaerts <manauw@skynet.be>
8480
8481         * sys/v4l2/v4l2src_calls.c:
8482           Handle optional v4l2 ioctls gracefully.
8483
8484 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
8485
8486         * gst/rtp/Makefile.am:
8487         * gst/rtp/gstrtp.c: (plugin_init):
8488         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8489         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8490         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8491         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8492         (gst_rtp_h263_depay_get_property),
8493         (gst_rtp_h263_depay_change_state),
8494         (gst_rtp_h263_depay_plugin_init):
8495         * gst/rtp/gstrtph263depay.h:
8496         Added an H263 depayloader. Fixes #369392.
8497
8498         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8499         (gst_rtp_h263p_depay_process):
8500         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8501         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8502         Make the H263+ pay/depayloader support H263-1998 and H263-2000
8503         payloads.
8504         Also alow plain H263 on the h263p payloaders. Fixes #465040.
8505
8506 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8507
8508         * gst/audiofx/audiochebyshevfreqband.c:
8509         * gst/audiofx/audiochebyshevfreqlimit.c:
8510         Add small comparision with the windowed sinc filters in the docs.
8511
8512 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8513
8514         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8515         (audiochebyshevfreqband_suite):
8516         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8517         (audiochebyshevfreqlimit_suite):
8518         Also test 32 bit float mode and the type 2 variants of the filters.
8519
8520 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
8521
8522         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8523         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8524         (gst_rtspsrc_loop):
8525         Refactor the udp and interleaved loop function a bit.
8526
8527 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8528
8529         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8530         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8531         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8532         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8533         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8534         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8535         * gst/rtsp/gstrtspsrc.h:
8536         Protect connection activity with a new lock, avoids deadlocks when going
8537         to PAUSED. Fixes #455808.
8538
8539 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8540
8541         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8542         Fix debug statement.
8543
8544 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8545
8546         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8547         Fix stray %u in debug line as spotted by Saur on IRC.
8548
8549 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
8550
8551         * gst/audiofx/audiochebyshevfreqband.c:
8552         (gst_audio_chebyshev_freq_band_class_init):
8553         * gst/audiofx/audiochebyshevfreqlimit.c:
8554         (gst_audio_chebyshev_freq_limit_class_init):
8555         Use generator macros for the process functions for the different
8556         sample types, add lower upper boundaries for the GObject properties
8557         so automatically generated UIs can use sliders and add a note about
8558         the number of poles as a too high number of poles combined with
8559         very low or very high frequencies will produce only noise.
8560         * docs/plugins/gst-plugins-good-plugins.args:
8561         Regenerated for the property changes.
8562
8563 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8564
8565         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8566         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8567         (gst_rtspsrc_stream_configure_udp_sink),
8568         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8569         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8570         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8571         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8572         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8573         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8574         * gst/rtsp/gstrtspsrc.h:
8575         Improve timeout handling.
8576         Use the same socket for sending and receiving RTCP packets so that some
8577         servers can track clients better.
8578         Improve connection closed handling. Try to reconnect.
8579         Don't overwrite our content base with NULL.
8580         Improve debugging.
8581         Improve range parsing and handling.
8582         Remove flushing hack now that core does the right thing.
8583
8584 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8585
8586         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8587         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8588         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8589         (gst_multiudpsink_close), (gst_multiudpsink_add):
8590         * gst/udp/gstmultiudpsink.h:
8591         Add support for getting and setting the socket to use.
8592
8593         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8594         (gst_udpsrc_create), (gst_udpsrc_get_property):
8595         Add support for getting the currently used socket.
8596
8597 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
8598
8599         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8600
8601         * gst/audiofx/Makefile.am:
8602         * gst/audiofx/audiochebyshevfreqband.c:
8603         (gst_audio_chebyshev_freq_band_mode_get_type),
8604         (gst_audio_chebyshev_freq_band_base_init),
8605         (gst_audio_chebyshev_freq_band_dispose),
8606         (gst_audio_chebyshev_freq_band_class_init),
8607         (gst_audio_chebyshev_freq_band_init),
8608         (generate_biquad_coefficients), (calculate_gain),
8609         (generate_coefficients),
8610         (gst_audio_chebyshev_freq_band_set_property),
8611         (gst_audio_chebyshev_freq_band_get_property),
8612         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8613         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8614         (gst_audio_chebyshev_freq_band_start):
8615         * gst/audiofx/audiochebyshevfreqband.h:
8616         * gst/audiofx/audiochebyshevfreqlimit.c:
8617         (gst_audio_chebyshev_freq_limit_mode_get_type),
8618         (gst_audio_chebyshev_freq_limit_base_init),
8619         (gst_audio_chebyshev_freq_limit_dispose),
8620         (gst_audio_chebyshev_freq_limit_class_init),
8621         (gst_audio_chebyshev_freq_limit_init),
8622         (generate_biquad_coefficients), (calculate_gain),
8623         (generate_coefficients),
8624         (gst_audio_chebyshev_freq_limit_set_property),
8625         (gst_audio_chebyshev_freq_limit_get_property),
8626         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8627         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8628         (gst_audio_chebyshev_freq_limit_start):
8629         * gst/audiofx/audiochebyshevfreqlimit.h:
8630         * gst/audiofx/audiofx.c: (plugin_init):
8631         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8632         Fixes #464800.
8633
8634         * tests/check/Makefile.am:
8635         * tests/check/elements/.cvsignore:
8636         * tests/check/elements/audiochebyshevfreqband.c:
8637         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8638         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8639         * tests/check/elements/audiochebyshevfreqlimit.c:
8640         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8641         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8642         Add unit tests for the chebyshev filters.
8643
8644         * docs/plugins/Makefile.am:
8645         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8646         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8647         * docs/plugins/gst-plugins-good-plugins.args:
8648         * docs/plugins/inspect/plugin-1394.xml:
8649         * docs/plugins/inspect/plugin-audiofx.xml:
8650         * docs/plugins/inspect/plugin-dv.xml:
8651         * docs/plugins/inspect/plugin-flac.xml:
8652         * docs/plugins/inspect/plugin-jpeg.xml:
8653         * docs/plugins/inspect/plugin-png.xml:
8654         * docs/plugins/inspect/plugin-rtp.xml:
8655         * docs/plugins/inspect/plugin-shout2send.xml:
8656         * docs/plugins/inspect/plugin-wavpack.xml:
8657         And add docs for the chebyshev filters. While doing
8658         that also run make update in docs/plugins.
8659
8660 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8661
8662         * ext/annodex/gstcmmltag.c:
8663         * gst/rtp/gstrtpvorbispay.c:
8664           Make ro memory to share.
8665
8666 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8667
8668         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8669         Improve UDP performance by avoiding a select() when we have data
8670         available immediatly.
8671
8672 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8673
8674         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8675         (gst_rtp_dec_class_init):
8676         * gst/rtsp/gstrtpdec.h:
8677         Add (dummy) SSRC management signals.
8678
8679         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8680         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8681         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8682         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8683         (on_timeout), (gst_rtspsrc_stream_configure_manager),
8684         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8685         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8686         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8687         * gst/rtsp/gstrtspsrc.h:
8688         Add connection-speed property.
8689         Add find_stream helper functions.
8690         Handle stream EOS based on BYE messages or SSRC timeout.
8691         Returns SUCCESS from the state change function as we hide our async
8692         elements from the parent.
8693
8694 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8695
8696         * gst/debug/rndbuffersize.c:
8697           Fix da leak.
8698
8699 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
8700
8701         * gst/debug/Makefile.am:
8702         * gst/debug/breakmydata.c:
8703         * gst/debug/gstdebug.c:
8704         * gst/debug/negotiation.c:
8705         * gst/debug/progressreport.c:
8706         * gst/debug/rndbuffersize.c:
8707         * gst/debug/testplugin.c:
8708           Add new test element and clean-up the others a little.
8709
8710 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
8711
8712         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8713         Fix parsing of mp4a version 0 atoms. Fixes #465774.
8714
8715 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
8716
8717         * gst/rtp/gstrtpilbcdepay.c:
8718           Include stdlib.
8719
8720 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
8721
8722         * gst/rtp/gstrtpmpvdepay.c:
8723         Set the mpegversion in the caps so that autoplugging does not get
8724         confused.
8725
8726 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8727
8728         * po/hu.po:
8729         * po/uk.po:
8730         * po/vi.po:
8731           Updated translations.
8732
8733 2007-08-08  Michael Smith <msmith@fluendo.com>
8734
8735         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8736           Render right border in the correct location.
8737
8738 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
8739
8740         Patch by: Olivier Crete <tester at tester dot ca>
8741
8742         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8743         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8744         Make mode property a string. Fixes #464475.
8745
8746 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8747
8748         * ext/flac/gstflacenc.c:
8749           Widen caps to match decoder a bit and add more FIXMEs.
8750
8751 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8752
8753         patch by: Mark Nauwelaerts <manauw@skynet.be>
8754
8755         * gst/avi/gstavimux.c:
8756           Fix ODML index tag numbering. Fixes #463624.
8757
8758 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
8759
8760         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8761         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8762         (gst_rtspsrc_stream_configure_tcp),
8763         (gst_rtspsrc_stream_configure_udp_sink):
8764         Fix default clock-rate for realmedia.
8765         Fix parsing of transport.
8766         Don't try to link NULL pads.
8767
8768 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
8769
8770         * po/POTFILES.skip:
8771           Add POTFILES.skip with list of source files that aren't disted at the
8772           moment but contain translatable strings. Should hopefully pacify
8773           broken tools and make it clearer that these files are left out
8774           intentionally (#461600).
8775
8776 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
8777
8778         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8779         If the buffer was entirely clipped ... don't try sending it :)
8780
8781 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8782
8783         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8784         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8785         (gst_rtspsrc_create_transports_string),
8786         (gst_rtspsrc_prepare_transports):
8787         If we don't hav a session manager, set the caps on outgoing buffers
8788         ourselves.
8789         Force PAUSE/PLAY methods for now until the extensions can overwrite.
8790         Append final bit of the transport string even when it does not contain a
8791         placeholder.
8792
8793 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8794
8795         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8796         (gst_rtsp_ext_list_connect):
8797         * gst/rtsp/gstrtspext.h:
8798         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8799         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8800         Clean up the interface list.
8801         Allow connecting to interface signals for the extensions.
8802         Remove old extension code.
8803         Free list on cleanup.
8804         Allow extensions to send additional RTSP messages.
8805
8806 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8807
8808         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8809         Handle a NULL gconf key gracefully by rendering the default element.
8810
8811 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8812
8813         * gst/rtsp/gstrtspext.h:
8814         Fix include path for extension interface.
8815
8816 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8817
8818         * gst/audiofx/audioamplify.h:
8819         Also remove a now unecessary variable here.
8820
8821 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8822
8823         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8824         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8825         * gst/audiofx/audiodynamic.c:
8826         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8827         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8828         * gst/audiofx/audiodynamic.h:
8829         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8830         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8831         * gst/audiofx/audioinvert.h:
8832         Don't save format information ourselves, this is already saved in
8833         GstAudioFilter.
8834
8835 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8836
8837         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8838         (gst_rtsp_ext_list_stream_select):
8839         * gst/rtsp/gstrtspext.h:
8840         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8841         Use rank to filter out extensions.
8842         Add url to stream_select interface call.
8843
8844 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8845
8846         * gst/rtsp/Makefile.am:
8847         * gst/rtsp/base64.c:
8848         * gst/rtsp/base64.h:
8849         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8850         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8851         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8852         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8853         (gst_rtsp_ext_list_setup_media),
8854         (gst_rtsp_ext_list_configure_stream),
8855         (gst_rtsp_ext_list_get_transports),
8856         (gst_rtsp_ext_list_stream_select):
8857         * gst/rtsp/gstrtspext.h:
8858         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8859         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8860         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8861         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8862         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8863         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8864         (gst_rtspsrc_stream_configure_tcp),
8865         (gst_rtspsrc_stream_configure_mcast),
8866         (gst_rtspsrc_stream_configure_udp),
8867         (gst_rtspsrc_stream_configure_udp_sink),
8868         (gst_rtspsrc_stream_configure_transport),
8869         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8870         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8871         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8872         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8873         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8874         (gst_rtspsrc_parse_methods),
8875         (gst_rtspsrc_create_transports_string),
8876         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8877         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8878         (gst_rtspsrc_play), (gst_rtspsrc_pause),
8879         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8880         * gst/rtsp/gstrtspsrc.h:
8881         * gst/rtsp/rtsp.h:
8882         * gst/rtsp/rtspconnection.c:
8883         * gst/rtsp/rtspconnection.h:
8884         * gst/rtsp/rtspdefs.c:
8885         * gst/rtsp/rtspdefs.h:
8886         * gst/rtsp/rtspext.h:
8887         * gst/rtsp/rtspextwms.c:
8888         * gst/rtsp/rtspextwms.h:
8889         * gst/rtsp/rtspmessage.c:
8890         * gst/rtsp/rtspmessage.h:
8891         * gst/rtsp/rtsprange.c:
8892         * gst/rtsp/rtsprange.h:
8893         * gst/rtsp/rtsptransport.c:
8894         * gst/rtsp/rtsptransport.h:
8895         * gst/rtsp/rtspurl.c:
8896         * gst/rtsp/rtspurl.h:
8897         * gst/rtsp/sdp.h:
8898         * gst/rtsp/sdpmessage.c:
8899         * gst/rtsp/sdpmessage.h:
8900         * gst/rtsp/test.c:
8901         Use shiny new RTSP and SDP library.
8902         Implement RTSP extensions using the new interface.
8903         Remove a lot of old code.
8904
8905 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
8906
8907         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8908         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8909
8910 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8911
8912         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8913         Don't unref the outgoing buffer twice when dropping it because it's
8914         outside of the segment.
8915
8916 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8917
8918         * configure.ac:
8919         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8920         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8921         Use the new buffer clipping function from gstaudio here and
8922         require gst-plugins-base CVS.
8923         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8924         For framed Wavpack buffers we require a valid timestamp.
8925
8926 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8927
8928         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8929         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8930         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8931         Clip raw audio and video when we can, keep track of current output
8932         segment.
8933         Don't leak buffers and events when there is no output pad.
8934         Improve debugging here and there.
8935
8936 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8937
8938         * configure.ac:
8939           Sync liboil check with plugins-base.
8940
8941 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8942
8943         * ext/annodex/Makefile.am:
8944           Fix CFLAGS/LIBS.
8945
8946         * ext/cdio/gstcdiocddasrc.c:
8947         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8948           Include stdlib
8949
8950         * ext/cairo/Makefile.am:
8951         * gst/videofilter/Makefile.am:
8952         * tests/examples/level/Makefile.am:
8953           Use $(LIBM) instead of -lm
8954
8955 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8956
8957         * sys/v4l2/gstv4l2src.c:
8958           Add another example pipeline.
8959
8960 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8961
8962         Patch by: Alexander Eichner <alexeichi@yahoo.de>
8963
8964         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8965           Use define here.
8966
8967         * sys/v4l2/gstv4l2tuner.c:
8968         (gst_v4l2_tuner_set_frequency_and_notify):
8969           Don't touch the property - its still disabled.
8970
8971         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8972         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8973         * sys/v4l2/v4l2src_calls.h:
8974           Improve fallback format negotionation. Fixes #451388
8975
8976 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8977
8978         * tests/check/elements/videocrop.c: (GST_START_TEST):
8979           Fix the test.
8980
8981 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8982
8983         * docs/plugins/Makefile.am:
8984         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8985         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8986         * docs/plugins/inspect/plugin-jpeg.xml:
8987         * docs/plugins/inspect/plugin-png.xml:
8988         * ext/jpeg/gstjpegdec.c:
8989         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
8990         (gst_pngdec_sink_setcaps):
8991           More docs. More logs in pngdec.
8992
8993 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
8994
8995         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8996           Initialize num_buffers with minimum value.
8997
8998         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
8999         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
9000           Handle frame-size query failure gracefully.
9001
9002 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
9003
9004         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
9005         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
9006         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
9007         of qt/aac files.
9008
9009 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
9010
9011         * ext/wavpack/gstwavpackdec.c:
9012         (gst_wavpack_dec_clip_outgoing_buffer):
9013         Fix buffer clipping to correctly clip to the segment stop.
9014
9015 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
9016
9017         * configure.ac:
9018         * tests/Makefile.am:
9019         Remove bogus check for libcheck, since we check for
9020         gstreamer-check and it pulls in the required info from there,
9021         and we weren't actually _using_ the information for libcheck
9022         ourselves anyway.
9023
9024 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
9025
9026         * configure.ac:
9027           Use pkg-config to locate check.
9028
9029 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
9030
9031         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
9032         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
9033         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
9034         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
9035         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
9036         * gst/effectv/gstaging.c: (gst_agingtv_transform):
9037         * gst/effectv/gstdice.c: (gst_dicetv_transform):
9038         * gst/effectv/gstedge.c: (gst_edgetv_transform):
9039         * gst/effectv/gstquark.c: (gst_quarktv_transform):
9040         * gst/effectv/gstrev.c: (gst_revtv_transform):
9041         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
9042         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
9043         * gst/effectv/gstwarp.c: (gst_warptv_transform):
9044         * gst/matroska/matroska-demux.c:
9045         (gst_matroska_demux_add_wvpk_header),
9046         (gst_matroska_demux_check_subtitle_buffer),
9047         (gst_matroska_decode_buffer):
9048         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
9049           Fix build against core CVS.
9050
9051 2007-07-10  Edward Hervey  <bilboed@gmail.com>
9052
9053         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
9054         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
9055         don't have enough granularity to convert that boolean into a
9056         GstFlowReturn.
9057
9058 2007-07-06  Michael Smith <msmith@fluendo.com>
9059
9060         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
9061         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
9062         (gst_alawdec_change_state):
9063         * gst/law/alaw-decode.h:
9064         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
9065         (gst_mulawdec_class_init), (gst_mulawdec_init),
9066         (gst_mulawdec_chain), (gst_mulawdec_change_state):
9067         * gst/law/mulaw-decode.h:
9068           Fix capsnego bogosity in *law decoders. 
9069
9070 2007-07-06  Michael Smith <msmith@fluendo.com>
9071
9072         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
9073         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
9074         (gst_smokeenc_change_state):
9075         * ext/jpeg/gstsmokeenc.h:
9076           Remove stupidity in get/set caps functions.
9077           Fix some refcounting problems.
9078
9079 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
9080
9081         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
9082         Remove endianness-flipping hack that seems to have been required
9083         only because of a bug in ffmpegcolorspace.
9084         Partially Fixes: #451908
9085
9086 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
9087
9088         * docs/plugins/Makefile.am:
9089           Simplify --extra-dir as gtkdoc scans recursively.
9090
9091 2007-07-03  Wim Taymans  <wim@fluendo.com>
9092
9093         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9094
9095         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
9096         Set the encoding-name in the rtp caps to all uppercase, as required by
9097         the caps spec.
9098         Some small cleanups in the error paths. Fixes #453037.
9099
9100 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
9101
9102         * ext/wavpack/gstwavpackparse.c:
9103         (gst_wavpack_parse_index_get_last_entry),
9104         (gst_wavpack_parse_index_get_entry_from_sample),
9105         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
9106         (gst_wavpack_parse_scan_to_find_sample):
9107         * ext/wavpack/gstwavpackparse.h:
9108         Use a GSList for the GArray that is used like a list anyway.
9109
9110 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
9111
9112         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9113         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
9114         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
9115           Add state change function where we set 0/1 as default framerate in
9116           case our setcaps function isn't called, like it might not in a
9117           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
9118           gdkpixbufdec trying to create caps with a 0/0 framerate.
9119           Also post an error message on the bus if gst_pad_push() fails when
9120           called from our sink event handler (+1 for flow returns for event
9121           functions in 0.11) instead of failing silently.
9122
9123 2007-06-27  Wim Taymans  <wim@fluendo.com>
9124
9125         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
9126         Cast stack args to the proper types. Fixes #451249.
9127
9128 2007-06-27  Wim Taymans  <wim@fluendo.com>
9129
9130         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9131         (new_session_pad), (gst_rtspsrc_setup_streams):
9132         * gst/rtsp/gstrtspsrc.h:
9133         For container formats we only need to activate one of the streams so
9134         that we correctly signal no-more-pads. Fixes #451015.
9135
9136 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
9137
9138         * docs/plugins/gst-plugins-good-plugins.args:
9139         * docs/plugins/inspect/plugin-aasink.xml:
9140         * docs/plugins/inspect/plugin-alaw.xml:
9141         * docs/plugins/inspect/plugin-alpha.xml:
9142         * docs/plugins/inspect/plugin-alphacolor.xml:
9143         * docs/plugins/inspect/plugin-annodex.xml:
9144         * docs/plugins/inspect/plugin-apetag.xml:
9145         * docs/plugins/inspect/plugin-audiofx.xml:
9146         * docs/plugins/inspect/plugin-auparse.xml:
9147         * docs/plugins/inspect/plugin-autodetect.xml:
9148         * docs/plugins/inspect/plugin-avi.xml:
9149         * docs/plugins/inspect/plugin-cacasink.xml:
9150         * docs/plugins/inspect/plugin-cairo.xml:
9151         * docs/plugins/inspect/plugin-cdio.xml:
9152         * docs/plugins/inspect/plugin-cutter.xml:
9153         * docs/plugins/inspect/plugin-debug.xml:
9154         * docs/plugins/inspect/plugin-efence.xml:
9155         * docs/plugins/inspect/plugin-effectv.xml:
9156         * docs/plugins/inspect/plugin-esdsink.xml:
9157         * docs/plugins/inspect/plugin-flac.xml:
9158         * docs/plugins/inspect/plugin-flxdec.xml:
9159         * docs/plugins/inspect/plugin-gconfelements.xml:
9160         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9161         * docs/plugins/inspect/plugin-goom.xml:
9162         * docs/plugins/inspect/plugin-halelements.xml:
9163         * docs/plugins/inspect/plugin-icydemux.xml:
9164         * docs/plugins/inspect/plugin-id3demux.xml:
9165         * docs/plugins/inspect/plugin-jpeg.xml:
9166         * docs/plugins/inspect/plugin-ladspa.xml:
9167         * docs/plugins/inspect/plugin-level.xml:
9168         * docs/plugins/inspect/plugin-matroska.xml:
9169         * docs/plugins/inspect/plugin-mulaw.xml:
9170         * docs/plugins/inspect/plugin-multipart.xml:
9171         * docs/plugins/inspect/plugin-navigationtest.xml:
9172         * docs/plugins/inspect/plugin-ossaudio.xml:
9173         * docs/plugins/inspect/plugin-png.xml:
9174         * docs/plugins/inspect/plugin-quicktime.xml:
9175         * docs/plugins/inspect/plugin-rtp.xml:
9176         * docs/plugins/inspect/plugin-rtsp.xml:
9177         * docs/plugins/inspect/plugin-smpte.xml:
9178         * docs/plugins/inspect/plugin-speex.xml:
9179         * docs/plugins/inspect/plugin-taglib.xml:
9180         * docs/plugins/inspect/plugin-udp.xml:
9181         * docs/plugins/inspect/plugin-videobalance.xml:
9182         * docs/plugins/inspect/plugin-videobox.xml:
9183         * docs/plugins/inspect/plugin-videocrop.xml:
9184         * docs/plugins/inspect/plugin-videoflip.xml:
9185         * docs/plugins/inspect/plugin-videomixer.xml:
9186         * docs/plugins/inspect/plugin-wavenc.xml:
9187         * docs/plugins/inspect/plugin-wavparse.xml:
9188         * docs/plugins/inspect/plugin-ximagesrc.xml:
9189           Update docs with caps info.
9190
9191 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
9192
9193         * po/POTFILES.in:
9194           Add more files with translatable strings (#450878).
9195
9196 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
9197
9198         * MAINTAINERS:
9199         Updating all the maintainers files
9200
9201 2007-06-22  Edward Hervey  <edward@fluendo.com>
9202
9203         * ext/flac/gstflactag.c: (gst_flac_tag_init):
9204         * gst/interleave/deinterleave.c: (deinterleave_init),
9205         (deinterleave_sink_link):
9206         * gst/interleave/interleave.c: (interleave_init):
9207         * gst/median/gstmedian.c: (gst_median_init):
9208         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9209         Fix memory leaks.
9210         * tests/check/elements/id3demux.c: (pad_added_cb):
9211         Remove unused variable.
9212
9213 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
9214
9215         * ext/gconf/gconf.h:
9216         Make the prototype of gst_gconf_get_key_for_sink_profile
9217         match the implementation.
9218         Patch by: Damien Carbery <damien dot carbery at sun dot com>
9219         Fixes: #449747
9220
9221 2007-06-20  Michael Smith <msmith@fluendo.com>
9222
9223         * gst/rtp/gstrtpdepay.c:
9224           Fix description - rtpdepay is not a payloader.
9225
9226 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
9227
9228         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9229         (qtdemux_video_caps):
9230         * gst/qtdemux/qtdemux_fourcc.h:
9231           Add MJPG to the variants of motion jpeg.
9232
9233 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
9234
9235         * tests/check/Makefile.am:
9236         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9237         * tests/check/elements/videocrop.c: (GST_START_TEST):
9238         * tests/check/elements/videofilter.c:
9239         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9240         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9241           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9242           error flags are included and it errors out on compiler warnings
9243           for CVS builds; remove unused variables in various unit tests.
9244
9245 2007-06-19  Wim Taymans  <wim@fluendo.com>
9246
9247         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9248         (rtsp_connection_close), (rtsp_connection_free):
9249         Use threadsafe inet_ntop to convert an ip number to a string. 
9250         Fixes #447961.
9251         Don't leak fd (and ip) when freeing a connection without first closing
9252         it.
9253
9254 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
9255
9256         * configure.ac:
9257         Back to CVS
9258
9259         * gst-plugins-good.doap:
9260         Add 0.10.6 to the doap file.
9261
9262 === release 0.10.6 ===
9263
9264 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
9265
9266         * configure.ac:
9267           releasing 0.10.6, "Wobble Board"
9268
9269 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9270
9271         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9272         (rtsp_connection_free):
9273           Revert previous commit again, since we are frozen (sorry).
9274
9275 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9276
9277         Patch by: Peter Kjellerstedt <pkj at axis com>
9278
9279         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9280         (rtsp_connection_free):
9281           inet_ntoa() uses a static buffer internally, so we need to copy the
9282           returned string if we want to store it for later (#447961).
9283
9284 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9285
9286         * win32/vs6/autogen.dsp:
9287         * win32/vs6/gst_plugins_good.dsw:
9288         * win32/vs6/libgstalaw.dsp:
9289         * win32/vs6/libgstalpha.dsp:
9290         * win32/vs6/libgstalphacolor.dsp:
9291         * win32/vs6/libgstapetag.dsp:
9292         * win32/vs6/libgstaudiofx.dsp:
9293         * win32/vs6/libgstauparse.dsp:
9294         * win32/vs6/libgstautodetect.dsp:
9295         * win32/vs6/libgstavi.dsp:
9296         * win32/vs6/libgstcutter.dsp:
9297         * win32/vs6/libgstdirectdraw.dsp:
9298         * win32/vs6/libgstdirectsound.dsp:
9299         * win32/vs6/libgsteffectv.dsp:
9300         * win32/vs6/libgstflx.dsp:
9301         * win32/vs6/libgstgoom.dsp:
9302         * win32/vs6/libgsticydemux.dsp:
9303         * win32/vs6/libgstid3demux.dsp:
9304         * win32/vs6/libgstinterleave.dsp:
9305         * win32/vs6/libgstjpeg.dsp:
9306         * win32/vs6/libgstlevel.dsp:
9307         * win32/vs6/libgstmatroska.dsp:
9308         * win32/vs6/libgstmedian.dsp:
9309         * win32/vs6/libgstmonoscope.dsp:
9310         * win32/vs6/libgstmulaw.dsp:
9311         * win32/vs6/libgstmultipart.dsp:
9312         * win32/vs6/libgstqtdemux.dsp:
9313         * win32/vs6/libgstrtp.dsp:
9314         * win32/vs6/libgstrtsp.dsp:
9315         * win32/vs6/libgstsmpte.dsp:
9316         * win32/vs6/libgstspeex.dsp:
9317         * win32/vs6/libgstudp.dsp:
9318         * win32/vs6/libgstvideobalance.dsp:
9319         * win32/vs6/libgstvideobox.dsp:
9320         * win32/vs6/libgstvideocrop.dsp:
9321         * win32/vs6/libgstvideoflip.dsp:
9322         * win32/vs6/libgstvideomixer.dsp:
9323         * win32/vs6/libgstwaveform.dsp:
9324         * win32/vs6/libgstwavenc.dsp:
9325         * win32/vs6/libgstwavparse.dsp:
9326         Mark *.dsp & *.dsw as binary files and convert to DOS line
9327         endings, as they don't load into VS6 correctly otherwise.
9328
9329 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9330
9331         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9332         (rtsp_connection_connect):
9333         Fix the MingW build. 
9334         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9335         Fixes: #446981
9336
9337 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9338
9339         * tests/check/elements/.cvsignore:
9340         * tests/icles/.cvsignore:
9341         Hush the buildbots up
9342
9343 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9344
9345         * configure.ac:
9346         * sys/Makefile.am:
9347         * sys/directdraw/Makefile.am:
9348         * sys/directsound/Makefile.am:
9349         * sys/waveform/Makefile.am:
9350         Make sure to dist everything needed for win32 builds.
9351
9352 2007-06-14  Edward Hervey  <edward@fluendo.com>
9353
9354         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9355         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9356         caps.
9357         Fixes #447458
9358
9359 2007-06-13  Wim Taymans  <wim@fluendo.com>
9360
9361         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9362         Make sure we allocate enough memory for the codec_data.
9363         Fixes #447210.
9364
9365 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
9366
9367         * win32/MANIFEST:
9368         Add videocrop project file to the win32 manifest.
9369         * win32/vs6/gst_plugins_good.dsw:
9370         Add qtdemux,videocrop and waveform projects to the workspace.
9371         * win32/vs6/libgstqtdemux.dsp:
9372         Add zlib to the link list of qtdemux.
9373         * win32/vs6/libgstvideocrop.dsp:
9374         Add a project file for videocrop.
9375
9376 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9377
9378         * po/POTFILES.in:
9379         Add qtdemux for translation
9380
9381 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9382
9383         * configure.ac:
9384         * docs/plugins/Makefile.am:
9385         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9386         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9387         * docs/plugins/inspect/plugin-videocrop.xml:
9388         * gst-plugins-good.spec.in:
9389         * sys/Makefile.am:
9390         * tests/check/Makefile.am:
9391         * tests/icles/Makefile.am:
9392         * tests/icles/videocrop-test.c:
9393         Move videocrop and osxvideo from -bad.
9394
9395 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9396
9397         * configure.ac:
9398         * docs/plugins/Makefile.am:
9399         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9400         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9401         * docs/plugins/gst-plugins-good-plugins.args:
9402         * docs/plugins/inspect/plugin-qtdemux.xml:
9403         * docs/plugins/inspect/plugin-quicktime.xml:
9404         * win32/MANIFEST:
9405         Move qtdemux from -bad.
9406
9407         * gst-plugins-good.spec.in:
9408         Update spec file to reflect moving of qtdemux and wavpack
9409
9410 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9411         
9412         * win32/MANIFEST:
9413         * docs/plugins/Makefile.am:
9414         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9415         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9416         * docs/plugins/inspect/plugin-directdraw.xml:
9417         * docs/plugins/inspect/plugin-directsound.xml:
9418         * docs/plugins/inspect/plugin-waveform.xml:
9419         Move the waveform plugin from -bad too. Update the inspect xml
9420         files to mention Plugins Good instead of Plugins Bad.
9421
9422 2007-06-12  Andy Wingo  <wingo@pobox.com>
9423
9424         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9425         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9426         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9427         finalization and resuscitation. No longer public.
9428         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9429         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9430         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9431         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9432         miniobject semantics, and be threadsafe.
9433         (gst_v4l2src_queue_frame): Remove this function, as we just call
9434         the ioctls directly in the two places where we queue buffers.
9435         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9436         directly.
9437         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9438         to allocate the pool, which also preallocates the GstBuffers.
9439         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9440         queueing the frames directly.
9441         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9442         mmap buffers have been dequeued.
9443
9444         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9445         real MiniObject instead of rolling our own refcounting and
9446         finalizing. Give it a lock.
9447         (struct _GstV4l2Buffer): Remove one intermediary object, having
9448         the buffers hold the struct v4l2_buffer directly.
9449
9450         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9451         capture_init so that it can set them on the buffers that it will
9452         create.
9453         (gst_v4l2src_get_read): For better or for worse, include the
9454         timestamping and offsetting code here; really we should be using
9455         bufferalloc though.
9456         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9457         preallocated, mmap'd buffers.
9458
9459 2007-06-11  Wim Taymans  <wim@fluendo.com>
9460
9461         Patch by: daniel fischer <dan at f3c dot com>
9462
9463         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9464         (gst_ximage_src_get_caps):
9465         Actually use the display_name property so that we can dump any
9466         available X display. Fixes #445905.
9467
9468 2007-06-11  Wim Taymans  <wim@fluendo.com>
9469
9470         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9471
9472         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9473         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9474         Add missing rate fields to caps. Fixes #441118.
9475
9476 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
9477
9478         * win32/vs6/gst_plugins_good.dsw:
9479         * win32/vs8/gst-plugins-good.sln:
9480         Add DirectSound and DirectDraw sinks project files to
9481         workspace and solution files.
9482
9483 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
9484
9485         Patch by: Josh Coalson <xflac at yahoo dot com>,
9486         updated by Alexis Ballier <aballier at gentoo dot org>:
9487
9488         * configure.ac:
9489         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9490         (gst_flac_dec_setup_seekable_decoder),
9491         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9492         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9493         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9494         * ext/flac/gstflacdec.h:
9495         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9496         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9497         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9498         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9499         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9500         (gst_flac_enc_chain), (gst_flac_enc_set_property),
9501         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9502         * ext/flac/gstflacenc.h:
9503         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9504         
9505 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9506
9507         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9508         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9509         not necessary anymore as we need at least that core version. 
9510
9511 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9512
9513         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9514         (gst_wavpack_dec_chain):
9515         * ext/wavpack/gstwavpackdec.h:
9516         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9517         (gst_wavpack_parse_push_buffer):
9518         * ext/wavpack/gstwavpackparse.h:
9519         Improve discont handling by checking if the next Wavpack block has
9520         the expected, following block index.
9521
9522 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9523
9524         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9525           Fix element description.
9526
9527 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9528
9529         * configure.ac:
9530         * docs/plugins/Makefile.am:
9531         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9532         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9533         * docs/plugins/gst-plugins-good-plugins.args:
9534         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9535         * docs/plugins/gst-plugins-good-plugins.signals:
9536         * docs/plugins/inspect/plugin-autodetect.xml:
9537         * docs/plugins/inspect/plugin-gconfelements.xml:
9538         * docs/plugins/inspect/plugin-ladspa.xml:
9539         * docs/plugins/inspect/plugin-rtp.xml:
9540         * docs/plugins/inspect/plugin-wavpack.xml:
9541         * ext/Makefile.am:
9542         * tests/check/Makefile.am:
9543           move wavpack plugin.  See #352605.
9544
9545 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
9546
9547         * configure.ac:
9548         * docs/plugins/Makefile.am:
9549         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9550         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9551         * docs/plugins/gst-plugins-good-plugins.args:
9552         * sys/Makefile.am:
9553         * win32/MANIFEST:
9554         Add DirectDraw & DirectSound plugins to the build and docs.
9555
9556 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
9557
9558         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9559         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9560           When operating in pull mode, error out correct on not-linked.
9561
9562 2007-06-06  Andy Wingo  <wingo@pobox.com>
9563
9564         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9565         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9566         format and size if the ioctls are defined; should fix compilation
9567         on Linux < 2.16.19.
9568
9569 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
9570
9571         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9572           Printf fixes in debug statements; use LOG level for debug statements
9573           that are printed for each and every frame; convert c++ comments to
9574           C-style comments; not much point using g_try_malloc() if we then not
9575           even check the return value.
9576
9577 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
9578
9579         * configure.ac:
9580           Bump requirements to released versions (core and base 0.10.13).
9581
9582         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9583           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9584           own implementation.
9585
9586 2007-06-05  Andy Wingo  <wingo@pobox.com>
9587
9588         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9589         some useless comments.
9590
9591         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9592         frames before calling STREAMON, that might leave them in a state
9593         where they can't be dequeued if we go back to NULL without calling
9594         STREAMON, according to the docs.
9595         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9596         before we call STREAMON.
9597         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9598         failures. (For me this code hung.) The pool refcounting is still
9599         crack; added a note to that effect.
9600
9601 2007-06-05  Wim Taymans  <wim@fluendo.com>
9602
9603         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9604         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9605         Add support for mapping gst structure names to the MIME type equivalent.
9606         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9607
9608 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
9609
9610         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9611         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9612         (gst_wavenc_chain), (gst_wavenc_change_state):
9613         * gst/wavenc/gstwavenc.h:
9614         Properly write wav files with width!=depth by having the depth most
9615         significant bytes set and all others zero. Fixes #442535.
9616
9617 2007-06-01  Wim Taymans  <wim@fluendo.com>
9618
9619         * gst/rtsp/rtspconnection.c:
9620         Add include to make buildbot happy.
9621
9622 2007-06-01  Wim Taymans  <wim@fluendo.com>
9623
9624         Patch by: Peter Kjellerstedt  <pkj at axis com>
9625
9626         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9627         (rtsp_connection_connect), (add_date_header),
9628         (rtsp_connection_send), (parse_response_status),
9629         (parse_request_line), (parse_line), (rtsp_connection_receive):
9630         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9631         * gst/rtsp/rtspdefs.h:
9632         * gst/rtsp/rtspmessage.c: (key_value_foreach),
9633         (rtsp_message_init_request), (rtsp_message_init_response),
9634         (rtsp_message_remove_header), (rtsp_message_append_headers),
9635         (rtsp_message_dump):
9636         * gst/rtsp/rtspmessage.h:
9637         Improves version checking, allowing an RTSP server to reply with "505
9638         RTSP Version not supported.
9639         Adds a Date header to all messages.
9640         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9641         want to be able to send a response even if something in the request was
9642         invalid. EINVAL is only used when passing wrong arguments to functions.
9643         Do not handle an invalid method in parse_request_line(). Defer this to
9644         the caller so it can respond with "405 Method Not Allowed".
9645         Improves parsing of the timeout parameter to the Session header,
9646         allowing whitespace after the semicolon. 
9647         Avoids a compiler warning due to variables shadowing a function argument.
9648
9649 2007-06-01  Wim Taymans  <wim@fluendo.com>
9650
9651         Based on Patch by: Daniel Charles <dcharles at ti dot com>
9652
9653         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9654         (gst_rtp_amr_depay_process):
9655         * gst/rtp/gstrtpamrdepay.h:
9656         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9657         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9658         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9659         * gst/rtp/gstrtpamrpay.h:
9660         Add support for AMR-WB.
9661         Small cleanups such as using BOILERPLATE.
9662
9663 2007-05-31  Wim Taymans  <wim@fluendo.com>
9664
9665         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9666         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9667
9668 2007-05-30  Andy Wingo  <wingo@pobox.com>
9669
9670         * sys/v4l2/gstv4l2object.h: 
9671         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9672         unintended changes.
9673
9674         * sys/v4l2/v4l2src_calls.h: 
9675         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9676         the format list in the order that the driver gives it to us.
9677         (gst_v4l2src_probe_caps_for_format_and_size)
9678         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9679         based on the capabilities of the device.
9680         (gst_v4l2src_grab_frame): Update for object variable renaming.
9681         (gst_v4l2src_set_capture): Update to be strict in its parameters,
9682         as in the set_caps below.
9683         (gst_v4l2src_capture_init): Update for object variable renaming,
9684         and reflow.
9685         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9686         (gst_v4l2src_capture_deinit): Update for object variable renaming.
9687         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9688         (gst_v4l2src_get_fps): Remove; these functions don't have much
9689         meaning outside of an atomic set_caps method.
9690         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9691         known.
9692
9693         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9694         call to update_fps; not sure about this change.
9695         (gst_v4l2_tuner_set_norm): Work around the fact that for the
9696         moment we don't have an update_fps_func.
9697
9698         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9699         structures in the object, just store what we need. Do store the
9700         probed caps of the device. Don't store the current frame rate.
9701
9702         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9703         update_fps_function, for now. Update for new object variable
9704         naming.
9705         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9706         new object variable naming.
9707         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9708         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9709         (gst_v4l2src_get_caps): Rework to probe the device for supported
9710         frame sizes and frame rates.
9711         (gst_v4l2src_set_caps): Rework to be strict in the given
9712         parameters: if someone asks us to have a certain size and rate,
9713         that is what we configure.
9714         (gst_v4l2src_get_read): Update for object variable naming. Don't
9715         leak buffers on short reads.
9716         (gst_v4l2src_get_mmap): Update for object variable naming, and add
9717         comments.
9718         (gst_v4l2src_create): Update for object variable naming.
9719
9720 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9721
9722         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9723         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9724         * gst/avi/gstavidemux.h:
9725           Parse subtitle text streams instead of erroring out (#442034). Still
9726           needs a parser for the subtitles to actually show up.
9727
9728 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9729
9730         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9731         (gst_avi_demux_loop):
9732           Make _push_event() return TRUE if the event could be pushed on at
9733           least one pad and not only if it could be pushed on all pads,
9734           otherwise we'll end up posting an error message on EOS if one or
9735           more source pads are not connected.
9736
9737 2007-05-28  Wim Taymans  <wim@fluendo.com>
9738
9739         * gst/rtsp/rtsptransport.c:
9740         Use renamed RTP bin.
9741
9742 2007-05-28  Wim Taymans  <wim@fluendo.com>
9743
9744         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9745
9746         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9747         (gst_video_box_set_property), (gst_video_box_transform_caps),
9748         (video_box_recalc_transform), (gst_video_box_set_caps),
9749         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9750         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9751         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9752         (gst_video_box_i420_i420), (gst_video_box_transform),
9753         (plugin_init):
9754         Add AYUV->AYUV and AYUV->I420 formats. 
9755         Fix negotiation and I420->AYUV conversion.
9756         Fixes #429329.
9757
9758 2007-05-26  Wim Taymans  <wim@fluendo.com>
9759
9760         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9761         Use different variables for nested for loops so that the outer loop
9762         functions properly and speex files with multiple frames per buffer work
9763         properly.
9764         Fixes #441408.
9765
9766 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9767
9768         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9769           Don't leak newsegment events.
9770
9771 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9772
9773         * gst/wavparse/Makefile.am:
9774           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9775           drags it in.
9776
9777 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9778
9779         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9780         (notgst_value_array_append_buffer),
9781         (gst_flac_enc_process_stream_headers),
9782         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9783         (gst_flac_enc_change_state):
9784         * ext/flac/gstflacenc.h:
9785           Collect headers, add "streamheader" field to output caps and set
9786           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9787           produces output according to the official FLAC-to-Ogg mapping
9788           instead of completely broken files. Fixes #426044.
9789
9790 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9791
9792         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9793         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9794         (gst_id3demux_sink_event):
9795         * gst/id3demux/gstid3demux.h:
9796         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9797         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9798         (gst_tag_demux_send_new_segment):
9799         Handle and adjust new-segment events so that downstream really
9800         sees a stream with the tag pieces stripped off the front and back.
9801         Fixes strangeness in seeking when mp3 decoders use the new-segment
9802         byte position to estimate their current playback position timestamp
9803         and then the arriving buffers don't match up.
9804
9805 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9806
9807         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9808           Don't unnecessarily perform a READY->NULL->READY transition on the
9809           detected audio sink when starting up. Fixes: #440127
9810
9811 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
9812
9813         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9814         (gst_flac_enc_chain):
9815           Don't crash in chain function if setcaps hasn't been called.
9816
9817 2007-05-24  Wim Taymans  <wim@fluendo.com>
9818
9819         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9820         Init value to avoid infinte loops.
9821
9822 2007-05-24  Wim Taymans  <wim@fluendo.com>
9823
9824         Patch by: Peter Kjellerstedt  <pkj at axis com>
9825
9826         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9827         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9828         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9829         (gst_rtspsrc_play):
9830         (rtsp_connection_send), (rtsp_connection_receive):
9831         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9832         Fix for new API.
9833
9834         * gst/rtsp/rtspconnection.c: (add_auth_header),
9835         Only add authorisation and session headers when sending messages.
9836
9837         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9838         (rtsp_message_init_request), (rtsp_message_init_response),
9839         (rtsp_message_unset), (rtsp_message_add_header),
9840         (rtsp_message_remove_header), (rtsp_message_get_header),
9841         (rtsp_message_append_headers), (dump_key_value),
9842         (rtsp_message_dump):
9843         * gst/rtsp/rtspmessage.h:
9844         Add support for multiple headers of the same type by storing the parsed
9845         headers in a GArray instaed of a hashtable.
9846
9847 2007-05-21  Wim Taymans  <wim@fluendo.com>
9848
9849         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9850         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9851         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9852         safer shutdown.
9853
9854 2007-05-21  Wim Taymans  <wim@fluendo.com>
9855
9856         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9857         * gst/rtsp/gstrtpdec.h:
9858         Added signal for backwards compat.
9859
9860 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
9861         
9862         Patch by: René Stadler <mail at renestadler dot de>
9863
9864         * configure.ac:
9865         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9866         (gst_au_parse_parse_header), (gst_au_parse_chain):
9867         * gst/auparse/gstauparse.h:
9868         Use audioconvert for converting from non-native endianness floats
9869         in auparse instead of doing it ourself. Fixes #424527.
9870         This needs the audioconvert from plugins-base CVS.
9871         
9872 2007-05-21  Wim Taymans  <wim@fluendo.com>
9873
9874         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9875         (gst_rtp_h263p_pay_flush):
9876         Fix enum registration.
9877
9878 2007-05-21  Wim Taymans  <wim@fluendo.com>
9879
9880         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9881
9882         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9883         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9884         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9885         (gst_rtp_h263p_pay_flush):
9886         * gst/rtp/gstrtph263ppay.h:
9887         Add new fragmentation mode base on GOB headers. Fixes #438940.
9888
9889 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
9890
9891         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9892           Printf format fix.
9893
9894 2007-05-18  Wim Taymans  <wim@fluendo.com>
9895
9896         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9897         Don't crash when an unsupported transport error was returned by the
9898         server, just try to configure the next stream. Fixes #439255.
9899
9900 2007-05-18  Wim Taymans  <wim@fluendo.com>
9901
9902         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9903         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9904         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9905         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9906         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9907         * gst/rtsp/gstrtspsrc.h:
9908         Add TCP timeout property and use it for all TCP connection.
9909
9910         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9911         (rtsp_connection_write), (rtsp_connection_next_timeout),
9912         (rtsp_connection_reset_timeout):
9913         Make connect and writes cancelable and make them use the timeout.
9914
9915 2007-05-18  Wim Taymans  <wim@fluendo.com>
9916
9917         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9918         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9919         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9920         (gst_rtspsrc_setup_streams):
9921         Refactor timeout handling.
9922         Also send keep-alive when dealing with TCP transport.
9923
9924         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9925         (rtsp_connection_free), (rtsp_connection_next_timeout),
9926         (rtsp_connection_reset_timeout):
9927         * gst/rtsp/rtspconnection.h:
9928         Use a timer to handle the session timeouts, add some methods to deal
9929         with timeouts.
9930
9931 2007-05-17  Wim Taymans  <wim@fluendo.com>
9932
9933         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9934         (gst_rtspsrc_setup_streams):
9935         Ignore streams that fail the setup command, we will retry with a
9936         different transport later on.
9937
9938         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9939         (rtsp_ext_wms_configure_stream):
9940         Fix encoding name case.
9941
9942 2007-05-16  Edward Hervey  <edward@fluendo.com>
9943
9944         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9945         Fix build on macosx.
9946
9947 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
9948
9949         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9950         Replace direct comparison of a string with the string literal "" with
9951         a comparison of the first character with '\0'. Fixes #438926.
9952
9953 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9954
9955         * gst/debug/breakmydata.c (gst_break_my_data_init):
9956           One more try. This should be the proper fix now.
9957
9958 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9959
9960         * gst/debug/breakmydata.c:
9961           Ooops, no // comments please.
9962
9963 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9964
9965         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9966         (gst_break_my_data_init):
9967           Fix gst_buffer_is_writable() assertion.
9968
9969 2007-05-14  David Schleef  <ds@schleef.org>
9970
9971         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9972           video/x-raw-bayer.  Fixes #314160.
9973
9974 2007-05-14  Wim Taymans  <wim@fluendo.com>
9975
9976         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9977         (gst_rtp_theora_depay_parse_configuration):
9978         * gst/rtp/gstrtptheorapay.c: (encode_base64),
9979         (gst_rtp_theora_pay_finish_headers),
9980         (gst_rtp_theora_pay_handle_buffer):
9981         Update theora pay/depayloader in a similar to vorbis.
9982
9983         * gst/rtp/gstrtpvorbisdepay.c:
9984         (gst_rtp_vorbis_depay_parse_configuration):
9985         Update docs.
9986
9987 2007-05-14  Wim Taymans  <wim@fluendo.com>
9988
9989         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
9990         When we try to execute a method that is not supported by the server,
9991         don't error out but remove the method from the accepted methods so that
9992         we never try to perform this method again.
9993
9994 2007-05-14  Wim Taymans  <wim@fluendo.com>
9995
9996         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
9997         Remove annoying _dump_mem.
9998
9999 2007-05-14  Wim Taymans  <wim@fluendo.com>
10000
10001         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
10002         Parse range correctly.
10003
10004         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
10005         The baseurl now always has a '/' at the start.
10006
10007 2007-05-14  Wim Taymans  <wim@fluendo.com>
10008
10009         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
10010         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
10011         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10012         Factor out caps configuration and configure more stuff such as the time
10013         ranges and speed/scale values.
10014
10015         * gst/rtsp/rtsptransport.c:
10016         Add Copyright after non-trival fixes.
10017
10018 2007-05-12  Wim Taymans  <wim@fluendo.com>
10019
10020         Patch by: Peter Kjellerstedt  <pkj at axis com>
10021
10022         * gst/rtsp/gstrtspsrc.h:
10023         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10024         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
10025         (rtsp_message_get_header):
10026         * gst/rtsp/rtspmessage.h:
10027         Make channel guint8 where possible.
10028         Make rtsp_message_init_data() take the channel as a guint8.
10029
10030         * gst/rtsp/rtspdefs.c:
10031         Fixed a typo: Timout -> Timeout
10032
10033         * gst/rtsp/rtspdefs.h:
10034         Make RTSP_CHECK() behave as a statement.
10035
10036         * gst/rtsp/sdpmessage.c:
10037         Avoid a compiler warning in INIT_ARRAY().
10038         Fixes #437692.
10039
10040 2007-05-12  Wim Taymans  <wim@fluendo.com>
10041
10042         Patch by: Peter Kjellerstedt  <pkj at axis com>
10043
10044         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
10045         (rtsp_url_get_request_uri):
10046         * gst/rtsp/rtspurl.h:
10047         Add support for query parameters to RTSP URLs.
10048
10049 2007-05-12  Wim Taymans  <wim@fluendo.com>
10050
10051         Patch by: Peter Kjellerstedt  <pkj at axis com>
10052
10053         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
10054         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
10055         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
10056         (rtsp_transport_parse), (rtsp_transport_as_text):
10057         * gst/rtsp/rtsptransport.h:
10058         Add validation to rtsp_transport_parse().
10059         Add rtsp_transport_as_text() to generate an RTSP header from an
10060         RTSPTransport.
10061         Change ssrc to guint (was a string) since that is what it is, even
10062         though it is sent as a hex string.
10063         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
10064         incorrect, which can be seen when looking at the examples in the RFC).
10065         Fixes #437670.
10066
10067 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10068
10069         Patch by: Eric Anholt
10070
10071         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
10072           gst_ximage_src_ximage_get):
10073         Use union of all damage between frames to make it faster.
10074         Fixes bug #342463.
10075         Also fix crasher when cursor is at bottom right of window.
10076
10077 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
10078
10079         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10080           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
10081           streaming mode regression for file from #343837 with 'bext' chunk
10082           before the 'fmt' chunk.
10083
10084 2007-05-11  Wim Taymans  <wim@fluendo.com>
10085
10086         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
10087         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
10088         (gst_rtspsrc_handle_src_event),
10089         (gst_rtspsrc_stream_configure_manager),
10090         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
10091         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
10092         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10093         * gst/rtsp/gstrtspsrc.h:
10094         * gst/rtsp/rtspdefs.h:
10095         Preliminary seek support.
10096         Activate internal pads so that we can receive events on them.
10097         Don't try to parse a range string when it's NULL.
10098
10099 2007-05-11  Wim Taymans  <wim@fluendo.com>
10100
10101         * gst/rtp/README:
10102         Update README with new RTP variables that will be used for
10103         synchronisation.
10104
10105         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
10106         (gst_rtp_vorbis_depay_parse_configuration),
10107         (gst_rtp_vorbis_depay_process):
10108         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
10109         (gst_rtp_vorbis_pay_finish_headers),
10110         (gst_rtp_vorbis_pay_handle_buffer):
10111         Update vorbis pay and depayloader to draft-04.
10112
10113 2007-05-11  Wim Taymans  <wim@fluendo.com>
10114
10115         * gst/rtsp/rtsptransport.c:
10116         UDP MCAST is actually the default for RTP/AVP.
10117 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
10118
10119         * gst/level/gstlevel.c: (gst_level_transform_ip):
10120         Use guint8 * instead of gpointer then vs6 can build 
10121         in_data += (filter->width / 8).
10122
10123 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10124
10125         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
10126           gst_ximage_src_ximage_get):
10127         * sys/ximage/gstximagesrc.h (last_ximage):
10128         When using Damage actually keep the last frame, and not assume
10129         that the buffer we get already has the last frame on it.
10130         Copy the cursor over if we specify a non-zero start x and
10131         start y.
10132
10133 2007-05-11  Wim Taymans  <wim@fluendo.com>
10134
10135         * gst/rtsp/rtsptransport.c:
10136         Make UDP the default transport when not specified.
10137
10138 2007-05-09  David Schleef  <ds@schleef.org>
10139
10140         * gst/level/gstlevel.c:
10141           Revert last change.
10142
10143 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
10144
10145         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
10146         (gst_level_transform_ip):
10147         Use guint8 * instead of gpointer then vs6 know the size of data
10148         pointed when moving the pointer.
10149         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
10150         Move instructions after variables declaration.
10151         * win32/vs6/autogen.dsp:
10152         * win32/vs6/libgstrtp.dsp:
10153         * win32/vs6/libgstrtsp.dsp:
10154         Update vs6 project files.
10155
10156 2007-05-09  Wim Taymans  <wim@fluendo.com>
10157
10158         * gst/rtsp/Makefile.am:
10159         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
10160         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
10161         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
10162         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
10163         (rtsp_range_free):
10164         * gst/rtsp/rtsprange.h:
10165         Add code to parse time ranges.
10166         Report DURATION on the stream when possible.
10167
10168 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
10169
10170         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10171         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10172         (gst_videomixer_collected):
10173           Fix strides calculation for AYUV (it's just width*4) (#436910).
10174
10175 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
10176
10177         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10178         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10179         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10180         Sync the GObject properties before each processing step to properly
10181         work with the controller.
10182
10183 2007-05-04  Wim Taymans  <wim@fluendo.com>
10184
10185         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10186         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10187         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10188         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10189         (gst_rtspsrc_change_state):
10190         Let more error state trickle down so that we can catch more error
10191         cases.
10192         Handle keep-alive a little smarter by selecting a method the server
10193         actually supports.
10194         Fix a race in UDP streaming shutdown.
10195
10196 2007-05-04  Wim Taymans  <wim@fluendo.com>
10197
10198         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10199         Ignore errors when trying to use the keep-alive messages.
10200
10201 2007-05-04  Wim Taymans  <wim@fluendo.com>
10202
10203         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10204         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10205         (gst_rtspsrc_stream_configure_manager),
10206         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10207         (gst_rtspsrc_stream_configure_mcast),
10208         (gst_rtspsrc_stream_configure_udp),
10209         (gst_rtspsrc_stream_configure_udp_sink),
10210         (gst_rtspsrc_stream_configure_transport):
10211         Send RTCP messages back to the server over the TCP connection.
10212
10213         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10214         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10215         (rtsp_connection_receive):
10216         * gst/rtsp/rtspconnection.h:
10217         Factor out and expose lowlevel _write and _read methods.
10218         Implement sending data messages to the server.
10219
10220 2007-05-03  Wim Taymans  <wim@fluendo.com>
10221
10222         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10223         (gst_multipart_mux_collected):
10224         Fix timestamps on outgoing buffers.
10225
10226 2007-05-03  Wim Taymans  <wim@fluendo.com>
10227
10228         * gst/multipart/multipartmux.c:
10229         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10230         (gst_multipart_mux_change_state):
10231         Emit NEWSEGMENT events before pushing the first buffer.
10232
10233 2007-05-03  Wim Taymans  <wim@fluendo.com>
10234
10235         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10236         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10237         (gst_rtspsrc_handle_src_query),
10238         (gst_rtspsrc_stream_configure_manager),
10239         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10240         (gst_rtspsrc_stream_configure_mcast),
10241         (gst_rtspsrc_stream_configure_udp),
10242         (gst_rtspsrc_stream_configure_udp_sink),
10243         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10244         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10245         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10246         (gst_rtspsrc_pause):
10247         Refactor transport configuration code.
10248         Create internal pads for TCP transport so that we can implement events
10249         and queries.
10250         Handle events and queries.
10251         Parse range from the SDP.
10252         Fix race in pause handler where the connection could still be flushing.
10253
10254 2007-05-02  Wim Taymans  <wim@fluendo.com>
10255
10256         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10257         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10258         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10259         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10260         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10261         (gst_rtspsrc_change_state):
10262         * gst/rtsp/gstrtspsrc.h:
10263         Fix race when multiple udp sources post timeouts, just act on the first
10264         received timeout.
10265         Protect stream list with a recursive lock to fix some races.
10266         Flush connection when we need to do a reconnect or stop.
10267         Make state lock recursive.
10268
10269         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10270         (rtsp_connection_close):
10271         Some small cleanups.
10272
10273 2007-05-02  Wim Taymans  <wim@fluendo.com>
10274
10275         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10276         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10277         Only set DISCONT when there actually is a discont or when we just
10278         started.
10279
10280 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10281
10282         * ext/flac/gstflac.c: (plugin_init):
10283         Call bindtextdomain() to get localized strings.
10284
10285 2007-05-02  Wim Taymans  <wim@fluendo.com>
10286
10287         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10288         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10289         (gst_wavparse_stream_data):
10290         * gst/wavparse/gstwavparse.h:
10291         Be a bit more clever when dealing with VBR files with FACT tags, we
10292         don't want to timestamp buffers in that case but the estimated BPS can
10293         be used for seeking.
10294         Only send close segment in the streaming thread.
10295
10296 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10297
10298         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10299         Correctly post an error on the bus if something went wrong in the loop
10300         function. This fixes a few cases where the task was paused and nothing
10301         happened anymore.
10302
10303 2007-05-02  Wim Taymans  <wim@fluendo.com>
10304
10305         * gst/rtsp/test.c: (main):
10306         Fix compilation of deprecated test just because I'm too lazy to delete
10307         it.
10308
10309 2007-05-02  Wim Taymans  <wim@fluendo.com>
10310
10311         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10312         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10313         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10314         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10315         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10316         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10317         * gst/rtsp/gstrtspsrc.h:
10318         Fix sending RTCP to the right place.
10319         Fix bug in reffing the wrong UDP element.
10320         Use new pad names for the session manager.
10321         Implement handling server requests in interleaved and UDP modes.
10322         Handle session keep-alive in UDP modes.
10323         Remove GCond for handling UDP timeouts.
10324
10325         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10326         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10327         (rtsp_connection_receive), (rtsp_connection_close):
10328         * gst/rtsp/rtspconnection.h:
10329         Store connection IP address for later.
10330         Add timeout args to all operations that might block forever.
10331         Parse session timeout.
10332         Only close sockets when not already closed.
10333
10334         * gst/rtsp/rtspdefs.c:
10335         * gst/rtsp/rtspdefs.h:
10336         Add timeout return value and error string.
10337
10338         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10339         Add small comment.
10340
10341 2007-05-01  Wim Taymans  <wim@fluendo.com>
10342
10343         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10344
10345         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10346         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10347         * gst/rtp/gstrtpmp4vpay.h:
10348         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10349
10350 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
10351
10352         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10353           Remove v4l2src from docs, since it breaks the docs build, and the
10354           plugin is only built if --enable-experimental is used anyway.
10355
10356         * docs/plugins/Makefile.am:
10357           Spaces => tab.
10358
10359 2007-04-29  Wim Taymans  <wim@fluendo.com>
10360
10361         * gst/udp/gstmultiudpsink.c: (leave_multicast),
10362         (gst_multiudpsink_add), (gst_multiudpsink_remove):
10363         Add code to drop membership of a multicast group.
10364
10365         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10366         (gst_udpsink_set_uri):
10367         Implement URI handler.
10368
10369         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10370         (gst_rtspsrc_parse_rtpinfo):
10371         Use URI handler to make udpsink instace.
10372         Improve code to configure port and destination.
10373
10374 2007-04-29  Wim Taymans  <wim@fluendo.com>
10375
10376         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10377         Fix multicast detection.
10378         Don't try to join a multicast group if the address is not multicast.
10379
10380         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10381         Small debug improvement.
10382
10383 2007-04-27  Wim Taymans  <wim@fluendo.com>
10384
10385         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10386         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10387         (gst_rtspsrc_handle_message):
10388         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10389         parent.
10390
10391 2007-04-27  Wim Taymans  <wim@fluendo.com>
10392
10393         * gst/rtp/gstrtpilbcdepay.h:
10394         Fix mode property when specified as an arg.
10395
10396 2007-04-26  Edward Hervey  <edward@fluendo.com>
10397
10398         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10399         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10400         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10401         * docs/plugins/inspect/plugin-osxaudio.xml:
10402         Add documentation for osxaudio plugin.
10403
10404 2007-04-26  Wim Taymans  <wim@fluendo.com>
10405
10406         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10407         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10408         (gst_rtspsrc_open), (gst_rtspsrc_close),
10409         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10410         (gst_rtspsrc_pause):
10411         * gst/rtsp/gstrtspsrc.h:
10412         Protect state changes with a lock.
10413
10414         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10415         (parse_line):
10416         * gst/rtsp/rtspconnection.h:
10417         Remove some unused stuff.
10418
10419 2007-04-26  Wim Taymans  <wim@fluendo.com>
10420
10421         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10422         Handle the case where there are exactly 0 bytes to read and the ioctl
10423         did not report an error. Fixes #433530.
10424
10425 2007-04-26  Wim Taymans  <wim@fluendo.com>
10426
10427         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10428         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10429         * gst/wavparse/gstwavparse.h:
10430         Apply DISCONT to buffers.
10431         Only apply timestamp to the first sample after a DISCONT, too many VBR
10432         files cause random jitter in the timestamps. Fixes #433119.
10433
10434 2007-04-25  Wim Taymans  <wim@fluendo.com>
10435
10436         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10437         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10438         (gst_rtp_dec_get_property):
10439         * gst/rtsp/gstrtpdec.h:
10440         Add dummy latency property to be backwards compat with rtpbin.
10441
10442         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10443         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10444         (gst_rtspsrc_stream_configure_transport),
10445         (gst_rtspsrc_parse_rtpinfo):
10446         * gst/rtsp/gstrtspsrc.h:
10447         Add latency property and configure in the session manager.
10448         Don't set invalid clock-base and seqnum-base on caps, some servers
10449         sometimes don't send them.
10450
10451 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10452
10453         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10454         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10455           Double-check that RGB input caps are really RGBA caps (apparently
10456           the core doesn't always catch it if those caps aren't a subset of
10457           our template caps, also see #421543). Fixes #429319 in a way.
10458           Also, don't leak the pad template in the transform_caps function.
10459
10460         * tests/check/Makefile.am:
10461         * tests/check/elements/.cvsignore:
10462         * tests/check/elements/alphacolor.c: (setup_alphacolor),
10463         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10464         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10465         (GST_START_TEST), (alphacolor_suite):
10466           Add some basic unit tests for alphacolor.
10467
10468 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10469
10470         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10471           If we get a fatal flow return in the loop function, first post the
10472           error message and only then send the EOS event downstream, otherwise
10473           applications might get an eos message before the error message and
10474           think everything was ok (related to #429319).
10475
10476 2007-04-25  Wim Taymans  <wim@fluendo.com>
10477
10478         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10479         Read the channel byte as an unsigned byte.
10480
10481 2007-04-25  Wim Taymans  <wim@fluendo.com>
10482
10483         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10484         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10485         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10486         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10487         (gst_rtp_gsm_depay_setcaps):
10488         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10489         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10490         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10491         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10492         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10493         (gst_ilbc_depay_get_property):
10494         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10495         * gst/rtp/gstrtpmp4adepay.c:
10496         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10497         (gst_rtp_pcma_depay_setcaps):
10498         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10499         (gst_rtp_pcmu_depay_setcaps):
10500         Make sure we configure the clock_rate in the baseclass in the setcaps
10501         function. Fixes #431282.
10502
10503 2007-04-25  Wim Taymans  <wim@fluendo.com>
10504
10505         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10506         (gst_rtspsrc_stream_free), (request_pt_map),
10507         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10508         * gst/rtsp/gstrtspsrc.h:
10509         Parse server address from SDP.
10510         Hook up a udpsink to send RTCP back to the server.
10511
10512         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10513         * gst/rtsp/rtsptransport.h:
10514         Add some docs.
10515
10516 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
10517
10518         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10519           Make header field check conditional. Fixes #433135
10520
10521 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
10522
10523         * docs/plugins/Makefile.am:
10524         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10525         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10526         * docs/plugins/inspect/plugin-alphacolor.xml:
10527         * gst/alpha/Makefile.am:
10528         * gst/alpha/gstalphacolor.c:
10529         * gst/alpha/gstalphacolor.h:
10530           Add minimal docs blurb to alphacolor; split out headers into
10531           separate header file for gtk-doc.
10532
10533 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
10534
10535         * gst/debug/progressreport.c: (gst_progress_report_report):
10536           Don't try to post NULL message (in case we can't query upstream
10537           position or duration).
10538
10539 2007-04-18  Michael Smith  <msmith@fluendo.com>
10540
10541         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10542         (gst_cutter_get_caps):
10543         * gst/cutter/gstcutter.h:
10544           Fix some of the most obvious bugs in cutter. Now doesn't leak
10545           everything if input is silent.
10546
10547 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
10548
10549         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10550         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10551         * gst/wavenc/gstwavenc.h:
10552         Wav apparently only supports width==GST_ROUND_UP(depth), everything
10553         else results in a invalid block align and invalid files.
10554
10555 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10556
10557         Patch by: Snaik <snaik32 gmail com>
10558
10559         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10560           Add missing break statement for BOX_HORIZONTAL case.
10561
10562 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10563
10564         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10565
10566         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10567         Use correct format strings for integer types.
10568
10569 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10570
10571         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10572         (gst_wavparse_create_sourcepad):
10573         Use gst_riff_create_audio_template_caps () instead of the local caps.
10574         This makes updates of the local caps unecessary whenever libgstriff
10575         gets support for new formats.
10576
10577 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
10578
10579         Patch by: Brian Cameron  <brian.cameron at sun dot com>
10580
10581         * sys/sunaudio/gstsunaudio.c:
10582         * sys/sunaudio/gstsunaudiomixer.c:
10583         * sys/sunaudio/gstsunaudiomixer.h:
10584         * sys/sunaudio/gstsunaudiomixerctrl.c:
10585         * sys/sunaudio/gstsunaudiomixerctrl.h:
10586         * sys/sunaudio/gstsunaudiomixertrack.h:
10587         * sys/sunaudio/gstsunaudiosink.c:
10588         * sys/sunaudio/gstsunaudiosink.h:
10589         * sys/sunaudio/gstsunaudiosrc.c:
10590         * sys/sunaudio/gstsunaudiosrc.h:
10591           Fix and/or update copyright attributions (#430228).
10592
10593 2007-04-13  Wim Taymans  <wim@fluendo.com>
10594
10595         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10596         Fix docs.
10597
10598         * gst/rtsp/URLS:
10599         Add some more example urls.
10600
10601         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10602         (gst_rtp_dec_chain_rtp):
10603         Better debugging.
10604
10605         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10606         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10607         (gst_rtspsrc_parse_rtpinfo):
10608         Remove unused code.
10609
10610 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10611
10612         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10613         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10614         (gst_wavparse_stream_data):
10615           Relax the audio/mpeg caps again and add FIXME: comment.
10616
10617 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10618
10619         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10620         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10621         (gst_wavparse_stream_data):
10622         * gst/wavparse/gstwavparse.h:
10623           More sanity check for the header fields. Fix type for 'rate' header
10624           field.
10625
10626 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
10627
10628         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10629         (gst_icydemux_unicodify):
10630           If the metadata strings we get in the stream are not UTF-8, try to
10631           interpret them according to the character encodings specified in the
10632           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10633           only fall back to locale/ISO-8859-1 if those aren't set or don't
10634           work. Should fix #428901.
10635
10636 2007-04-12  Wim Taymans  <wim@fluendo.com>
10637
10638         * gst/rtp/gstrtph264depay.c:
10639         Use the proper sync word for SPS and PPS.
10640
10641 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10642
10643         * gst/rtp/Makefile.am:
10644         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10645           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10646         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10647           Add a simple hashing implementation that we can use to generate
10648           a 24-bit ident value based on the codebooks for vorbis and theora.
10649         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10650           gst_rtp_theora_pay_handle_buffer):
10651         * gst/rtp/gstrtpvorbisdepay.c
10652           (gst_rtp_vorbis_depay_parse_configuration,
10653           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10654         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10655           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10656           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10657           Use the hashing function, ensuring that the same codebooks result
10658           in the same ident and thus the same SDP description.
10659           Various log fixes/changes.
10660
10661 2007-04-12  Wim Taymans  <wim@fluendo.com>
10662
10663         Patch by: jerry tan <jerry dot tan at sun dot com>
10664
10665         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10666         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10667         application's responsibility to make sure it open the device once.
10668         Remove a careless error if AUDIODEV is set. Fixes #392620.
10669
10670 2007-04-12  Wim Taymans  <wim@fluendo.com>
10671
10672         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10673         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10674         * gst/rtsp/gstrtpdec.h:
10675         Make backward compat with rtpbin by adding the request-pt-map signals.
10676
10677         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10678         (new_session_pad), (request_pt_map),
10679         (gst_rtspsrc_stream_configure_transport),
10680         (gst_rtspsrc_stream_configure_caps),
10681         (gst_rtspsrc_activate_streams):
10682         * gst/rtsp/gstrtspsrc.h:
10683         Implement request-pt-map signals instead of setting caps on the buffers
10684         for the session manager.
10685
10686 2007-04-11  Wim Taymans  <wim@fluendo.com>
10687
10688         * gst/udp/gstudp.c: (plugin_init):
10689         Register GstNetBuffer in plugin_init so that the type can be used from
10690         multiple threads without races.
10691
10692 2007-04-10  Wim Taymans  <wim@fluendo.com>
10693
10694         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10695         (gst_rtp_amr_depay_process):
10696         Fix depayloader clock_rate and some cleanups.
10697
10698         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10699         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10700         * gst/rtp/gstrtph264depay.h:
10701         Don't push codec_data in the adapter because it might get flushed when
10702         we get a discont.
10703
10704         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10705         Handle multiple AU per packet.
10706
10707         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10708         (gst_rtp_sv3v_depay_plugin_init):
10709         Disable rank, this one does not work.
10710         Remove timestamping, base class does that.
10711
10712 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
10713
10714         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10715           limit caps to the formats we announce in the template
10716
10717         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10718         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10719         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10720           fix some crashers/asserts when dealing with broken files
10721
10722 2007-04-10  Wim Taymans  <wim@fluendo.com>
10723
10724         Patch by: Peter Kjellerstedt  <pkj at axis com>
10725
10726         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10727         * gst/rtp/gstrtpL16depay.c:
10728         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10729         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10730         (gst_rtp_speex_depay_setcaps):
10731         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10732         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10733         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10734         Fix some compiler warnings. Fixes #428182.
10735
10736 2007-04-06  Wim Taymans  <wim@fluendo.com>
10737
10738         * gst/rtsp/Makefile.am:
10739         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10740         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10741         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10742         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10743         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10744         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10745         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10746         (create_rtcp), (gst_rtp_dec_request_new_pad),
10747         (gst_rtp_dec_release_pad):
10748         * gst/rtsp/gstrtpdec.h:
10749         * gst/rtsp/gstrtsp.c: (plugin_init):
10750         Morph RTPDec into something compatible with RTPBin as a fallback.
10751         Various other style fixes.
10752
10753         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10754         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10755         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10756         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10757         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10758         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10759         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10760         * gst/rtsp/gstrtspsrc.h:
10761         Implement RTPBin session manager handling.
10762         Don't try to add empty properties to caps.
10763         Implement fallback session manager, handling.
10764         Don't combine errors from RTCP streams, just ignore them.
10765
10766         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10767         * gst/rtsp/rtsptransport.h:
10768         Implement fallback session manager.
10769         Make RTPBin the default one when available.
10770
10771 2007-04-05  Wim Taymans  <wim@fluendo.com>
10772
10773         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10774         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10775         This element is ready to be autoplugged.
10776
10777 2007-04-05  Julien MOUTTE  <julien@moutte.net>
10778
10779         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10780         Don't leave the offsets defined by upstream element on the
10781         compressed data buffer we are pushing downstream. Make them
10782         GST_BUFFER_OFFSET_NONE.
10783
10784 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
10785
10786         * gst/avi/README:
10787         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10788         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10789         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10790         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10791         (gst_avi_demux_calculate_durations_from_index),
10792         (gst_avi_demux_stream_header_push),
10793         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10794         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10795           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10796
10797 2007-04-03  Wim Taymans  <wim@fluendo.com>
10798
10799         * gst/smpte/barboxwipes.c:
10800         Fix error as spotted by Snaik <snaik32 at gmail dot com>
10801
10802 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10803
10804         * gst/wavparse/gstwavparse.c:
10805         Support audio/x-raw-float in wav files. This only works with
10806         plugins-base CVS, using an older version doesn't have any
10807         disadvantages though.
10808
10809 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10810
10811         * configure.ac:
10812         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10813         (gst_au_parse_parse_header), (gst_au_parse_chain):
10814         * gst/auparse/gstauparse.h:
10815         Revert last change as we don't want plugins-good to depend on
10816         plugins-base CVS now.
10817
10818 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10819
10820         * configure.ac:
10821         Require gst-plugins-base CVS for audioconvert with non-native
10822         float support and width/depth fix in libgstriff.
10823
10824         Patch by: René Stadler <mail at renestadler dot de>
10825
10826         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10827         (gst_au_parse_parse_header), (gst_au_parse_chain):
10828         * gst/auparse/gstauparse.h:
10829         Don't swap the floats ourself if they're not in native endianness.
10830         Instead let audioconvert handle this. Fixes #339838.
10831
10832 2007-03-29  Wim Taymans  <wim@fluendo.com>
10833
10834         * gst/rtp/gstasteriskh263.h:
10835         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10836         (gst_rtp_h263p_depay_change_state):
10837         * gst/rtp/gstrtph263pdepay.h:
10838         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10839         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10840         (gst_rtp_h264_depay_change_state):
10841         * gst/rtp/gstrtph264depay.h:
10842         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10843         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10844         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10845         Flush adapter on disconts.
10846
10847 2007-03-29  Wim Taymans  <wim@fluendo.com>
10848
10849         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10850         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10851         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10852         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10853         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10854         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10855         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10856         (gst_rtp_mp4v_depay_process):
10857         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10858         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10859         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10860         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10861         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10862         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10863         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10864         Use more efficient adapter and rtpbuffer methods when possible.
10865
10866 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10867
10868         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10869         (gst_wavenc_sink_setcaps):
10870         Correctly handle width!=depth input.
10871         * gst/wavparse/gstwavparse.c:
10872         Already export in the caps that width==8 uses unsigned samples and
10873         everything else uses signed samples.
10874
10875 2007-03-29  Wim Taymans  <wim@fluendo.com>
10876
10877         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10878
10879         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10880         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10881         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10882         (gst_dynudpsink_close):
10883         * gst/udp/gstdynudpsink.h:
10884         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10885         (gst_udpsrc_create), (gst_udpsrc_set_property),
10886         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10887         * gst/udp/gstudpsrc.h:
10888         Rework the socket allocation a bit based on the sockfd argument so that
10889         it becomes usable.
10890         Add a closefd property to instruct the udp elements to close the custom
10891         file descriptors when going to READY. Fixes #423304.
10892         API:GstUDPSrc::closefd property
10893         API:GstDynUDPSink::closefd property
10894
10895 2007-03-29  Wim Taymans  <wim@fluendo.com>
10896
10897         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10898
10899         * gst/rtp/Makefile.am:
10900         * gst/rtp/gstrtp.c: (plugin_init):
10901         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10902         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10903         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10904         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10905         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10906         (gst_rtp_h264_pay_plugin_init):
10907         * gst/rtp/gstrtph264pay.h:
10908         Added H264 payloader. Fixes #423782.
10909
10910         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10911         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10912         Small fixes.
10913
10914 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10915
10916         * gst/wavparse/gstwavparse.c:
10917         Actually support depths from 1 to 32, not only 8 to 32.
10918
10919 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10920
10921         * gst/wavparse/gstwavparse.c:
10922         Add support for wav files containing audio/x-raw-int with random
10923         depths between 1 and 32 bits.
10924
10925 2007-03-28  Wim Taymans  <wim@fluendo.com>
10926
10927         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
10928
10929         * gst/rtp/Makefile.am:
10930         * gst/rtp/gstrtp.c: (plugin_init):
10931         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10932         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10933         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10934         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10935         (gst_rtp_mp4a_depay_get_property),
10936         (gst_rtp_mp4a_depay_change_state),
10937         (gst_rtp_mp4a_depay_plugin_init):
10938         * gst/rtp/gstrtpmp4adepay.h:
10939         Added MP4A-LATM depayloader. Fixes #417792.
10940
10941         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10942         (gst_rtp_mp4v_depay_process):
10943         Fixup depayloader, setting codec_data, using more efficient adaptor and
10944         rtpbuffer handling.
10945
10946         * gst/rtsp/URLS:
10947         Add url to test above.
10948
10949 2007-03-25  Wim Taymans  <wim@fluendo.com>
10950
10951         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10952         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10953         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10954         (gst_rtspsrc_media_to_caps),
10955         (gst_rtspsrc_stream_configure_transport),
10956         (gst_rtspsrc_stream_configure_caps),
10957         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10958         * gst/rtsp/gstrtspsrc.h:
10959         Handle default clock-rates for static payload types, rearrange stuff so
10960         that the rtpmap field in the sdp can override the defaults.
10961         Parse RTP-Info field to get the seqnum and timebase fields that should
10962         go in the caps.
10963         Delay configuring caps after we got the RTP-Info from the PLAY reply from
10964         the server. 
10965
10966 2007-03-22  Wim Taymans  <wim@fluendo.com>
10967
10968         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10969
10970         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10971         Accept complex pipeline descriptions as an audio profile instead of just
10972         a single element. Fixes #420658.
10973
10974 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10975
10976         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10977           Rename registered type in preparation of GstTagDemux moving to
10978           -base at some point in the future.
10979
10980 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
10981
10982         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10983           Streaming mode fixes: don't unref buffer we don't own any longer;
10984           remove bogus adapter flush. Fixes #419338.
10985
10986 2007-03-17  David Schleef  <ds@schleef.org>
10987
10988         * REQUIREMENTS: Change the format to key/value, add a bunch of
10989           information, remove a bunch of requirements that are for
10990           other GStreamer packages.
10991
10992 2007-03-17  David Schleef  <ds@schleef.org>
10993
10994         * REQUIREMENTS: Fix a few things.  This file really needs a
10995         good once-over.
10996
10997 2007-03-15  Edward Hervey  <edward@fluendo.com>
10998
10999         * sys/Makefile.am:
11000         Don't forget to distribute the sys/osxaudio/ directory.
11001
11002 2007-03-15  Edward Hervey  <edward@fluendo.com>
11003
11004         * configure.ac:
11005         * sys/Makefile.am:
11006         * sys/osxaudio/Makefile.am:
11007         * sys/osxaudio/gstosxaudio.c:
11008         * sys/osxaudio/gstosxaudiosink.c:
11009         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
11010         (gst_osx_audio_sink_getcaps),
11011         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
11012         * sys/osxaudio/gstosxaudiosrc.c:
11013         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
11014         (gst_osx_audio_src_create_ringbuffer):
11015         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
11016         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
11017         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
11018         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
11019         * sys/osxaudio/gstosxringbuffer.h:
11020         Activate osxaudio in gst-plugins-good with proper build setup.
11021         Add inlined documentation.
11022         Fix debug statements
11023         Fix ringbuffer when pausing.
11024         Fixes #323471
11025
11026 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11027         * gst/rtp/gstrtppcmapay.c:
11028         * gst/rtp/gstrtppcmapay.h:
11029         * gst/rtp/gstrtppcmupay.c:
11030         * gst/rtp/gstrtppcmupay.h:
11031         Ported mulaw and alaw payloaders to use new base class
11032
11033 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11034
11035         * po/af.po:
11036         * po/az.po:
11037         * po/cs.po:
11038         * po/en_GB.po:
11039         * po/it.po:
11040         * po/nl.po:
11041         * po/or.po:
11042         * po/sq.po:
11043         * po/sr.po:
11044         * po/sv.po:
11045         * po/uk.po:
11046         * po/vi.po:
11047           Update translations.
11048
11049 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
11050
11051         * configure.ac:
11052           Fix string replace error (AG_AG_GST_* => AG_GST_*).
11053
11054 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11055
11056         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
11057           Fix handling of -1 values for start and stop values when seeking,
11058           and SEEK_CUR+SEEK_END here as well.
11059
11060 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
11061
11062         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
11063           Fix handling of -1 values for start and stop values when seeking, 
11064           and SEEK_CUR+SEEK_END.
11065
11066 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11067
11068         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
11069           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
11070           the image format a variable-length NUL-terminated string; in
11071           versions before that the image format is a fixed-length string of
11072           3 characters (see #348644 for a sample tag).
11073           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
11074
11075 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
11076
11077         * win32/MANIFEST:
11078         Add new project files to MANIFEST.
11079         * win32/vs6/libgstaudiofx.dsp:
11080         * win32/vs6/libgstrtp.dsp:
11081         * win32/vs6/libgstrtsp.dsp:
11082         Update project files.
11083         
11084 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
11085
11086         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
11087         (gst_avi_demux_parse_index):
11088         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
11089         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
11090           Printf format fixes; also add some missing quotes in translated
11091           strings. Fixes #416728 and #416727.
11092
11093 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11094
11095         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
11096           Tim and I can't think of any reason the child audio sink needs to 
11097           be set back to NULL after successfully determining that it can 
11098           reach READY - it gets immediately set back to READY by the caller
11099           anyway, causing an unnecessary close/open of any audio devices
11100           involved.
11101
11102 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11103
11104         * po/LINGUAS:
11105         * po/ja.po:
11106           Add ja.po file from #377306.
11107
11108 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11109
11110         * sys/sunaudio/gstsunaudio.c: (plugin_init):
11111         * sys/sunaudio/gstsunaudiomixertrack.c:
11112         (gst_sunaudiomixer_track_new):
11113           Actually translate sunaudio mixer track labels instead of just
11114           marking the strings as translatable (#377306); clean up weird
11115           label string mapping code that serves no apparent purpose. Also
11116           set the 'untranslated-label' property when creating mixer tracks
11117           if the GstMixerTrack base class supports this.
11118
11119         * tests/check/Makefile.am:
11120         * tests/check/elements/.cvsignore:
11121         * tests/check/elements/sunaudio.c: (GST_START_TEST),
11122         (sunaudio_suite):
11123           Very minimalistic unit test for sunaudiomixer element (compiles, but not
11124           actually tested on a system where sunaudiomixer is available).
11125
11126 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11127
11128         * tests/check/Makefile.am:
11129         Re-enable the states test and see if it works on the buildbots.
11130
11131 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11132
11133         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
11134         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
11135         (gst_dvdec_change_state):
11136         * ext/dv/gstdvdec.h:
11137         Infer pixel-aspect-ratio from the video frame format if it isn't
11138         provided by the container, as happens when playing DV from AVI
11139         or Quicktime containers.
11140
11141         Patch by: Wim Taymans <wim@fluendo.com>
11142         Fixes #380944
11143
11144 2007-03-09  Wim Taymans  <wim@fluendo.com>
11145
11146         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
11147         When activated, remove the udpsrc timeout, we have dataflow and timeouts
11148         will later be handled by the jitterbuffer.
11149
11150 2007-03-09  Wim Taymans  <wim@fluendo.com>
11151
11152         * ext/taglib/gstid3v2mux.cc:
11153         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
11154         Fixes #414496.
11155         
11156         Patch by: Alex Lancaster <alexl at users sourceforge net>
11157
11158 2007-03-09  Wim Taymans  <wim@fluendo.com>
11159
11160         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11161         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
11162         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11163         (gst_avi_demux_chain):
11164         Fix stream position reporting after a seek. Fixes #416445.
11165
11166 2007-03-08  Wim Taymans  <wim@fluendo.com>
11167
11168         Patch by: René Stadler <mail at renestadler dot de>
11169
11170         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11171         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
11172         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
11173         Make avidemux accept optional header chunks in any order.
11174         Fixes #415446.
11175
11176 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
11177
11178         * tests/check/Makefile.am:
11179         Disable the states check until the remaining Valgrind errors
11180         are fixed or suppressed.
11181
11182 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11183
11184         * tests/check/elements/.cvsignore:
11185           Add audiodynamic check to .cvsignore
11186
11187 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11188
11189         reviewed by: Stefan Kost  <ensonic@users.sf.net>
11190
11191         * gst/audiofx/Makefile.am:
11192         * gst/audiofx/audiodynamic.c:
11193         (gst_audio_dynamic_characteristics_get_type),
11194         (gst_audio_dynamic_mode_get_type),
11195         (gst_audio_dynamic_set_process_function),
11196         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11197         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11198         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11199         (gst_audio_dynamic_transform_hard_knee_compressor_int),
11200         (gst_audio_dynamic_transform_hard_knee_compressor_float),
11201         (gst_audio_dynamic_transform_soft_knee_compressor_int),
11202         (gst_audio_dynamic_transform_soft_knee_compressor_float),
11203         (gst_audio_dynamic_transform_hard_knee_expander_int),
11204         (gst_audio_dynamic_transform_hard_knee_expander_float),
11205         (gst_audio_dynamic_transform_soft_knee_expander_int),
11206         (gst_audio_dynamic_transform_soft_knee_expander_float),
11207         (gst_audio_dynamic_transform_ip):
11208         * gst/audiofx/audiodynamic.h:
11209         * gst/audiofx/audiofx.c: (plugin_init):
11210         Add new audiodynamic element which can act as a compressor or
11211         expander. Supported are hard-knee and soft-knee operation modes with
11212         user-specified ratio and threshold.
11213         Attack and release parameters are not yet implemented but will follow.
11214         * docs/plugins/Makefile.am:
11215         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11216         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11217         * docs/plugins/gst-plugins-good-plugins.args:
11218         * docs/plugins/inspect/plugin-audiofx.xml:
11219         Integrate audiodynamic into the docs.
11220         * tests/check/Makefile.am:
11221         * tests/check/elements/audiodynamic.c: (setup_dynamic),
11222         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11223         Add unit test for audiodynamic.
11224
11225 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
11226
11227         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11228         Free handles that we allocated when exiting via the error paths.
11229
11230 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
11231
11232         * gst/level/gstlevel.c: (gst_level_class_init),
11233         (gst_level_set_caps), (gst_level_start), (gst_level_event),
11234         (gst_level_transform_ip):
11235         * gst/level/gstlevel.h:
11236           Resolve message timestamps against the playback segment.
11237
11238 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11239
11240         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11241         (gst_id3demux_sink_activate):
11242           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11243           caps passed to it (previously one code path assumed it took ownership
11244           while another one assumed it didn't, while in fact it sometimes did and
11245           sometimes didn't ...).
11246
11247         * configure.ac:
11248         * tests/files/Makefile.am:
11249         * tests/files/id3-407349-1.tag:
11250         * tests/files/id3-407349-2.tag:
11251           Add directory where data for unit tests can be stored.
11252
11253         * tests/Makefile.am:
11254         * tests/check/Makefile.am:
11255         * tests/check/elements/.cvsignore:
11256         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11257         (read_tags_from_file), (run_check_for_file),
11258         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11259           Add unit test for id3demux, and in particular for bug #407349. Only
11260           testing pull-mode for now; push mode doesn't work yet because the test
11261           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11262
11263 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11264
11265         * tests/check/Makefile.am:
11266           Add missing backslash at end of line.
11267
11268 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11269
11270         Trigger rebuild.
11271
11272 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11273
11274         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11275         * gst/id3demux/id3tags.h:
11276         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11277         (parse_obsolete_tdat_frame):
11278           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11279           the four-digit number will be interpreted as a year, whereas it is
11280           month and day in DDMM format. Instead, parse TDAT frames and fix up
11281           the date in the GST_TAG_DATE tag later if we also extracted a year.
11282           Fixes #407349.
11283
11284 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11285
11286         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11287         (gst_switch_commit_new_kid):
11288         Fix up the dispose logic so it doesn't leak, and fix setting of 
11289         the child state so that we don't set a child to our current state 
11290         just as we are changing it to something else.
11291
11292 2007-03-06  Wim Taymans  <wim@fluendo.com>
11293
11294         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11295         (gst_goom_chain):
11296         * gst/goom/gstgoom.h:
11297         Document, fix and improve goom adapter behaviour.
11298         Fixes #407006.
11299
11300 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11301
11302         * ext/esd/esdsink.c: (gst_esdsink_open):
11303         Unref static pad template after using it.
11304
11305 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11306
11307         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11308         (gst_switch_commit_new_kid):
11309         Fix up the reference counting of the child elements.
11310
11311 2007-03-05  Wim Taymans  <wim@fluendo.com>
11312
11313         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11314         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11315         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11316         Fix encoding-name case.
11317
11318 2007-03-05  Wim Taymans  <wim@fluendo.com>
11319
11320         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11321         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11322         (gst_rtp_speex_depay_process):
11323         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11324         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11325         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11326         (gst_rtp_speex_pay_change_state):
11327         * gst/rtp/gstrtpspeexpay.h:
11328         Fix speex (de)payloader. Fixes #358040.
11329
11330 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11331
11332         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11333         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11334         Install fakesink in NULL by fixing some broken logic. This obviates
11335         the need to manually set _IS_SINK.
11336         Add some comments and remove a little cruft while I'm at it.
11337
11338 2007-03-05  Wim Taymans  <wim@fluendo.com>
11339
11340         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11341         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11342
11343 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
11344
11345         * po/POTFILES.in:
11346           Update.
11347
11348 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11349
11350         * tests/check/Makefile.am:
11351         Gah! Also disable gconfvideosink from the tests, otherwise
11352         it will instantiate autovideosink, and dfbvideosink and
11353         leak on the buildbots.
11354
11355 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11356
11357         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11358         (gst_cdio_cdda_src_finalize):
11359         Make sure we always destroy our libcdio handle.
11360
11361 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11362
11363         * tests/check/Makefile.am:
11364         Disable autovideosink so the buildbots don't barf over memory
11365         leaked in the directfb sink.
11366
11367 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11368
11369         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11370         Chain up in dispose
11371
11372 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11373
11374         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11375         (gst_multipart_find_pad_by_mime):
11376         Use gst_pad_new_from_static_template instead of
11377         static_pad_template_get+pad_new.
11378
11379 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11380
11381         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11382         Catch the case where no clock has been set.
11383
11384 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11385
11386         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11387         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11388         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11389         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11390         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11391         (gst_gconf_audio_src_finalize), (do_toggle_element):
11392         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11393         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11394         (do_toggle_element):
11395         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11396         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11397         (gst_gconf_video_src_finalize), (do_toggle_element):
11398         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11399         (gst_switch_sink_reset), (gst_switch_sink_set_child):
11400         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11401         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11402         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11403         (gst_shout2send_init), (gst_shout2send_finalize):
11404         * gst/debug/testplugin.c: (gst_test_class_init),
11405         (gst_test_finalize):
11406         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11407         (gst_flxdec_dispose):
11408         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11409         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11410         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11411         (gst_rtspsrc_finalize):
11412         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11413         * gst/rtsp/rtspextwms.h:
11414         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11415         (gst_smpte_finalize):
11416         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11417         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11418         (gst_udpsink_finalize):
11419         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11420         (gst_wavparse_sink_activate):
11421         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11422         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11423         (gst_oss_src_finalize):
11424         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11425         * sys/v4l2/gstv4l2object.h:
11426         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11427         (gst_v4l2src_finalize):
11428         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11429
11430         Fix a bunch of leaks shown by the newly-added states test.
11431
11432 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11433
11434         * ext/dv/gstdvdec.c: (gst_dvdec_init):
11435         Use gst_pad_new_from_static_template instead of 
11436         static_pad_template_get+pad_new.
11437
11438 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
11439
11440         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11441
11442         * ext/libcaca/Makefile.am:
11443         * gst/debug/Makefile.am:
11444           Don't mix tabs and spaces (#414168).
11445
11446 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11447
11448         * tests/check/generic/.cvsignore:
11449           Ignore files to please buildbot.
11450
11451 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11452
11453         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11454         (gst_wavparse_stream_data):
11455           Unbreak my previous commit (swapped nominator & denominator). Tim,
11456           thanks for spotting.
11457
11458 2007-03-02  Wim Taymans  <wim@fluendo.com>
11459
11460         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11461         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11462         (gst_cdio_cdda_src_finalize):
11463         Small code cleanups.
11464         Don't use pad_alloc as the base class cannot deal with the error codes.
11465
11466 2007-03-02  Wim Taymans  <wim@fluendo.com>
11467
11468         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11469         (gst_udpsrc_create):
11470         Fix doc.
11471
11472 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11473
11474         Patch by: René Stadler <mail@renestadler.de>
11475
11476         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11477         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11478         (gst_wavparse_stream_data):
11479           Handle rounding better to not drop last sample frame. Fixes #356692
11480
11481 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
11482
11483         * tests/check/Makefile.am:
11484         Disable cacasink from the states check too - it also calls exit(1)
11485         on us when it can't find a terminal to talk to.
11486
11487 2007-03-02  Wim Taymans  <wim@fluendo.com>
11488
11489         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11490
11491         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11492         (gst_udpsrc_create), (gst_udpsrc_set_property),
11493         (gst_udpsrc_get_property):
11494         * gst/udp/gstudpsrc.h:
11495         Add support to strip proprietary headers. Fixes #350296.
11496
11497 2007-03-02  Wim Taymans  <wim@fluendo.com>
11498
11499         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11500         Fix compilation.
11501
11502 2007-03-02  Wim Taymans  <wim@fluendo.com>
11503
11504         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11505
11506         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11507         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11508         (gst_rtp_mp2t_depay_set_property),
11509         (gst_rtp_mp2t_depay_get_property):
11510         * gst/rtp/gstrtpmp2tdepay.h:
11511         Add support to strip off proprietary headers. Fixes #350278.
11512
11513 2007-03-02  Wim Taymans  <wim@fluendo.com>
11514
11515         * ext/hal/hal.c:
11516         Fix compilation.
11517
11518 2007-03-02  Wim Taymans  <wim@fluendo.com>
11519
11520         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11521         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11522         (gst_sunaudiosrc_open):
11523         * sys/sunaudio/gstsunaudiosrc.h:
11524         Remove device-name from GstSunAudioSrc. Fixes #412597.
11525
11526 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11527
11528         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11529         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11530         Having NULL as UDI previously selected the default sink/src. Change
11531         this back but mention it in the debug output.
11532         * ext/hal/hal.c: (gst_hal_get_alsa_element),
11533         (gst_hal_get_oss_element), (gst_hal_get_string),
11534         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11535         (gst_hal_get_audio_src):
11536         * ext/hal/hal.h:
11537         Refactor a bit, check all error conditions, greatly improve debugging
11538         and fix some possible memory leaks. Also implement OSS support
11539         and allow specifying an UDI that points to a real device. For this the
11540         child device which supports ALSA (preferred) or OSS is used.
11541         As a side effect this makes it impossible now to get a alsasink in
11542         halaudiosrc and a alsasrc in halaudiosink.
11543
11544 2007-03-01  Wim Taymans  <wim@fluendo.com>
11545
11546         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11547         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11548         Errors from the udp sources are not fatal unless all of them are in
11549         error.
11550
11551 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11552
11553         * tests/check/Makefile.am:
11554         Disable aasink in the states test. I suspect this is the element that
11555         is calling exit(1) when it can't proceed.
11556
11557 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11558
11559         * tests/check/Makefile.am:
11560         Draw plugins in from the build tree sys/ dir, rather than picking
11561         up the already installed versions.
11562
11563 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11564
11565         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11566         Error out correctly when getting xcontext fails.
11567
11568 2007-03-01  Wim Taymans  <wim@fluendo.com>
11569
11570         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11571         Make state change to PAUSED NO_PREROLL because that's what it will be in
11572         the future and rtspsrc relies on it.
11573
11574         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11575         (gst_rtspsrc_change_state):
11576         Don't error out when we don't get an error from the state change
11577         function.
11578
11579 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11580
11581         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11582         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11583           Check if the device UDI is set before trying to query HAL
11584           about it and give a useful error message if it wasn't set.
11585         * ext/hal/hal.c: (gst_hal_get_string):
11586           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11587           gives an assertion failure in D-Bus when running with
11588           DBUS_FATAL_WARNINGS=1.
11589
11590 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11591
11592         * configure.ac:
11593           Convert to new AG_GST style.
11594
11595 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11596
11597         * tests/check/Makefile.am:
11598         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11599           add test for states
11600
11601 2007-02-28  Wim Taymans  <wim@fluendo.com>
11602
11603         * tests/check/elements/.cvsignore:
11604         Add new videofilter check to .cvsignore.
11605
11606 2007-02-28  Wim Taymans  <wim@fluendo.com>
11607
11608         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11609         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11610         (gst_avi_demux_loop), (gst_avi_demux_chain):
11611         Fix combined flow return. Fixes #412608.
11612
11613 2007-02-28  Wim Taymans  <wim@fluendo.com>
11614
11615         * gst/videofilter/Makefile.am:
11616         Dist header..
11617
11618 2007-02-28  Wim Taymans  <wim@fluendo.com>
11619
11620         * gst/videofilter/gstgamma.h:
11621         Add header too.
11622
11623 2007-02-28  Wim Taymans  <wim@fluendo.com>
11624
11625         Patch by: Mark Nauwelaerts <manauw at skynet be>
11626
11627         * gst/videofilter/Makefile.am:
11628         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11629         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11630         (gst_gamma_get_property), (gst_gamma_calculate_tables),
11631         (oil_tablelookup_u8), (gst_gamma_set_caps),
11632         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11633         Port gamma filter to 0.10. Fixes #412704.
11634
11635         * tests/check/Makefile.am:
11636         * tests/check/elements/videofilter.c: (setup_filter),
11637         (cleanup_filter), (check_filter), (GST_START_TEST),
11638         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11639         Add unit tests for videofilters.
11640
11641 2007-02-28  Wim Taymans  <wim@fluendo.com>
11642
11643         * gst/rtsp/URLS:
11644         Add another interesting test url.
11645
11646         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11647         Don't allow getting header fields from data packets.
11648
11649 2007-02-28  Michael Smith  <msmith@fluendo.com>
11650
11651         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11652         (gst_shout2send_init), (gst_shout2send_start),
11653         (gst_shout2send_set_property), (gst_shout2send_get_property):
11654         * ext/shout2/gstshout2.h:
11655           Add a property for username.
11656
11657 2007-02-27  Christian Schallerr <christian@fluendo.com>
11658
11659         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11660
11661 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11662
11663         * gst/rtsp/Makefile.am:
11664         Fix make check too.
11665
11666 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11667
11668         * gst/rtsp/base64.c: (util_base64_encode):
11669         * gst/rtsp/base64.h:
11670         Commit missing files for base64 encoding.
11671
11672 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11673
11674         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11675
11676         * configure.ac:
11677         * ext/annodex/Makefile.am:
11678         * ext/jpeg/Makefile.am:
11679         * ext/speex/Makefile.am:
11680         * gst/alpha/Makefile.am:
11681         * gst/cutter/Makefile.am:
11682         * gst/debug/Makefile.am:
11683         * gst/effectv/Makefile.am:
11684         * gst/goom/Makefile.am:
11685         * gst/level/Makefile.am:
11686         * gst/smpte/Makefile.am:
11687         * gst/videofilter/Makefile.am:
11688           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11689
11690 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11691
11692         * gst/rtsp/Makefile.am:
11693         * gst/rtsp/rtspconnection.c: (append_auth_header),
11694         (rtsp_connection_send), (rtsp_connection_set_auth):
11695         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11696         from icecast to replace it. Relicensed from GPL courtesy of Mike
11697         Smith.
11698
11699 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11700
11701         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11702         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11703         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11704         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11705         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11706         (gst_rtspsrc_uri_set_uri):
11707         * gst/rtsp/gstrtspsrc.h:
11708         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11709         (append_auth_header), (rtsp_connection_send),
11710         (rtsp_connection_free), (rtsp_connection_set_auth):
11711         * gst/rtsp/rtspconnection.h:
11712         * gst/rtsp/rtspdefs.h:
11713         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11714         * gst/rtsp/rtspurl.h:
11715
11716         Implement simple Basic Authentication support so that urls like
11717         rtsp://user:pass@hostname/rtspstream work on hosts that require
11718         authentication.
11719
11720 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
11721
11722         * sys/v4l2/gstv4l2object.c:
11723         * sys/v4l2/gstv4l2tuner.c:
11724         * sys/v4l2/v4l2_calls.c:
11725         Fix segfault when oppening a radio device.
11726         
11727 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
11728
11729         * gst/level/gstlevel.c: (gst_level_set_caps),
11730         (gst_level_transform_ip):
11731         * sys/v4l2/README:
11732         * tests/check/elements/level.c: (GST_START_TEST):
11733           Fix level for multi-channel case.
11734
11735 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
11736
11737         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11738         (gst_level_transform_ip):
11739         * gst/level/gstlevel.h:
11740           Use function pointer for process function and add process functions
11741           for float audio.
11742
11743 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
11744
11745         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11746         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11747         (gst_v4l2src_capture_init):
11748           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11749           fixes #407369
11750
11751 2007-02-18  Wim Taymans  <wim@fluendo.com>
11752
11753         * gst/rtp/Makefile.am:
11754         * gst/rtp/gstrtp.c: (plugin_init):
11755         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11756         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11757         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11758         (gst_rtp_mp2t_pay_plugin_init):
11759         * gst/rtp/gstrtpmp2tpay.h:
11760         Added simple mpeg transport stream payloader.
11761
11762 2007-02-16  Wim Taymans  <wim@fluendo.com>
11763
11764         * gst/rtsp/URLS:
11765         Add example H264 rtsp url.
11766
11767         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11768         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11769         Don't convert values to lowercase or we might mess up base64 encoded
11770         properties.
11771
11772 2007-02-16  Wim Taymans  <wim@fluendo.com>
11773
11774         * gst/rtp/README:
11775         Fix case of string params.
11776
11777         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11778         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11779         Fix depayloader, support more packet types.
11780         Add sync codes to make sure the packetizer can do its job.
11781
11782         * gst/rtp/gstrtpmp4gdepay.c:
11783         * gst/rtp/gstrtpmp4gpay.c:
11784         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11785         Fix caps case again.
11786
11787 2007-02-15  Wim Taymans  <wim@fluendo.com>
11788
11789         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11790         Set right caps on output buffers.
11791
11792 2007-02-14  Wim Taymans  <wim@fluendo.com>
11793
11794         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11795         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
11796         Clear stack allocated SDPMedia struct before calling _init() on it.
11797         Clarify this in the docs as well.
11798
11799 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
11800
11801         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11802         (do_change_child):
11803         Don't reset the profile when going switching states, as it makes
11804         the element non-reusable.
11805
11806 2007-02-14  Wim Taymans  <wim@fluendo.com>
11807
11808         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11809         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11810         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11811         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11812         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11813         (sdp_parse_line):
11814         * gst/rtsp/sdpmessage.h:
11815         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11816         Fix memory management of SDP messages. Fixes #407793.
11817
11818 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
11819
11820         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11821
11822         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11823         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11824
11825 2007-02-14  Wim Taymans  <wim@fluendo.com>
11826
11827         Patch by: jp.liu <jp_liu at astrocom dot cn>
11828
11829         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11830         Fix parsing of password field in url. Fixes #407797.
11831
11832 2007-02-14  Wim Taymans  <wim@fluendo.com>
11833
11834         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11835         (gst_wavparse_reset), (gst_wavparse_init),
11836         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11837         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11838         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11839         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11840         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11841         (gst_wavparse_loop), (gst_wavparse_chain),
11842         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11843         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11844         (plugin_init):
11845         * gst/wavparse/gstwavparse.h:
11846         Update docs.
11847         Use boilerplate.
11848         Various code cleanups.
11849         When the bitrate is not known (bps == 0 or compressed formats) let
11850         downstream element guestimate the duration and position and don't
11851         generate timestamps or durations. Fixes #405213.
11852         Fix EOS and ERROR conditions in chain mode, we just need to forward the
11853         error flowreturn upstream.
11854
11855 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11856
11857         * ext/gconf/Makefile.am:
11858         * ext/gconf/gconf.c: (gst_gconf_get_string),
11859         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11860         (gst_gconf_render_bin_with_default):
11861         * ext/gconf/gconf.h:
11862         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11863         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11864         (gst_gconf_audio_sink_dispose), (do_change_child),
11865         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11866         (cb_change_child), (gst_gconf_audio_sink_change_state):
11867         * ext/gconf/gstgconfaudiosink.h:
11868         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11869         (gst_switch_sink_class_init), (gst_switch_sink_reset),
11870         (gst_switch_sink_init), (gst_switch_sink_dispose),
11871         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11872         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11873         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11874         * ext/gconf/gstswitchsink.h:
11875         * gst/autodetect/gstautoaudiosink.c:
11876         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11877         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11878         (gst_auto_audio_sink_detect):
11879         * gst/autodetect/gstautovideosink.c:
11880         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11881         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11882         (gst_auto_video_sink_detect):
11883         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11884         and a child that implements the GConf key monitoring. The end goal of
11885         this is an audio sink that can be changed on the fly, but at the 
11886         moment it still only changes on the next READY transition.
11887
11888 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11889
11890         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11891         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11892         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11893         (gst_avi_demux_calculate_durations_from_index),
11894         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11895         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11896         (gst_avi_demux_loop):
11897           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11898
11899 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11900
11901         * configure.ac:
11902         * docs/plugins/Makefile.am:
11903           Add crossreferences to glib/gobject/gstream docs.
11904
11905 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11906
11907         * gst/monoscope/Makefile.am:
11908         * gst/monoscope/gstmonoscope.c:
11909           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11910           (but no LIBS, since we only use defines from the headers).
11911
11912 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11913
11914         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
11915
11916         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11917         (gst_wavparse_stream_data):
11918           Fix massive memory leak when operating in streaming mode due to
11919           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11920           Fixes #407057.
11921
11922 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11923
11924         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11925         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11926         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11927         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11928         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11929         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11930         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11931         (gst_avi_demux_calculate_durations_from_index),
11932         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11933         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11934         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11935         * gst/avi/gstavidemux.h:
11936           Save some memory (8%) by repacking the index entry structure (more to
11937           come). Add more FIXMEs to questionable parts.
11938
11939 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11940
11941         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11942         (gst_v4l2src_get_caps):
11943         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11944         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11945         (gst_v4l2src_capture_init):
11946           More FIXME comments and messaging changes.
11947
11948 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11949
11950         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11951         (gst_goom_change_state):
11952         * gst/goom/gstgoom.h:
11953           Improved docs and use GST_DEBUG_FUNCPTR.
11954
11955         * gst/level/gstlevel.c: (gst_level_class_init):
11956           Use GST_DEBUG_FUNCPTR.
11957
11958         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11959         (gst_monoscope_chain), (gst_monoscope_change_state):
11960           Improved docs source cleanups.
11961
11962 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11963
11964         * gst/debug/Makefile.am:
11965         * gst/debug/gstdebug.c: (plugin_init):
11966         * gst/debug/gstpushfilesrc.c:
11967         * gst/debug/gstpushfilesrc.h:
11968           Add code for a pushfilesrc element that implements a pushfile:// URI
11969           handler, to make debugging push-mode operation of demuxer/decoders
11970           that support both easier in connection with seek/playbin/etc.
11971           The element isn't registered at the moment.
11972
11973 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
11974
11975         * gst/avi/gstavimux.c:
11976           Comment a #if 0 in caps template definition as VS6 seems to 
11977         do not support it.
11978         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11979           Use gst_guint64_to_gdouble for conversion.
11980         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11981           Move variables declaration before the first instruction.
11982         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11983           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11984           And don't include netdb.h for G_OS_WIN32
11985         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11986           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
11987           by VS6 then use an other way to initialize SDPMedia structure.
11988         * gst/udp/gstdynudpsink.h:
11989         * gst/udp/gstdynudpnetutils.h:
11990           Do not include <sys/time.h> for G_OS_WIN32
11991         * gst/udp/gstudpsrc.c:
11992           Define socklen_t as int for G_OS_WIN32
11993         * win/common/config.h.in:
11994           Undef HAVE_NETINET_IN_H
11995         * win32/vs6/gst_plugins_good.dsw:
11996         * win32/vs6/libgstrtp.dsp:
11997         * win32/vs6/libgstrtsp.dsp:
11998         * win32/vs6/libgstautogen.dsp:
11999         * win32/vs6/libgstaudiofx.dsp:
12000         * win32/vs6/libgstudp.dsp:
12001           Add and update project files.
12002         * win32/common/gstudp-enumtypes.c:
12003         * win32/common/gstudp-enumtypes.h:
12004           Add a copy of udp enumtypes to win32/common as in core 
12005           and base.
12006         
12007 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
12008
12009         * configure.ac:
12010           Activate monoscope when building with --enable-experimental. Fix
12011           --enable-external configure switch description.
12012
12013         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
12014         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
12015           Help gst-indent.
12016
12017 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
12018
12019         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
12020           Explicitly cast result of pointer arithmetic to integer in order to
12021           avoid compiler warnings on some 64-bit systems. Should fix #406018.
12022
12023 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
12024
12025         * gst/debug/progressreport.c:
12026           Some more docs.
12027
12028 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12029
12030         * docs/plugins/inspect/plugin-rtp.xml:
12031           Update for new elements.
12032
12033         * gst/debug/progressreport.h:
12034           Commit newly-created header file as well.
12035
12036 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12037
12038         * docs/plugins/Makefile.am:
12039         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12040         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12041         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12042         * gst/debug/Makefile.am:
12043         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
12044         (gst_progress_report_do_query), (gst_progress_report_report):
12045           Make progressreport element post messages with the current progress
12046           on the bus. Also add some basic docs for it.
12047
12048 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
12049
12050         * ext/hal/hal.c: (gst_hal_get_string):
12051         * ext/hal/hal.h:
12052           Some small cleanups; deal with errors when parsing the HAL ALSA
12053           capabilities a bit better.
12054
12055 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12056
12057         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
12058           Let's try this again and use the right cast this time.
12059
12060 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12061
12062         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
12063           Add cast to avoid compiler warnings with older GLib versions
12064           where the nick/name members in GEnumValue are not declared as
12065           constant strings.
12066
12067 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12068
12069         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
12070         (gst_gconf_render_bin_from_key),
12071         (gst_gconf_get_default_audio_sink):
12072         * ext/gconf/gconf.h:
12073         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
12074         (do_toggle_element), (gst_gconf_audio_sink_set_property),
12075         (gst_gconf_audio_sink_get_property):
12076           In gconfaudiosink, get the right key as the old key in do_toggle
12077           (ie. one dependent on the profile selected). Log some more stuff so
12078           we can see what's actually going on.
12079
12080 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
12081
12082         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
12083         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
12084         (gst_audio_amplify_set_process_function),
12085         (gst_audio_amplify_setup):
12086         * gst/audiofx/audioamplify.h:
12087         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12088         (gst_audio_invert_class_init), (gst_audio_invert_setup):
12089         * gst/audiofx/audioinvert.h:
12090         Some small cleanups and port both elements to the new GstAudioFilter
12091         base class to save a few lines of common code.
12092         * gst/audiofx/Makefile.am:
12093         Link against libgstaudio for the above changes
12094
12095 2007-01-29  Wim Taymans  <wim@fluendo.com>
12096
12097         * tests/check/elements/.cvsignore:
12098         Some more ignores.
12099
12100 2007-01-26  Wim Taymans  <wim@fluendo.com>
12101
12102         Patch by: charles <charlesg3 at gmail dot com>
12103
12104         * ext/shout2/gstshout2.c: (gst_shout2send_init),
12105         (set_shout_metadata), (gst_shout2send_event):
12106         * ext/shout2/gstshout2.h:
12107         Properly handle tags in shout2send. Fixes #399825.
12108
12109 2007-01-25  Wim Taymans  <wim@fluendo.com>
12110
12111         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
12112         (gst_rtspsrc_activate_streams):
12113         Convert SDP fields to upper/lowercase following the rules in the SDP to
12114         caps document. 
12115
12116 2007-01-25  Wim Taymans  <wim@fluendo.com>
12117
12118         * gst/rtp/README:
12119         * gst/rtp/gstrtpilbcdepay.c:
12120         * gst/rtp/gstrtpilbcpay.c:
12121         * gst/rtp/gstrtpmp4gdepay.c:
12122         * gst/rtp/gstrtpmp4gpay.c:
12123         * gst/rtp/gstrtpspeexdepay.c:
12124         * gst/rtp/gstrtpspeexpay.c:
12125         * gst/rtp/gstrtpsv3vdepay.c:
12126         * gst/rtp/gstrtptheoradepay.c:
12127         * gst/rtp/gstrtptheorapay.c:
12128         * gst/rtp/gstrtpvorbisdepay.c:
12129         * gst/rtp/gstrtpvorbispay.c:
12130         Fix case of encoding-name and key/value pairs to match the document.
12131         This is to make interoperation with SDP case-insensitive as required by
12132         the relevant RFCs.
12133
12134 2007-01-25  Wim Taymans  <wim@fluendo.com>
12135
12136         * configure.ac:
12137         Bump required -core/-base to CVS
12138
12139 2007-01-25  Wim Taymans  <wim@fluendo.com>
12140
12141         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
12142         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
12143         * gst/rtp/gstrtpL16pay.h:
12144         Fill up to MTU using adapter.
12145         Timestamp rtp packets.
12146
12147 2007-01-25  Edward Hervey  <edward@fluendo.com>
12148
12149         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12150         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
12151         Use G_GSIZE_FORMAT in print statements for portability.
12152         Fixes build on macosx.
12153
12154 2007-01-24  Wim Taymans  <wim@fluendo.com>
12155
12156         * gst/rtp/Makefile.am:
12157         * gst/rtp/gstrtp.c: (plugin_init):
12158         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
12159         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
12160         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
12161         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
12162         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
12163         (gst_rtp_L16_depay_plugin_init):
12164         * gst/rtp/gstrtpL16depay.h:
12165         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
12166         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
12167         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
12168         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
12169         (gst_rtp_L16_pay_plugin_init):
12170         * gst/rtp/gstrtpL16pay.h:
12171         Port and enable raw audio payloader/depayloader. Needs a bit more work
12172         on the payloader side.
12173
12174 2007-01-24  Wim Taymans  <wim@fluendo.com>
12175
12176         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
12177         (gst_rtspsrc_stream_configure_transport),
12178         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12179         * gst/rtsp/gstrtspsrc.h:
12180         Only unblock the udp pads when we linked and activated them all.
12181         Fixes #395688.
12182
12183 2007-01-24  Wim Taymans  <wim@fluendo.com>
12184
12185         * gst/rtp/Makefile.am:
12186         * gst/rtp/gstrtp.c: (plugin_init):
12187         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12188         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12189         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12190         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12191         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12192         * gst/rtp/gstrtpac3depay.h:
12193         Added simple AC3 depayloader (RFC 4184).
12194
12195         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12196         Fix a leak.
12197
12198 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
12199
12200         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12201
12202         * gst/audiofx/Makefile.am:
12203         * gst/audiofx/audioamplify.c:
12204         (gst_audio_amplify_clipping_method_get_type),
12205         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12206         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12207         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12208         (gst_audio_amplify_set_caps),
12209         (gst_audio_amplify_transform_int_clip),
12210         (gst_audio_amplify_transform_int_wrap_negative),
12211         (gst_audio_amplify_transform_int_wrap_positive),
12212         (gst_audio_amplify_transform_float_clip),
12213         (gst_audio_amplify_transform_float_wrap_negative),
12214         (gst_audio_amplify_transform_float_wrap_positive),
12215         (gst_audio_amplify_transform_ip):
12216         * gst/audiofx/audioamplify.h:
12217         * gst/audiofx/audiofx.c: (plugin_init):
12218         Add new element "audioamplify". This allows scaling of raw audio
12219         samples, similar to the "volume" element, but provides different modes
12220         for clipping and allows unlimited amplification. It's mainly targeted
12221         for creative sound design and not as a replacement of the "volume"
12222         element. Fixes #397162
12223         * docs/plugins/Makefile.am:
12224         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12225         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12226         * docs/plugins/gst-plugins-good-plugins.args:
12227         * docs/plugins/inspect/plugin-audiofx.xml:
12228         Add docs for audioamplify and integrate them into the build system
12229         * tests/check/Makefile.am:
12230         * tests/check/elements/audioamplify.c: (setup_amplify),
12231         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12232         Add fairly extensive unit test suite for audioamplify
12233
12234 2007-01-24  Wim Taymans  <wim@fluendo.com>
12235
12236         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12237         Unblock pads after adding the pads to the element so that autopluggers
12238         get a change to link something. Possibly fixes #395688.
12239
12240 2007-01-24  Wim Taymans  <wim@fluendo.com>
12241
12242         * gst/rtp/gstrtpamrdepay.c:
12243         * gst/rtp/gstrtpgsmdepay.c:
12244         * gst/rtp/gstrtph263pdepay.c:
12245         * gst/rtp/gstrtph263ppay.c:
12246         * gst/rtp/gstrtph264depay.c:
12247         * gst/rtp/gstrtpilbcdepay.c:
12248         * gst/rtp/gstrtpmp2tdepay.c:
12249         * gst/rtp/gstrtpmp4gdepay.c:
12250         * gst/rtp/gstrtpmp4gpay.c:
12251         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12252         * gst/rtp/gstrtpmp4vpay.c:
12253         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12254         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12255         (gst_rtp_mpa_depay_process):
12256         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12257         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12258         * gst/rtp/gstrtppcmadepay.c:
12259         * gst/rtp/gstrtppcmudepay.c:
12260         * gst/rtp/gstrtpspeexdepay.c:
12261         * gst/rtp/gstrtpspeexpay.c:
12262         * gst/rtp/gstrtpsv3vdepay.c:
12263         * gst/rtp/gstrtptheoradepay.c:
12264         * gst/rtp/gstrtptheorapay.c:
12265         * gst/rtp/gstrtpvorbisdepay.c:
12266         * gst/rtp/gstrtpvorbispay.c:
12267         Fix caps with payload numbers.
12268         Add some fixed payload numbers to caps when possible.
12269
12270 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
12271
12272         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12273
12274         * gst/audiofx/Makefile.am:
12275         * gst/audiofx/audiofx.c: (plugin_init):
12276         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12277         (gst_audio_invert_class_init), (gst_audio_invert_init),
12278         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12279         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12280         (gst_audio_invert_transform_float),
12281         (gst_audio_invert_transform_ip):
12282         * gst/audiofx/audioinvert.h:
12283         Add new audiofx element "audioinvert". This element swaps the upper
12284         and lower half of samples and can be used for example for a
12285         wide-stereo effect. Fixes #396057
12286         * docs/plugins/Makefile.am:
12287         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12288         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12289         * docs/plugins/gst-plugins-good-plugins.args:
12290         * docs/plugins/inspect/plugin-audiofx.xml:
12291         Add docs for the audioinvert element and add them to the build system.
12292         * tests/check/Makefile.am:
12293         * tests/check/elements/audioinvert.c: (setup_invert),
12294         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12295         Add unit test suite for the audioinvert element.
12296
12297 2007-01-23  Wim Taymans  <wim@fluendo.com>
12298
12299         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12300         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12301         Parse config params as string and int.
12302         Parse and use AU header length
12303
12304 2007-01-23  Wim Taymans  <wim@fluendo.com>
12305
12306         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12307         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12308         * gst/smpte/gstmask.c: (_gst_mask_register):
12309         * gst/smpte/gstmask.h:
12310         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12311         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12312         (gst_smpte_paint_triangle_clock):
12313         constify some static structs.
12314         Don't update the mask if nothing changed to the params.
12315         Make sure we never draw outside of the picture. Fixes #398325.
12316
12317 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
12318
12319         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12320           Error out properly when pull_range fails while we're reading the
12321           headers, instead of just pausing the task silently. Fixes #399338.
12322
12323 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
12324
12325         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12326           Some more sanity checks to make sure the input formats match and the
12327           input pads are actually negotiated, in case someone tries to feed
12328           buffers from fakesrc or filesrc. Fixes #398299.
12329           Also const-ify an array, just because we can.
12330
12331 2007-01-19  Edward Hervey  <edward@fluendo.com>
12332
12333         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12334         Ignore previous commit, that was only valid for widths and heights
12335         that are multiples of 4.
12336         Copy over size/stride macros from jpegdec. This allows the element
12337         to work with any width,height...
12338         ... but puts in evidence that the actual transformations only work
12339         with width/height that are multiples of 4.
12340
12341 2007-01-19  Edward Hervey  <edward@fluendo.com>
12342
12343         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12344         Allocate buffers of the right size.
12345         The proper size of a I420 buffer in bytes is:
12346         
12347             width * height * 3
12348             ------------------
12349                     2
12350
12351 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12352
12353         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12354           Proxy getcaps on sink pads too, so that we either end up with the
12355           same dimensions on all pads or error out if that's not possible
12356           (seems to work even!). Fixes #398086, I think.
12357
12358 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12359
12360         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12361         * docs/plugins/gst-plugins-good-plugins.args:
12362         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12363           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12364           fix integer properties with -1 as minimum value.
12365
12366         * docs/plugins/inspect/plugin-1394.xml:
12367         * docs/plugins/inspect/plugin-aasink.xml:
12368         * docs/plugins/inspect/plugin-alaw.xml:
12369         * docs/plugins/inspect/plugin-alpha.xml:
12370         * docs/plugins/inspect/plugin-alphacolor.xml:
12371         * docs/plugins/inspect/plugin-annodex.xml:
12372         * docs/plugins/inspect/plugin-apetag.xml:
12373         * docs/plugins/inspect/plugin-audiofx.xml:
12374         * docs/plugins/inspect/plugin-auparse.xml:
12375         * docs/plugins/inspect/plugin-autodetect.xml:
12376         * docs/plugins/inspect/plugin-avi.xml:
12377         * docs/plugins/inspect/plugin-cacasink.xml:
12378         * docs/plugins/inspect/plugin-cairo.xml:
12379         * docs/plugins/inspect/plugin-cdio.xml:
12380         * docs/plugins/inspect/plugin-cutter.xml:
12381         * docs/plugins/inspect/plugin-debug.xml:
12382         * docs/plugins/inspect/plugin-dv.xml:
12383         * docs/plugins/inspect/plugin-efence.xml:
12384         * docs/plugins/inspect/plugin-effectv.xml:
12385         * docs/plugins/inspect/plugin-esdsink.xml:
12386         * docs/plugins/inspect/plugin-flac.xml:
12387         * docs/plugins/inspect/plugin-flxdec.xml:
12388         * docs/plugins/inspect/plugin-gconfelements.xml:
12389         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12390         * docs/plugins/inspect/plugin-goom.xml:
12391         * docs/plugins/inspect/plugin-halelements.xml:
12392         * docs/plugins/inspect/plugin-icydemux.xml:
12393         * docs/plugins/inspect/plugin-id3demux.xml:
12394         * docs/plugins/inspect/plugin-jpeg.xml:
12395         * docs/plugins/inspect/plugin-level.xml:
12396         * docs/plugins/inspect/plugin-matroska.xml:
12397         * docs/plugins/inspect/plugin-mulaw.xml:
12398         * docs/plugins/inspect/plugin-multipart.xml:
12399         * docs/plugins/inspect/plugin-navigationtest.xml:
12400         * docs/plugins/inspect/plugin-ossaudio.xml:
12401         * docs/plugins/inspect/plugin-png.xml:
12402         * docs/plugins/inspect/plugin-rtp.xml:
12403         * docs/plugins/inspect/plugin-rtsp.xml:
12404         * docs/plugins/inspect/plugin-shout2send.xml:
12405         * docs/plugins/inspect/plugin-smpte.xml:
12406         * docs/plugins/inspect/plugin-speex.xml:
12407         * docs/plugins/inspect/plugin-taglib.xml:
12408         * docs/plugins/inspect/plugin-udp.xml:
12409         * docs/plugins/inspect/plugin-videobalance.xml:
12410         * docs/plugins/inspect/plugin-videobox.xml:
12411         * docs/plugins/inspect/plugin-videoflip.xml:
12412         * docs/plugins/inspect/plugin-videomixer.xml:
12413         * docs/plugins/inspect/plugin-wavenc.xml:
12414         * docs/plugins/inspect/plugin-wavparse.xml:
12415         * docs/plugins/inspect/plugin-ximagesrc.xml:
12416           Update to CVS.
12417
12418 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
12419
12420         Patch by: Sebastian Dröge <slomo circular-chaos org>
12421
12422         * gst/audiofx/audiopanorama.c:
12423           Fix doc section name (Fixes #397946)
12424
12425 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
12426
12427         * sys/v4l2/gstv4l2object.c:
12428         (gst_v4l2_object_install_properties_helper),
12429         (gst_v4l2_object_set_property_helper),
12430         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12431         * sys/v4l2/gstv4l2object.h:
12432         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12433         (gst_v4l2src_init), (gst_v4l2src_set_property),
12434         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12435         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12436         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12437         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12438         (gst_v4l2src_capture_deinit):
12439           Fix EIO handing when capturing. Add new property to specify the number of
12440           buffers to enque (and remove the borked num-buffers usage).
12441
12442 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
12443
12444         Patch by: Sebastian Dröge <slomo circular-chaos org>
12445
12446         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12447         (gst_audio_panorama_set_process_function):
12448           Use a function array for process methods, add more docs and define the
12449           startindex of enums.
12450
12451 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
12452
12453         Patch by: Mark Nauwelaerts <manauw at skynet be>
12454
12455         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12456         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12457         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12458         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12459         (gst_avi_mux_riff_get_avi_header),
12460         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12461         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12462         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12463         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12464         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12465         (gst_avi_mux_change_state):
12466         * gst/avi/gstavimux.h:
12467         * tests/check/elements/avimux.c: (teardown_src_pad):
12468           Add support for more than one audio stream; write better AVIX
12469           header; refactor code a bit; don't announce vorbis caps on our audio
12470           sink pads since we don't support it anyway. Closes #379298.
12471
12472 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
12473
12474         Patch by: Sebastian Dröge <slomo circular-chaos org>
12475
12476         * gst/audiofx/audiopanorama.c:
12477         (gst_audio_panorama_method_get_type),
12478         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12479         (gst_audio_panorama_set_process_function),
12480         (gst_audio_panorama_set_property),
12481         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12482         (gst_audio_panorama_transform_m2s_int_simple),
12483         (gst_audio_panorama_transform_s2s_int_simple),
12484         (gst_audio_panorama_transform_m2s_float_simple),
12485         (gst_audio_panorama_transform_s2s_float_simple):
12486         * gst/audiofx/audiopanorama.h:
12487           Add 'method' property and provide a simple (non-psychoacustic)
12488           processing method (#394859).
12489
12490         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12491         (panorama_suite):
12492           Tests for new method.
12493
12494 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
12495
12496         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12497         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12498           Set correct caps on outgoing pulled buffers, or things blow up
12499           after recent core changes.
12500
12501 2007-01-11  Wim Taymans  <wim@fluendo.com>
12502
12503         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12504
12505         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12506         (gst_multipart_mux_request_new_pad),
12507         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12508         (gst_multipart_mux_change_state):
12509         Return FLOW errors ASAP. Fixes #394977.
12510         Misc cleanups.
12511
12512 2007-01-11  Wim Taymans  <wim@fluendo.com>
12513
12514         Patch by: Lutz Mueller <lutz at topfrose dot de>
12515
12516         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12517         Check for stream pad before activating. 
12518
12519 2007-01-10  Wim Taymans  <wim@fluendo.com>
12520
12521         Patch by: Peter Kjellerstedt  <pkj at axis com>
12522
12523         * gst/rtsp/COPYING.MIT:
12524         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12525         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12526         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12527         (gst_rtspsrc_stream_configure_transport),
12528         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12529         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12530         (gst_rtspsrc_parse_methods),
12531         (gst_rtspsrc_create_transports_string),
12532         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12533         (gst_rtspsrc_open), (gst_rtspsrc_close):
12534         * gst/rtsp/gstrtspsrc.h:
12535         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12536         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12537         (parse_request_line), (parse_line), (rtsp_connection_read),
12538         (rtsp_connection_close):
12539         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12540         (rtsp_method_as_text), (rtsp_header_as_text),
12541         (rtsp_status_as_text), (rtsp_find_header_field),
12542         (rtsp_find_method):
12543         * gst/rtsp/rtspdefs.h:
12544         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12545         (rtsp_ext_wms_configure_stream):
12546         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12547         (rtsp_message_new_request), (rtsp_message_init_request),
12548         (rtsp_message_new_response), (rtsp_message_init_response),
12549         (rtsp_message_init_data), (rtsp_message_unset),
12550         (rtsp_message_free), (rtsp_message_add_header),
12551         (rtsp_message_get_header), (rtsp_message_set_body),
12552         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12553         * gst/rtsp/rtspmessage.h:
12554         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12555         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12556         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12557         (sdp_message_dump):
12558         Allow url to be NULL to be able to use it for server connections.
12559         Can now send responses as well as requests.
12560         No longer hangs in an endless loop if EOF is received.
12561         Can now convert a status code to a text string.
12562         Return RTSP_HDR_INVALID for unknown headers.
12563         Return RTSP_INVALID for unknown methods.
12564         Copy CSeq and Session headers from the request.
12565         Only free memory corresponding to the currently set message type.
12566         Added const to function arguments as appropriate.
12567         Avoid a compiler warning when initializing nmedia.
12568         Use guint rather than gint to avoid compiler warnings.
12569         Fix crasher in wms extension.
12570         Factor out stream setup from open_connection.
12571         Delay activation of streams when actual data is received from the
12572         server, this prepares us to do proper protocol switching.
12573         Added new license.
12574         Fixes #380895.
12575
12576
12577 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
12578
12579         Patch by: Sebastian Dröge <slomo ubuntu com>
12580
12581         * docs/plugins/Makefile.am:
12582         * gst/audiofx/audiopanorama.c:
12583           Some small docs fixes (#394851).
12584
12585 2007-01-09  Wim Taymans  <wim@fluendo.com>
12586
12587         * gst/avi/gstavidemux.c:
12588         Fix docs.
12589
12590 2007-01-09  Wim Taymans  <wim@fluendo.com>
12591
12592         * gst/rtp/Makefile.am:
12593         * gst/rtp/gstrtp.c: (plugin_init):
12594         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12595         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12596         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12597         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12598         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12599         * gst/rtp/gstrtpmpvdepay.h:
12600           Added RFC 2250 MPEG Video Depayloader.
12601
12602         * gst/rtp/gstrtpL16depay.h:
12603         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12604         (gst_rtp_h263p_depay_process):
12605         Fix Header file. Small cleanups.
12606
12607         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12608         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12609         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12610         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12611         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12612         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12613         (gst_rtp_mp4v_depay_change_state):
12614         Remove usused code. Remove Adapter from state Change. Added debug.
12615
12616         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12617         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12618         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12619         * gst/rtp/gstrtpmpadepay.h:
12620         Subclass base depayloader.
12621         Added debug.
12622         Support static payload type assignment as well.
12623
12624         * gst/rtp/gstrtpmpapay.c:
12625         Fix caps.
12626
12627 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
12628
12629         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12630
12631         * ext/jpeg/gstjpegdec.c:
12632         * ext/jpeg/gstjpegenc.c:
12633         * ext/jpeg/smokecodec.c:
12634           These libjpeg callbacks should return a 'boolean' (unsigned char
12635           apparently) and not a 'gboolean' (which maps to gint). Fixes
12636           warnings when compiling with MingW (#393427).
12637
12638         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12639           Use ioctlsocket on win32.
12640
12641         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12642           Some printf format fixes for win32.
12643
12644 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
12645
12646         * gst/cutter/gstcutter.c: (gst_cutter_chain):
12647           Use gst_guint64_to_gdouble for conversion.
12648         * win32/vs6/libgstmatroska.dsp:
12649           Add zlib to the link.
12650         * win32/vs6/libgstvideobox.dsp:
12651           Update liboil library name (project is linked to 
12652           liboil-0.3-0.lib now).
12653           
12654 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
12655
12656         * gst/matroska/Makefile.am:
12657           If zlib is available and used, we must link it explicitly for
12658           things to work on MingW (fixes #392855).
12659
12660 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
12661
12662         * ext/esd/esdsink.c: (gst_esdsink_delay):
12663           Don't return bogus values when esd_get_delay() fails for some
12664           reason (#392189).
12665
12666 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12667
12668         * sys/ximage/gstximagesrc.c: (composite_pixel):
12669           Fix presumably copy'n'pasto for 16bpp depth.
12670
12671 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12672
12673         * gst/matroska/matroska-mux.c:
12674         (gst_matroska_mux_audio_pad_setcaps):
12675           The "signed" field in audio caps is of boolean type, trying to use
12676           gst_structure_get_int() to extract it will fail. Fixing this makes
12677           matroskamux accept raw audio input (#387121) (use at your own risk
12678           though, due to the matroska spec being not entirely useful in this
12679           respect).
12680           Also fix up raw audio structures in template caps so that they
12681           represent what our setcaps function will actually accept, so that
12682           converters know what to convert to.
12683           Finally, don't fail if there isn't an "endianness" field in 8-bit
12684           PCM caps.
12685
12686 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
12687
12688         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12689         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12690         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12691         (teardown_cmmldec):
12692         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12693         (teardown_cmmlenc):
12694         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12695           reapply consistent pad (de)activation
12696
12697 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12698
12699         * configure.ac:
12700         Back to CVS
12701
12702         * gst-plugins-good.doap:
12703         Add 0.10.5 doap entry
12704
12705 === release 0.10.5 ===
12706
12707 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
12708
12709         * configure.ac:
12710           releasing 0.10.5, "The Path of Thorns"
12711
12712 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12713
12714         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12715         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12716         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12717         (teardown_cmmldec):
12718         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12719         (teardown_cmmlenc):
12720         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12721           revert my freeze breakage
12722
12723 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12724
12725         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12726         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12727         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12728         (teardown_cmmldec):
12729         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12730         (teardown_cmmlenc):
12731         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12732           consistent pad (de)activation
12733
12734 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12735
12736         * configure.ac:
12737         * ext/Makefile.am:
12738         Disable LADPSA, as it has moved to the -bad module for the duration.
12739
12740 2006-12-18  Wim Taymans  <wim@fluendo.com>
12741
12742         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12743         (gst_signal_processor_event):
12744         Reset flow_state back to _OK after a flush stop so that we exit our
12745         error state after the flush. Fixes #374213
12746
12747 2006-12-16  David Schleef  <ds@schleef.org>
12748
12749         * sys/osxvideo/osxvideosink.h:
12750         * sys/osxvideo/osxvideosink.m:
12751           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
12752
12753 2006-12-16  David Schleef  <ds@schleef.org>
12754
12755         Patch by: Vijay Santhanam <vijay santhanam gmail com>
12756
12757         * sys/osxvideo/Makefile.am:
12758         * sys/osxvideo/osxvideosink.h:
12759         * sys/osxvideo/osxvideosink.m:
12760           Preliminary patch for porting osxvideosink
12761
12762 2006-12-16  Wim Taymans  <wim@fluendo.com>
12763
12764         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12765
12766         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12767         (gst_videomixer_set_master_geometry),
12768         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12769         (gst_videomixer_reset), (gst_videomixer_init),
12770         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12771         (gst_videomixer_release_pad), (gst_videomixer_collected),
12772         (gst_videomixer_change_state):
12773         Introduce some locking around the videomixer state so that it does not
12774         crash when adding/removing pads. Fixes #383043.
12775
12776 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12777
12778         * configure.ac:
12779           Make sure libcaca can actually be used instead of just checking for
12780           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12781           cross-compiling (fixes #384587).
12782
12783 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12784
12785         * Makefile.am:
12786         * gst-plugins-good.doap:
12787         * gst-plugins-good.spec.in:
12788           adding doap file
12789
12790 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12791
12792         * configure.ac:
12793           libflac-1.1.3 changed API again, but we can't build against it yet,
12794           so make sure our check doesn't use libflac-1.1.3 and add a comment
12795           to this effect.
12796
12797 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12798
12799         * gst/effectv/gstquark.c: (gst_quarktv_transform),
12800         (gst_quarktv_planetable_clear):
12801           Add some NULL pointer checks (possibly related to #385623).
12802
12803 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12804
12805         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12806         (gst_tag_demux_chain):
12807         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12808           In streaming mode, if the first buffer we get doesn't have an
12809           offset, fix it up to be 0, otherwise trimming won't work later on
12810           and we'll be typefinding application/x-id3, which may result in
12811           decodebin plugging an endless number of id3demux elements as a
12812           consequence. Fixes #385031.
12813           
12814 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12815
12816         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12817           Ignore the buffer_time the sound device reports. Turns out it is 
12818           sometimes completely bogus and we're better off without it.
12819
12820 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12821
12822         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12823         (gst_matroska_demux_video_caps):
12824         * gst/matroska/matroska-ids.c:
12825         (gst_matroska_track_init_video_context):
12826         * gst/matroska/matroska-ids.h:
12827           Try harder to extract the framerate for video tracks correctly and
12828           save it directly instead of converting it back and forth a few
12829           times. Mostly makes a difference for very small framerates (<1).
12830           Fixes #380199.
12831
12832 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12833
12834         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12835         (gst_gconf_audio_src_dispose), (do_toggle_element):
12836         * ext/gconf/gstgconfaudiosrc.h:
12837           Remove gconf notify hook when the gconfaudiosrc element is
12838           destroyed, otherwise the callback may be called on an
12839           already-destroyed instance and bad things happen. Should fix
12840           #378184.
12841           Also ignore gconf key changes when the source is already running.
12842
12843 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
12844
12845         Patch by: Sebastian Dröge  <mail at slomosnail de>
12846
12847         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12848           We need to be able to read and parse any possible floating point string
12849           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12850           will parse the former only in certain locales though, so we really need
12851           to canonicalise the separator to '.' and then use g_ascii_strtod() to
12852           make sure we can parse either version at all times.
12853           Fixes #382982 for real.
12854
12855 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12856
12857         * sys/sunaudio/gstsunaudiomixerctrl.c:
12858         * sys/sunaudio/gstsunaudiosrc.c:
12859
12860         Use the sunaudio debug category.
12861
12862         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12863         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12864         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12865         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12866         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12867         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12868         (gst_sunaudiosink_reset):
12869         * sys/sunaudio/gstsunaudiosink.h:
12870
12871         Uses the sunaudio debug category for all debug output
12872         Implements the _delay() callback to synchronise video playback better
12873         Change the segtotal and segsize values back to the parent class 
12874           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
12875           respectively)
12876         Measure the samples written to the device vs. played.
12877         Keep track of segments in the device by writing empty eof frames, and
12878         sleep using a GCond when we get too far ahead and risk overrunning the
12879         sink's ringbuffer.
12880
12881         Fixes: #360673
12882
12883 2006-12-08  Wim Taymans  <wim@fluendo.com>
12884
12885         Patch by: Sebastian Dröge  <mail at slomosnail de >
12886
12887         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12888         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12889         * gst/audiofx/audiopanorama.h:
12890         Fix audiopanorame with float samples. Fixes #383726.
12891
12892 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12893
12894         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12895         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12896         (gst_sunaudiosrc_reset):
12897
12898         Implement reset functions to unblock the src/sink more quickly on 
12899         state change requests.
12900         Patch by: Brian Cameron <brian dot cameron at sun com>
12901
12902 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12903
12904         * sys/sunaudio/gstsunaudiomixer.c:
12905         (gst_sunaudiomixer_change_state):
12906         Construct the correct mixer device name when the AUDIODEV env var
12907         is set.
12908
12909         Patch by: Jerry Tan <jerry.tan at sun dot com>
12910         Fixes: #383596
12911
12912 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12913
12914         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12915         Apply patch to open the mixer control and set the MULTIPLE_OPEN
12916         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
12917         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
12918         Patch by: Jerry Tan <jerry.tan at sun dot com>
12919         Fixes: #349015
12920
12921 2006-12-07  Wim Taymans  <wim@fluendo.com>
12922
12923         * gst/smpte/gstmask.h:
12924         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12925         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12926         (gst_smpte_collected), (gst_smpte_set_property),
12927         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12928         * gst/smpte/gstsmpte.h:
12929         Port to 0.10 some more. 
12930         Added duration property to specify the duration of the transition.
12931         Make framerate a fraction.
12932         Deprecate fps property, we only use negotiated fps.
12933         Added docs.
12934         Fix collectpad usage.
12935         Reset state in READY.
12936         Send NEWSEGMENT event.
12937         Fix racy updates of object properties.
12938         Added debug category.
12939         Fixes #383323.
12940
12941 2006-12-06  Wim Taymans  <wim@fluendo.com>
12942
12943         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12944
12945         * gst/videomixer/videomixer.c:
12946         (gst_videomixer_set_master_geometry),
12947         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12948         Don't reset xpos and ypos in the setcaps function because causes
12949         unexpected behaviour.
12950         Fixes #382179.
12951
12952 2006-12-06  Wim Taymans  <wim@fluendo.com>
12953
12954         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12955         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12956         Keep track of the buffer timestamp in the collectdata member instead
12957         of modifying the buffer without making the metadata writable first.
12958         Fixes #382277.
12959
12960 2006-12-06  Wim Taymans  <wim@fluendo.com>
12961
12962         Patch by: Rob Taylor <robtaylor at floopily dot org>
12963
12964         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12965         If using multicast in udpsrc, bind to the multicast address rather than
12966         IN_ADDR_ANY.
12967         This allows the simultanous use of multiple udpsrcs listening on
12968         different multicat addresses. Without this all udpsrcs will receive all
12969         packets from all subscribed multicast addresses.
12970         Fixes #383001.
12971
12972 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12973
12974         * ext/taglib/gstid3v2mux.cc:
12975         Don't attempt to write a NULL frame into the ID3 tag set when the 
12976         createFrame method returned NULL.
12977         Fixes: #381857
12978         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12979
12980 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12981
12982         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12983         Use g_strtod() instead of sscanf to parse doubles, so that it will
12984         try parsing in the C locale if the current locale fails.
12985         Fixes: #382982
12986         Patch by: Sebastian Dröge  <mail at slomosnail de >
12987
12988 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
12989
12990         * win32/MANIFEST:
12991         Fix compilation on win32 under VS8
12992         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
12993         Partially fixes #381175
12994
12995 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12996
12997         * gst/avi/gstavimux.c:
12998           accept all mpegversions,fixes #380825
12999           spotted by: Jerome Alet  
13000
13001 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
13002
13003         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
13004         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
13005         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
13006         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
13007           cleanup the error message a bit more
13008
13009 2006-11-28  Wim Taymans  <wim@fluendo.com>
13010
13011         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
13012         Fix width and height properties.
13013
13014         * ext/libcaca/gstcacasink.h:
13015         Fix compilation on newer libcaca that require us to include a new
13016         header. Fixes #379918.
13017
13018 2006-11-28  Wim Taymans  <wim@fluendo.com>
13019
13020         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
13021         * gst/rtsp/gstrtspsrc.h:
13022         * gst/rtsp/rtspext.h:
13023         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
13024         (rtsp_ext_wms_get_context):
13025         Add method so that extensions can choose to disable the setup of
13026         a stream.
13027         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
13028
13029 2006-11-27  Wim Taymans  <wim@fluendo.com>
13030
13031         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
13032
13033         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
13034         Push header in a separate buffer instead of memcpy:ing all data.
13035         Change LF => CRLF in headers.
13036         Move trailing LF to header. Fixes #379792.
13037
13038 2006-11-27  Wim Taymans  <wim@fluendo.com>
13039
13040         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
13041         Small buffer overflow fix and improve debugging.
13042
13043 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
13044
13045         * ext/esd/esdmon.h:
13046         * ext/esd/esdsink.h:
13047           remove obsolete _factory_init protos
13048
13049 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
13050
13051         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
13052         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13053         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
13054         (gst_avi_demux_read_subindexes_push),
13055         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
13056         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
13057         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
13058         (gst_avi_demux_massage_index),
13059         (gst_avi_demux_calculate_durations_from_index),
13060         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
13061         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13062         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
13063           remove dead code, tweak debugs statements, add comments, use
13064           _uint64_scale instead _uint64_scale_int when using guint64 values,
13065           small optimizations, reflow some error handling
13066
13067 2006-11-22  Edward Hervey  <edward@fluendo.com>
13068
13069         * po/.cvsignore:
13070         We never put .pot files in cvs. Let's ignore them all.
13071
13072 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13073
13074         * po/POTFILES.in:
13075           ... but better exclude files that aren't disted.
13076
13077 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13078
13079         * po/POTFILES.in:
13080           Add v4l2 source files to list of files with translations, so the
13081           strings are actually extracted (however bad they still may be).
13082
13083 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13084
13085         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13086           Minor clean-ups: const-ify static array, remove trailing comma from
13087           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
13088
13089 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
13090
13091         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13092         Make sure that g_free always gets called on the same pointer that was 
13093         returned by g_malloc.  Fixes #376594.
13094         Do not leak memory if decompressed size is wrong.
13095         Remove unneeded check of return value of g_malloc.
13096         Patch by: René Stadler <mail@renestadler.de>
13097
13098 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
13099
13100         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
13101           Add missing curly brackets.
13102
13103 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
13104
13105         * sys/v4l2/v4l2src_calls.c:
13106         Fix capture_deinit.
13107
13108 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13109
13110         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13111         (gst_matroska_mux_request_new_pad):
13112           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
13113
13114         * tests/check/elements/matroskamux.c: (setup_src_pad),
13115         (setup_sink_pad), (GST_START_TEST):
13116         Activate pads before using them.
13117
13118 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13119
13120         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13121           Initialise variable to get rid of bogus compiler warning.
13122
13123 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
13124
13125         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
13126
13127         * gst/rtp/gstrtph263pay.c:
13128         * gst/rtp/gstrtph263pdepay.c:
13129         * gst/rtp/gstrtph263ppay.c:
13130           Specify H.263 variant and version in the caps (fixes #361637)
13131
13132 2006-11-15  Wim Taymans  <wim@fluendo.com>
13133
13134         * gst/rtsp/rtspconnection.c: (read_body):
13135         Don't set a data pointer to NULL and a size > 0 when we deal
13136         with empty packets.
13137
13138         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13139         (rtsp_message_init_response), (rtsp_message_init_data),
13140         (rtsp_message_unset), (rtsp_message_free),
13141         (rtsp_message_take_body):
13142         Check that we can't create invalid empty packets. 
13143
13144 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13145
13146         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13147
13148         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
13149         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
13150         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
13151         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
13152         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13153         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
13154         * gst/matroska/matroska-mux.h:
13155           Add basic tag writing support; implement releasing pads (#374658).
13156
13157 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13158
13159         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13160         (gst_matroska_demux_audio_caps):
13161           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
13162
13163 2006-11-14  David Schleef  <ds@schleef.org>
13164
13165         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
13166
13167 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
13168
13169         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13170
13171         * win32/vs8/gst-plugins-good.sln:
13172         * win32/vs8/libgst1394.vcproj:
13173         * win32/vs8/libgstaasink.vcproj:
13174         * win32/vs8/libgstalaw.vcproj:
13175         * win32/vs8/libgstalpha.vcproj:
13176         * win32/vs8/libgstalphacolor.vcproj:
13177         * win32/vs8/libgstannodex.vcproj:
13178         * win32/vs8/libgstapetag.vcproj:
13179         * win32/vs8/libgstaudiofx.vcproj:
13180         * win32/vs8/libgstauparse.vcproj:
13181         * win32/vs8/libgstautodetect.vcproj:
13182         * win32/vs8/libgstavi.vcproj:
13183         * win32/vs8/libgstcacasink.vcproj:
13184         * win32/vs8/libgstcdio.vcproj:
13185         * win32/vs8/libgstcutter.vcproj:
13186         * win32/vs8/libgstdv.vcproj:
13187         * win32/vs8/libgsteffectv.vcproj:
13188         * win32/vs8/libgstflac.vcproj:
13189         * win32/vs8/libgstflxdec.vcproj:
13190         * win32/vs8/libgstgoom.vcproj:
13191         * win32/vs8/libgsticydemux.vcproj:
13192         * win32/vs8/libgstid3demux.vcproj:
13193         * win32/vs8/libgstjpeg.vcproj:
13194         * win32/vs8/libgstladspa.vcproj:
13195         * win32/vs8/libgstlevel.vcproj:
13196         * win32/vs8/libgstmatroska.vcproj:
13197         * win32/vs8/libgstmikmod.vcproj:
13198         * win32/vs8/libgstmng.vcproj:
13199         * win32/vs8/libgstmonoscope.vcproj:
13200         * win32/vs8/libgstmulaw.vcproj:
13201         * win32/vs8/libgstmultipart.vcproj:
13202         * win32/vs8/libgstpng.vcproj:
13203         * win32/vs8/libgstrtp.vcproj:
13204         * win32/vs8/libgstrtsp.vcproj:
13205         * win32/vs8/libgstshout2.vcproj:
13206         * win32/vs8/libgstsmpte.vcproj:
13207         * win32/vs8/libgstspeex.vcproj:
13208         * win32/vs8/libgsttaglib.vcproj:
13209         * win32/vs8/libgstudp.vcproj:
13210         * win32/vs8/libgstvideobalance.vcproj:
13211         * win32/vs8/libgstvideobox.vcproj:
13212         * win32/vs8/libgstvideoflip.vcproj:
13213         * win32/vs8/libgstvideomixer.vcproj:
13214         * win32/vs8/libgstwavenc.vcproj:
13215         * win32/vs8/libgstwavparse.vcproj:
13216           Make end-of-line returns unixy, so that when the files are checked
13217           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13218           Hopefully fixes #366492.
13219
13220 2006-11-14  Wim Taymans  <wim@fluendo.com>
13221
13222         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13223         Disable init_frames delay timestamp adjustment, it does not
13224         seem to be needed at all. Fixes #369621.
13225
13226 2006-11-13  Wim Taymans  <wim@fluendo.com>
13227
13228         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13229
13230         * gst/videomixer/videomixer.c:
13231         (gst_videomixer_set_master_geometry),
13232         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13233         (gst_videomixer_collect_free), (gst_videomixer_reset),
13234         (gst_videomixer_init), (gst_videomixer_finalize),
13235         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13236         (gst_videomixer_collected), (gst_videomixer_change_state):
13237         Fix memleak by unref'ing collectpads instance (when finalizing)
13238         Implement releasing a request pad. Fixes #374479.
13239
13240 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
13241
13242         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13243
13244         * win32/vs8/gst-plugins-good.sln:
13245         * win32/vs8/libgst1394.vcproj:
13246         * win32/vs8/libgstaasink.vcproj:
13247         * win32/vs8/libgstalaw.vcproj:
13248         * win32/vs8/libgstalpha.vcproj:
13249         * win32/vs8/libgstalphacolor.vcproj:
13250         * win32/vs8/libgstannodex.vcproj:
13251         * win32/vs8/libgstapetag.vcproj:
13252         * win32/vs8/libgstaudiofx.vcproj:
13253         * win32/vs8/libgstauparse.vcproj:
13254         * win32/vs8/libgstautodetect.vcproj:
13255         * win32/vs8/libgstavi.vcproj:
13256         * win32/vs8/libgstcacasink.vcproj:
13257         * win32/vs8/libgstcdio.vcproj:
13258         * win32/vs8/libgstcutter.vcproj:
13259         * win32/vs8/libgstdv.vcproj:
13260         * win32/vs8/libgsteffectv.vcproj:
13261         * win32/vs8/libgstflac.vcproj:
13262         * win32/vs8/libgstflxdec.vcproj:
13263         * win32/vs8/libgstgoom.vcproj:
13264         * win32/vs8/libgsticydemux.vcproj:
13265         * win32/vs8/libgstid3demux.vcproj:
13266         * win32/vs8/libgstjpeg.vcproj:
13267         * win32/vs8/libgstladspa.vcproj:
13268         * win32/vs8/libgstlevel.vcproj:
13269         * win32/vs8/libgstmatroska.vcproj:
13270         * win32/vs8/libgstmikmod.vcproj:
13271         * win32/vs8/libgstmng.vcproj:
13272         * win32/vs8/libgstmonoscope.vcproj:
13273         * win32/vs8/libgstmulaw.vcproj:
13274         * win32/vs8/libgstmultipart.vcproj:
13275         * win32/vs8/libgstpng.vcproj:
13276         * win32/vs8/libgstrtp.vcproj:
13277         * win32/vs8/libgstrtsp.vcproj:
13278         * win32/vs8/libgstshout2.vcproj:
13279         * win32/vs8/libgstsmpte.vcproj:
13280         * win32/vs8/libgstspeex.vcproj:
13281         * win32/vs8/libgsttaglib.vcproj:
13282         * win32/vs8/libgstudp.vcproj:
13283         * win32/vs8/libgstvideobalance.vcproj:
13284         * win32/vs8/libgstvideobox.vcproj:
13285         * win32/vs8/libgstvideoflip.vcproj:
13286         * win32/vs8/libgstvideomixer.vcproj:
13287         * win32/vs8/libgstwavenc.vcproj:
13288         * win32/vs8/libgstwavparse.vcproj:
13289           Add VS8 project files (note that many of the plugins in ext are
13290           disabled by default). Fixes #366492.
13291
13292 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
13293
13294         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13295           we do not translate debug messages
13296
13297 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
13298
13299         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13300           fix categorisation, make short desc more explicit, remove unused code
13301           Fixes #372021
13302
13303 2006-11-08  Wim Taymans  <wim@fluendo.com>
13304
13305         * gst/rtp/gstrtpL16depay.c:
13306         * gst/rtp/gstrtpamrdepay.c:
13307         * gst/rtp/gstrtpamrpay.c:
13308         * gst/rtp/gstrtpgsmdepay.c:
13309         * gst/rtp/gstrtph263pay.c:
13310         * gst/rtp/gstrtph263pdepay.c:
13311         * gst/rtp/gstrtph263ppay.c:
13312         * gst/rtp/gstrtph264depay.c:
13313         * gst/rtp/gstrtpmp2tdepay.c:
13314         * gst/rtp/gstrtpmp4gdepay.c:
13315         * gst/rtp/gstrtpmp4gpay.c:
13316         * gst/rtp/gstrtpmp4vdepay.c:
13317         * gst/rtp/gstrtpmp4vpay.c:
13318         * gst/rtp/gstrtpmpadepay.c:
13319         * gst/rtp/gstrtpmpapay.c:
13320         * gst/rtp/gstrtppcmadepay.c:
13321         * gst/rtp/gstrtppcmapay.c:
13322         * gst/rtp/gstrtppcmudepay.c:
13323         * gst/rtp/gstrtppcmupay.c:
13324         * gst/rtp/gstrtpspeexdepay.c:
13325         * gst/rtp/gstrtpspeexpay.c:
13326         * gst/rtp/gstrtpsv3vdepay.c:
13327         Fix element descriptions.
13328
13329 2006-11-08  Wim Taymans  <wim@fluendo.com>
13330
13331         * gst/rtp/gstrtpvorbisdepay.c:
13332         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13333         Fix description.
13334         Small cleanup in the payloader.
13335
13336 2006-11-08  Wim Taymans  <wim@fluendo.com>
13337
13338         * gst/rtp/Makefile.am:
13339         * gst/rtp/gstrtp.c: (plugin_init):
13340         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13341         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13342         (gst_rtp_theora_depay_finalize),
13343         (gst_rtp_theora_depay_parse_configuration),
13344         (gst_rtp_theora_depay_setcaps),
13345         (gst_rtp_theora_depay_switch_codebook),
13346         (gst_rtp_theora_depay_process),
13347         (gst_rtp_theora_depay_set_property),
13348         (gst_rtp_theora_depay_get_property),
13349         (gst_rtp_theora_depay_change_state),
13350         (gst_rtp_theora_depay_plugin_init):
13351         * gst/rtp/gstrtptheoradepay.h:
13352         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13353         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13354         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13355         (gst_rtp_theora_pay_init_packet),
13356         (gst_rtp_theora_pay_flush_packet),
13357         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13358         (gst_rtp_theora_pay_handle_buffer),
13359         (gst_rtp_theora_pay_plugin_init):
13360         * gst/rtp/gstrtptheorapay.h:
13361         Add theora pay/depayloaders.
13362
13363 2006-11-06  Wim Taymans  <wim@fluendo.com>
13364
13365         * gst/rtp/Makefile.am:
13366         We depend on gsttag to generate the vorbis comments.
13367
13368         * gst/rtp/gstrtpvorbisdepay.c:
13369         (gst_rtp_vorbis_depay_parse_configuration),
13370         (gst_rtp_vorbis_depay_setcaps),
13371         (gst_rtp_vorbis_depay_switch_codebook),
13372         (gst_rtp_vorbis_depay_process):
13373         * gst/rtp/gstrtpvorbisdepay.h:
13374         Parse configuration string in the depayloader.
13375         Implement selecting and switching to a new codebook.
13376         Receiving vorbis over RTP now works.
13377
13378         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13379         (gst_rtp_vorbis_pay_init_packet),
13380         (gst_rtp_vorbis_pay_finish_headers),
13381         (gst_rtp_vorbis_pay_handle_buffer):
13382         * gst/rtp/gstrtpvorbispay.h:
13383         Set timestamps on outgoing buffers and RTP packets.
13384         Fix configuration string, prepend number of Packet headers.
13385         Fix encoding of ident string.
13386         Add delivery-method to caps.
13387         Streaming vorbis over RTP now works.
13388
13389 2006-11-06  Wim Taymans  <wim@fluendo.com>
13390
13391         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13392         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13393         (gst_rtp_vorbis_pay_handle_buffer):
13394         * gst/rtp/gstrtpvorbispay.h:
13395         Generate a valid configuration string in the caps based on the
13396         vorbis headers.
13397
13398 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13399
13400         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13401         * ext/cdio/gstcdio.h:
13402         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13403           Move CD-TEXT utility function into common file so it can also be
13404           used by a future cdioparanoiasrc.
13405
13406 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
13407         
13408         * sys/v4l2/Makefile.am:
13409         * sys/v4l2/gstv4l2object.c:
13410         * sys/v4l2/gstv4l2src.c:
13411         * sys/v4l2/gstv4l2xoverlay.c:
13412         * sys/v4l2/v4l2_calls.c:
13413         * sys/v4l2/v4l2src_calls.c:
13414         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13415         xoverlay code that is still not implemented.
13416
13417 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13418
13419         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13420           We require a -base more recent than 0.10.9, so it's safe to use
13421           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13422
13423         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13424         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13425           Use _newsegment_full() now that we depend on a recent enough core.
13426
13427         * gst/wavparse/gstwavparse.c:
13428           Remove cruft that we don't need any longer now that we depend on
13429           a recent enough -base.
13430
13431 2006-10-31  Wim Taymans  <wim@fluendo.com>
13432
13433         * gst/rtp/Makefile.am:
13434         * gst/rtp/gstrtp.c: (plugin_init):
13435         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13436         (gst_rtpilbcpay_setcaps):
13437         Fix and activate ILBC pay and depayloaders. Fixes #368162.
13438
13439 2006-10-31  Wim Taymans  <wim@fluendo.com>
13440
13441         * ext/speex/gstspeexdec.c: (speex_dec_convert),
13442         (speex_dec_sink_event), (speex_dec_chain_parse_header):
13443         Some small cleanups, use _scale.
13444
13445 2006-10-31  Wim Taymans  <wim@fluendo.com>
13446
13447         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13448         Use higher precision scale function.
13449
13450 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
13451
13452         Patch by: Michal Benes  <michal dot benes at itonis tv>
13453
13454         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13455         (gst_matroska_demux_read_track_encodings),
13456         (gst_matroska_decode_buffer):
13457           Fix several issues with encoded/compressed/encrypted/signed tracks;
13458           also, remove superfluous newline characters from some debug
13459           statements. (#366155)
13460
13461 2006-10-30  Wim Taymans  <wim@fluendo.com>
13462
13463         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13464         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13465         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13466         (gst_smokedec_change_state):
13467         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13468         (gst_smokeenc_init), (gst_smokeenc_finalize),
13469         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13470         (gst_smokeenc_resync), (gst_smokeenc_chain),
13471         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13472         (gst_smokeenc_change_state):
13473         Various cleanups, capsnego and leak fixes.
13474
13475 2006-10-30  Wim Taymans  <wim@fluendo.com>
13476
13477         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13478
13479         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13480         Fix videomixer so that it can handle any combination of framerates.
13481         Fixes #367221.
13482
13483 2006-10-28  Wim Taymans  <wim@fluendo.com>
13484
13485         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13486         (gst_avi_demux_parse_file_header),
13487         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13488         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13489         (gst_avi_demux_chain):
13490         Fix position query for audio. also fixes timestamps in streaming
13491         mode and bug #364958.
13492         Small cleanups.
13493
13494 2006-10-27  Wim Taymans  <wim@fluendo.com>
13495
13496         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13497         * ext/libpng/gstpngenc.h:
13498         Fix strides. Fixes #364856.
13499         Cleanup capsnego.
13500         Set caps on outgoing buffers.
13501
13502 2006-10-18  Wim Taymans  <wim@fluendo.com>
13503
13504         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13505
13506         * gst/rtp/gstrtpgsmpay.c:
13507         * gst/rtp/gstrtph263pay.c:
13508         * gst/rtp/gstrtpmpapay.c:
13509         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13510         (gst_rtp_pcma_pay_handle_buffer):
13511         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13512         Add static payload numbers in addition to the dynamic ones.
13513         Fixes #361639.
13514
13515 2006-10-18  Wim Taymans  <wim@fluendo.com>
13516
13517         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13518         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13519         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13520         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13521         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13522         * gst/rtsp/rtspdefs.h:
13523         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13524         * gst/rtsp/rtspurl.h:
13525         Reuse already existing enum for lower transport.
13526         Add rtspt and rtspu protocols.
13527         Send redirect to rtspt when udp times out.
13528
13529 2006-10-18  Wim Taymans  <wim@fluendo.com>
13530
13531         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13532         (gst_wavparse_stream_data):
13533         Fix seeking some more, mostly for speed changes.
13534
13535 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
13536
13537         Patch by: Fredrik Persson  <frepe at bredband net>
13538
13539         * sys/v4l2/gstv4l2tuner.c:
13540         * sys/v4l2/gstv4l2tuner.h:
13541           Fix _set_channel(): remove useless g_object_notify() for "channel"
13542           property that doesn't exist any longer and therefore now also
13543           useless redirect (#338818).
13544
13545 2006-10-17  Wim Taymans  <wim@fluendo.com>
13546
13547         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13548         Some drivers do not support unsetting the non-blocking flag once the
13549         device is opened. In those cases, close/open the device in
13550         non-blocking mode. Fixes #362673.
13551
13552 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13553
13554         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13555         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13556         (gst_v4l2src_get_fps):
13557           dear stefan, framespersecond is not frameperiod, reverting but adding
13558           comment
13559
13560 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13561
13562         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13563         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13564         (gst_v4l2src_get_fps):
13565           Numerator is numerator and denominator is denominator. Say that aloud
13566           5 times and retry after next beer.
13567
13568 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
13569
13570         Patch by: Josep Torra Valles  <josep at fluendo com>
13571
13572         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13573         * ext/esd/esdsink.c: (gst_esdsink_write):
13574         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13575         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13576         (gst_flac_dec_send_newsegment):
13577         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13578         (gst_flac_enc_tell_callback):
13579         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13580         (smokecodec_parse_header), (smokecodec_decode):
13581         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13582         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13583         * gst/goom/Makefile.am:
13584         * gst/goom/gstgoom.c:
13585         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13586         * gst/rtsp/gstrtspsrc.c:
13587         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13588         * gst/udp/gstudpsink.c:
13589         * gst/udp/gstudpsrc.c:
13590         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13591         * sys/sunaudio/gstsunaudiomixertrack.h:
13592           Fix a bunch of problems discovered by the Forte compiler, mostly type
13593           mixups and pointer arithmetics with void pointers. Fixes #362603.
13594
13595 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13596
13597         * ext/speex/gstspeex.c: (plugin_init):
13598         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13599         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13600         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13601         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13602         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13603         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13604         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13605         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13606         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13607         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13608         (gst_speex_enc_chain), (gst_speex_enc_get_property),
13609         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13610         * ext/speex/gstspeexenc.h:
13611           Miscellaneous clean-ups, among other things: speexenc => enc to
13612           enhance code readability; change speexenc => speex_enc; in chain
13613           function unref input buffer in case of error; take reference in
13614           event function; use boilerplate macro; use gst_pad_query_peer_*
13615           convenience functions.
13616
13617 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13618
13619         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13620         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13621         (gst_speexenc_set_header_on_caps):
13622           Fix some mem leaks.
13623
13624 2006-10-11  Wim Taymans  <wim@fluendo.com>
13625
13626         * gst/rtsp/URLS:
13627         Added some other URL.
13628
13629         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13630         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13631         (gst_rtspsrc_open), (gst_rtspsrc_play),
13632         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13633         * gst/rtsp/gstrtspsrc.h:
13634         Work on fallback to TCP connection when the UDP socket times out.
13635         Handler server requests, just reply with OK for now.
13636
13637         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13638         * gst/rtsp/rtspdefs.h:
13639         Added some more Real extension headers.
13640
13641         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13642         Fix parsing of urls with a ':' that is not part of the hostname:port
13643         part of the url.
13644
13645 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
13646
13647         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13648         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13649         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13650           Activate pad before adding it to the already-running element.
13651
13652         * tests/check/elements/icydemux.c: (icydemux_found_pad):
13653           Activate newly-created pad too.
13654
13655 2006-10-11  Wim Taymans  <wim@fluendo.com>
13656
13657         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13658
13659         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13660         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13661         (gst_udpsrc_start):
13662         Fix some leaks in caps and uris. Fixes #361252.
13663
13664 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
13665
13666         * gst/wavparse/Makefile.am:
13667           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13668
13669 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
13670
13671         * sys/v4l2/gstv4l2xoverlay.c:
13672         * sys/v4l2/gstv4l2xoverlay.h:
13673         Fix build as per the patch in #338818 comment 36.
13674
13675 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
13676
13677         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13678           Activate pads before adding them to the source.
13679
13680 2006-10-06  Wim Taymans  <wim@fluendo.com>
13681
13682         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13683         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13684         Activate pads before adding.
13685
13686 2006-10-06  Wim Taymans  <wim@fluendo.com>
13687
13688         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13689         (gst_multipart_find_pad_by_mime):
13690         Activate pads before adding.
13691
13692         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13693         BOILERPLATE sets parent_class for us.
13694
13695 2006-10-06  Wim Taymans  <wim@fluendo.com>
13696
13697         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13698         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13699         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13700         (gst_rtspsrc_alloc_udp_ports),
13701         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13702         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13703         (gst_rtspsrc_create_transports_string),
13704         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13705         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13706         * gst/rtsp/gstrtspsrc.h:
13707         Rework how the transport string is constructed, try to share channels
13708         and udp ports.
13709         Make most of the stuff less dependant on RTP as we are also going to use
13710         it for RDT.
13711         Add support for transport specific session managers.
13712
13713         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13714         Implement _flush().
13715
13716         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13717         * gst/rtsp/rtspdefs.h:
13718         Add generic error return code.
13719
13720         * gst/rtsp/rtspext.h:
13721         Add support for pluggable tranport strings.
13722
13723         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13724         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13725         (rtsp_ext_wms_get_context):
13726         Detect WMServer and activate the extension.
13727
13728         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13729         (rtsp_transport_get_manager), (rtsp_transport_parse):
13730         * gst/rtsp/rtsptransport.h:
13731         Added methods to get mime/manager for certain transports.
13732
13733 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
13734
13735         * ext/cairo/gsttimeoverlay.c:
13736         (gst_cairo_time_overlay_update_font_height):
13737         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13738         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13739         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13740         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13741         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13742         * ext/libpng/gstpngdec.c: (user_endrow_callback):
13743         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13744         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13745         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13746         (gst_avi_demux_stream_data):
13747         * gst/cutter/gstcutter.c: (gst_cutter_chain):
13748         * gst/debug/efence.c: (gst_efence_buffer_alloc),
13749         (gst_fenced_buffer_copy):
13750         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13751         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13752         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13753         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13754         (gst_rtspsrc_handle_message):
13755         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13756         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13757           Printf format fixes.
13758
13759 2006-10-04  Wim Taymans  <wim@fluendo.com>
13760
13761         * gst/rtsp/Makefile.am:
13762         Dist new .h file too.
13763
13764 2006-10-04  Wim Taymans  <wim@fluendo.com>
13765
13766         * gst/rtsp/Makefile.am:
13767         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13768         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13769         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13770         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13771         (gst_rtspsrc_parse_rtpmap),
13772         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13773         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13774         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13775         * gst/rtsp/gstrtspsrc.h:
13776         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13777         * gst/rtsp/rtspdefs.h:
13778         * gst/rtsp/rtspext.h:
13779         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13780         (rtsp_ext_wms_get_context):
13781         * gst/rtsp/rtspextwms.h:
13782         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13783         (rtsp_transport_parse):
13784         * gst/rtsp/rtsptransport.h:
13785         Factor out extension in separate module.
13786         Fix getcaps to filter against the padtemplate.
13787         Use Content-Base if the server gives one.
13788         Rework the transport parsing a bit for future extensions.
13789         Added some Real Header field definitions.
13790
13791 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13792
13793         * docs/plugins/Makefile.am:
13794         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13795         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13796           added v4l2 stubs
13797         * gst-plugins-good.spec.in:
13798           add v4l2
13799
13800 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
13801
13802         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13803           Extract disc/album/medium number and count and try harder
13804           to extract track number/count.
13805
13806 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13807
13808         * configure.ac:
13809         * sys/Makefile.am:
13810           add build stuff for v4l2, needs --enable-experimental until
13811           the last bits are resolved
13812
13813 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
13814
13815         * tests/check/Makefile.am:
13816           Disable autodetect test temporarily, so that the build bots
13817           update -bad and the ranks of unreliable video sinks in there.
13818
13819         * tests/check/elements/autodetect.c: (GST_START_TEST):
13820           Skip test if no usable videosink is found.
13821
13822 2006-09-29  Wim Taymans  <wim@fluendo.com>
13823
13824         * gst/rtsp/URLS:
13825         Add some more URLs.
13826
13827         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13828         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13829         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13830         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13831         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13832         (gst_rtspsrc_loop), (gst_rtspsrc_send),
13833         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13834         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13835         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13836         * gst/rtsp/gstrtspsrc.h:
13837         Add timeout property to control UDP timeouts.
13838         Fix error messages.
13839         Also start a loop function when operating in UDP mode so that we can
13840         do some more stuff async.
13841         Handle element messages from udpsrc to detect timeouts. If a timeout
13842         happens we currently generate an error.
13843         API: rtspsrc::timeout property.
13844
13845         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13846         (gst_udpsrc_create):
13847         Really implement the timeout in microseconds and not milliseconds.
13848
13849 2006-09-29  Wim Taymans  <wim@fluendo.com>
13850
13851         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13852         (gst_udpsrc_create), (gst_udpsrc_set_property),
13853         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13854         * gst/udp/gstudpsrc.h:
13855         Added property to post a message on timeout.
13856         Updated docs.
13857         When restarting the select, initialize the fdsets again.
13858         Init control sockets so we don't accidentally close a random socket.
13859         API: GstUDPSrc::timeout property
13860
13861 2006-09-29  Wim Taymans  <wim@fluendo.com>
13862
13863         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13864         Fix flag registration.
13865
13866         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13867         Reading 0 also means 'no more commands'
13868
13869 2006-09-29  Wim Taymans  <wim@fluendo.com>
13870
13871         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13872
13873         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13874         Fix possible infinite loop when shutting down, a read can also return
13875         0 to indicate no more messages are available. Fixes #358156.
13876
13877 2006-09-25  Wim Taymans  <wim@fluendo.com>
13878
13879         * gst/autodetect/gstautoaudiosink.c:
13880         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13881         (gst_auto_audio_sink_find_best):
13882         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13883         Small cleanups.
13884         don't try to set "sync" property when it is not available.
13885
13886 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13887
13888         Patch by: Peter Kjellerstedt  <pkj at axis com>
13889
13890         * gst/alpha/gstalpha.c:
13891         * gst/rtp/gstrtpamrdepay.c:
13892         * gst/rtsp/gstrtspsrc.c:
13893         * gst/udp/gstudpsrc.c:
13894         * gst/videomixer/videomixer.c:
13895           Include stdlib.h in some more places, makes things compile
13896           with uClibc and -Werror (#357592).
13897
13898 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13899
13900         * ext/jpeg/gstjpegdec.c:
13901           Set minimum height to 8 (from 16), our code should handle
13902           that fine. Some of the buttons on the apple trailer site
13903           are apparently only 15 pixels high (see #357470).
13904
13905 2006-09-23  Wim Taymans  <wim@fluendo.com>
13906
13907         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13908         (gst_rtspsrc_open):
13909         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13910         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13911         (rtsp_connection_receive):
13912         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13913         * gst/rtsp/rtspdefs.h:
13914         Improve error reporting.
13915
13916 2006-09-23  Wim Taymans  <wim@fluendo.com>
13917
13918         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13919         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13920         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13921         * gst/rtp/gstrtpdepay.c:
13922         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13923         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13924         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13925         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13926         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13927         (gst_rtp_mp2t_depay_plugin_init):
13928         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13929         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13930         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13931         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13932         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13933         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13934         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13935         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13936         Fix klass typos.
13937         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13938
13939 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13940
13941         * configure.ac:
13942           Need  -base CVS for gst_base_rtp_depayload_push_ts().
13943
13944 2006-09-22  Wim Taymans  <wim@fluendo.com>
13945
13946         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13947         Don't check for a tag that is never there and check if we read the
13948         correct tag. Fixes seeking again.
13949         We must post an error when all pads are unlinked.
13950
13951 2006-09-22  Wim Taymans  <wim@fluendo.com>
13952
13953         * gst/rtp/Makefile.am:
13954         * gst/rtp/gstrtp.c: (plugin_init):
13955         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13956         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13957         (gst_rtp_vorbis_pay_reset_packet),
13958         (gst_rtp_vorbis_pay_init_packet),
13959         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13960         (gst_rtp_vorbis_pay_handle_buffer):
13961         More fixage, set endoder-params correctly in the payloader.
13962
13963 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13964
13965         * gst/autodetect/gstautoaudiosink.c:
13966         (gst_auto_audio_sink_base_init):
13967         * gst/autodetect/gstautovideosink.c:
13968         (gst_auto_video_sink_base_init):
13969           Make static pad templates static to appease valgrind's leak
13970           detector.
13971
13972         * tests/check/Makefile.am:
13973         * tests/check/elements/.cvsignore:
13974         * tests/check/elements/autodetect.c: (GST_START_TEST),
13975         (autodetect_suite):
13976           Add simple test for the ghostpad lockup on shutdown fixed in core
13977           CVS (audio bit disabled because it would need dozens of alsa
13978           suppressions and I'm too lazy to add those now).
13979
13980 2006-09-22  Wim Taymans  <wim@fluendo.com>
13981
13982         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13983         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13984         Small cleanups.
13985
13986         * gst/rtp/Makefile.am:
13987         * gst/rtp/gstrtp.c: (plugin_init):
13988         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
13989         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
13990         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
13991         (gst_rtp_vorbis_depay_process),
13992         (gst_rtp_vorbis_depay_set_property),
13993         (gst_rtp_vorbis_depay_get_property),
13994         (gst_rtp_vorbis_depay_change_state),
13995         (gst_rtp_vorbis_depay_plugin_init):
13996         * gst/rtp/gstrtpvorbisdepay.h:
13997         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
13998         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
13999         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
14000         (gst_rtp_vorbis_pay_flush_packet),
14001         (gst_rtp_vorbis_pay_append_buffer),
14002         (gst_rtp_vorbis_pay_handle_buffer),
14003         (gst_rtp_vorbis_pay_plugin_init):
14004         * gst/rtp/gstrtpvorbispay.h:
14005         Add experimental vorbis pay and depayloaders.
14006
14007 2006-09-21  Wim Taymans  <wim@fluendo.com>
14008
14009         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
14010         Fix profile-level-id parsing and setup.
14011
14012 2006-09-21  Wim Taymans  <wim@fluendo.com>
14013
14014         * gst/udp/README:
14015         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
14016         Update README, simple cleanup.
14017
14018 2006-09-21  Wim Taymans  <wim@fluendo.com>
14019
14020         * gst/rtp/README:
14021         Update README with some examples.
14022
14023         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
14024         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
14025         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
14026         (gst_rtp_mp4g_pay_setcaps):
14027         * gst/rtp/gstrtpmp4gpay.h:
14028         Make optional RTP parameters of type STRING, as required by the
14029         application/x-rtp caps specification.
14030
14031 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
14032
14033         * gst/rtp/gstrtph263pdepay.c:
14034         * gst/rtp/gstrtph263ppay.c:
14035         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
14036         RTP header.
14037
14038 2006-09-20  Wim Taymans  <wim@fluendo.com>
14039
14040         * gst/rtp/Makefile.am:
14041         And makefile too.
14042
14043 2006-09-20  Wim Taymans  <wim@fluendo.com>
14044
14045         * gst/rtp/gstrtp.c: (plugin_init):
14046         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
14047         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
14048         (decode_base64), (gst_rtp_asf_depay_setcaps),
14049         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
14050         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
14051         (gst_rtp_asf_depay_plugin_init):
14052         * gst/rtp/gstrtpasfdepay.h:
14053         Added preliminary ASF depayloader.
14054
14055         * gst/rtp/gstrtph264depay.c: (decode_base64):
14056         Fix base64 decoding.
14057
14058 2006-09-20  Wim Taymans  <wim@fluendo.com>
14059
14060         * gst/rtsp/URLS:
14061         Added some test URLS.
14062
14063         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
14064         (gst_rtspsrc_loop), (gst_rtspsrc_open):
14065         * gst/rtsp/gstrtspsrc.h:
14066         When creating streams, give access to the complete SDP.
14067         Fix some leaks.
14068         Collect and merge global stream properties in stream caps.
14069         Preliminary support for WMServer.
14070
14071         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
14072         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
14073         (rtsp_connection_receive):
14074         * gst/rtsp/rtspconnection.h:
14075         Make connection interruptable.
14076         Refactor to make it reconnectable.
14077         Don't fail on short reads when reading data packets.
14078
14079         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
14080         (rtsp_url_get_port):
14081         * gst/rtsp/rtspurl.h:
14082         Add methods for getting/setting the port.
14083
14084         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
14085         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
14086         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
14087         (sdp_media_get_format), (sdp_parse_line),
14088         (sdp_message_parse_buffer):
14089         Fix headers. 
14090         Add methods for getting multiple attributes with the same name.
14091         Increase buffer size when parsing.
14092         Fix parsing of a=foo fields.
14093
14094         * gst/rtsp/test.c: (main):
14095         Update to new connection API.
14096
14097         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
14098         (rtsp_message_init_response), (rtsp_message_init_data),
14099         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
14100         * gst/rtsp/rtspmessage.h:
14101         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
14102         * gst/rtsp/rtsptransport.h:
14103         * gst/rtsp/sdp.h:
14104         * gst/rtsp/sdpmessage.h:
14105         * gst/rtsp/gstrtsp.c:
14106         * gst/rtsp/gstrtsp.h:
14107         * gst/rtsp/gstrtpdec.c:
14108         * gst/rtsp/gstrtpdec.h:
14109         * gst/rtsp/rtsp.h:
14110         * gst/rtsp/rtspdefs.c:
14111         * gst/rtsp/rtspdefs.h:
14112         Dual licensed under MIT and LGPL now.
14113
14114 2006-09-19  Wim Taymans  <wim@fluendo.com>
14115
14116         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
14117         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
14118         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14119         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
14120         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
14121         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
14122         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
14123         * gst/rtsp/gstrtspsrc.h:
14124         Reorganize stream parsing and creation.
14125         Detect container formats in interleaved mode.
14126         Keep more state about the streams.
14127         Assume a server also supports PLAY if it does not say.
14128         Add unicast and interleaved properties to TCP transport requests to make
14129         some servers happy (WMServer).
14130
14131         * gst/rtsp/sdpmessage.h:
14132         Add some defines for the standard Bandwidth types.
14133
14134 2006-09-19  Wim Taymans  <wim@fluendo.com>
14135
14136         * gst/rtsp/test.c: (main):
14137         Fix build.
14138
14139 2006-09-19  Wim Taymans  <wim@fluendo.com>
14140
14141         * gst/wavparse/gstwavparse.c:
14142         Add ms-gsm to the src template.
14143
14144 2006-09-18  Wim Taymans  <wim@fluendo.com>
14145
14146         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14147         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
14148         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14149         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
14150         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14151         * gst/rtsp/gstrtspsrc.h:
14152         Small cleanups, added documentation.
14153         Try to clean up the requests and responses.
14154         Refactor parsing the supported methods.
14155
14156         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
14157         (rtsp_connection_create), (rtsp_connection_send),
14158         (parse_response_status), (parse_request_line),
14159         (rtsp_connection_receive), (rtsp_connection_close),
14160         (rtsp_connection_free):
14161         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
14162         (rtsp_transport_init), (rtsp_transport_parse),
14163         (rtsp_transport_free):
14164         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
14165         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
14166         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
14167         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
14168         Use g_return_val some more.
14169
14170         * gst/rtsp/rtspdefs.h:
14171         Add more enum values to track initial states.
14172
14173         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
14174         (rtsp_message_init_request), (rtsp_message_new_response),
14175         (rtsp_message_init_response), (rtsp_message_init_data),
14176         (rtsp_message_unset), (rtsp_message_free),
14177         (rtsp_message_add_header), (rtsp_message_remove_header),
14178         (rtsp_message_get_header), (rtsp_message_set_body),
14179         (rtsp_message_take_body), (rtsp_message_get_body),
14180         (rtsp_message_steal_body), (rtsp_message_dump):
14181         * gst/rtsp/rtspmessage.h:
14182         Reorder arguments, object goes as the first one.
14183         Use g_return_val some more.
14184
14185 2006-09-18  Wim Taymans  <wim@fluendo.com>
14186
14187         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14188         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14189         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14190         * gst/rtsp/gstrtspsrc.h:
14191         Export sometimes source pad with correct caps on the template, create
14192         the ghostpad from the template.
14193         Remove RTCP template as we never expose RTCP.
14194         Protect against invalid body size.
14195         Avoid memcpy when creating the output buffer.
14196         Properly post an error and send EOS when the loop function is shut down.
14197
14198 2006-09-18  Wim Taymans  <wim@fluendo.com>
14199
14200         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14201
14202         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14203         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14204         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14205         * gst/rtsp/gstrtspsrc.h:
14206         Make sure we can never set an invalid location.
14207
14208         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14209         * gst/rtsp/rtspmessage.h:
14210         Added _steal_body method for future use.
14211
14212         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14213         Make freeing of NULL url return immediatly.
14214
14215 2006-09-18  Wim Taymans  <wim@fluendo.com>
14216
14217         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14218
14219         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14220         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14221         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14222         (gst_rtspsrc_change_state):
14223         * gst/rtsp/gstrtspsrc.h:
14224         Use boilerplate.
14225         Make rtspsrc subclass GstBin to make state changes easier.
14226         Add Range header field on the PLAY request.
14227
14228 2006-09-18  Wim Taymans  <wim@fluendo.com>
14229
14230         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14231
14232         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14233         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14234         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14235         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14236         * gst/rtsp/rtspconnection.c: (inet_aton):
14237         Small cleanups.
14238         when multicast is selected as the transport, create UDP sources and
14239         connect to the multicast group.
14240         Move parsing and setting of caps to a common place.
14241         Fixes #349894.
14242
14243 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
14244
14245         * ext/flac/gstflactag.c:
14246         * gst/alpha/gstalpha.c:
14247         * gst/debug/breakmydata.c:
14248         * gst/debug/negotiation.c:
14249         * gst/debug/testplugin.c:
14250         * gst/effectv/gstaging.c:
14251         * gst/effectv/gstdice.c:
14252         * gst/effectv/gstedge.c:
14253         * gst/effectv/gstquark.c:
14254         * gst/effectv/gstrev.c:
14255         * gst/effectv/gstshagadelic.c:
14256         * gst/effectv/gstvertigo.c:
14257         * gst/effectv/gstwarp.c:
14258         * gst/multipart/multipartdemux.c:
14259         * gst/multipart/multipartmux.c:
14260         * gst/videobox/gstvideobox.c:
14261         * gst/videofilter/gstgamma.c:
14262         * gst/videofilter/gstvideotemplate.c:
14263         * gst/videomixer/videomixer.c:
14264         * sys/sunaudio/gstsunaudiosrc.h:
14265         More G_OBJECT macro fixing.
14266
14267 2006-09-16  Wim Taymans  <wim@fluendo.com>
14268
14269         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14270
14271         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14272         Correctly set the dwLength in strh.
14273         With this patch, the file duration is now displayed correctly in window
14274         media player and the AVI plays completely. Fixes #356147
14275
14276 2006-09-15  Wim Taymans  <wim@fluendo.com>
14277
14278         Patch by: Darren Kenny <darren dot kenny at sun dot com>
14279
14280         * sys/sunaudio/gstsunaudiomixerctrl.c:
14281         (gst_sunaudiomixer_ctrl_build_list):
14282         Set the output track as the MASTER so that the gnome-settings-daemon
14283         keybindings for changing the volume using the keyboard works.
14284         Fixes #356142.
14285
14286 2006-09-15  Wim Taymans  <wim@fluendo.com>
14287
14288         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14289         Fix documentation, it is not possible to control the framerate of jpegdec
14290         using filtered caps yet. Fixes #355210.
14291         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14292         stop when there is an error.
14293
14294 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14295
14296         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14297         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14298           Don't interpret a first buffer with an offset of NONE as
14299           'from the middle of the stream', but only a first buffer
14300           that has a valid buffer offset that's non-zero (see #345449).
14301
14302 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14303
14304         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14305         (gst_icydemux_typefind_or_forward):
14306         * gst/icydemux/gsticydemux.h:
14307           When we merge/collect multiple incoming buffers for typefinding
14308           purposes, keep an initial 0 offset on the first outgoing buffer
14309           as well (otherwise id3demux won't work right). Fixes #345449.
14310           Also Make buffer metadata writable before setting buffer caps.
14311
14312         * tests/check/elements/icydemux.c: (typefind_succeed),
14313         (cleanup_icydemux), (push_data), (GST_START_TEST),
14314         (icydemux_suite):
14315           Small test case for the above.
14316
14317 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
14318
14319         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14320         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14321         (gst_avi_demux_stream_header_push),
14322         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14323         (gst_avi_demux_loop):
14324           More code reuse and better logging in _peek_chunk(). Reintroduce check
14325           for chunk sizes before reading them (avoid oom). Better handling for 
14326           invalid chunksizes when streaming.
14327
14328 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
14329
14330         * gst/level/gstlevel.c: (gst_level_set_property):
14331         * gst/level/gstlevel.h:
14332           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14333           René Stadler
14334
14335 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
14336
14337         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14338         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14339         (gst_avi_demux_stream_data):
14340           Revert one change to fix streaming avi (adapter size != data size).
14341
14342 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14343
14344         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
14345
14346         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14347         (gst_matroska_demux_reset),
14348         (gst_matroska_demux_read_track_encodings),
14349         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14350         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14351         (gst_matroska_demux_subtitle_caps):
14352         * gst/matroska/matroska-ids.h:
14353           Add support for VOBSUB subtitle tracks and zlib-compressed
14354           tracks. Make sure we start on a keyframe after a seek. (#343348)
14355
14356 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14357
14358         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14359         (gst_matroska_demux_push_flac_codec_priv_data),
14360         (gst_matroska_demux_push_xiph_codec_priv_data),
14361         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14362         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14363         * gst/matroska/matroska-ids.h:
14364           Add basic FLAC support (#311586), not perfect yet though, needs some
14365           tweaking in flacdec; also, seeking could be better.
14366           Do better bounds checking when deserialising vorbis stream headers
14367           to make sure we don't read beyond the end of the buffer on bad input.
14368
14369 2006-09-04  Wim Taymans  <wim@fluendo.com>
14370
14371         Patch by: Alessandro Decina <alessandro at nnva dot org>
14372
14373         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14374         Seeking back in a file containing a CMML stream errors out if the seek
14375         goes back up to the CMML headers. This is because after the seek the xml
14376         processing instruction <?xml ...?> is submitted to the xml parser again, 
14377         which results in an error. The attached patch fixes the problem. 
14378         Fixes #353908.
14379
14380         * ext/annodex/gstcmmlenc.h:
14381         Fix authors name.
14382
14383
14384 2006-08-28  Andy Wingo  <wingo@pobox.com>
14385
14386         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14387         New helper function to lessen the ifdefs.
14388         (GST_INFO_OBJECT): 
14389         (gst_dv1394src_iso_receive): Use it.
14390         (gst_dv1394src_create): Also use the control sockets in iec61883
14391         mode.
14392         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14393         handle for AVC operations; fixes #348233.
14394
14395 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14396
14397         * configure.ac:
14398         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14399         * docs/plugins/inspect/plugin-audiofx.xml:
14400         * docs/plugins/inspect/plugin-audiofxgood.xml:
14401         * gst/audiofx/Makefile.am:
14402         * gst/audiofx/audiofx.c:
14403         * gst/audiofxgood/.cvsignore:
14404         * gst/audiofxgood/Makefile.am:
14405         * gst/audiofxgood/audiofx.c:
14406         * gst/audiofxgood/audiopanorama.c:
14407         * gst/audiofxgood/audiopanorama.h:
14408           Rename again (audiofxgood -> audiofx).
14409
14410 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14411
14412         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14413         (gst_avi_demux_stream_scan):
14414           Initialze variables.
14415
14416 2006-08-25  Wim Taymans  <wim@fluendo.com>
14417
14418         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14419         (gst_avi_demux_init), (gst_avi_demux_finalize),
14420         (gst_avi_demux_reset), (gst_avi_demux_index_last),
14421         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14422         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14423         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14424         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14425         (gst_avi_demux_massage_index),
14426         (gst_avi_demux_calculate_durations_from_index),
14427         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14428         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14429         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14430         (gst_avi_demux_change_state):
14431         * gst/avi/gstavidemux.h:
14432         More attempts to turn this into readable code.
14433         Don't leak adapters.
14434         Calculate duration according to index more efficiently.
14435         Don't try to act like we drive the pipeline in chain mode.
14436
14437 2006-08-25  Wim Taymans  <wim@fluendo.com>
14438
14439         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14440         Fix build.
14441
14442 2006-08-25  Wim Taymans  <wim@fluendo.com>
14443
14444         Patch by: Alessandro Decina <alessandro at nnva dot org>
14445
14446         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14447         Do some extra sanity checks.
14448         Fixes #350340.
14449
14450         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14451         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14452         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14453         Check if clip->start_time is valid before adding the clip to the
14454         track list.
14455         Reset enc->preamble going from PAUSED to READY.
14456         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14457         only used for EOS.
14458         Only post an error message if we were the one that created the fatal
14459         GstFlowReturn value.
14460
14461         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14462         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14463         Parse the seconds field of the npt-sec time format using %llu rather than
14464         %d and check that the value scaled by GST_SECOND doesn't overflow.
14465         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14466         Lookup a clip's track with clip->track rather than clip->id which
14467         makes no sense.
14468         Identify a clip by its track and start time and not its xml id.
14469         do some more input checking and make sure we don't do undefined shifts.
14470
14471         * tests/check/elements/cmmldec.c: (setup_cmmldec),
14472         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14473         (cmml_tag_message_pop), (check_headers), (push_clip_full),
14474         (push_clip), (push_empty_clip), (check_output_clip),
14475         (GST_START_TEST), (cmmldec_suite):
14476         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14477         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14478         (check_headers), (push_clip), (check_clip_times), (check_clip),
14479         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14480         Added some more checks.
14481
14482 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14483
14484         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14485         (gst_audio_panorama_set_property),
14486         (gst_audio_panorama_get_property),
14487         (gst_audio_panorama_transform_m2s_int),
14488         (gst_audio_panorama_transform_s2s_int),
14489         (gst_audio_panorama_transform_m2s_float),
14490         (gst_audio_panorama_transform_s2s_float):
14491         * gst/audiofxgood/audiopanorama.h:
14492         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14493           Make also the pan-property float (saves scaling and yields better
14494           resolution)
14495
14496 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14497
14498         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14499         (gst_audio_panorama_transform_m2s_float),
14500         (gst_audio_panorama_transform_s2s_float):
14501           ChangeLog surgery to add cymax's real name
14502
14503
14504 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14505
14506         Patch by: René Stadler <mail@renestadler.de>
14507
14508         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14509         (gst_audio_panorama_transform_m2s_int),
14510         (gst_audio_panorama_transform_s2s_int),
14511         (gst_audio_panorama_transform_m2s_float),
14512         (gst_audio_panorama_transform_s2s_float),
14513         (gst_audio_panorama_transform):
14514         * gst/audiofxgood/audiopanorama.h:
14515           Added float support
14516
14517 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14518
14519         * gst/audiofxgood/audiopanorama.c:
14520         (gst_audio_panorama_transform_m2s):
14521           Fix docs & debug category. Add Fixme for volume pan levels.
14522
14523 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14524
14525         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14526         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14527         (gst_avi_demux_stream_header_pull),
14528         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14529         (gst_avi_demux_chain):
14530           unbreak AVI index handling, some more debug, remove an obsolete
14531           adapter_flush that caused streaming to wander off in the wild
14532
14533 2006-08-24  Wim Taymans  <wim@fluendo.com>
14534
14535         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14536         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14537         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14538         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14539         (gst_avi_demux_calculate_durations_from_index),
14540         (gst_avi_demux_stream_header_push),
14541         (gst_avi_demux_stream_header_pull):
14542         * gst/avi/gstavidemux.h:
14543         Some more cleanups. 
14544         Fix totalFrames parsing in ODML.
14545         Disable use of index for length calculation in case of ODML as this is
14546         broken now.
14547
14548 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
14549
14550         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14551           Use libgsttag helper function here too.
14552
14553 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
14554
14555         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14556         (gst_avi_demux_init), (gst_avi_demux_dispose),
14557         (gst_avi_demux_reset), (gst_avi_demux_index_next),
14558         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14559         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14560         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14561         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14562         (gst_avi_demux_parse_subindex),
14563         (gst_avi_demux_read_subindexes_push),
14564         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14565         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14566         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14567         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14568         (gst_avi_demux_stream_header_pull),
14569         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14570         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14571         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14572         (gst_avi_demux_change_state):
14573         * gst/avi/gstavidemux.h:
14574           Initial streaming support for avidemux (fixes #336465)
14575
14576 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14577
14578         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14579           There is no taglibmux element ...
14580
14581         * gst/rtsp/gstrtspsrc.c:
14582           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14583           was complaining about unknown entity here.
14584
14585 2006-08-22  Wim Taymans  <wim@fluendo.com>
14586
14587         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14588         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14589         (gst_avi_demux_process_next_entry):
14590         * gst/avi/gstavidemux.h:
14591         Mark DISCONT.
14592         Remove old unused fields and reorder the struct a bit.
14593
14594 2006-08-22  Wim Taymans  <wim@fluendo.com>
14595
14596         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14597         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14598         (gst_rtspsrc_pause):
14599         * gst/rtsp/gstrtspsrc.h:
14600         * sys/oss/gstosssink.c: (gst_oss_sink_open),
14601         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14602         Small documentation updates.
14603
14604 2006-08-22  Wim Taymans  <wim@fluendo.com>
14605
14606         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14607         (gst_avi_demux_index_entry_for_time),
14608         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14609         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14610         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14611         (gst_avi_demux_next_data_buffer),
14612         (gst_avi_demux_calculate_durations_from_index),
14613         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14614         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14615         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14616         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14617         * gst/avi/gstavidemux.h:
14618         Precalc most of the duration query for each stream.
14619         Make seeking more correct.
14620         Use GstSegment to track position and duration.
14621         Code cleanups and leak fixes.
14622         Calculate correct total duration based on index length.
14623
14624 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
14625
14626         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14627         (parse_insert_string_field):
14628           If strings in text fields are marked ISO8859-1, but contain
14629           valid UTF-8 already, then handle them as UTF-8 and ignore
14630           the encoding. (#351794)
14631
14632 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14633
14634         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14635         (gst_flac_dec_write), (gst_flac_dec_loop),
14636         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14637         (gst_flac_dec_src_query):
14638         * ext/flac/gstflacdec.h:
14639           Make flac-in-ogg work (#352100).
14640
14641 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14642
14643         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14644           Don't unref buffers of which we've already given away
14645           ownership to the adapter.
14646
14647 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14648
14649         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14650           Make metadata extraction actually work.
14651
14652         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14653         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14654         (gst_speexenc_chain):
14655           Fix metadata writing: replace old code which wrote completely
14656           broken tags with libgsttag-based code. Plus miscellaneous
14657           code cleanups (use static pad templates etc.) and a bunch
14658           of leak fixes.
14659
14660 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14661
14662         * gst/audiopanorama/.cvsignore:
14663         * gst/audiopanorama/Makefile.am:
14664         * gst/audiopanorama/audiofx.c:
14665         * gst/audiopanorama/audiopanorama.c:
14666         * gst/audiopanorama/audiopanorama.h:
14667           die! die! die! you should never have been there
14668
14669 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
14670
14671         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14672         Fix invalid memory access in audiopanorama test suite.
14673
14674 2006-08-21  Edward Hervey  <edward@fluendo.com>
14675
14676         * tests/check/elements/.cvsignore:
14677         ignore built file
14678
14679 2006-08-21  Wim Taymans  <wim@fluendo.com>
14680
14681         * gst/rtp/Makefile.am:
14682         Fix the build again.
14683
14684 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14685
14686         * gst/audiofxgood/.cvsignore:
14687         * gst/audiofxgood/Makefile.am:
14688         * gst/audiofxgood/audiofx.c: (plugin_init):
14689         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14690         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14691         (gst_audio_panorama_set_property),
14692         (gst_audio_panorama_get_property),
14693         (gst_audio_panorama_get_unit_size),
14694         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14695         (gst_audio_panorama_transform_m2s),
14696         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14697         * gst/audiofxgood/audiopanorama.h:
14698           resubmit with the desired name *again*
14699
14700 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14701
14702         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14703         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14704           use g_assert in _get_unit_size
14705
14706 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14707
14708         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14709         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14710         * docs/plugins/inspect/plugin-audiofxgood.xml:
14711           cleanup -unused.txt to make it useful, add previously missing docs
14712
14713         * ext/Makefile.am:
14714           Quietly (accidentally) enable LADSPA for building by default, 
14715           despite the fact that it doesn't meet the plugin checklist.
14716             -- Added by Jan Schmidt 18 Dec 2006
14717
14718         * ext/esd/esdmon.c:
14719         * ext/esd/esdsink.c:
14720         * ext/esd/gstesd.c: (plugin_init):
14721           reflow to get rid of two external symbols
14722
14723         * gst/audiofxgood/audiofx.c: (plugin_init):
14724           re-add
14725
14726 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14727
14728         * configure.ac:
14729         * gst/audiofxgood/.cvsignore:
14730         * gst/audiofxgood/Makefile.am:
14731         * gst/audiofxgood/audiofx.c
14732         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14733         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14734         (gst_audio_panorama_set_property),
14735         (gst_audio_panorama_get_property),
14736         (gst_audio_panorama_get_unit_size),
14737         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14738         (gst_audio_panorama_transform_m2s),
14739         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14740         * gst/audiofxgood/audiopanorama.h:
14741         * tests/check/Makefile.am:
14742         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14743         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14744         (panorama_suite), (main):
14745         Add audiofxgood plugin with audiopanorama element
14746
14747 2006-08-18  Wim Taymans  <wim@fluendo.com>
14748
14749         * docs/plugins/Makefile.am:
14750         More Oss docs fixage. 
14751
14752 2006-08-18  Wim Taymans  <wim@fluendo.com>
14753
14754         * gst/rtp/Makefile.am:
14755         * gst/rtp/gstrtp.c: (plugin_init):
14756         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14757         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14758         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14759         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14760         (gst_rtp_sv3v_depay_get_property),
14761         (gst_rtp_sv3v_depay_change_state),
14762         (gst_rtp_sv3v_depay_plugin_init):
14763         * gst/rtp/gstrtpsv3vdepay.h:
14764         Added experimental SVQ3 depayloader.
14765
14766 2006-08-18  Edward Hervey  <edward@fluendo.com>
14767
14768         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14769         (gst_dvdemux_loop), (gst_dvdemux_change_state):
14770         * ext/dv/gstdvdemux.h:
14771         When handling seek requests, don't send the newsegment event from the
14772         calling thread. Instead save it so it can be sent from the streaming
14773         thread.
14774
14775 2006-08-17  Wim Taymans  <wim@fluendo.com>
14776
14777         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14778
14779         * gst/multipart/multipartdemux.c: (multipart_parse_header):
14780         Accept leading whitespace before the boundary
14781         This patch makes the demuxer allow some whitespace before the actual
14782         boundary. This makes the demuxer work with the ``old'' gstreamer
14783         multipartmuxer again (which placed an extra \n before the start
14784         of the stream) Fixes #349068.
14785
14786 2006-08-17  Wim Taymans  <wim@fluendo.com>
14787
14788         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14789         Error out on non-implemented stuff.
14790
14791 2006-08-16  Wim Taymans  <wim@fluendo.com>
14792
14793         Patch by: Andy Wingo <wingo at pobox dot com>
14794
14795         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14796         (gst_signal_processor_start), (gst_signal_processor_stop),
14797         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14798         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14799         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14800         (gst_signal_processor_change_state):
14801         Make ladspa elements reusable. Fixes #350006.
14802
14803 2006-08-16  Wim Taymans  <wim@fluendo.com>
14804
14805         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14806         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14807         names as possible. Fixes #349901.
14808
14809 2006-08-16  Wim Taymans  <wim@fluendo.com>
14810
14811         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14812         (gst_signal_processor_do_pushes):
14813         A push() gives away our refcount so we should not use the buffer on the
14814         pen anymore.
14815
14816 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14817
14818         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14819         (gst_oss_mixer_element_finalize):
14820           Don't leak device string.
14821
14822 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14823
14824         * configure.ac:
14825           Require CVS of GStreamer core and -base (for
14826           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14827
14828         * ext/taglib/gstid3v2mux.cc:
14829           Write extended comment tags properly (#348762).
14830
14831         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14832         (parse_comment_frame):
14833           Extract COMM frames into extended comments, which makes it
14834           easier to properly retain the description bit of the tag
14835           and maintain this information when re-tagging (#348762).
14836
14837 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14838
14839         * tests/check/Makefile.am:
14840           Don't try to run annodex unit tests if the annodex
14841           plugin has not been built (Fixes #351116).
14842
14843 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14844
14845         * gst/autodetect/gstautoaudiosink.c:
14846         (gst_auto_audio_sink_find_best):
14847           When we can't find a usable audiosink, don't error out,
14848           but use a fake sink instead and post a warning message
14849           on the bus (#341278).
14850
14851 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14852
14853         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14854         * sys/oss/gstosssink.c:
14855         * sys/oss/gstosssrc.c:
14856           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14857           ossmixer's new device property.
14858
14859         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14860         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14861           Add docs for OSS elements.
14862
14863         * docs/plugins/inspect/plugin-aasink.xml:
14864         * docs/plugins/inspect/plugin-alaw.xml:
14865         * docs/plugins/inspect/plugin-alpha.xml:
14866         * docs/plugins/inspect/plugin-alphacolor.xml:
14867         * docs/plugins/inspect/plugin-annodex.xml:
14868         * docs/plugins/inspect/plugin-apetag.xml:
14869         * docs/plugins/inspect/plugin-auparse.xml:
14870         * docs/plugins/inspect/plugin-autodetect.xml:
14871         * docs/plugins/inspect/plugin-avi.xml:
14872         * docs/plugins/inspect/plugin-cacasink.xml:
14873         * docs/plugins/inspect/plugin-cairo.xml:
14874         * docs/plugins/inspect/plugin-cdio.xml:
14875         * docs/plugins/inspect/plugin-cutter.xml:
14876         * docs/plugins/inspect/plugin-debug.xml:
14877         * docs/plugins/inspect/plugin-dv.xml:
14878         * docs/plugins/inspect/plugin-efence.xml:
14879         * docs/plugins/inspect/plugin-effectv.xml:
14880         * docs/plugins/inspect/plugin-esdsink.xml:
14881         * docs/plugins/inspect/plugin-flac.xml:
14882         * docs/plugins/inspect/plugin-flxdec.xml:
14883         * docs/plugins/inspect/plugin-gconfelements.xml:
14884         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14885         * docs/plugins/inspect/plugin-goom.xml:
14886         * docs/plugins/inspect/plugin-halelements.xml:
14887         * docs/plugins/inspect/plugin-icydemux.xml:
14888         * docs/plugins/inspect/plugin-id3demux.xml:
14889         * docs/plugins/inspect/plugin-jpeg.xml:
14890         * docs/plugins/inspect/plugin-level.xml:
14891         * docs/plugins/inspect/plugin-matroska.xml:
14892         * docs/plugins/inspect/plugin-mulaw.xml:
14893         * docs/plugins/inspect/plugin-multipart.xml:
14894         * docs/plugins/inspect/plugin-navigationtest.xml:
14895         * docs/plugins/inspect/plugin-ossaudio.xml:
14896         * docs/plugins/inspect/plugin-png.xml:
14897         * docs/plugins/inspect/plugin-rtp.xml:
14898         * docs/plugins/inspect/plugin-rtsp.xml:
14899         * docs/plugins/inspect/plugin-shout2send.xml:
14900         * docs/plugins/inspect/plugin-smpte.xml:
14901         * docs/plugins/inspect/plugin-speex.xml:
14902         * docs/plugins/inspect/plugin-taglib.xml:
14903         * docs/plugins/inspect/plugin-udp.xml:
14904         * docs/plugins/inspect/plugin-videobalance.xml:
14905         * docs/plugins/inspect/plugin-videobox.xml:
14906         * docs/plugins/inspect/plugin-videoflip.xml:
14907         * docs/plugins/inspect/plugin-videomixer.xml:
14908         * docs/plugins/inspect/plugin-wavenc.xml:
14909         * docs/plugins/inspect/plugin-wavparse.xml:
14910         * docs/plugins/inspect/plugin-ximagesrc.xml:
14911           Update to CVS version.
14912           
14913 2006-08-16  Wim Taymans  <wim@fluendo.com>
14914
14915         * gst/rtp/gstrtpamrdepay.c:
14916         * gst/rtp/gstrtpmp4gdepay.c:
14917         Caps extra properties must be defined as strings for
14918         depayloaders because they are generated from an SDP.
14919
14920         * gst/rtp/Makefile.am:
14921         * gst/rtp/gstrtp.c: (plugin_init):
14922         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14923         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14924         (gst_rtp_h264_depay_finalize), (decode_base64),
14925         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14926         (gst_rtp_h264_depay_set_property),
14927         (gst_rtp_h264_depay_get_property),
14928         (gst_rtp_h264_depay_change_state),
14929         (gst_rtp_h264_depay_plugin_init):
14930         * gst/rtp/gstrtph264depay.h:
14931         Added basic, not completely functional RFC 3984 H264 depayloader.
14932
14933 2006-08-16  Wim Taymans  <wim@fluendo.com>
14934
14935         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14936         Add pads after setting them up.
14937
14938         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14939         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14940         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14941         (gst_rtspsrc_stream_setup_rtp),
14942         (gst_rtspsrc_stream_configure_transport),
14943         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14944         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14945         (gst_rtspsrc_pause):
14946         * gst/rtsp/gstrtspsrc.h:
14947         Fix interleaved mode.
14948          - Protect streaming with lock.
14949          - Combine flows
14950          - set caps on outgoing buffers.
14951          - strip trailing \0 from data packets.
14952          - Configure RTP/RTCP in stream.
14953         Use DEBUG_OBJECT more.
14954
14955 2006-08-16  Wim Taymans  <wim@fluendo.com>
14956
14957         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14958         Turn a g_print into a DEBUG line.
14959
14960 2006-08-13  Wim Taymans  <wim@fluendo.com>
14961
14962         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14963         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14964         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14965         (gst_oss_mixer_element_get_property),
14966         (gst_oss_mixer_element_change_state):
14967         * sys/oss/gstossmixerelement.h:
14968         Small cleanups. Better error reporting.
14969         Add device property for the mixer instead of the hardcoded
14970         /dev/mixer. Fixes #350785.
14971         API: GstOssMixerElement::device property
14972
14973 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
14974
14975         Patch by: Jens Granseuer <jensgr at gmx net>
14976
14977         * gconf/Makefile.am:
14978           Make --disable-schemas work right (they still need
14979           to be copied to the installation directory, just not
14980           applied). Fixes #351347 (also #344100).
14981           
14982 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14983
14984         * configure.ac: back to HEAD
14985
14986 === release 0.10.4 ===
14987
14988 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
14989
14990         * configure.ac:
14991           releasing 0.10.4, "Dear Leader"
14992
14993 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14994
14995         Patch by: Edward Hervey <edward@fluendo.com>
14996
14997         * configure.ac:
14998         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
14999         (gst_wavparse_stream_data):
15000         Send the newsegment event in the streaming thread.
15001         Fixes #347529
15002
15003 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
15004
15005         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
15006         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
15007         (gst_smokeenc_resync), (gst_smokeenc_chain):
15008           Refuse sink caps in the encoder if width or height is not a
15009           multiple of 16, the encoder does not support that yet (#349939);
15010           along the same lines, check the return value of the encoder
15011           setup function; also remove some debug log clutter.
15012
15013 2006-08-04  Andy Wingo  <wingo@pobox.com>
15014
15015         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
15016         whether a processor can work in place or not, and for keeping
15017         track of its state. Change the FlowReturn instance variable from
15018         "state" to "flow_state", all callers changed.
15019
15020         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
15021         (gst_signal_processor_start, gst_signal_processor_stop)
15022         (gst_signal_processor_cleanup): New functions to manage the
15023         processor's state.
15024         (gst_signal_processor_setcaps): start() as well as setup() here.
15025         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
15026         (gst_signal_processor_change_state): Stop and cleanup the
15027         processor as we go to NULL.
15028
15029         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
15030         INPLACE_BROKEN is not set.
15031
15032         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
15033         Do the alloc_buffer in bytes, not frames.
15034         
15035 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15036
15037         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
15038         Fix rgb masks when recording in < 24bpp.
15039
15040 2006-08-04  Andy Wingo  <wingo@pobox.com>
15041
15042         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
15043         (gst_signal_processor_prepare)
15044         (gst_signal_processor_update_inputs)
15045         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
15046         (gst_signal_processor_flush)
15047         (gst_signal_processor_sink_activate_push)
15048         (gst_signal_processor_src_activate_pull)
15049         (gst_signal_processor_change_state): Remove the last of the code
15050         that assumes that we process whole buffers at a time. Fix some
15051         debugging. Seems to work now in some cases.
15052         (gst_signal_processor_src_activate_pull): BPB
15053
15054 2006-08-01  Andy Wingo  <wingo@pobox.com>
15055
15056         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
15057         Fix nframes-choosing.
15058         (gst_signal_processor_init): Init pending_in and pending_out.
15059
15060         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
15061         more default sample rate, although we never check that the sample
15062         rate actually gets set. Something for the future.
15063         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
15064         (gst_signal_processor_event): Refcount fixen.
15065         (gst_signal_processor_process): Pull the number of frames to
15066         process from the sizes of the buffers in the input pens.
15067         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
15068         (gst_signal_processor_do_pulls): Add an nframes argument, and use
15069         it instead of buffer_frames.
15070         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
15071         to do_pulls.
15072         (gst_signal_processor_chain)
15073         (gst_signal_processor_sink_activate_push)
15074         (gst_signal_processor_src_activate_pull):  Refcount fixen.
15075
15076         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
15077
15078 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
15079
15080         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
15081         (gst_signal_processor_process):
15082           don't query buffer-frames from caps, add lots of debug-log,
15083           try fix for assert (#349189)
15084
15085 2006-07-31  Wim Taymans  <wim@fluendo.com>
15086
15087         * gst/udp/gstudpsrc.c:
15088         Fix docs.
15089
15090 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
15091
15092         * ext/ladspa/gstsignalprocessor.c:
15093         (gst_signal_processor_add_pad_from_template),
15094         (gst_signal_processor_init), (gst_signal_processor_setcaps),
15095         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
15096         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
15097         (gst_signal_processor_sink_activate_push),
15098         (gst_signal_processor_src_activate_pull),
15099         (gst_signal_processor_change_state):
15100          Add debugs logs here and there, add more error handling, add some
15101          FIXME comments, filed #349189
15102
15103 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15104
15105         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15106         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
15107         Set caps on buffer correctly.  Fixes bug #349155.
15108
15109 2006-07-28  Wim Taymans  <wim@fluendo.com>
15110
15111         Patch by: Sjoerd Simons <sjoerd at luon dot net>
15112
15113         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15114         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15115         (gst_multipart_demux_finalize), (get_line_end),
15116         (multipart_parse_header), (multipart_find_boundary),
15117         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15118         (gst_multipart_set_property), (gst_multipart_get_property):
15119         Uses GstAdapter instead of own buffering.
15120         Actually parses the mime-type correctly (In tests the mime-type was
15121         always "" with the old version).
15122         Uses the Content-length header if available to speed up things.
15123         Reliably autoscans the boundary name by default.
15124         Fixes #349068.
15125
15126         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
15127         Don't start the stream with a \n.
15128
15129 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
15130
15131         Patch by: Brian Cameron <brian dot cameron at sun com>
15132
15133         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
15134           Open source with O_NONBLOCK (#349015).
15135
15136 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
15137
15138         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15139         (gst_avi_demux_massage_index):
15140         * gst/avi/gstavidemux.h:
15141           Whitespace fixes and more debug
15142
15143 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15144
15145         * gst/autodetect/gstautoaudiosink.c:
15146         (gst_auto_audio_sink_create_element_with_pretty_name),
15147         (gst_auto_audio_sink_find_best),
15148         (gst_auto_audio_sink_change_state):
15149           Get rid of old and unused magic sound-server properties stuff.
15150           Add suffix to child sink's name that makes it easy to see from
15151           the name alone which type it actually is (alsa, oss, esd, etc.).
15152
15153 2006-07-27  Wim Taymans  <wim@fluendo.com>
15154
15155         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15156         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
15157         (gst_udpsrc_start):
15158         * gst/udp/gstudpsrc.h:
15159         Rename "buffer" to "buffer-size" to make clear it is a size we set and
15160         not some sort of feature we enable.
15161
15162 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15163
15164         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
15165           Use CLOSE_SOCKET() here instead of close() to maintain
15166           win32 workiness.
15167
15168 2006-07-27  Wim Taymans  <wim@fluendo.com>
15169
15170         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
15171
15172         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15173         (gst_udpsrc_create), (gst_udpsrc_set_property),
15174         (gst_udpsrc_get_property), (gst_udpsrc_start):
15175         * gst/udp/gstudpsrc.h:
15176         Added "buffer-size" property to control the kernel receive buffer size.
15177         Update documentation.
15178         Small cleanups. Fixes #348752.
15179         API: buffer-size property
15180
15181 2006-07-26  Wim Taymans  <wim@fluendo.com>
15182
15183         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15184
15185         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15186         (gst_rtp_pcma_pay_handle_buffer):
15187         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15188         (gst_rtp_pcmu_pay_handle_buffer):
15189         Fix timestamp calculation on outgoing RTP packets.
15190         Fixes #348675.
15191
15192 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15193
15194         * ext/taglib/gstid3v2mux.cc:
15195           Fix writing of comment frames (should be COMM not TCOM),
15196           is still sub-optimal though, since we don't retain or
15197           extract the comment descriptions properly (#334375,
15198           also see #334375).
15199
15200 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15201
15202         * gst/wavparse/gstwavparse.c:
15203           #define 'fact' RIFF chunk if we are not compiling against
15204           -base CVS (we don't want to depend on -base CVS for this
15205           one define only, and also not for release order reasons).
15206
15207 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15208
15209         * ext/taglib/gstid3v2mux.cc:
15210           Handle multiple tags of the same type properly. Re-inject
15211           unparsed ID3v2 frames that we get as binary blobs from
15212           id3demux into the tag again so we don't lose information
15213           when retagging (#334375).
15214
15215 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15216
15217         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15218           Document newly-added properties properly, so that there is a
15219           'Since: 0.10.4' in the plugin docs. Convert some property
15220           names into canonical GObject style (GObject will do that
15221           internally anyway).
15222
15223 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15224
15225         * gst/id3demux/id3tags.c:
15226         (id3demux_add_id3v2_frame_blob_to_taglist):
15227           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15228           well, and add the version to the blob's buffer caps, since that
15229           information will be needed for deserialisation later on (#348644).
15230
15231 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
15232
15233         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15234         (gst_avi_demux_parse_stream):
15235          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15236          indentation and spacing.
15237
15238 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15239
15240         * docs/plugins/Makefile.am:
15241         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15242         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15243         * docs/plugins/gst-plugins-good-plugins.args:
15244         * docs/plugins/inspect/plugin-1394.xml:
15245         * docs/plugins/inspect/plugin-aasink.xml:
15246         * docs/plugins/inspect/plugin-alaw.xml:
15247         * docs/plugins/inspect/plugin-alpha.xml:
15248         * docs/plugins/inspect/plugin-alphacolor.xml:
15249         * docs/plugins/inspect/plugin-annodex.xml:
15250         * docs/plugins/inspect/plugin-apetag.xml:
15251         * docs/plugins/inspect/plugin-auparse.xml:
15252         * docs/plugins/inspect/plugin-autodetect.xml:
15253         * docs/plugins/inspect/plugin-avi.xml:
15254         * docs/plugins/inspect/plugin-cacasink.xml:
15255         * docs/plugins/inspect/plugin-cairo.xml:
15256         * docs/plugins/inspect/plugin-cdio.xml:
15257         * docs/plugins/inspect/plugin-cutter.xml:
15258         * docs/plugins/inspect/plugin-debug.xml:
15259         * docs/plugins/inspect/plugin-dv.xml:
15260         * docs/plugins/inspect/plugin-efence.xml:
15261         * docs/plugins/inspect/plugin-effectv.xml:
15262         * docs/plugins/inspect/plugin-esdsink.xml:
15263         * docs/plugins/inspect/plugin-flac.xml:
15264         * docs/plugins/inspect/plugin-flxdec.xml:
15265         * docs/plugins/inspect/plugin-gconfelements.xml:
15266         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15267         * docs/plugins/inspect/plugin-goom.xml:
15268         * docs/plugins/inspect/plugin-halelements.xml:
15269         * docs/plugins/inspect/plugin-icydemux.xml:
15270         * docs/plugins/inspect/plugin-id3demux.xml:
15271         * docs/plugins/inspect/plugin-jpeg.xml:
15272         * docs/plugins/inspect/plugin-level.xml:
15273         * docs/plugins/inspect/plugin-matroska.xml:
15274         * docs/plugins/inspect/plugin-mulaw.xml:
15275         * docs/plugins/inspect/plugin-multipart.xml:
15276         * docs/plugins/inspect/plugin-navigationtest.xml:
15277         * docs/plugins/inspect/plugin-ossaudio.xml:
15278         * docs/plugins/inspect/plugin-png.xml:
15279         * docs/plugins/inspect/plugin-rtp.xml:
15280         * docs/plugins/inspect/plugin-rtsp.xml:
15281         * docs/plugins/inspect/plugin-shout2send.xml:
15282         * docs/plugins/inspect/plugin-smpte.xml:
15283         * docs/plugins/inspect/plugin-speex.xml:
15284         * docs/plugins/inspect/plugin-udp.xml:
15285         * docs/plugins/inspect/plugin-videobalance.xml:
15286         * docs/plugins/inspect/plugin-videobox.xml:
15287         * docs/plugins/inspect/plugin-videoflip.xml:
15288         * docs/plugins/inspect/plugin-videomixer.xml:
15289         * docs/plugins/inspect/plugin-wavenc.xml:
15290         * docs/plugins/inspect/plugin-wavparse.xml:
15291         * docs/plugins/inspect/plugin-ximagesrc.xml:
15292           Update files to CVS/Prerelease version, add esdsink docs.
15293
15294         * ext/esd/esdsink.c:
15295           Add gtk-doc blurb.
15296
15297         * gst/rtp/gstrtpmp4vpay.c:
15298           Fix typo in element description.
15299
15300 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15301
15302         * ext/esd/esdsink.c: (gst_esdsink_open),
15303         (gst_esdsink_factory_init):
15304           Prevent libesd from auto-spawning a sound daemon if it
15305           is not already running. Now that we don't do evil stuff
15306           like that any longer we can give esdsink a rank so that
15307           autoaudiosink will try it as well if all other audio
15308           sinks fail (#343051).
15309
15310 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15311
15312         * ext/esd/Makefile.am:
15313           Oops, need to remove README from EXTRA_DIST as well.
15314
15315 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15316
15317         * ext/esd/README:
15318           Remove, it contains nothing useful anyway.
15319
15320         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15321         (gst_esdsink_delay):
15322           Some small clean-ups; use GST_BOILERPLATE etc.
15323
15324 2006-07-24  Wim Taymans  <wim@fluendo.com>
15325
15326         * gst/law/alaw-decode.c: (alawdec_getcaps):
15327         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15328         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15329         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15330         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15331
15332 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
15333
15334         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15335         (gst_wavparse_other), (gst_wavparse_perform_seek),
15336         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15337         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15338         (gst_wavparse_pad_query):
15339         * gst/wavparse/gstwavparse.h:
15340           Use information from 'fact' chunk for length calculation of compressed
15341           samples. Calculate bps if bogus value is found in wav header (embeded
15342           mp2/mp3).
15343           
15344
15345 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15346
15347         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
15348
15349         * configure.ac:
15350         * gst/udp/Makefile.am:
15351         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15352         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15353         * gst/udp/gstdynudpsink.h:
15354         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15355         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15356         * gst/udp/gstmultiudpsink.h:
15357         * gst/udp/gstudp.c: (plugin_init):
15358         * gst/udp/gstudpsink.h:
15359         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15360         (gst_udpsrc_start), (gst_udpsrc_stop):
15361         * gst/udp/gstudpsrc.h:
15362         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15363         (gst_udp_net_utils_win32_wsa_startup):
15364         * gst/udp/gstudpnetutils.h:
15365           Port udp plugin to win32 (#345288).
15366
15367 2006-07-24  Wim Taymans  <wim@fluendo.com>
15368
15369         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15370         Remove unwanted DEBUG line.
15371
15372 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15373
15374         * gst/id3demux/gstid3demux.c: (plugin_init):
15375         * gst/id3demux/id3tags.c:
15376         (id3demux_add_id3v2_frame_blob_to_taglist):
15377         * gst/id3demux/id3tags.h:
15378           On second thought, it might be wiser and more efficient
15379           not to do tag registration from a streaming thread.
15380
15381 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15382
15383         * gst/id3demux/id3tags.c:
15384         (id3demux_add_id3v2_frame_blob_to_taglist),
15385         (id3demux_id3v2_frames_to_tag_list):
15386           Put ID3v2 frames we can't parse as binary blobs into private
15387           tags, so that they are not lost when retagging, at least once
15388           id3v2mux has been taught to re-inject those frames again.
15389           See bug #334375.
15390
15391 2006-07-21  Wim Taymans  <wim@fluendo.com>
15392
15393         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15394         (gst_avi_demux_process_next_entry):
15395         Fix some leaks.
15396
15397         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15398         Don't use \n in debug lines.
15399
15400 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
15401
15402         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15403         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15404           Add annodex and icydemux, cleanup the sections a bit
15405
15406 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
15407
15408         Patch by: Alex Lancaster <alexl at users sourceforge net>
15409
15410         * ext/taglib/gstid3v2mux.cc:
15411           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15412           ID3v2 TSSE frames (#347898).
15413
15414 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
15415
15416         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15417           Respect mpegversion for "video/mpeg" and give message in case of
15418           unhandled versions.
15419
15420 2006-07-17  Wim Taymans  <wim@fluendo.com>
15421
15422         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15423         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15424         (gst_pngdec_chain), (gst_pngdec_sink_event),
15425         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15426         (gst_pngdec_sink_activate_push):
15427         * ext/libpng/gstpngdec.h:
15428         Use statically allocated segment instead of leaking.
15429         Various cleanups.
15430         Fix flush and seek handling.
15431
15432 2006-07-16  Wim Taymans  <wim@fluendo.com>
15433
15434         * gst/rtp/Makefile.am:
15435         * gst/rtp/gstrtp.c: (plugin_init):
15436         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15437         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15438         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15439         (gst_rtp_mp4g_depay_set_property),
15440         (gst_rtp_mp4g_depay_get_property),
15441         (gst_rtp_mp4g_depay_change_state),
15442         (gst_rtp_mp4g_depay_plugin_init):
15443         * gst/rtp/gstrtpmp4gdepay.h:
15444         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15445         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15446         (gst_rtp_mp4g_pay_flush):
15447         Added simple generic mpeg4 depayloader.
15448         Fix generic mpeg4 payloader.
15449
15450 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
15451
15452         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15453           Don't try doing state changes on a NULL pointer.
15454
15455 2006-07-14  Wim Taymans  <wim@fluendo.com>
15456
15457         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15458
15459         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15460         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15461         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15462         * gst/rtp/gstrtpamrdepay.h:
15463         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15464         Fixes #321191
15465
15466 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15467
15468         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15469         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15470         Fix segfault when moving mouse pointer to the bottom right corner.
15471
15472 2006-07-12  Wim Taymans  <wim@fluendo.com>
15473
15474         * gst/rtp/Makefile.am:
15475         * gst/rtp/gstrtp.c: (plugin_init):
15476         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15477         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15478         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15479         (gst_rtp_mp2t_depay_set_property),
15480         (gst_rtp_mp2t_depay_get_property),
15481         (gst_rtp_mp2t_depay_change_state),
15482         (gst_rtp_mp2t_depay_plugin_init):
15483         * gst/rtp/gstrtpmp2tdepay.h:
15484         Added mpeg2 TS depayloader. Closing #347234.
15485
15486 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
15487
15488         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15489           Remove g_assert that shouldn't be there and was triggered
15490           after trying to open a device that doesn't exist or can't
15491           be opened for some other reason (#347972).
15492
15493 2006-07-10  Edward Hervey  <edward@fluendo.com>
15494
15495         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15496         (gst_avi_demux_stream_header), (push_tag_lists):
15497         * gst/avi/gstavidemux.h:
15498         Don't push tag events found by gst_riff_parse_info() before outputting
15499         GST_EVENT_NEWSEGMENT.
15500
15501 2006-07-10  Wim Taymans  <wim@fluendo.com>
15502
15503         * gst/rtsp/Makefile.am:
15504         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15505         (rtsp_connection_close):
15506         * gst/rtsp/rtspdefs.h:
15507         replaced closesocket and close in code with one CLOSE_SOCKET. 
15508         Some more cleanups. Fixes #345301.
15509
15510 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
15511
15512         * gst/autodetect/gstautoaudiosink.c:
15513           Fix example pipeline in docs.
15514
15515 2006-07-10  Wim Taymans  <wim@fluendo.com>
15516
15517         Patch by: Rob Taylor <robtaylor at floopily dot org>
15518
15519         * gst/udp/gstmultiudpsink.c: (join_multicast),
15520         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15521         If a destination is added before the stream is set to PAUSED, the
15522         multicast group is not joined as the socket is not created yet. 
15523         Also TTL and LOOP should also be set. Fixes #346921.
15524
15525 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15526
15527         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15528         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15529         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15530         (gst_ximage_src_init):
15531         * sys/ximage/gstximagesrc.h:
15532         Fix use-damage property to actually work :)
15533         Add startx, starty, endx, endy properties so screencasts other than full
15534         screen ones can work.
15535
15536 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15537
15538         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15539         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15540         (gst_ximage_src_class_init), (gst_ximage_src_init):
15541         * sys/ximage/gstximagesrc.h:
15542         Add use_damage property to offer ability to choose whether to use
15543         XDamage or not.
15544
15545 2006-07-07  Wim Taymans  <wim@fluendo.com>
15546
15547         * gst/goom/filters.c: (zoomFilterSetResolution):
15548         Avoid goom coredumping by clearing memory. 
15549         Fixes 345679.
15550
15551 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
15552
15553         * win32/vs6/libgstid3demux.dsp:
15554         Add a link to libgsttag-0.10.lib.
15555
15556 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15557
15558         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15559         (gst_tag_demux_read_range):
15560         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15561         (gst_id3demux_read_range):
15562           Don't return FLOW_UNEXPECTED when a buffer is before
15563           the start of the stream (which might happen with
15564           large ID3v2 tags if the tag reading was done pullrange
15565           based and we then switched to push mode later on).
15566           Fixes regression introduced by commit from June 29th.
15567
15568 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15569
15570         * ext/taglib/gstid3v2mux.cc:
15571           Make UTF-8 the default encoding when writing string
15572           tags (before, our UTF-8 strings would automatically
15573           be converted to ISO-8859-1 by taglib and written as
15574           ISO-8859-1 fields if that was possible).
15575
15576         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15577         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15578         (test_taglib_id3mux_with_tags):
15579           Add test case that makes sure our UTF-8 strings have
15580           actually been written into the tag as UTF-8.
15581
15582 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15583
15584         * configure.ac:
15585           Let's try that again.
15586
15587 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15588
15589         * configure.ac:
15590           Disable monoscope plugin for now until it fulfills
15591           all the requirements.
15592
15593 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15594
15595         * configure.ac:
15596         * gst/monoscope/Makefile.am:
15597         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15598         (gst_monoscope_class_init), (gst_monoscope_init),
15599         (gst_monoscope_finalize), (gst_monoscope_reset),
15600         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15601         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15602         (gst_monoscope_sink_event), (gst_monoscope_src_event),
15603         (gst_monoscope_change_state), (plugin_init):
15604         * gst/monoscope/gstmonoscope.h:
15605           Port monoscope visualisation to 0.10.
15606
15607 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15608
15609         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15610         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15611           Return FLOW_UNEXPECTED when at the end of the file, not
15612           FLOW_ERROR. Fixes 'internal stream error' errors that
15613           would sometimes occur in totem when scrubbing to the
15614           end of an ID3v1 tagged mp3 file.
15615
15616 2006-07-03  Edward Hervey  <edward@fluendo.com>
15617
15618         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15619         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15620         (gst_pngdec_sink_event), (gst_pngdec_change_state):
15621         * ext/libpng/gstpngdec.h:
15622         Implement buffer clipping/dropping using GstSegment.
15623         This provides accurate seeking.
15624
15625 2006-07-03  Edward Hervey  <edward@fluendo.com>
15626
15627         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15628         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15629         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15630         (gst_avi_demux_process_next_entry), (push_tag_lists),
15631         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15632         * gst/avi/gstavidemux.h:
15633         Proper aggregation of each stream's GstFlowReturn in order to figure out
15634         whether the task should stop or not.
15635         Don't send inline events before pushing out a NEW_SEGMENT, more
15636         specifically for GST_TAG_EVENT.
15637         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15638         sub-indexes.
15639
15640 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
15641
15642         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15643
15644         * sys/sunaudio/gstsunaudiomixerctrl.c:
15645         (gst_sunaudiomixer_ctrl_build_list):
15646           Move "Monitor" slider to input tab so it works more like
15647           sdtaudiocontrol, which is what people on Solaris are used
15648           to using for their mixer program (#346259).
15649
15650 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15651
15652         * tests/check/elements/level.c: (GST_START_TEST):
15653           fix a leak, clean up at the end
15654
15655 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15656
15657         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15658         (gst_matroska_demux_send_event),
15659         (gst_matroska_demux_loop_stream_parse_id):
15660         * gst/matroska/matroska-ids.h:
15661           Send tag event after newsegment event.
15662
15663 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15664
15665         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15666         (gst_id3demux_read_range):
15667           Make sure we don't return GST_FLOW_OK with a NULL buffer in
15668           certain cases where a read beyond the end of the file is
15669           requested. Fixes #345930.
15670
15671         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15672         (gst_tag_demux_read_range):
15673           Fix same issue here as well.
15674
15675 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15676
15677         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15678         
15679         Fix hypothetical crash.
15680
15681 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
15682
15683         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15684
15685         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15686           Do not modify the ports value. If the user has turned off the
15687           built-in speakers, then we should not reset it in the prepare
15688           function, since this causes the built-in speakers to turn
15689           back on anytime the user changes a track in totem, rhythmbox,
15690           etc. (#346066).
15691
15692 2006-06-23  Wim Taymans  <wim@fluendo.com>
15693
15694         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15695         Fix double caps unref when negotiation fails.
15696
15697 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15698
15699         * ext/annodex/gstcmmldec.c:
15700         * ext/annodex/gstcmmlenc.c:
15701         * ext/annodex/gstcmmlparser.c:
15702         * ext/dv/gstdvdec.c:
15703         * ext/dv/gstdvdemux.c:
15704         * ext/gdk_pixbuf/pixbufscale.c:
15705         * ext/jpeg/gstjpegenc.c:
15706         * ext/jpeg/gstsmokedec.c:
15707         * ext/jpeg/gstsmokeenc.c:
15708         * ext/libpng/gstpngdec.c:
15709         * ext/libpng/gstpngenc.c:
15710         * ext/speex/gstspeexenc.c:
15711         * gst/alpha/gstalphacolor.c:
15712         * gst/cutter/gstcutter.c:
15713         * gst/debug/gstnavigationtest.c:
15714         * gst/icydemux/gsticydemux.c:
15715         * gst/level/gstlevel.c:
15716         * gst/multipart/multipart.c:
15717         * gst/rtp/gstrtpamrpay.c:
15718         * gst/rtp/gstrtpdepay.c:
15719         * gst/rtp/gstrtpilbcpay.c:
15720         * gst/rtp/gstrtpmp4gpay.c:
15721         * gst/rtp/gstrtpmp4vpay.c:
15722         * gst/rtsp/gstrtpdec.c:
15723         * gst/rtsp/gstrtspsrc.c:
15724         * gst/udp/gstdynudpsink.c:
15725         * gst/udp/gstmultiudpsink.c:
15726         * gst/udp/gstudpsrc.c:
15727         * gst/videobox/gstvideobox.c:
15728         * gst/videofilter/gstvideoflip.c:
15729           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15730           plus two minor macro fixes.
15731
15732 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15733
15734         * gst/matroska/matroska-demux.c:
15735         (gst_matroska_demux_check_subtitle_buffer),
15736         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15737         (gst_matroska_demux_subtitle_caps):
15738         * gst/matroska/matroska-ids.c:
15739         (gst_matroska_track_init_subtitle_context):
15740         * gst/matroska/matroska-ids.h:
15741           Try to fix up broken matroska files containing subtitle
15742           streams with non-UTF8 character encodings (courtesy of
15743           mkvmerge) using either the encoding specified in the
15744           GST_SUBTITLE_ENCODING environment variable or the
15745           current locale's character set if it is non-UTF8.
15746           Fixes #337076.
15747
15748 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15749
15750         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15751           Set image type from APIC frame as "image-type" field
15752           of GST_TAG_IMAGE buffer caps (#344605).
15753
15754 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
15755
15756         * ext/flac/Makefile.am:
15757         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15758         (gst_flac_dec_reset_decoders),
15759         (gst_flac_dec_setup_seekable_decoder),
15760         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15761         (gst_flac_dec_metadata_callback),
15762         (gst_flac_dec_metadata_callback_seekable),
15763         (gst_flac_dec_metadata_callback_stream),
15764         (gst_flac_dec_error_callback),
15765         (gst_flac_dec_error_callback_seekable),
15766         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15767         (gst_flac_dec_read_stream), (gst_flac_dec_write),
15768         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15769         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15770         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15771         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15772         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15773         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15774         (gst_flac_dec_sink_activate_push),
15775         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15776         * ext/flac/gstflacdec.h:
15777           Support chain-based operation, should make flac-over-DAAP
15778           work (#340492).
15779
15780 2006-06-20  Wim Taymans  <wim@fluendo.com>
15781
15782         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15783         Doc updates, merge some unused symbols.
15784
15785 2006-06-20  Wim Taymans  <wim@fluendo.com>
15786
15787         * docs/plugins/Makefile.am:
15788         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15789         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15790         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15791         * gst/rtsp/gstrtspsrc.c:
15792         * gst/rtsp/gstrtspsrc.h:
15793         Added documentation for the rtsp plugin. Fixes #345393.
15794
15795 2006-06-20  Wim Taymans  <wim@fluendo.com>
15796
15797         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15798         (rtsp_connection_close), (rtsp_connection_free):
15799         Use better G_OS_* macros. Fixes #345301 some more.
15800
15801 2006-06-20  Wim Taymans  <wim@fluendo.com>
15802
15803         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15804
15805         * sys/sunaudio/Makefile.am:
15806         * sys/sunaudio/gstsunaudio.c: (plugin_init):
15807         * sys/sunaudio/gstsunaudiomixerctrl.c:
15808         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15809         (gst_sunaudiomixer_ctrl_list_tracks),
15810         (gst_sunaudiomixer_ctrl_get_volume),
15811         (gst_sunaudiomixer_ctrl_set_volume),
15812         (gst_sunaudiomixer_ctrl_set_mute),
15813         (gst_sunaudiomixer_ctrl_set_record):
15814         * sys/sunaudio/gstsunaudiomixerctrl.h:
15815         * sys/sunaudio/gstsunaudiomixertrack.c:
15816         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15817         * sys/sunaudio/gstsunaudiomixertrack.h:
15818         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15819         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15820         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15821         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15822         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15823         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15824         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15825         (gst_sunaudiosrc_reset):
15826         * sys/sunaudio/gstsunaudiosrc.h:
15827         Add a SunAudio source plugin.
15828         Support stereo and right/left channel gain in the mixer plugin.
15829         Support the RECORD flag so that you can switch between line-input and
15830         microphone in gnome-volume-control.
15831         Code cleanups like using an enumerator for track number instead of an 
15832         integer. Fixes #344923.
15833
15834 2006-06-20  Wim Taymans  <wim@fluendo.com>
15835
15836         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15837
15838         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15839         (rtsp_connection_close):
15840         Make RTSP plugin compile on windows. Fixes #345301.
15841         Some changes to original patch to catch errors better.
15842         use ifdef WIN32 instead of ifndef.
15843
15844 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15845
15846         * configure.ac:
15847         If we have libraw1394 >= 1.2.1, then we need libiec61883.
15848
15849 2006-06-18  Edward Hervey  <edward@fluendo.com>
15850
15851         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
15852         After a failed buffer alloc, we need to abort the jpeg decoding (it
15853         started when parsing headers to figure out how many bytes we need
15854         to request downstream).
15855
15856 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
15857
15858         Patch by: Mark Nauwelaerts  <manauw at skynet be>
15859
15860         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15861           Make sure we don't read beyond the end of the file (#345232).
15862
15863 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
15864
15865         * configure.ac:
15866           Fix --disable-external (can't set conditionals conditionally,
15867           #343602).
15868
15869 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
15870
15871         * autogen.sh:
15872         * configure.ac:
15873         * docs/Makefile.am:
15874           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15875
15876         * docs/plugins/Makefile.am:
15877         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15878         * docs/plugins/inspect/plugin-taglib.xml:
15879           Add/fix apev2mux docs.
15880
15881 2006-06-14  Wim Taymans  <wim@fluendo.com>
15882
15883         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15884         (gst_dvdec_finalize), (gst_dvdec_sink_event),
15885         (gst_dvdec_change_state):
15886         Reset segment info on flush.
15887         Alloc segment in _init, free in _finalize.
15888
15889         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15890         Don't send segments twice.
15891
15892 2006-06-14  Wim Taymans  <wim@fluendo.com>
15893
15894         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15895         Respect segment.stop. Fixes #342592.
15896
15897 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15898
15899         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15900           No language specified means the implied language is English
15901           according to the matroska spec (partially fixes #344708);
15902           add some more debug output.
15903
15904 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15905
15906         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15907         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15908         (gst_wavparse_chain):
15909           When operating chain-based, don't make any assumptions about the
15910           chunking of the incoming data and make streaming work on days other
15911           than the second Thursday after a full moon. Also fix up debug
15912           messages here and there and make use of the most excellent new
15913           gst_pad_query_peer_duration() utility function.
15914           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15915
15916         * gst/wavparse/gstwavparse.h:
15917           Remove trailing comma after last enum value, some compilers don't
15918           like that.
15919
15920 2006-06-13  Wim Taymans  <wim@fluendo.com>
15921
15922         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15923         Handle premature EOS gracefully.
15924
15925 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
15926
15927         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15928           Prevent out of bounds array access when scrubbing towards
15929           the end of the file between the last index entry and the
15930           end. Fixes occasional 'start <= stop' newsegment event
15931           assertions when scrubbing in MJPEG files.
15932
15933 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
15934
15935         * tests/check/elements/.cvsignore:
15936           And another one.
15937
15938 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15939
15940         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15941         (scan_encoded_string), (parse_picture_frame):
15942           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15943
15944         * configure.ac:
15945           Require core >= 0.10.8 (for GST_TAG_IMAGE and
15946           GST_TAG_PPEVIEW_IMAGE used in the patch above).
15947
15948 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15949
15950         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15951           gratuitous comment changes
15952         * tests/check/elements/level.c: (GST_START_TEST):
15953           fix level test leaks
15954
15955 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15956
15957         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15958         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15959           Use gst_pad_query_peer_duration() utility function here.
15960
15961 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15962
15963         * autogen.sh:
15964           require am17
15965         * configure.ac:
15966         * ext/annodex/Makefile.am:
15967         * ext/cdio/Makefile.am:
15968         * ext/dv/Makefile.am:
15969         * ext/esd/Makefile.am:
15970         * ext/flac/Makefile.am:
15971         * ext/gdk_pixbuf/Makefile.am:
15972         * ext/ladspa/Makefile.am:
15973         * ext/libcaca/Makefile.am:
15974         * ext/speex/Makefile.am:
15975         * ext/taglib/Makefile.am:
15976         * sys/oss/Makefile.am:
15977         * sys/sunaudio/Makefile.am:
15978         * sys/ximage/Makefile.am:
15979           clean up build further
15980
15981 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15982
15983         * gconf/Makefile.am:
15984           Honour --disable-schemas-install configure option. Fixes #344100.
15985
15986 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15987
15988         * tests/examples/level/Makefile.am:
15989           Add -lm to LIBS for pow() function, don't assume one of our
15990           dependencies (such as libxml-2.0) drags it in automatically
15991           (#343603).
15992
15993 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15994
15995         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
15996
15997         * configure.ac:
15998           We should use $SED and not $(SED) in configure.ac (#343678).
15999
16000 2006-06-09  Wim Taymans  <wim@fluendo.com>
16001
16002         Patch by: Brian Cameron <brian dot cameron at sun dot com>
16003
16004         * sys/sunaudio/gstsunaudiomixerctrl.c:
16005         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
16006         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
16007         (gst_sunaudiomixer_ctrl_set_mute):
16008         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
16009         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
16010         (gst_sunaudiosink_write):
16011         Attached find a patch that fixes a number of bugs with the SunAudio
16012         mixer plugin and fixes #344101:
16013         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
16014            tracks onto the tracklist causing gnome-volume-control's preferences
16015            dialog to be messed up and would core dump if you checked/unchecked
16016            any item.
16017         2. We weren't previously setting the MUTE flag properly.  Fixing this
16018            makes gnome-volume-control work better.
16019         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
16020            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
16021            gnome-volume-control look better.
16022         Also some minor cleanup in gstsunaudiosink.c.
16023
16024 2006-06-09  Wim Taymans  <wim@fluendo.com>
16025
16026         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
16027         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
16028         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
16029         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
16030         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
16031         * ext/jpeg/gstjpegdec.h:
16032         API: Added IDCT method property
16033         Small cleanups.
16034         Avoid dynamic allocation of trivial fixed structure.
16035         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
16036
16037 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16038
16039         * configure.ac:
16040         We now require libraw1394 >= 1.1.0 and that version onwards all
16041         have .pc files.
16042
16043 2006-06-02  Edward Hervey  <edward@fluendo.com>
16044
16045         * gst/law/alaw-decode.c: (alawdec_getcaps): 
16046         Trying to get items from an ANY or EMPTY caps is ... stupid.
16047
16048 2006-06-02  Edward Hervey  <edward@fluendo.com>
16049
16050         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
16051         (gst_dvdec_chain), (gst_dvdec_change_state):
16052         * ext/dv/gstdvdec.h:
16053         Added GstSegment handling, now implements dropping/clipping.
16054
16055 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
16056
16057         * ext/aalib/gstaasink.h:
16058         * ext/annodex/gstcmmldec.h:
16059         * ext/cairo/gsttimeoverlay.h:
16060         * ext/dv/gstdvdec.h:
16061         * ext/dv/gstdvdemux.h:
16062         * ext/esd/esdmon.h:
16063         * ext/esd/esdsink.h:
16064         * ext/flac/gstflacenc.h:
16065         * ext/gconf/gstgconfaudiosink.h:
16066         * ext/gconf/gstgconfaudiosrc.h:
16067         * ext/gconf/gstgconfvideosink.h:
16068         * ext/gconf/gstgconfvideosrc.h:
16069         * ext/gdk_pixbuf/gstgdkanimation.h:
16070         * ext/gdk_pixbuf/pixbufscale.h:
16071         * ext/hal/gsthalaudiosink.h:
16072         * ext/hal/gsthalaudiosrc.h:
16073         * ext/jpeg/gstjpegenc.h:
16074         * ext/jpeg/gstsmokedec.h:
16075         * ext/jpeg/gstsmokeenc.h:
16076         * ext/libcaca/gstcacasink.h:
16077         * ext/libmng/gstmngdec.h:
16078         * ext/libmng/gstmngenc.h:
16079         * ext/libpng/gstpngdec.h:
16080         * ext/libpng/gstpngenc.h:
16081         * ext/raw1394/gstdv1394src.h:
16082         * ext/speex/gstspeexenc.h:
16083         * gst/autodetect/gstautoaudiosink.h:
16084         * gst/autodetect/gstautovideosink.h:
16085         * gst/avi/gstavidemux.h:
16086         * gst/cutter/gstcutter.h:
16087         * gst/debug/efence.h:
16088         * gst/debug/gstnavigationtest.h:
16089         * gst/debug/gstnavseek.h:
16090         * gst/flx/gstflxdec.h:
16091         * gst/goom/gstgoom.h:
16092         * gst/icydemux/gsticydemux.h:
16093         * gst/id3demux/gstid3demux.h:
16094         * gst/law/alaw-decode.h:
16095         * gst/law/alaw-encode.h:
16096         * gst/law/mulaw-decode.h:
16097         * gst/law/mulaw-encode.h:
16098         * gst/matroska/matroska-mux.h:
16099         * gst/median/gstmedian.h:
16100         * gst/oldcore/gstaggregator.h:
16101         * gst/oldcore/gstfdsink.h:
16102         * gst/oldcore/gstmd5sink.h:
16103         * gst/oldcore/gstmultifilesrc.h:
16104         * gst/oldcore/gstpipefilter.h:
16105         * gst/oldcore/gstshaper.h:
16106         * gst/oldcore/gststatistics.h:
16107         * gst/rtp/gstasteriskh263.h:
16108         * gst/rtp/gstrtpL16depay.h:
16109         * gst/rtp/gstrtpL16pay.h:
16110         * gst/rtp/gstrtpamrdepay.h:
16111         * gst/rtp/gstrtpamrpay.h:
16112         * gst/rtp/gstrtpdepay.h:
16113         * gst/rtp/gstrtpgsmdepay.h:
16114         * gst/rtp/gstrtpgsmpay.h:
16115         * gst/rtp/gstrtph263pay.h:
16116         * gst/rtp/gstrtph263pdepay.h:
16117         * gst/rtp/gstrtph263ppay.h:
16118         * gst/rtp/gstrtpmp4gpay.h:
16119         * gst/rtp/gstrtpmp4vdepay.h:
16120         * gst/rtp/gstrtpmp4vpay.h:
16121         * gst/rtp/gstrtpmpadepay.h:
16122         * gst/rtp/gstrtpmpapay.h:
16123         * gst/rtp/gstrtppcmadepay.h:
16124         * gst/rtp/gstrtppcmapay.h:
16125         * gst/rtp/gstrtppcmudepay.h:
16126         * gst/rtp/gstrtppcmupay.h:
16127         * gst/rtp/gstrtpspeexdepay.h:
16128         * gst/rtp/gstrtpspeexpay.h:
16129         * gst/rtsp/gstrtpdec.h:
16130         * gst/rtsp/gstrtspsrc.h:
16131         * gst/smpte/gstsmpte.h:
16132         * gst/udp/gstdynudpsink.h:
16133         * gst/udp/gstmultiudpsink.h:
16134         * gst/udp/gstudpsink.h:
16135         * gst/udp/gstudpsrc.h:
16136         * gst/videofilter/gstvideobalance.h:
16137         * gst/videofilter/gstvideoflip.h:
16138         * sys/oss/gstossdmabuffer.h:
16139         * sys/oss/gstossmixerelement.h:
16140         * sys/oss/gstosssink.h:
16141         * sys/oss/gstosssrc.h:
16142         * sys/osxvideo/osxvideosink.h:
16143         * sys/sunaudio/gstsunaudiomixer.h:
16144         * sys/sunaudio/gstsunaudiosink.h:
16145         * sys/ximage/gstximagesrc.h:
16146         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16147
16148 2006-05-31  Wim Taymans  <wim@fluendo.com>
16149
16150         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16151         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
16152         (gst_goom_src_setcaps), (gst_goom_src_event),
16153         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
16154         (gst_goom_change_state):
16155         * gst/goom/gstgoom.h:
16156         Handle QoS.
16157         Handle flushing, discont and events.
16158         Fix timestamps and various other cleanups.
16159
16160 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16161
16162         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
16163         Fix bus reset when using libiec61883
16164
16165 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16166
16167         * configure.ac:
16168         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
16169         * ext/raw1394/Makefile.am:
16170         Add CFLAGS.
16171         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
16172         New method, to receive using libiec61883.
16173         (gst_dv1394src_iso_receive),
16174         #ifdef'd out if libiec61883 is present.
16175         (gst_dv1394src_bus_reset),
16176         Get userdata correctly if using libiec61883. 
16177         (gst_dv1394src_create),
16178         When using libiec61883, only poll one fd and no need to read.
16179         (gst_dv1394src_discover_avc_node),
16180         Replace g_warnings.
16181         (gst_dv1394src_start),
16182         Create new handle when we know which dv port.  More reliable
16183         than setting port on an existing handle.  Initialise libiec61883.
16184         (gst_dv1394src_stop):
16185         If using libiec61883, then cleanup its handle properly.
16186         * ext/raw1394/gstdv1394src.h:
16187         Add libiec61883 handle.
16188
16189 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
16190
16191         * gst/avi/gstavidemux.c:
16192           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16193         * win32/MANIFEST:
16194           sort file listing
16195         * win32/vs6/libgstavi.dsp:
16196           add gstavimux.c to the project
16197         * win32/vs6/libgstid3demux.dsp:
16198           add link to zlib library
16199         * win32/vs6/libgstmatroska.dsp:
16200           add matroska-ids.c to the project
16201
16202 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
16203
16204         Patch by: Sebastian Dröge  <mail at slomosnail de >
16205
16206         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16207         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16208         * ext/taglib/Makefile.am:
16209         * ext/taglib/gstapev2mux.cc:
16210         * ext/taglib/gstapev2mux.h:
16211         * ext/taglib/gstid3v2mux.cc:
16212         * ext/taglib/gsttaglibmux.c: (plugin_init):
16213         * ext/taglib/gsttaglibmux.h:
16214           Add apev2mux element (#343122).
16215         
16216         * tests/check/Makefile.am:
16217         * tests/check/elements/apev2mux.c:
16218         (test_taglib_apev2mux_create_tags),
16219         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16220         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16221         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16222         (apev2mux_suite), (main):
16223           Add unit test for apev2mux element.
16224
16225 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16226
16227         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16228         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16229         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16230           GST_PTR_FORMAT should be used to print caps in debug statements.
16231
16232 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16233
16234         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
16235
16236         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16237         (ape_demux_parse_tags):
16238           Some clean-ups and additions: map APE 'file' tag to
16239           GST_TAG_LOCATION (#343123); add support for extracting
16240           the track count and clean up parsing a bit (#343127).
16241
16242 2006-05-28  Edward Hervey  <edward@fluendo.com>
16243
16244         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16245         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16246
16247 2006-05-28  Edward Hervey  <edward@fluendo.com>
16248
16249         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16250         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16251         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16252         * ext/jpeg/gstjpegdec.h:
16253         Clip outgoing buffers according to currently configured segment.
16254
16255 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16256
16257         * ext/taglib/gstid3v2mux.cc:
16258           Handle  writing of track-count or album-volume-count without
16259           track-number or albume-volume-number (in this case the number
16260           will just be set to 0).
16261
16262         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16263           It would be nice if we actually checked the values received for
16264           track/album-volume number/count in  _check_tags(), rather than
16265           setting them again ...
16266
16267 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16268
16269         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16270           A track/volume number or count of 0 does not make sense,
16271           just ignore it along with negative numbers (a tag might
16272           only contain a track count without a track number).
16273
16274 2006-05-27  Edward Hervey  <edward@fluendo.com>
16275
16276         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16277         (gst_jpeg_dec_sink_event):
16278         Abort decompression when receiving FLUSH_STOP. This should avoid
16279         issues when interrupting decoding with flushes.
16280
16281 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16282
16283         * ext/flac/gstflac.c:
16284           Don't #include file we don't dist any longer.
16285
16286 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16287
16288         * README:
16289           Replace current README (containing the release notes from
16290           some 0.9.x version) with a proper README taken from the core.
16291
16292 2006-05-24  Wim Taymans  <wim@fluendo.com>
16293
16294         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16295         Implement EOS correctly by either posting
16296         SEGMENT_DONE or pushing an EOS message depending
16297         on the seek type. Fixes #342592
16298
16299 2006-05-24  Wim Taymans  <wim@fluendo.com>
16300
16301         * gst/law/alaw-decode.c: (gst_alawdec_chain):
16302         * gst/law/alaw-decode.h:
16303         * gst/law/alaw-encode.c: (gst_alawenc_chain):
16304         * gst/law/alaw-encode.h:
16305         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16306         * gst/law/mulaw-decode.h:
16307         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16308         * gst/law/mulaw-encode.h:
16309         Some cleanups in the chain functions.
16310         Remove some GStreamer 0.0.2 bits.
16311
16312 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16313
16314         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16315
16316         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16317           gst_collect_pads_stop() needs to be called before chaining up
16318           to the parent class (#342734).
16319
16320 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16321
16322         * ext/flac/Makefile.am:
16323         * ext/flac/flac_compat.h:
16324         * ext/flac/gstflac.c:
16325         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16326         * ext/flac/gstflacenc.c:
16327           Remove backwards compatibility cruft for dealing with FLAC API
16328           changes in the 1.0.x series - we require 1.1.1 or newer these days.
16329
16330 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16331
16332         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16333         (gst_matroska_demux_push_xiph_codec_priv_data),
16334         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16335         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16336         * gst/matroska/matroska-ids.h:
16337         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16338         (gst_matroska_mux_video_pad_setcaps),
16339         (xiph3_streamheader_to_codecdata),
16340         (vorbis_streamheader_to_codecdata),
16341         (theora_streamheader_to_codecdata),
16342         (gst_matroska_mux_audio_pad_setcaps),
16343         (gst_matroska_mux_write_data):
16344           Add support for muxing/demuxing theora video (#342448; too bad
16345           none of the usual linux players can actually play this). Playback
16346           in GStreamer will require additional changes to theoradec in -base.
16347           Refactor streamheaders <=> CodecPrivateData code a bit; some small
16348           cleanups.
16349
16350 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16351
16352         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16353         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16354           Fix crashes when the horizontal subsampling is 1.
16355           Fixes #342097.
16356
16357 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16358
16359         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16360
16361         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16362         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16363         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16364         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16365         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16366         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16367         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16368         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16369         (gst_avi_mux_change_state):
16370         * gst/avi/gstavimux.h:
16371           Some enhancements for avimux (#342526):
16372            - add odml (large file) index support
16373            - store codec init data (e.g. huffyuv)
16374            - miscellaneous other fixes/cleanups
16375
16376 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
16377
16378         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16379         Don't output any tag when we encounter a negative track number - the
16380         tag type is uint, so we end up outputting huge positive numbers
16381         instead. (Fixes: #342029)
16382
16383 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16384
16385         * configure.ac:
16386           update for new GSTPB_PLUGINS_DIR
16387
16388 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
16389
16390         * rtp/gst/gstrtph263pay.c:
16391         Properly set static caps for H263 at 34.
16392
16393 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
16394
16395         Patch by: James "Doc" Livingston  <doclivingston gmail com>
16396
16397         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16398           Merge event tags and tag setter tags correctly (#339918). Also,
16399           don't leak taglist in case of an error.
16400           
16401 2006-05-17  Edward Hervey  <edward@fluendo.com>
16402
16403         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
16404         We can only do caps intersection if the othercaps are non-empty and not
16405         ANY. Else we return the pad template (base_caps).
16406
16407 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
16408
16409         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16410           Fix crash when outputting debugging information for certain
16411           pictures (always good to use the right struct member for
16412           the number of records in an array).
16413
16414 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
16415
16416         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
16417
16418         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16419         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16420         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16421         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16422         (gst_ebml_read_float), (gst_ebml_read_ascii),
16423         (gst_ebml_read_binary):
16424           Don't create unnecessary sub-buffers all the time. Dramatically
16425           improves performance with multiple concurrently running
16426           matroskademux instances (#341818) (and avoids doing
16427           unnecessarily inefficient things in the general case).
16428
16429 2006-05-16  Edward Hervey  <edward@fluendo.com>
16430
16431         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
16432         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16433         return value of gst_pad_push_event().
16434
16435 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
16436
16437         * gst/autodetect/gstautoaudiosink.c:
16438         (gst_auto_audio_sink_find_best):
16439         * gst/autodetect/gstautovideosink.c:
16440         (gst_auto_video_sink_find_best):
16441         Make the name of the child element be based on the name of the
16442         parent, so that debug output is more useful.
16443         
16444         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16445         (parse_insert_string_field), (parse_split_strings):
16446         Rework string parsing to always walk over BOM markers in UTF16
16447         strings, using the endianness indicated by the innermost one,
16448         then trying the opposite endianness if that fails to convert
16449         to valid UTF-8. Fixes #341774
16450
16451 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16452
16453         Patch from: Matthieu <matthieu at fluendo dot com>
16454
16455         * ext/libpng/Makefile.am:
16456         Add LIBPNG_CFLAGS.
16457
16458 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
16459
16460         * ext/taglib/gstid3v2mux.cc:
16461           Add support for writing images (APIC frames) into ID3v2
16462           tags (picture type always set to 'other' for now though).
16463
16464 2006-05-14  Michael Smith  <msmith@fluendo.com>
16465
16466         * gst/wavparse/gstwavparse.c:
16467           Update docs; wavparse implements push and pull modes.
16468
16469 2006-05-12  Wim Taymans  <wim@fluendo.com>
16470
16471         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16472         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16473         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16474         Ooops, bitten by the copy-and-paste design paradigm, fixes
16475         seek again.
16476
16477 2006-05-12  Wim Taymans  <wim@fluendo.com>
16478
16479         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16480         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16481         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16482         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16483         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16484         (gst_avi_demux_massage_index),
16485         (gst_avi_demux_calculate_durations_from_index),
16486         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16487         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16488         (gst_avi_demux_loop):
16489         * gst/avi/gstavidemux.h:
16490         Some cleanups, prepare to use GstSegment.
16491         Fix error in entry walking code.
16492         Fix VBR detection.
16493         Smarter timestamp calculation code.
16494         Uniform error/eos handling.
16495
16496 2006-05-12  Michael Smith  <msmith@fluendo.com>
16497
16498         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16499         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16500           Fix use of uninitialised values if we're NOT seeking in ready.
16501           Fix typos.
16502
16503 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
16504
16505         * gst/wavparse/Makefile.am:
16506           Add CFLAGS and LIBS for libgstbase, fixes build on
16507           Cygwin (#341489).
16508
16509 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16510
16511         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16512           Some more debug info. No need to check whether the string
16513           returned by g_convert() is really UTF-8 - either it is or
16514           we get NULL returned.
16515
16516 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
16517
16518         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16519           Fix parsing of numeric genre strings some more, by ensuring that
16520           we only try and parse strings that a) Start with '(' and b) Consist
16521           only of digits.
16522           Also, when finding an escaping '((' sequence, bust it back to '(' by
16523           swallowing the first parenthesis
16524
16525 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16526
16527         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16528         (gst_esdsink_open), (gst_esdsink_close):
16529         * ext/esd/esdsink.h:
16530           Move the esd_get_server_info() into gst_esdsink_open() and fail
16531           with a decent error message on errors.
16532
16533 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16534
16535         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16536         (gst_esdmon_channels_get_type):
16537         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16538         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16539         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16540         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16541         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16542         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16543         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16544         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16545         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16546         * gst/videomixer/videomixer.c:
16547         (gst_video_mixer_background_get_type):
16548           Const-ify GEnumValue arrays.
16549
16550 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16551
16552         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
16553
16554         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16555         (gst_avi_mux_do_video_buffer):
16556           Work around gst_buffer_make_metadata_writable() bug that
16557           results in avimux marking all frames in the index as
16558           keyframes (#340859).
16559           
16560 2006-05-08  Wim Taymans  <wim@fluendo.com>
16561
16562         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16563         Make parsing of urls suck slightly less.
16564
16565 2006-05-08  Edward Hervey  <edward@fluendo.com>
16566
16567         * autogen.sh: (CONFIGURE_DEF_OPT): 
16568         libtoolize on Darwin/MacOSX is called glibtoolize.
16569
16570 2006-05-08  Wim Taymans  <wim@fluendo.com>
16571
16572         Patch by: Jens Granseuer <jensgr at gmx dot net>
16573
16574         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16575         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16576         C89 compliance fixes. Fixes #340980
16577
16578 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
16579
16580         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16581         * ext/flac/gstflacdec.h:
16582           Handle segment seeks that include the end of the file as stop point
16583           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16584           message instead of an EOS event in case we're in segment seek
16585           mode (fixes #340699).
16586           
16587 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
16588
16589         * ext/cairo/gsttextoverlay.c:
16590         * ext/flac/gstflacdec.c:
16591         * ext/gdk_pixbuf/pixbufscale.c:
16592         * gst/apetag/gstapedemux.c:
16593         * gst/debug/breakmydata.c:
16594         * gst/debug/testplugin.c:
16595         * gst/matroska/ebml-write.c:
16596         * gst/multipart/multipartdemux.c:
16597         * sys/osxaudio/gstosxaudiosink.c:
16598         * sys/osxaudio/gstosxaudiosrc.c:
16599         Add semicolons after GST_BOILERPLATE[_FULL] so that
16600         indent doesn't mess up following lines.
16601
16602 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
16603
16604         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16605
16606         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16607           Don't leak caps when freeing the stream context (#340623).
16608
16609 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
16610
16611         * configure.ac:
16612           Back to CVS
16613
16614 === release 0.10.3 ===
16615
16616 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
16617
16618         * configure.ac:
16619           releasing 0.10.3, "Desplazado"
16620
16621 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16622
16623         * gst/matroska/matroska-mux.c:
16624         (gst_matroska_mux_stream_is_vorbis_header),
16625         (gst_matroska_mux_write_data):
16626           Don't strcmp() NULL strings.
16627           Only start new clusters on video keyframes, not on any
16628           random audio buffer that doesn't have the DELTA_UNIT
16629           flag set (fixes 'make check' again).
16630
16631 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16632
16633         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16634
16635         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16636         (gst_matroska_mux_stream_is_vorbis_header),
16637         (gst_matroska_mux_write_data):
16638           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16639           value and then dead-lock when muxing vorbis audio streams
16640           (the three vorbis header buffers carry no timestamp, and it
16641           would try to mux these after all video buffers). Fixes #340346.
16642
16643           Improve clustering: start a new cluster also whenever we get
16644           a keyframe.     
16645
16646 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16647
16648         * win32/common/config.h:
16649         * win32/MANIFEST
16650           add the generated file as well
16651
16652 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16653
16654         * Makefile.am:
16655         * configure.ac:
16656         * win32/common/config.h.in:
16657           add win32 stuff
16658
16659 2006-05-03  Michael Smith  <msmith@fluendo.com>
16660
16661         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16662           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16663           SUCKS.
16664
16665 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16666
16667         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16668         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16669         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16670           don't leak caps-string
16671
16672 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16673
16674         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16675         (gst_id3demux_sink_activate):
16676           Let core insert default error message for TYPE_NOT_FOUND
16677           errors, it's just as good as our own and has the added
16678           bonus of being translated.
16679
16680 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16681
16682         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16683         (gst_tag_demux_sink_event):
16684         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16685         (gst_id3demux_sink_event):
16686           Post an error message when we get an EOS event and were not
16687           able to find out the type of stream.
16688
16689         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16690         (test_taglib_id3mux_with_tags):
16691           Decrease num-buffers to 16 per iteration again, otherwise the
16692           many memcpy()s and reallocations in the test will hammer slow
16693           CPUs completely and make the test timeout.
16694
16695 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16696
16697         * configure.ac:
16698           figure out where plugins-base plugins are
16699         * tests/check/Makefile.am:
16700           use plugins-base plugins, so we have typefind functions
16701         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16702           increase num-buffers, this makes sure the test errors out instead
16703           of timing out when no typefind functions are present
16704
16705 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16706
16707         * docs/plugins/Makefile.am:
16708           also check .cc files for gtk-doc markup
16709         * configure.ac:
16710         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16711         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16712         * tests/check/Makefile.am:
16713         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16714         * ext/Makefile.am:
16715         * ext/taglib/Makefile.am:
16716         * ext/taglib/gstid3v2mux.h:
16717         * ext/taglib/gsttaglibmux.c:
16718         * ext/taglib/gsttaglibmux.h:
16719           move taglib-based id3v2muxer to -good.  Fixes #336110.
16720
16721 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16722
16723         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16724           ... and fix multichannel/WAVFORMATEX support again.
16725
16726 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
16727
16728         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16729         (gst_wavparse_class_init), (gst_wavparse_dispose),
16730         (gst_wavparse_reset), (gst_wavparse_init),
16731         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16732         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16733         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16734         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16735         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16736         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16737         (gst_wavparse_stream_data), (gst_wavparse_loop),
16738         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16739         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16740         (gst_wavparse_change_state), (plugin_init):
16741         * gst/wavparse/gstwavparse.h:
16742           Add push (streaming) mode to wavparse (fixes #337625)
16743
16744 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16745
16746         * configure.ac:
16747         * tests/Makefile.am:
16748           add ximagesrc icles test
16749
16750 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16751
16752         * configure.ac:
16753         * docs/plugins/Makefile.am:
16754         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16755         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16756         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16757         (gst_cmml_enc_push_clip):
16758         * sys/Makefile.am:
16759         * sys/ximage/Makefile.am:
16760         * sys/ximage/gstximagesrc.c:
16761           Move ximagesrc plug-in to good after review.  Fixes #336756.
16762
16763 2006-04-28  Michael Smith  <msmith@fluendo.com>
16764
16765         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16766         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16767         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16768         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16769         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16770         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16771         * gst/icydemux/gsticydemux.h:
16772           Fix event handling: cache events when typefinding and forward later.
16773
16774 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16775
16776         * sys/osxaudio/gstosxaudiosink.c:
16777         (plugin_init):
16778          Register osxaudiosrc to the plugin.
16779         * sys/osxaudio/gstosxaudiosrc.c:
16780         (gst_osx_audio_src_osxelement_do_init),
16781         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16782         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16783         (gst_osx_audio_src_get_property),
16784         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16785         (gst_osx_audio_src_osxelement_init):
16786         * sys/osxaudio/gstosxaudiosrc.h:
16787           Port of osxaudiosrc to 0.10.
16788         * sys/osxaudio/Makefile.am:
16789           Add osxaudiosrc
16790
16791 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16792
16793         * sys/osxaudio/gstosxringbuffer.c:
16794         * sys/osxaudio/gstosxringbuffer.h:
16795           Forgot to commit earlier, part of the OSX audio plugin port
16796
16797 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16798
16799         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16800         (parse_split_strings):
16801           Recognise and skip any byte order marker (BOM) in
16802           UTF-16 strings.
16803
16804 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16805
16806         * docs/plugins/Makefile.am:
16807         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16808         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16809         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16810         * docs/plugins/inspect/plugin-avi.xml:
16811         * gst/avi/gstavidemux.c:
16812         * gst/avi/gstavimux.c:
16813           Add docs for both avidemux and avimux.
16814
16815 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16816
16817         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16818
16819         * gst/avi/Makefile.am:
16820         * gst/avi/gstavi.c: (plugin_init):
16821         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16822         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16823         (gst_avi_mux_class_init), (gst_avi_mux_init),
16824         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16825         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16826         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16827         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16828         (gst_avi_mux_riff_get_avix_header),
16829         (gst_avi_mux_riff_get_video_header),
16830         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16831         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16832         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16833         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16834         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16835         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16836         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16837         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16838         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16839         (gst_avi_mux_change_state):
16840         * gst/avi/gstavimux.h:
16841           Port AVI muxer to GStreamer-0.10 (#332031).
16842
16843         * tests/check/Makefile.am:
16844         * tests/check/elements/avimux.c:
16845         * tests/check/elements/.cvsignore:
16846           Add unit test for AVI muxer.
16847
16848 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
16849
16850         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16851         (gst_wavparse_class_init), (gst_wavparse_reset),
16852         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16853         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16854         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16855         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16856         (gst_wavparse_stream_data), (gst_wavparse_loop),
16857         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16858         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16859         (plugin_init):
16860         * gst/wavparse/gstwavparse.h:
16861           reverted patch #337625 for the price of 1 hour sleep
16862
16863 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16864
16865         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16866         (gst_wavparse_class_init), (gst_wavparse_reset),
16867         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16868         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16869         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16870         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16871         (gst_wavparse_stream_data), (gst_wavparse_loop),
16872         (gst_wavparse_chain), (plugin_init):
16873         * gst/wavparse/gstwavparse.h:
16874           correct partial implementation of push mode
16875           (from my last commit)
16876
16877 2006-04-26  Wim Taymans  <wim@fluendo.com>
16878
16879         * ext/esd/esdsink.c:
16880         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16881         it is not in esd.h
16882
16883 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
16884
16885         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16886         (gst_au_parse_class_init), (gst_au_parse_init),
16887         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16888         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16889         (gst_au_parse_chain), (gst_au_parse_src_convert),
16890         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16891         (gst_au_parse_sink_event), (gst_au_parse_src_event),
16892         (gst_au_parse_change_state):
16893         * gst/auparse/gstauparse.h:
16894           Rewrite auparse to suck a little bit less: make source pad
16895           dynamic, so decodebin/playbin work with non-raw formats
16896           like alaw/mulaw; add query function for duration/position
16897           queries; check whether we have enough data before attempting
16898           to parse the header (instead of crashing when that is not the
16899           case); work around audioconvert sucking by swapping endianness
16900           to the native endianness ourselves for float formats; send
16901           initial newsegment event. Fixes #161712.
16902
16903 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16904
16905         * sys/osxaudio/Makefile.am:
16906         * sys/osxaudio/gstosxaudioelement.c:
16907         (gst_osx_audio_element_get_type),
16908         (gst_osx_audio_element_class_init):
16909         * sys/osxaudio/gstosxaudioelement.h:
16910         * sys/osxaudio/gstosxaudiosink.c:
16911         (gst_osx_audio_sink_osxelement_do_init),
16912         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16913         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16914         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16915         (gst_osx_audio_sink_create_ringbuffer),
16916         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16917         (plugin_init):
16918         * sys/osxaudio/gstosxaudiosink.h:
16919         Port of osxaudiosink to 0.10
16920
16921 2006-04-26  Wim Taymans  <wim@fluendo.com>
16922
16923         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16924         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16925         the size of the ringbuffer. This should fix hangs with older 
16926         esd sound servers.
16927
16928 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16929
16930         * ext/aalib/gstaasink.c:
16931         * ext/annodex/gstcmmldec.c:
16932         * ext/annodex/gstcmmlenc.c:
16933         * ext/cairo/gsttextoverlay.c:
16934         * ext/cairo/gsttimeoverlay.c:
16935         * ext/cdio/gstcdiocddasrc.c:
16936         * ext/dv/gstdvdec.c:
16937         * ext/dv/gstdvdemux.c:
16938         * ext/esd/esdmon.c:
16939         * ext/esd/esdsink.c:
16940         * ext/flac/gstflacenc.c:
16941         * ext/flac/gstflactag.c:
16942         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16943         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16944         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16945         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16946         * ext/gdk_pixbuf/pixbufscale.c:
16947         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16948         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16949         * ext/jpeg/gstjpegdec.c:
16950         * ext/jpeg/gstjpegenc.c:
16951         * ext/jpeg/gstsmokedec.c:
16952         * ext/jpeg/gstsmokeenc.c:
16953         * ext/libcaca/gstcacasink.c:
16954         * ext/libmng/gstmngdec.c:
16955         * ext/libmng/gstmngenc.c:
16956         * ext/libpng/gstpngdec.c:
16957         * ext/libpng/gstpngenc.c:
16958         * ext/mikmod/gstmikmod.c:
16959         * ext/raw1394/gstdv1394src.c:
16960         * ext/shout2/gstshout2.c: (gst_shout2send_init):
16961         * ext/shout2/gstshout2.h:
16962         * ext/speex/gstspeexdec.c:
16963         * ext/speex/gstspeexenc.c:
16964         * gst/alpha/gstalpha.c:
16965         * gst/alpha/gstalphacolor.c:
16966         * gst/apetag/gstapedemux.c:
16967         * gst/auparse/gstauparse.c:
16968         * gst/autodetect/gstautoaudiosink.c:
16969         (gst_auto_audio_sink_base_init):
16970         * gst/autodetect/gstautovideosink.c:
16971         (gst_auto_video_sink_base_init):
16972         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16973         * gst/avi/gstavimux.c: (gst_avimux_base_init):
16974         * gst/cutter/gstcutter.c:
16975         * gst/debug/breakmydata.c:
16976         * gst/debug/efence.c:
16977         * gst/debug/gstnavigationtest.c:
16978         * gst/debug/gstnavseek.c:
16979         * gst/debug/negotiation.c:
16980         * gst/debug/progressreport.c:
16981         * gst/debug/testplugin.c:
16982         * gst/effectv/gstaging.c:
16983         * gst/effectv/gstdice.c:
16984         * gst/effectv/gstedge.c:
16985         * gst/effectv/gstquark.c:
16986         * gst/effectv/gstrev.c:
16987         * gst/effectv/gstshagadelic.c:
16988         * gst/effectv/gstvertigo.c:
16989         * gst/effectv/gstwarp.c:
16990         * gst/flx/gstflxdec.c:
16991         * gst/goom/gstgoom.c:
16992         * gst/icydemux/gsticydemux.c:
16993         * gst/id3demux/gstid3demux.c:
16994         * gst/interleave/deinterleave.c:
16995         * gst/interleave/interleave.c:
16996         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
16997         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
16998         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
16999         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17000         * gst/level/gstlevel.c:
17001         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17002         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17003         * gst/median/gstmedian.c:
17004         * gst/monoscope/gstmonoscope.c:
17005         * gst/multipart/multipartdemux.c:
17006         * gst/multipart/multipartmux.c:
17007         * gst/oldcore/gstaggregator.c:
17008         * gst/oldcore/gstfdsink.c:
17009         * gst/oldcore/gstmd5sink.c:
17010         * gst/oldcore/gstmultifilesrc.c:
17011         * gst/oldcore/gstpipefilter.c:
17012         * gst/oldcore/gstshaper.c:
17013         * gst/oldcore/gststatistics.c:
17014         * gst/rtp/gstasteriskh263.c:
17015         * gst/rtp/gstrtpL16depay.c:
17016         * gst/rtp/gstrtpL16pay.c:
17017         * gst/rtp/gstrtpamrdepay.c:
17018         * gst/rtp/gstrtpamrpay.c:
17019         * gst/rtp/gstrtpdepay.c:
17020         * gst/rtp/gstrtpgsmpay.c:
17021         * gst/rtp/gstrtph263pay.c:
17022         * gst/rtp/gstrtph263pdepay.c:
17023         * gst/rtp/gstrtph263ppay.c:
17024         * gst/rtp/gstrtpilbcdepay.c:
17025         * gst/rtp/gstrtpmp4gpay.c:
17026         * gst/rtp/gstrtpmp4vdepay.c:
17027         * gst/rtp/gstrtpmp4vpay.c:
17028         * gst/rtp/gstrtpmpadepay.c:
17029         * gst/rtp/gstrtpmpapay.c:
17030         * gst/rtp/gstrtppcmadepay.c:
17031         * gst/rtp/gstrtppcmapay.c:
17032         * gst/rtp/gstrtppcmudepay.c:
17033         * gst/rtp/gstrtppcmupay.c:
17034         * gst/rtp/gstrtpspeexdepay.c:
17035         * gst/rtp/gstrtpspeexpay.c:
17036         * gst/rtsp/gstrtpdec.c:
17037         * gst/rtsp/gstrtspsrc.c:
17038         * gst/smpte/gstsmpte.c:
17039         * gst/udp/gstdynudpsink.c:
17040         * gst/udp/gstmultiudpsink.c:
17041         * gst/udp/gstudpsink.c:
17042         * gst/udp/gstudpsrc.c:
17043         * gst/videobox/gstvideobox.c:
17044         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17045         * gst/videofilter/gstvideobalance.c:
17046         * gst/videofilter/gstvideoflip.c:
17047         * gst/videofilter/gstvideotemplate.c:
17048         (gst_videotemplate_base_init):
17049         * gst/videomixer/videomixer.c:
17050         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
17051         (gst_wavparse_class_init), (gst_wavparse_dispose),
17052         (gst_wavparse_reset), (gst_wavparse_init),
17053         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
17054         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
17055         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
17056         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
17057         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
17058         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
17059         (gst_wavparse_change_state):
17060         * gst/wavparse/gstwavparse.h:
17061         * sys/oss/gstossmixerelement.c:
17062         * sys/oss/gstosssink.c:
17063         * sys/oss/gstosssrc.c:
17064         * sys/osxaudio/gstosxaudioelement.c:
17065         * sys/osxaudio/gstosxaudiosink.c:
17066         * sys/osxaudio/gstosxaudiosrc.c:
17067         * sys/sunaudio/gstsunaudiomixer.c:
17068         * sys/sunaudio/gstsunaudiosink.c:
17069           Define GstElementDetails as const and also static (when defined as
17070           global)
17071
17072 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17073
17074         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
17075           Source pad has fixed caps. If we don't set this, bad
17076           things happen when the window is resized.
17077
17078 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17079
17080         * gst/matroska/Makefile.am:
17081         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17082         (gst_matroska_demux_handle_src_event):
17083         * gst/matroska/matroska-ids.c:
17084         (gst_matroska_track_init_video_context),
17085         (gst_matroska_track_init_audio_context),
17086         (gst_matroska_track_init_subtitle_context),
17087         (gst_matroska_track_init_complex_context):
17088         * gst/matroska/matroska-ids.h:
17089           Handle case where the TrackType ebml chunk does not come before the
17090           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
17091           events.
17092
17093 2006-04-25  Wim Taymans  <wim@fluendo.com>
17094
17095         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
17096         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
17097         It's codec_data, not codec_info.
17098
17099 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17100
17101         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17102
17103         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17104           Handle codec_data for VfW compatibility codec IDs (#339451)
17105
17106         * gst/matroska/matroska-mux.c:
17107         (gst_matroska_mux_video_pad_setcaps):
17108           Same here, handle codec_data and add additional caps we can handle
17109           now to the pad template (huffyuv, dv and h263 video) (#339451)
17110
17111 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17112
17113         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
17114
17115         * gst/matroska/matroska-mux.c:
17116         (gst_matroska_mux_create_buffer_header),
17117         (gst_matroska_mux_write_data):
17118           Fix timestamping of B-frames, use signed integers, do
17119           some rounding (#339678).
17120
17121 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
17122
17123         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
17124         just make it compile with --disable-gst-debug.
17125
17126 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
17127
17128         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17129         Fix a bad conversion using gst_guint64_to_gdouble.
17130         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
17131         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
17132         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
17133     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
17134         mistake.
17135
17136 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
17137
17138         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17139         Use gst_guint64_to_gdouble for conversions
17140         * win32/vs6/gst_plugins_good.dsw:
17141         * win32/vs6/libgsticydemux.dsp:
17142         Add a project file for icydemux
17143
17144 2006-04-21  Wim Taymans  <wim@fluendo.com>
17145
17146         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17147
17148         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
17149         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
17150         When splitting audio chunks, the block alignment is not taken in
17151         consideration, so the smaller chunks could be of size which is 
17152         not a multiple of the block alignment. Fixes #336904
17153
17154 2006-04-21  Wim Taymans  <wim@fluendo.com>
17155
17156         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
17157         Use scale functions
17158
17159 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17160
17161         * ext/dv/gstdv.c: (plugin_init):
17162           Fix build.
17163
17164 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17165
17166         * gst/debug/progressreport.c: (gst_progress_report_finalize),
17167         (gst_progress_report_class_init), (gst_progress_report_init),
17168         (gst_progress_report_do_query), (gst_progress_report_report),
17169         (gst_progress_report_set_property),
17170         (gst_progress_report_get_property):
17171           Add 'format' property to force querying to a particular format.
17172
17173 2006-04-21  Andy Wingo  <wingo@pobox.com>
17174
17175         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
17176         best, on big endian systems. Drop its rank in that case. OTOH on
17177         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17178
17179 2006-04-21  Michael Smith  <msmith@fluendo.com>
17180
17181         * configure.ac:
17182         * gst/icydemux/Makefile.am:
17183         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17184         (gst_icydemux_base_init), (gst_icydemux_class_init),
17185         (gst_icydemux_reset), (gst_icydemux_init),
17186         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17187         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17188         (unicodify), (gst_icydemux_unicodify),
17189         (gst_icydemux_parse_and_send_tags),
17190         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17191         (gst_icydemux_chain), (gst_icydemux_change_state),
17192         (gst_icydemux_send_tag_event), (plugin_init):
17193         * gst/icydemux/gsticydemux.h:
17194         * tests/check/Makefile.am:
17195         * tests/check/elements/icydemux.c: (typefind_succeed),
17196         (plugin_init), (icydemux_found_pad), (create_icydemux),
17197         (cleanup_icydemux), (push_data), (GST_START_TEST),
17198         (icydemux_suite), (main):
17199           Add icydemux, and tests.
17200
17201 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17202
17203         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17204           Post SEGMENT_DONE message in TIME format.
17205
17206 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17207
17208         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17209
17210         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17211         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17212           Fix index creation when we have to scan the file to create
17213           an index. There may be other types of RIFF 'LIST' chunks than
17214           'movi' and we need to skip them properly as well or we'll end up
17215           reading garbage (#336889). Some other cosmetic changes.
17216           
17217 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17218
17219         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17220         (gst_flac_dec_handle_seek_event):
17221           Add support for segment seeks (fixes #338290). Also demote
17222           some recurring debug message from DEBUG to LOG level.
17223
17224 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17225
17226         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17227         (gst_matroskademux_do_index_seek),
17228         (gst_matroska_demux_handle_seek_event),
17229         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17230         * gst/matroska/matroska-ids.h:
17231           Set DISCONT flag on first buffer after a discontinuity.
17232           Fix newsegment events sent when seeking and honour KEY_UNIT
17233           seek flag. Create pad with bogus caps if we don't recognise
17234           the stream codec id.
17235
17236         * gst/matroska/matroska-demux.h:
17237           Fix GObject macros.
17238
17239 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17240
17241         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17242
17243         * gst/matroska/matroska-demux.c:
17244         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17245           Handle end of segment properly when set; don't dead-lock when
17246           posting start of segment message when doing a segment seek.
17247           Fixes #338810.
17248
17249 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17250
17251         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17252         (gst_matroska_demux_plugin_init):
17253           Make mpeg2 aac audio work: create artificial private codec data
17254           chunk which faad2 seems to require, just as we do for mpeg4 aac.
17255           Also call gst_riff_init(). Partially fixes #338767.
17256
17257 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
17258
17259         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17260         (gst_wavenc_class_init), (gst_wavenc_init),
17261         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17262         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17263         (gst_wavenc_chain), (gst_wavenc_change_state):
17264         * gst/wavenc/gstwavenc.h:
17265           Set caps on first outgoing buffer, so that it doesn't error out
17266           immediately with a non-negotiated error (#338716). Rewrite and
17267           clean up a bit; fix setcaps function to parse things properly;
17268           fix sink caps (8bit audio is unsigned and doesn't have depth);
17269           use boilerplate macros; remove unused properties stuff.
17270
17271 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17272
17273         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17274           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17275           handle MJPEG streams and might be autoplugged for those if the
17276           user doesn't have jpegdec installed (resulting in a cryptic error
17277           message about huffman tables). Better to disable JPEG decoding here
17278           and let the user figure out that she needs to install jpegdec.
17279
17280 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17281
17282         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17283         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17284         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17285         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17286           Make work with packetised/framed input (e.g. png-in-quicktime). Use
17287           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17288           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17289           debug messages. Fix boilerplate macros.
17290
17291 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17292
17293         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17294         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17295           No need to special-case for Gdk-2.0 any longer, we require
17296           Gdk 2.2 or newer; minor clean-ups.
17297
17298 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17299
17300         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17301         (gst_shout2send_class_init), (gst_shout2send_init),
17302         (set_shout_metadata), (gst_shout2send_set_metadata),
17303         (gst_shout2send_event), (gst_shout2send_start),
17304         (gst_shout2send_connect), (gst_shout2send_stop),
17305         (gst_shout2send_render), (gst_shout2send_set_property),
17306         (gst_shout2send_get_property), (gst_shout2send_setcaps),
17307         (plugin_init):
17308         * ext/shout2/gstshout2.h:
17309         * po/POTFILES.in:
17310           Rewrite a bit: use GstBaseSink::start and stop instead of a state
17311           change function; use GST_ELEMENT_ERROR for error reporting, not
17312           g_error() or GST_ERROR(); don't unref caps in setcaps function,
17313           will cause crashes or assertion failures; remove (unused) "sync"
17314           property, basesink already has such a property; misc. other
17315           minor fixes and cleanups.
17316
17317 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17318
17319         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17320         * ext/esd/gstesd.c: (plugin_init):
17321         * po/POTFILES.in:
17322           Add translatable error message for when we cannot
17323           connect to the sound server, as "Cannot open resource
17324           for writing" isn't really an acceptable message to show
17325           to the user in this case.
17326
17327 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17328
17329         * sys/oss/gst-i18n-plugin.h:
17330           Remove bogus file that doesn't belong here.
17331
17332 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17333
17334         Patch by: Philippe Valembois
17335
17336         * ext/shout2/gstshout2.c: (gst_shout2send_init),
17337         (gst_shout2send_set_metadata), (gst_shout2send_event),
17338         (gst_shout2send_render), (gst_shout2send_change_state):
17339         * ext/shout2/gstshout2.h:
17340           Handle tags being received before the connection to
17341           the server is established properly (see #338636).
17342
17343 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17344
17345         * ext/shout2/gstshout2.c: (gst_shout2send_render):
17346           Don't crash in case the connection to the server fails:
17347           don't set pointer to NULL by assigning FALSE; error out
17348           properly by using GST_ELEMENT_ERROR and returning
17349           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17350           before resetting the pointer.
17351
17352 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
17353
17354         * gst/id3demux/id3tags.c:
17355         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17356         (Fixes #338713)
17357
17358 2006-04-12  Wim Taymans  <wim@fluendo.com>
17359
17360         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17361         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17362         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17363         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17364         (gst_gdk_pixbuf_chain):
17365         Some cleanups.
17366         Added RGBA as a possible output format.
17367         Correctly free the supported mimetypes.
17368         deprecate silent arg, it's not used.
17369         Return result from _alloc_buffer to peer.
17370
17371 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17372
17373         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17374           Don't leak memory allocated by gst_buffer_new_and_alloc() by
17375           overwriting GST_BUFFER_MALLOCDATA.
17376
17377 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17378
17379         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17380         (user_endrow_callback), (user_end_callback),
17381         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17382         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17383         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17384         * ext/libpng/gstpngdec.h:
17385           Handle more than one frame if the content is framed,
17386           like with png-in-quicktime (#331917).
17387
17388 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17389
17390         * sys/oss/Makefile.am:
17391         * sys/oss/common.h:
17392         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17393         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17394         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17395         (gst_oss_src_unprepare):
17396           - the user-visible error strings were in the wrong category
17397           - and the messages were not marked for translation
17398           - which is actually a good thing, because they were exactly
17399             the kind of message you would never want anyone to see
17400           - the macros were using variables that didn't exist in the macro
17401             arguments
17402           - and they were obviously copied from each other and then modified
17403           - so a common header makes sense
17404
17405 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17406
17407         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17408           Don't try to modify read-only data.
17409
17410         * gst/matroska/matroska-demux.c:
17411         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17412           Fix comment (won't crash any longer now).
17413
17414 2006-04-10  Michael Smith  <msmith@fluendo.com>
17415
17416         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17417           Use copies of header buffers for caps to avoid circular refcounting
17418           problems (as in theoradec, vorbisdec).
17419
17420         * tests/check/elements/cmmldec.c: (GST_START_TEST):
17421           Fix a typo in test that meant it was testing the wrong thing.
17422
17423         * tests/check/elements/cmmlenc.c: (check_headers):
17424           Fix refcount checks now that we use buffer-copies for caps.
17425
17426 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17427
17428         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17429         (gst_matroska_demux_handle_seek_event),
17430         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17431         (gst_matroska_demux_subtitle_caps),
17432         (gst_matroska_demux_plugin_init):
17433           Use static pad templates with ANY caps for audio and video
17434           source pads and get rid of a lot of unnecessary (and partially
17435           broken) code for the template caps. Clean up caps finding
17436           functions. Fixes playback of audio files/streams that do not
17437           contain the sample rate and/or number of channels in the audio
17438           context (happens a lot with vorbis/mp3 .mka files it seems).
17439           Fixes #337183.
17440           Also add myself to copyright holders.
17441
17442 2006-04-10  Michael Smith  <msmith@fluendo.com>
17443
17444         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17445           Use g_list_delete_link () instead of g_list_remove_link () so that
17446           we free the link as well as the contained data.
17447
17448 2006-04-10  Wim Taymans  <wim@fluendo.com>
17449
17450         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17451
17452         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17453         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17454         (gst_avi_demux_stream_header):
17455         Fix some crashers with empty chunks. (Fixes #337749)
17456
17457 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17458
17459         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17460           use G_GINT64_CONSTANT for INT64 constants
17461         * gst/videofilter/gstvideobalance.c:
17462           define rint for WIN32 #define rint(x) (floor((x)+0.5))
17463         * win32/vs6/libgstavi.dsp:
17464          add missing libraries for the link and remove avimux.c from
17465          the project as it isn't ported to 0.10 yet
17466         
17467 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
17468
17469         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17470           Even better would be if we actually did the right thing
17471           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17472
17473 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17474
17475         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17476           Can't just replace 1LL with 1L here just because MSVC doesn't
17477           support it, as it might lead to incorrect results when doing the
17478           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17479           force a 64-bit constant in a way that all compilers are happy with.
17480
17481 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17482
17483         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17484         * ext/esd/esdsink.c: (gst_esdsink_class_init):
17485         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17486         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17487         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17488         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17489         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17490         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17491         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17492         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17493         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17494         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17495         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17496         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17497         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17498         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17499         * gst/avi/gstavimux.c: (gst_avimux_class_init):
17500         * gst/debug/efence.c: (gst_efence_class_init):
17501         * gst/debug/negotiation.c: (gst_negotiation_class_init):
17502         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17503         * gst/goom/gstgoom.c: (gst_goom_class_init):
17504         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17505         * gst/interleave/deinterleave.c: (deinterleave_class_init):
17506         * gst/interleave/interleave.c: (interleave_class_init):
17507         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17508         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17509         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17510         * gst/median/gstmedian.c: (gst_median_class_init):
17511         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17512         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17513         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17514         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17515         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17516         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17517         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17518         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17519         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17520         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17521         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17522         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17523         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17524         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17525         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17526         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17527         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17528         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17529         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17530         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17531         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17532         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17533         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17534         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17535         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17536         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17537         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17538         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17539         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17540         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17541         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17542         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17543         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17544         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17545         * sys/osxaudio/gstosxaudioelement.c:
17546         (gst_osxaudioelement_class_init):
17547         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17548         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17549         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17550         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17551
17552 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17553
17554         * ext/mikmod/gstmikmod.h:
17555         * gst/level/gstlevel.h:
17556         Fix more broken GObject macros
17557
17558 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17559
17560         * ext/annodex/gstcmmldec.h:
17561         * ext/annodex/gstcmmlenc.h:
17562         * ext/annodex/gstcmmltag.h:
17563         * ext/cairo/gsttextoverlay.h:
17564         * ext/ladspa/gstsignalprocessor.h:
17565         * gst/matroska/ebml-read.h:
17566         * gst/matroska/ebml-write.h:
17567         * sys/osxaudio/gstosxaudioelement.h:
17568         Fix broken GObject macros
17569
17570 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17571
17572         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17573           Don't try to seek beyond the end of the file (would
17574           occasionally display error dialogs in totem when seeking
17575           to the end) (#335869). Will still throw an error though
17576           if the file is truncated and the total_samples value in
17577           the stream header is wrong.
17578
17579 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
17580
17581         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17582         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17583         (gst_flac_dec_metadata_callback):
17584         * ext/flac/gstflacdec.h:
17585           If the stream header doesn't contain the total number of samples,
17586           search for the last flac frame at the end of the file and calculate
17587           the total duration from that frame's offset (fixes #337609).
17588
17589 2006-04-07  Edward Hervey  <edward@fluendo.com>
17590
17591         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17592         Don't unref the GstPadTemplate returned by
17593         gst_element_class_get_pad_template().
17594
17595 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17596
17597         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
17598
17599         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17600         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17601         * sys/sunaudio/gstsunaudiosink.h:
17602           Use spec->segsize and spec->segtotal in the prepare function
17603           to initialise the ring buffer instead of using the buffer-time
17604           property (#337421).
17605
17606 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17607
17608         * configure.ac:
17609           Bump core requirements to CVS for gst_pad_query_peer_duration()
17610           which is used by speexdec.
17611
17612 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
17613
17614         * ext/speex/gstspeex.c: (plugin_init):
17615         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17616         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17617         (speex_get_sink_query_types), (speex_dec_sink_query),
17618         (speex_get_src_query_types), (speex_dec_src_query),
17619         (speex_dec_src_event), (speex_dec_sink_event),
17620         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17621         (speex_dec_chain_parse_data), (speex_dec_chain),
17622         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17623         (speex_dec_change_state):
17624         * ext/speex/gstspeexdec.h:
17625           Fix seeking and duration queries (#337033); clean up and
17626           refactor a bit.
17627
17628 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17629
17630         * ext/raw1394/gstdv1394src.c:
17631           distinguish between device not found and could not open for
17632           reading
17633
17634 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17635
17636         * Makefile.am:
17637         * configure.ac:
17638         * pkgconfig/.cvsignore:
17639         * pkgconfig/Makefile.am:
17640         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17641           add a .pc file so other modules can use good plugins in tests
17642
17643 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17644
17645         * configure.ac:
17646           clean up, use AS_VERSION and AS_NANO
17647         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17648           use PACKAGE_VERSION define
17649         * po/af.po:
17650         * po/az.po:
17651         * po/cs.po:
17652         * po/en_GB.po:
17653         * po/hu.po:
17654         * po/it.po:
17655         * po/nb.po:
17656         * po/nl.po:
17657         * po/or.po:
17658         * po/sq.po:
17659         * po/sr.po:
17660         * po/sv.po:
17661         * po/uk.po:
17662         * po/vi.po:
17663           updated
17664
17665 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
17666
17667         * ext\jpeg\smokecodec.c:
17668           use of GST_DEBUG instead of DEBUG(a...) for WIN32
17669         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17670           move first instruction after all variables declarations
17671         * gst\alpha\gstalpha.c:
17672         * gst\effectv\gstshagadelic.c:
17673         * gst\smpte\paint.c:
17674         * gst\videofilter\gstvideobalance.c:
17675           define M_PI if it's not defined (it's not defined on WIN32)
17676         * gst\cutter\gstcutter.c: (gst_cutter_chain):
17677         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17678         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17679         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
17680         (gst_matroska_demux_video_caps):
17681         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17682         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17683           use gst_guint64_to_gdouble for conversions
17684         * gst\goom\filters.c: (setPixelRGB_):
17685           fix a debug which was using undefined variable
17686         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17687         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17688           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17689         * win32/vs6:
17690           add vs6 projects files for most of plugins-good
17691         
17692 2006-03-30  j^  <j@bootlab.org>
17693
17694         * ext/aalib/gstaasink.c:
17695         * ext/annodex/gstcmmldec.c:
17696         * ext/annodex/gstcmmlenc.c:
17697         * ext/cairo/gsttextoverlay.c:
17698         * ext/cairo/gsttimeoverlay.c:
17699         * ext/cdio/gstcdiocddasrc.c:
17700         * ext/dv/gstdvdec.c:
17701         * ext/esd/esdmon.c:
17702         * ext/esd/esdsink.c:
17703         * ext/flac/gstflacdec.c:
17704         * ext/flac/gstflacenc.c:
17705         * ext/flac/gstflactag.c:
17706         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17707         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17708         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17709         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17710         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17711         * ext/gdk_pixbuf/pixbufscale.c:
17712         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17713         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17714         * ext/jpeg/gstjpegdec.c:
17715         * ext/jpeg/gstjpegenc.c:
17716         * ext/jpeg/gstsmokedec.c:
17717         * ext/jpeg/gstsmokeenc.c:
17718         * ext/libcaca/gstcacasink.c:
17719         * ext/libmng/gstmngdec.c:
17720         * ext/libmng/gstmngenc.c:
17721         * ext/libpng/gstpngdec.c:
17722         * ext/libpng/gstpngenc.c:
17723         * ext/mikmod/gstmikmod.c:
17724         * ext/raw1394/gstdv1394src.c:
17725         * ext/shout2/gstshout2.c:
17726         * ext/speex/gstspeexdec.c:
17727         * ext/speex/gstspeexenc.c:
17728         * gst/alpha/gstalpha.c:
17729         * gst/alpha/gstalphacolor.c:
17730         * gst/auparse/gstauparse.c:
17731         * gst/autodetect/gstautoaudiosink.c:
17732         (gst_auto_audio_sink_base_init):
17733         * gst/autodetect/gstautovideosink.c:
17734         (gst_auto_video_sink_base_init):
17735         * gst/avi/gstavimux.c: (gst_avimux_base_init):
17736         * gst/cutter/gstcutter.c:
17737         * gst/debug/breakmydata.c:
17738         * gst/debug/efence.c:
17739         * gst/debug/gstnavigationtest.c:
17740         * gst/debug/negotiation.c:
17741         * gst/debug/progressreport.c:
17742         * gst/debug/testplugin.c:
17743         * gst/effectv/gstaging.c:
17744         * gst/effectv/gstdice.c:
17745         * gst/effectv/gstedge.c:
17746         * gst/effectv/gstquark.c:
17747         * gst/effectv/gstrev.c:
17748         * gst/effectv/gstvertigo.c:
17749         * gst/effectv/gstwarp.c:
17750         * gst/flx/gstflxdec.c:
17751         * gst/goom/gstgoom.c:
17752         * gst/interleave/deinterleave.c:
17753         * gst/interleave/interleave.c:
17754         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17755         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17756         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17757         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17758         * gst/level/gstlevel.c:
17759         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17760         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17761         * gst/median/gstmedian.c:
17762         * gst/monoscope/gstmonoscope.c:
17763         * gst/multipart/multipartdemux.c:
17764         * gst/multipart/multipartmux.c:
17765         * gst/oldcore/gstmd5sink.c:
17766         * gst/oldcore/gstmultifilesrc.c:
17767         * gst/oldcore/gstpipefilter.c:
17768         * gst/oldcore/gstshaper.c:
17769         * gst/oldcore/gststatistics.c:
17770         * gst/rtp/gstasteriskh263.c:
17771         * gst/rtp/gstrtpL16depay.c:
17772         * gst/rtp/gstrtpL16pay.c:
17773         * gst/rtp/gstrtpamrdepay.c:
17774         * gst/rtp/gstrtpamrpay.c:
17775         * gst/rtp/gstrtpdepay.c:
17776         * gst/rtp/gstrtpgsmpay.c:
17777         * gst/rtp/gstrtph263pay.c:
17778         * gst/rtp/gstrtph263pdepay.c:
17779         * gst/rtp/gstrtph263ppay.c:
17780         * gst/rtp/gstrtpmp4gpay.c:
17781         * gst/rtp/gstrtpmp4vdepay.c:
17782         * gst/rtp/gstrtpmp4vpay.c:
17783         * gst/rtp/gstrtpmpadepay.c:
17784         * gst/rtp/gstrtpmpapay.c:
17785         * gst/rtp/gstrtppcmadepay.c:
17786         * gst/rtp/gstrtppcmapay.c:
17787         * gst/rtp/gstrtppcmudepay.c:
17788         * gst/rtp/gstrtppcmupay.c:
17789         * gst/rtp/gstrtpspeexdepay.c:
17790         * gst/rtp/gstrtpspeexpay.c:
17791         * gst/rtsp/gstrtpdec.c:
17792         * gst/smpte/gstsmpte.c:
17793         * gst/videobox/gstvideobox.c:
17794         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17795         * gst/videofilter/gstvideobalance.c:
17796         * gst/videofilter/gstvideoflip.c:
17797         * gst/videofilter/gstvideotemplate.c:
17798         (gst_videotemplate_base_init):
17799         * gst/videomixer/videomixer.c:
17800         * gst/wavenc/gstwavenc.c:
17801         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17802          better/unified long descriptions
17803          Fixed #336602
17804          Some cleanups to auparse, don't send multiple newsegments.
17805
17806 2006-03-29  Wim Taymans  <wim@fluendo.com>
17807
17808         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17809
17810         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17811         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17812         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17813         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17814         * ext/dv/gstdvdemux.h:
17815         Seek in READY patch. Only works for pull based mode.
17816         Fixes #323880
17817
17818 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
17819
17820         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17821         (gst_gdk_pixbuf_event):
17822           Fix two crashers: don't unref the same caps twice, and
17823           set pixbuf loader to NULL after freeing it.
17824
17825 2006-03-27  Wim Taymans  <wim@fluendo.com>
17826
17827         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17828         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17829         (gst_speexenc_chain):
17830         * ext/speex/gstspeexenc.h:
17831         Don't leak adapter.
17832         A push *always* takes ownership of the buffer, even on
17833         errors.
17834         Small cleanups.
17835
17836 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
17837
17838         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17839           Create source pad without leaking.
17840
17841 2006-03-24  Wim Taymans  <wim@fluendo.com>
17842
17843         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17844         * ext/flac/gstflacdec.h:
17845         * ext/flac/gstflacenc.h:
17846         Spifify a bit.
17847         Fix deadly lock order error in seeking code, STREAM_LOCK
17848         cannot be taken within LOCK and the streaming variables are
17849         protected with the STREAM_LOCK anyway.
17850
17851 2006-03-24  Wim Taymans  <wim@fluendo.com>
17852
17853         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17854         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17855         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17856         this patch combines the global init_frames with the stream
17857         init_frames. Rationale being that the global delay should 
17858         be subtracted from any stream delay.
17859         Fixes #335858.
17860
17861 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
17862
17863         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17864         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17865         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17866         * gst/videomixer/videomixer.c: (gst_videomixer_init):
17867         use DEBUG_FUNCPTR for collectpads
17868
17869 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
17870
17871         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17872           Don't crash when encoding images where the number of rows isn't
17873           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17874
17875 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17876
17877         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17878         * gst/interleave/deinterleave.c: (deinterleave_change_state):
17879         * gst/interleave/interleave.c: (interleave_change_state):
17880         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17881           More state change function fixes.
17882
17883 2006-03-23  Wim Taymans  <wim@fluendo.com>
17884
17885         * ext/esd/esdsink.c: (gst_esdsink_class_init),
17886         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17887         (gst_esdsink_prepare), (gst_esdsink_unprepare),
17888         (gst_esdsink_delay), (gst_esdsink_reset):
17889         * ext/esd/esdsink.h:
17890         Fix esd choppy playback by configuring audiosink
17891         correctly. Fixes #325191
17892
17893 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17894
17895         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17896           Make state change function thread-safe.
17897
17898 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17899
17900         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17901         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17902           Don't try to read beyond the end of the file just because
17903           the header claims a bigger size (like with truncated files).
17904
17905 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17906
17907         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17908         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17909         (gst_wavparse_stream_data), (gst_wavparse_loop):
17910         * gst/wavparse/gstwavparse.h:
17911           Delay source pad creation until we have the first chunk of
17912           media data, so the we can examine the data and adjust the
17913           caps accordingly if required. This makes playback of .wav
17914           files with DTS-declared-as-PCM content work (#313266).
17915
17916 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
17917
17918         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17919         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17920         Don't attempt typefinding on too-short buffers that have been
17921         completely trimmed away. (Fixes #330239)
17922
17923         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17924         Improve the debug output
17925
17926 2006-03-21  Wim Taymans  <wim@fluendo.com>
17927
17928         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17929         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17930         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17931         (gst_esdsink_set_property), (gst_esdsink_get_property):
17932         Some cleanups.
17933         Reset fd to -1 when we close them.
17934
17935 2006-03-21  Wim Taymans  <wim@fluendo.com>
17936
17937         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17938         the OPTIONS request result is optional so don't
17939         fail on it.
17940
17941 2006-03-21  Edward Hervey  <edward@fluendo.com>
17942
17943         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17944         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17945         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17946         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17947         (gst_wavparse_change_state):
17948         gcc 4.1 unreferenced pointer fixes.
17949
17950 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
17951
17952         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17953
17954         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17955           Fix block alignment calculation. Alignment should be done before
17956           adding the byte offset where the data starts (#335231).
17957
17958 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17959
17960         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17961           Ensure that we set correct caps on buffers that are transferred
17962           direct from the input.
17963
17964 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17965
17966         * gst/goom/filters.c: (zoomFilterDestroy):
17967         * gst/goom/goom_core.c: (goom_close):
17968           Free filter data when cleaning up. (Fixes: #334995)
17969
17970 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
17971
17972         * configure.ac:
17973           Don't compile udp and rtsp plugins on win32 (mingw) or other
17974           systems that don't have <sys/socket.h> for some reason (#316203).
17975
17976 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17977
17978         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17979         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17980         * ext/raw1394/gstdv1394src.h:
17981           Change bus reset handler so it reports useful information such as
17982           whether the device being used connected or disconnected
17983
17984 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17985
17986         * gst/id3demux/id3v2frames.c:
17987         (parse_relative_volume_adjustment_two):
17988           We only care about gain and peak data for the master volume.
17989
17990 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17991
17992         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17993         (parse_id_string), (parse_unique_file_identifier),
17994         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
17995           Read replay gain tags (#323721).
17996
17997 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17998
17999         * configure.ac:
18000           Bump requirements to gst-plugins-base CVS because
18001           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
18002
18003 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18004
18005         * rtp/gst/gstrtppcmadepay.c:
18006         Fixed one of the caps in the code from mulaw to alaw.
18007
18008 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
18009
18010         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
18011           Ensure that we set caps on the buffers we pass.
18012
18013         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
18014         (gst_id3demux_sink_activate):
18015           Ensure that we set caps on the buffers we pass.
18016
18017           Use STREAM, TYPE_NOT_FOUND as the error class when
18018           typefinding fails.
18019
18020 2006-03-15  Edward Hervey  <edward@fluendo.com>
18021
18022         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
18023         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
18024         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
18025         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
18026         (gst_jpeg_dec_setcaps):
18027         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
18028         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
18029         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
18030         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
18031         (gst_mngdec_src_getcaps):
18032         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
18033         (gst_pngdec_caps_create_and_set):
18034         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
18035         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
18036         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
18037         * gst/alpha/gstalpha.c: (gst_alpha_init):
18038         * gst/auparse/gstauparse.c: (gst_au_parse_init):
18039         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
18040         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
18041         * gst/cutter/gstcutter.c: (gst_cutter_init):
18042         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
18043         (gst_efence_checkgetrange):
18044         * gst/debug/negotiation.c: (gst_negotiation_init):
18045         * gst/flx/gstflxdec.c: (gst_flxdec_init):
18046         * gst/goom/gstgoom.c: (gst_goom_init):
18047         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
18048         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
18049         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
18050         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
18051         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
18052         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
18053         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
18054         * gst/smpte/gstsmpte.c: (gst_smpte_init):
18055         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
18056         (gst_wavparse_create_sourcepad):
18057         Fix memleak with gst_static_pad_template_get().
18058         This uses gst_pad_new_from_static_template() instead.
18059         Fixes #333512
18060
18061 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18062
18063         * configure.ac:
18064           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
18065           used by id3demux.
18066
18067         * gst/id3demux/gstid3demux.c: (plugin_init):
18068         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18069         (parse_user_text_identification_frame),
18070         (parse_unique_file_identifier):
18071           Add support for UFID and TXXX frames and extract musicbrainz tags.
18072
18073 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18074
18075         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18076           Catch short reads, like they might happen with truncated
18077           files (see #305279); remove unnecessary indentation.
18078
18079 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18080
18081         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18082           Fix DIB image inversion for pictures with a
18083           depth != 8 (#305279).
18084
18085 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18086
18087         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
18088         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
18089         * ext/jpeg/gstjpegdec.h:
18090           Fix durations on outgoing buffers after seeking
18091           in MJPEG files (#334083); some minor clean-ups.
18092
18093 2006-03-13  Wim Taymans  <wim@fluendo.com>
18094
18095         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
18096         (gst_wavparse_change_state):
18097         Implement seek in READY (re-fixes #327658)
18098
18099 2006-03-13  Wim Taymans  <wim@fluendo.com>
18100
18101         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
18102         * ext/esd/esdmon.c: (gst_esdmon_get):
18103         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
18104         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
18105         (gst_gdk_pixbuf_sink_getcaps):
18106         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
18107         (gst_jpegenc_setcaps):
18108         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
18109         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
18110         (gst_smokeenc_setcaps):
18111         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
18112         (gst_mngdec_src_getcaps):
18113         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
18114         (gst_mngenc_chain):
18115         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
18116         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
18117         * ext/speex/gstspeexdec.c: (speex_dec_convert),
18118         (speex_dec_src_event), (speex_dec_chain):
18119         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
18120         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
18121         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
18122         (gst_negotiation_pad_link), (gst_negotiation_chain):
18123         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18124         (gst_flxdec_chain):
18125         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
18126         (deinterleave_chain):
18127         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
18128         * gst/median/gstmedian.c: (gst_median_link):
18129         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
18130         (gst_monoscope_chain):
18131         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
18132         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
18133         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
18134         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
18135         close #333784 unref the result of gst_pad_get_parent()
18136         by: Christophe Fergeau.
18137
18138 2006-03-09  Wim Taymans  <wim@fluendo.com>
18139
18140         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18141         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
18142         Handle events in push mode better, can now do non-flushing
18143         seeks in push mode as well.
18144
18145 2006-03-07  Wim Taymans  <wim@fluendo.com>
18146
18147         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
18148         Applied patch from Kai Vehmanen, fixes #333624.
18149
18150 2006-03-06  Julien MOUTTE  <julien@moutte.net>
18151
18152         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
18153         Implement paletted and grayscale png files handling.
18154         (#150363).
18155
18156 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18157
18158         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
18159         (gst_speexenc_chain):
18160           fix a tag list assert
18161           follow gst-plugins-base/ext/ogg/README; set OFFSET
18162           and OFFSET_END.  Muxes correctly with gst-plugins-base
18163           > 0.9.3
18164
18165 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18166
18167         * gst/id3demux/Makefile.am:
18168         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
18169         (gst_id3demux_chain), (gst_id3demux_sink_activate):
18170           Use new typefind helper functions here as well, and
18171           do typefinding in pull-mode if upstream supports that.
18172
18173 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18174
18175         * sys/sunaudio/gstsunaudiomixerctrl.c:
18176         (gst_sunaudiomixer_ctrl_get_volume),
18177         (gst_sunaudiomixer_ctrl_set_volume):
18178         * sys/sunaudio/gstsunaudiomixertrack.c:
18179         (gst_sunaudiomixer_track_new):
18180           Remove unused variables, breaks build from CVS
18181           with -Werror (#333392, patch by: Benjamin Pineau)
18182
18183 2006-03-03  Wim Taymans  <wim@fluendo.com>
18184
18185         * docs/plugins/Makefile.am:
18186         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18187         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18188         Added wavparse docs.
18189
18190         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18191         (gst_wavparse_reset), (gst_wavparse_init),
18192         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18193         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18194         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18195         (gst_wavparse_stream_data), (gst_wavparse_loop),
18196         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18197         (gst_wavparse_change_state):
18198         * gst/wavparse/gstwavparse.h:
18199         Implement seek in READY (fixes #327658)
18200         Added docs and did some cleanups.
18201
18202 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18203
18204         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18205         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18206         (gst_avi_demux_calculate_durations_from_index),
18207         (gst_avi_demux_stream_header):
18208         * gst/avi/gstavidemux.h:
18209           If we have an index, use a duration based on the index instead
18210           of blindly trusting the information in the stream headers
18211           (fixes #331817).
18212
18213 2006-03-03  Wim Taymans  <wim@fluendo.com>
18214
18215         * docs/plugins/Makefile.am:
18216         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18217         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18218         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18219         Added smoke and jpeg to the docs.
18220
18221         * ext/jpeg/Makefile.am:
18222         * ext/jpeg/gstjpeg.c: (plugin_init):
18223         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18224         * ext/jpeg/gstjpegenc.h:
18225         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18226         (gst_smokedec_chain):
18227         * ext/jpeg/gstsmokedec.h:
18228         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18229         * ext/jpeg/gstsmokeenc.h:
18230         * ext/jpeg/smokecodec.h:
18231         Port smokedec (fixes #331905).
18232         Added some docs.
18233         Some cleanups.
18234
18235 2006-03-03  Wim Taymans  <wim@fluendo.com>
18236
18237         * docs/plugins/Makefile.am:
18238         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18239         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18240         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18241         Added videobalance and videoflip to the docs.
18242
18243         * gst/videofilter/Makefile.am:
18244         * gst/videofilter/gstvideobalance.c:
18245         (gst_video_balance_update_tables_planar411),
18246         (gst_video_balance_is_passthrough),
18247         (gst_video_balance_update_properties), (oil_tablelookup_u8),
18248         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18249         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18250         (gst_video_balance_finalize), (gst_video_balance_class_init),
18251         (gst_video_balance_init), (gst_video_balance_interface_supported),
18252         (gst_video_balance_interface_init),
18253         (gst_video_balance_colorbalance_list_channels),
18254         (gst_video_balance_colorbalance_set_value),
18255         (gst_video_balance_colorbalance_get_value),
18256         (gst_video_balance_colorbalance_init),
18257         (gst_video_balance_set_property), (gst_video_balance_get_property),
18258         (gst_video_balance_get_type), (plugin_init):
18259         * gst/videofilter/gstvideobalance.h:
18260         Ported to 0.10. (Fixes #326160)
18261         Added docs.
18262
18263         * gst/videofilter/gstvideoflip.c:
18264         * gst/videofilter/gstvideoflip.h:
18265         Added docs.
18266
18267 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
18268
18269         * configure.ac:
18270           Bump requirements to current core and -base CVS
18271           (core for new typefind helper API, and -base for the
18272           WAVFORMATEX support that was added to libgstriff and
18273           is needed by wavparse).
18274         
18275         * gst/apetag/Makefile.am:
18276         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18277         (gst_tag_demux_sink_activate):
18278           Use new typefind helpers for typefinding instead of our
18279           home-grown stuff; also, do typefinding in pull-mode if
18280           upstream supports that.
18281
18282 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
18283
18284         Reviewed by: Christian Schaller <christian@fluendo.com>
18285
18286         This patch fixes bug: 329107
18287
18288         This Changelog entry is for a commit done on February 17
18289
18290         * ext/gconf/gconf.c
18291         * ext/gconf/gconf.h
18292         * ext/gconf/gstgconfaudiosink.c
18293         * ext/gconf/gstgconfaudiosink.h
18294         * gconf/gstreamer.schemas.in
18295
18296 2006-02-28  Wim Taymans  <wim@fluendo.com>
18297
18298         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18299         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18300         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18301         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18302         Use DEBUG_OBJECT more.
18303
18304 2006-02-28  Wim Taymans  <wim@fluendo.com>
18305
18306         * docs/plugins/Makefile.am:
18307         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18308         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18309         Added dvdec and dvdemux to docs.
18310
18311         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18312         Added docs.
18313         Check frame sizes so we don't crash when don't have enough
18314         data.
18315         Send nice error messages on error.
18316
18317         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18318         (gst_dvdemux_class_init), (gst_dvdemux_init),
18319         (gst_dvdemux_finalize), (gst_dvdemux_reset),
18320         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18321         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18322         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18323         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18324         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18325         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18326         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18327         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18328         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18329         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18330         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18331         * ext/dv/gstdvdemux.h:
18332         Added docs.
18333         Implement pull mode.
18334         Fix memleaks.
18335         Reduce memcpy for the video demuxing.
18336
18337 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
18338
18339         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18340         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18341         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18342         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18343           Add a little extra debug. Make the decoder not return NOT_LINKED,
18344           as we want to continue decoding all CMML and emitting tags.
18345
18346 2006-02-27  Michael Smith  <msmith@fluendo.com>
18347
18348         * ext/annodex/gstskeltag.c:
18349         * ext/annodex/gstskeltag.h:
18350           Deleted; these files aren't used any more either.
18351
18352 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18353
18354         * ext/Makefile.am: Fix dist-check.
18355
18356 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18357
18358         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18359         memleak.
18360
18361 2006-02-25  Alessandro Decina <alessandro@nnva.org>
18362
18363         * ext/annodex/Makefile.am:
18364         * ext/annodex/gstannodex.c:
18365         * ext/annodex/gstcmmldec.c:
18366         * ext/annodex/gstcmmlenc.c:
18367         * ext/annodex/gstcmmlparser.c:
18368         * ext/annodex/gstcmmlparser.h:
18369         * ext/annodex/gstcmmlutils.c:
18370         * tests/check/elements/cmmldec.c:
18371         * tests/check/elements/cmmlenc.c:
18372           Fix a memleak in gst_cmml_track_list_add_clip.
18373           Handle overflows in clip's start and end times.
18374           Add the "encoded" parameter to cmmldec and cmmlenc caps.
18375           Do not parse junk at the end of a CMML preamble buffer.
18376           Register a libxml error handler to not print stuff on stderr.
18377           Check for bad clip start and end times in the testsuites.
18378
18379 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18380
18381         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18382         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18383         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18384         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18385         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18386         possible memleaks.
18387
18388 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18389
18390         * tests/check/Makefile.am:
18391         * tests/check/elements/cmmldec.c:
18392         * tests/check/elements/cmmlenc.c: Fix tests so that they use
18393         the plugins-base tags.
18394
18395 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18396
18397         * ext/Makefile.am: Re-enable module.
18398
18399 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18400
18401         * tests/check/Makefile.am: Forgot to remove that test.
18402
18403 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18404
18405         * ext/annodex/Makefile.am:
18406         * ext/annodex/gstannodex.c: (plugin_init):
18407         * ext/annodex/gstcmmldec.c:
18408         * ext/annodex/gstskeldec.c:
18409         * ext/annodex/gstskeldec.h:
18410         * tests/check/Makefile.am:
18411         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18412
18413 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18414
18415         * tests/check/Makefile.am: Disable those checks as well.
18416
18417 2006-02-24  Julien MOUTTE  <julien@moutte.net>
18418
18419         * ext/Makefile.am: Disable annodex for now until we figure out
18420         how to make it build.
18421         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18422         Add a rule to your checklist : "please try to at least build 
18423         what you are going to commit into -good, or if you are too lazy
18424         to do that, please check that the buildbots are not crying because
18425         of your commit."
18426
18427 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18428
18429         * configure.ac:
18430         * ext/Makefile.am:
18431         * ext/gdk_pixbuf/Makefile.am:
18432         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18433         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18434         * ext/gdk_pixbuf/pixbufscale.c:
18435         * ext/gdk_pixbuf/pixbufscale.h:
18436           Gdkpixbuf ported from 0.8 to 0.10 by
18437           Renato Filho <renato.filho@indt.org.br>.
18438           gst_loader and gdkpixbufanimation still need port.
18439
18440 2006-02-24  Michael Smith  <msmith@fluendo.com>
18441
18442         * configure.ac:
18443         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18444         * ext/Makefile.am:
18445         * ext/annodex/Makefile.am:
18446         * ext/annodex/gstannodex.c:
18447         * ext/annodex/gstannodex.h:
18448         * ext/annodex/gstcmmldec.c:
18449         * ext/annodex/gstcmmldec.h:
18450         * ext/annodex/gstcmmlenc.c:
18451         * ext/annodex/gstcmmlenc.h:
18452         * ext/annodex/gstcmmlparser.c:
18453         * ext/annodex/gstcmmlparser.h:
18454         * ext/annodex/gstcmmltag.c:
18455         * ext/annodex/gstcmmltag.h:
18456         * ext/annodex/gstcmmlutils.c:
18457         * ext/annodex/gstcmmlutils.h:
18458         * ext/annodex/gstskeldec.c:
18459         * ext/annodex/gstskeldec.h:
18460         * ext/annodex/gstskeltag.c:
18461         * ext/annodex/gstskeltag.h:
18462         * tests/check/Makefile.am:
18463         * tests/check/elements/cmmldec.c:
18464         * tests/check/elements/cmmlenc.c:
18465         * tests/check/elements/skeldec.c:
18466           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
18467           Includes tests & docs, oh my! Passes Thomas's -good checklist
18468           entirely. Wow.
18469
18470 2006-02-24  Michael Smith  <msmith@fluendo.com>
18471
18472         * autogen.sh:
18473           Check for automake 1.9 as well.
18474
18475 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18476
18477         * ext/flac/gstflacenc.c:
18478           Change min. sample rate to 8kHz to match flacdec's.
18479           
18480 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
18481
18482         * ext/cdio/Makefile.am:
18483           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18484           required for Cygwin, see #317048)
18485
18486         * gst/rtp/gstasteriskh263.c:
18487           Cygwin has includes for both the unix network socket API
18488           and the windows API, but only one can be included, so fix
18489           includes to only use one or the other, prefering the unxi
18490           one (#317048).
18491
18492 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18493
18494         * rtp/gst/gstrtppcmadepay.c:
18495         * rtp/gst/gstrtppcmadepay.h:
18496         * rtp/gst/gstgstrtppcmapay.c:
18497         * rtp/gst/gstgstrtppcmapay.h:
18498         * rtp/gst/gstrtppcmudepay.c:
18499         * rtp/gst/gstrtppcmudepay.h:
18500         * rtp/gst/gstrtppcmupay.c:
18501         * rtp/gst/gstrtppcmupay.h:
18502         * rtp/gst/Makefile.am:
18503         * rtp/gst/gstrtp.c:
18504         * rtp/gst/README:
18505         Separated the G711 payloaders/depayloaders into separate elements for
18506         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18507
18508 2006-02-22  Wim Taymans  <wim@fluendo.com>
18509
18510         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18511         (gst_dvdec_change_state):
18512         * ext/dv/gstdvdec.h:
18513         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18514         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18515         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18516         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18517         (gst_dvdemux_flush), (gst_dvdemux_chain),
18518         (gst_dvdemux_change_state):
18519         * ext/dv/gstdvdemux.h:
18520         Ueber spiffify some more, added debug category.
18521         Use _scale.
18522         Use segments, respect playback rate from newsegment.
18523         Fix refcount issue.
18524
18525 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18526
18527         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18528         (gst_signal_processor_process):
18529         Fix compilation of LADPSA. It doesn't seem to work, and isn't
18530         enabled for the build, but it helps me win the feature-count
18531         competitions ooh yeah.
18532
18533 2006-02-19  Wim Taymans  <wim@fluendo.com>
18534
18535         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18536         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18537         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18538         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18539         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18540         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18541         Use scaling code for added precission and more correct stop
18542         position in case scale==0.
18543
18544 2006-02-19  Wim Taymans  <wim@fluendo.com>
18545
18546         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18547         (gst_flxdec_chain):
18548         * gst/flx/gstflxdec.h:
18549         Implement DURATION query.
18550
18551 2006-02-19  Wim Taymans  <wim@fluendo.com>
18552
18553         * gst/flx/flx_color.h:
18554         * gst/flx/flx_fmt.h:
18555         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18556         (gst_flxdec_src_query_handler), (flx_decode_color),
18557         (gst_flxdec_chain):
18558         * gst/flx/gstflxdec.h:
18559         Set MALLOCDATA for the temp buffers so we don't leak.
18560         Some debug cleanups.
18561         Consume all data in the adapter before leaving the chain
18562         function. Fixes #330678.
18563
18564 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
18565
18566         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18567         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18568          Handle 0 data size in otherwise valid frames.
18569          Handle numeric strings in 2.4.0 even when not in parentheses 
18570
18571 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
18572
18573         * gst/matroska/matroska-demux.c:
18574         (gst_matroska_demux_subtitle_caps),
18575         (gst_matroska_demux_plugin_init):
18576         * gst/matroska/matroska-ids.h:
18577           Recognise SSA/ASS and USF subtitle formats and
18578           set proper caps when they are found.
18579
18580 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18581
18582         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18583         (gst_jpeg_dec_chain):
18584           Fix invalid memory access for some odd-sized images
18585           (see image contained in quicktime stream in #327083);
18586           use g_malloc() instead of g_alloca().
18587
18588 2006-02-17  Wim Taymans  <wim@fluendo.com>
18589
18590         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18591         Patch from Sebastien Cote, fixes #319884
18592
18593 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18594
18595         * ext/cdio/gstcdio.c: (plugin_init):
18596           Init debug category (#331253).
18597
18598 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18599
18600         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18601           Pass extra_data to gst_riff_create_audio_caps(), so that
18602           WAVEFORMATEX stuff works. Post audio codec name and post
18603           it as taglist on the bus. Allow up to 8 channesl for raw
18604           PCM in the source pad template caps.
18605
18606 2006-02-16  Wim Taymans  <wim@fluendo.com>
18607
18608         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18609         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18610         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18611         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18612         (gst_multipart_set_property), (gst_multipart_get_property):
18613         Applied #318663. Gives quite a few false positives in
18614         autoscan mode, but it's better than nothing. Not closing yet.
18615
18616 2006-02-16  Wim Taymans  <wim@fluendo.com>
18617
18618         * docs/plugins/Makefile.am:
18619         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18620         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18621         * docs/plugins/gst-plugins-good-plugins.args:
18622         * docs/plugins/inspect/plugin-udp.xml:
18623         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18624         (gst_udpsrc_start):
18625         Update documentation.
18626         Fix args.
18627
18628 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
18629
18630         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18631         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18632         frame size. (Fixes #331368)
18633
18634 2006-02-16  Wim Taymans  <wim@fluendo.com>
18635
18636         * gst/rtsp/README:
18637         Updated README.
18638
18639         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18640         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18641         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18642         * gst/rtsp/gstrtspsrc.h:
18643         Make sure the RTP port is an even port an try to allocate 
18644         another if not.
18645         Added retry property to control max retries for port allocation.
18646         Make sure RTCP port is RTP port+1.
18647         Cleanup when port allocation fails.
18648         Fixes #319183.
18649         
18650 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18651
18652         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18653           Don't ignore return value of the parent class's state
18654           change function (#331385, patch by: Wouter Paesen).
18655
18656 2006-02-15  Wim Taymans  <wim@fluendo.com>
18657
18658         * configure.ac:
18659         * docs/plugins/Makefile.am:
18660         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18661         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18662         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18663         * ext/Makefile.am:
18664         * ext/hal/Makefile.am:
18665         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18666         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18667         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18668         (do_toggle_element), (gst_hal_audio_sink_set_property),
18669         (gst_hal_audio_sink_get_property),
18670         (gst_hal_audio_sink_change_state):
18671         * ext/hal/gsthalaudiosink.h:
18672         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18673         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18674         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18675         (do_toggle_element), (gst_hal_audio_src_set_property),
18676         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18677         * ext/hal/gsthalaudiosrc.h:
18678         * ext/hal/gsthalelements.c: (plugin_init):
18679         * ext/hal/gsthalelements.h:
18680         * ext/hal/hal.c: (gst_hal_get_string),
18681         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18682         (gst_hal_get_audio_src):
18683         * ext/hal/hal.h:
18684         Add HAL sound device wrapper plugins. Closes #329106
18685
18686 2006-02-15  Wim Taymans  <wim@fluendo.com>
18687
18688         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18689         Add comment in a fultile attempt to stop the copy-and-paste 
18690         paradigm leading to duplication of bad code.
18691
18692         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18693         Mime parameters have to be checked case insensitive
18694
18695 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18696
18697         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18698           Advance stream time for lagging subtitle streams by sending
18699           newsegment events with the update flag set.
18700
18701 2006-02-14  Edward Hervey  <edward@fluendo.com>
18702
18703         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18704         There can be bogus data before the hdrl LIST tag in the RIFF header.
18705         It's hard to say if it's not respecting the AVI specifications or not,
18706         but since Google Video is producing AVIs like that and the other player
18707         don't seem to complain, I guess we should do the same.
18708
18709 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
18710
18711         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18712         (parse_split_strings):
18713         Add more validation to ensure that a char encoding conversion
18714         produced a valid UTF-8 string.
18715
18716 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
18717
18718         Reviewed by: Edward Hervey  <edward@fluendo.com>
18719
18720         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18721         Properly handle end of segment. Closes #330885.
18722
18723 2006-02-13  Wim Taymans  <wim@fluendo.com>
18724
18725         * gst/rtp/gstrtpmp4gpay.h:
18726         For got to commit this one.
18727
18728 2006-02-12  Wim Taymans  <wim@fluendo.com>
18729
18730         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18731         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18732         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18733         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18734         * gst/rtp/gstrtpmp4gpay.h:
18735         Make more things work.
18736         Handle ACC config strings.
18737
18738 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18739
18740         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18741           set timestamps if no incoming timestamps set
18742
18743 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
18744
18745         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18746         (gst_tag_demux_do_typefind):
18747           ... and fix the very same leaks in GstTagDemux.
18748
18749 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
18750
18751         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18752         (gst_id3demux_do_typefind):
18753         Fix a couple of mem leaks. (Patch by Jonathan Matthew
18754         <jonathan at kaolin dot wh9 dot net>)
18755
18756 2006-02-10  Wim Taymans  <wim@fluendo.com>
18757
18758         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18759         First set options, then set caps or else the baseclass
18760         will not know about the options, duh.
18761
18762 2006-02-10  Wim Taymans  <wim@fluendo.com>
18763
18764         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18765         (gst_rtp_mp4v_pay_setcaps):
18766         Don't waste time looking for a config string if we have codec_info
18767         on the incomming caps.
18768
18769 2006-02-10  Wim Taymans  <wim@fluendo.com>
18770
18771         * gst/rtp/README:
18772         Say something about case-sensitivity of caps vs mime-attributes.
18773
18774         * gst/rtp/Makefile.am:
18775         * gst/rtp/gstrtp.c: (plugin_init):
18776         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18777         (gst_rtp_amr_pay_handle_buffer):
18778         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18779         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18780         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18781         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18782         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18783         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18784         (gst_rtp_mp4g_pay_plugin_init):
18785         * gst/rtp/gstrtpmp4gpay.h:
18786         Added beginnings of mpeg4-generic payloader (RFC 3640)
18787
18788 2006-02-09  Wim Taymans  <wim@fluendo.com>
18789
18790         * gst/rtsp/Makefile.am:
18791         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18792         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18793         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18794         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18795         (gst_rtpdec_change_state):
18796         * gst/rtsp/gstrtpdec.h:
18797         * gst/rtsp/gstrtsp.c: (plugin_init):
18798         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18799         * gst/rtsp/rtspconnection.c: (read_body),
18800         (rtsp_connection_receive):
18801         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18802         Resurected rtpdec to make rtspsrc happy again.
18803         Skip attributes from the session id.
18804         Don't crash when dumping a message with an empty body.
18805
18806
18807 2006-02-09  Wim Taymans  <wim@fluendo.com>
18808
18809         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18810         Added more meaningfull warnings when something goes wrong.
18811         Clear F bit on outgoing AMR packets.
18812
18813         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18814         (gst_rtp_amr_pay_handle_buffer):
18815         Added debugging category
18816         Support payloading of multiple AMR frames.
18817
18818         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18819         Added some debugging.
18820
18821 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18822
18823         * configure.ac:
18824           Back to CVS
18825
18826 === release 0.10.2 ===
18827
18828 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18829
18830         * configure.ac:
18831           releasing 0.10.2, "Papa was a rolling stone"
18832
18833 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18834
18835         * configure.ac:
18836           Bump core and plugins-base requirement to 0.10.2.2
18837           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18838
18839 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18840
18841         * ext/flac/gstflac.c: (plugin_init):
18842         * ext/speex/gstspeex.c: (plugin_init):
18843           Register musicbrainz tags.
18844
18845 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18846
18847         * ext/gconf/gconf.h:
18848           Remove declaration of function that no longer exists.
18849
18850 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18851
18852         * ext/shout2/gstshout2.c: (gst_shout2send_render),
18853         (gst_shout2send_setcaps), (gst_shout2send_change_state):
18854         Make shout2 work for non ogg streams
18855
18856 2006-02-06  Wim Taymans  <wim@fluendo.com>
18857
18858         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18859         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18860         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18861         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18862         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18863         * gst/udp/gstmultiudpsink.h:
18864         Updated docs.
18865         Added properties bytes-served, bytes_to_serve.
18866         Post proper error messages,
18867         Emit client added signal too.
18868
18869 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18870
18871         * docs/plugins/Makefile.am:
18872         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18873         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18874         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18875         (gst_multiudpsink_get_stats):
18876           adding docs for multiudpsink
18877
18878 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18879
18880         * gst/level/gstlevel.c: (gst_level_transform_ip):
18881           peak below decay is not necessarily an error, so don't ERROR log
18882
18883 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18884
18885         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18886         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18887         (gst_ebml_write_seek):
18888         * gst/matroska/ebml-write.h:
18889           Make sure we send a newsegment event in BYTES format
18890           before sending buffers (#328531).
18891
18892 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18893
18894         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18895         (gst_dvdemux_sink_query):
18896         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18897         * ext/speex/gstspeexdec.c: (speex_get_query_types),
18898         (speex_dec_src_query):
18899         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18900         (gst_speexenc_sink_query):
18901         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18902         * gst/matroska/matroska-demux.c:
18903         (gst_matroska_demux_get_src_query_types),
18904         (gst_matroska_demux_handle_src_query):
18905         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18906         (gst_wavparse_pad_query):
18907           Pass unhandled queries upstream instead of just dropping
18908           them (#326446). Update query type arrays here and there.
18909
18910 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18911
18912         * tests/check/elements/matroskamux.c: (setup_src_pad):
18913           Collectpads in core got changed and now also holds a
18914           reference to any pad that is part of it. Fix refcount
18915           checks in test case accordingly.
18916
18917 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18918
18919         * gst/apetag/gstapedemux.h:
18920           Fix include, for now GstTagDemux is in the apetag dir.
18921
18922 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18923
18924         * docs/plugins/Makefile.am:
18925         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18926         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18927         * docs/plugins/inspect/plugin-cdio.xml:
18928           Add cdio plugin to docs.
18929
18930         * ext/cdio/gstcdiocddasrc.c:
18931           Add gtk-doc blurb.
18932
18933         * ext/cdio/gstcdio.c:
18934           The plugin is called 'cdio' not 'cddio'.
18935
18936 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18937
18938         * configure.ac:
18939         * docs/plugins/Makefile.am:
18940         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18941         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18942         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18943         * docs/plugins/inspect/plugin-apetag.xml:
18944         * gst/apetag/Makefile.am:
18945         * gst/apetag/gstapedemux.c:
18946         * gst/apetag/gstapedemux.h:
18947         * gst/apetag/gsttagdemux.c:
18948         * gst/apetag/gsttagdemux.h:
18949           Add APE tag demuxer (#325649).
18950
18951 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18952
18953         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18954         (gst_gconf_get_default_video_sink),
18955         (gst_gconf_get_default_audio_src),
18956         (gst_gconf_get_default_video_src):
18957         * ext/gconf/gconf.h:
18958         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18959         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18960         (do_toggle_element):
18961         * ext/gconf/gstgconfaudiosink.h:
18962         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18963         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18964         (do_toggle_element):
18965         * ext/gconf/gstgconfaudiosrc.h:
18966         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18967         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18968         (do_toggle_element):
18969         * ext/gconf/gstgconfvideosink.h:
18970         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18971         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18972         (do_toggle_element):
18973         * ext/gconf/gstgconfvideosrc.h:
18974           Ignore changing the GConf key to "". Ignore GConf key updates
18975           that don't actually change the string.
18976           For now, ignore the GConf key when the state is > READY, as
18977           it breaks streaming. Sometime it will be nice to bring the
18978           new sink online even mid-stream, by sending NEWSEGMENT info
18979           and possibly prerolling.
18980           (Fixes #326736)
18981
18982 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18983
18984         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18985         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18986         (zoomFilterSetResolution), (zoomFilterDestroy),
18987         (zoomFilterFastRGB), (pointFilter):
18988         * gst/goom/filters.h:
18989         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
18990         (goom_update), (goom_close):
18991         * gst/goom/goom_core.h:
18992         * gst/goom/goom_tools.h:
18993         * gst/goom/graphic.c:
18994         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18995         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
18996         * gst/goom/gstgoom.h:
18997         * gst/goom/lines.c: (goom_lines):
18998         * gst/goom/lines.h:
18999           Make goom reentrant by moving all important static variables
19000           into instance structures.
19001           (Fixes #329181)
19002
19003 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
19004
19005         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
19006         (gst_avi_demux_all_source_pads_unlinked),
19007         (gst_avi_demux_process_next_entry):
19008         * gst/avi/gstavidemux.h:
19009           Third attempt, use gst_pad_is_linked() this time.
19010
19011 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
19012
19013         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19014         (parse_split_strings):
19015         Adjust for data length indicators when parsing (Fixes #329810)
19016         Fix stupid bug parsing UTF-8 tag text.
19017         Output tag strings with multiple fields as multiple tags, so the
19018         app gets all the data.
19019
19020 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
19021
19022         * ext/flac/gstflacenc.c:
19023         Fixed a bug add in last commit, where no event is send. Thanks Tim to
19024         show me.
19025         
19026 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
19027
19028         * ext/flac/gstflacenc.c:
19029         * gst/matroska/ebml-read.c:
19030         Just make it compile with --disable-gst-debug.
19031
19032 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
19033
19034         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
19035         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
19036         (id3v2_genre_fields_to_taglist):
19037           Never output a tag with a null contents string.
19038
19039 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19040
19041         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
19042           Only pause if all pads are unlinked AND we've tried to send data
19043           on all of them at least once.
19044
19045 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19046
19047         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
19048         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
19049           Make loop function/task pause itself when all source pads are
19050           unlinked.
19051
19052 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19053
19054         * configure.ac:
19055         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
19056           Use new functions from core to render a bin from a
19057           string. Fixes build. Up requirements to core CVS.
19058
19059 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
19060
19061         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
19062           Don't push buffers into the adapter that we are going to
19063           push downstream again without framing anyway. Also, the
19064           adaptor takes ownership of buffers put into it (fixes
19065           auparse pushing invalid buffers for .au files with
19066           ADPCM contents). Finally, set caps on all outgoing buffers.
19067
19068 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
19069
19070         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
19071         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
19072         (gst_id3demux_send_tag_event):
19073         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
19074         Someone should kick my butt. Remove ID3v1 tags from the end of the
19075         file.
19076
19077         Improve error messages. Send the TAG message as soon as we complete
19078         typefinding, instead of waiting until we send the first buffer.
19079         Downstream tag event is still sent before the first buffer.
19080
19081 2006-01-27  Jan Gerber  <j@bootlab.org>
19082
19083         Reviewed by: Andy Wingo <wingo@pobox.com>
19084
19085         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
19086         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
19087         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
19088         to not have warings flooding stderr. this is the suggested way
19089         also used in dvgrab and kino. (#328336)
19090
19091 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
19092
19093         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
19094         (gst_oss_sink_init), (gst_oss_sink_finalise):
19095           Free the device name string when finalised.
19096
19097 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
19098
19099         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
19100           Don't put function calls in g_return_if_fail() statements,
19101           or they'll be replaced with NOOPs if someone compiles with
19102           G_DISABLE_CHECKS defined.
19103           
19104 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
19105
19106         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19107         Never trust ANY information encoded in a media file, especially
19108         when it's giving you sizes. (Fixes #328452)
19109
19110 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
19111
19112         * gst/rtp/gstrtpg711pay.c:
19113         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
19114         bug #325148.
19115
19116 2006-01-23  Edward Hervey  <edward@fluendo.com>
19117
19118         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
19119         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
19120         * gst/matroska/matroska-ids.h:
19121         Added recognition of Real Audio and Video streams in matroska demuxer.
19122
19123 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19124
19125         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
19126           Remove errant break statement, and fix compilation with
19127           older GCC.
19128
19129 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
19130
19131         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19132
19133         * sys/sunaudio/gstsunaudiomixerctrl.c:
19134         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
19135           Export functions that are needed in other parts of the code,
19136           makes the mixer actually work; adjust magic minimum buffer-time
19137           value from 3ms to 5ms to work around stuttering during mp3
19138           playback (#327765).
19139
19140 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
19141
19142         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19143
19144         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
19145         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
19146           Fix possible deadlock in matroska muxer (#327825).
19147
19148 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
19149
19150         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
19151         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
19152         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
19153         * gst/rtsp/sdpmessage.h:
19154         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
19155         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
19156           C89 fixes: declare variables at the beginning of a block and
19157           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
19158           <jensgr at gmx dot net>).
19159
19160 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19161
19162         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19163         * gst/id3demux/id3tags.h:
19164         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19165         (parse_comment_frame), (parse_text_identification_frame),
19166         (id3v2_tag_to_taglist), (id3v2_are_digits),
19167         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
19168         (parse_split_strings), (free_tag_strings):
19169           Rewrite parsing of text tags to handle multiple NULL terminated
19170           strings. Parse numeric genre strings and ID3v2 type
19171           "(3)(6)Alternative" style genre strings.
19172           Parse dates that are only YYYY or YYYY-mm format.
19173           (Fixes #328241 and #322154)
19174
19175 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
19176
19177         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19178           Don't forget to initialize liboil, otherwise our oil functions
19179           will crash (fixes #327871; patch by: Christoph Burghardt
19180           <hawkes at web dot de>).
19181
19182 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19183
19184         * configure.ac:
19185           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19186           like in the core and gst-plugins-base. Fixes #324367 and #326683;
19187           patch by: Brian Cameron <brian dot cameron at sun dot com>
19188
19189 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19190
19191         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19192         * ext/cdio/gstcdio.h:
19193         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19194           Fix build for libcdio versions >= 76; give slightly lower rank
19195           than cdparanoia.
19196
19197 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19198
19199         * configure.ac:
19200         * ext/Makefile.am:
19201         * ext/cdio/Makefile.am:
19202         * ext/cdio/gstcdio.c:
19203         * ext/cdio/gstcdio.h:
19204         * ext/cdio/gstcdiocddasrc.c:
19205         * ext/cdio/gstcdiocddasrc.h:
19206           Port libcdio cdda source, formerly known as cddasrc, now known as
19207           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19208           but that's not tested (fixes #317658).
19209
19210 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19211
19212         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19213           Fix conversion from TIME to BYTES format (fixes #326864;
19214           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19215
19216 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
19217
19218         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19219           Fix compilation of id3demux when zlib is not present.
19220           (Fixes #326602; patch by: Sergey Scobich)
19221
19222 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
19223
19224         * ext/esd/Makefile.am:
19225           Add $(ESD_CFLAGS), otherwise build will fail for folks
19226           with libesd in a non-standard prefix (#327009).
19227
19228 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19229
19230         * configure.ac:
19231           back to HEAD
19232
19233 === release 0.10.1 ===
19234
19235 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
19236
19237         * configure.ac:
19238           releasing 0.10.1, "Li"
19239
19240 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19241
19242           patch by: Wim Taymans
19243
19244         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19245           fix memleak.  Fixes #326618
19246
19247 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19248
19249           patch by: Mike Smith
19250
19251         * gst/level/gstlevel.c: (gst_level_message_new),
19252         (gst_level_message_append_channel):
19253           Fix memleak.  Fixes #326612
19254
19255 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19256
19257         * configure.ac:
19258           prereleasing
19259         * po/af.po:
19260         * po/az.po:
19261         * po/cs.po:
19262         * po/en_GB.po:
19263         * po/hu.po:
19264         * po/it.po:
19265         * po/nb.po:
19266         * po/nl.po:
19267         * po/or.po:
19268         * po/sq.po:
19269         * po/sr.po:
19270         * po/sv.po:
19271         * po/uk.po:
19272         * po/vi.po:
19273           update translations
19274
19275 2006-01-10  Michael Smith  <msmith@fluendo.com>
19276
19277         * gst/level/gstlevel.c: (gst_level_class_init),
19278         (gst_level_dispose):
19279           Don't leak filter arrays.
19280
19281 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19282
19283         reviewed by: Christian Schaller <uraeus@gnome.org>
19284         
19285         * configure.ac:
19286         * gst-plugins-good.spec.in:
19287         * sys/Makefile.am:
19288         * sys/sunaudio/Makefile.am:
19289         * sys/sunaudio/gstsunaudio.c: (plugin_init):
19290         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19291         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19292         (gst_sunaudiomixer_change_state):
19293         * sys/sunaudio/gstsunaudiomixer.h:
19294         * sys/sunaudio/gstsunaudiomixerctrl.c:
19295         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19296         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19297         (gst_sunaudiomixer_ctrl_list_tracks),
19298         (gst_sunaudiomixer_ctrl_get_volume),
19299         (gst_sunaudiomixer_ctrl_set_volume),
19300         (gst_sunaudiomixer_ctrl_set_mute),
19301         (gst_sunaudiomixer_ctrl_set_record):
19302         * sys/sunaudio/gstsunaudiomixerctrl.h:
19303         * sys/sunaudio/gstsunaudiomixertrack.c:
19304         (gst_sunaudiomixer_track_class_init),
19305         (gst_sunaudiomixer_track_init), (fill_labels),
19306         (gst_sunaudiomixer_track_new):
19307         * sys/sunaudio/gstsunaudiomixertrack.h:
19308         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19309         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19310         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19311         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19312         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19313         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19314         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19315         * sys/sunaudio/gstsunaudiosink.h:
19316
19317         Add SunAudio plugin - tested to make sure it doesn't break
19318         the build under GNU/Linux.      
19319
19320 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
19321
19322         * gst-plugins-good/gst/udp/gstdynudpsink.c:
19323         * gst-plugins-good/gst/udp/gstudpsrc.c:
19324         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19325         overrides the port or multicast parameters. Fixes bugs #323021.
19326         API addition: adds GstUDPSrc::sockfd property   
19327
19328 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
19329
19330         * ext/gconf/Makefile.am:
19331         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19332         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19333         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19334         (do_toggle_element), (cb_toggle_element),
19335         (gst_gconf_audio_src_change_state):
19336         * ext/gconf/gstgconfaudiosrc.h:
19337         * ext/gconf/gstgconfelements.c: (plugin_init):
19338         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19339         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19340         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19341         (do_toggle_element), (cb_toggle_element),
19342         (gst_gconf_video_src_change_state):
19343         * ext/gconf/gstgconfvideosrc.h:
19344           Add new gconfaudiosrc and gconfvideosrc elements
19345           (needed for gnome-sound-recorder).
19346
19347 2006-01-06  Edward Hervey  <edward@fluendo.com>
19348
19349         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19350         Add gst_element_no_more_pads() for proper decodebin behaviour.
19351         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19352         (parse_text_identification_frame), (parse_split_strings):
19353         Failure to decode some tags is not a GST_ERROR() but a
19354         GST_WARNING()
19355         When iterating over a chunk of text, check that we haven't gone too
19356         far.
19357
19358 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19359
19360         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19361         (plugin_init):
19362           call oil_init() when using liboil
19363
19364 2006-01-04  Wim Taymans  <wim@fluendo.com>
19365
19366         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19367         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19368         Fix leaks.
19369
19370 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
19371
19372         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19373
19374         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19375         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19376         (gst_flac_dec_change_state):
19377           Don't g_assert() where we should just return FALSE; remove
19378           unnecessary g_assert(); initialize some fields properly in
19379           state change function (fixes #325504). Also, use
19380           GST_DEBUG_OBJECT in two more places.
19381
19382 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19383
19384         * configure.ac:
19385           also remove smoothwave's Makefile.am
19386         * docs/plugins/Makefile.am:
19387           fix plugin docs
19388
19389 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19390
19391         * tests/examples/Makefile.am:
19392           added missing Makefile.am
19393
19394 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19395
19396         * configure.ac:
19397         * gst/level/Makefile.am:
19398         * gst/level/level-example.c:
19399         * tests/Makefile.am:
19400         * tests/examples/level/Makefile.am:
19401         * tests/examples/level/level-example.c: (message_handler), (main):
19402           moved level-example to tests/examples/level-example
19403         * tests/old/examples/level/demo.c: (main):
19404         * tests/old/examples/level/plot.c: (main):
19405           some initial fixes
19406
19407 2005-12-29  Michael Smith  <msmith@fluendo.com>
19408
19409         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19410         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19411         * gst/udp/gstmultiudpsink.h:
19412           Track packets sent per client in addition to bytes sent; provide
19413           this info through get-stats signal
19414
19415 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19416
19417         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19418           Can't use gst_object_unref() on a GstAdapter (#325191).
19419
19420 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
19421
19422         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19423         If a broken tag has 0 bytes payload, at least still skip
19424         the 10 byte header
19425
19426 2005-12-22  Philippe Khalaf  <burger@speedy.org>
19427
19428         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19429         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19430         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19431         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19432           Making these depayloaders (H263+ and mpeg4 video) inherit from
19433           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19434
19435 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19436
19437         * docs/plugins/gst-plugins-good-plugins.args:
19438         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19439         Regenerate the plugin hiearchy.
19440
19441 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19442
19443         * docs/plugins/Makefile.am:
19444         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19445         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19446         * docs/plugins/gst-plugins-good-plugins.args:
19447         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19448         (gst_id3demux_base_init), (gst_id3demux_class_init),
19449         (gst_id3demux_chain):
19450         * gst/id3demux/gstid3demux.h:
19451           Add documentation for id3demux.
19452           Don't fail if the first buffer is not at offset 0, just
19453           attempt to typefind and do pass through
19454           Rename the gst_type function from gst_gst_id3demux..
19455
19456 2005-12-20  Michael Smith  <msmith@fluendo.com>
19457
19458         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19459         (gst_multiudpsink_add), (gst_multiudpsink_remove),
19460         (gst_multiudpsink_get_stats):
19461         * gst/udp/gstmultiudpsink.h:
19462           Collect statistics; return them from get_stats.
19463
19464 2005-12-19  Edward Hervey  <edward@fluendo.com>
19465
19466         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19467         Stupid signedness issue...
19468
19469 2005-12-19  Edward Hervey  <edward@fluendo.com>
19470
19471         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19472         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19473         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19474         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19475         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19476         Construct index for indexless files.
19477         Make sure pad/buffers are correctly reset to NULL once we don't need
19478         them anymore, else we get lovely segfaults/assertions.
19479         * gst/wavparse/gstwavparse.c:
19480         Yes, you can have 96KHz audio and wma in wav :(
19481
19482 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19483
19484         * configure.ac:
19485           Check for optional dependency on zlib for id3demux
19486
19487         * gst/id3demux/Makefile.am:
19488         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19489         (gst_id3demux_base_init), (gst_id3demux_class_init),
19490         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19491         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19492         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19493         (gst_id3demux_set_property), (gst_id3demux_get_property),
19494         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19495         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19496         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19497         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19498         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19499         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19500         (simple_find_peek), (simple_find_suggest),
19501         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19502         (plugin_init):
19503         * gst/id3demux/gstid3demux.h:
19504         * gst/id3demux/id3tags.c: (read_synch_uint),
19505         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19506         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19507         (id3demux_id3v2_frames_to_tag_list):
19508         * gst/id3demux/id3tags.h:
19509         * gst/id3demux/id3v2.4.0-frames.txt:
19510         * gst/id3demux/id3v2.4.0-structure.txt:
19511         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19512         (parse_comment_frame), (parse_text_identification_frame),
19513         (id3v2_tag_to_taglist), (parse_split_strings):
19514           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
19515           otherwise it discards them. Works on my test files. 
19516
19517         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19518           Don't send EOS to a non-existing srcpad
19519           The debug category can be static
19520
19521 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19522
19523         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19524         * ext/esd/esdsink.c: (gst_esdsink_prepare):
19525         * gst/multipart/multipartdemux.c:
19526           change some char* into char[]
19527
19528 2005-12-16  Wim Taymans  <wim@fluendo.com>
19529
19530         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19531         (gst_wavparse_other), (gst_wavparse_perform_seek),
19532         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19533         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19534         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19535         * gst/wavparse/gstwavparse.h:
19536         Use GstSegment to implement more seeking features.
19537
19538 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19539
19540         * gst/rtsp/rtspconnection.c:
19541           Add <netinet/in.h> include and move <arpa/inet.h> include
19542           to make things work on OpenBSD as well (fixes #323717;
19543           patch by: Benjamin Pineau)
19544
19545 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19546
19547         * gst/rtp/gstrtpspeexdepay.c:
19548         * gst/rtp/gstrtpspeexpay.c:
19549         Set clock rate to be fixed in 8000. It fixes bug #324012.
19550
19551 2005-12-14  Philippe Khalaf  <burger@speedy.org>
19552
19553         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19554         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19555         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19556         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19557         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19558         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19559         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19560         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19561         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19562         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19563         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19564         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19565         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19566         * gst-plugins-good/gst/rtp/README:
19567         Fixed payload range in payloder caps. Removed payload range completely
19568         from depayloaders as they don't require payload type in their caps.
19569         In effect, there isn't any specific payload type for any given codec,
19570         only suggestions.
19571         Fixes bug #324011.
19572
19573 2005-12-13  Julien MOUTTE  <julien@moutte.net>
19574
19575         * gst/videomixer/videomixer.c: (gst_videomixer_init),
19576         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19577         (gst_videomixer_collected): Code cleanup and re-enabling 
19578         queued time validity check for correct EOS handling.
19579
19580 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
19581
19582         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19583         (gst_oss_mixer_element_get_property),
19584         (gst_oss_mixer_element_change_state):
19585         Add 'device-name' property and fix state change function.
19586
19587 2005-12-13  Edward Hervey  <edward@fluendo.com>
19588
19589         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
19590         If the speed of the file is null in the header, set the frame_time to
19591         the default setting of GST_SECOND / 70. Which is the default
19592         frame_delay for .fli files as stated in this document :
19593         http://www.compuphase.com/flic.htm
19594         Would be nice to have the time conversion done properly too (duration =
19595         flxh->frames * flxdec->frame_time)
19596
19597 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19598
19599         * docs/plugins/Makefile.am:
19600         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19601         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19602         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19603         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19604         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19605         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19606         documentation for videomixer on my way with a funny sample
19607         pipeline.
19608
19609 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19610
19611         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19612         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19613         (gst_videomixer_update_queues), (gst_videomixer_collected):
19614         Fix caps negotiation. (#323896)
19615
19616 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
19617
19618         * gst/matroska/matroska-demux.c:
19619         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19620           Set correct timestamps on audio laces, fixes playback of mp3 from
19621                 matroska.
19622
19623 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19624
19625         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19626         (gst_au_parse_class_init), (gst_au_parse_init),
19627         (gst_au_parse_dispose), (gst_au_parse_chain),
19628         (gst_au_parse_change_state), (plugin_init):
19629         * gst/auparse/gstauparse.h:
19630           Use gst_object_unref() for GstObjects instead of
19631           g_object_unref() and fix a mem leak in a debug
19632           statement; while we're at it, also borgify, use
19633           boilerplate macros and clean up a little bit.
19634
19635 2005-12-11  Edward Hervey  <edward@fluendo.com>
19636
19637         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19638         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19639         Added pull mode.
19640
19641 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19642
19643         * gst/goom/gstgoom.c:
19644         * gst/level/level-example.c: (main):
19645         * gst/smoothwave/demo-osssrc.c: (main):
19646           Use audiotestsrc instead of sinesrc (#323798).
19647
19648 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
19649
19650         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19651           more debug-func-ptr usage
19652
19653 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
19654
19655         * gst/flx/flx_color.c: (flx_colorspace_convert):
19656         * gst/flx/flx_color.h:
19657         * gst/flx/flx_fmt.h:
19658         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19659         * gst/flx/gstflxdec.h:
19660           Now flxdec works on big-endian machines as well.
19661
19662 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19663
19664         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19665         (gst_fenced_buffer_copy):
19666           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19667           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19668           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19669           and use GST_DEBUG_FUNCPTR for pad functions.
19670
19671 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19672
19673         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19674         (gst_flac_dec_class_init), (gst_flac_dec_init),
19675         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19676         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19677         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19678         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19679         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19680         (gst_flac_dec_change_state):
19681         * ext/flac/gstflacdec.h:
19682           Rewrite flacdec a bit, so that even seeking might work now. Most
19683           importantly, don't act upon any flow return values we get, just tell
19684           the decoder everything's dandy and act on the flow return values
19685           later on in the loop function. We don't want to mess up the internal
19686           decoder state for non-fatal things like flushing pads etc. Other
19687           than that, use GstSegment (segment seeks don't work yet though, but
19688           should be easy to add), use boilerplate macros, drop the superfluous
19689           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19690           lots of other things.
19691
19692 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19693
19694         * configure.ac:
19695           Update comment in OSS includes check.
19696
19697         * sys/oss/gstossdmabuffer.c:
19698         * sys/oss/gstosshelper.c:
19699         * sys/oss/gstossmixer.c:
19700         * sys/oss/gstossmixertrack.c:
19701         * sys/oss/gstosssink.c:
19702         * sys/oss/gstosssrc.c:
19703         * sys/oss/oss_probe.c:
19704           Don't assume the OSS soundcard.h include is always in
19705           the sys/ directory. Instead, use the existing defines
19706           from config.h to include the right file. Fixes
19707           compilation on OpenBSD 3.8 (#323718).
19708
19709 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19710
19711         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19712         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19713         * docs/plugins/inspect/plugin-1394.xml:
19714         * docs/plugins/inspect/plugin-aasink.xml:
19715         * docs/plugins/inspect/plugin-alaw.xml:
19716         * docs/plugins/inspect/plugin-alpha.xml:
19717         * docs/plugins/inspect/plugin-alphacolor.xml:
19718         * docs/plugins/inspect/plugin-auparse.xml:
19719         * docs/plugins/inspect/plugin-autodetect.xml:
19720         * docs/plugins/inspect/plugin-avi.xml:
19721         * docs/plugins/inspect/plugin-cacasink.xml:
19722         * docs/plugins/inspect/plugin-cairo.xml:
19723         * docs/plugins/inspect/plugin-cutter.xml:
19724         * docs/plugins/inspect/plugin-debug.xml:
19725         * docs/plugins/inspect/plugin-dv.xml:
19726         * docs/plugins/inspect/plugin-efence.xml:
19727         * docs/plugins/inspect/plugin-effectv.xml:
19728         * docs/plugins/inspect/plugin-esdsink.xml:
19729         * docs/plugins/inspect/plugin-flac.xml:
19730         * docs/plugins/inspect/plugin-flxdec.xml:
19731         * docs/plugins/inspect/plugin-gconfelements.xml:
19732         * docs/plugins/inspect/plugin-goom.xml:
19733         * docs/plugins/inspect/plugin-jpeg.xml:
19734         * docs/plugins/inspect/plugin-level.xml:
19735         * docs/plugins/inspect/plugin-matroska.xml:
19736         * docs/plugins/inspect/plugin-mulaw.xml:
19737         * docs/plugins/inspect/plugin-multipart.xml:
19738         * docs/plugins/inspect/plugin-navigationtest.xml:
19739         * docs/plugins/inspect/plugin-ossaudio.xml:
19740         * docs/plugins/inspect/plugin-png.xml:
19741         * docs/plugins/inspect/plugin-rtp.xml:
19742         * docs/plugins/inspect/plugin-rtsp.xml:
19743         * docs/plugins/inspect/plugin-shout2send.xml:
19744         * docs/plugins/inspect/plugin-smpte.xml:
19745         * docs/plugins/inspect/plugin-speex.xml:
19746         * docs/plugins/inspect/plugin-udp.xml:
19747         * docs/plugins/inspect/plugin-videobox.xml:
19748         * docs/plugins/inspect/plugin-videoflip.xml:
19749         * docs/plugins/inspect/plugin-videomixer.xml:
19750         * docs/plugins/inspect/plugin-wavenc.xml:
19751         * docs/plugins/inspect/plugin-wavparse.xml:
19752         * ext/flac/gstflac.c: (plugin_init):
19753         * ext/flac/gstflacdec.c: (flacdec_get_type),
19754         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19755         (gst_flac_dec_init), (gst_flac_dec_finalize),
19756         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19757         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19758         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19759         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19760         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19761         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19762         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19763         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19764         * ext/flac/gstflacdec.h:
19765         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19766         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19767         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19768         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19769         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19770         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19771         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19772         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19773         (gst_flac_enc_change_state):
19774         * ext/flac/gstflacenc.h:
19775           borgify and fix up documentation
19776
19777 2005-12-09  Michael Smith  <msmith@fluendo.com>
19778
19779         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19780           Accept a wider range of flac files, more closely matching flac spec.
19781
19782 2005-12-08  Julien MOUTTE  <julien@moutte.net>
19783
19784         * docs/plugins/Makefile.am: Add multipart elements.
19785         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19786         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19787         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19788         * gst/multipart/multipartdemux.c:
19789         * gst/multipart/multipartmux.c: Add docs.
19790
19791 2005-12-07  Edward Hervey  <edward@fluendo.com>
19792
19793         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19794         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19795         (gst_avi_demux_invert):
19796         Memleak and crasher fixes.
19797         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19798         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19799         Memleak fixes
19800
19801 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19802
19803         * ext/aalib/gstaasink.h:
19804         * ext/cairo/gsttextoverlay.h:
19805         * ext/dv/gstdvdec.h:
19806         * ext/dv/gstdvdemux.c:
19807         * ext/dv/gstdvdemux.h:
19808         * ext/esd/esdsink.h:
19809         * ext/flac/flac_compat.h:
19810         * ext/flac/gstflacdec.h:
19811         * ext/flac/gstflacenc.h:
19812         * ext/gconf/gconf.h:
19813         * ext/gconf/gstgconfaudiosink.h:
19814         * ext/gconf/gstgconfvideosink.h:
19815         * ext/gdk_pixbuf/gstgdkanimation.h:
19816         * ext/jpeg/gstjpegdec.h:
19817         * ext/jpeg/smokecodec.h:
19818         * ext/jpeg/smokeformat.h:
19819         * ext/ladspa/gstsignalprocessor.h:
19820         * ext/ladspa/search.c: (LADSPAPluginSearch):
19821         * ext/ladspa/utils.h:
19822         * ext/libmng/gstmng.c:
19823         * ext/libmng/gstmngdec.h:
19824         * ext/libmng/gstmngenc.c:
19825         * ext/libmng/gstmngenc.h:
19826         * ext/libpng/gstpng.c:
19827         * ext/libpng/gstpngenc.c:
19828         * ext/libpng/gstpngenc.h:
19829         * ext/shout2/gstshout2.h:
19830         * ext/speex/gstspeexdec.h:
19831         * ext/speex/gstspeexenc.c:
19832         * ext/speex/gstspeexenc.h:
19833         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19834         * gst/autodetect/gstautoaudiosink.h:
19835         * gst/autodetect/gstautovideosink.h:
19836         * gst/avi/gstavidemux.h:
19837         * gst/cutter/gstcutter.c: (gst_cutter_chain),
19838         (gst_cutter_set_property), (gst_cutter_get_caps):
19839         * gst/cutter/gstcutter.h:
19840         * gst/debug/tests.c: (md5_process_block):
19841         * gst/debug/tests.h:
19842         * gst/effectv/gstwarp.c:
19843         * gst/flx/flx_fmt.h:
19844         * gst/flx/gstflxdec.h:
19845         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19846         (zoomFilterFastRGB):
19847         * gst/goom/filters.h:
19848         * gst/goom/goom_tools.h:
19849         * gst/law/alaw-encode.c:
19850         * gst/level/gstlevel.c:
19851         * gst/level/gstlevel.h:
19852         * gst/matroska/ebml-write.h:
19853         * gst/matroska/matroska-demux.h:
19854         * gst/matroska/matroska-ids.h:
19855         * gst/matroska/matroska-mux.h:
19856         * gst/monoscope/convolve.c: (convolve_match):
19857         * gst/monoscope/convolve.h:
19858         * gst/multipart/multipartmux.c:
19859         * gst/oldcore/gstaggregator.c:
19860         * gst/oldcore/gstaggregator.h:
19861         * gst/oldcore/gstmd5sink.c: (md5_process_block):
19862         * gst/oldcore/gstmd5sink.h:
19863         * gst/oldcore/gstmultifilesrc.c:
19864         * gst/oldcore/gstmultifilesrc.h:
19865         * gst/oldcore/gstpipefilter.h:
19866         * gst/oldcore/gstshaper.h:
19867         * gst/rtp/gstrtpL16depay.h:
19868         * gst/rtp/gstrtpL16pay.h:
19869         * gst/rtp/gstrtpdepay.h:
19870         * gst/rtp/gstrtpmp4vpay.c:
19871         * gst/rtp/gstrtpmp4vpay.h:
19872         * gst/rtsp/gstrtspsrc.c:
19873         * gst/rtsp/gstrtspsrc.h:
19874         * gst/rtsp/rtspconnection.h:
19875         * gst/rtsp/rtspdefs.h:
19876         * gst/rtsp/rtspmessage.h:
19877         * gst/rtsp/rtsptransport.h:
19878         * gst/rtsp/rtspurl.c:
19879         * gst/rtsp/rtspurl.h:
19880         * gst/rtsp/sdpmessage.c:
19881         * gst/rtsp/sdpmessage.h:
19882         * gst/smpte/barboxwipes.c:
19883         * gst/smpte/gstmask.h:
19884         * gst/smpte/gstsmpte.h:
19885         * gst/smpte/paint.c:
19886         * gst/smpte/paint.h:
19887         * gst/udp/gstdynudpsink.h:
19888         * gst/udp/gstmultiudpsink.h:
19889         * gst/udp/gstudpsink.c:
19890         * gst/udp/gstudpsink.h:
19891         * gst/udp/gstudpsrc.c:
19892         * gst/videomixer/videomixer.c:
19893         * gst/wavenc/riff.h:
19894         * gst/wavparse/gstwavparse.h:
19895         * sys/oss/gstossdmabuffer.h:
19896         * sys/oss/gstossmixer.h:
19897         * sys/oss/gstossmixerelement.h:
19898         * sys/oss/gstossmixertrack.h:
19899         * sys/oss/gstosssink.c:
19900         * sys/oss/gstosssink.h:
19901         * sys/oss/gstosssrc.c:
19902         * sys/oss/gstosssrc.h:
19903         * sys/osxaudio/gstosxaudioelement.h:
19904         * sys/osxaudio/gstosxaudiosink.h:
19905         * sys/osxaudio/gstosxaudiosrc.h:
19906           expand tabs
19907
19908 === release 0.10.0 ===
19909
19910 2005-12-05   <thomas (at) apestaart (dot) org>
19911
19912         * configure.ac:
19913           releasing 0.10.0, "Abondance"
19914
19915 2005-12-05  Andy Wingo  <wingo@pobox.com>
19916
19917         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19918         * ext/flac/gstflacdec.c: (gst_flacdec_write):
19919         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19920         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19921         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19922         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19923         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19924         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19925         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19926         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19927         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19928         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19929         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19930         * gst/goom/gstgoom.c: (gst_goom_chain):
19931         * gst/matroska/matroska-demux.c:
19932         (gst_matroska_demux_push_vorbis_codec_priv_data),
19933         (gst_matroska_demux_add_wvpk_header):
19934         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19935         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19936         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19937         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19938         alloc_buffer changes.
19939
19940 2005-12-05  Michael Smith  <msmith@fluendo.com>
19941
19942         * docs/plugins/gst-plugins-good-plugins.args:
19943           Remove args for plugins that aren't in -good.
19944
19945 === release 0.9.7 ===
19946
19947 2005-12-01   <thomas (at) apestaart (dot) org>
19948
19949         * configure.ac:
19950           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19951
19952 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19953
19954         * docs/plugins/.cvsignore:
19955         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19956         * docs/plugins/inspect/plugin-multipart.xml:
19957         * docs/plugins/inspect/plugin-rtp.xml:
19958           add multipart plugin to docs
19959
19960 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19961
19962         * configure.ac:
19963         * ext/Makefile.am:
19964         * ext/pango/Makefile.am:
19965         * ext/pango/gstclockoverlay.c:
19966         * ext/pango/gstclockoverlay.h:
19967         * ext/pango/gsttextoverlay.c:
19968         * ext/pango/gsttextoverlay.h:
19969         * ext/pango/gsttextrender.c:
19970         * ext/pango/gsttextrender.h:
19971         * ext/pango/gsttimeoverlay.c:
19972         * ext/pango/gsttimeoverlay.h:
19973           move pango to base
19974
19975 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19976
19977         * gst/rtp/Makefile.am:
19978         * gst/rtp/gstrtpL16depay.c:
19979         * gst/rtp/gstrtpL16depay.h:
19980         * gst/rtp/gstrtpL16parse.c:
19981         * gst/rtp/gstrtpL16parse.h:
19982         * gst/rtp/gstrtpgsmdepay.c:
19983         * gst/rtp/gstrtpgsmdepay.h:
19984         * gst/rtp/gstrtpgsmparse.c:
19985         * gst/rtp/gstrtpgsmparse.h:
19986           parsers are depayers
19987
19988 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19989
19990         * gst/rtp/Makefile.am:
19991         * gst/rtp/gstasteriskh263.c:
19992         * gst/rtp/gstrtp.c:
19993         * gst/rtp/gstrtpL16enc.c:
19994         * gst/rtp/gstrtpL16enc.h:
19995         * gst/rtp/gstrtpL16parse.c:
19996         * gst/rtp/gstrtpL16parse.h:
19997         * gst/rtp/gstrtpL16pay.c:
19998         * gst/rtp/gstrtpL16pay.h:
19999         * gst/rtp/gstrtpamrdec.c:
20000         * gst/rtp/gstrtpamrdec.h:
20001         * gst/rtp/gstrtpamrdepay.c:
20002         * gst/rtp/gstrtpamrdepay.h:
20003         * gst/rtp/gstrtpamrenc.c:
20004         * gst/rtp/gstrtpamrenc.h:
20005         * gst/rtp/gstrtpamrpay.c:
20006         * gst/rtp/gstrtpamrpay.h:
20007         * gst/rtp/gstrtpdec.c:
20008         * gst/rtp/gstrtpdec.h:
20009         * gst/rtp/gstrtpdepay.c:
20010         * gst/rtp/gstrtpdepay.h:
20011         * gst/rtp/gstrtpg711dec.c:
20012         * gst/rtp/gstrtpg711dec.h:
20013         * gst/rtp/gstrtpg711depay.c:
20014         * gst/rtp/gstrtpg711depay.h:
20015         * gst/rtp/gstrtpg711enc.c:
20016         * gst/rtp/gstrtpg711enc.h:
20017         * gst/rtp/gstrtpg711pay.c:
20018         * gst/rtp/gstrtpg711pay.h:
20019         * gst/rtp/gstrtpgsmenc.c:
20020         * gst/rtp/gstrtpgsmenc.h:
20021         * gst/rtp/gstrtpgsmparse.c:
20022         * gst/rtp/gstrtpgsmparse.h:
20023         * gst/rtp/gstrtpgsmpay.c:
20024         * gst/rtp/gstrtpgsmpay.h:
20025         * gst/rtp/gstrtph263enc.c:
20026         * gst/rtp/gstrtph263enc.h:
20027         * gst/rtp/gstrtph263pay.c:
20028         * gst/rtp/gstrtph263pay.h:
20029         * gst/rtp/gstrtph263pdec.c:
20030         * gst/rtp/gstrtph263pdec.h:
20031         * gst/rtp/gstrtph263pdepay.c:
20032         * gst/rtp/gstrtph263pdepay.h:
20033         * gst/rtp/gstrtph263penc.c:
20034         * gst/rtp/gstrtph263penc.h:
20035         * gst/rtp/gstrtph263ppay.c:
20036         * gst/rtp/gstrtph263ppay.h:
20037         * gst/rtp/gstrtpmp4vdec.c:
20038         * gst/rtp/gstrtpmp4vdec.h:
20039         * gst/rtp/gstrtpmp4vdepay.c:
20040         * gst/rtp/gstrtpmp4vdepay.h:
20041         * gst/rtp/gstrtpmp4venc.c:
20042         * gst/rtp/gstrtpmp4venc.h:
20043         * gst/rtp/gstrtpmp4vpay.c:
20044         * gst/rtp/gstrtpmp4vpay.h:
20045         * gst/rtp/gstrtpmpadec.c:
20046         * gst/rtp/gstrtpmpadec.h:
20047         * gst/rtp/gstrtpmpadepay.c:
20048         * gst/rtp/gstrtpmpadepay.h:
20049         * gst/rtp/gstrtpmpaenc.c:
20050         * gst/rtp/gstrtpmpaenc.h:
20051         * gst/rtp/gstrtpmpapay.c:
20052         * gst/rtp/gstrtpmpapay.h:
20053         * gst/rtp/gstrtpspeexdec.c:
20054         * gst/rtp/gstrtpspeexdec.h:
20055         * gst/rtp/gstrtpspeexdepay.c:
20056         * gst/rtp/gstrtpspeexdepay.h:
20057         * gst/rtp/gstrtpspeexenc.c:
20058         * gst/rtp/gstrtpspeexenc.h:
20059         * gst/rtp/gstrtpspeexpay.c:
20060         * gst/rtp/gstrtpspeexpay.h:
20061           Do burger's rename for rtp payloaders and depayloaders
20062
20063 2005-11-30  Wim Taymans  <wim@fluendo.com>
20064
20065         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
20066         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
20067         * ext/dv/gstdvdemux.h:
20068         Fix seeking in dvdemux again, add some more debug info.
20069
20070 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20071
20072         * configure.ac:
20073           fix tests
20074
20075 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20076
20077         * PORTED_09:
20078         * docs/random/PORTED_09:
20079           move
20080         * tests/Makefile.am:
20081           add
20082         * win32/gst.sln:
20083           remove
20084
20085 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20086
20087         * Makefile.am:
20088         * check/.cvsignore:
20089         * check/Makefile.am:
20090         * check/elements/.cvsignore:
20091         * check/elements/level.c:
20092         * check/elements/matroskamux.c:
20093         * configure.ac:
20094         * examples/Makefile.am:
20095         * examples/capsfilter/Makefile.am:
20096         * examples/capsfilter/capsfilter1.c:
20097         * examples/gob/Makefile.am:
20098         * examples/gob/gst-identity2.gob:
20099         * examples/gstplay/.cvsignore:
20100         * examples/gstplay/Makefile.am:
20101         * examples/gstplay/player.c:
20102         * examples/indexing/.cvsignore:
20103         * examples/indexing/Makefile.am:
20104         * examples/indexing/indexmpeg.c:
20105         * examples/level/Makefile.am:
20106         * examples/level/README:
20107         * examples/level/demo.c:
20108         * examples/level/plot.c:
20109         * examples/stats/Makefile.am:
20110         * examples/stats/mp2ogg.c:
20111         * examples/switch/.cvsignore:
20112         * examples/switch/Makefile.am:
20113         * examples/switch/switcher.c:
20114           move under tests/
20115
20116 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20117
20118         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
20119         (gst_text_render_class_init), (resize_bitmap),
20120         (gst_text_render_render_text), (gst_text_render_setcaps),
20121         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
20122         (gst_text_render_chain), (gst_text_render_finalize),
20123         (gst_text_render_init), (gst_text_render_set_property):
20124         * ext/pango/gsttextrender.h:
20125           Add missing files.
20126
20127 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20128
20129         * configure.ac:
20130         * ext/Makefile.am:
20131         * ext/pango/Makefile.am:
20132         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
20133         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
20134         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
20135         * ext/pango/gstclockoverlay.h:
20136         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
20137         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
20138         (gst_text_overlay_finalize), (gst_text_overlay_init),
20139         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
20140         (gst_text_overlay_text_pad_linked),
20141         (gst_text_overlay_text_pad_unlinked),
20142         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
20143         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
20144         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
20145         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20146         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20147         (gst_text_overlay_change_state), (plugin_init):
20148         * ext/pango/gsttextoverlay.h:
20149         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
20150         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
20151         (gst_time_overlay_class_init), (gst_time_overlay_init):
20152         * ext/pango/gsttimeoverlay.h:
20153           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
20154           and add background shading and text wrapping modes. Make 
20155           timoverlay derive from textoverlay. Also add new clockoverlay
20156           element.
20157
20158 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20159
20160         * gst/udp/Makefile.am: Moved to netbuffer.
20161
20162 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20163
20164         * configure.ac:
20165         * PORTED_O9:
20166         * gst/multipart/Makefile.am:
20167         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
20168         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
20169         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
20170         (gst_multipart_demux_change_state),
20171         (gst_multipart_demux_plugin_init):
20172         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20173         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
20174         (gst_multipart_mux_sinkconnect),
20175         (gst_multipart_mux_request_new_pad),
20176         (gst_multipart_mux_handle_src_event),
20177         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20178         (gst_multipart_mux_change_state): Ported multipart mux/demux to
20179         0.9.
20180
20181 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20182
20183         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20184         * gst/debug/gstnavigationtest.h:
20185         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20186         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20187         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20188         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20189         * gst/effectv/gstrev.c: (gst_revtv_get_type):
20190         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20191         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20192         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20193         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20194         (gst_video_flip_get_type):
20195         * gst/videofilter/gstvideoflip.h:
20196           update for symbols change
20197
20198 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20199
20200         * gst/udp/gstdynudpsink.c:
20201         * gst/udp/gstudpsrc.c:
20202           the old gstnet lib was renamed gstnetbuffer (#322257)
20203
20204 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20205
20206         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20207         (gst_text_overlay_collected):
20208           Actually render the text from the text pad.
20209
20210 2005-11-29  Edward Hervey  <edward@fluendo.com>
20211
20212         * gst/debug/gstnavseek.c: (gst_navseek_event):
20213         * gst/debug/progressreport.c: (gst_progress_report_event):
20214         Update for GstBaseTransform event virtual method
20215
20216 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20217
20218         * ext/cairo/Makefile.am:
20219           no need to link to videofilter
20220
20221 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20222
20223         * gst/debug/Makefile.am:
20224         * gst/debug/gstnavigationtest.h:
20225         * gst/effectv/Makefile.am:
20226         * gst/effectv/gstaging.c:
20227         * gst/effectv/gstdice.c:
20228         * gst/effectv/gstedge.c:
20229         * gst/effectv/gstquark.c:
20230         * gst/effectv/gstrev.c:
20231         * gst/effectv/gstshagadelic.c:
20232         * gst/effectv/gstvertigo.c:
20233         * gst/effectv/gstwarp.c:
20234         * gst/videofilter/Makefile.am:
20235         * gst/videofilter/gstvideofilter.c:
20236         * gst/videofilter/gstvideofilter.h:
20237         * gst/videofilter/gstvideoflip.h:
20238           remove the videofilter library and link to the one in base
20239
20240 2005-11-28  Edward Hervey  <edward@fluendo.com>
20241
20242         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20243         Useless check now we're setting the current entry correctly.
20244
20245 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20246
20247         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20248         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20249         (gst_jpegenc_change_state):
20250           Don't leak input buffer in chain function (fixes #322667); make 
20251           state change function thread-safe; don't repeat the current function
20252           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20253           gst_pad_alloc_buffer(); misc. minor cleanups.
20254
20255 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20256
20257         * gst/matroska/matroska-mux.c:
20258         (gst_matroska_mux_video_pad_setcaps):
20259         Look for pixel-aspect-ratio in caps, not pixel_width and
20260         pixel_height (Fixes: #322645)
20261
20262 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20263
20264         * gst/matroska/matroska-mux.c:
20265         (gst_matroska_mux_video_pad_setcaps):
20266         From Michal Benes:
20267         frame duration should be GST_SECOND / framerate, not
20268         GST_SECOND * framerate. (Fixes: #322643)
20269
20270 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20271
20272         * configure.ac:
20273           fix up GST_PLUGIN_LDFLAGS
20274         * gst/rtsp/rtspconnection.c:
20275           fix includes (see #317043)
20276         * gst/videofilter/Makefile.am:
20277           stop installing this library
20278
20279 2005-11-26  Edward Hervey  <edward@fluendo.com>
20280
20281         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20282         Handle the case where the incoming Video dv stream doesn't have
20283         a pixel aspect ratio set.
20284
20285 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20286
20287         * docs/plugins/Makefile.am:
20288         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20289         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20290         * ext/flac/gstflacdec.c:
20291           document flacdec
20292
20293 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20294
20295         * docs/plugins/Makefile.am:
20296         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20297         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20298         * docs/plugins/inspect/plugin-autodetect.xml:
20299         * ext/cairo/gstcairo.c: (plugin_init):
20300         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20301         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20302         (gst_text_overlay_init), (gst_text_overlay_font_init),
20303         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20304         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20305         (gst_text_overlay_text_pad_linked),
20306         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20307         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20308         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20309         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20310         (gst_text_overlay_change_state):
20311         * ext/cairo/gsttextoverlay.h:
20312         * ext/cairo/gsttimeoverlay.c:
20313         (gst_cairo_time_overlay_update_font_height),
20314         (gst_cairo_time_overlay_set_caps),
20315         (gst_cairo_time_overlay_get_unit_size),
20316         (gst_cairo_time_overlay_print_smpte_time),
20317         (gst_cairo_time_overlay_transform),
20318         (gst_cairo_time_overlay_base_init),
20319         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20320         (gst_cairo_time_overlay_get_type):
20321         * ext/cairo/gsttimeoverlay.h:
20322           do some name borgifying
20323           document
20324
20325 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20326
20327         * docs/plugins/Makefile.am:
20328         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20329         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20330         * gst/autodetect/gstautoaudiosink.c:
20331         (gst_auto_audio_sink_base_init):
20332         * gst/autodetect/gstautovideosink.c:
20333         (gst_auto_video_sink_base_init),
20334         (gst_auto_video_sink_factory_filter):
20335           documenting auto*sink
20336           using strstr for the video sink lookup, class field is not ordered
20337         * docs/plugins/inspect/plugin-1394.xml:
20338         * docs/plugins/inspect/plugin-aasink.xml:
20339         * docs/plugins/inspect/plugin-alaw.xml:
20340         * docs/plugins/inspect/plugin-alpha.xml:
20341         * docs/plugins/inspect/plugin-alphacolor.xml:
20342         * docs/plugins/inspect/plugin-auparse.xml:
20343         * docs/plugins/inspect/plugin-autodetect.xml:
20344         * docs/plugins/inspect/plugin-avi.xml:
20345         * docs/plugins/inspect/plugin-cacasink.xml:
20346         * docs/plugins/inspect/plugin-cairo.xml:
20347         * docs/plugins/inspect/plugin-cutter.xml:
20348         * docs/plugins/inspect/plugin-debug.xml:
20349         * docs/plugins/inspect/plugin-dv.xml:
20350         * docs/plugins/inspect/plugin-efence.xml:
20351         * docs/plugins/inspect/plugin-effectv.xml:
20352         * docs/plugins/inspect/plugin-esdsink.xml:
20353         * docs/plugins/inspect/plugin-flac.xml:
20354         * docs/plugins/inspect/plugin-flxdec.xml:
20355         * docs/plugins/inspect/plugin-gconfelements.xml:
20356         * docs/plugins/inspect/plugin-goom.xml:
20357         * docs/plugins/inspect/plugin-jpeg.xml:
20358         * docs/plugins/inspect/plugin-level.xml:
20359         * docs/plugins/inspect/plugin-matroska.xml:
20360         * docs/plugins/inspect/plugin-mulaw.xml:
20361         * docs/plugins/inspect/plugin-navigationtest.xml:
20362         * docs/plugins/inspect/plugin-ossaudio.xml:
20363         * docs/plugins/inspect/plugin-png.xml:
20364         * docs/plugins/inspect/plugin-rtp.xml:
20365         * docs/plugins/inspect/plugin-rtsp.xml:
20366         * docs/plugins/inspect/plugin-shout2send.xml:
20367         * docs/plugins/inspect/plugin-smpte.xml:
20368         * docs/plugins/inspect/plugin-speex.xml:
20369         * docs/plugins/inspect/plugin-udp.xml:
20370         * docs/plugins/inspect/plugin-videobox.xml:
20371         * docs/plugins/inspect/plugin-videoflip.xml:
20372         * docs/plugins/inspect/plugin-videomixer.xml:
20373         * docs/plugins/inspect/plugin-wavenc.xml:
20374         * docs/plugins/inspect/plugin-wavparse.xml:
20375           update for HEAD version
20376
20377 2005-11-25  Michael Smith  <msmith@fluendo.com>
20378
20379         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20380           Patch from Sebastien Cote to close control sockets in udpsrc.
20381
20382 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20383
20384         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20385         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20386         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20387         (gst_quarktv_base_init), (gst_quarktv_class_init),
20388         (gst_quarktv_init): Flush the planes list on reverse caps
20389         negotiation. This was crashing because of differently sized
20390         buffers.
20391
20392 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20393
20394         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20395         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20396         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20397         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20398         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20399         (gst_videoflip_set_property), (gst_videoflip_base_init),
20400         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20401         correctly, fix identity flipping, convert navigation event 
20402         correctly again.
20403
20404 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20405
20406         * configure.ac: back to HEAD
20407
20408 === release 0.9.6 ===
20409
20410 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20411
20412         * configure.ac:
20413           releasing 0.9.6, "Everything's Not Lost"
20414
20415 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20416
20417         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20418         Oops, initialise the framerate GValue
20419
20420 2005-11-23  Julien MOUTTE  <julien@moutte.net>
20421
20422         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20423         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20424         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20425         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20426         (gst_timeoverlay_get_type):
20427         * ext/cairo/gsttimeoverlay.h:
20428         * gst/debug/Makefile.am:
20429         * gst/debug/gstnavigationtest.c:
20430         (gst_navigationtest_handle_src_event),
20431         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20432         (gst_navigationtest_transform), (gst_navigationtest_change_state),
20433         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20434         (gst_navigationtest_init), (gst_navigationtest_get_type),
20435         (plugin_init):
20436         * gst/debug/gstnavigationtest.h:
20437         * gst/effectv/Makefile.am:
20438         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20439         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20440         (gst_agingtv_base_init), (gst_agingtv_class_init),
20441         (gst_agingtv_init), (gst_agingtv_get_type):
20442         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20443         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20444         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20445         (gst_dicetv_get_type):
20446         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20447         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20448         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20449         (gst_edgetv_get_type):
20450         * gst/effectv/gsteffectv.c:
20451         * gst/effectv/gsteffectv.h:
20452         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20453         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20454         (gst_quarktv_change_state), (gst_quarktv_base_init),
20455         (gst_quarktv_class_init), (gst_quarktv_init),
20456         (gst_quarktv_get_type):
20457         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20458         (gst_revtv_get_unit_size), (gst_revtv_transform),
20459         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20460         (gst_revtv_get_type):
20461         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20462         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20463         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20464         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20465         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20466         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20467         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20468         (gst_vertigotv_init), (gst_vertigotv_get_type):
20469         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20470         (gst_warptv_get_unit_size), (gst_warptv_transform),
20471         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20472         (gst_warptv_get_type):
20473         * gst/videofilter/Makefile.am:
20474         * gst/videofilter/gstvideobalance.c:
20475         * gst/videofilter/gstvideobalance.h:
20476         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20477         (gst_videofilter_class_init), (gst_videofilter_init):
20478         * gst/videofilter/gstvideofilter.h:
20479         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20480         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20481         (gst_videoflip_flip), (gst_videoflip_transform),
20482         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20483         (gst_videoflip_base_init), (gst_videoflip_class_init),
20484         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20485         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20486         BaseTransform, it's just a place holder for now and every video
20487         effect plugin has been ported to use BaseTransform features 
20488         directly. QuarkTV was fixed too (was broken), navigationtest works
20489         and best for the end, videoflip converts navigation events depending
20490         on flip method ! Fixes #320953
20491
20492 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20493
20494         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20495         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20496         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20497         (gst_goom_src_negotiate), (gst_goom_chain):
20498         * gst/matroska/matroska-mux.c:
20499         (gst_matroska_mux_video_pad_setcaps):
20500         * sys/osxvideo/osxvideosink.m:
20501           Fixes for API changes
20502
20503 2005-11-23  Michael Smith <msmith@fluendo.com>
20504
20505         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20506         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20507         * ext/jpeg/gstjpegdec.h:
20508         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20509         * ext/jpeg/gstjpegenc.h:
20510         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20511         (gst_smokeenc_resync):
20512         * ext/jpeg/gstsmokeenc.h:
20513           JPEG fractiony goodness.
20514
20515 2005-11-22  Michael Smith <msmith@fluendo.com>
20516
20517         * gst/goom/filters.c:
20518         * gst/goom/graphic.h:
20519           Fix compilation by making some functions static inline instead of
20520           extern inline, matching the way they're used.
20521
20522 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20523
20524         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20525         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20526         * ext/cairo/gsttextoverlay.h:
20527         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20528         * ext/gdk_pixbuf/gstgdkpixbuf.h:
20529         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20530         (gst_pngdec_caps_create_and_set):
20531         * ext/libpng/gstpngdec.h:
20532         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20533         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20534         * gst/avi/gstavimux.c: (gst_avimux_init),
20535         (gst_avimux_vidsinkconnect):
20536         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20537         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20538         (gst_goom_src_negotiate), (gst_goom_chain):
20539         * gst/goom/gstgoom.h:
20540         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20541         * gst/matroska/matroska-mux.c:
20542         (gst_matroska_mux_video_pad_setcaps):
20543         * sys/osxvideo/osxvideosink.h:
20544         * sys/osxvideo/osxvideosink.m:
20545           More fractional framerate conversions 
20546
20547 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20548
20549         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20550         * gst/debug/gstnavigationtest.c:
20551         (gst_navigationtest_handle_src_event):
20552         * gst/videofilter/gstvideofilter.c:
20553         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20554         (gst_videofilter_init):
20555         * gst/videofilter/gstvideofilter.h:
20556           Convert to fractional framerates.
20557
20558 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20559
20560         * ext/aalib/gstaasink.c:
20561         * ext/dv/gstdvdec.c:
20562         * ext/esd/esdmon.c:
20563         * ext/flac/gstflacenc.c:
20564         * ext/gdk_pixbuf/pixbufscale.c:
20565         * ext/libcaca/gstcacasink.c:
20566         * ext/shout2/gstshout2.c:
20567         * gst/alpha/gstalpha.c:
20568         * gst/oldcore/gstaggregator.c:
20569         * gst/oldcore/gstshaper.c:
20570         * gst/smpte/barboxwipes.c:
20571         * gst/smpte/gstsmpte.c:
20572         * gst/videobox/gstvideobox.c:
20573         * gst/videofilter/gstvideoflip.c:
20574         * gst/videomixer/videomixer.c:
20575           fix up more enums
20576
20577 2005-11-22  Michael Smith <msmith@fluendo.com>
20578
20579         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20580         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20581         (gst_videomixer_update_queues):
20582           Fractional framerates, videomixer.
20583
20584 2005-11-22  Michael Smith <msmith@fluendo.com>
20585
20586         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20587         * ext/dv/gstdvdec.h:
20588         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20589         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20590         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20591         (gst_dvdemux_flush):
20592         * ext/dv/gstdvdemux.h:
20593           Fractional framerates for DV. 
20594
20595 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20596
20597         * gst/autodetect/gstautoaudiosink.c:
20598         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20599         * gst/autodetect/gstautovideosink.c:
20600         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20601           Use gst_plugin_feature_list_free() to free feature list and
20602           in the case of autovideosink free the list at all. Also
20603           miscellaneous cosmetic fixes.
20604
20605 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20606
20607         * gst/cutter/gstcutter.c: (gst_cutter_chain),
20608         (gst_cutter_set_property), (gst_cutter_get_caps):
20609           copy calculation code from level; remove use of some audio
20610           functions
20611
20612 2005-11-22  Andy Wingo  <wingo@pobox.com>
20613
20614         * Update for gst_tag_setter API changes.
20615
20616 2005-11-22  Andy Wingo  <wingo@pobox.com>
20617
20618         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20619         (gst_dvdemux_demux_frame)
20620         * ext/flac/gstflacdec.c (gst_flacdec_write)
20621         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20622         (gst_flacenc_sink_event)
20623         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20624         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20625         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20626         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20627         * gst/auparse/gstauparse.c (gst_auparse_chain)
20628         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20629         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20630         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20631         (gst_avi_demux_handle_seek)
20632         * gst/goom/gstgoom.c (gst_goom_event)
20633         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20634         * gst/matroska/matroska-demux.c
20635         (gst_matroska_demux_handle_seek_event)
20636         (gst_matroska_demux_loop_stream_parse_id)
20637         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20638         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20639         (gst_wavparse_stream_headers): Run update-funcnames.
20640
20641 2005-11-22  Edward Hervey  <edward@fluendo.com>
20642
20643         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20644         (gst_dv1394src_init), (gst_dv1394src_dispose),
20645         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20646         (gst_dv1394src_uri_set_uri):
20647         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20648         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20649         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20650         URIHandler interface and element properties are now properly
20651         synchronized for DV1394src and UDPSrc
20652
20653 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20654
20655         * ext/flac/Makefile.am:
20656         * ext/speex/Makefile.am:
20657           libgsttagedit has been renamed to libgsttag.
20658
20659 2005-11-21  Wim Taymans  <wim@fluendo.com>
20660
20661         * gst/rtsp/rtspconnection.c: (read_body):
20662         Apply patch from Sebastien Cote to fix #319184.
20663
20664 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20665
20666         * configure.ac:
20667         * gst/cutter/Makefile.am:
20668         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20669         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20670         (gst_cutter_set_property), (gst_cutter_get_property),
20671         (plugin_init), (gst_cutter_get_caps):
20672           port cutter
20673         * gst/level/gstlevel.c:
20674           fix up plugin details
20675
20676 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20677
20678         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20679         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20680         (gst_flacdec_src_event):
20681         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20682         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20683         (gst_signal_processor_getrange), (gst_signal_processor_chain):
20684         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20685         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20686         (gst_flxdec_sink_event_handler):
20687         * gst/matroska/matroska-demux.c:
20688         (gst_matroska_demux_handle_seek_event):
20689         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20690           Update for stream lock API changes: don't take stream log
20691           in sink event handlers any longer and change GST_STREAM_LOCK
20692           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20693           functions.
20694
20695 2005-11-21  Michael Smith <msmith@fluendo.com>
20696
20697         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20698           gst_object_unref, not g_object_unref
20699
20700 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20701
20702         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20703         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20704           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20705
20706 2005-11-21  Michael Smith <msmith@fluendo.com>
20707
20708         * gst/auparse/Makefile.am:
20709         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20710         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20711         (gst_auparse_change_state):
20712         * gst/auparse/gstauparse.h:
20713           Partially fix #161712. playbin still doesn't work on these files,
20714           (on the bug report, Andy says we aren't typefinding it for some
20715           reason?) but at least auparse isn't totally busted like it was before.
20716
20717 2005-11-21  Andy Wingo  <wingo@pobox.com>
20718
20719         * *.h:
20720         * *.c: Ran scripts/update-macros. Oh yes.
20721
20722 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20723
20724         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20725           Filler events are gone for now, comment out section generating
20726           them.
20727
20728 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20729
20730         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20731         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20732         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20733         * sys/osxvideo/osxvideosink.m:
20734           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20735           (#322027)
20736
20737 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20738
20739         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20740         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20741         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20742         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20743         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20744         (gst_avi_demux_stream_data):
20745         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20746         * gst/wavenc/gstwavenc.c: (write_metadata):
20747         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20748         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20749         Fixes for GST_FOURCC_FORMAT API change.
20750
20751 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20752
20753         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20754         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20755         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20756         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20757         (gst_text_overlay_change_state):
20758         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20759         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20760         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20761         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20762         * gst/videomixer/videomixer.c: (gst_videomixer_init),
20763         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20764         (gst_videomixer_change_state):
20765           Fix for collect pads API change. Also fix textoverlay state
20766           change function.
20767
20768 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20769
20770         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20771         GST_PAD_IS_USABLE by something approaching it.
20772
20773 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20774
20775         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20776         API changes.
20777         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20778         but also fix the code that was not checking return values from
20779         pad_push neither using pad_alloc_buffer.
20780
20781 2005-11-18  Edward Hervey  <edward@fluendo.com>
20782
20783         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20784         (gst_pngenc_chain):
20785         Added debug category
20786         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20787         goes to EOS.
20788
20789 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
20790
20791         * gst/rtp/Makefile.am
20792         * gst/rtp/gstrtp.c
20793         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20794         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20795         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20796         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20797         * gst/rtp/gstrtpg711enc.h:
20798         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20799         * gst/rtp/gstrtpspeexenc.c:
20800         * gst/rtp/gstrtpspeexenc.h:
20801         * gst/rtp/gstrtpspeexdec.c:
20802         * gst/rtp/gstrtpspeexdec.h:
20803         Created Speex payloader and depayloader; Optimize G711 payloader to
20804         use adapter and send packets until MTU size.
20805
20806 2005-11-16  Wim Taymans  <wim@fluendo.com>
20807
20808         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20809         Fix leak in check.
20810
20811 2005-11-16  Wim Taymans  <wim@fluendo.com>
20812
20813         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20814         Fix state change.
20815
20816 2005-11-16  Andy Wingo  <wingo@pobox.com>
20817
20818         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20819         (gst_udpsrc_create): Move comment.
20820
20821 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
20822
20823         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20824
20825         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20826           When seeking, seek to closest index entry at or before the requested
20827           seek position, not just the closest one (#321001).
20828
20829 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20830
20831         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20832         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20833           Invert DIB images again (see #132341).
20834
20835 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20836
20837         * configure.ac:
20838           rework configure.ac file
20839         * ext/aalib/gstaasink.c:
20840         * ext/cairo/gstcairo.c:
20841         * ext/dv/gstdv.c:
20842         * ext/esd/gstesd.c:
20843         * ext/flac/gstflac.c:
20844         * ext/gconf/gstgconfelements.c:
20845         * ext/gdk_pixbuf/gstgdkpixbuf.c:
20846         * ext/jpeg/gstjpeg.c:
20847         * ext/ladspa/gstladspa.c:
20848         * ext/libcaca/gstcacasink.c:
20849         * ext/libmng/gstmng.c:
20850         * ext/libpng/gstpng.c:
20851         * ext/mikmod/gstmikmod.c:
20852         * ext/pango/gsttextoverlay.c:
20853         * ext/pango/gsttimeoverlay.c:
20854         * ext/raw1394/gst1394.c:
20855         * ext/speex/gstspeex.c:
20856         * gst/alpha/Makefile.am:
20857         * gst/alpha/gstalpha.c:
20858         * gst/alpha/gstalphacolor.c:
20859         * gst/auparse/gstauparse.c:
20860         * gst/autodetect/gstautoaudiosink.c:
20861         (gst_auto_audio_sink_factory_filter),
20862         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20863         * gst/autodetect/gstautodetect.c:
20864         * gst/avi/gstavi.c:
20865         * gst/cutter/gstcutter.c:
20866         * gst/debug/efence.c:
20867         * gst/debug/gstdebug.c:
20868         * gst/debug/gstnavigationtest.c:
20869         * gst/effectv/gsteffectv.c:
20870         * gst/flx/gstflxdec.c:
20871         * gst/goom/gstgoom.c:
20872         * gst/interleave/plugin.c:
20873         * gst/law/alaw.c:
20874         * gst/law/mulaw.c:
20875         * gst/level/gstlevel.c:
20876         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20877         * gst/matroska/matroska.c:
20878         * gst/median/gstmedian.c:
20879         * gst/monoscope/gstmonoscope.c:
20880         * gst/multipart/multipart.c:
20881         * gst/oldcore/gstelements.c:
20882         * gst/rtp/gstrtp.c:
20883         * gst/rtsp/gstrtsp.c:
20884         * gst/smoothwave/gstsmoothwave.c:
20885         * gst/smpte/gstsmpte.c:
20886         * gst/udp/gstudp.c:
20887         * gst/videobox/gstvideobox.c:
20888         * gst/videofilter/gstgamma.c:
20889         * gst/videofilter/gstvideobalance.c:
20890         * gst/videofilter/gstvideoflip.c:
20891         * gst/videofilter/gstvideotemplate.c:
20892         * gst/videomixer/videomixer.c:
20893         * gst/wavenc/gstwavenc.c:
20894         * gst/wavparse/gstwavparse.c:
20895         * sys/oss/gstossaudio.c:
20896         * sys/osxaudio/gstosxaudio.c:
20897           update GST_PLUGIN_DEFINE
20898         * gst/rtp/Makefile.am:
20899         * gst/rtp/gstasteriskh263.c:
20900           check for htons/htonl headers and possibly link to winsock2 lib
20901
20902 2005-11-12  Edward Hervey  <edward@fluendo.com>
20903
20904         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
20905         Only GST_DEBUG() information on the valid components.
20906
20907 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20908
20909         * configure.ac: back to HEAD
20910
20911 === release 0.9.5 ===
20912
20913 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20914
20915         * configure.ac:
20916           releasing 0.9.5, "Phone Alarm"
20917
20918 2005-11-11  Edward Hervey  <edward@fluendo.com>
20919
20920         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20921         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20922         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20923         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20924         (gst_avi_demux_loop):
20925         * gst/avi/gstavidemux.h:
20926         Yeah, implement proper seeking. Exact seeking and segment seeking.
20927         Still need to do some checks for segment_stop.
20928
20929 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20930
20931         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20932
20933         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20934           Don't try to ready buffer duration from buffer that we don't
20935           own any  longer and that might already have been unreffed.
20936           (#321136)
20937
20938 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
20939
20940         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20941         (flx_decode_delta_flc), (gst_flxdec_chain):
20942         Attempting to optimize the code for embedded systems.
20943
20944 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
20945
20946         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20947
20948         * sys/oss/gstosssink.c: (gst_oss_sink_close):
20949           Don't re-use already closed file descriptor. (#320920)
20950
20951 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20952
20953         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20954         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20955         (gst_oss_sink_prepare):
20956         * sys/oss/gstosssink.h:
20957           Cache probed caps; fix debug output for SET_PARAM macros.
20958
20959 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20960
20961         * ext/cairo/Makefile.am:
20962         * ext/cairo/gstcairo.c: (plugin_init):
20963         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20964         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20965         (gst_text_overlay_init), (gst_text_overlay_font_init),
20966         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20967         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20968         (gst_text_overlay_text_pad_linked),
20969         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20970         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20971         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20972         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20973         (gst_text_overlay_change_state):
20974         * ext/cairo/gsttextoverlay.h:
20975           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20976           property and redo positioning. Doesn't handle upstream renegotiation
20977           yet though.
20978
20979 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20980
20981         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20982         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20983         (gst_avi_demux_loop):
20984           No need to take the STREAM_LOCK in the loop function. Improve
20985           some debug messages. Don't leak pad names in debug messages.
20986
20987 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20988
20989         * gst/matroska/matroska-demux.c:
20990         (gst_matroska_demux_push_vorbis_codec_priv_data),
20991         (gst_matroska_demux_add_wvpk_header):
20992           Don't error out when the source pad isn't linked.
20993
20994 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
20995
20996         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
20997         (gst_gconf_audio_sink_change_state):
20998         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
20999         (gst_gconf_video_sink_change_state):
21000           Fix state change functions here as well and set kid
21001           to NULL state before removing it.
21002
21003 2005-11-01  Edward Hervey  <edward@fluendo.com>
21004
21005         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
21006         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
21007         Added proper event handlind, 
21008         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
21009         ignored),
21010         and don't set a duration of 0 for buffers otherwise they are discarded
21011         by GstBaseSink.
21012
21013         GstWavEnc needs some serious loving, after going through the code I'm
21014         really wondering how this can stay in -good ...
21015
21016 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21017
21018         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
21019         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
21020         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
21021         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
21022         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
21023         (gst_matroska_mux_collected):
21024           Fix leaks and invalid memory access as reported by valgrind
21025
21026 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21027
21028         Patch by: Michal Benes <michal.benes@xeris.cz>
21029
21030         * check/Makefile.am:
21031         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
21032         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
21033         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21034           add a unit test for matroskamux
21035           fix the bugs that the unit test exposed
21036
21037 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
21038
21039         * gst/autodetect/gstautoaudiosink.c:
21040         (gst_auto_audio_sink_class_init),
21041         (gst_auto_audio_sink_change_state):
21042         * gst/autodetect/gstautovideosink.c:
21043         (gst_auto_video_sink_class_init),
21044         (gst_auto_video_sink_change_state):
21045           Fix state change function and use GST_DEBUG_FUNCPTR in
21046           class_init.
21047
21048 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
21049
21050         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21051
21052         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
21053         (gst_ebml_write_reset), (gst_ebml_write_element_new):
21054         * gst/matroska/ebml-write.h:
21055         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
21056           Set timestamps on outgoing ebml headers as well, so that the
21057           element after matroskamux can get the timestamp already when
21058           reading the first ebml element and doesn't have to wait for
21059           the actual data buffer for that (#320308).
21060           
21061 2005-10-31  Andy Wingo  <wingo@pobox.com>
21062
21063         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
21064         (gst_videomixer_pad_link): Kill some memleaks.
21065         (gst_videomixer_pad_get_property): Style fix.
21066         (gst_videomixer_pad_set_property): Style fix.
21067         (gst_videomixer_pad_init): Style fix.
21068         (gst_videomixer_update_queues): Kill memleak.
21069         (gst_videomixer_loop): Kill memleak.
21070         (gst_videomixer_collected): Kill memleak.
21071
21072 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21073
21074         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
21075         gst_auparse_change_state:
21076         Just some cleanup.
21077
21078 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21079
21080         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
21081         Add checks to GST_FLOW_NOT_LINKED for values returned
21082         from gst_pad_push.
21083         
21084 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21085
21086         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
21087         (gst_rtpg711dec_process):
21088         * gst/rtp/gstrtpgsmenc.c:
21089         Payloader now sets some default caps on the srcpad if caps on the sinkpad
21090         are never set. This is important for the g711 to work with burger's rtpbin
21091         element.
21092
21093 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
21094
21095         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
21096         (gst_speexenc_push_buffer):
21097         Add checks for return values from gst_pad_push and
21098         gst_pad_alloc_buffer.
21099
21100 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
21101
21102         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21103
21104         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21105         (gst_matroska_demux_parse_info),
21106         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
21107         (gst_matroska_demux_parse_cluster):
21108         * gst/matroska/matroska-ids.h:
21109         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
21110         (gst_matroska_mux_init), (gst_matroska_mux_start),
21111         (gst_matroska_mux_create_buffer_header),
21112         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
21113         (gst_matroska_mux_get_property):
21114         * gst/matroska/matroska-mux.h:
21115           Add SimpleBlock support to matroska demuxer and muxer (part of
21116           Matroska v2). (#319731)
21117
21118 2005-10-28  Wim Taymans  <wim@fluendo.com>
21119
21120         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
21121         (gst_jpeg_dec_change_state):
21122         * ext/jpeg/gstjpegdec.h:
21123         Cleanups. Don't create caps for every chain.
21124
21125 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
21126
21127         * gst/law/alaw-encode.c: (gst_alawenc_init),
21128         (alawenc_setcaps), (gst_alawenc_chain)
21129         * gst/law/alaw-encode.h:
21130         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
21131         (mulawenc_setcaps), (gst_mulawenc_chain)
21132         * gst/law/mulaw-encode.h:
21133         Set timestamp on buffer and it allows RTP G711 elements
21134         work properly.
21135
21136 2005-10-27  Wim Taymans  <wim@fluendo.com>
21137
21138         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21139         Set correct format on oss instead of a silly value. 
21140
21141 2005-10-27  Julien MOUTTE  <julien@moutte.net>
21142
21143         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21144         (gst_video_box_transform_caps), (gst_video_box_set_caps),
21145         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
21146         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
21147         I420 rendering as well, doesn't bring much for my platform.
21148         Might help on some other platforms.
21149
21150 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21151
21152         * gst/rtp/gstrtpgsmenc.c:
21153         * gst/rtp/gstrtpgsmparse.c:
21154         Declaring the padtemplate correctly.
21155
21156 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21157
21158         * gst/rtp/gstrtpg711dec.c:
21159         * gst/rtp/gstrtpg711enc.c:
21160         * gst/rtp/gstrtpgsmenc.c:
21161         * gst/rtp/gstrtpgsmparse.c:
21162         Setting the proper copyright notice.
21163
21164 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21165
21166         * gst/videobox/Makefile.am: Use liboil.
21167         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21168         (gst_video_box_set_property), (gst_video_box_transform_caps),
21169         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
21170         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
21171         using liboil. Will dot the same to I420 border generation
21172         tomorrow.
21173
21174 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21175
21176         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
21177         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21178         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21179         * gst/rtp/gstrtpg711dec.h:
21180         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21181         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21182         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21183         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21184         (gst_rtpgsmenc_handle_buffer):
21185         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21186         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21187         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21188         * gst/rtp/gstrtpgsmparse.h:
21189         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21190         inherits from the basertpdepayloader.
21191
21192 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21193
21194         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21195         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21196         (gst_video_box_ayuv): Removing this forgotten debug.
21197
21198 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21199
21200         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21201         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21202         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21203
21204 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21205
21206         * sys/oss/gstossaudio.c:
21207         * sys/oss/gstossdmabuffer.c:
21208         * sys/oss/gstosshelper.c:
21209         * sys/oss/gstossmixer.c:
21210         * sys/oss/gstossmixerelement.c:
21211         * sys/oss/gstossmixertrack.c:
21212         * sys/oss/gstosssink.c:
21213         * sys/oss/gstosssrc.c:
21214           Actually use the 'oss' debug category we register.
21215
21216 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21217
21218         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21219         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21220         Use gst_pad_get_parent and drop the ref that was added through
21221         that call.
21222
21223 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21224
21225         * gst/rtp/gstrtpgsmenc.c:
21226           Fix compilation
21227
21228 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21229
21230         * gst/rtp/gstrtpg711dec.c
21231         Just removed a couple of lines of weird code used during
21232         development/test time.
21233
21234 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21235
21236         * gst/rtp/Makefile.am
21237         * gst/rtp/gstrtp.c
21238         * gst/rtp/gstrtpg711enc.c
21239         * gst/rtp/gstrtpg711enc.h
21240         * gst/rtp/gstrtpg711dec.c
21241         * gst/rtp/gstrtpg711dec.h
21242         Created G711 payloader and depayloader (it supports mulaw and alaw
21243         (dec)encoders)
21244
21245 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21246
21247         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21248         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21249         Doh ! I introduced wingo's bug again ! Sorry...
21250
21251 2005-10-25  Christian Schaller <christian@fluendo.com> 
21252
21253         * gst/rtp/Makefile.am: add missing header files for disting
21254
21255 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21256
21257         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21258         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21259         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21260         (gst_rtpgsmenc_handle_buffer):
21261         * gst/rtp/gstrtpgsmenc.h:
21262         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21263         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21264         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21265         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21266         * gst/rtp/gstrtpgsmparse.h:
21267         Getting the GSM (de)payloader working and compatible with our plans for RTP.
21268
21269 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21270
21271         * ext/libpng/gstpngdec.c: (user_info_callback),
21272         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21273         a newsegment event, move some redundant code in a single place.
21274
21275 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21276
21277         * ext/libpng/gstpngdec.c: (user_info_callback),
21278         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21279         hack to get correct colors order when we have a png image with
21280         alpha channel.
21281
21282 2005-10-24  Edward Hervey  <edward@fluendo.com>
21283
21284         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
21285         Call gst_element_no_more_pads when there will be no more pads.
21286
21287 2005-10-24  Wim Taymans  <wim@fluendo.com>
21288
21289         * gst/rtp/Makefile.am:
21290         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21291         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21292         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21293         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21294         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21295         (gst_asteriskh263_plugin_init):
21296         * gst/rtp/gstasteriskh263.h:
21297         * gst/rtp/gstrtp.c: (plugin_init):
21298         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21299         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21300         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21301         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21302         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21303         (gst_rtph263enc_plugin_init):
21304         * gst/rtp/gstrtph263enc.h:
21305         Added two new payloaders, an RFC 2190 payloader for h263 and
21306         a payload convertor for an asterisk server.
21307
21308 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21309
21310         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21311           Set bytes_per_sample correctly (is not always 4, but 
21312           depends on width and number of channels).
21313
21314 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21315
21316         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21317         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21318         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21319         (gst_flacenc_sink_event), (gst_flacenc_chain),
21320         (gst_flacenc_set_property), (gst_flacenc_get_property),
21321         (gst_flacenc_change_state):
21322         * ext/flac/gstflacenc.h:
21323           Fix seeking, so that flacenc can rewrite the header with the
21324           correct duration and amount of samples and all that at EOS;
21325           also set timestamps and granulepos on outgoing buffers; add
21326           debug category; fix state change function.
21327           
21328 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21329
21330         * gst/videomixer/videomixer.c: Don't restrict video geometry
21331         from 16 to 4096.
21332
21333 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21334
21335         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21336         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21337         Fix caps negotiation correctly, add debugging category.
21338
21339 2005-10-24  Christian Schaller  <christian@fluendo.com>
21340
21341         * configure.ac: Port over Thomas's change from base listing all plugins
21342
21343 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21344
21345         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21346         a sink pad.
21347
21348 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21349
21350         * configure.ac:
21351         * docs/upload.mak:
21352           back to HEAD
21353
21354 === release 0.9.4 ===
21355
21356 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21357
21358         * configure.ac:
21359           Releasing 0.9.4, "Dromiceiomimus"
21360
21361 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
21362
21363         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21364         (gst_speexenc_src_query):
21365           Add position and duration query, fix query type function.
21366           
21367         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21368         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21369           Let's not set non-fixed caps on source pads.
21370
21371 2005-10-21  Wim Taymans  <wim@fluendo.com>
21372
21373         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21374         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21375         (gst_avi_demux_handle_seek):
21376         Set correct stream_time in newsegment event.
21377         avi can also handle a duration query now.
21378
21379 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21380
21381         * gst/matroska/matroska-demux.c:
21382         (gst_matroska_demux_handle_src_query),
21383         (gst_matroska_demux_handle_seek_event),
21384         (gst_matroska_demux_loop_stream_parse_id):
21385           Fix duration query; fix basetime in newsegment event after
21386           seek; fix duration in initial newsegment event.
21387
21388         * gst/matroska/matroska-mux.c:
21389         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21390           Extract number of channels and samplerate from vorbis headers;
21391           add some debug messages when querying the durations of the
21392           input streams.
21393
21394 2005-10-20  Wim Taymans  <wim@fluendo.com>
21395
21396         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21397         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21398         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21399         Set stream time correctly in newsegment.
21400
21401 2005-10-20  Wim Taymans  <wim@fluendo.com>
21402
21403         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21404         Correctly fill in the stream time.
21405
21406 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21407
21408         * check/elements/level.c: (GST_START_TEST):
21409         * gst/level/gstlevel.c: (gst_level_message_new):
21410         * gst/level/level-example.c: (message_handler):
21411           use ELEMENT messages instead
21412
21413 2005-10-19  Wim Taymans  <wim@fluendo.com>
21414
21415         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21416         (gst_dvdemux_src_query):
21417         * ext/flac/gstflacdec.c: (gst_flacdec_length),
21418         (gst_flacdec_src_query):
21419         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21420         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21421         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21422         * gst/debug/gstnavseek.c: (gst_navseek_seek):
21423         * gst/debug/progressreport.c: (gst_progress_report_report):
21424         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21425         * gst/matroska/matroska-demux.c:
21426         (gst_matroska_demux_handle_src_query):
21427         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21428         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21429         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21430         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21431         (gst_wavparse_srcpad_event):
21432         API change fix.
21433
21434 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21435
21436         * gst/goom/filters.c:
21437         * gst/goom/graphic.h:
21438         * gst/goom/lines.c:
21439           Make inline functions either 'static inline' or 'extern inline',
21440           otherwise the Forte compiler apparently won't inline them (#317300).
21441
21442 2005-10-19  Julien MOUTTE  <julien@moutte.net>
21443
21444         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21445         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21446         (user_info_callback), (user_endrow_callback), (user_end_callback),
21447         (user_read_data), (gst_pngdec_caps_create_and_set),
21448         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21449         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21450         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21451         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21452         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21453         very nice and handle push/pull based model. if you have filesrc
21454         connected to it, it will do random access to load the png file.
21455         If you have a network source that can't do _getrange, it does 
21456         progressive loading through the chain function.
21457         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21458         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21459         thanks to Master Wim Taymans ;-)
21460
21461 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
21462
21463         * gst/matroska/Makefile.am:
21464         * gst/matroska/ebml-read.c:
21465         * gst/matroska/ebml-read.h:
21466         * gst/matroska/matroska-demux.c:
21467         * gst/matroska/matroska-demux.h:
21468         * gst/matroska/matroska.c: (plugin_init):
21469           Ported matroska demuxer to 0.9.
21470
21471 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
21472
21473         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21474
21475         * gst/matroska/matroska-mux.c:
21476         (gst_matroska_mux_video_pad_setcaps),
21477         (gst_matroska_mux_audio_pad_setcaps):
21478           Fix mpeg4 input handling (#318847); also, while we're at it,
21479           fix media type for Motion-JPEG: should be image/jpeg.
21480
21481 2005-10-18  Wim Taymans  <wim@fluendo.com>
21482
21483         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21484         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21485         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21486         Fix for segment-start/stop API change.
21487
21488 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21489
21490         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21491         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21492         way.
21493
21494 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21495
21496         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21497         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21498         output declared in transform_caps.
21499
21500 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21501
21502         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21503
21504 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21505
21506         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21507         (gst_video_box_get_unit_size): Fix wrong size calculations and
21508         implement get_unit_size correctly.
21509
21510 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
21511
21512         * configure.ac:
21513           Enable flx plugin.
21514
21515         * gst/flx/gstflxdec.c: (flx_decode_chunks):
21516           Fix gcc4 signedness issue.
21517
21518 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21519
21520         * configure.ac: Adding videomixer.
21521         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21522         (user_read_data), (gst_pngdec_chain): More debugging.
21523         * gst/alpha/Makefile.am: Adding alphacolor
21524         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21525         (gst_alpha_color_class_init), (gst_alpha_color_init),
21526         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21527         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21528         (plugin_init): Ported to 0.9 using in place base tranform.
21529         * gst/videomixer/Makefile.am:
21530         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21531         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21532         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21533         (gst_videomixer_pad_init), (gst_videomixer_class_init),
21534         (gst_videomixer_init), (gst_videomixer_getcaps),
21535         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21536         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21537         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21538         to 0.9 using collectpads.
21539
21540 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
21541
21542         * configure.ac:
21543         * gst/flx/Makefile.am:
21544         * gst/flx/gstflxdec.c: (gst_flxdec_init),
21545         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21546         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21547         * gst/flx/gstflxdec.h:
21548         flx plugin ported to 0.9
21549
21550 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21551
21552         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21553           use new gst_version_string()
21554
21555 2005-10-16  Andy Wingo  <wingo@pobox.com>
21556
21557         * configure.ac: GLIB_CHECK.
21558
21559 2005-10-15  Julien MOUTTE  <julien@moutte.net>
21560
21561         * ext/libpng/Makefile.am:
21562         * ext/libpng/gstpng.c: (plugin_init):
21563         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21564         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21565         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21566
21567 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
21568
21569         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21570
21571         * configure.ac:
21572         * gst/matroska/Makefile.am:
21573         * gst/matroska/ebml-ids.h:
21574         * gst/matroska/ebml-write.c:
21575         * gst/matroska/ebml-write.h:
21576         * gst/matroska/matroska-ids.h:
21577         * gst/matroska/matroska-mux.c:
21578         * gst/matroska/matroska-mux.h:
21579         * gst/matroska/matroska.c: (plugin_init):
21580           Port matroska muxer to 0.9 (#318847).
21581
21582 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21583
21584         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21585         (comment_init), (comment_add):
21586           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21587           use GST_READ_UINT32_LE() and friends rather than the private
21588           implementation of those same macros.
21589
21590 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21591
21592         * examples/stats/mp2ogg.c:
21593           more typo fixes
21594
21595 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21596
21597         * examples/indexing/indexmpeg.c: (main):
21598         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21599         (gst_esdmon_close_audio), (gst_esdmon_change_state):
21600         * ext/esd/esdmon.h:
21601         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21602         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21603         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21604         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21605         * gst/avi/gstavimux.c: (gst_avimux_init):
21606         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21607         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21608         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21609         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21610         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21611         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21612         * gst/oldcore/gstmultifilesrc.h:
21613         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21614         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21615         (gst_pipefilter_change_state):
21616         * gst/oldcore/gstpipefilter.h:
21617         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21618         * gst/videomixer/videomixer.c: (gst_videomixer_init):
21619         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21620         * sys/osxaudio/gstosxaudiosink.h:
21621         * sys/osxaudio/gstosxaudiosrc.h:
21622           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21623           moved bitshift from macro to enum definition
21624
21625 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21626
21627         * ext/Makefile.am:
21628         * ext/cairo/Makefile.am:
21629         * ext/cairo/gstcairo.c: (plugin_init):
21630         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21631         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21632         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21633         * ext/cairo/gsttimeoverlay.h:
21634           update of cairo-based timeoverlay to 1.0 Cairo API
21635           doesn't work yet for resizing of output sink
21636
21637 2005-10-11  Wim Taymans  <wim@fluendo.com>
21638
21639         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21640         newsegment API fix.
21641
21642 2005-10-11  Wim Taymans  <wim@fluendo.com>
21643
21644         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21645         (gst_dvdemux_demux_frame):
21646         * ext/flac/gstflacdec.c: (gst_flacdec_write):
21647         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21648         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21649         (gst_avi_demux_handle_seek):
21650         * gst/goom/gstgoom.c: (gst_goom_event):
21651         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21652         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21653         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21654         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21655         (gst_wavparse_srcpad_event):
21656         newsegment API update.
21657
21658 2005-10-11  Andy Wingo  <wingo@pobox.com>
21659
21660         * ext/speex/gstspeexenc.c: Signedness cleanups.
21661
21662 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
21663
21664         * PORTED_09:
21665         * ext/speex/Makefile.am:
21666         * ext/speex/gstspeex.c:
21667         * ext/speex/gstspeexenc.c:
21668         Speexenc ported to 0.9
21669
21670 2005-10-10  Wim Taymans  <wim@fluendo.com>
21671
21672         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21673         (gst_oss_sink_init), (gst_oss_sink_set_property),
21674         (gst_oss_sink_get_property), (gst_oss_sink_open),
21675         (gst_oss_sink_prepare), (gst_oss_sink_reset):
21676         * sys/oss/gstosssink.h:
21677         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21678         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21679         (gst_oss_src_prepare):
21680         Cleanups, make device configurable in the sink, handle and report
21681         errors.
21682
21683 2005-10-10  Wim Taymans  <wim@fluendo.com>
21684
21685         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21686         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21687         Make sure element is NULL before removing from the bin.
21688
21689 2005-10-07  Andy Wingo  <wingo@pobox.com>
21690
21691         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21692         block forever in a read().
21693         (gst_dv1394src_bus_reset): Post a message when the cable is
21694         unplugged.
21695         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21696         (gst_dv1394src_bus_reset): Don't unref the message.
21697
21698         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21699         hacking. The only change should be that the state change stuff was
21700         put into basesrc's start() and stop() routines, which coalesces
21701         some steps.
21702
21703 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
21704
21705         * configure.ac:
21706           Add check for mmap
21707           
21708         * gst/debug/Makefile.am:
21709           Only compile efence plugin on systems that have mmap.
21710
21711 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
21712
21713         * gst/debug/Makefile.am:
21714         * gst/debug/breakmydata.c:
21715         * gst/debug/gstdebug.c:
21716         * gst/debug/gstnavigationtest.c:
21717         * gst/debug/gstnavseek.c: 
21718         * gst/debug/gstnavseek.h:
21719         * gst/debug/progressreport.c: 
21720         * gst/debug/testplugin.c:
21721           Port progressreport, navseek, navigationtest, testsink and
21722           breakmydata.
21723
21724 2005-10-05  Edward Hervey  <edward@fluendo.com>
21725
21726         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21727         (gst_dvdemux_src_query):
21728         Fixes for better conversion
21729
21730 2005-10-04  Michael Smith <msmith@fluendo.com>
21731
21732         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21733         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21734         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21735         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21736           Set state of elements to NULL before removing from bins.
21737           Set state of test element to NULL if we failed to move it to READY
21738
21739 2005-10-04  Edward Hervey  <edward@fluendo.com>
21740
21741         * ext/dv/Makefile.am:
21742         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
21743         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21744         Corrected the query function for position so it doesn't forget what
21745         format was asked, and calls the conversion functions on the correct pad.
21746
21747 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21748
21749         * configure.ac:
21750           back to development
21751
21752 === release 0.9.3 ===
21753
21754 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21755
21756         * configure.ac:
21757           Releasing 0.9.3, "Aramis"
21758
21759 2005-10-03  Andy Wingo  <wingo@pobox.com>
21760
21761         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21762         error returns.
21763
21764 2005-10-02  Andy Wingo  <wingo@pobox.com>
21765
21766         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21767
21768         * ext/flac/gstflacenc.c: Ported to 0.9.
21769
21770         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21771
21772         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21773         and link to gsttagedit. Enable flacenc.
21774
21775         * ext/flac/gstflacdec.c: Re-enable tag reading.
21776
21777 2005-09-30  Wim Taymans  <wim@fluendo.com>
21778
21779         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21780         * gst/rtp/gstrtpgsmparse.c:
21781         * gst/rtp/gstrtph263penc.c:
21782         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21783         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21784         (gst_rtpmp4venc_set_property):
21785         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21786         Various class and caps fixes from Andre Magalhaes (andrunko)
21787
21788 2005-09-29  Wim Taymans  <wim@fluendo.com>
21789
21790         * gst/level/level-example.c: (main):
21791         Update for new bus API.
21792
21793 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
21794
21795         * configure.ac:
21796           Fix unexpanded autoconf macro GST_DOC, which has been renamed
21797           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21798
21799 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
21800
21801         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21802           Fix playback of mono streams (bytes_per_sample should be set
21803           from the sample width and the number of channels negotiated,
21804           and not just be set to 4) (#317338)
21805
21806 2005-09-26  Wim Taymans  <wim@fluendo.com>
21807
21808         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21809         (gst_rtpmpaenc_handle_buffer):
21810         Set buffer duration correctly.
21811
21812 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
21813
21814         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21815         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21816         (gst_avi_demux_change_state):
21817           Don't crash when encountering a stream with an unknown fourcc or
21818           codec id. Instead, create a pad of type video/x-avi-unknown or
21819           audio/x-avi-unknown, which as a side-effect also results in less
21820           confusing error messages in players ('no decoder' vs. 'no streams');
21821           minor fixes to state change function and class_init function.
21822
21823 2005-09-24  Wim Taymans  <wim@fluendo.com>
21824
21825         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21826         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21827         These are sinks.
21828
21829 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21830
21831         * check/elements/level.c: (GST_START_TEST):
21832           fix test for new GstClockTime use
21833         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21834         (gst_level_transform_ip):
21835         * gst/level/gstlevel.h:
21836           fix up the decay peak, ensuring the decay peak is never lower
21837           than the peak for that interval
21838
21839 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21840
21841         * docs/plugins/gst-plugins-good-plugins.args:
21842         * docs/plugins/inspect/plugin-alpha.xml:
21843         * docs/plugins/inspect/plugin-rtp.xml:
21844         * gst/level/gstlevel.c: (gst_level_set_caps),
21845         (gst_level_transform_ip):
21846           updating docs
21847
21848 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21849
21850         * Makefile.am:
21851         * check/elements/level.c: (GST_START_TEST):
21852         * gst/level/Makefile.am:
21853         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21854         (gst_level_set_property), (gst_level_get_property),
21855         (gst_level_set_caps), (gst_level_message_new),
21856         (gst_level_transform_ip):
21857         * gst/level/gstlevel.h:
21858         * gst/level/level-example.c: (message_handler), (main):
21859           convert to using GstClockTime for all time values, finally.
21860
21861 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21862
21863         * gst/auparse/Makefile.am:
21864         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21865           fix up build
21866         * configure.ac:
21867         * ext/cairo/Makefile.am:
21868         * ext/dv/Makefile.am:
21869         * ext/esd/Makefile.am:
21870         * ext/flac/Makefile.am:
21871         * ext/gconf/Makefile.am:
21872         * ext/gdk_pixbuf/Makefile.am:
21873         * ext/jpeg/Makefile.am:
21874         * ext/ladspa/Makefile.am:
21875         * ext/libcaca/Makefile.am:
21876         * ext/libmng/Makefile.am:
21877         * ext/libpng/Makefile.am:
21878         * ext/mikmod/Makefile.am:
21879         * ext/pango/Makefile.am:
21880         * ext/raw1394/Makefile.am:
21881         * ext/shout2/Makefile.am:
21882         * ext/speex/Makefile.am:
21883         * gst/alpha/Makefile.am:
21884         * gst/autodetect/Makefile.am:
21885         * gst/avi/Makefile.am:
21886         * gst/cutter/Makefile.am:
21887         * gst/debug/Makefile.am:
21888         * gst/effectv/Makefile.am:
21889         * gst/flx/Makefile.am:
21890         * gst/goom/Makefile.am:
21891         * gst/interleave/Makefile.am:
21892         * gst/law/Makefile.am:
21893         * gst/matroska/Makefile.am:
21894         * gst/median/Makefile.am:
21895         * gst/monoscope/Makefile.am:
21896         * gst/multipart/Makefile.am:
21897         * gst/oldcore/Makefile.am:
21898         * gst/rtp/Makefile.am:
21899         * gst/rtsp/Makefile.am:
21900         * gst/smoothwave/Makefile.am:
21901         * gst/smpte/Makefile.am:
21902         * gst/videobox/Makefile.am:
21903         * gst/videofilter/Makefile.am:
21904         * gst/videomixer/Makefile.am:
21905         * gst/wavenc/Makefile.am:
21906         * gst/wavparse/Makefile.am:
21907         * sys/oss/Makefile.am:
21908         * sys/osxaudio/Makefile.am:
21909         * sys/osxvideo/Makefile.am:
21910           fix up GST_LIBS use
21911
21912 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21913
21914         * gst/auparse/Makefile.am:
21915         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21916           fix build of auparse
21917
21918 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21919
21920         * configure.ac:
21921         * PORTED_09:
21922         * gst/auparse/gstauparse.c:
21923         * gst/auparse/gstauparse.h:
21924         Auparse ported to 0.9.
21925
21926 2005-09-22  Wim Taymans  <wim@fluendo.com>
21927
21928         * gst/rtp/TODO:
21929         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21930         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21931         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21932         (gst_rtpmp4venc_set_property):
21933         * gst/rtp/gstrtpmp4venc.h:
21934         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21935         * gst/rtp/gstrtpmpaenc.h:
21936         Use is_filled to both check MTU and max-ptime of base class.
21937
21938 2005-09-22  Wim Taymans  <wim@fluendo.com>
21939
21940         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21941         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21942         (gst_rtpmp4venc_set_property):
21943         Don't fragment packets with multiple frames.
21944
21945 2005-09-22  Wim Taymans  <wim@fluendo.com>
21946
21947         * gst/rtp/TODO:
21948         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21949         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21950         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21951         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21952         (gst_rtpmp4venc_get_property):
21953         * gst/rtp/gstrtpmp4venc.h:
21954         Remove g_print.
21955         Update TODO
21956         Make payload encoder a bit smarter and more correct with
21957         timestamps.
21958         Added option in payloader to include config string in-band.
21959
21960 2005-09-21  Wim Taymans  <wim@fluendo.com>
21961
21962         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21963         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21964         (gst_rtspsrc_send):
21965         Strip spaces for key/value pairs.
21966
21967 2005-09-21  Wim Taymans  <wim@fluendo.com>
21968
21969         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21970         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21971         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21972         (gst_rtspsrc_change_state):
21973         More SDP parsing and caps setting.
21974         Do NO_PREROLL differently.
21975         add pads only after negotiated.
21976
21977         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21978         (gst_udpsrc_getcaps):
21979         Implement the getcaps function.
21980
21981 2005-09-21  Wim Taymans  <wim@fluendo.com>
21982
21983         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21984         (gst_rtpamrdec_chain):
21985         Handle multiple AMr packets per payload. Handle CRC and
21986         parse ILL/ILP.
21987
21988         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21989         Make caps params strings for easy SDP mapping.
21990         
21991         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
21992         Handle capsnego better.
21993
21994         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21995         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
21996         Generate and parse config string in the caps.
21997
21998 2005-09-21  Wim Taymans  <wim@fluendo.com>
21999
22000         * gst/rtp/README:
22001         Update README
22002
22003         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
22004         Make extra params as strings.
22005
22006         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
22007         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22008         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
22009         Make state change return NO_PREROLL as this is a live
22010         source.
22011
22012         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22013         Don't unref old caps when NULL.
22014
22015 2005-09-20  Wim Taymans  <wim@fluendo.com>
22016
22017         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
22018         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22019         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
22020         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
22021         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
22022         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
22023         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
22024         * gst/rtsp/sdpmessage.h:
22025         Add URI handler.
22026         Parse SDP and create caps.
22027
22028 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
22029
22030         * gst/alpha/gstalpha.c:
22031           fix element description
22032
22033 2005-09-19  Wim Taymans  <wim@fluendo.com>
22034
22035         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
22036         Don't check payload for now.
22037
22038 2005-09-19  Wim Taymans  <wim@fluendo.com>
22039
22040         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
22041         (gst_wavparse_init), (gst_wavparse_parse_file_header),
22042         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
22043         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
22044         (gst_wavparse_loop), (gst_wavparse_pad_convert),
22045         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
22046         (gst_wavparse_change_state):
22047         * gst/wavparse/gstwavparse.h:
22048         Fix wavparse some more.
22049
22050 2005-09-19  Wim Taymans  <wim@fluendo.com>
22051
22052         * check/elements/level.c: (GST_START_TEST):
22053         Fix for bus API change.
22054
22055 2005-09-19  Wim Taymans  <wim@fluendo.com>
22056
22057         * gst/level/level-example.c: (main):
22058         Fix for new bus API.
22059
22060         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22061         Set caps on pads.
22062
22063 2005-09-15  Wim Taymans  <wim@fluendo.com>
22064
22065         * gst/rtp/Makefile.am:
22066         * gst/rtp/README:
22067         * gst/rtp/gstrtp.c: (plugin_init):
22068         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
22069         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
22070         (gst_rtpamrdec_change_state):
22071         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
22072         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
22073         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
22074         * gst/rtp/gstrtpamrenc.h:
22075         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
22076         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
22077         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
22078         * gst/rtp/gstrtpgsmenc.h:
22079         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
22080         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
22081         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
22082         (gst_rtpgsmparse_change_state):
22083         * gst/rtp/gstrtpgsmparse.h:
22084         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
22085         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
22086         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
22087         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
22088         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
22089         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
22090         * gst/rtp/gstrtph263penc.h:
22091         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
22092         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
22093         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22094         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
22095         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
22096         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
22097         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
22098         * gst/rtp/gstrtpmp4venc.h:
22099         * gst/rtp/gstrtpmpadec.c:
22100         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
22101         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
22102         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
22103         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
22104         * gst/rtp/gstrtpmpaenc.h:
22105         Updates to payloader/depayloaders, make payloaders use
22106         the base classes.
22107         Updated README with suggested RTP caps and how to convert
22108         to/from SDP.
22109         Added config descriptor in mp4v payloader.
22110
22111 2005-09-15  Andy Wingo  <wingo@pobox.com>
22112
22113         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
22114         * gst/autodetect/gstautovideosink.c
22115         (gst_auto_video_sink_find_best): Update for new registry API.
22116
22117 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22118
22119         * common/c-to-xml.py:
22120         * common/gtk-doc-plugins.mak:
22121           a simple py script to generate valid xml from a C example
22122           probably also need to strip an MIT license when we decide
22123         * docs/plugins/Makefile.am:
22124         * gst/level/Makefile.am:
22125         * gst/level/gstlevel.c: (gst_level_init):
22126         * gst/level/level-example.c: (message_handler), (main):
22127           add an example to level that will show up in the docs
22128         * gst/rtp/TODO:
22129           add a note for the future
22130
22131 2005-09-14  Michael Smith <msmith@fluendo.com>
22132
22133         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
22134           Actually define the debug object being used in wavenc. Fixes #316205
22135
22136 2005-09-14  Michael Smith <msmith@fluendo.com>
22137
22138         * gst/smpte/Makefile.am:
22139           Link against GST_BASE_LIBS, to get it linked against libgstbase;
22140           needed to build on windows (bug 316204)
22141
22142 2005-09-12  Andy Wingo  <wingo@pobox.com>
22143
22144         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
22145
22146 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22147
22148         * configure.ac:
22149         * gst/fdsrc/Makefile.am:
22150         * gst/fdsrc/gstfdsrc.c:
22151         * gst/fdsrc/gstfdsrc.h:
22152           Move fdsrc back into gstreamer core elements.
22153
22154         * gst/level/gstlevel.c: (gst_level_class_init),
22155         (gst_level_transform_ip):
22156         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
22157           Basetransform changes.
22158
22159 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22160
22161         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
22162         * ext/jpeg/smokecodec.c: (find_best_size):
22163           fix compiler warnings
22164
22165 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22166
22167         * gst-plugins-good.spec.in:
22168           spec file fixes
22169         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
22170         (gst_multiudpsink_render), (gst_multiudpsink_add),
22171         (gst_multiudpsink_clear):
22172           it actually helps to actually stream if we hook up the
22173           "add" signal to an actual implementation
22174         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
22175           some debugging
22176
22177 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
22178
22179         * ext/jpeg/Makefile.am:
22180         * ext/jpeg/gstjpeg.c
22181         * ext/jpeg/gstjpegenc.c:
22182         * ext/jpeg/gstsmokeenc.c:
22183
22184 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22185
22186         * ext/flac/gstflacdec.c:
22187         * ext/flac/gstflacenc.c:
22188         * ext/flac/gstflactag.c:
22189         * ext/speex/gstspeexenc.c:
22190           gsttaginterface.h -> gsttagsetter.h
22191
22192 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22193
22194         * configure.ac:
22195         * gst/debug/Makefile.am:
22196         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22197         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22198         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22199         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22200         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22201           Port to 0.9 and re-enable efence plugin.
22202
22203 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
22204
22205         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22206         (gst_flacdec_write), (gst_flacdec_convert_src):
22207         * ext/flac/gstflacdec.h:
22208           Add support for flac files with 24/32 bits per sample; and misc.
22209           minor clean-ups. Seeking is still partly broken (for me at least).
22210
22211 2005-09-06  Wim Taymans  <wim@fluendo.com>
22212
22213         * gst/rtp/Makefile.am:
22214         * gst/rtp/gstrtp.c: (plugin_init):
22215         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22216         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22217         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22218         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22219         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22220         (gst_rtpmp4vdec_plugin_init):
22221         * gst/rtp/gstrtpmp4vdec.h:
22222         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22223         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22224         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22225         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22226         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22227         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22228         * gst/rtp/gstrtpmp4venc.h:
22229         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22230         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22231         Added mpeg4 video payload encoder/decoder.
22232         Added some docs in mpa payloader.
22233
22234 === release 0.9.1 ===
22235
22236 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22237
22238         * NEWS:
22239         * README:
22240         * RELEASE:
22241         * autogen.sh:
22242         * configure.ac:
22243           releasing 0.9.1, "Blondie"
22244
22245 2005-09-05  Andy Wingo  <wingo@pobox.com>
22246
22247         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22248         here from the state change handler, so we fire signals without
22249         holding the state lock.
22250
22251 2005-09-02  Andy Wingo  <wingo@pobox.com>
22252
22253         * All plugins updated for element state changes.
22254
22255 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22256
22257         * Makefile.am:
22258         * check/.cvsignore:
22259         * check/Makefile.am:
22260         * check/elements/.cvsignore:
22261         * check/elements/level.c: (setup_level), (cleanup_level),
22262         (GST_START_TEST), (level_suite), (main):
22263           add a test for level
22264         * common/release.mak:
22265           move the enum checking to release.mak
22266         * configure.ac:
22267           add valgrind and check checking
22268         * gst/level/gstlevel.c: (gst_level_transform):
22269         * gst/level/gstlevel.h:
22270           fix Andy's cast bug
22271           convert a field to int
22272           fix the arithmetic to int when checking for emit so that a
22273           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22274
22275 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22276
22277         * Makefile.am:
22278         * configure.ac:
22279           add docs to build
22280         * common/plugins.xsl:
22281           wrap Description into a refsect2
22282         * docs/Makefile.am:
22283         * docs/plugins/Makefile.am:
22284         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22285         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22286         * gst/goom/Makefile.am:
22287         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22288         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22289         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22290         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22291         (gst_goom_change_state):
22292         * gst/goom/gstgoom.h:
22293           GstGOOM -> GstGoom
22294           add an example launch line
22295         * gst/level/gstlevel.h:
22296         * gst/monoscope/gstmonoscope.c:
22297           cleanups
22298
22299 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22300
22301         * configure.ac:
22302         * docs/plugins/Makefile.am:
22303         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22304         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22305         * docs/plugins/gst-plugins-good-plugins.types:
22306           document elements and plugins.  Shazam !
22307
22308 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22309
22310         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
22311           be found under doc/random/ChangeLog-0.8