gst/audiofx/audioreverb.c: Set the default value in the instance init function.
[platform/upstream/gst-plugins-good.git] / ChangeLog
1 2009-01-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/audiofx/audioreverb.c: (gst_audio_reverb_init):
4         Set the default value in the instance init function.
5
6 2009-01-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
7
8         * docs/plugins/Makefile.am:
9         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11         * docs/plugins/gst-plugins-good-plugins.args:
12         * docs/plugins/gst-plugins-good-plugins.hierarchy:
13         * docs/plugins/inspect/plugin-audiofx.xml:
14         * docs/plugins/inspect/plugin-spectrum.xml:
15         * gst/audiofx/Makefile.am:
16         * gst/audiofx/audiofx.c: (plugin_init):
17         * gst/audiofx/audioreverb.c: (gst_audio_reverb_base_init),
18         (gst_audio_reverb_class_init), (gst_audio_reverb_init),
19         (gst_audio_reverb_finalize), (gst_audio_reverb_set_property),
20         (gst_audio_reverb_get_property), (gst_audio_reverb_setup),
21         (gst_audio_reverb_stop), (gst_audio_reverb_transform_ip):
22         * gst/audiofx/audioreverb.h:
23         * tests/check/Makefile.am:
24         * tests/check/elements/audioreverb.c: (setup_reverb),
25         (cleanup_reverb), (GST_START_TEST), (audioreverb_suite):
26         Add an echo/reverb filter to the audiofx plugin, with configurable
27         echo delay, intensity and feedback. Fixes bug #567874.
28
29 2009-01-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
30
31         * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state),
32         (gst_spectrum_transform_ip):
33         * gst/spectrum/gstspectrum.h:
34         Implement a simple compensation algorithm for rounding errors.
35         This makes sure that a spectrum message is posted on the bus
36         every interval nanoseconds. Fixes bug #567955.
37
38 2009-01-15  Michael Smith <msmith@songbirdnest.com>
39
40         * sys/osxaudio/Makefile.am:
41           Link against CoreServices (needed for osx 10.4) and fix up the linker
42           flags. Fixes #567853.
43
44 2009-01-15  Wim Taymans  <wim.taymans@collabora.co.uk>
45
46         * gst/qtdemux/qtdemux.c: (qtdemux_parse_segments):
47         Catch invalid and commonly wrong playback rates in the elst atoms.
48         Fixes #567800.
49
50 2009-01-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
51
52         * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state):
53         Don't call gst_fft_f32_free() with NULL to prevent a
54         crash. Fixes bug #567642.
55
56 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
57
58         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
59         * gst/spectrum/gstspectrum.h:
60         Use correct types for frame/fft counters and some minor
61         cleanup.
62
63 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
64
65         Patch by: Lennart Poettering <lennart at poettering dot net>
66
67         * ext/pulse/pulseprobe.c: (gst_pulseprobe_new),
68         (gst_pulseprobe_free):
69         Fix refcount loop, resulting in a thread leak. Fixes bug #567746.
70
71 2009-01-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
72
73         * gst/spectrum/Makefile.am:
74         * gst/spectrum/README:
75         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
76         (gst_spectrum_class_init), (gst_spectrum_init),
77         (gst_spectrum_reset_state), (gst_spectrum_finalize),
78         (gst_spectrum_set_property), (gst_spectrum_start),
79         (gst_spectrum_stop), (gst_spectrum_setup),
80         (gst_spectrum_transform_ip):
81         * gst/spectrum/gstspectrum.h:
82         Post a spectrum message on the bus for every interval, even
83         if the interval is small than the length of the FFT.
84         Fixes bug #567642.
85
86         Major cleanup of the spectrum element.
87
88 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
89
90         * configure.ac:
91         * gst/audiofx/Makefile.am:
92         * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init),
93         (gst_audio_fir_filter_class_init),
94         (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init),
95         (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize),
96         (gst_audio_fir_filter_set_property),
97         (gst_audio_fir_filter_get_property):
98         * gst/audiofx/audiofirfilter.h:
99         * gst/audiofx/audiofx.c: (plugin_init):
100         * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init),
101         (gst_audio_iir_filter_class_init),
102         (gst_audio_iir_filter_update_coefficients),
103         (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup),
104         (gst_audio_iir_filter_finalize),
105         (gst_audio_iir_filter_set_property),
106         (gst_audio_iir_filter_get_property):
107         * gst/audiofx/audioiirfilter.h:
108         Add audioiirfilter and audiofirfilter elements which allow
109         generic IIR/FIR filters to be implemented by providing the
110         filter coefficients. Fixes bug #567577.
111
112         * docs/plugins/Makefile.am:
113         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
114         * docs/plugins/gst-plugins-good-plugins-sections.txt:
115         * docs/plugins/gst-plugins-good-plugins.args:
116         * docs/plugins/gst-plugins-good-plugins.hierarchy:
117         * docs/plugins/gst-plugins-good-plugins.signals:
118         * docs/plugins/inspect/plugin-alaw.xml:
119         * docs/plugins/inspect/plugin-audiofx.xml:
120         * docs/plugins/inspect/plugin-avi.xml:
121         * docs/plugins/inspect/plugin-flac.xml:
122         * docs/plugins/inspect/plugin-mulaw.xml:
123         * docs/plugins/inspect/plugin-video4linux2.xml:
124         * docs/plugins/inspect/plugin-wavparse.xml:
125         Add documentation for the audioiirfilter and audiofirfilter
126         elements.
127
128         * tests/check/Makefile.am:
129         * tests/check/elements/audiofirfilter.c: (on_message),
130         (on_rate_changed), (on_handoff), (GST_START_TEST),
131         (audiofirfilter_suite):
132         * tests/check/elements/audioiirfilter.c: (on_message),
133         (on_rate_changed), (on_handoff), (GST_START_TEST),
134         (audioiirfilter_suite):
135         * tests/examples/Makefile.am:
136         * tests/examples/audiofx/Makefile.am:
137         * tests/examples/audiofx/firfilter-example.c: (on_message),
138         (on_rate_changed), (main):
139         * tests/examples/audiofx/iirfilter-example.c: (on_message),
140         (on_rate_changed), (main):
141         Add unit tests and example applications for the two filter
142         elements.
143
144 2009-01-13  Michael Smith <msmith@songbirdnest.com>
145
146         Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
147         * gst/qtdemux/qtdemux.c:
148           Fix format string for guint64.
149
150 2009-01-13  Michael Smith <msmith@songbirdnest.com>
151
152         * sys/osxaudio/Makefile.am:
153           osxaudio plugin now requires AudioUnit framework, so link against that.
154           Clean up tabs v spaces while I'm there.
155
156 2009-01-13  Wim Taymans  <wim.taymans@collabora.co.uk>
157
158         * tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
159         (print_stats), (main):
160         Add some example code for printing the RTP manager stats.
161
162 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
163
164         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_class_init),
165         (gst_audio_cheb_band_init), (gst_audio_cheb_band_finalize),
166         (gst_audio_cheb_band_set_property):
167         * gst/audiofx/audiochebband.h:
168         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_class_init),
169         (gst_audio_cheb_limit_init), (gst_audio_cheb_limit_finalize),
170         (gst_audio_cheb_limit_set_property):
171         * gst/audiofx/audiocheblimit.h:
172         * gst/audiofx/audiowsincband.c: (gst_audio_wsincband_class_init),
173         (gst_audio_wsincband_init), (gst_audio_wsincband_finalize),
174         (gst_audio_wsincband_set_property):
175         * gst/audiofx/audiowsincband.h:
176         * gst/audiofx/audiowsinclimit.c: (gst_audio_wsinclimit_class_init),
177         (gst_audio_wsinclimit_init), (gst_audio_wsinclimit_finalize),
178         (gst_audio_wsinclimit_set_property):
179         * gst/audiofx/audiowsinclimit.h:
180         Use a custom mutex for protecting the instance fields instead of
181         the GstObject lock. Using the latter can lead to deadlocks, especially
182         with the FIR filters when updating the latency.
183
184 2009-01-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
185
186         * gst/audiofx/Makefile.am:
187         * gst/audiofx/audiofxbasefirfilter.c:
188         (gst_audio_fx_base_fir_filter_dispose),
189         (gst_audio_fx_base_fir_filter_base_init),
190         (gst_audio_fx_base_fir_filter_class_init),
191         (gst_audio_fx_base_fir_filter_init),
192         (gst_audio_fx_base_fir_filter_push_residue),
193         (gst_audio_fx_base_fir_filter_setup),
194         (gst_audio_fx_base_fir_filter_transform),
195         (gst_audio_fx_base_fir_filter_start),
196         (gst_audio_fx_base_fir_filter_stop),
197         (gst_audio_fx_base_fir_filter_query),
198         (gst_audio_fx_base_fir_filter_query_type),
199         (gst_audio_fx_base_fir_filter_event),
200         (gst_audio_fx_base_fir_filter_set_kernel):
201         * gst/audiofx/audiofxbasefirfilter.h:
202         * gst/audiofx/audiofxbaseiirfilter.c:
203         Implement a base class for generic audio FIR filters.
204
205         * gst/audiofx/audiowsincband.c:
206         (gst_gst_audio_wsincband_mode_get_type),
207         (gst_gst_audio_wsincband_window_get_type),
208         (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
209         (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
210         (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
211         (gst_audio_wsincband_get_property):
212         * gst/audiofx/audiowsincband.h:
213         * gst/audiofx/audiowsinclimit.c:
214         (gst_audio_wsinclimit_mode_get_type),
215         (gst_audio_wsinclimit_window_get_type),
216         (gst_audio_wsinclimit_base_init),
217         (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
218         (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
219         (gst_audio_wsinclimit_set_property),
220         (gst_audio_wsinclimit_get_property):
221         * gst/audiofx/audiowsinclimit.h:
222         * tests/check/elements/audiowsincband.c: (GST_START_TEST):
223         * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
224         Use this new base class for audiowsincband and audiowsinclimit.
225         Also cleanup both elements.
226
227 2009-01-08  Michael Smith <msmith@songbirdnest.com>
228
229         * gst/qtdemux/qtdemux.c:
230           In push mode, error out if we get EOS before we've created any srcpads.
231           Handle (in pull mode) some files that have a truncated moov atom where
232           the final sub-atom is a 'free' atom and the contents of that are not
233           present in the file.
234
235 2009-01-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
236
237         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
238         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
239         Some cleanups, refactoring and minor enhancements in caps handling.
240
241         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
242         (gst_matroska_mux_init), (gst_matroska_pad_reset),
243         (gst_matroska_pad_free), (gst_matroska_mux_reset),
244         (gst_matroska_mux_video_pad_setcaps),
245         (gst_matroska_mux_request_new_pad):
246         * tests/check/elements/matroskamux.c: (teardown_src_pad):
247         Only remove, release or reset what is appropriate upon state change.
248
249 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
250
251         * ext/pulse/pulsesink.c:
252         * ext/pulse/pulsesink.h:
253         Use a mutex to protect the current stream pointer, and ignore
254         callbacks for stream objects that have been destroyed already.
255         Fixes problems with unprepare/prepare cycles caused by the input
256         caps changing, without reintroducing bug #556986.
257
258 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
259
260         * sys/v4l2/gstv4l2src.c:
261         Remove () from translateable string, so that it makes more sense.
262
263 2009-01-07  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
264
265         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
266         Minor fix/cleanup in header field calculation.
267
268 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
269
270         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
271         (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
272         * gst/matroska/matroska-mux.h:
273         Remove internal taglist and fully use tagsetter interface.
274
275 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
276
277         * gst/avi/gstavimux.c: (gst_avi_mux_reset),
278         (gst_avi_mux_riff_get_avi_header):
279         * gst/avi/gstavimux.h:
280         Ensure header size invariance during subsequent rewrite by using
281         tags snapshot.
282
283 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
284
285         * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
286         Don't wait for the pulse mainloop when destroying the stream.
287         Fixes a deadlock when the pulsedaemon goes away while pulsesink
288         is PLAYING. Fixes bug #556986.
289
290 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
291
292         Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
293                   Luotao Fu <l dot fu at pengutronix dot de>
294
295         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
296         (gst_v4l2_get_caps_info):
297         Add support for grayscale v4l2 devices. Fixes bug #566616.
298
299 2009-01-05  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
300
301         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
302         (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
303         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
304         (qtdemux_tag_add_blob), (qtdemux_parse_udta):
305         * gst/qtdemux/qtdemux.h:
306         * gst/qtdemux/quicktime.c: (plugin_init):
307         Streamline tag handling and pass unparsed tags as binary blob
308         in private tag.
309
310 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
311
312         * gst/audiofx/Makefile.am:
313         * gst/audiofx/audiofxbaseiirfilter.c:
314         (gst_audio_fx_base_iir_filter_base_init),
315         (gst_audio_fx_base_iir_filter_dispose),
316         (gst_audio_fx_base_iir_filter_class_init),
317         (gst_audio_fx_base_iir_filter_init),
318         (gst_audio_fx_base_iir_filter_calculate_gain),
319         (gst_audio_fx_base_iir_filter_set_coefficients),
320         (gst_audio_fx_base_iir_filter_setup), (process),
321         (gst_audio_fx_base_iir_filter_transform_ip),
322         (gst_audio_fx_base_iir_filter_stop):
323         * gst/audiofx/audiofxbaseiirfilter.h:
324         Implement a base class for IIR filters.
325
326         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
327         (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
328         (generate_coefficients), (gst_audio_cheb_band_set_property),
329         (gst_audio_cheb_band_setup):
330         * gst/audiofx/audiochebband.h:
331         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
332         (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
333         (generate_coefficients), (gst_audio_cheb_limit_set_property),
334         (gst_audio_cheb_limit_setup):
335         * gst/audiofx/audiocheblimit.h:
336         Use the IIR filter base class for the chebyshev filters.
337
338 2009-01-02  Michael Smith <msmith@songbirdnest.com>
339
340           Patch by: Justin Karnegas <justin@affinix.com> and
341                     Michael Smith <msmith@songbirdnest.com>
342         * sys/osxaudio/gstosxaudio.c:
343         * sys/osxaudio/gstosxaudioelement.c:
344         * sys/osxaudio/gstosxaudioelement.h:
345         * sys/osxaudio/gstosxaudiosink.c:
346         * sys/osxaudio/gstosxaudiosink.h:
347         * sys/osxaudio/gstosxaudiosrc.c:
348         * sys/osxaudio/gstosxaudiosrc.h:
349         * sys/osxaudio/gstosxringbuffer.c:
350         * sys/osxaudio/gstosxringbuffer.h:
351           Rewrite osxaudio to work more flexibly and more reliably, using a
352           different abstraction layer of coreaudio that is the recommended way of
353           doing low-level audio I/O on OSX.
354           Fixes byg #564948.
355
356 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
357
358         * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
359         Add example RTP transcoding pipeline from any file decodedable with
360         uridecodebin.
361
362 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
363
364         * tests/examples/rtp/.cvsignore:
365         * tests/examples/rtp/Makefile.am:
366         * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
367         * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
368         Add two C examples of using gstrtpbin as a sender and a receiver.
369
370 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
371
372         * ChangeLog:
373         Remove conflict marker from ChangeLog
374
375 2008-12-28  Edward Hervey  <edward.hervey@collabora.co.uk>
376
377         Patch by: j^ <j at oil21.org>
378
379         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
380         (qtdemux_audio_caps):
381         Add codec mapping for xvid, fmp4 and ac3 tracks.
382         Fixes #565850
383
384 2008-12-23  Wim Taymans  <wim.taymans@collabora.co.uk>
385
386         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
387         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
388         (gst_smokeenc_chain), (gst_smokeenc_change_state):
389         * ext/jpeg/gstsmokeenc.h:
390         Implement getcaps function.
391         Set caps on the pad and on all outgoing buffers.
392         Fixes #565441.
393
394 2008-12-19  Stefan Kost  <ensonic@users.sf.net>
395
396         * ext/pulse/pulsemixerctrl.c:
397           And remove temporary comment pointing to the bug ticket.
398
399         * gst/avi/gstavimux.c:
400           Move reoccuring logging to LOG and log instance too.
401
402 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
403
404         * ext/pulse/pulsemixerctrl.c:
405           Don't leak the pa_operation.
406
407 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
408
409         * configure.ac:
410           Require core cvs.
411
412 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
413
414         * gst/avi/gstavimux.c:
415           Rename api from _flush to _reset_tags. 
416
417 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
418
419         * gst/avi/gstavimux.c:
420           Use new tagsetter api to flush tags.
421
422 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
423
424         * tests/check/elements/deinterleave.c: (deinterleave_suite):
425         Increase timeout to 3 minutes to prevent timeouts.
426
427 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
428
429         * tests/check/elements/interleave.c: (interleave_suite):
430         Increase timeout to 3 minutes to prevent timeouts.
431
432 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
433
434         * gst/avi/gstavimux.c:
435         * gst/avi/gstavimux.h:
436           Totally remove the internal taglists and fully use tagsetter.
437
438 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
439
440         * gst/avi/gstavimux.c:
441           Instead of filtering wrongly just use the mergemode. Applications is
442           use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
443           avi for real (I hope). Everyone chime in, before I fix the others.
444
445 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
446
447         * ext/pulse/pulsemixerctrl.c:
448           Add note about memleak.
449
450 2008-12-13  Edward Hervey  <bilboed@gmail.com>
451
452         * m4/Makefile.am:
453         A couple more .m4 that aren't shipped anymore with gettext 0.17.
454
455 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
456
457         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
458         (gst_flac_dec_init):
459         * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
460         (gst_alaw_dec_init):
461         * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
462         (gst_alaw_enc_init):
463         * gst/law/alaw.c: (plugin_init):
464         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
465         (gst_mulawdec_init):
466         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
467         (gst_mulawenc_init):
468         * gst/law/mulaw.c: (plugin_init):
469         Switch to using GstStaticPadTemplate.
470         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
471         Don't forget to free the addrinfo structure.
472         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
473         (gst_wavparse_sink_activate):
474         Don't forget to unref the GstAdapter.
475
476 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
477
478         * m4/Makefile.am:
479         inttypes.m4 hasn't been available since gettext-0.15, and since we now
480         require gettext >= 0.17 ... we can remove it from the list of files to
481         dist.
482
483 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
484
485         * gst/avi/gstavidemux.c:
486           More logging.
487
488         * gst/avi/gstavimux.c:
489           Handle more metadata fields. Better estimate of metadata size. Don't
490           merge received tags, if application has specified tags using
491           GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
492
493 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
494
495         * tests/check/Makefile.am:
496         Also ignore pulsemixer for the states unit test.
497
498 2008-12-09  Wim Taymans  <wim.taymans@collabora.co.uk>
499
500         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
501         Add an EOI marker at the end of the jpeg frame when it's missing.
502         Fixes #563056.
503
504 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
505
506         * tests/check/elements/videocrop.c: (check_1x1_buffer):
507         Update the unit test for the new color values for BT.601 red.
508         Fixes bug #563510.
509
510 2008-12-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
511
512         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
513           Restore previous behaviour of not passing QoS and navigation
514           events upstream, which presumably wasn't meant to be changed.
515
516 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
517
518         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
519         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
520         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
521         (gst_dvdemux_chain), (gst_dvdemux_loop),
522         (gst_dvdemux_change_state):
523         Add srcpads only when needed and remove them again when going
524         back to READY. This prevents stalled pipelines if there's no
525         audio inside the DV stream, which happens for many MXF files.
526
527 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
528
529         * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
530         (run_server):
531         The ports in libsoup are unsigned integers and not signed
532         integers.
533
534 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
535
536         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
537         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
538         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
539         (gst_dvdemux_chain), (gst_dvdemux_loop),
540         (gst_dvdemux_change_state):
541         Add srcpads only when they're needed. If we add all pads in any
542         case we will get a stalling audio pad if the stream contains
543         no audio, which is the case for many MXF files.
544
545 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
546
547         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
548         Forward all events upstream unless it's something we really
549         don't handle. This fixes latency configuration of pipelines.
550
551 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
552
553         * ext/dv/gstdv.c: (plugin_init):
554         * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
555         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
556         Really call dv_init() exactly one time, not one time for
557         the demuxer and one time for the decoder.
558
559 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
560
561         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
562         Copy incomming timestamp to outgoing packets.
563
564 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
565
566         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
567         (gst_rtp_mp4v_pay_event):
568         Don't try to push packets before we could find a valid config
569         startcode. Fixes #563509.
570
571 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
572
573         Patch by: Brian Cameron <brian.cameron at sun dot com>
574
575         * sys/sunaudio/gstsunaudiomixerctrl.c:
576         (gst_sunaudiomixer_ctrl_open):
577         Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
578
579 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
580
581         Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
582
583         * configure.ac:
584         Make usage of libv4l optional by a configure parameter.
585         Fixes bug #563504.
586
587 2008-12-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
588
589         * docs/plugins/Makefile.am:
590         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
591         * docs/plugins/gst-plugins-good-plugins-sections.txt:
592         * docs/plugins/gst-plugins-good-plugins.args:
593         * docs/plugins/gst-plugins-good-plugins.hierarchy:
594         * docs/plugins/gst-plugins-good-plugins.interfaces:
595         * docs/plugins/inspect/plugin-1394.xml:
596         * docs/plugins/inspect/plugin-aasink.xml:
597         * docs/plugins/inspect/plugin-alaw.xml:
598         * docs/plugins/inspect/plugin-alpha.xml:
599         * docs/plugins/inspect/plugin-alphacolor.xml:
600         * docs/plugins/inspect/plugin-annodex.xml:
601         * docs/plugins/inspect/plugin-apetag.xml:
602         * docs/plugins/inspect/plugin-audiofx.xml:
603         * docs/plugins/inspect/plugin-auparse.xml:
604         * docs/plugins/inspect/plugin-autodetect.xml:
605         * docs/plugins/inspect/plugin-avi.xml:
606         * docs/plugins/inspect/plugin-cacasink.xml:
607         * docs/plugins/inspect/plugin-cairo.xml:
608         * docs/plugins/inspect/plugin-cutter.xml:
609         * docs/plugins/inspect/plugin-debug.xml:
610         * docs/plugins/inspect/plugin-dv.xml:
611         * docs/plugins/inspect/plugin-efence.xml:
612         * docs/plugins/inspect/plugin-effectv.xml:
613         * docs/plugins/inspect/plugin-equalizer.xml:
614         * docs/plugins/inspect/plugin-esdsink.xml:
615         * docs/plugins/inspect/plugin-flac.xml:
616         * docs/plugins/inspect/plugin-flxdec.xml:
617         * docs/plugins/inspect/plugin-gamma.xml:
618         * docs/plugins/inspect/plugin-gconfelements.xml:
619         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
620         * docs/plugins/inspect/plugin-goom.xml:
621         * docs/plugins/inspect/plugin-goom2k1.xml:
622         * docs/plugins/inspect/plugin-halelements.xml:
623         * docs/plugins/inspect/plugin-icydemux.xml:
624         * docs/plugins/inspect/plugin-id3demux.xml:
625         * docs/plugins/inspect/plugin-interleave.xml:
626         * docs/plugins/inspect/plugin-jpeg.xml:
627         * docs/plugins/inspect/plugin-level.xml:
628         * docs/plugins/inspect/plugin-matroska.xml:
629         * docs/plugins/inspect/plugin-monoscope.xml:
630         * docs/plugins/inspect/plugin-mulaw.xml:
631         * docs/plugins/inspect/plugin-multifile.xml:
632         * docs/plugins/inspect/plugin-multipart.xml:
633         * docs/plugins/inspect/plugin-navigationtest.xml:
634         * docs/plugins/inspect/plugin-ossaudio.xml:
635         * docs/plugins/inspect/plugin-png.xml:
636         * docs/plugins/inspect/plugin-pulseaudio.xml:
637         * docs/plugins/inspect/plugin-quicktime.xml:
638         * docs/plugins/inspect/plugin-replaygain.xml:
639         * docs/plugins/inspect/plugin-rtp.xml:
640         * docs/plugins/inspect/plugin-rtsp.xml:
641         * docs/plugins/inspect/plugin-shout2send.xml:
642         * docs/plugins/inspect/plugin-smpte.xml:
643         * docs/plugins/inspect/plugin-soup.xml:
644         * docs/plugins/inspect/plugin-spectrum.xml:
645         * docs/plugins/inspect/plugin-speex.xml:
646         * docs/plugins/inspect/plugin-taglib.xml:
647         * docs/plugins/inspect/plugin-udp.xml:
648         * docs/plugins/inspect/plugin-video4linux2.xml:
649         * docs/plugins/inspect/plugin-videobalance.xml:
650         * docs/plugins/inspect/plugin-videobox.xml:
651         * docs/plugins/inspect/plugin-videocrop.xml:
652         * docs/plugins/inspect/plugin-videoflip.xml:
653         * docs/plugins/inspect/plugin-videomixer.xml:
654         * docs/plugins/inspect/plugin-wavenc.xml:
655         * docs/plugins/inspect/plugin-wavpack.xml:
656         * docs/plugins/inspect/plugin-wavparse.xml:
657         * docs/plugins/inspect/plugin-ximagesrc.xml:
658         * gst/matroska/matroska-demux.c:
659         * gst/matroska/matroska-demux.h:
660         * gst/matroska/matroska-mux.c:
661         * gst/matroska/matroska-mux.h:
662         Add documentation for matroskamux and matroskademux and
663         update the inspection xml files.
664
665 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
666
667         * configure.ac:
668         Apparently AC_CONFIG_MACRO_DIR breaks when using more
669         than one macro directory, reverting last change.
670
671 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
672
673         * configure.ac:
674         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
675         our M4 macros.
676
677 2008-11-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
678
679         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
680         Provide the parameters that are required for the format string
681         to fix a compiler warning.
682
683 2008-11-29  Stefan Kost  <ensonic@users.sf.net>
684
685         * gst/autodetect/gstautoaudiosrc.c:
686           Fix classification.
687
688 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
689
690         Patch by: Cygwin Ports maintainer
691                   <yselkowitz at users dot sourceforge dot net>
692
693         * autogen.sh:
694         * configure.ac:
695         Require gettext 0.17 because older versions don't mix with libtool
696         2.2. At build time an older gettext version will still work.
697         Fixes bug #556091.
698
699 2008-11-28  Wim Taymans  <wim.taymans@collabora.co.uk>
700
701         Patch by: Peter Kjellerstedt <pkj at axis com>
702
703         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
704         Make gst_multiudpsink_render() ignore errors from sendto() instead of
705         breaking streaming. Emit a warning instead. Fixes #562572.
706
707 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
708
709         Patch by: Ron McOuat <rmcouat at smartt dot com>
710
711         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
712         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
713         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
714         (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
715         * ext/soup/gstsouphttpsrc.h:
716         * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
717         (digest_auth_cb), (run_test), (GST_START_TEST),
718         (souphttpsrc_suite), (run_server):
719         Add support for basic and digest authentication in souphttpsrc.
720         Fixes bug #561775.
721
722 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
723
724         Patch by: Pepijn Van Eeckhoudt
725                       <pepijn dot vaneeckhoudt at luciad dot com>
726
727         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
728         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
729         * gst/wavenc/gstwavenc.h:
730         * gst/wavenc/riff.h:
731         Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
732
733 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
734
735         Patch by: 이문형 <iwings at gmail dot com>
736
737         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
738         Prevent further read/write actions taken to the connect-failed socket by
739         erroring out quickly. See #562258.
740
741 2008-11-26  Stefan Kost  <ensonic@users.sf.net>
742
743         * tests/examples/level/level-example.c:
744           Set fakesink to sync. Otherwise people might question the message
745           interval. Nevertheless the timestamp in the message is what matters.
746
747 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
748
749         * tests/icles/.cvsignore:
750         cvsignore newly generated file.
751
752 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
753
754         * gst/rtp/gstasteriskh263.c:
755         * gst/rtp/gstasteriskh263.h:
756         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
757         * gst/rtp/gstrtpL16depay.h:
758         * gst/rtp/gstrtpL16pay.c:
759         * gst/rtp/gstrtpL16pay.h:
760         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
761         * gst/rtp/gstrtpac3depay.h:
762         * gst/rtp/gstrtpamrdepay.c:
763         * gst/rtp/gstrtpamrdepay.h:
764         * gst/rtp/gstrtpamrpay.c:
765         * gst/rtp/gstrtpamrpay.h:
766         * gst/rtp/gstrtpdepay.c:
767         * gst/rtp/gstrtpdepay.h:
768         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
769         * gst/rtp/gstrtpg726depay.c:
770         * gst/rtp/gstrtpg726pay.c:
771         * gst/rtp/gstrtpg729depay.c:
772         * gst/rtp/gstrtpg729pay.c:
773         * gst/rtp/gstrtpgsmdepay.c:
774         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
775         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
776         * gst/rtp/gstrtph263depay.h:
777         * gst/rtp/gstrtph263pay.c:
778         * gst/rtp/gstrtph263pay.h:
779         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
780         * gst/rtp/gstrtph263pdepay.h:
781         * gst/rtp/gstrtph263ppay.c:
782         * gst/rtp/gstrtph263ppay.h:
783         * gst/rtp/gstrtph264depay.c:
784         * gst/rtp/gstrtph264depay.h:
785         * gst/rtp/gstrtph264pay.c:
786         * gst/rtp/gstrtph264pay.h:
787         * gst/rtp/gstrtpilbcdepay.c:
788         * gst/rtp/gstrtpilbcpay.c:
789         * gst/rtp/gstrtpjpegdepay.h:
790         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
791         * gst/rtp/gstrtpmp1sdepay.h:
792         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
793         * gst/rtp/gstrtpmp2tdepay.h:
794         * gst/rtp/gstrtpmp2tpay.c:
795         * gst/rtp/gstrtpmp2tpay.h:
796         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
797         * gst/rtp/gstrtpmp4apay.c:
798         * gst/rtp/gstrtpmp4apay.h:
799         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
800         * gst/rtp/gstrtpmp4gdepay.h:
801         * gst/rtp/gstrtpmp4gpay.c:
802         * gst/rtp/gstrtpmp4gpay.h:
803         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
804         * gst/rtp/gstrtpmp4vdepay.h:
805         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
806         * gst/rtp/gstrtpmp4vpay.h:
807         * gst/rtp/gstrtpmpadepay.c:
808         * gst/rtp/gstrtpmpadepay.h:
809         * gst/rtp/gstrtpmpapay.c:
810         * gst/rtp/gstrtpmpapay.h:
811         * gst/rtp/gstrtpmpvdepay.c:
812         * gst/rtp/gstrtpmpvdepay.h:
813         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
814         * gst/rtp/gstrtppcmapay.c:
815         * gst/rtp/gstrtppcmudepay.c:
816         * gst/rtp/gstrtppcmupay.c:
817         * gst/rtp/gstrtpspeexdepay.c:
818         * gst/rtp/gstrtpspeexpay.c:
819         * gst/rtp/gstrtpsv3vdepay.c:
820         * gst/rtp/gstrtpsv3vdepay.h:
821         * gst/rtp/gstrtptheoradepay.c:
822         * gst/rtp/gstrtptheoradepay.h:
823         * gst/rtp/gstrtptheorapay.c:
824         * gst/rtp/gstrtptheorapay.h:
825         * gst/rtp/gstrtpvorbisdepay.c:
826         * gst/rtp/gstrtpvorbisdepay.h:
827         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
828         * gst/rtp/gstrtpvorbispay.h:
829         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
830         * gst/rtp/gstrtpvrawpay.c:
831         Fix the descriptions and fix some email addresses.
832
833 2008-11-25  Julien Moutte  <julien@fluendo.com>
834
835         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
836         to supported qtdemux video codecs as I found some video clips using 
837         those.
838
839 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
840
841         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
842         * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
843         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
844         (gst_auto_video_sink_detect):
845         * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
846         Post an error when we can't set the internal ghostpad target.
847
848 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
849
850         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
851         (gst_video_crop_transform), (gst_video_crop_transform_caps),
852         (gst_video_crop_set_caps), (gst_video_crop_set_property):
853         * gst/videocrop/gstvideocrop.h:
854         Fix renegotiation when changing properties using the new basetransform
855         features. Fixes #561502.
856
857         * tests/icles/Makefile.am:
858         * tests/icles/videocrop2-test.c: (make_pipeline), (main):
859         Add crazy interactive test unit for dynamically changing properties.
860
861 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
862
863         * gst/rtsp/gstrtspsrc.c: (new_session_pad),
864         (gst_rtspsrc_parse_range):
865         Add some more debugging.
866         Use the reanges received from the server unconditionally.
867         Fixes #561625.
868
869 2008-11-23  Stefan Kost  <ensonic@users.sf.net>
870
871         * ext/pulse/pulsesink.c:
872           Change #if 0 to something more expresive and add pointer to related
873           bug ticket.
874
875 2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
876
877         Patch by: Tal Shalif <tshalif at nargila dot org>
878
879         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
880         Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
881         the latter don't exist on some systems (mingw). Fixes bug #561990.
882
883 2008-11-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
884
885         Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
886
887         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
888         Add transferMode.dnla.org header to HTTP requests as this is
889         required by the DLNA specs and doesn't hurt in other situations.
890         Fixes bug #561802.
891
892 2008-11-20  Michael Smith <msmith@songbirdnest.com>
893
894         * sys/osxvideo/osxvideosink.h:
895         * sys/osxvideo/osxvideosink.m:
896           Handle video window resizing more correctly, avoiding crashes when
897           embedding the window and resizing it.
898
899 2008-11-20  Michael Smith <msmith@songbirdnest.com>
900
901         * gst/udp/gstmultiudpsink.c:
902         * gst/udp/gstudpnetutils.c:
903         * gst/udp/gstudpnetutils.h:
904         * gst/udp/gstudpsrc.c:
905           Fix multiudpsink on OSX by passing the specific length of the socket,
906           refactor that into a function shared with the same thing in udpsrc.
907
908 2008-11-20  Wim Taymans  <wim.taymans@collabora.co.uk>
909
910         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
911         (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
912         (gst_wavparse_stream_headers):
913         Fix the scaling code.
914         Fix parsing of the INFO chunks, we were reading the wrong number of
915         bytes.  Fixes #561580.
916
917 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
918
919         * gst/matroska/matroska-mux.c:
920         Fix NULL pointer dereference of an unset codec_id in the recently 
921         added Dirac paths
922
923 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
924
925         * tests/check/Makefile.am:
926         Just keep disabling elements that hang the states test until it
927         works.
928
929 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
930
931         * ext/libpng/gstpngenc.c:
932         Don't flush downstream after every buffer - that's not what
933         this libpng callback is for at all!
934
935 2008-11-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
936
937         * sys/v4l2/v4l2src_calls.c:
938           (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
939           (gst_v4l2src_probe_caps_for_format):
940           Turns out we don't always get the frame sizes in a predefined
941           order from lowest to highest resolution, so let's just sort the
942           list by frame size once we've queried the possible resolutions
943           rather than assume any particular order. Fixes probed caps for
944           the camera in my HP2133 mini notebook and makes v4l2src default
945           to a decent size.
946
947 2008-11-16  Edward Hervey  <edward.hervey@collabora.co.uk>
948
949         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
950         * gst/matroska/matroska-ids.h:
951         Make mkvdemux aware of E-AC3.
952
953 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
954
955         * gst/rtp/Makefile.am:
956         * gst/rtp/gstrtp.c: (plugin_init):
957         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
958         (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
959         (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
960         (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
961         (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
962         (gst_rtp_jpeg_depay_change_state),
963         (gst_rtp_jpeg_depay_plugin_init):
964         * gst/rtp/gstrtpjpegdepay.h:
965         Add a jpeg depayloader.
966
967         * gst/rtp/gstrtpjpegpay.c:
968         Set the default properties on the payloader to better defaults.
969
970 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
971
972         * sys/v4l2/gstv4l2.c:
973           Give it a primary rank for autovideosrc.
974
975 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
976
977         Patch by: Bjorn Ostby <bjornos at axis dot com>
978
979         * gst/rtp/Makefile.am:
980         * gst/rtp/gstrtp.c: (plugin_init):
981         * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
982         (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
983         (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
984         (gst_rtp_jpeg_pay_read_quant_table),
985         (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
986         (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
987         (gst_rtp_jpeg_pay_plugin_init):
988         * gst/rtp/gstrtpjpegpay.h:
989         Add JPEG payloader. Fixes #560756.
990
991 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
992
993         Patch by: Fabricio Godoy <skarllot at gmail dot com>
994
995         * sys/oss/gstosssink.c: (gst_oss_sink_open):
996         * sys/oss/gstosssrc.c: (gst_oss_src_open):
997         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
998         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
999         Fix some spelling mistakes. Fixes #556802.
1000
1001 2008-11-13  Stefan Kost  <ensonic@users.sf.net>
1002
1003         * gst/equalizer/GstIirEqualizer10Bands.prs:
1004         * gst/equalizer/GstIirEqualizer3Bands.prs:
1005         * gst/equalizer/Makefile.am:
1006         * gst/equalizer/gstiirequalizer10bands.c:
1007         * gst/equalizer/gstiirequalizer3bands.c:
1008           Add presets for equalizer. Fixes #522183.
1009
1010 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1011
1012         * gst/rtsp/Makefile.am:
1013         * gst/rtsp/gstrtsp.c: (plugin_init):
1014         * gst/rtsp/gstrtspgoogle.c:
1015         * gst/rtsp/gstrtspgoogle.h:
1016         Remove google extension again, it's not needed anymore because we never
1017         send multiple transports anymore.
1018
1019 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1020
1021         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1022
1023         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
1024         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
1025         (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
1026         (gst_rtspsrc_stream_free),
1027         (gst_rtspsrc_stream_configure_udp_sinks),
1028         (gst_rtspsrc_stream_configure_transport),
1029         (gst_rtspsrc_send_dummy_packets),
1030         (gst_rtspsrc_create_transports_string),
1031         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
1032         * gst/rtsp/gstrtspsrc.h:
1033         Add property to configure NAT traversal method.
1034         Ignore EOS from the internal sinks.
1035         Implement sending dummy packets as a (simple) method to open up
1036         some firewalls.
1037         Send PLAY request to the server after we started the udp sources.
1038         Fixes #559545.
1039
1040 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1041
1042         Patch by: Yotam <sh dot yotam at gmail dot com>
1043
1044         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
1045         Flush the remaining frames on EOS. Fixes #560641.
1046
1047 2008-11-12  Jan Schmidt  <jan.schmidt@sun.com>
1048
1049         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
1050         Fix compiler warning about printf formatting.
1051
1052 2008-11-12  Andy Wingo  <wingo@pobox.com>
1053
1054         * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
1055         * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
1056         segment events instead of sending them from the seeking thread.
1057         Fixes #559288.
1058         (gst_qtdemux_push_pending_newsegment): New helper, sends out
1059         queued newsegment events.
1060         (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
1061         call it here, as we only seek when looping, and only push in the
1062         movie state.
1063
1064 2008-11-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1065
1066         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
1067         (qtdemux_tag_add_covr), (qtdemux_parse_udta):
1068         * gst/qtdemux/qtdemux_fourcc.h:
1069         * gst/qtdemux/qtdemux_types.c:
1070         Add cover and alternative copyright tag, and enhance some existing
1071         ones by marking them as container atoms.
1072
1073 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1074
1075         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
1076         Don't ignore the return value of setcaps.
1077
1078 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1079
1080         Patch by: Olivier Crete <tester at tester dot ca>
1081
1082         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
1083         (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
1084         (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
1085         * gst/rtp/gstrtpg729pay.h:
1086         Replace G729 payloader with an improved version. Fixes #532409.
1087
1088 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1089
1090         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
1091         (gst_rtspsrc_change_state):
1092         Only send one transport at a time for improved compatibility with some
1093         broken servers. See #537832.
1094
1095 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1096
1097         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1098         (gst_rtspsrc_perform_seek):
1099         Only pause/play in the seek handler when the source was playing.
1100         Fixes #529379.
1101
1102 2008-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
1103
1104         * gst/matroska/matroska-mux.c:
1105         (gst_matroska_mux_handle_dirac_packet):
1106         Fix muxing of Dirac streams if the input already has the format
1107         we need, i.e. is the output of matroskademux.
1108
1109 2008-11-11  Stefan Kost  <ensonic@users.sf.net>
1110
1111         * gst/avi/gstavimux.c:
1112           Don't segfault on string typed tags being NULL. Fixes #560155.
1113
1114 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1115
1116         * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
1117         (gst_matroska_mux_audio_pad_setcaps):
1118         Fix mapping AAC profile to Matroska codec id.
1119
1120 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1121
1122         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
1123         (qtdemux_video_caps), (qtdemux_audio_caps):
1124         Refactor some raw audio caps building, and handle >16-bit cases.
1125         Fix/replace building caps from a string description.
1126
1127 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1128
1129         * gst/audiofx/audiowsincband.c:
1130         * gst/audiofx/audiowsinclimit.c:
1131         * gst/cutter/gstcutter.c:
1132           Make author name consistent with others.
1133
1134 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1135
1136         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1137
1138         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
1139         (gst_rtspsrc_stream_configure_udp_sink):
1140         Pause the RTSP stream before doing a new play request.
1141         Make sure that adding the udpsinks does not cause the rtspsrc to become
1142         a sink. Fixes #559547.
1143
1144 2008-11-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1145
1146         * gst/matroska/matroska-ids.h:
1147         * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
1148         (gst_matroska_mux_handle_dirac_packet),
1149         (gst_matroska_mux_write_data):
1150         Implement Dirac muxing into Matroska comforming to the spec, i.e.
1151         put all Dirac packages up to a picture into a Matroska block.
1152
1153         TODO: Implement writing of the ReferenceBlock Matroska elements,
1154         currently the Dirac muxing is only 100% correct if Matroska version 2
1155         is selected for muxing.
1156
1157 2008-11-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1158
1159         Patch by: Bastien Nocera <hadess at hadess dot net>,
1160                   Hans de Goede <jwrdegoede at fedoraproject dot org>
1161
1162         * configure.ac:
1163         * sys/v4l2/Makefile.am:
1164         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
1165         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1166         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
1167         (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
1168         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
1169         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
1170         (gst_v4l2_get_input), (gst_v4l2_set_input):
1171         * sys/v4l2/v4l2_calls.h:
1172         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1173         (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
1174         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1175         (gst_v4l2src_fill_format_list),
1176         (gst_v4l2src_probe_caps_for_format_and_size),
1177         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
1178         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
1179         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
1180         (gst_v4l2src_get_nearest_size):
1181         Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
1182
1183 2008-11-04  Stefan Kost  <ensonic@users.sf.net>
1184
1185         * ext/aalib/Makefile.am:
1186         * ext/annodex/Makefile.am:
1187         * ext/cairo/Makefile.am:
1188         * ext/dv/Makefile.am:
1189         * ext/esd/Makefile.am:
1190         * ext/flac/Makefile.am:
1191         * ext/gconf/Makefile.am:
1192         * ext/gdk_pixbuf/Makefile.am:
1193         * ext/hal/Makefile.am:
1194         * ext/jpeg/Makefile.am:
1195         * ext/ladspa/Makefile.am:
1196         * ext/libcaca/Makefile.am:
1197         * ext/libmng/Makefile.am:
1198         * ext/libpng/Makefile.am:
1199         * ext/mikmod/Makefile.am:
1200         * ext/pulse/Makefile.am:
1201         * ext/raw1394/Makefile.am:
1202         * ext/shout2/Makefile.am:
1203         * ext/soup/Makefile.am:
1204         * ext/speex/Makefile.am:
1205         * ext/taglib/Makefile.am:
1206         * ext/wavpack/Makefile.am:
1207         * gst/alpha/Makefile.am:
1208         * gst/apetag/Makefile.am:
1209         * gst/audiofx/Makefile.am:
1210         * gst/auparse/Makefile.am:
1211         * gst/autodetect/Makefile.am:
1212         * gst/avi/Makefile.am:
1213         * gst/cutter/Makefile.am:
1214         * gst/debug/Makefile.am:
1215         * gst/effectv/Makefile.am:
1216         * gst/equalizer/Makefile.am:
1217         * gst/flx/Makefile.am:
1218         * gst/goom/Makefile.am:
1219         * gst/goom2k1/Makefile.am:
1220         * gst/icydemux/Makefile.am:
1221         * gst/id3demux/Makefile.am:
1222         * gst/interleave/Makefile.am:
1223         * gst/law/Makefile.am:
1224         * gst/level/Makefile.am:
1225         * gst/matroska/Makefile.am:
1226         * gst/median/Makefile.am:
1227         * gst/monoscope/Makefile.am:
1228         * gst/multifile/Makefile.am:
1229         * gst/multipart/Makefile.am:
1230         * gst/oldcore/Makefile.am:
1231         * gst/qtdemux/Makefile.am:
1232         * gst/replaygain/Makefile.am:
1233         * gst/rtp/Makefile.am:
1234         * gst/rtsp/Makefile.am:
1235         * gst/smpte/Makefile.am:
1236         * gst/spectrum/Makefile.am:
1237         * gst/udp/Makefile.am:
1238         * gst/videobox/Makefile.am:
1239         * gst/videocrop/Makefile.am:
1240         * gst/videofilter/Makefile.am:
1241         * gst/videomixer/Makefile.am:
1242         * gst/wavenc/Makefile.am:
1243         * gst/wavparse/Makefile.am:
1244         * sys/directdraw/Makefile.am:
1245         * sys/directsound/Makefile.am:
1246         * sys/oss/Makefile.am:
1247         * sys/osxaudio/Makefile.am:
1248         * sys/osxvideo/Makefile.am:
1249         * sys/sunaudio/Makefile.am:
1250         * sys/v4l2/Makefile.am:
1251         * sys/waveform/Makefile.am:
1252         * sys/ximage/Makefile.am:
1253           Don't install static libs for plugins. Fixes #550851 for -good.
1254
1255 2008-10-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1256
1257         * ext/flac/Makefile.am:
1258         Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1259         This fixes compilation if FLAC is installed in an uncommon location
1260         that is not already handled by other CFLAGS. Fixes bug #558711.
1261
1262 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1263
1264         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1265         Guard more uncommon formats with ifdefs so that we can compile on older
1266         versions.
1267
1268 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1269
1270         Patch by: Nick Haddad <nick at haddads dot net>
1271
1272         * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1273         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1274         (gst_avi_demux_stream_data):
1275         Invert other uncompressed RGB formats. Fixes #558554.
1276
1277 2008-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
1278
1279         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1280         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1281         * gst/wavenc/gstwavenc.h:
1282         Add support for float/double as input and remove the (nowadays)
1283         useless parsing of the depth as we require width==depth.
1284
1285 2008-10-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1286
1287         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1288         * gst/rtp/gstrtpmpapay.c:
1289         Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1290         mpeg version 1. Fixes #558427.
1291
1292 2008-10-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1293
1294         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1295         (gst_rtp_L16_pay_getcaps):
1296         Only put an integral amount of samples in the RTP packet.
1297         Fixes #556641.
1298
1299 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1300
1301         * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1302         * gst/rtp/gstrtpchannels.h:
1303         Add method to get possible channel positions.
1304
1305 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1306
1307         * gst/rtp/Makefile.am:
1308         Also commit updated makefile
1309
1310 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1311
1312         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1313         Don't allow width=32,depth=24 as input. WAV requires that the width
1314         is the next integer multiply of 8 from the depth.
1315
1316 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1317
1318         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1319         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1320         (gst_rtp_L16_pay_getcaps):
1321         * gst/rtp/gstrtpchannels.c: (check_channels),
1322         (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1323         (gst_rtp_channels_create_default):
1324         * gst/rtp/gstrtpchannels.h:
1325         Add mappings for multichannel support. Does not completely just work
1326         because the getcaps function does not yet return the allowed channel
1327         mappings. See #556641.
1328
1329 2008-10-28  Stefan Kost  <ensonic@users.sf.net>
1330
1331         * gst/goom/Makefile.am:
1332         * gst/goom/README:
1333         * gst/goom/config_param.c:
1334         * gst/goom/convolve_fx.c:
1335         * gst/goom/drawmethods.c:
1336         * gst/goom/drawmethods.h:
1337         * gst/goom/filters.c:
1338         * gst/goom/filters_mmx.s:
1339         * gst/goom/flying_stars_fx.c:
1340         * gst/goom/goom.h:
1341         * gst/goom/goom_config.h:
1342         * gst/goom/goom_config_param.h:
1343         * gst/goom/goom_core.c:
1344         * gst/goom/goom_filters.h:
1345         * gst/goom/goom_fx.h:
1346         * gst/goom/goom_graphic.h:
1347         * gst/goom/goom_plugin_info.h:
1348         * gst/goom/goom_tools.c:
1349         * gst/goom/goom_tools.h:
1350         * gst/goom/goom_typedefs.h:
1351         * gst/goom/goom_visual_fx.h:
1352         * gst/goom/graphic.c:
1353         * gst/goom/ifs.c:
1354         * gst/goom/ifs.h:
1355         * gst/goom/lines.c:
1356         * gst/goom/lines.h:
1357         * gst/goom/mathtools.c:
1358         * gst/goom/mathtools.h:
1359         * gst/goom/mmx.c:
1360         * gst/goom/motif_goom1.h:
1361         * gst/goom/motif_goom2.h:
1362         * gst/goom/plugin_info.c:
1363         * gst/goom/ppc_drawings.h:
1364         * gst/goom/ppc_zoom_ultimate.h:
1365         * gst/goom/sound_tester.c:
1366         * gst/goom/sound_tester.h:
1367         * gst/goom/surf3d.c:
1368         * gst/goom/surf3d.h:
1369         * gst/goom/tentacle3d.c:
1370         * gst/goom/tentacle3d.h:
1371         * gst/goom/v3d.c:
1372         * gst/goom/v3d.h:
1373         * gst/goom/xmmx.c:
1374           Add license headers in all source files. Remove filter.c from
1375           EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1376           which are not used right now. Fixes #557709.
1377
1378 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1379
1380         Patch by: Olivier Crete <tester at tester dot ca>
1381
1382         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1383         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1384         Implement getcaps in rtpL16pay. Fixes #556484.
1385
1386 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1387
1388         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1389         (gst_rtp_L16_depay_process):
1390         Check if clock-rate and channels are valid.
1391         Don't ignore the return value of setcaps.
1392         No need to validate the buffer, the base class does that for us.
1393         Use the marker bit to set the DISCONT flag on outgoing buffers.
1394
1395         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1396         Don't ignore the return value of set_outcaps.
1397
1398         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1399         (gst_rtp_ac3_depay_process):
1400         Don't ignore the return value of set_caps.
1401         No need to validate the buffer, the base class does that for us.
1402
1403         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1404         (gst_rtp_amr_depay_process):
1405         * gst/rtp/gstrtpamrdepay.h:
1406         Don't ignore the return value of setcaps.
1407         No need to validate the buffer, the base class does that for us.
1408         No need to set output caps on the buffers, the base class does that for
1409         us.
1410         The subclass will make sure we are negotiated.
1411         
1412         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1413         (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1414         * gst/rtp/gstrtpdvdepay.h:
1415         Clean up caps negotiation.
1416         The subclass will make sure we are negotiated.
1417
1418         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1419         (gst_rtp_g726_depay_process):
1420         Clean up caps negotiation.
1421         Use the marker bit to set the DISCONT flag on outgoing buffers.
1422
1423         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1424         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1425         * gst/rtp/gstrtpg729depay.h:
1426         The subclass will make sure we are negotiated.
1427         Use the marker bit to set the DISCONT flag on outgoing buffers.
1428
1429         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1430         (gst_rtp_gsm_depay_process):
1431         Clean up caps negotiation.
1432         Use the marker bit to set the DISCONT flag on outgoing buffers.
1433
1434         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1435         Clean up caps negotiation.
1436         Don't ignore the return value of set_outcaps.
1437
1438         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1439         (gst_rtp_h263_depay_process):
1440         Clean up caps negotiation.
1441         No need to validate the buffer, the base class does that for us.
1442
1443         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1444         (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1445         * gst/rtp/gstrtph263pay.h:
1446         Don't ignore the return value of set_outcaps.
1447         Do some more timestamps.
1448
1449         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1450         (gst_rtp_h263p_depay_process):
1451         Clean up caps negotiation.
1452         Don't ignore the return value of setcaps.
1453         No need to validate the buffer, the base class does that for us.
1454
1455         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1456         (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1457         (gst_rtp_h263p_pay_handle_buffer):
1458         * gst/rtp/gstrtph263ppay.h:
1459         Don't ignore the return value of set_outcaps.
1460         Do some more timestamps.
1461
1462         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1463         (gst_rtp_h264_depay_process):
1464         Clean up caps negotiation.
1465         Don't ignore the return value of setcaps.
1466         Fix possible caps leak.
1467         No need to validate the buffer, the base class does that for us.
1468
1469         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1470         Add some more debug info.
1471
1472         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1473         (gst_rtp_ilbc_depay_process):
1474         Clean up caps negotiation.
1475         Use the marker bit to set the DISCONT flag on outgoing buffers.
1476
1477         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1478         Clean up caps negotiation.
1479
1480         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1481         (gst_rtp_mp1s_depay_process):
1482         Clean up caps negotiation.
1483         Don't ignore the return value of setcaps.
1484         No need to validate the buffer, the base class does that for us.
1485         No need to set caps on buffers, subclass does that for us.
1486
1487         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1488         (gst_rtp_mp2t_depay_process):
1489         Clean up caps negotiation.
1490         Don't ignore the return value of setcaps.
1491         No need to validate the buffer, the base class does that for us.
1492         No need to set caps on buffers, subclass does that for us.
1493
1494         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1495         (gst_rtp_mp4a_depay_process):
1496         Clean up caps negotiation.
1497         Don't ignore the return value of setcaps.
1498         No need to validate the buffer, the base class does that for us.
1499
1500         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1501         (gst_rtp_mp4a_pay_setcaps):
1502         Don't ignore the return value of set_outcaps.
1503
1504         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1505         (gst_rtp_mp4g_depay_process):
1506         Clean up caps negotiation.
1507         Don't ignore the return value of setcaps.
1508         No need to validate the buffer, the base class does that for us.
1509         No need to set caps on buffers, subclass does that for us.
1510
1511         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1512         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1513         Don't ignore the return value of set_outcaps.
1514
1515         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1516         (gst_rtp_mp4v_depay_process):
1517         Clean up caps negotiation.
1518         Don't ignore the return value of setcaps.
1519         No need to validate the buffer, the base class does that for us.
1520         No need to set caps on buffers, subclass does that for us.
1521
1522         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1523         (gst_rtp_mp4v_pay_setcaps):
1524         Don't ignore the return value of set_outcaps.
1525
1526         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1527         (gst_rtp_mpa_depay_process):
1528         Clean up caps negotiation.
1529         Don't ignore the return value of setcaps.
1530         No need to validate the buffer, the base class does that for us.
1531         Use the marker bit to set the DISCONT flag on outgoing buffers.
1532
1533         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1534         Don't ignore the return value of set_outcaps.
1535
1536         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1537         (gst_rtp_mpv_depay_process):
1538         Clean up caps negotiation.
1539         Actually set output caps.
1540         No need to validate the buffer, the base class does that for us.
1541
1542         * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1543         Don't ignore the return value of set_outcaps.
1544
1545         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1546         (gst_rtp_pcma_depay_process):
1547         Clean up caps negotiation.
1548         Set output buffer duration because we can.
1549         Use the marker bit to set the DISCONT flag on outgoing buffers.
1550
1551         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1552         Don't ignore the return value of set_outcaps.
1553
1554         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1555         (gst_rtp_pcmu_depay_process):
1556         Clean up caps negotiation.
1557         Use the marker bit to set the DISCONT flag on outgoing buffers.
1558
1559         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1560         Don't ignore the return value of set_outcaps.
1561
1562         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1563         (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1564         Clean up caps negotiation.
1565         Set output caps on the pad and header buffers.
1566         Set duration on output buffers because we can.
1567
1568         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1569         Don't ignore the return value of set_outcaps.
1570
1571         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1572         (gst_rtp_sv3v_depay_process):
1573         Clean up caps negotiation.
1574         No need to validate the buffer, the base class does that for us.
1575         No need to set caps out output buffers, subclass does that.
1576
1577         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1578         (gst_rtp_theora_depay_process):
1579         Don't ignore the return value of setcaps.
1580         No need to validate the buffer, the base class does that for us.
1581
1582         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1583         (gst_rtp_theora_pay_flush_packet), (encode_base64),
1584         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1585         (gst_rtp_theora_pay_handle_buffer):
1586         Don't ignore the return value of set_outcaps.
1587
1588         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1589         (gst_rtp_vorbis_depay_process):
1590         Don't ignore the return value of setcaps.
1591         No need to validate the buffer, the base class does that for us.
1592
1593         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1594         Don't ignore the return value of set_outcaps.
1595
1596         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1597         Clean up caps negotiation, don't ignore setcaps return.
1598
1599         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1600         Don't ignore the return value of set_outcaps.
1601
1602 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1603
1604         * gst/matroska/matroska-demux.c:
1605         (gst_matroska_demux_handle_src_event):
1606         Forward unknown events upstream.
1607
1608 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1609
1610         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1611         Add some refcount check
1612
1613         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1614         Don't ignore the result of write(), fixes a  compiler warning for me.
1615
1616         * tests/icles/videobox-test.c: (main):
1617         Make the output a little more pretty.
1618
1619 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1620
1621         * ext/esd/esdmon.c:
1622           Add doc blob.
1623
1624 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1625
1626         * docs/plugins/Makefile.am:
1627         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1628         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1629         * docs/plugins/gst-plugins-good-plugins.args:
1630         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1631         * docs/plugins/gst-plugins-good-plugins.interfaces:
1632         * docs/plugins/inspect/plugin-autodetect.xml:
1633           Add the docs of the new elements.
1634
1635 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1636
1637         * gst/autodetect/gstautoaudiosrc.c:
1638         (gst_auto_audio_src_class_init):
1639         * gst/autodetect/gstautovideosrc.c:
1640         (gst_auto_video_src_class_init):
1641         Fix "Since" tags in the documentation.
1642
1643 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1644
1645         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1646
1647         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1648         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1649         Add support for souphttpsrc to act as a live source. This makes it
1650         possible to get timestamped buffers in combination with the
1651         "do-timestamp" property. Fixes bug #556019.
1652
1653 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1654
1655         * gst/autodetect/Makefile.am:
1656         * gst/autodetect/gstautoaudiosink.c:
1657         * gst/autodetect/gstautoaudiosrc.c:
1658         * gst/autodetect/gstautoaudiosrc.h:
1659         * gst/autodetect/gstautodetect.c:
1660         * gst/autodetect/gstautovideosink.c:
1661         * gst/autodetect/gstautovideosrc.c:
1662         * gst/autodetect/gstautovideosrc.h:
1663           Implement src plugins. Little code/string cleanup in the sinks.
1664           Fixes #523813.
1665
1666 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1667
1668         Patch by: Peter Kjellerstedt <pkj at axis com>
1669
1670         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1671         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1672         Fix a memory leak when pads are requested but the pipeline never
1673         goes into PLAYING.
1674
1675         Correctly remove request pads, no matter if they have collected
1676         data or not.
1677
1678         Fixes bug #557710.
1679
1680 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1681
1682         Patch by: <lrn1986 at gmail dot com>
1683
1684         * gst/udp/gstudpnetutils.h:
1685         Define the correct WINVER so getaddinfo() can be used when using
1686         mingw32. Fixes bug #557294.
1687
1688 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1689
1690         Patch by: <lrn1986 at gmail dot com>
1691
1692         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1693         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1694         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1695         Fix "argument type mismatch" compiler warnings on Windows.
1696         Fixes bug #557293.
1697
1698 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1699
1700         * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1701         Don't calculate the filter coefficients for every single buffer
1702         but only when it's needed. Fixes bug #557260.
1703
1704 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
1705
1706         * configure.ac:
1707         Back to development -> 0.10.11.1
1708
1709 2008-10-25  Jan Schmidt  <jan.schmidt@sun.com>
1710
1711         * gst-plugins-good.doap:
1712         Fix version number of 0.10.11 release in doap file
1713
1714 === release 0.10.11 ===
1715
1716 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
1717
1718         * configure.ac:
1719           releasing 0.10.11, "Secondary Consideration"
1720
1721 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
1722
1723         * configure.ac:
1724         Commit 0.10.10.4 pre-release
1725
1726 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1727
1728         * gst/avi/gstavimux.c:
1729         Fix VPRP chunk setup in avimux.
1730         Fixes: #556010
1731         Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1732
1733 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1734
1735         * gst/videobox/gstvideobox.c:
1736         support dynamically changing properties in videobox
1737         Fixed: #557085
1738         Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1739
1740 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1741
1742         * configure.ac:
1743         0.10.10.3 pre-release
1744
1745 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1746
1747         * tests/check/Makefile.am:
1748         Don't run the states test on pulsesrc and pulsesink
1749
1750 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1751
1752         * configure.ac:
1753         Commit 0.10.10.2 pre-release bump that actually went
1754         out on 2008-10-11
1755
1756 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1757
1758         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1759         Skip entries for streams that don't have a output pad yet, thereby
1760         avoiding calling pad functions with a NULL pad.
1761         Fixes #556424
1762
1763 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1764
1765         * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1766         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1767         Remove problematic and useless refcount check.
1768         Fixes #556381
1769
1770 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1771
1772         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1773         Remove problematic and useless refcount check.
1774         Fixes #556381
1775
1776 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
1777
1778         * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1779         * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1780         Cast some size_t arguments to guint to avoid compiler
1781         warnings on 64-bit systems.
1782
1783 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
1784
1785         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1786         Return TRUE instead of FALSE from the event handler when we swallowed the
1787         event.
1788
1789 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1790
1791         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1792         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1793         Reset header state. Fixes #555321.
1794
1795 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1796
1797         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1798         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1799         * gst/avi/gstavidemux.h:
1800         For timestamping audio packets we need to take into account the
1801         amount of blocks in one entry using the blockalign. Fixes some sync
1802         issues with zero-padded audio blocks in the beginning of avi files.
1803
1804 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1805
1806         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1807         (gst_multi_file_src_query):
1808         Implement DEFAULT and BUFFER position queries. See #555260.
1809
1810 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1811
1812         * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1813         Fix build for systems that don't have XDamage.
1814
1815 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1816
1817         * tests/examples/rtp/client-H263p.sdp:
1818         * tests/examples/rtp/client-H263p.sh:
1819         * tests/examples/rtp/server-VTS-H263p.sh:
1820         Add some more H263p server and client examples.
1821
1822 2008-10-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1823
1824         * configure.ac::
1825           Depend on released versions of core and base.
1826
1827 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1828
1829         * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1830         * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1831         Return -1 instead of 0 in error cases. Fixes #554771.
1832
1833 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1834
1835         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1836         (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1837         Stop leaking the cursor image.
1838         Unref the last_ximage and the cached cursor image on shutdown.
1839         Fixes #551570.
1840
1841 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1842
1843         * sys/v4l2/gstv4l2object.h:
1844         Getting the Class from an instance is not just a matter of casting it to
1845         the class struct but it involves calling G_OBJECT_GET_CLASS on the
1846         instance. Fixes #549784.
1847
1848 2008-10-01  Michael Smith <msmith@songbirdnest.com>
1849
1850         * configure.ac:
1851           Fix libs for linking directsound.
1852         * sys/directsound/gstdirectsoundsink.c:
1853           Fix buffer sizing to prevent racing the ringbuffer at startup.
1854           Add volume property.
1855
1856 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
1857
1858         * ext/pulse/pulsesink.c:
1859         Fix problems with pulsesink randomly erroring with code 'OK' after a
1860         format change on the stream by waiting when disconnecting the stream.
1861
1862 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1863
1864         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1865         (gst_rtp_amr_depay_process):
1866         Mark DISCONT on output buffers when the marker bit signals a new talk
1867         spurt.
1868
1869         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1870         Set the marker bit for buffers with a DISCONT flag to signal a talk
1871         spurt.
1872
1873 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1874
1875         * gst/rtp/Makefile.am:
1876         * gst/rtp/gstrtp.c: (plugin_init):
1877         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1878         (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1879         (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1880         (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1881         (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1882         (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1883         * gst/rtp/gstrtpmp4apay.h:
1884         Added MP4A-LATM payloader to match the depayloader.
1885
1886 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1887
1888         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1889         (gst_videomixer_sink_event):
1890         Handle segments a little better. Fixes #537361.
1891
1892 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1893
1894         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1895         Don't assume the server supports PAUSE by default. Fixes #551048.
1896
1897 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1898
1899         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1900         (gst_udpsrc_set_uri), (gst_udpsrc_start):
1901         Switch on the socket family to get the addrlen size right.
1902
1903 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1904
1905         Patch by: Daniel Franke <df at dfranke dot us>
1906
1907         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1908         OS X's bind() implementation is picky about its addrlen parameter and
1909         fails with EINVAL if it is larger than expected for the socket's address
1910         family. Set the length to the expected length instead. Fixes #553191.
1911
1912 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1913
1914         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1915         Handle the case where we cannot do desribe or when the describe result
1916         does not contain a valid SDP message.
1917
1918 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1919
1920         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1921         Fix setting the qos.
1922
1923 2008-09-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1924
1925         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1926         (gst_qtdemux_chain):
1927         Some 'broken' files out there have atom lengths of zero...
1928         which basically results in qtdemux consuming that atom again and again
1929         until the *end of night* !
1930         Detect that and emits an adequate element error message.
1931
1932 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
1933
1934         * gst/interleave/Makefile.am:
1935         * gst/matroska/Makefile.am:
1936         Fix build flags order.
1937
1938         * tests/check/elements/audioamplify.c: (GST_START_TEST):
1939         * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1940         * tests/check/elements/audioinvert.c: (GST_START_TEST):
1941         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1942         Format fixes.
1943
1944         * tests/check/elements/multifile.c:
1945         Pull in unistd.h
1946
1947 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1948
1949         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1950         (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1951         (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1952         (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1953         (gst_rtp_mp4g_depay_change_state):
1954         * gst/rtp/gstrtpmp4gdepay.h:
1955         Handle interleaved streams by reordering AU in a queue.
1956
1957 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1958
1959         * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1960         (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1961         Change some of the ranges in the caps, mostly for the amount of bits we
1962         can use.
1963         Added a little bitstream parse and use it to parse the AU header fields.
1964         Check for malformed and wrongly sized packets better.
1965         Implement more header field parsing.
1966         Handle the size of fragmented packets correctly.
1967
1968 2008-09-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1969
1970         Patch by: Jonathan Matthew <notverysmart@gmail.com>
1971         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1972         Add mapping for 'tiff' => image/tiff
1973         Fixes #552213
1974
1975 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
1976
1977
1978         * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1979         * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1980           Pretend to care about the result of write() which works around
1981           compiler warnings.
1982
1983 2008-09-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1984
1985         * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1986           Make sure the desired default values are actually set, not only
1987           registered as defaults (actual problem is that the stereo-specific
1988           values are only updated if channels==2, which is not the case yet
1989           when the object is created, so the default values for the
1990           mid-side-stereo and loose-mid-side-stereo settings are never
1991           set in _update_quality()). Makes flacenc create smaller files by
1992           default (for stereo input), and fixes #550791.
1993
1994 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1995
1996         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1997         (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
1998         (qtdemux_parse_trak), (qtdemux_video_caps):
1999         * gst/qtdemux/qtdemux.h:
2000         * gst/qtdemux/qtdemux_fourcc.h:
2001         * gst/qtdemux/qtdemux_types.c:
2002         Add support for video/mj2 mime-type and its additional atoms/boxes.
2003         Fixes #550646.
2004
2005 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
2006
2007         * gst/debug/gsttaginject.c:
2008           Add warning when tags parameter is unparsable and give example for
2009           quoting in the docs.
2010
2011 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2012
2013         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
2014         Add mapping for IMA Loki SDL MJPEG ADPCM codec.
2015         Add some alternative byteswapped mappings that seem to pop up sometimes.
2016         Fixes #550288.
2017
2018 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2019
2020         * po/LINGUAS:
2021         * po/POTFILES.in:
2022         * po/POTFILES.skip:
2023           Add 'ca' to LINGUAS; add some more files with translations and some
2024           files which should be ignored by translation tools.
2025
2026 2008-09-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2027
2028         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2029         * ext/speex/gstspeexdec.h:
2030         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2031         * ext/speex/gstspeexenc.h:
2032         Use integer encoding and decoding functions instead of converting
2033         the integer input to float in the element. The libspeex integer
2034         functions are doing this for us already or, if libspeex was compiled
2035         in integer mode, they're doing everything using integer arithmetics.
2036         Also saves some copying around.
2037
2038 2008-09-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2039
2040         * configure.ac:
2041           Fix --disable-external
2042
2043 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2044
2045         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
2046         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
2047         * ext/wavpack/gstwavpackenc.h:
2048         Handle non-zero start timestamps and stream discontinuities
2049         correctly. This only has an effect if we're muxing into
2050         a container format as the raw WavPack stream must contain
2051         continous sample numbers.
2052
2053 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2054
2055         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2056         Correct the timestamp and granulepos calculation by one Speex
2057         frame.
2058
2059 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2060
2061         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2062         Correctly take the granulepos from upstream if possible and
2063         correctly handle the granulepos in various calculations: the
2064         granulepos is the sample number of the _last_ sample in a frame, not
2065         the first.
2066
2067         * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
2068         (gst_speex_enc_encode), (gst_speex_enc_chain),
2069         (gst_speex_enc_change_state):
2070         * ext/speex/gstspeexenc.h:
2071         Handle non-zero start timestamps in the encoder and detect/handle
2072         stream discontinuities. Fixes bug #547075.
2073
2074 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2075
2076         Patch by: Craig Keogh <cskeogh at adam dot com dot au>
2077
2078         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
2079         Fix compiler warnings caused by passing a string as format string
2080         instead of "%s" and then the string. This is only exposed by -Wformat=2
2081         as used by default on Ubuntu. Fixes bug #550015.
2082
2083 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2084
2085         * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
2086         * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
2087         * gst/audiofx/audiocheblimit.c: (generate_coefficients):
2088         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
2089         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2090           (gst_ebml_read_element_length):
2091         * gst/matroska/matroska-demux.c:
2092           (gst_matroska_demux_check_subtitle_buffer):
2093           Make stuff compile with GST_DISABLE_GST_DEBUG.
2094
2095 2008-08-28  Michael Smith <msmith@songbirdnest.com>
2096
2097         * gst/law/alaw.c:
2098         * gst/law/mulaw.c:
2099           Ref caps before passing to gst_pad_template_new(), since that takes
2100           ownership.
2101
2102 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2103
2104         Patch by: Mersad Jelacic <mersad at axis dot com>
2105
2106         * gst/multipart/multipartdemux.c:
2107         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
2108         Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
2109         demuxer. Fixes #549551.
2110
2111 2008-08-27  Edward Hervey  <edward.hervey@collabora.co.uk>
2112
2113         * sys/osxaudio/gstosxaudiosink.c:
2114         (gst_osx_audio_sink_select_device):
2115         * sys/osxaudio/gstosxaudiosrc.c:
2116         (gst_osx_audio_src_create_ringbuffer),
2117         (gst_osx_audio_src_select_device):
2118         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
2119         Fix the build on macosx.
2120
2121 2008-08-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2122
2123         * gst/icydemux/gsticydemux.c:
2124           Small docs fix: in the example pipeline, we need to pass
2125           iradio-mode=true to the source, so the server actually sends
2126           an ICY stream.
2127
2128 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2129
2130         * sys/osxaudio/gstosxaudio.c:
2131           Oops. Revert more completely.
2132
2133 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2134
2135         * sys/osxaudio/gstosxaudio.c:
2136           Revert accidental element rename from testing.
2137
2138 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2139
2140         * gst-plugins-good.doap:
2141         Pull in 0.10.10 doap entry from release branch
2142
2143 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2144
2145         * configure.ac:
2146         Update version number to reflect 0.10.10 release from
2147         branch.
2148
2149 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2150
2151         * sys/osxaudio/Makefile.am:
2152         * sys/osxaudio/gstosxaudio.c:
2153         * sys/osxaudio/gstosxaudiosink.c:
2154         * sys/osxaudio/gstosxaudiosink.h:
2155         * sys/osxaudio/gstosxaudiosrc.c:
2156         * sys/osxaudio/gstosxaudiosrc.h:
2157         * sys/osxaudio/gstosxringbuffer.c:
2158         * sys/osxaudio/gstosxringbuffer.h:
2159           Rewrite caps setting and ring buffer initialisation.
2160           Previously we never told CoreAudio what format we were going to send it,
2161           so it only worked due to luck, and not at all on some hardware.
2162           Now we explicitly advertise what formats the hardware supports, and then
2163           configure the selected one correctly.
2164
2165 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2166
2167         * sys/v4l2/gstv4l2object.c:
2168         * sys/v4l2/gstv4l2src.c:
2169         * sys/v4l2/gstv4l2src.h:
2170         * sys/v4l2/v4l2_calls.c:
2171         * sys/v4l2/v4l2src_calls.c:
2172           Fix memory leaks. Small code cleanups : No need for empty _init(). No
2173           need to memset instance structures. Some more FIXME's and comments.
2174
2175 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2176
2177         * tests/icles/.cvsignore:
2178           Ignore more.
2179
2180 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2181
2182         * gst/goom/.cvsignore:
2183         * gst/goom2k1/.cvsignore:
2184           Ignore files.
2185
2186 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2187
2188         * ext/cairo/gsttextoverlay.c:
2189           Fix compiler warning.
2190
2191 2008-08-25  David Schleef  <ds@schleef.org>
2192
2193         * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2194
2195 2008-08-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2196
2197         * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2198         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2199         * gst/matroska/matroska-mux.c:
2200         (gst_matroska_mux_video_pad_setcaps),
2201         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2202         Add Real[Audio|Video] support to Matroska containers.
2203         It works fine for:
2204         * decoding real audio/video streams contained in mkv
2205         * 'transmuxing' real (.rm) files into .mkv files
2206         It will not work though for encoding real[audio/video] streams that
2207         don't contain the 'mdpr_data' extra data on the caps.
2208         The reason why this will not work is because I never intended to
2209         duplicate virtually all the 'mdpr' block creation into mkvmux.
2210         Fixes #536067
2211
2212 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2213
2214         * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2215         * gst/law/mulaw-conversion.c:
2216         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2217         (gst_mulawenc_chain):
2218         The encoder can't really renegotiate at the time they perform a
2219         pad-alloc so make the srcpads use fixed caps.
2220         Check the buffer size after a pad-alloc because the returned size might
2221         not be right when the downstream element does not know the size of the
2222         new buffer (capsfilter). Fixes #549073.
2223
2224 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2225
2226         Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2227
2228         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2229         v4l2src doesn't have a property named "norm" so don't try to notify
2230         about changes to that property. The "norm" property and related
2231         code are commented out currently. Fixes bug #549090.
2232
2233 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2234
2235         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2236
2237         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2238         Reprobe devices again instead of taking a cached list as new
2239         devices could've been plugged in. Fixes bug #549062.
2240
2241 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2242
2243         * gst/autodetect/Makefile.am:
2244         Don't link the autodetect plugin with GConf as it doesn't
2245         use GConf. Fixes bug #545463.
2246
2247 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2248
2249         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2250         (gst_ebml_read_element_length), (gst_ebml_read_uint),
2251         (gst_ebml_read_sint), (gst_ebml_read_float),
2252         (gst_ebml_read_header):
2253         Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2254         possible to ignore errors and not post any ERROR messages on
2255         the bus.
2256
2257         * gst/matroska/matroska-demux.c:
2258         (gst_matroska_demux_parse_contents):
2259         Ignore any errors and not just EOS when parsing the contents of
2260         a SeekHead. Errors here are usually caused by truncated files
2261         and playback of the file works fine. Fixes playback of the
2262         audio_only_chapter_seekbroken.mka file from the MPlayer samples
2263         archive.
2264
2265 2008-08-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2266
2267         * gst/multipart/multipartdemux.c:
2268         * gst/multipart/multipartmux.c:
2269         Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2270
2271 2008-08-21  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
2272
2273         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2274           gst_directdraw_sink_bufferpool_clear):
2275           Fix two more buffer ref leaks.
2276
2277 2008-08-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
2278
2279         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2280
2281         * sys/directdraw/gstdirectdrawsink.c:
2282           (gst_directdraw_sink_show_frame):
2283           Fix buffer ref leak.
2284
2285 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2286
2287         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2288         Revert the last commit. wavenc still supports width!=depth for 32 bit
2289         width. Thanks Tim.
2290
2291 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2292
2293         * gst/matroska/matroska-demux.c:
2294         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2295         If the duration of a block is unknown only use the timestamp for the
2296         first lace and use GST_CLOCK_TIME_NONE as duration for the following
2297         laces. Otherwise every lace has the same timestamp which leads to
2298         various problems. Really fixes bug #548831.
2299
2300 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2301
2302         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2303         If we're not allowing width!=depth in wavenc we should also disable
2304         the code that was added to support width!=depth.
2305
2306 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2307
2308         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2309         Don't calculate the default duration of a frame from the audio sampling
2310         rate. This only works for raw audio if every frame contains a single
2311         sample and results in broken buffer durations for other formats
2312         if no specified default duration is given or the blocks have no
2313         duration. Fixes bug #548831.
2314
2315 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2316
2317         * gst/matroska/matroska-demux.c:
2318         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2319         Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2320         are used for text/plain subtitles as a gap-filler in some files.
2321
2322 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2323
2324         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2325         (gst_v4l2_get_caps_info):
2326         Add S910 and PWC formats with a low priority.
2327
2328         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2329         (gst_v4l2src_probe_caps_for_format):
2330         Add more debugging.
2331
2332 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
2333
2334         * ext/flac/gstflacenc.c:
2335           Fix compilation against older libflac versions.
2336
2337 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2338
2339         * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2340         (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2341         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2342         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2343         (gst_pulsemixer_ctrl_set_volume):
2344         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2345         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2346         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2347         (gst_pulsesink_init), (gst_pulsesink_open),
2348         (gst_pulsesink_prepare), (gst_pulsesink_write),
2349         (gst_pulsesink_delay), (gst_pulsesink_reset):
2350         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2351         (gst_pulsesrc_init):
2352         Use GST_BOILERPLATE everywhere and fix coding style at some places.
2353         Fix a locking issue in pulsesink's prepare function.
2354
2355         * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2356         Check if the created channel layout is valid for GStreamer.
2357
2358 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2359
2360         * gst/rtsp/gstrtspgoogle.c:
2361         Things that can happen when your brain is in google mode trying to
2362         deal with their google rtsp server extensions and trying to type your
2363         google mail account.
2364
2365 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2366
2367         * gst/rtsp/Makefile.am:
2368         * gst/rtsp/gstrtsp.c: (plugin_init):
2369         * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2370         (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2371         (_do_init), (gst_rtsp_google_base_init),
2372         (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2373         (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2374         (gst_rtsp_google_extension_init):
2375         * gst/rtsp/gstrtspgoogle.h:
2376         Add google RTSP extension, it can only handle udp and responds with
2377         unsupported if we do anything else. Fixes #546465.
2378
2379         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2380         (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2381         (gst_rtspsrc_create_transports_string),
2382         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2383         (gst_rtspsrc_close), (gst_rtspsrc_pause):
2384         Make transport setup code a bit better using GString.
2385         Add some more debug.
2386         Check for closed connections before doing anything on them.
2387
2388 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2389
2390         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2391         (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2392         (gst_pulsesrc_prepare):
2393         * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2394         (gst_pulse_channel_map_to_gst):
2395         * ext/pulse/pulseutil.h:
2396         If downstream provides no channel layout and >2 channels should be
2397         used use the default layout that pulseaudio chooses and also
2398         add this layout to the caps. Fixes bug #547258.
2399
2400 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2401
2402         Patch by: Peter Kjellerstedt <pkj at axis com>
2403
2404         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2405         (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2406         (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2407         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2408         (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2409         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2410         (gst_udpsrc_set_property):
2411         Avoid leaking internally allocated file descriptors when setting
2412         custom file descriptors. Fixes #543101.
2413
2414 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2415
2416         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2417         Don't try to configure RTCP back to the server when the server did not
2418         give us a valid port number.
2419
2420 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2421
2422         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2423         Use new basetransform method to renegotiate. Fixes #544956.
2424
2425         * tests/icles/Makefile.am:
2426         * tests/icles/videobox-test.c: (make_pipeline), (main):
2427         Add videobox renegotiation example.
2428
2429 2008-08-19  David Schleef  <ds@schleef.org>
2430
2431         * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2432         with sane values.  Fixes #548530.
2433
2434 2008-08-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2435
2436         * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2437         * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2438         The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2439         are already filled with the correct values by
2440         gst_ring_buffer_parse_caps() so there's no need to set them again
2441         with wrong values.
2442
2443 2008-08-16  Edward Hervey  <edward.hervey@collabora.co.uk>
2444
2445         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2446         (gst_avi_demux_read_subindexes_push):
2447         Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2448         and instead of using the 'ix##' nomenclature, use '##ix'.
2449         They're still valid though, this fixes the duration and indexes for
2450         virtually all the ODML files I have.
2451
2452 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
2453
2454         Patch by: Olivier Crete <tester at tester dot ca>
2455
2456         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2457         (gst_rtp_vorbis_depay_process):
2458         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2459         Update the vorbis RTP pay/depay to RFC 5215.
2460         Fixes #547842.
2461
2462 2008-08-14  David Schleef  <ds@schleef.org>
2463
2464         * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2465           with 3:2 pulldown, i.e., 24p.
2466
2467 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2468
2469         * tests/check/elements/level.c: (GST_START_TEST):
2470         Fix compilation some more.
2471
2472 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2473
2474         * configure.ac::
2475           Require -base CVS for wavparse acid chunk parsing.
2476
2477 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2478
2479         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2480         (gst_pulsesink_init), (gst_pulsesink_finalize),
2481         (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2482         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2483         (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2484         * ext/pulse/pulsesink.h:
2485         Add "device-name" property to pulsesink too and currently commented
2486         out and not working support for a "volume" property.
2487
2488 2008-08-13  Thijs Vermeir  <thijsvermeir@gmail.com>
2489
2490         * configure.ac:
2491         Remove more cdio stuff (moved to ugly)
2492
2493 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2494
2495         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2496
2497         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2498         (gst_pulsesrc_get_property):
2499         Add "device-name" property, which provides a human readable string
2500         for the audio device, to make it more consisten with other audio
2501         sources. Fixes bug #547519.
2502
2503 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2504
2505         * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2506         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2507         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2508         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2509         * ext/pulse/pulsemixerctrl.h:
2510         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2511         (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2512         (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2513         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2514         * ext/pulse/pulseprobe.h:
2515         * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2516         * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2517         (gst_pulsesrc_change_state):
2518         Improve debugging a bit by including the parent object in pulsemixerctrl
2519         and pulseprobe objects and using GST_WARNING_OBJECT instead of
2520         GST_WARNING.
2521
2522         Use the parent GObject subclass instead of a random struct as GObject
2523         parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2524         when probing for another property than "device".
2525
2526 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2527
2528         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2529
2530         * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2531         Fix property probing after the device property is set by calling
2532         set_server when the server property changes. Fixes bug #547518.
2533
2534 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2535
2536         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2537
2538         * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2539         (gst_pulsesink_implements_interface_init),
2540         (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2541         (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2542         (gst_pulsesink_get_type):
2543         * ext/pulse/pulsesink.h:
2544         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2545         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2546         (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2547         * ext/pulse/pulsesrc.h:
2548         Implement GstPropertyProbe interface on pulsesink for detecting
2549         sink devices and on pulsesrc for detecting source devices.
2550         Fixes bugs #547227 and #547217.
2551
2552 2008-08-13  Stefan Kost  <ensonic@users.sf.net>
2553
2554         * gst/spectrum/gstspectrum.c:
2555           Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2556
2557 2008-08-13  Edward Hervey  <edward.hervey@collabora.co.uk>
2558
2559         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2560         Properly set the maximum latency value, in the same way it is done in
2561         v4lsrc.
2562         * sys/v4l2/v4l2src_calls.c:
2563         Simplify fraction equality check, no need to use GValues for this.
2564
2565 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2566
2567         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2568         Add warning messages stating exactly why the latency query failed.
2569         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2570         In some cases, the negotiated framerate might be the default one which
2571         is already set internally. But we still need to mark it down in fps_n
2572         and fps_d so that the latency query can happen properly.
2573
2574 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2575
2576         * docs/plugins/inspect/plugin-1394.xml:
2577         Whoops, forgot one doc file for people who can't/don't build the
2578         raw1394 plugin.
2579
2580 2008-08-12  Jan Schmidt  <jan.schmidt@sun.com>
2581
2582         * docs/plugins/Makefile.am:
2583         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2584         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2585         * docs/plugins/inspect/plugin-cdio.xml:
2586         * ext/Makefile.am:
2587         * ext/cdio/Makefile.am:
2588         * ext/cdio/gstcdio.c:
2589         * ext/cdio/gstcdio.h:
2590         * ext/cdio/gstcdiocddasrc.c:
2591         * ext/cdio/gstcdiocddasrc.h:
2592
2593         Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2594         CDDA source to -ugly.
2595
2596         * po/LINGUAS:
2597         * po/POTFILES.in:
2598         * po/id.po:
2599         Pull in new translation from 0.10.9.2 release branch.
2600
2601 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2602
2603         * docs/plugins/Makefile.am:
2604         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2605         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2606         * docs/plugins/gst-plugins-good-plugins.args:
2607         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2608         * docs/plugins/gst-plugins-good-plugins.interfaces:
2609         Integrate documentation for new hdv1394src element.
2610
2611 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2612
2613         * ext/raw1394/Makefile.am:
2614         * ext/raw1394/gst1394.c: (plugin_init):
2615         * ext/raw1394/gsthdv1394src.c: (_do_init),
2616         (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2617         (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2618         (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2619         (gst_hdv1394src_from_raw1394handle),
2620         (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2621         (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2622         (gst_hdv1394src_start), (gst_hdv1394src_stop),
2623         (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2624         (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2625         (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2626         (gst_hdv1394src_uri_handler_init):
2627         * ext/raw1394/gsthdv1394src.h:
2628         mpeg2-ts (HDV) variant of firewire capture element.
2629         Fixes #350830
2630
2631 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2632
2633         * gst/level/gstlevel.c: (gst_level_message_new):
2634          Fix compilation (also known as the classic 'fix code that someone
2635          committed without compiling it first').
2636
2637 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2638
2639         * tests/check/elements/level.c:
2640           Add a test for level in stereo mode.
2641
2642 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2643
2644         * tests/examples/spectrum/demo-audiotest.c:
2645         * tests/examples/spectrum/demo-osssrc.c:
2646           Demo how to draw analyzer results synced to the clock.
2647
2648 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2649
2650         * gst/level/gstlevel.c:
2651           Little renaming (l -> level).
2652
2653         * gst/spectrum/gstspectrum.c:
2654         * gst/spectrum/gstspectrum.h:
2655           Also send full timestamp/duration details here.
2656
2657 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2658
2659         * gst/level/gstlevel.c:
2660         * gst/level/gstlevel.h:
2661           Send same timestamp/duration details as videoanalysis. This gives
2662           applications better chance to sync analysis results with playback.
2663
2664 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2665
2666         * gst/matroska/matroska-mux.c:
2667         (gst_matroska_mux_handle_sink_event),
2668         (flac_streamheader_to_codecdata):
2669         We need to drop one additional buffer for FLAC as the fLaC
2670         marker and STREAMINFO block are merged into one buffer in the caps.
2671
2672         Also don't pretend to support NEWSEGMENT events, otherwise we
2673         will most probably write some invalid data.
2674
2675 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2676
2677         * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2678         (gst_matroska_mux_audio_pad_setcaps):
2679         Add support for muxing FLAC into Matroska containers.
2680         Fixes bug #311586.
2681
2682 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2683
2684         * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2685         Actually provide the variables required for the format string.
2686
2687 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2688
2689         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2690         (gst_matroska_demux_element_send_event),
2691         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2692         * gst/matroska/matroska-demux.h:
2693         Close the current segment if we're doing a non-flushing seek and send
2694         the close-segment and the new segment of the seek from the streaming
2695         thread.
2696
2697 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2698
2699         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2700         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2701         (gst_flac_enc_change_state):
2702         * ext/flac/gstflacenc.h:
2703         Handle non-zero start timestamps correctly, mark header packets as
2704         IN_CAPS and print a warning and suggest using audiorate if stream
2705         discontinuities are detected. When FLAC supports flushing the encoder
2706         somehow this should be done for discontinuities instead.
2707
2708         Remove some unused variables from the instance struct.
2709
2710 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2711
2712         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2713         If seeking failed return the appropiate return value to FLAC.
2714         Otherwise it thinks seeking was successfull and tries to rewrite
2715         parts of the headers which then get appended to the output.
2716
2717 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2718
2719         Patch by: Frederic Crozat <fcrozat@mandriva.org>
2720
2721         * ext/esd/gstesd.c: (plugin_init):
2722         * ext/flac/gstflac.c: (plugin_init):
2723         * ext/shout2/gstshout2.c: (plugin_init):
2724         * ext/wavpack/gstwavpack.c: (plugin_init):
2725         * sys/oss/gstossaudio.c: (plugin_init):
2726         * sys/v4l2/gstv4l2.c: (plugin_init):
2727         Make sure gettext returns translations in UTF-8 encoding rather
2728         than in the current locale encoding (#546822).
2729
2730 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2731
2732         * ext/flac/gstflacdec.c:
2733         Add FIXME for 0.11 to simply output everything with width=32 as given
2734         by FLAC and let audioconvert handle the conversions instead of doing
2735         them in flacdec.
2736
2737 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
2738
2739         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2740         When outputting a pad template range for the size, include a framerate
2741         range too, to avoid 'not a real subset of template caps' errors.
2742
2743 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2744
2745         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2746
2747         * ext/flac/Makefile.am:
2748         * ext/flac/gstflac.c: (plugin_init):
2749         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2750         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2751         (gst_flac_tag_dispose), (gst_flac_tag_init),
2752         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2753         (gst_flac_tag_change_state):
2754         * ext/flac/gstflactag.h:
2755         Port flactag to 0.10, add documentation for it and clean it up a bit.
2756         Fixes bug #413841.
2757
2758         * docs/plugins/Makefile.am:
2759         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2760         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2761         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2762         * docs/plugins/gst-plugins-good-plugins.interfaces:
2763         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2764         * docs/plugins/inspect/plugin-flac.xml:
2765         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2766         * ext/flac/gstflacdec.h:
2767         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2768         * ext/flac/gstflacenc.h:
2769         Add flactag and flacenc to the documentation and mark
2770         the private parts of the flacdec instance structure as private.
2771
2772         Also use gst_element_class_set_details_simple() in flacdec and
2773         flacenc.
2774
2775 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
2776
2777         * gst/qtdemux/qtdemux.c:
2778           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2779           for it but ffmpeg does not.
2780
2781 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2782
2783         * gst/wavparse/gstwavparse.c:
2784           Handle the list chunk and use gst_riff_parse_info() to parse the info
2785           sub-chunk.
2786
2787 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2788
2789         * gst/wavparse/gstwavparse.c:
2790           Handle the acid chunk and send tempo as part of tags. Other fields are
2791           interesting too, but need more tag-definitions. Fixes #545433.
2792
2793 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2794
2795         * gst/wavparse/gstwavparse.c:
2796           Refactor wavparse. Call _reset() from dispose() and move old code from
2797           dispose into reset. This way we don't leak taglists when we abort
2798           parsing. Fix some comments. Move code for skipping a chunk into extra
2799           function. Replace chunk sizes with a const to ease readability.         
2800
2801 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2802
2803         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2804
2805         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2806         Improve udp port setup. Fixes #545710.
2807
2808 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2809
2810         * gst/rtp/Makefile.am:
2811         * gst/rtp/gstrtp.c: (plugin_init):
2812         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2813         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2814         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2815         (gst_rtp_mp1s_depay_set_property),
2816         (gst_rtp_mp1s_depay_get_property),
2817         (gst_rtp_mp1s_depay_change_state),
2818         (gst_rtp_mp1s_depay_plugin_init):
2819         * gst/rtp/gstrtpmp1sdepay.h:
2820         Add MP1S depayloader.
2821
2822         * gst/rtsp/URLS:
2823         Some more sample rtsp streams.
2824
2825 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2826
2827         * gst/rtsp/URLS:
2828         Add another URL.
2829
2830         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2831         * tests/check/elements/rglimiter.c: (GST_START_TEST):
2832         Add some more debug info.
2833
2834 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2835
2836         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2837         Provide cbSize field for audio extra_data size, and take care to
2838         pad extra_data.
2839
2840 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2841
2842         * gst/qtdemux/qtdemux.c:
2843           Return the result of gst_pad_{start,stop}_task instead of hard-coded
2844           TRUE.
2845
2846 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2847
2848         * gst/qtdemux/qtdemux.c:
2849         * gst/qtdemux/qtdemux_fourcc.h:
2850           Add keyword tag support. Fixes #520694 for qtdemux.
2851
2852 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2853
2854         * gst/qtdemux/qtdemux.c:
2855           Add support for tmpo tag (BPM).
2856
2857 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2858
2859         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2860         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2861         Set an estimate for the total number of samples that will be encoded
2862         if possible to help decoders if the streaminfo can't be rewritten
2863         later (like when muxing into Ogg containers).
2864
2865         Add a warning if we get header packets after data packets as those
2866         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2867         work.
2868
2869 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2870
2871         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2872         (gst_flac_dec_write):
2873         Support decoding of all depths between 4 and 32 bits and read the
2874         depth from the streaminfo header if needed. Also support all sampling
2875         rates between 1 and 655350 Hz.
2876
2877         * ext/flac/gstflacenc.c:
2878         (gst_flac_enc_caps_append_structure_with_widths),
2879         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2880         (gst_flac_enc_chain):
2881         * ext/flac/gstflacenc.h:
2882         Support encoding in all bit depths supported by the streamable
2883         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2884         between 1 Hz and 655350 Hz.
2885
2886 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2887
2888         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2889         (gst_flac_enc_sink_getcaps):
2890         Support encoding of up to 8 channels.
2891
2892 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2893
2894         * ext/soup/gstsouphttpsrc.c:
2895         * ext/soup/gstsouphttpsrc.h:
2896         Fix seeking race condition in #540300
2897         Patch By: Wouter Cloetens  <wouter at mind be>
2898
2899 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2900
2901         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2902         (gst_matroska_demux_element_send_event),
2903         (gst_matroska_demux_handle_seek_event),
2904         (gst_matroska_demux_handle_src_event):
2905         When receiving a SEEK event on a specific pad first search for a seek
2906         table entry for the stream of the pad and then fall back to an entry
2907         for a different stream.
2908
2909 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2910
2911         * configure.ac:
2912         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2913         * gst/matroska/matroska-ids.h:
2914         Build depend on core CVS for the attachment tag.
2915
2916 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2917
2918         * configure.ac:
2919         * gst/matroska/Makefile.am:
2920         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2921         (copy_backptr), (lzo1x_decode), (main):
2922         * gst/matroska/lzo.h:
2923         * gst/matroska/matroska-demux.c:
2924         (gst_matroska_demux_read_track_encoding),
2925         (gst_matroska_decompress_data), (gst_matroska_decode_data),
2926         (gst_matroska_decode_buffer),
2927         (gst_matroska_decode_content_encodings),
2928         (gst_matroska_demux_read_track_encodings),
2929         (gst_matroska_demux_add_stream),
2930         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2931         * gst/matroska/matroska-ids.h:
2932         Decode the codec private data and following ContentEncoding if
2933         necessary.
2934
2935         Support bzip2, lzo and header stripped compression. For lzo use the
2936         ffmpeg lzo implementation as liblzo is GPL licensed.
2937         
2938         Fix zlib decompression.
2939
2940 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2941
2942         * gst/matroska/matroska-mux.c:
2943         (gst_matroska_mux_audio_pad_setcaps):
2944         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2945         duration of a frame with the new mpegaudioversion caps field.
2946
2947 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2948
2949         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2950         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2951         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2952         (gst_matroska_demux_stream_from_num),
2953         (gst_matroska_demux_tracknumber_unique),
2954         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2955         (gst_matroska_demux_handle_seek_event),
2956         (gst_matroska_demux_sync_streams),
2957         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2958         (gst_matroska_demux_loop):
2959         * gst/matroska/matroska-demux.h:
2960         Allow an infinite number of stream inside Matroska containers and use
2961         a GPtrArray for storing them instead of allowing "only" 127 streams.
2962
2963 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2964
2965         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2966         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2967         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2968         (gst_ebml_read_element_length), (gst_ebml_peek_id),
2969         (gst_ebml_read_get_length), (gst_ebml_read_skip),
2970         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2971         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2972         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2973         (gst_ebml_read_master), (gst_ebml_read_binary),
2974         (gst_ebml_read_header):
2975         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2976         (gst_ebml_write_element_size), (gst_ebml_write_uint),
2977         (gst_ebml_write_sint), (gst_ebml_write_ascii),
2978         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2979         (gst_ebml_replace_uint):
2980         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2981         (gst_matroska_demux_read_track_encoding),
2982         (gst_matroska_demux_read_track_encodings),
2983         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2984         (gst_matroska_demux_send_event),
2985         (gst_matroska_demux_element_send_event),
2986         (gst_matroska_demux_handle_seek_event),
2987         (gst_matroska_demux_handle_src_event),
2988         (gst_matroska_demux_init_stream),
2989         (gst_matroska_demux_parse_tracks),
2990         (gst_matroska_demux_parse_index_cuetrack),
2991         (gst_matroska_demux_parse_index_pointentry),
2992         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
2993         (gst_matroska_demux_parse_metadata_id_simple_tag),
2994         (gst_matroska_demux_parse_metadata_id_tag),
2995         (gst_matroska_demux_parse_metadata),
2996         (gst_matroska_demux_parse_attached_file),
2997         (gst_matroska_demux_parse_attachments),
2998         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
2999         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
3000         (gst_matroska_demux_push_flac_codec_priv_data),
3001         (gst_matroska_demux_push_xiph_codec_priv_data),
3002         (gst_matroska_demux_push_dvd_clut_change_event),
3003         (gst_matroska_demux_add_mpeg_seq_header),
3004         (gst_matroska_demux_add_wvpk_header),
3005         (gst_matroska_demux_check_subtitle_buffer),
3006         (gst_matroska_decode_buffer),
3007         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3008         (gst_matroska_demux_parse_cluster),
3009         (gst_matroska_demux_parse_contents_seekentry),
3010         (gst_matroska_demux_parse_contents),
3011         (gst_matroska_demux_loop_stream_parse_id),
3012         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
3013         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3014         (gst_matroska_demux_subtitle_caps),
3015         (gst_matroska_demux_change_state):
3016         * gst/matroska/matroska-ids.c:
3017         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
3018         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
3019         (gst_matroska_mux_video_pad_setcaps),
3020         (xiph3_streamheader_to_codecdata),
3021         (vorbis_streamheader_to_codecdata),
3022         (theora_streamheader_to_codecdata),
3023         (gst_matroska_mux_audio_pad_setcaps),
3024         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
3025         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
3026         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
3027         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
3028         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
3029         Fix indention everywhere. A broken indent version has added newlines
3030         after every single declaration some time ago.
3031
3032 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3033
3034         * gst/matroska/matroska-demux.c:
3035         (gst_matroska_demux_loop_stream_parse_id):
3036         If no Tracks are found error out instead of trying it again until the
3037         end of time.
3038
3039 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3040
3041         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
3042         Fix demuxing of raw integer audio. The samples are unsigned only for 8
3043         bit and signed otherwise, not the other way around.
3044
3045 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3046
3047         * gst/matroska/matroska-mux.c:
3048         Add more raw YUV formats to the list of supported formats.
3049
3050 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3051
3052         * gst/matroska/matroska-mux.c:
3053         (gst_matroska_mux_audio_pad_setcaps):
3054         Add support for muxing raw float audio now that the spec defines the
3055         endianness and add support for muxing raw integer audio with 24 and
3056         32 bits.
3057
3058         Allow muxing of more than 8 audio channels.
3059
3060 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3061
3062         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
3063         (gst_matroska_mux_reset), (gst_matroska_mux_start):
3064         Add locking to the global array of used track UIDs to prevent random
3065         crashes if more than a single matrosmux instance is used.
3066
3067         Use 64 bit values for the track UIDs.
3068
3069         Use the global GRandom of GLib instead of creating our own one
3070         for the few random numbers we need every single time.
3071
3072 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3073
3074         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
3075         (gst_flac_dec_setup_stream_decoder),
3076         (gst_flac_dec_update_metadata):
3077         Always post the audio-codec tag, not only if other tags are present.
3078
3079 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
3080
3081         * configure.ac:
3082         Back to development -> 0.10.9.1
3083
3084 === release 0.10.9 ===
3085
3086 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
3087
3088         * configure.ac:
3089           releasing 0.10.9, "Steam Train Rolling"
3090
3091 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
3092
3093         * ext/soup/gstsouphttpsrc.c:
3094         Don't throw an error when soup completes a msg with status
3095         'cancelled', as that indicates we cancelled a request while
3096         shutting down or seeking, and it's not an error.
3097         Fixes: #540300 again.
3098
3099 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
3100
3101         * configure.ac:
3102         0.10.8.4 pre-release
3103
3104 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
3105
3106         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
3107         Fix segment-stop regression.
3108         Add documentation regarding segments in quicktime files by Wim Taymans.
3109         Fixes #544509
3110
3111 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
3112
3113         * configure.ac:
3114         0.10.8.3 pre-release
3115
3116         * po/LINGUAS:
3117         * po/pt_BR.po:
3118         Add pt_BR translation
3119
3120 2008-07-23  Michael Smith <msmith@songbirdnest.com>
3121
3122         * gst/goom/convolve_fx.c:
3123         * gst/goom/filters.c:
3124         * gst/goom/goom_config.h:
3125         * gst/goom/goom_core.c:
3126         * gst/goom/goom_tools.h:
3127           Fix build with MSVC: include glib.h to define inline appropriately,
3128           use header guards where needed.
3129         * gst/udp/gstudpnetutils.c:
3130         * gst/udp/gstudpsrc.c:
3131           Fix build with MSVC: use WSA* constants/functions where appropriate, use
3132           g_snprintf rather than snprintf.
3133           Fixes #544433.
3134
3135 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
3136
3137         * gst/debug/gsttaginject.c:
3138         * gst/debug/gsttaginject.h:
3139           Sent tags in _transform_ip() instead of _start(). Fixes #543404
3140           partially.
3141
3142 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3143
3144         * configure.ac:
3145         0.10.8.2 pre-release
3146
3147 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3148
3149         * ext/Makefile.am:
3150         Finish hooking up pulseaudio plugin to the build.
3151
3152         * ext/pulse/pulsemixerctrl.c:
3153         Fix compilation error.
3154
3155 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3156
3157         * po/LINGUAS:
3158         * po/lt.po:
3159         Add new lithunian translation, and add french to the LINGUAS
3160         file.
3161
3162 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3163
3164         * ext/soup/gstsouphttpsrc.c:
3165         Fix Soup HTTP source seeking.
3166         Patch By: Wouter Cloetens  <wouter at mind be>
3167         Fixes: #540300
3168
3169         * tests/check/elements/.cvsignore:
3170         Ignore new check programs.
3171
3172 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3173
3174         * configure.ac:
3175         * docs/plugins/Makefile.am:
3176         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3177         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3178         * docs/plugins/gst-plugins-good-plugins.args:
3179         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3180         * docs/plugins/gst-plugins-good-plugins.interfaces:
3181         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3182         * docs/plugins/inspect/plugin-interleave.xml:
3183         * docs/plugins/inspect/plugin-replaygain.xml:
3184         * tests/check/Makefile.am:
3185
3186         Move replaygain and interleave plugins from -bad.
3187         Fixes: #543406
3188         Fixes: #536228
3189
3190 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3191
3192         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3193         (qtdemux_parse_trak):
3194         Revert ISO base media spec based pixel-aspect-ratio calculation.
3195         Fixes #543300.
3196
3197 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
3198
3199         * sys/osxvideo/osxvideosink.m:
3200         Fix minor build issues on macosx.
3201         Fixes #543054
3202
3203 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3204
3205         * configure.ac::
3206         * ext/taglib/Makefile.am::
3207           Only use -Wno-attributes (which is there to work around a
3208           bug in the taglib 1.5 headers) if the c++ compiler actually
3209           supports it (#543255).
3210
3211 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3212
3213         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3214
3215         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3216           Avoid compiler warning by initialising variable to NULL (#543259).
3217
3218 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3219
3220         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3221         Don't pass NULL taglists to gst_tag_list_is_empty().
3222
3223 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3224
3225         * tests/check/elements/cmmldec.c: (GST_START_TEST):
3226         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3227         (rtp_pipeline_run):
3228         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3229         Don't use declarations after statements.
3230
3231 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3232
3233         * ext/jpeg/gstjpegdec.c:
3234         Align documentation with reality.
3235
3236 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3237
3238         * gst/udp/gstudpnetutils.c:
3239         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3240         old value (1) if it's not defined which should not cause any problems
3241         as we're using it internal only anyway.
3242
3243 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3244
3245         Patch by: Alessandro Decina <alessandro at nnva dot org>
3246
3247         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3248         Fix build of avidemux on big endian architectures.
3249
3250 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3251
3252         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3253
3254         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3255         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
3256
3257 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3258
3259         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3260         (qtdemux_parse_trak):
3261         Set pixel-aspect-ratio in caps using display width and height
3262         provided in track.
3263
3264 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3265
3266         * configure.ac:
3267         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3268         flags that are invalid for C++. Fixes bug #516509.
3269
3270 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3271
3272         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3273         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3274         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3275         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3276         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3277         * tests/examples/equalizer/demo.c: (message_handler):
3278         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3279         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3280         Don't use declarations after statements and variable length arrays.
3281
3282 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3283
3284         Patch by: Daniel Drake <dsd at gentoo dot org>
3285
3286         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3287         (gst_v4l2src_get_nearest_size):
3288         Try progressive video if interlaced fails. Fixes bug #541956
3289         and the usage of v4l2src on OLPC.
3290
3291 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3292
3293         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3294         (gst_rtp_speex_depay_process):
3295         * gst/rtp/gstrtpspeexdepay.h:
3296         Revert last change: Only the jitterbuffer is able to convert RTP to
3297         Gstreamer timestamps and normal (de)payloaders should simply copy it.
3298         Reopens bug #541787.
3299
3300 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
3301
3302         * gst/rtp/gstrtpvrawdepay.c:
3303           Include stdlib.h for atoi().
3304
3305         * gst/rtsp/gstrtspsrc.c:
3306           Use floating point math for latencies < 0 sec in log output.
3307
3308 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3309
3310         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3311
3312         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3313         (gst_rtp_speex_depay_process):
3314         * gst/rtp/gstrtpspeexdepay.h:
3315         Take timestamp from the RTP packet as a first step to fix problems
3316         with transmission over RTP when the network is not reliable.
3317         Fixes bug #541787.
3318
3319 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3320
3321         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3322
3323         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3324         Fix parsing of udp:// URIs containing IPv6 addresses.
3325         Fixes bug #541650.
3326
3327 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3328
3329         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3330         Do not leak incoming buffers.
3331
3332 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3333
3334         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3335
3336         * configure.ac:
3337         Fix build of the RTP plugin with mingw32 by linking to ws2_32
3338         for htons() and htonl(). Fixes bug #541412.
3339
3340 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3341
3342         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3343         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3344         (gst_matroska_demux_element_query),
3345         (gst_matroska_demux_handle_src_query),
3346         (gst_matroska_demux_handle_seek_event):
3347         Handle position and duration query in DEFAULT format if the
3348         pad's track has a default frame duration set.
3349
3350         Fix seeking now that the segment's duration doesn't contain the
3351         (possibly wrong or inaccurate) duration of the Matroska file.
3352
3353 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3354
3355         * gst/matroska/ebml-read.c: (_ext2dbl):
3356         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3357         in math.h except on MSVC where it is defined in xmath.h.
3358         Fixes compilation with MSVC.
3359
3360 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3361
3362         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3363         (gst_matroska_demux_handle_src_query),
3364         (gst_matroska_demux_parse_info),
3365         (gst_matroska_demux_loop_stream_parse_id):
3366         * gst/matroska/matroska-demux.h:
3367         Don't set the segment duration to the duration from the Matroska
3368         header as this value could be wrong and is just informational.
3369
3370 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3371
3372         * gst/matroska/matroska-demux.c:
3373         (gst_matroska_demux_loop_stream_parse_id):
3374         If no Tracks element is found until the first Cluster is found
3375         search it and error out if none is found in the complete file.
3376
3377 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3378
3379         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3380         Resync non-subtitle tracks too if a too large gap compared to other
3381         tracks is detected.
3382
3383 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3384
3385         * gst/rtp/Makefile.am:
3386         * gst/rtp/gstrtp.c: (plugin_init):
3387         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3388         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3389         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3390         (gst_rtp_vraw_depay_change_state),
3391         (gst_rtp_vraw_depay_plugin_init):
3392         * gst/rtp/gstrtpvrawdepay.h:
3393         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3394         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3395         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3396         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3397         (gst_rtp_vraw_pay_plugin_init):
3398         * gst/rtp/gstrtpvrawpay.h:
3399         Add raw video pay and depayloaders, see RFC4175.
3400
3401 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
3402
3403         * ext/libpng/gstpngdec.c:
3404         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3405         whatever it returned.
3406
3407 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3408
3409         * gst/avi/avi-ids.h:
3410         Add vprp chunk related structures.
3411         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3412         (gst_avi_demux_parse_stream):
3413         Parse optional vprp chunk and add calculated pixel-aspect-ratio
3414         to caps.  Fixes #539482.
3415         * gst/avi/gstavimux.h:
3416         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3417         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3418         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3419
3420 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3421
3422         * tests/check/elements/avimux.c: (check_avimux_pad):
3423         Adjust avimux unit test according to increased streamheader size.
3424
3425 2008-06-27  David Schleef  <ds@schleef.org>
3426
3427         * gst/qtdemux/qtdemux.c: Add Dirac stream type
3428
3429 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3430
3431         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3432         * gst/avi/gstavimux.h:
3433         Add 8 bytes to current streamheader to make for a complete one
3434         and to make more players happy.  Fixes #519460.
3435
3436 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
3437
3438         * sys/v4l2/v4l2_calls.c::
3439           Don't include unused gstv4l2xoverlay.h. Fixes build
3440           in case where X11 headers are not installed.
3441
3442 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3443
3444         * ext/dv/gstdv.c: (plugin_init):
3445         Fix compilation.
3446
3447 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
3448
3449         * ext/dv/gstdv.c: (plugin_init):
3450         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3451         DV decoder available.
3452         Fixes #532393
3453
3454 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3455
3456         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3457         Call getsockname() after the call to bind() to get updated values
3458         for the port, etc. This fixes the usage of udpsrc on anonymous
3459         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3460         Thanks to Aurelien Grimaud for pointing out the obvious fix.
3461
3462 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3463
3464         * tests/check/pipelines/wavpack.c: (bus_handler):
3465         Remove workaround for a bug in identity that is fixed in 0.10.20.
3466
3467 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3468
3469         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3470
3471         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3472         Fix HTTP auth support with user/password passed via the URI.
3473         Fixes bug #540067.
3474
3475 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
3476
3477         * configure.ac:
3478           Depend on released versions of core and -base.
3479
3480 2008-06-23  Julien Moutte  <julien@fluendo.com>
3481
3482         * gst/matroska/matroska-demux.c:
3483         (gst_matroska_demux_read_track_encoding),
3484         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3485         format strings in macros. (makes it build on OS X again...)
3486
3487 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3488
3489         * gst/rtp/gstrtptheorapay.c:
3490         * gst/udp/gstmultiudpsink.c:
3491           Added debug.
3492
3493 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
3494
3495         * configure.ac: switch v4l2src over to the normal build instead of
3496         being 'experimental'. Fixes bug #536831.
3497
3498 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3499
3500         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3501         Remove unused variable so that we can compile again.
3502
3503 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
3504
3505         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3506         No need to check for audio/G723 and audio/32KADPCM here as they are
3507         no longer supported.
3508
3509 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3510
3511         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3512         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3513         Use G_GINT64_CONSTANT, this fixes the duration query on files without
3514         known length.
3515
3516 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3517
3518         * gst/matroska/matroska-demux.c:
3519         (gst_matroska_demux_add_wvpk_header),
3520         (gst_matroska_demux_audio_caps):
3521         * gst/matroska/matroska-ids.h:
3522         Fix demuxing of WavPack files. Muxing is still broken.
3523
3524 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3525
3526         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3527         (gst_matroska_demux_add_mpeg_seq_header),
3528         (gst_matroska_demux_add_wvpk_header),
3529         (gst_matroska_demux_check_subtitle_buffer),
3530         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3531         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3532         (gst_matroska_demux_subtitle_caps):
3533         * gst/matroska/matroska-ids.h:
3534         Add a "vfunc" to the track context for postprocessing frames and
3535         convert the wavpack and subtitle postprocessing to this vfunc.
3536         Copy buffer flags in those functions to the new buffers too.
3537
3538         Parse CodecState elements of Blocks.
3539
3540         Add a postprocessing function for MPEG video that adds the sequence
3541         header from the codec private data or codec state to the frames if
3542         it's not already there.
3543
3544 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3545
3546         * gst/matroska/matroska-demux.c:
3547         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3548         If a gap of more than 1/2 second is found in one stream send a
3549         NEWSEGMENT event to not stall the pipeline if the gap is too large.
3550         This also fixes Matroska files where the first buffer doesn't start
3551         at timestamp 0. Fixes bug #429322.
3552
3553         The duration of a block is the default duration multiplied with the
3554         number of laces. Every lace is one frame and the default duration
3555         is the duration of one frame. This fixes playback of files that use
3556         lacing for some tracks.
3557
3558 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3559
3560         * gst/matroska/matroska-demux.c:
3561         (gst_matroska_demux_parse_contents_seekentry):
3562         Update FIXME/TODOs and only ignore EOS at the central, important place
3563         instead of several places.
3564
3565 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3566
3567         * gst/rtp/gstrtpg726pay.c:
3568         Fix caps, See #538891.
3569
3570 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3571
3572         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3573         (gst_matroska_demux_stream_from_num),
3574         (gst_matroska_demux_encoding_cmp),
3575         (gst_matroska_demux_encoding_order_unique),
3576         (gst_matroska_demux_read_track_encoding),
3577         (gst_matroska_demux_read_track_encodings),
3578         (gst_matroska_demux_tracknumber_unique),
3579         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3580         (gst_matroska_demux_parse_tracks),
3581         (gst_matroska_demux_parse_index_cuetrack),
3582         (gst_matroska_demux_parse_index_pointentry),
3583         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3584         (gst_matroska_demux_parse_metadata_id_simple_tag),
3585         (gst_matroska_demux_parse_metadata_id_tag),
3586         (gst_matroska_demux_parse_metadata),
3587         (gst_matroska_demux_parse_attached_file),
3588         (gst_matroska_demux_parse_attachments),
3589         (gst_matroska_demux_parse_chapters),
3590         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3591         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3592         (gst_matroska_demux_parse_cluster),
3593         (gst_matroska_demux_parse_contents_seekentry),
3594         (gst_matroska_demux_parse_contents),
3595         (gst_matroska_demux_loop_stream_parse_id),
3596         (gst_matroska_demux_loop):
3597         Improve debug output everywhere and fix the EOS logic.
3598
3599         Check the values of the ContentEncoding elements more strictly and
3600         don't use tracks for which it's invalid.
3601
3602         Check that the track number is unique for this stream.
3603
3604         Check that seek positions are below G_MAXINT64 as our seeks are
3605         int64-based and overflows will fail badly.
3606
3607         After seeks also don't push SimpleBlocks until the first one
3608         containing a keyframe is found. Before this was done only for normal
3609         Blocks.
3610
3611         Update some FIXME/TODOs.
3612         
3613         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3614         (gst_ebml_read_utf8), (gst_ebml_read_header):
3615         Improve debug output.
3616
3617         * gst/matroska/matroska-ids.c:
3618         (gst_matroska_track_init_video_context):
3619         * gst/matroska/matroska-ids.h:
3620         * gst/matroska/matroska-mux.c:
3621         (gst_matroska_mux_video_pad_setcaps):
3622         Remove eye mode and don't parse it anymore. We can't use that
3623         information in GStreamer yet so it's useless.
3624
3625
3626 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3627
3628         Patch by: Mersad Jelacic <mersad at axis dot com>
3629
3630         * gst/rtp/Makefile.am:
3631         * gst/rtp/gstrtp.c: (plugin_init):
3632         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3633         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3634         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3635         (gst_rtp_g726_depay_plugin_init):
3636         * gst/rtp/gstrtpg726depay.h:
3637         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3638         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3639         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3640         * gst/rtp/gstrtpg726pay.h:
3641         Added G726 pay/depayloaders. Fixes #538891.
3642
3643 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3644
3645         * gst/rtsp/URLS:
3646         Some more urls.
3647
3648         * gst/smpte/barboxwipes.c:
3649         Add a comment
3650
3651         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3652         Fix typo, add audioresample to the pipeline.
3653
3654 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3655
3656         * ext/libmng/Makefile.am:
3657         * ext/libmng/gstmng.c: (plugin_init):
3658         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3659         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3660         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3661         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3662         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3663         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3664         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3665         (gst_mng_dec_change_state):
3666         * ext/libmng/gstmngdec.h:
3667         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3668         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3669         (gst_mng_enc_init), (gst_mng_enc_chain),
3670         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3671         * ext/libmng/gstmngenc.h:
3672         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3673         bits ifdeffed out still.
3674
3675 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3676
3677         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3678         When comparing index elements with the same time compare their
3679         block number.
3680
3681 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
3682
3683         * gst/matroska/matroska-demux.c:
3684           (gst_matroska_demux_parse_attached_file)
3685           Init variable to NULL to avoid compiler warning.
3686
3687 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3688
3689         * gst/matroska/Makefile.am:
3690         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3691         (gst_matroska_demux_parse_attached_file),
3692         (gst_matroska_demux_parse_attachments),
3693         (gst_matroska_demux_parse_contents_seekentry),
3694         (gst_matroska_demux_loop_stream_parse_id):
3695         * gst/matroska/matroska-demux.h:
3696         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3697         * gst/matroska/matroska-ids.h:
3698         * gst/matroska/matroska.c: (plugin_init):
3699         Parse Attachments and post them as GST_TAG_IMAGE if we detect
3700         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3701         and description of the attachments in the caps. Fixes bug #537622.
3702
3703 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
3704
3705         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3706         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3707         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3708         (gst_speex_enc_src_query), (gst_speex_enc_init),
3709         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3710         (gst_speex_enc_chain), (gst_speex_enc_get_property),
3711         (gst_speex_enc_set_property):
3712         Add mode property.
3713         Some cleanups, add more debug info.
3714         Add latency query.
3715
3716 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3717
3718         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3719         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3720         If we get less bytes than requested we can't do anything except doing
3721         our EOS logic.
3722
3723 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3724
3725         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3726         (gst_matroskademux_do_index_seek),
3727         (gst_matroska_demux_parse_index_cuetrack),
3728         (gst_matroska_demux_parse_index_pointentry),
3729         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3730         (gst_matroska_demux_parse_metadata):
3731         * gst/matroska/matroska-demux.h:
3732         * gst/matroska/matroska-ids.h:
3733         Use a GArray for storing the Cue (i.e. seek) information, store
3734         the CueTrackPositions for every track, store the block number
3735         and optimize searching in the array by sorting it after the last
3736         element was added.
3737
3738         Fix a small memory leak when trying to parse a tags element that was
3739         already parsed.
3740
3741 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3742
3743         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3744         (gst_matroska_mux_start), (gst_matroska_mux_finish),
3745         (gst_matroska_mux_write_data):
3746         * gst/matroska/matroska-mux.h:
3747         Don't write another SeekHead which indexes all Clusters to the end of
3748         the file. This isn't useful for anything and just increases filesize.
3749
3750 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3751
3752         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3753         Prevent unaligned memory access when reading floats.
3754
3755 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3756
3757         * gst/matroska/ebml-read.c:
3758         * gst/matroska/ebml-read.h:
3759         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3760         (gst_matroska_demux_parse_metadata):
3761         * gst/matroska/matroska-demux.h:
3762         Make sure that every Tags element is only parsed once and it's
3763         containing tags are only posted once.
3764
3765 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3766
3767         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3768         (gst_ebml_read_header):
3769         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3770         (gst_matroska_demux_parse_tracks),
3771         (gst_matroska_demux_parse_index_cuetrack),
3772         (gst_matroska_demux_parse_index_pointentry),
3773         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3774         (gst_matroska_demux_parse_metadata_id_simple_tag),
3775         (gst_matroska_demux_parse_metadata_id_tag),
3776         (gst_matroska_demux_parse_metadata),
3777         (gst_matroska_demux_parse_attachments),
3778         (gst_matroska_demux_parse_chapters),
3779         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3780         (gst_matroska_demux_parse_cluster),
3781         (gst_matroska_demux_parse_contents_seekentry),
3782         (gst_matroska_demux_parse_contents),
3783         (gst_matroska_demux_loop_stream_parse_id):
3784         Handle EBML elements like Void or CRC32 in the EbmlRead base class
3785         already. They're not useful in the matroska parser and only cause
3786         additional code.
3787
3788 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
3789
3790         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3791         (gst_ebml_finalize), (gst_ebml_read_change_state),
3792         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3793         * gst/matroska/matroska-demux.c:
3794         (gst_matroska_demux_parse_contents_seekentry):
3795         Reverse the level list as we usually are only interested in the
3796         first element or want to add a new first element. Having the
3797         first element stored at the end and calling g_list_last() and
3798         g_list_append() is more expensive.
3799
3800         Also use GSlice for allocating the GstEbmlLevel structs.
3801
3802 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
3803
3804         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3805           (gst_tag_inject_class_init), (gst_tag_inject_init):
3806           Don't unref NULL taglist in finalize. Don't use c++ style
3807           comments.
3808
3809 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3810
3811         * gst/matroska/matroska-demux.c:
3812         (gst_matroska_demux_parse_metadata_id_simple_tag):
3813         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3814         (gst_matroska_mux_write_data):
3815         Use gst_value_serialize() and gst_value_deserialize() for transforming
3816         tags from some GType to a string and the other way around. The default
3817         transformations in GLib don't include transformations from string to
3818         number types.
3819
3820 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3821
3822         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3823         (gst_matroska_demux_parse_tracks),
3824         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3825         (gst_matroska_demux_parse_attachments),
3826         (gst_matroska_demux_parse_chapters),
3827         (gst_matroska_demux_parse_contents_seekentry),
3828         (gst_matroska_demux_loop_stream_parse_id):
3829         * gst/matroska/matroska-demux.h:
3830         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3831         Tags multiple times. The first ones can appear more than once but must
3832         contain the same content as the first for backup purposes so we ignore
3833         all but the first one. Tags can appear multiple times with different
3834         content.
3835
3836         Jump to all elements except Clusters that are available from a
3837         SeekHead to make it more likely to have all required informations
3838         before getting to the first Clusters.
3839
3840         Add dummy functions for parsing Attachments and Chapters.
3841
3842 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3843
3844         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3845         (gst_udpsrc_create), (gst_udpsrc_set_property),
3846         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3847         * gst/udp/gstudpsrc.h:
3848         Add property to control automatic join/leave of multicast groups.
3849         Add G_LIKELY.
3850         Remove setting caps on buffers explicitly, basesrc does that for us now.
3851         Improve debug info.
3852         Convert some non-fatal error into warnings.
3853         Use g_ntohs for better portability.
3854         Leave multicast groups when stopping.
3855         When using external sockets, use getsockname() on them to fill up the
3856         addr structure before calling methods that use the structure.
3857         Should all fix #536903.
3858         API: GstUDPSrc::auto-multicast property
3859
3860 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3861
3862         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3863         Use g_ntohl for better portability.
3864
3865 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3866
3867         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3868         (gst_multiudpsink_remove):
3869         Fix a typo and do some small cleanups.
3870
3871 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3872
3873         Patch by: Olivier Crete <tester at tester dot ca>
3874
3875         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3876         Make the delivery-method mandatory on the caps and only accept inline
3877         for now.
3878         Reverse strcmp checks for delivery-method.
3879
3880         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3881         Make delivery method optional when parsing caps and note this in the
3882         caps.
3883         Reverse strcmp checks for delivery-method.
3884
3885         * gst/rtp/gstrtpvorbispay.c:
3886         Update a comment to note that the delivery-method is optional, 
3887         Fixes #537675.
3888
3889 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3890
3891         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3892         Set udpsrc for receiving data from multicast groups to PAUSED instead of
3893         leaving them in READY. Fixes #537832.
3894
3895 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3896
3897         * gst/avi/gstavimux.c:
3898           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3899           for a random constant in tagmuxing code.
3900
3901 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3902
3903         * gst/debug/gsttaginject.c:
3904         * gst/debug/gsttaginject.h:
3905           Now actually adding the new element.
3906
3907 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3908
3909         * docs/plugins/Makefile.am:
3910         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3911         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3912         * docs/plugins/gst-plugins-good-plugins.args:
3913         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3914         * docs/plugins/gst-plugins-good-plugins.interfaces:
3915         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3916         * docs/plugins/inspect/plugin-aasink.xml:
3917         * docs/plugins/inspect/plugin-alaw.xml:
3918         * docs/plugins/inspect/plugin-alpha.xml:
3919         * docs/plugins/inspect/plugin-alphacolor.xml:
3920         * docs/plugins/inspect/plugin-annodex.xml:
3921         * docs/plugins/inspect/plugin-apetag.xml:
3922         * docs/plugins/inspect/plugin-audiofx.xml:
3923         * docs/plugins/inspect/plugin-auparse.xml:
3924         * docs/plugins/inspect/plugin-autodetect.xml:
3925         * docs/plugins/inspect/plugin-avi.xml:
3926         * docs/plugins/inspect/plugin-cacasink.xml:
3927         * docs/plugins/inspect/plugin-cairo.xml:
3928         * docs/plugins/inspect/plugin-cdio.xml:
3929         * docs/plugins/inspect/plugin-cutter.xml:
3930         * docs/plugins/inspect/plugin-debug.xml:
3931         * docs/plugins/inspect/plugin-dv.xml:
3932         * docs/plugins/inspect/plugin-efence.xml:
3933         * docs/plugins/inspect/plugin-effectv.xml:
3934         * docs/plugins/inspect/plugin-equalizer.xml:
3935         * docs/plugins/inspect/plugin-esdsink.xml:
3936         * docs/plugins/inspect/plugin-flac.xml:
3937         * docs/plugins/inspect/plugin-flxdec.xml:
3938         * docs/plugins/inspect/plugin-gamma.xml:
3939         * docs/plugins/inspect/plugin-gconfelements.xml:
3940         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3941         * docs/plugins/inspect/plugin-goom.xml:
3942         * docs/plugins/inspect/plugin-goom2k1.xml:
3943         * docs/plugins/inspect/plugin-halelements.xml:
3944         * docs/plugins/inspect/plugin-icydemux.xml:
3945         * docs/plugins/inspect/plugin-id3demux.xml:
3946         * docs/plugins/inspect/plugin-jpeg.xml:
3947         * docs/plugins/inspect/plugin-level.xml:
3948         * docs/plugins/inspect/plugin-matroska.xml:
3949         * docs/plugins/inspect/plugin-monoscope.xml:
3950         * docs/plugins/inspect/plugin-mulaw.xml:
3951         * docs/plugins/inspect/plugin-multifile.xml:
3952         * docs/plugins/inspect/plugin-multipart.xml:
3953         * docs/plugins/inspect/plugin-navigationtest.xml:
3954         * docs/plugins/inspect/plugin-ossaudio.xml:
3955         * docs/plugins/inspect/plugin-png.xml:
3956         * docs/plugins/inspect/plugin-quicktime.xml:
3957         * docs/plugins/inspect/plugin-rtp.xml:
3958         * docs/plugins/inspect/plugin-rtsp.xml:
3959         * docs/plugins/inspect/plugin-smpte.xml:
3960         * docs/plugins/inspect/plugin-soup.xml:
3961         * docs/plugins/inspect/plugin-spectrum.xml:
3962         * docs/plugins/inspect/plugin-speex.xml:
3963         * docs/plugins/inspect/plugin-taglib.xml:
3964         * docs/plugins/inspect/plugin-udp.xml:
3965         * docs/plugins/inspect/plugin-video4linux2.xml:
3966         * docs/plugins/inspect/plugin-videobalance.xml:
3967         * docs/plugins/inspect/plugin-videobox.xml:
3968         * docs/plugins/inspect/plugin-videocrop.xml:
3969         * docs/plugins/inspect/plugin-videoflip.xml:
3970         * docs/plugins/inspect/plugin-videomixer.xml:
3971         * docs/plugins/inspect/plugin-wavenc.xml:
3972         * docs/plugins/inspect/plugin-wavpack.xml:
3973         * docs/plugins/inspect/plugin-wavparse.xml:
3974         * docs/plugins/inspect/plugin-ximagesrc.xml:
3975         * gst/debug/Makefile.am:
3976         * gst/debug/breakmydata.c:
3977         * gst/debug/efence.c:
3978         * gst/debug/gstdebug.c:
3979         * gst/debug/gstnavseek.c:
3980         * gst/debug/gstpushfilesrc.c:
3981         * gst/debug/gstpushfilesrc.h:
3982         * gst/debug/negotiation.c:
3983         * gst/debug/progressreport.c:
3984         * gst/debug/progressreport.h:
3985         * gst/debug/rndbuffersize.c:
3986         * gst/debug/testplugin.c:
3987           Remove dummy plugin_init. Remove some undefined entries from doc-
3988           section file. Add taginject element and rebuild docs for it.
3989
3990 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3991
3992         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
3993         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
3994         Update the counter for the number of streams when pads are added or
3995         removed. This will make sure that a seek table is generated for
3996         files with just one audio stream.
3997
3998 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3999
4000         * gst/matroska/matroska-demux.c:
4001         (gst_matroska_demux_parse_metadata_id_simple_tag):
4002         * gst/matroska/matroska-ids.h:
4003         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
4004         Add some more tags, improve debugging a bit and make sure that
4005         GValue transformation has succeeded before using the result
4006         as a tag.
4007
4008 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
4009
4010         Patch by: Olivier Crete <tester at tester dot ca>
4011
4012         * gst/rtp/gstrtptheorapay.c:
4013         The Theora RTP payloader only supports the "inline" delievery method
4014         so let's declare this on the caps of the static pad template.
4015         Fixes bug #537675.
4016
4017 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4018
4019         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4020         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
4021         Remove bogus check.
4022
4023 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4024
4025         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4026         (gst_videomixer_blend_buffers):
4027         Use stream_time to synchronize the object properties.
4028         Use running_time of the master pad to timestamp outgoing buffers.
4029         Fix the initial segment event to extend an unknown amount of time.
4030         Fixes #537361.
4031
4032 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4033
4034         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
4035         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
4036         (gst_avi_demux_calculate_durations_from_index),
4037         (gst_avi_demux_stream_header_push),
4038         (gst_avi_demux_stream_header_pull):
4039         Try to ignore unparsable/unknown streams and give a warning instead of
4040         erroring out. Fixes #537377.
4041
4042 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4043
4044         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
4045         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
4046
4047         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4048         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4049         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4050         (gst_matroska_demux_read_track_encodings),
4051         (gst_matroska_demux_add_stream),
4052         (gst_matroska_demux_handle_src_query),
4053         (gst_matroska_demux_init_stream),
4054         (gst_matroska_demux_parse_index_cuetrack),
4055         (gst_matroska_demux_parse_index_pointentry),
4056         (gst_matroska_demux_parse_info),
4057         (gst_matroska_demux_parse_metadata_id_simple_tag),
4058         (gst_matroska_demux_parse_metadata),
4059         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4060         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4061         (gst_matroska_demux_parse_cluster),
4062         (gst_matroska_demux_parse_contents_seekentry),
4063         (gst_matroska_demux_loop_stream_parse_id),
4064         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4065         (gst_matroska_demux_audio_caps),
4066         (gst_matroska_demux_subtitle_caps):
4067         * gst/matroska/matroska-demux.h:
4068         * gst/matroska/matroska-ids.c:
4069         (gst_matroska_track_init_subtitle_context):
4070         * gst/matroska/matroska-ids.h:
4071         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4072         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
4073         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
4074         (gst_matroska_mux_video_pad_setcaps),
4075         (gst_matroska_mux_audio_pad_setcaps),
4076         (gst_matroska_mux_subtitle_pad_setcaps),
4077         (gst_matroska_mux_request_new_pad),
4078         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
4079         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
4080         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
4081         (gst_matroska_mux_set_property):
4082         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
4083         elements, do some checks for valid values in the demuxer, handle
4084         tracktimecodescale in the demuxer, set correct default values for all
4085         settings in the demuxer, review and add all missing matroska
4086         IDs and some more raw YUV formats, and some trivial cleanup.
4087
4088 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4089
4090         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
4091         (gst_pulsemixer_class_init):
4092         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4093         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
4094         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4095         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
4096         (gst_pulsesrc_prepare):
4097         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
4098         gst_element_class_set_details_simple() and fix coding style a bit
4099         more.
4100
4101 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4102
4103         * docs/plugins/Makefile.am:
4104         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4105         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4106         * docs/plugins/gst-plugins-good-plugins.args:
4107         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4108         * docs/plugins/gst-plugins-good-plugins.interfaces:
4109         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4110         * docs/plugins/inspect/plugin-aasink.xml:
4111         * docs/plugins/inspect/plugin-alaw.xml:
4112         * docs/plugins/inspect/plugin-alpha.xml:
4113         * docs/plugins/inspect/plugin-alphacolor.xml:
4114         * docs/plugins/inspect/plugin-annodex.xml:
4115         * docs/plugins/inspect/plugin-apetag.xml:
4116         * docs/plugins/inspect/plugin-audiofx.xml:
4117         * docs/plugins/inspect/plugin-auparse.xml:
4118         * docs/plugins/inspect/plugin-autodetect.xml:
4119         * docs/plugins/inspect/plugin-avi.xml:
4120         * docs/plugins/inspect/plugin-cacasink.xml:
4121         * docs/plugins/inspect/plugin-cairo.xml:
4122         * docs/plugins/inspect/plugin-cdio.xml:
4123         * docs/plugins/inspect/plugin-cutter.xml:
4124         * docs/plugins/inspect/plugin-debug.xml:
4125         * docs/plugins/inspect/plugin-dv.xml:
4126         * docs/plugins/inspect/plugin-efence.xml:
4127         * docs/plugins/inspect/plugin-effectv.xml:
4128         * docs/plugins/inspect/plugin-equalizer.xml:
4129         * docs/plugins/inspect/plugin-esdsink.xml:
4130         * docs/plugins/inspect/plugin-flac.xml:
4131         * docs/plugins/inspect/plugin-flxdec.xml:
4132         * docs/plugins/inspect/plugin-gamma.xml:
4133         * docs/plugins/inspect/plugin-gconfelements.xml:
4134         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4135         * docs/plugins/inspect/plugin-goom.xml:
4136         * docs/plugins/inspect/plugin-goom2k1.xml:
4137         * docs/plugins/inspect/plugin-halelements.xml:
4138         * docs/plugins/inspect/plugin-icydemux.xml:
4139         * docs/plugins/inspect/plugin-id3demux.xml:
4140         * docs/plugins/inspect/plugin-jpeg.xml:
4141         * docs/plugins/inspect/plugin-level.xml:
4142         * docs/plugins/inspect/plugin-matroska.xml:
4143         * docs/plugins/inspect/plugin-monoscope.xml:
4144         * docs/plugins/inspect/plugin-mulaw.xml:
4145         * docs/plugins/inspect/plugin-multifile.xml:
4146         * docs/plugins/inspect/plugin-multipart.xml:
4147         * docs/plugins/inspect/plugin-navigationtest.xml:
4148         * docs/plugins/inspect/plugin-ossaudio.xml:
4149         * docs/plugins/inspect/plugin-png.xml:
4150         * docs/plugins/inspect/plugin-pulseaudio.xml:
4151         * docs/plugins/inspect/plugin-quicktime.xml:
4152         * docs/plugins/inspect/plugin-rtp.xml:
4153         * docs/plugins/inspect/plugin-rtsp.xml:
4154         * docs/plugins/inspect/plugin-smpte.xml:
4155         * docs/plugins/inspect/plugin-soup.xml:
4156         * docs/plugins/inspect/plugin-spectrum.xml:
4157         * docs/plugins/inspect/plugin-speex.xml:
4158         * docs/plugins/inspect/plugin-taglib.xml:
4159         * docs/plugins/inspect/plugin-udp.xml:
4160         * docs/plugins/inspect/plugin-video4linux2.xml:
4161         * docs/plugins/inspect/plugin-videobalance.xml:
4162         * docs/plugins/inspect/plugin-videobox.xml:
4163         * docs/plugins/inspect/plugin-videocrop.xml:
4164         * docs/plugins/inspect/plugin-videoflip.xml:
4165         * docs/plugins/inspect/plugin-videomixer.xml:
4166         * docs/plugins/inspect/plugin-wavenc.xml:
4167         * docs/plugins/inspect/plugin-wavpack.xml:
4168         * docs/plugins/inspect/plugin-wavparse.xml:
4169         * docs/plugins/inspect/plugin-ximagesrc.xml:
4170         * ext/pulse/plugin.c:
4171         * ext/pulse/pulsemixer.c:
4172         * ext/pulse/pulsesink.c:
4173         * ext/pulse/pulsesrc.c:
4174         Add documentation to the pulseaudio plugin and run make update
4175         in docs/plugins.
4176
4177 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4178
4179         Patch by: Brian Cameron <brian.cameron at sun dot com>
4180
4181         * sys/sunaudio/gstsunaudiomixerctrl.c:
4182         (gst_sunaudiomixer_ctrl_get_volume),
4183         (gst_sunaudiomixer_ctrl_set_volume):
4184         Improvements for the SunAudio mixer by handling mute as no gain
4185         for tracks that have a gain property but no mute property.
4186         Fixes bug #536067.
4187
4188 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4189
4190         * configure.ac:
4191         * ext/pulse/Makefile.am:
4192         * ext/pulse/plugin.c: (plugin_init):
4193         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4194         (gst_pulsemixer_implements_interface_init),
4195         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4196         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4197         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4198         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4199         * ext/pulse/pulsemixer.h:
4200         * ext/pulse/pulsemixerctrl.c:
4201         (gst_pulsemixer_ctrl_context_state_cb),
4202         (gst_pulsemixer_ctrl_sink_info_cb),
4203         (gst_pulsemixer_ctrl_source_info_cb),
4204         (gst_pulsemixer_ctrl_subscribe_cb),
4205         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4206         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4207         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4208         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4209         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4210         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4211         * ext/pulse/pulsemixerctrl.h:
4212         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4213         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4214         * ext/pulse/pulsemixertrack.h:
4215         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4216         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4217         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4218         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4219         (gst_pulseprobe_new), (gst_pulseprobe_free),
4220         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4221         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4222         (gst_pulseprobe_set_server):
4223         * ext/pulse/pulseprobe.h:
4224         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4225         (gst_pulsesink_class_init), (gst_pulsesink_init),
4226         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4227         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4228         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4229         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4230         (gst_pulsesink_stream_request_cb),
4231         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4232         (gst_pulsesink_close), (gst_pulsesink_prepare),
4233         (gst_pulsesink_unprepare), (gst_pulsesink_write),
4234         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4235         (gst_pulsesink_reset), (gst_pulsesink_change_title),
4236         (gst_pulsesink_event), (gst_pulsesink_get_type):
4237         * ext/pulse/pulsesink.h:
4238         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4239         (gst_pulsesrc_implements_interface_init),
4240         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4241         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4242         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4243         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4244         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4245         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4246         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4247         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4248         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4249         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4250         (gst_pulsesrc_get_type):
4251         * ext/pulse/pulsesrc.h:
4252         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4253         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4254         * ext/pulse/pulseutil.h:
4255         Add pulseaudio GStreamer element from gst-pulse. Development will
4256         continue here instead of pulseaudio SVN. Fixes bug #400679.
4257         Only changes over gst-pulse SVN are added copyright to the top of
4258         files and coding style changes.
4259
4260 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
4261
4262         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
4263
4264         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4265           (gst_cdio_add_cdtext_album_tags):
4266         * ext/cdio/gstcdio.h:
4267         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4268           Also extract album title and album genre from CD-TEXT if
4269           available (#537021).
4270
4271 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4272
4273         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4274
4275         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4276         Improve negotiation a bit more by picking the smallest possible
4277         resolution that is larger than the resolution specified in the
4278         first caps entry of the peer caps. Fixes bug #536994.
4279
4280 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4281
4282         Patch by: Bastien Nocera <hadess at hadess dot net>
4283
4284         * sys/v4l2/gstv4l2vidorient.c:
4285         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4286         Fix compilation with newer GIT kernels that deprecated
4287         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4288
4289 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4290
4291         * configure.ac:
4292         * ext/cdio/gstcdio.c:
4293         * ext/cdio/gstcdio.h:
4294         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4295           Require libcdio >= 0.76.
4296
4297 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
4298
4299         * gst/avi/gstavidemux.c:
4300         Catch UNEXPECTED when downstream has reached end of
4301         segment in reverse mode.
4302
4303 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4304
4305         * gst/avi/gstavidemux.c:
4306         Fix typo in comment
4307
4308 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4309
4310         * gst/avi/gstavidemux.c:
4311         Because we don't know the frame order we need to push till
4312         the next keyframe
4313
4314 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4315
4316         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4317
4318         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4319         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4320         Provide a custom negotiation function to make sure to pick the highest
4321         possible framerate and resolution. Fixes bug #536646.
4322
4323 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4324
4325         * gst/avi/gstavidemux.c:
4326         Set EOS when going out of the segment in reverse playback
4327
4328 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4329
4330         * ext/taglib/Makefile.am::
4331           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4332           taglib headers (with gcc 4.3.1).
4333
4334 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
4335
4336         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4337         Use the new gst_rtsp_connection_get_ip() to access the IP address
4338         of a GstRTSPConnection since it is a private member.
4339
4340 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4341
4342         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4343         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4344           Use new utility functions in libgsttag to process coverart (#512333).
4345
4346 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4347
4348         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4349         We actually support left/side, right/side and mid/side files. The
4350         conversion to normal, interleaved stereo is done by libflac.
4351
4352 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4353
4354         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4355         (gst_ebml_write_set_cache):
4356         Unref the write cache in finalize if it was set and add add "FIXME"
4357         to a comment that needs it.
4358
4359 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4360
4361         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4362
4363         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4364         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4365         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4366         (gst_avi_demux_process_next_entry):
4367         * gst/avi/gstavidemux.h:
4368         Implement reverse playback. Fixes #535300.
4369         Small cleanups.
4370
4371 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
4372
4373         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4374         (gst_videomixer_query_latency):
4375         When using gst_element_iterate_pads() one has to unref every pad
4376         after usage.
4377
4378 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
4379
4380         Patch by: Bastien Nocera <hadess at hadess dot net>
4381         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4382         (qtdemux_parse_udta):
4383         * gst/qtdemux/qtdemux_fourcc.h:
4384         Improve meta-data handling, add 'comment', 'description' and
4385         'copyright' tag handling.
4386         Fixes #535935
4387
4388 2008-05-31  Julien Moutte  <julien@fluendo.com>
4389
4390         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4391         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4392         (gst_qtdemux_seek_to_previous_keyframe),
4393         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4394         we don't clip the segment's stop using the main segment duration as
4395         that could crop quite some video frames. Make reverse playback support
4396         more robust and support edit lists. Support seeking to the last frame,
4397         and fix reverse looping playback. Add some debugging.
4398         * win32/common/config.h: Updated.
4399
4400 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
4401
4402         * gst/equalizer/gstiirequalizer.c:
4403         (gst_iir_equalizer_transform_ip):
4404         Don't clip float/double samples, correctly unset passthrough mode
4405         and use better rounding for integer samples.
4406
4407 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
4408
4409         * gst/equalizer/gstiirequalizer.c:
4410         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4411         (setup_filter), (set_passthrough), (update_coefficients),
4412         (gst_iir_equalizer_compute_frequencies),
4413         (gst_iir_equalizer_transform_ip):
4414         * gst/equalizer/gstiirequalizer.h:
4415         Update the filter coefficients only when needed in the transform_ip
4416         function and correctly set the element into passthrough mode if the
4417         gain of all bands is 0.
4418
4419 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4420
4421         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4422
4423         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4424         (gst_alpha_set_property), (gst_alpha_get_property),
4425         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4426         Try to skip pixels or areas that are too dark or too bright for us to do
4427         meaningfull color detection.
4428         Added properties to control the sensitivity to light and darkness.
4429         Added some small cleanups. Fixes #512345.
4430
4431 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
4432
4433         * docs/plugins/.cvsignore:
4434         * tests/check/elements/.cvsignore:
4435         Ignore some more generated things
4436
4437         * tests/check/Makefile.am:
4438         Ignore OSS elements in the state changes test too.
4439
4440 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4441
4442         * docs/plugins/Makefile.am:
4443         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4444         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4445         Add SMPTE effect elements to docs.
4446
4447 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4448
4449         * docs/plugins/Makefile.am:
4450         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4451         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4452         * ext/raw1394/gstdv1394src.c:
4453           Document whats first shown on the fdo plugin docs page :)
4454
4455 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4456
4457         * docs/plugins/Makefile.am:
4458         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4459         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4460         * docs/plugins/gst-plugins-good-plugins.args:
4461         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4462         * docs/plugins/inspect/plugin-audiofx.xml:
4463         * gst/audiofx/Makefile.am:
4464         * gst/audiofx/audiofx.c:
4465         * gst/audiofx/audiokaraoke.c:
4466         * gst/audiofx/audiokaraoke.h:
4467         * gst/audiofx/audiovoice.c:
4468         * gst/audiofx/audiovoice.h:
4469           Rename audiovoice to audiokaraoke and add it to the docs.
4470
4471 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4472
4473         * REQUIREMENTS:
4474         * docs/plugins/Makefile.am:
4475         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4476         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4477         * docs/plugins/gst-plugins-good-plugins.args:
4478         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4479         * docs/plugins/gst-plugins-good-plugins.interfaces:
4480         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4481         * docs/plugins/inspect/plugin-aasink.xml:
4482         * docs/plugins/inspect/plugin-alaw.xml:
4483         * docs/plugins/inspect/plugin-alpha.xml:
4484         * docs/plugins/inspect/plugin-alphacolor.xml:
4485         * docs/plugins/inspect/plugin-annodex.xml:
4486         * docs/plugins/inspect/plugin-apetag.xml:
4487         * docs/plugins/inspect/plugin-audiofx.xml:
4488         * docs/plugins/inspect/plugin-auparse.xml:
4489         * docs/plugins/inspect/plugin-autodetect.xml:
4490         * docs/plugins/inspect/plugin-avi.xml:
4491         * docs/plugins/inspect/plugin-cacasink.xml:
4492         * docs/plugins/inspect/plugin-cairo.xml:
4493         * docs/plugins/inspect/plugin-cdio.xml:
4494         * docs/plugins/inspect/plugin-cutter.xml:
4495         * docs/plugins/inspect/plugin-debug.xml:
4496         * docs/plugins/inspect/plugin-dv.xml:
4497         * docs/plugins/inspect/plugin-efence.xml:
4498         * docs/plugins/inspect/plugin-effectv.xml:
4499         * docs/plugins/inspect/plugin-equalizer.xml:
4500         * docs/plugins/inspect/plugin-esdsink.xml:
4501         * docs/plugins/inspect/plugin-flac.xml:
4502         * docs/plugins/inspect/plugin-flxdec.xml:
4503         * docs/plugins/inspect/plugin-gamma.xml:
4504         * docs/plugins/inspect/plugin-gconfelements.xml:
4505         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4506         * docs/plugins/inspect/plugin-goom.xml:
4507         * docs/plugins/inspect/plugin-goom2k1.xml:
4508         * docs/plugins/inspect/plugin-halelements.xml:
4509         * docs/plugins/inspect/plugin-icydemux.xml:
4510         * docs/plugins/inspect/plugin-id3demux.xml:
4511         * docs/plugins/inspect/plugin-jpeg.xml:
4512         * docs/plugins/inspect/plugin-level.xml:
4513         * docs/plugins/inspect/plugin-matroska.xml:
4514         * docs/plugins/inspect/plugin-monoscope.xml:
4515         * docs/plugins/inspect/plugin-mulaw.xml:
4516         * docs/plugins/inspect/plugin-multifile.xml:
4517         * docs/plugins/inspect/plugin-multipart.xml:
4518         * docs/plugins/inspect/plugin-navigationtest.xml:
4519         * docs/plugins/inspect/plugin-ossaudio.xml:
4520         * docs/plugins/inspect/plugin-png.xml:
4521         * docs/plugins/inspect/plugin-quicktime.xml:
4522         * docs/plugins/inspect/plugin-rtp.xml:
4523         * docs/plugins/inspect/plugin-rtsp.xml:
4524         * docs/plugins/inspect/plugin-smpte.xml:
4525         * docs/plugins/inspect/plugin-soup.xml:
4526         * docs/plugins/inspect/plugin-spectrum.xml:
4527         * docs/plugins/inspect/plugin-speex.xml:
4528         * docs/plugins/inspect/plugin-taglib.xml:
4529         * docs/plugins/inspect/plugin-udp.xml:
4530         * docs/plugins/inspect/plugin-video4linux2.xml:
4531         * docs/plugins/inspect/plugin-videobalance.xml:
4532         * docs/plugins/inspect/plugin-videobox.xml:
4533         * docs/plugins/inspect/plugin-videocrop.xml:
4534         * docs/plugins/inspect/plugin-videoflip.xml:
4535         * docs/plugins/inspect/plugin-videomixer.xml:
4536         * docs/plugins/inspect/plugin-wavenc.xml:
4537         * docs/plugins/inspect/plugin-wavpack.xml:
4538         * docs/plugins/inspect/plugin-wavparse.xml:
4539         * docs/plugins/inspect/plugin-ximagesrc.xml:
4540         * ext/aalib/gstaasink.c:
4541         * ext/libcaca/gstcacasink.c:
4542           Document aasink and cacasink.
4543
4544 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
4545
4546         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4547         (gst_videomixer_init), (gst_videomixer_query_duration),
4548         (gst_videomixer_query_latency), (gst_videomixer_query),
4549         (gst_videomixer_blend_buffers):
4550         * gst/videomixer/videomixer.h:
4551         Implement position (in time), duration and latency queries.
4552
4553 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
4554
4555         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4556         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4557         (gst_videomixer_fill_queues), (forward_event_func),
4558         (forward_event), (gst_videomixer_src_event),
4559         (gst_videomixer_sink_event):
4560         * gst/videomixer/videomixer.h:
4561         Implement proper seek/newsegment handling.
4562         Based on adder's implementation.
4563         Fixes #535121
4564
4565 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4566
4567         Patch by: Jan Gerber <j at oil21 dot org>
4568
4569         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4570         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4571
4572 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4573
4574         * gst/audiofx/Makefile.am:
4575         * gst/audiofx/audiofx.c: (plugin_init):
4576         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4577         (gst_audio_voice_class_init), (gst_audio_voice_init),
4578         (update_filter), (gst_audio_voice_set_property),
4579         (gst_audio_voice_get_property), (gst_audio_voice_setup),
4580         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4581         (gst_audio_voice_transform_ip):
4582         * gst/audiofx/audiovoice.h:
4583         Add simple voice removal element. Yay karaoke.
4584
4585 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4586
4587         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4588
4589         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4590         Fix potential caps leak.
4591         If we can't get the framerate with an ioctl, try to get it with the
4592         current norm. Fixes #520092.
4593
4594 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4595
4596         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4597
4598         * sys/v4l2/v4l2src_calls.c:
4599         (gst_v4l2src_probe_caps_for_format_and_size):
4600         If we fail to get the frame intervals, simply don't touch the framerates
4601         on the template caps instead of discarding the format. See #520092.
4602
4603 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4604
4605         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4606
4607         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4608         (gst_v4l2_get_caps_info):
4609         Add NV12, NV21 and bayer support. See #520092.
4610
4611 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4612
4613         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4614         (gst_qtdemux_activate_segment):
4615         Unbreak segment activation again. Fixes #531672.
4616
4617 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
4618
4619         * ext/flac/Makefile.am:
4620         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4621         Set the channel layout when decoding FLAC files with more than 2
4622         channels as defined by the FLAC spec. Fixes bug #534570.
4623
4624         Also don't try to decode left/side, right/side and mid/side files
4625         as we don't support this at all.
4626
4627 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
4628
4629         * configure.ac:
4630           We need -base CVS (rtsp).
4631
4632 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
4633
4634         * gst/udp/Makefile.am:
4635           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4636           when including netdb.h when building against glibc >= 2.8.
4637
4638 2008-05-22  Julien Moutte  <julien@fluendo.com>
4639
4640         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4641         debug statement arguments.
4642         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4643         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4644         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4645         on more platforms.
4646
4647 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4648
4649         * tests/check/elements/avimux.c: (setup_src_pad),
4650         (teardown_src_pad):
4651         * tests/check/elements/icydemux.c: (icydemux_found_pad),
4652         (GST_START_TEST):
4653         * tests/check/elements/matroskamux.c: (setup_src_pad),
4654         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4655         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4656         (GST_START_TEST):
4657         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4658         (setup_wavpackparse), (cleanup_wavpackparse):
4659         Don't use gst_element_get_pad(), it's a bad, bad method.
4660
4661 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4662
4663         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4664         (do_toggle_element):
4665         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4666         (do_toggle_element):
4667         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4668         (do_toggle_element):
4669         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4670         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4671         (do_toggle_element):
4672         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4673         (do_toggle_element):
4674         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4675         (gst_auto_audio_sink_detect):
4676         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4677         (gst_auto_video_sink_detect):
4678         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4679         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4680         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4681         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4682         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4683         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4684         * tests/icles/videocrop-test.c: (test_with_caps),
4685         (video_crop_get_test_caps):
4686         Don't use gst_element_get_pad(), it's a bad method.
4687
4688 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4689
4690         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4691         (gst_multiudpsink_add_internal):
4692         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4693         (gst_udp_join_group):
4694         * gst/udp/gstudpnetutils.h:
4695         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4696         Joining a multicast group and setting the loop/ttl properties are
4697         totally unrelated tasks are must be separated.
4698
4699 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
4700
4701         * gst/avi/gstavimux.c:
4702           Also support alaw/mulaw.
4703
4704 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4705
4706         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4707         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4708         * gst/udp/gstmultiudpsink.h:
4709         Add a fixme for the auto-multicast property.
4710         Fix some confusing debug messages.
4711         Disable setting a qos value by default.
4712
4713 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4714
4715         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4716
4717         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4718         Ignore EPERM errors from sendto. Fixes #533619.
4719
4720 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4721
4722         Patch by: Henrik Eriksson <henriken at axis dot com>
4723
4724         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4725         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4726         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4727         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4728         * gst/udp/gstmultiudpsink.h:
4729         Add qos-dscp property to manage the Quality of service. Fixes #469917.
4730
4731 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4732
4733         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4734         Improve debugging of the ident.
4735
4736 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4737
4738         Patch by: Bruno Santos <brunof at ua dot pt>
4739
4740         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4741         (gst_udp_join_group), (gst_udp_leave_group),
4742         (gst_udp_is_multicast):
4743         * gst/udp/gstudpnetutils.h:
4744         Provide a bunch of helper methods to deal with IPv4 and IPv6
4745         transparently.
4746
4747         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4748         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4749         (gst_multiudpsink_get_property), (join_multicast),
4750         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4751         (gst_multiudpsink_remove):
4752         * gst/udp/gstmultiudpsink.h:
4753         Add multicast TTL and loopback properties.
4754         Use the helper methods to implement ip4 and ip6.
4755
4756         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4757         * gst/udp/gstudpsrc.h:
4758         Use the helper methods to implement ip4 and ip6.
4759         Fixes #515962.
4760
4761 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4762
4763         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4764
4765         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4766         (gst_multipart_demux_get_gstname),
4767         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4768         * gst/multipart/multipartdemux.h:
4769         Don't blindly copy the mime-type as the caps name because they not
4770         always map directly. Instead use a hashtable with common mappings.
4771         Fixes #533287.
4772
4773 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4774
4775         * ext/esd/esdsink.c: (gst_esdsink_write):
4776         When we post an error, we must return -1 to let the parent know that we
4777         cannot write the segment else it will loop and continue to call us again
4778         forever. Patch by Michael Meeks.
4779
4780 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
4781
4782         * gst/videomixer/videomixer.c:
4783           Add missing incudes.
4784
4785 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
4786
4787         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4788         (gst_rtp_h264_pay_handle_buffer):
4789         * gst/rtp/gstrtph264pay.h:
4790         Correct a typo (sinle -> single).
4791
4792 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4793
4794         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4795         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4796         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4797         (gst_rtp_h264_depay_process):
4798         * gst/rtp/gstrtph264depay.h:
4799         Add experimental support for outputting quicktime-like AVC output in
4800         addition to the existing bytestream output.
4801
4802         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4803         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4804         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4805         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4806         (gst_rtp_h264_pay_get_property):
4807         * gst/rtp/gstrtph264pay.h:
4808         Make the parsing mode configurable, for some inputs we don't need to
4809         scan every byte for start codes.
4810         Only set the marker bit on ACCESS units.
4811
4812 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
4813
4814         * gst/equalizer/gstiirequalizer.c:
4815         Use a bigger type in integer mode for the intermediate results to
4816         prevent overflows. This fixes the crippled sound when using the
4817         equalizer in integer mode. Fixes bug #510865.
4818
4819 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
4820
4821         * gst/videomixer/videomixer.c:
4822         * gst/videomixer/videomixer.h:
4823         Instead of a random number for the request pad id's,
4824         use a counter.
4825
4826         Register the videomixerpad class from the element's class_init
4827         where it's safer, and allows the docs generator to scan it.
4828
4829 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4830
4831         * gst/smpte/Makefile.am:
4832         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4833         * gst/smpte/gstsmpte.h:
4834         * gst/smpte/gstsmptealpha.c:
4835         (gst_smpte_alpha_transition_type_get_type),
4836         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4837         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4838         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4839         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4840         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4841         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4842         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4843         * gst/smpte/gstsmptealpha.h:
4844         * gst/smpte/plugin.c: (plugin_init):
4845         Add new plugin that adds the SMPTE transition in the alpha channel of
4846         I420 and AYUV frames so that they can be blended with videomixer later
4847         on. Uses all niceties such as using base transform for efficient alloc
4848         and negotiation. It currently requires GstController to control the
4849         position in the transition effect.
4850
4851 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
4852
4853         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4854         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4855         * docs/plugins/gst-plugins-good-plugins.args:
4856         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4857         * docs/plugins/gst-plugins-good-plugins.interfaces:
4858         * docs/plugins/gst-plugins-good-plugins.types:
4859         * gst/videomixer/videomixer.c:
4860           Try using thaytans new mechanism to get extra classes into plugin
4861           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4862           missing still.
4863
4864 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
4865
4866         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4867         Set proper rate in avi stream header for PCM audio, and also do some
4868         more sanity checks on caps in this case.  Fixes #511489.
4869
4870 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4871
4872         * sys/v4l2/gstv4l2src.c:
4873         Don't include the gstv4l2xoverlay.h header as the XOverlay support
4874         isn't implemented at all yet and this requires X headers to be
4875         installed. Fixes bug #533264.
4876
4877 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4878
4879         reviewed by: <delete if not using a buddy>
4880
4881         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4882         (gst_ebml_write_set_cache):
4883         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4884         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4885         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4886         (gst_matroska_demux_read_track_encodings),
4887         (gst_matroska_demux_add_stream),
4888         (gst_matroska_demux_handle_src_query),
4889         (gst_matroska_demux_init_stream),
4890         (gst_matroska_demux_parse_index_cuetrack),
4891         (gst_matroska_demux_parse_index_pointentry),
4892         (gst_matroska_demux_parse_info),
4893         (gst_matroska_demux_parse_metadata_id_simple_tag),
4894         (gst_matroska_demux_parse_metadata),
4895         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4896         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4897         (gst_matroska_demux_parse_cluster),
4898         (gst_matroska_demux_parse_contents_seekentry),
4899         (gst_matroska_demux_loop_stream_parse_id),
4900         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4901         (gst_matroska_demux_audio_caps),
4902         (gst_matroska_demux_subtitle_caps):
4903         * gst/matroska/matroska-demux.h:
4904         * gst/matroska/matroska-ids.c:
4905         (gst_matroska_track_init_subtitle_context):
4906         * gst/matroska/matroska-ids.h:
4907         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4908         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4909         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4910         * sys/v4l2/gstv4l2src.c:
4911         * tests/check/pipelines/wavpack.c: (bus_handler):
4912         * win32/common/config.h:
4913
4914 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
4915
4916         * ext/wavpack/gstwavpackstreamreader.c:
4917         * tests/examples/spectrum/demo-audiotest.c:
4918         * tests/examples/spectrum/demo-osssrc.c:
4919         Fix some compiler warnings.
4920
4921 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4922
4923         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4924         Small comment added.
4925
4926         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4927         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4928         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4929         Debug string cleanups (remove trailing \n)
4930         Refactor and clean up the payloader a bit and make sure that we only
4931         put one NAL unit in an RTP packet even if the input buffer contains
4932         multiple NAL units.
4933         Add suport for AVC format input.
4934
4935 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
4936
4937         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4938         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4939         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4940         * gst/rtp/gstrtph264pay.h:
4941         Make it possible to specify profile-level-id and sprop-parameter-sets
4942         using properties in case they are not available in-stream.
4943
4944 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
4945
4946         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4947         * docs/plugins/gst-plugins-good-plugins.args:
4948         * docs/plugins/inspect/plugin-ladspa.xml:
4949           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4950
4951 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
4952
4953         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4954         Send an initial BYTE segment to inform downstream of later seeking,
4955         and to forego sync attempts.
4956
4957 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4958
4959         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4960         Fix wrong caps string.
4961
4962 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4963
4964         Based on patch by: Olivier Crete <tester at tester dot ca>
4965
4966         * gst/rtp/Makefile.am:
4967         * gst/rtp/gstrtp.c: (plugin_init):
4968         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4969         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4970         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4971         (gst_rtp_g729_depay_plugin_init):
4972         * gst/rtp/gstrtpg729depay.h:
4973         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4974         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4975         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4976         * gst/rtp/gstrtpg729pay.h:
4977         Added G729 pay and depayloaders. Fixes #532409.
4978
4979 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4980
4981         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4982         Fix the calculation of the duration of the concealment packets.
4983
4984 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4985
4986         Based on patch by: Olivier Crete <tester at tester dot ca>
4987
4988         * gst/rtp/Makefile.am:
4989         * gst/rtp/gstrtp.c: (plugin_init):
4990         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4991         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
4992         (parse_encode), (gst_rtp_dv_depay_setcaps),
4993         (calculate_difblock_location), (gst_rtp_dv_depay_process),
4994         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
4995         (gst_rtp_dv_depay_plugin_init):
4996         * gst/rtp/gstrtpdvdepay.h:
4997         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
4998         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
4999         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
5000         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
5001         (gst_dv_pay_negotiate), (include_dif),
5002         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
5003         * gst/rtp/gstrtpdvpay.h:
5004         Add DV pay and depayloaders. Fixes #532423.
5005
5006 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
5007
5008         * gst/matroska/matroska-demux.c:
5009         (gst_matroska_demux_push_dvd_clut_change_event):
5010         Convert subtitle palette info in VobSub private data from VobSub's
5011         (buggy) RGB to YUV.
5012
5013 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
5014
5015         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
5016         Do not leave fourcc stream header field empty upon reset.
5017         Fixes #519301.
5018
5019 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
5020
5021         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5022         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5023         * docs/plugins/inspect/plugin-goom.xml:
5024         * docs/plugins/inspect/plugin-goom2k1.xml:
5025         * gst/goom/gstgoom.c:
5026         * gst/goom2k1/gstgoom.c:
5027         Add goom2k1 into the docs.
5028
5029 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5030
5031         Based on patch by: Wouter Cloetens  <wouter at mind be>
5032
5033         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5034         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
5035         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
5036         (gst_rtsp_decode_quoted_string),
5037         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
5038         (gst_rtspsrc_setup_auth):
5039         Support Digest authentication. Fixes #532065.
5040
5041 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
5042
5043         * gst/level/gstlevel.c:
5044           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
5045           about whats needed for liboil acceleration. Simplify docs a bit.
5046
5047 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
5048
5049         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5050
5051         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
5052         Update the track duration if the old one was invalid.
5053         Fixes bug #532117.
5054
5055 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5056
5057         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
5058           Use GST_STR_NULL when trying to print sps and pps strings that could
5059           be NULL, as this might crash on some platforms.
5060
5061 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5062
5063         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5064
5065         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
5066           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
5067           set after creating the clipper.
5068
5069 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5070
5071         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5072
5073         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
5074           Added checking of surface lost case after an unsuccessful
5075           IDirectDrawSurface7_Lock() call.
5076           If surface is lost, return GST_FLOW_OK.
5077
5078 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5079
5080         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5081
5082         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
5083           WndProc, gst_directdraw_sink_window_thread):
5084           Improved Windows message loop and fixed window destruction issue.
5085           When the window which DirectDraw is rendering to is destroyed, the
5086           render/show_frame function will return GST_FLOW_ERROR.
5087           Partially fixes #520885.
5088
5089 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5090
5091         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5092
5093         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
5094           Fixed mid stream resolution change bug, the offscreen surface is now
5095           released when set_caps is called.
5096           Partially fixes #520885.
5097
5098 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5099
5100         * sys/directdraw/gstdirectdrawsink.c
5101           (gst_directdraw_sink_buffer_alloc):
5102           Make it so that gst_directdraw_sink_buffer_alloc uses the right
5103           width/height.
5104
5105           Especially when looking through the pool of buffers, make sure that
5106           the width/height of caps is used instead of the already negotiated
5107           dimensions.
5108           For example if a buffer with different caps is requested, i.e.
5109           higher resolution, the caller would get a buffer with the old
5110           dimensions and thus corrupt the heap.
5111
5112 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5113
5114         * sys/directdraw/gstdirectdrawsink.c
5115           (gst_directdraw_sink_buffer_alloc):
5116           Clear the flags on recycled buffers from buffer_alloc.
5117           Partially fixes #520885.
5118
5119 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5120
5121         * gst/rtp/gstrtpilbcpay.c:
5122           Added missing stdlib.h include for strtol(), and made include ordering and
5123           style consistent with the corresponding depayloader.
5124
5125 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
5126
5127         * configure.ac:
5128           Error out if we don't have the required core/base versions.
5129
5130 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
5131
5132         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5133
5134         * sys/osxvideo/cocoawindow.m:
5135         Fix compiler warnings on PPC64. Fixes bug #499318.
5136
5137 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5138
5139         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5140
5141         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
5142         Don't leak file descriptors on error. Fixes #531532.
5143
5144 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
5145
5146         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
5147         (gst_gconf_audio_src_change_state):
5148         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
5149         (gst_gconf_video_sink_change_state):
5150         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
5151         (gst_gconf_video_src_change_state):
5152         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5153         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
5154         When we can't create a fakesink/fakesrc complain instead of unreffing
5155         NULL pointers and crashing later. See bug #530535.
5156
5157 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5158
5159         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5160         Add some more debug info and guard against small payloads.
5161
5162         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
5163         Set duration on outgoing buffers because we can.
5164
5165 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5166
5167         Patch by: Olivier Crete <tester at tester dot ca>
5168
5169         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
5170         (gst_speex_enc_init), (gst_speex_enc_chain):
5171         Add negotiation for the speex channels and rate. Fixes #465146.
5172
5173 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5174
5175         Patch by: Olivier Crete <tester at tester dot ca>
5176
5177         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
5178         (gst_rtp_speex_pay_getcaps):
5179         Add negotiation for the speex channels and rate. See #465146.
5180
5181 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5182
5183         Patch by: Olivier Crete <tester at tester dot ca>
5184
5185         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5186         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5187         Add negotiation for the ILBC mode. See #465146.
5188
5189 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
5190
5191         * ext/soup/gstsouphttpsrc.c:
5192           Include stdlib to fix the build. Use g_free instead of free, libsoup
5193           uses glib.
5194
5195 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5196
5197         Patch by: j^ <j@bootlab.org>
5198
5199         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5200         Add more mpeg2 variants. Fixes #530886.
5201
5202 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
5203
5204         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5205
5206         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5207           Don't error out if we get an ICMP destination-unreachable
5208           message when trying to read packets on win32 (#529454).
5209
5210 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5211
5212         * configure.ac:
5213         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5214           Use new error code for encrypted streams (which requires core CVS).
5215
5216 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5217
5218         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5219           (gst_qtdemux_audiosrc_template):
5220           Fix swapped pad template names, spotted by Thiago Sousa Santos.
5221
5222 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5223
5224         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5225         (speex_dec_chain_parse_data):
5226         Produce concealment data when time progresses in a segment update.
5227
5228 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
5229
5230         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5231         (speex_dec_chain):
5232         Try to preserve input timestamps when we can.
5233         Do beginnings of error concealment.
5234
5235 2008-04-28  Michael Smith <msmith@songbirdnest.com>
5236
5237         * gst/debug/gstnavigationtest.c:
5238           MSVC doesn't provide rint(), define an adequate replacement locally as
5239           elsewhere.
5240
5241 2008-04-28  Julien Moutte  <julien@fluendo.com>
5242
5243         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5244         format to pacify Mac OSX's gcc.
5245
5246 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5247
5248         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5249           (DEFAULT_MAX), (src_template), (sink_template),
5250           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5251           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5252           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5253           Bring rndbuffersize element into a state that doesn't require us
5254           to move it to -bad immediately. For one, fix up default min/max
5255           values so that the element actuall works using the default values.
5256           Also, don't ignore flow return values and do some kind of minimal
5257           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5258           other gratuitious clean-ups.
5259
5260 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5261
5262         * docs/plugins/Makefile.am:
5263         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5264         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5265         * docs/plugins/gst-plugins-good-plugins.args:
5266         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5267         * docs/plugins/gst-plugins-good-plugins.interfaces:
5268         * docs/plugins/gst-plugins-good-plugins.prerequisites:
5269         * docs/plugins/inspect/plugin-1394.xml:
5270         * docs/plugins/inspect/plugin-aasink.xml:
5271         * docs/plugins/inspect/plugin-alaw.xml:
5272         * docs/plugins/inspect/plugin-alpha.xml:
5273         * docs/plugins/inspect/plugin-alphacolor.xml:
5274         * docs/plugins/inspect/plugin-annodex.xml:
5275         * docs/plugins/inspect/plugin-apetag.xml:
5276         * docs/plugins/inspect/plugin-audiofx.xml:
5277         * docs/plugins/inspect/plugin-auparse.xml:
5278         * docs/plugins/inspect/plugin-autodetect.xml:
5279         * docs/plugins/inspect/plugin-avi.xml:
5280         * docs/plugins/inspect/plugin-cacasink.xml:
5281         * docs/plugins/inspect/plugin-cairo.xml:
5282         * docs/plugins/inspect/plugin-cdio.xml:
5283         * docs/plugins/inspect/plugin-cutter.xml:
5284         * docs/plugins/inspect/plugin-debug.xml:
5285         * docs/plugins/inspect/plugin-dv.xml:
5286         * docs/plugins/inspect/plugin-efence.xml:
5287         * docs/plugins/inspect/plugin-effectv.xml:
5288         * docs/plugins/inspect/plugin-equalizer.xml:
5289         * docs/plugins/inspect/plugin-esdsink.xml:
5290         * docs/plugins/inspect/plugin-flac.xml:
5291         * docs/plugins/inspect/plugin-flxdec.xml:
5292         * docs/plugins/inspect/plugin-gamma.xml:
5293         * docs/plugins/inspect/plugin-gconfelements.xml:
5294         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5295         * docs/plugins/inspect/plugin-goom.xml:
5296         * docs/plugins/inspect/plugin-halelements.xml:
5297         * docs/plugins/inspect/plugin-icydemux.xml:
5298         * docs/plugins/inspect/plugin-id3demux.xml:
5299         * docs/plugins/inspect/plugin-jpeg.xml:
5300         * docs/plugins/inspect/plugin-level.xml:
5301         * docs/plugins/inspect/plugin-matroska.xml:
5302         * docs/plugins/inspect/plugin-monoscope.xml:
5303         * docs/plugins/inspect/plugin-mulaw.xml:
5304         * docs/plugins/inspect/plugin-multifile.xml:
5305         * docs/plugins/inspect/plugin-multipart.xml:
5306         * docs/plugins/inspect/plugin-navigationtest.xml:
5307         * docs/plugins/inspect/plugin-ossaudio.xml:
5308         * docs/plugins/inspect/plugin-png.xml:
5309         * docs/plugins/inspect/plugin-quicktime.xml:
5310         * docs/plugins/inspect/plugin-rtp.xml:
5311         * docs/plugins/inspect/plugin-rtsp.xml:
5312         * docs/plugins/inspect/plugin-shout2send.xml:
5313         * docs/plugins/inspect/plugin-smpte.xml:
5314         * docs/plugins/inspect/plugin-spectrum.xml:
5315         * docs/plugins/inspect/plugin-speex.xml:
5316         * docs/plugins/inspect/plugin-taglib.xml:
5317         * docs/plugins/inspect/plugin-udp.xml:
5318         * docs/plugins/inspect/plugin-video4linux2.xml:
5319         * docs/plugins/inspect/plugin-videobalance.xml:
5320         * docs/plugins/inspect/plugin-videobox.xml:
5321         * docs/plugins/inspect/plugin-videocrop.xml:
5322         * docs/plugins/inspect/plugin-videoflip.xml:
5323         * docs/plugins/inspect/plugin-videomixer.xml:
5324         * docs/plugins/inspect/plugin-wavenc.xml:
5325         * docs/plugins/inspect/plugin-wavpack.xml:
5326         * docs/plugins/inspect/plugin-wavparse.xml:
5327         * docs/plugins/inspect/plugin-ximagesrc.xml:
5328           Add docs for gdkpixbufsink; update docs to CVS version.
5329
5330 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5331
5332         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5333         Remove test sync-offset by default.
5334
5335 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5336
5337         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5338         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5339         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5340           Use GLib versions of htonl, htons, ntohl and ntohs in order
5341           to avoid problems on win32 (#529707).
5342
5343 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5344
5345         Patch by: Jesús Corrius <jesus at softcatala org>
5346
5347         * gst/goom/filters.c: (zoomVector):
5348         * gst/goom/goom_core.c: (init_buffers):
5349           Fix build with mingw32: use rand() instead of random() and
5350           replace bzero() with memset(). Fixes #529692.
5351
5352 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5353
5354         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5355         Fix typo in comments.
5356
5357         * tests/examples/rtp/client-H263p-PCMA.sdp:
5358         * tests/examples/rtp/client-H263p-PCMA.sh:
5359         * tests/examples/rtp/client-H264-PCMA.sdp:
5360         * tests/examples/rtp/client-H264-PCMA.sh:
5361         * tests/examples/rtp/client-H264.sdp:
5362         * tests/examples/rtp/client-H264.sh:
5363         * tests/examples/rtp/client-PCMA.sdp:
5364         * tests/examples/rtp/client-PCMA.sh:
5365         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5366         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5367         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5368         Add some more docs and fix examples.
5369
5370 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
5371
5372         * tests/check/elements/multifile.c:
5373         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5374         declared in the former, some have it declared in the latter.
5375
5376 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
5377
5378         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5379         * gst/debug/tests.c: (md5_get_value):
5380         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5381         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5382         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5383         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5384         Stop using deprecated GLib functions.
5385
5386 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
5387
5388         * configure.ac:
5389         Back to development -> 0.10.8.1
5390
5391 === release 0.10.8 ===
5392
5393 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
5394
5395         * configure.ac:
5396           releasing 0.10.8, "One For The Money"
5397
5398 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5399
5400         * configure.ac:
5401         0.10.7.4 pre-release
5402
5403 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5404
5405         * gst/goom/config_param.c: (goom_plugin_parameters_free):
5406         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5407         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5408         * gst/goom/flying_stars_fx.c: (fs_free):
5409         * gst/goom/goom_config_param.h:
5410         * gst/goom/goom_core.c: (goom_init), (goom_close):
5411         * gst/goom/goom_plugin_info.h:
5412         * gst/goom/gstgoom.c: (gst_goom_finalize):
5413         * gst/goom/lines.c: (goom_lines_free):
5414         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5415         * gst/goom/surf3d.c: (grid3d_free):
5416         * gst/goom/surf3d.h:
5417         * gst/goom/tentacle3d.c: (tentacle_free):
5418         Free a bunch of stuff, and initialise things to fix leaks
5419         and valgrind warnings in the testsuite.
5420
5421         Fixes: #529268
5422
5423 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
5424
5425         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5426         (gst_rtspsrc_configure_caps):
5427         Ref caps as the return value for the request_pt_map signal.
5428         Remove some caps weirdness when configuring a stream. See #528245.
5429
5430 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
5431
5432         * tests/icles/gdkpixbufsink-test.c:
5433           Add cast to placate gcc 4.1.2.
5434
5435 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5436
5437         * configure.ac:
5438         0.10.7.3 pre-release
5439
5440 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5441
5442         * tests/check/Makefile.am:
5443         Disable some more elements in the state test.
5444         Add a define so the soup test can find the test files
5445         it needs at runtime.
5446
5447         * tests/check/elements/souphttpsrc.c: (run_server):
5448
5449         Add a define so the soup test can find the test files
5450         it needs at runtime.
5451
5452 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5453
5454         * gst/goom/convolve_fx.c: (convolve_apply):
5455         Don't ever draw the GOOM logo.
5456         Fixes: #528615
5457
5458 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5459
5460         * ext/cdio/gstcdiocddasrc.c:
5461         * ext/dv/gstdvdemux.c: 
5462         gst_atomic_int_set ==> g_atomic_int_set
5463
5464 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
5465
5466         * configure.ac:
5467         * gst/goom/Makefile.am:
5468         * gst/goom/convolve_fx.c:
5469         * gst/goom/default_scripts.h:
5470         * gst/goom/goom.h:
5471         * gst/goom/goom_core.c: (choose_a_goom_line):
5472         * gst/goom/goom_plugin_info.h:
5473         * gst/goom/goomsl.c:
5474         * gst/goom/goomsl.h:
5475         * gst/goom/goomsl_hash.c:
5476         * gst/goom/goomsl_hash.h:
5477         * gst/goom/goomsl_heap.c:
5478         * gst/goom/goomsl_heap.h:
5479         * gst/goom/goomsl_private.h:
5480         * gst/goom/plugin_info.c:
5481           Strip out the config/script parsing stuff, we don't need it.
5482           Fixes #527999.
5483
5484 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
5485
5486         * gst/goom/plugin_info.c: (setOptimizedMethods):
5487           Disable altivec optimisations for 32-bit PPC as well to make
5488           things build properly on all PPC systems. Fixes #528143
5489
5490 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
5491
5492         * gst-plugins-good.spec.in:
5493           Update for souphttpsrc plugin which has moved to -good.
5494
5495 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
5496
5497         * gst/matroska/matroska-demux.c:
5498         (gst_matroska_demux_handle_seek_event):
5499         Fix open-ended seeks in matroskademux
5500         Patch by: Mark Nauwelaerts <manauw skynet be>
5501         Fixes: #526557
5502
5503 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
5504
5505         * tests/check/Makefile.am:
5506         Add soup test certificates to the dist.
5507
5508 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5509
5510         * ext/Makefile.am:
5511         Remove LADSPA reference I missed.
5512
5513 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
5514
5515         * ext/soup/gstsouphttpsrc.c: (plugin_init):
5516         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5517         over gnome-vfs and everything else. Fixes bug #527848.
5518
5519 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5520
5521         * configure.ac:
5522         * ext/Makefile.am:
5523         Remove LADSPA plugin. Fixes: #515978
5524
5525 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5526
5527         * configure.ac:
5528         * docs/plugins/Makefile.am:
5529         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5530         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5531         * docs/plugins/gst-plugins-good-plugins.args:
5532         * docs/plugins/inspect/plugin-soup.xml:
5533         * ext/Makefile.am:
5534         * tests/check/Makefile.am:
5535         Move soup plugin from -bad (Fixes: #523124)
5536
5537 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
5538
5539         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5540         Fix bounds checking of mode in Speex header, which may
5541         produce negative numbers in speex <= 1.1.12
5542
5543 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5544
5545         * gst/goom/Makefile.am:
5546         * gst/goom/gfontlib.c:
5547         * gst/goom/gfontlib.h:
5548         * gst/goom/gfontrle.c:
5549         * gst/goom/gfontrle.h:
5550         * gst/goom/goom.h:
5551         * gst/goom/goom_core.c: (goom_update):
5552         * gst/goom/goom_plugin_info.h:
5553         * gst/goom/gstgoom.c: (gst_goom_chain):
5554         * gst/goom/plugin_info.c:
5555           Remove a bunch of font/text related code that we don't need.
5556
5557 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5558
5559         * gst/goom/ppc_drawings.s:
5560         * gst/goom/ppc_zoom_ultimate.s:
5561           Change license of these files to LGPL, as permitted by the
5562           author, Guillaume Borios. See #515073.
5563
5564 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
5565
5566         * gst/goom/convolve_fx.c:
5567         * gst/goom/motif_goom1.h:
5568         * gst/goom/motif_goom2.h:
5569           As hinted in Bug #518213, revert one change and fix warnings properly.
5570           This fixes both #518213 and #520073 for me.     
5571
5572 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
5573
5574         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5575         * gst/matroska/matroska-demux.c:
5576         (gst_matroska_demux_handle_seek_event),
5577         (gst_matroska_demux_parse_contents_seekentry),
5578         (gst_matroska_demux_loop):
5579         Fix the Forte build by making function declaration signatures
5580         match the implementations.
5581
5582 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
5583
5584         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5585         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5586         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5587           More logging when probing (see #518474), some comments in _reset().
5588
5589 2008-04-07  Julien Moutte  <julien@fluendo.com>
5590
5591         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5592         because of a bad argument number.
5593
5594 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
5595
5596         * tests/icles/.cvsignore:
5597         * tests/icles/Makefile.am:
5598         * tests/icles/gdkpixbufsink-test.c:
5599           Interactive test app for gdkpixbufsink.
5600
5601 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
5602
5603         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5604
5605         * configure.ac:
5606         Actually build dlls when cross-compiling with mingw32.
5607         Fixes bug #526247.
5608
5609 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
5610
5611         * ext/hal/hal.c: (gst_hal_get_alsa_element):
5612           Don't munge device string to 'default:x' for capture devices.
5613           Fixes #525833.
5614
5615 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
5616
5617         * ext/wavpack/gstwavpackparse.c:
5618         (gst_wavpack_parse_index_entry_free):
5619         Always use GSlice as we actually depend on GLib 2.12 already.
5620
5621 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5622
5623         * configure.ac:
5624           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5625           Also bump the GLib requirement to the current de-facto requirement
5626           (ie. 2.12).
5627
5628 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5629
5630         * gst/rtp/gstrtph264pay.c: (encode_base64),
5631         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5632         * gst/rtp/gstrtph264pay.h:
5633         Parse codec_data for future AVC compatibility.
5634         Fail when we encounter AVC data for now.
5635
5636 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5637
5638         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5639           (gst_spectrum_init), (gst_spectrum_set_property),
5640           (gst_spectrum_get_property), (gst_spectrum_message_new):
5641           Rename property enums and default defines for the properties to match
5642           the property names and rephrase property descriptions to make them a
5643           bit clearer (hopefully). See #518188.
5644
5645 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5646
5647         * tests/check/Makefile.am:
5648         * tests/check/elements/.cvsignore:
5649         * tests/check/elements/gdkpixbufsink.c:
5650           Add unit test for gdkpixbufsink element.
5651
5652 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5653
5654         * ext/gdk_pixbuf/Makefile.am:
5655         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5656         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5657           (gst_gdk_pixbuf_sink_base_init),
5658           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5659           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5660           (gst_gdk_pixbuf_sink_set_caps),
5661           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5662           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5663           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5664           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5665           (gst_gdk_pixbuf_sink_get_property):
5666         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5667           Add gdkpixbufsink element for easy snapshotting (#525946).
5668
5669 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5670
5671         * tests/check/pipelines/wavpack.c: (wavpack_suite):
5672         Bump timeout from 3 to 60 seconds.
5673
5674 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5675
5676         * tests/check/pipelines/.cvignore:
5677         Remove useless file.
5678
5679         * tests/check/pipelines/.cvsignore:
5680         Add new test to .cvsignore.
5681
5682 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5683
5684         * tests/check/Makefile.am:
5685         * tests/check/pipelines/wavpack.c: (bus_handler),
5686         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5687         (wavpack_suite), (main):
5688         Add unit test that encodes and decodes some data, checks that it
5689         is still the same and that all timestamps/offsets are perfect.
5690
5691 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5692
5693         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5694         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5695         * ext/wavpack/gstwavpackparse.c:
5696         (gst_wavpack_parse_index_entry_new),
5697         (gst_wavpack_parse_index_entry_free),
5698         (gst_wavpack_parse_base_init),
5699         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5700         Use GSlice for allocating index entries and use
5701         gst_element_class_set_details_simple().
5702
5703 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5704
5705         Patch by: Brian Cameron <brian.cameron at sun dot com>
5706
5707         * sys/sunaudio/gstsunaudio.c:
5708         * sys/sunaudio/gstsunaudiomixer.c:
5709         * sys/sunaudio/gstsunaudiomixer.h:
5710         * sys/sunaudio/gstsunaudiomixerctrl.c:
5711         * sys/sunaudio/gstsunaudiomixerctrl.h:
5712         * sys/sunaudio/gstsunaudiomixertrack.c:
5713         * sys/sunaudio/gstsunaudiomixertrack.h:
5714         * sys/sunaudio/gstsunaudiosink.c:
5715         * sys/sunaudio/gstsunaudiosink.h:
5716         * sys/sunaudio/gstsunaudiosrc.c:
5717         * sys/sunaudio/gstsunaudiosrc.h:
5718           Fix up copyrights (#525860).
5719
5720 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5721
5722         * gst/goom/goomsl.c: (gsl_read_file):
5723           Check return value of fread() to avoid compiler warnings.
5724
5725 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5726
5727         Based on patch by: Mersad Jelacic <mersad at axis dot com>
5728
5729         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5730         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5731         * gst/law/alaw-decode.h:
5732         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5733         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5734         (gst_mulawdec_chain), (gst_mulawdec_change_state):
5735         * gst/law/mulaw-decode.h:
5736         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5737         Make negotiation a bit modern.
5738         Use pad_alloc. Fixes #525359.
5739
5740 2008-03-31  David Schleef  <ds@schleef.org>
5741
5742         * gst/goom/xmmx.c: Fix constraints on asm code so that it
5743           compiles consistently.  Fixes #522278.
5744
5745 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
5746
5747         Patch by: Brian Cameron <brian.cameron at sun dot com>
5748
5749         * sys/sunaudio/gstsunaudiomixerctrl.c:
5750           (gst_sunaudiomixer_ctrl_get_volume),
5751           (gst_sunaudiomixer_ctrl_set_volume):
5752         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5753           Fix up the mixer tracks to use a volume range of 0-255, which is what
5754           the sun audio API uses. This simplifies the code and avoids rounding
5755           errors. Fixes #524593.
5756
5757 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
5758
5759         * sys/v4l2/gstv4l2object.c:
5760         * sys/v4l2/gstv4l2object.h:
5761         Add device-fd property to make it possible to apps to call ioctl's.
5762
5763 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5764
5765         * gst/qtdemux/qtdemux.c: (next_entry_size):
5766         Unbreak streaming mode again.
5767
5768 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5769
5770         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5771           Remove superfluous DEBUG macro.
5772
5773 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5774
5775         Based on patch by: William M. Brack <wbrack at mmm com hk>
5776
5777         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5778           (gst_v4l2src_set_capture):
5779           Check whether the device supports setting the framerate before
5780           trying to set it and then posting a warning or error if it doesn't
5781           work (#516649, #520092). Also compare fractions more correctly.
5782
5783 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5784
5785         * gst/goom/Makefile.am:
5786           Remove ppc assembler optimisations from the build until they
5787           actually build (they also seem to have GPL headers).
5788
5789 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5790
5791         * m4/Makefile.am:
5792           Better not dist files that don't exist any longer (lrint*m4).
5793
5794 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
5795
5796         * configure.ac:
5797         * m4/lrint.m4:
5798         * m4/lrintf.m4:
5799         Remove lrint/lrintf checks. We don't use it anywhere.
5800
5801 2008-03-18  Andy Wingo  <wingo@pobox.com>
5802
5803         * sys/osxvideo/osxvideosink.m
5804         (gst_osx_video_sink_osxwindow_destroy)
5805         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5806         task, whoopdee.
5807         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5808         2 ms.
5809
5810 2008-03-18  Andy Wingo  <wingo@pobox.com>
5811
5812         * sys/osxvideo/osxvideosink.m
5813         (gst_osx_video_sink_osxwindow_destroy)
5814         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5815         task, whoopdee.
5816         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5817         2 ms.
5818         
5819 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
5820
5821         Patch by: William M. Brack <wbrack at mmm com hk>
5822
5823         * sys/v4l2/v4l2src_calls.c:
5824           (gst_v4l2src_probe_caps_for_format_and_size),
5825           (gst_v4l2src_probe_caps_for_format):
5826           Make sure the probed frame sizes are reversed in the resulting
5827           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5828           highest resolution first); also remove unused variable.
5829           (Partly fixes #520092)
5830
5831 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5832
5833         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5834
5835         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5836         (gst_rtspsrc_finalize):
5837         Call WSAStartup() and WSACleanup before using the Winsock API.
5838         See #520808.
5839
5840 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5841
5842         * gst/avi/gstavidemux.c:
5843           Erm, the buffer-size is just guint, no need for the special format
5844           specifier.
5845
5846 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
5847
5848         * gst/goom/plugin_info.c:
5849         * gst/goom/ppc_zoom_ultimate.h:
5850           Small fixes to build more on PPC: ifdef out code that uses unknown
5851           define; add newline at end of header file to avoid compiler warning.
5852           Assembler code still doesn't build though.
5853
5854 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5855
5856         * gst/avi/gstavidemux.c:
5857           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5858           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5859
5860 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5861
5862         * gst/avi/gstavidemux.c:
5863           Chunksize is uint32. Fix format specifier.
5864
5865 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
5866
5867         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5868         mistake. Return file to pure MIT text.
5869
5870 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5871
5872         * gst/audiofx/audiofx.c:
5873         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5874         of hardcoding values.
5875
5876 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5877
5878         Patch by: Mark Nauwelaerts <manauw skynet be>
5879
5880         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5881           (gst_oss_src_close):
5882         * sys/oss/gstosssrc.h:
5883           Cache probed caps, so _get_caps() during recording doesn't cause
5884           ioctl calls which may disrupt the recording (fixes #521875).
5885
5886 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5887
5888         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5889         (gst_qtdemux_activate_segment),
5890         (gst_qtdemux_prepare_current_sample),
5891         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5892         Make sure we always send a DISCONT after a seek by setting the sample
5893         index to an undefined value after a seek.
5894
5895 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5896
5897         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5898           (GST_IS_AVI_SUBTITLE_CLASS):
5899           Fix up IS_FOO macros, which makes gtk-doc much happier.
5900
5901 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
5902
5903         * tests/icles/Makefile.am:
5904           Move the -lgstfoo where it belongs.
5905
5906 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5907
5908         * gst/matroska/ebml-ids.h:
5909         Add ID for EBML CRC32 elements.
5910
5911         * gst/matroska/Makefile.am:
5912         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5913         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5914         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5915         (gst_ebml_read_header):
5916         Support reading 80bit floats, add finalize method to clean up
5917         in any case, support reading length/id elements with any length
5918         as long as it's smaller than our supported maximum, don't leak
5919         buffers if reading as much data as we wanted failed and some
5920         smaller cleanup.
5921
5922 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5923
5924         Patch by: Olivier Crete <tester at tester dot ca>
5925
5926         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5927         Check that a buffer is large enough before reading from it.
5928         Fixes bug #521102.
5929         
5930 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5931
5932         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5933         Fix compilation after removing the GstPollMode from the
5934         constructor.
5935
5936 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5937
5938         * configure.ac:
5939         * gst/audiofx/Makefile.am:
5940         * gst/audiofx/audiochebband.c:
5941         * gst/audiofx/audiocheblimit.c:
5942         * gst/audiofx/math_compat.h:
5943         Check for sinh(), cosh() and asinh() and define our own
5944         implementations if they're not available. Fixes bug #520880.
5945
5946 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5947
5948         Patch by: Olivier Crete <tester at tester dot ca>
5949
5950         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5951         Unref the buffers only once when handling not-negotiated errors.
5952         Fixes bug #520764.
5953
5954 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5955
5956         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5957
5958         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5959         (gst_udpsrc_stop):
5960         Properly balance WSA_Cleanup with WSA_Startup.
5961         Also make the poll controllable on windows. Fixes #520888.
5962
5963 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5964
5965         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5966         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5967         (gst_ebml_read_element_length), (gst_ebml_peek_id),
5968         (gst_ebml_read_skip), (gst_ebml_read_buffer),
5969         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5970         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5971         (gst_ebml_read_date), (gst_ebml_read_master),
5972         (gst_ebml_read_binary), (gst_ebml_read_header):
5973         * gst/matroska/ebml-read.h:
5974         * gst/matroska/matroska-demux.c:
5975         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5976         (gst_matroska_demux_read_track_encodings),
5977         (gst_matroska_demux_add_stream),
5978         (gst_matroska_demux_handle_src_query),
5979         (gst_matroska_demux_handle_seek_event),
5980         (gst_matroska_demux_init_stream),
5981         (gst_matroska_demux_parse_tracks),
5982         (gst_matroska_demux_parse_index_cuetrack),
5983         (gst_matroska_demux_parse_index_pointentry),
5984         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5985         (gst_matroska_demux_parse_metadata_id_simple_tag),
5986         (gst_matroska_demux_parse_metadata_id_tag),
5987         (gst_matroska_demux_parse_metadata),
5988         (gst_matroska_demux_sync_streams),
5989         (gst_matroska_demux_push_hdr_buf),
5990         (gst_matroska_demux_push_flac_codec_priv_data),
5991         (gst_matroska_demux_push_xiph_codec_priv_data),
5992         (gst_matroska_demux_add_wvpk_header),
5993         (gst_matroska_demux_check_subtitle_buffer),
5994         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5995         (gst_matroska_demux_parse_cluster),
5996         (gst_matroska_demux_parse_contents_seekentry),
5997         (gst_matroska_demux_parse_contents),
5998         (gst_matroska_demux_loop_stream_parse_id),
5999         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
6000         * gst/matroska/matroska-demux.h:
6001         * gst/matroska/matroska-ids.h:
6002         Handle return values from pull_range in a more granular way to properly
6003         shut down on seeks.
6004         Combine return values from push.
6005         Implement proper error handling.
6006         Prepare for handling seeking correctly.
6007
6008 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
6009
6010         * gst/matroska/ebml-read.c:
6011         Use GINT64 formatting constants from GLIB.
6012
6013         * gst/matroska/matroska-demux.c:
6014         Add some guards to avoid a possible division by 0 and crashing
6015         with NULL events on some systems.
6016         Use gst_gdouble_to_guint64 somewhere instead of an implicit
6017         conversion. 
6018
6019         * gst/matroska/matroska-mux.c:
6020         Check for invalid timestamps in a bunch of places to avoid
6021         writing bogus durations into the output file.
6022         Fix some double<->gint64 conversions that weren't using
6023         gst_guint64_to_gdouble
6024
6025 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
6026
6027         * configure.ac:
6028         Move the checks for bison, flex and as to the program section and the
6029         check for gcc inline asm to the compiler characteristics section.
6030
6031 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
6032
6033         * configure.ac:
6034         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
6035         plug-ins are included/excluded. (#498222)
6036
6037 2008-02-29  Michael Smith <msmith@fluendo.com>
6038
6039         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
6040           Don't call gst_object_sync_values() unless we have a valid timestamp.
6041
6042 2008-02-28  David Schleef  <ds@schleef.org>
6043
6044         * gst/matroska/matroska-demux.c:
6045         * gst/matroska/matroska-ids.h:
6046         * gst/matroska/matroska-mux.c:
6047           Fix Dirac mapping.  I had previously added a VfW-type
6048           mapping, but it looks like Dirac will get a native Matroska
6049           mapping, and this is the most likely method.
6050
6051 2008-02-28  David Schleef  <ds@schleef.org>
6052
6053         * gst/avi/gstavimux.c: Add Dirac encoding
6054
6055 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
6056
6057         Patch by: Peter Kjellerstedt <pkj at axis com>
6058
6059         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
6060         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
6061         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
6062         * gst/udp/gstudpsrc.h:
6063         Port to GstPoll. See #505417.
6064
6065 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
6066
6067         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
6068         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
6069         yet on the srcpad. We need rate and channels before we
6070         can do any processing. Fixes bug #519088.
6071
6072 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
6073
6074         * configure.ac:
6075         Detect and indicate if GCC inline assembly syntax is
6076         available.
6077
6078         * gst/goom/Makefile.am:
6079         * gst/goom/convolve_fx.c:
6080         * gst/goom/flying_stars_fx.c:
6081         * gst/goom/goom_config.h:
6082         * gst/goom/goom_core.c:
6083         * gst/goom/goomsl.c:
6084         * gst/goom/ifs.c:
6085         * gst/goom/mmx.c:
6086         * gst/goom/plugin_info.c:
6087         * gst/goom/xmmx.c:
6088         Fix various GCC-isms, and only build the inline assembly
6089         with compilers that support GCC inline assembly.
6090
6091         Fix a couple of other warnings shown with Forte.
6092
6093 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
6094
6095         * gst/goom/xmmx.c:
6096           Use 'emms' instead of 'femms' to not crash on cpus that do not
6097           implement this 3dnow specific instruction.
6098
6099 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6100
6101         * gst/goom/plugin_info.c: (setOptimizedMethods):
6102         Use extended MMX for draw_line() too if available, not only
6103         normal MMX.
6104
6105 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6106
6107         * ext/jpeg/gstjpeg.c: (plugin_init):
6108         Remove (commented out) smoke typefinder. This is in base now.
6109
6110 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
6111
6112         * gst/goom2k1/Makefile.am:
6113         * gst/goom2k1/gstgoom.c:
6114
6115         Rename the installed library, and don't register the same 
6116         GType name as the new goom.
6117
6118 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6119
6120         * configure.ac:
6121         * ext/taglib/Makefile.am:
6122           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
6123           when building C++ code (#516509).
6124
6125 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6126
6127         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
6128         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
6129           (setOptimizedMethods):
6130           Call oil_init(), otherwise oil_get_cpu_flags() won't return
6131           anything useful. Export goom debug category so we can get
6132           rid of the VERBOSE define and the printfs.
6133
6134 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6135
6136         * gst/goom/goomsl_heap.c: (align_it):
6137         * gst/goom/plugin_info.c: (setOptimizedMethods):
6138           Compile fixes for x86-64.
6139
6140 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6141
6142         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
6143         with warnings, but add other CFLAGS
6144
6145         * gst/goom/goomsl.c (gsl_instr_set_namespace),
6146         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
6147         (calculate_labels), (gsl_read_file):
6148         * gst/goom/goomsl_lex.l:
6149         * gst/goom/goomsl_yacc.y:
6150         * gst/goom/plugin_info.c: Remove a few live printf, and
6151         fprintf, replace exit() calls with g_assert_not_reached()
6152         if it not optimal for a library
6153
6154 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6155
6156         * gst/goom/Makefile.am: Remove the warnings being disabled,
6157         fix linkage on x86, spotted by Sebastian Dröge
6158         <slomo@circular-chaos.org>
6159
6160         * gst/goom/convolve_fx.c (convolve_init),
6161         (create_output_with_brightness), (convolve_apply):
6162         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
6163         * gst/goom/goomsl.c:
6164         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
6165         * gst/goom/plugin_info.c:
6166         * gst/goom/tentacle3d.c (tentacle_fx_create):
6167         Fix warnings, and disable the motifs in the convolve_fx
6168         plugin (they were causing warnings, and they were just
6169         "Goom" in funny letterring)
6170
6171 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6172
6173         * configure.ac: Add checks for Flex/Yacc/Bison and other
6174         furry animals, for the new goom 2k4 based plugin
6175
6176         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
6177         CPU optimisations (not working yet), move the old plugin to...
6178
6179         * gst/goom2k1/*: ... here, in case somebody is sick enough
6180
6181         Fixes #515073
6182
6183 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
6184
6185         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6186         Post the server response code in an error message instead of a generic
6187         'error' message. Fixes #517237.
6188
6189 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6190
6191         * tests/check/Makefile.am:
6192         Ignore gconfaudiosrc for the states unit test too. It will fallback
6193         to alsasrc if the gconf settings can't be read and not everybody has
6194         alsa.
6195
6196 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6197
6198         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6199         (gst_wavpack_parse_create_src_pad):
6200         * ext/wavpack/gstwavpackparse.h:
6201         Always report the duration if we know it in push mode and don't
6202         return 0 just to make totem believe we can't seek in push mode.
6203         Newer totem version use the SEEKING query which properly reports
6204         if we can seek or not.
6205
6206 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6207
6208         Patch by: Jens Granseuer <jensgr at gmx dot net>
6209
6210         * tests/examples/equalizer/demo.c: (main):
6211         C89 fix, moving variable declarations to the beginning of
6212         the block. Fixes bug #517933.
6213
6214 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
6215
6216         * configure.ac:
6217         Back to development...
6218
6219 === release 0.10.7 ===
6220
6221 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
6222
6223         * configure.ac:
6224           releasing 0.10.7, "Red Door Black"
6225
6226 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
6227
6228         * gst/alpha/Makefile.am:
6229         Link alpha plugin with libgstbase. Fixes bug #517386.
6230
6231 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6232
6233         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6234         Init values to -1 instead of the default 0 value.
6235         Fixes #516524.
6236
6237 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
6238
6239         * tests/examples/spectrum/spectrum-example.c:
6240         Add missing include to fix compilation when libxml usage is disabled.
6241         Fixes: #516371
6242
6243 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6244
6245         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
6246         fixes: #514889
6247
6248         * gst/rtp/gstrtph264pay.c:
6249         * gst/rtp/gstrtpmp4gdepay.c:
6250         * gst/rtp/gstrtpmp4gpay.c:
6251         * gst/rtp/gstrtpmp4gpay.h:
6252         * gst/rtp/gstrtptheorapay.c:
6253         * gst/rtp/gstrtpvorbispay.c:
6254
6255         Fix various leaks shown up in valgrind
6256         - free sprops and buffer in error cases in H264 payloader
6257         - fix leak in mp4g depayloader when construction the caps
6258         - don't leak config string in the mp4g payloader
6259         - don't leak buffers and headers in theora and vorbis payloaders
6260
6261         * tests/check/elements/rtp-payloading.c:
6262
6263         Fix the RTP data test
6264         - Actually send valid amr data to the payloader instead of 20
6265         zero-bytes
6266         - The mp4g payloader expects codec_data on the caps
6267
6268 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
6269
6270         * win32/MANIFEST:
6271         Add libgstpng.dsp to MANIFEST.
6272         * win32/vs6/libgstaudiofx.dsp:
6273         Add new source files to VS project file.
6274
6275 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6276
6277         * sys/ximage/gstximagesrc.c:
6278         Initialise variables when opening the X display rather
6279         than in _start(), as the display can be opened before that.
6280
6281         Fixes: #515985
6282
6283 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6284
6285         * sys/directdraw/gstdirectdrawsink.c:
6286         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6287         (gst_directdraw_sink_finalize):
6288         Properly chain up finalize functions. Fixes bug #515980.
6289
6290 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6291
6292         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6293         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6294         (gst_v4l2_buffer_pool_class_init):
6295         Chain up the finalize functions. Fixes bug #515984.
6296
6297 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6298
6299         * sys/ximage/ximageutil.c:
6300         Chain up in the finalize function for our custom
6301         buffer sub-class.
6302         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
6303         Fixes: #515706
6304
6305 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6306
6307         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6308         (gst_fenced_buffer_class_init):
6309         Properly chain up finalize method. Fixes bug #515979.
6310
6311 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6312
6313         * sys/ximage/gstximagesrc.c:
6314         Free allocated Damage memory before closing our connection to the
6315         X server. Partially fixes: #515706
6316
6317 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6318
6319         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6320         * tests/check/Makefile.am:
6321         * tests/check/gst-plugins-good.supp:
6322         Add a few libjpeg suppressions and initialize a variable to
6323         make smokeenc valgrind clean. Fixes bug #515701.
6324
6325 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
6326
6327         * gst/avi/gstavidemux.c:
6328         Revert patch which sends timestamps only on keyframes, as it
6329         breaks playback with current gst-ffmpeg.
6330
6331         Fixes: #515562
6332
6333 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6334
6335         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6336         * tests/check/elements/multifile.c: (GST_START_TEST):
6337         Close some memory leaks spotted by the unit test. Fixes bug #515697.
6338
6339 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6340
6341         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6342         Use and unset the GError when pipeline creation fails instead of
6343         simply leaking it. Fixes bug #515704.
6344
6345 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
6346
6347         * gst/audiofx/audioamplify.c:
6348         * gst/audiofx/audiochebband.c:
6349         * gst/audiofx/audiocheblimit.c:
6350         * gst/audiofx/audiodynamic.c:
6351         * gst/audiofx/audioinvert.c:
6352         * gst/audiofx/audiopanorama.c:
6353         * gst/audiofx/audiowsincband.c:
6354         * gst/audiofx/audiowsinclimit.c:
6355         Fix long description of audiofx elements. Fixes bug #515457.
6356
6357 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
6358
6359         * docs/plugins/Makefile.am:
6360         * gst/spectrum/gstspectrum.c:
6361         * tests/examples/spectrum/.cvsignore:
6362         * tests/examples/spectrum/Makefile.am:
6363         * tests/examples/spectrum/spectrum-example.c:
6364
6365         Add a simple example application for the spectrum element, include it
6366         in the docs, and fix some documentation ambiguities.
6367
6368         Fixes: #348085
6369
6370 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6371
6372         * gst/equalizer/Makefile.am:
6373         * gst/spectrum/Makefile.am:
6374         Fix includes order
6375
6376         * tests/check/Makefile.am:
6377         Exclude v4l2src from the states test - it takes too long to start.
6378
6379         * tests/check/elements/spectrum.c:
6380         Make the test run properly with CK_FORK=no
6381
6382 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6383
6384         * gst/audiofix/Makefile.am: add missing header files 
6385
6386 2008-02-08  Julien Moutte  <julien@fluendo.com>
6387
6388         * gst/matroska/matroska-demux.c:
6389         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6390         keyframe and delta units correctly when dealign with a BlockGroup.
6391         Fixes: #514397
6392
6393 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6394
6395         * tests/check/elements/.cvsignore:
6396         Spell the new tests correctly in .cvsignore
6397
6398 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6399
6400         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6401           Need to use gsize here for the size, fixes compiler warning.
6402
6403         * tests/examples/equalizer/.cvsignore:
6404         * tests/examples/equalizer/Makefile.am:
6405         * tests/examples/spectrum/.cvsignore:
6406         * tests/examples/spectrum/Makefile.am:
6407           Add missing files to fix the build.
6408
6409 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6410
6411         * configure.ac:
6412         * docs/plugins/Makefile.am:
6413         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6414         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6415         * docs/plugins/gst-plugins-good-plugins.args:
6416         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6417         * docs/plugins/inspect/plugin-multifile.xml:
6418         * tests/check/Makefile.am:
6419         * tests/check/elements/.cvsignore:
6420
6421         Move multifile plugin from -bad.
6422         Fixes: #490283
6423
6424 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6425
6426         * configure.ac:
6427         * docs/plugins/Makefile.am:
6428         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6429         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6430         * docs/plugins/gst-plugins-good-plugins.args:
6431         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6432         * docs/plugins/inspect/plugin-spectrum.xml:
6433         * gst/spectrum/Makefile.am:
6434         * tests/check/Makefile.am:
6435         * tests/check/elements/.cvsignore:
6436         * tests/examples/Makefile.am:
6437
6438         Move spectrum plugin from -bad.
6439         Move examples into tests/examples/spectrum.
6440
6441 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6442
6443         * configure.ac:
6444         * docs/plugins/Makefile.am:
6445         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6446         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6447         * docs/plugins/gst-plugins-good-plugins.args:
6448         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6449         * docs/plugins/gst-plugins-good-plugins.interfaces:
6450         * docs/plugins/inspect/plugin-equalizer.xml:
6451         * gst/equalizer/Makefile.am:
6452         * tests/check/Makefile.am:
6453         * tests/examples/Makefile.am:
6454         Move the equalizer plugin across from -bad
6455
6456         * tests/check/elements/.cvsignore:
6457         Add equalizer, audiosincwband and audiosincwlimit
6458
6459         * tests/check/elements/equalizer.c:
6460         Fix compiler warnings
6461
6462         Fixes: #415627
6463
6464 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6465
6466         * configure.ac:
6467         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6468         are treated like releases and build without it.
6469
6470 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6471
6472         * docs/plugins/Makefile.am:
6473         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6474         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6475         * docs/plugins/gst-plugins-good-plugins.args:
6476         * docs/plugins/inspect/plugin-audiofx.xml:
6477         * gst/audiofx/Makefile.am:
6478         * gst/audiofx/audiofx.c:
6479         * gst/audiofx/audiowsincband.c:
6480         * gst/audiofx/audiowsincband.h:
6481         * gst/audiofx/audiowsinclimit.c:
6482         * gst/audiofx/audiowsinclimit.h:
6483         * tests/check/Makefile.am:
6484         * tests/check/elements/audiowsincband.c:
6485         * tests/check/elements/audiowsinclimit.c:
6486
6487         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6488         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6489         respectively.
6490
6491         Fixes: #467666
6492
6493 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6494
6495         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6496         * tests/check/elements/icydemux.c:
6497           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6498           caps, and add a somewhat useful debug message. Plus test.
6499
6500 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
6501
6502         * gst/rtsp/gstrtspsrc.c:
6503         Include unistd.h only if HAVE_UNISTD_H is defined
6504         * win32/common/config.h.in:
6505         * win32/common/config.h:
6506         Define socklen_t as it seems it's not defined in default 
6507         Visual Studio headers.
6508         * win32/vs6/libgstalpha.dsp:
6509         * win32/vs6/libgstapetag.dsp:
6510         * win32/vs6/libgstavi.dsp:
6511         * win32/vs6/libgstrtp.dsp:
6512         * win32/vs6/libgstrtsp.dsp:
6513         * win32/vs6/libgstvideomixer.dsp:
6514         Update project file dependencies and add new source files       
6515
6516 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
6517
6518         Patch by: Bjarne Rosengren <bjarne at axis dot com>
6519
6520         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6521         Don't leak buffers when we don't push them downstream.
6522         Fixes bug #514965.
6523
6524 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6525
6526         * configure.ac:
6527           Bump requirements to (good) released versions to avoid
6528           confusion and make implicit core requirement explicit.
6529
6530 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
6531
6532         * docs/plugins/Makefile.am:
6533         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6534         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6535         * docs/plugins/gst-plugins-good-plugins.args:
6536         * docs/plugins/inspect/plugin-audiofx.xml:
6537         * gst/audiofx/Makefile.am:
6538         * gst/audiofx/audiochebband.c:
6539         * gst/audiofx/audiochebband.h:
6540         * gst/audiofx/audiocheblimit.c:
6541         * gst/audiofx/audiocheblimit.h:
6542         * gst/audiofx/audiochebyshevfreqband.c:
6543         * gst/audiofx/audiochebyshevfreqband.h:
6544         * gst/audiofx/audiochebyshevfreqlimit.c:
6545         * gst/audiofx/audiochebyshevfreqlimit.h:
6546         * gst/audiofx/audiofx.c:
6547         * tests/check/Makefile.am:
6548         * tests/check/elements/.cvsignore:
6549         * tests/check/elements/audiochebband.c:
6550         * tests/check/elements/audiocheblimit.c:
6551         * tests/check/elements/audiochebyshevfreqband.c:
6552         * tests/check/elements/audiochebyshevfreqlimit.c:
6553
6554         Rename audiochebyshevfreqband -> audiochebband and
6555         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6556         surgery.
6557
6558         Closes: #491811
6559
6560 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
6561
6562         Patch by: Orjan Friberg <orjanf at axis dot com>
6563
6564         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6565         Fix caps memory leak. Fixes #514573.
6566
6567 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6568
6569         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6570         If there's no entries in the subindex, don't try to do anything stupid,
6571         just return.
6572
6573 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6574
6575         Patch by: John Millikin <jmillikin at gmail dot com>
6576
6577         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6578           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6579           Fix extraction of picture blocks with newer libflac versions again:
6580           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6581
6582 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6583
6584         * tests/check/Makefile.am:
6585           Add rtp-payloading test to VALGRIND_TO_FIX.
6586
6587         * tests/check/elements/rtp-payloading.c:
6588           Add semicolons after GST_TEST_END so gst-indent gets the
6589           formatting right; make test less verbose in general, but
6590           more verbose in the error case (which should probably
6591           make the test fail anyway).
6592
6593 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
6594
6595         * docs/plugins/Makefile.am:
6596         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6597         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6598         * gst/avi/gstavisubtitle.c:
6599         Add documentation for avisubtitle and change class to
6600         Codec/Parser/Subtitle
6601
6602 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6603
6604         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6605         Treat ENOTTY (driver does not implement ioctl) the same as
6606         EINVAL since it implies there are no available standards.
6607
6608         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6609         (gst_v4l2src_get_nearest_size):
6610         Replace gst_v4l2src_get_size_limits with 2 calls to new function
6611         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6612         probe if the driver does not support VIDIOC_TRY_FMT for whatever
6613         reason, and if we aren't yet actively capturing.
6614
6615         * sys/v4l2/v4l2src_calls.h:
6616         Remove replaced function declaration.
6617
6618 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6619
6620         * configure.ac:
6621         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6622         API.
6623
6624 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
6625
6626         * configure.ac:
6627         Fix typo.
6628
6629 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
6630
6631         * gst/alpha/Makefile.am:
6632         * gst/alpha/gstalpha.c:
6633
6634         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6635         some stuff, and making buffer-alloc and resizing work automatically.
6636         No longer crashes on odd frame widths and heights, although there
6637         seems to be a disagreement with ffmpegcolorspace about what size
6638         an AYUV frame with odd height should be.
6639
6640 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6641
6642         Patch by: Alessandro Decina <alessandro at nnva dot org>
6643
6644         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6645         * ext/libpng/gstpngenc.h:
6646         Preallocate the output buffer so that g_memdup() and
6647         gst_buffer_merge() aren't needed anymore. This greatly improves
6648         performances and fixes #512544.
6649
6650 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6651
6652         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6653         (gst_avi_demux_stream_data):
6654         GStreamer timestamps are PTS values while AVI only knows about DTS
6655         timestamps. Make sure we only copy the DTS as the buffer timestamp when
6656         we are dealing with a key frame.
6657
6658 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6659
6660         * tests/check/Makefile.am:
6661         * tests/check/elements/.cvsignore:
6662         * tests/check/elements/rtp-payloading.c:
6663           Add add testsuite for the rtp-payloader that tries simulating
6664           dataflow. Needs more test data.
6665
6666 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6667
6668         * tests/check/elements/alphacolor.c:
6669           Remove two unused variables.
6670
6671 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6672
6673         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6674           Use g_ascii_strtoll() instead of atoll, which is only
6675           available in C99.
6676
6677 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
6678
6679         * gst/rtp/Makefile.am:
6680         * gst/rtp/gstrtp.c:
6681         * gst/rtp/gstrtpmpvpay.c:
6682         * gst/rtp/gstrtpmpvpay.h:
6683         Add MPEG2 video payloader
6684
6685 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6686
6687         * gst/level/gstlevel.c:
6688         Use #include <math.h> instead of #include "math.h".
6689
6690 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6691
6692         * tests/check/Makefile.am:
6693         Fix up some CFLAGS sets.
6694         Don't include gconfvideosrc in the states test.
6695
6696         * tests/check/elements/autodetect.c: (GST_START_TEST):
6697         Add some error strings to fail_unless arguments to fix some weird
6698         compiler errors on Solaris.
6699
6700 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6701
6702         * configure.ac:
6703         Detect video4linux headers on Solaris too.
6704         * sys/v4l2/gstv4l2colorbalance.h:
6705         * sys/v4l2/gstv4l2object.h:
6706         * sys/v4l2/v4l2_calls.c:
6707         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6708         (gst_v4l2_buffer_new):
6709
6710         Make v4l2 build on Solaris.
6711         Patch by: Brian Cameron  <brian.cameron at sun dot com>
6712         Fixes: #510505
6713
6714 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6715
6716         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6717           Update list from (still local) scanning script.
6718
6719 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6720
6721         Based on a patch by:
6722             Victor STINNER <victor dot stinner at haypocalc dot com>
6723
6724         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6725         Set variable to NULL after freeing it to prevent double frees
6726         or make failures by another use of it afterwards more obvious
6727         and fix use of it after the freeing. Fixes bug #510592.
6728
6729 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6730
6731         * gst/udp/gstmultiudpsink.c:
6732         use GST_WARNING for logging
6733
6734 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6735
6736         * gst/udp/gstmultiudpsink.c:
6737         Don't try to leave a multicast group with an invalid socket
6738
6739 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
6740
6741         * ext/flac/gstflacdec.c:
6742           Fix compilation against flac 1.1.2 (as on debian stable), where
6743           the picture metadata defines and structs don't exist yet.
6744           Fixes #509301.
6745
6746 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
6747
6748         Patch by: Olivier Crete <tester at tester dot ca>
6749
6750         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6751         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6752         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6753         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6754         * gst/udp/gstmultiudpsink.h:
6755         Add property to automatically join a multicast group or not. This can be
6756         useful when sharing a socket between multiple elements.
6757         Fixes #509531.
6758
6759 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6760
6761         * gst/videomixer/Makefile.am:
6762           Add controller flags.
6763
6764 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6765
6766         * gst/videomixer/videomixer.c:
6767           Also commit the missing gst_object_sync_values().
6768
6769 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6770
6771         * docs/plugins/Makefile.am:
6772           Remove duplicate entry.
6773
6774 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6775
6776         * docs/plugins/Makefile.am:
6777         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6778         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6779         * docs/plugins/inspect/plugin-gamma.xml:
6780         * docs/plugins/inspect/plugin-monoscope.xml:
6781         * docs/plugins/inspect/plugin-video4linux2.xml:
6782           Add 3 more plugins to docs.
6783
6784 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6785
6786         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6787         * sys/osxvideo/osxvideosink.h:
6788           Revert previous change caused by a file that got stuck on an old
6789           revision.
6790
6791 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6792
6793         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6794         * gst/multipart/Makefile.am:
6795         * gst/multipart/multipartdemux.c:
6796         * gst/multipart/multipartdemux.h:
6797         * gst/multipart/multipartmux.c:
6798         * gst/multipart/multipartmux.h:
6799           Re-add multipartdemux to the docs. Last round of section cleanup.
6800
6801 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6802
6803         * docs/plugins/Makefile.am:
6804         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6805         * sys/osxaudio/gstosxaudiosink.h:
6806         * sys/osxvideo/osxvideosink.h:
6807           Managed to resolve most unused declarations. Filed a bug for one left.          
6808
6809 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6810
6811         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6812           Cleanup section file.
6813
6814 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6815
6816         * docs/plugins/Makefile.am:
6817         * docs/plugins/gst-plugins-good-plugins.args:
6818         * docs/plugins/gst-plugins-good-plugins.signals:
6819         * docs/plugins/inspect/plugin-alaw.xml:
6820         * docs/plugins/inspect/plugin-alpha.xml:
6821         * docs/plugins/inspect/plugin-alphacolor.xml:
6822         * docs/plugins/inspect/plugin-annodex.xml:
6823         * docs/plugins/inspect/plugin-apetag.xml:
6824         * docs/plugins/inspect/plugin-audiofx.xml:
6825         * docs/plugins/inspect/plugin-auparse.xml:
6826         * docs/plugins/inspect/plugin-autodetect.xml:
6827         * docs/plugins/inspect/plugin-avi.xml:
6828         * docs/plugins/inspect/plugin-cairo.xml:
6829         * docs/plugins/inspect/plugin-cdio.xml:
6830         * docs/plugins/inspect/plugin-cutter.xml:
6831         * docs/plugins/inspect/plugin-debug.xml:
6832         * docs/plugins/inspect/plugin-dv.xml:
6833         * docs/plugins/inspect/plugin-efence.xml:
6834         * docs/plugins/inspect/plugin-effectv.xml:
6835         * docs/plugins/inspect/plugin-flac.xml:
6836         * docs/plugins/inspect/plugin-flxdec.xml:
6837         * docs/plugins/inspect/plugin-gconfelements.xml:
6838         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6839         * docs/plugins/inspect/plugin-goom.xml:
6840         * docs/plugins/inspect/plugin-halelements.xml:
6841         * docs/plugins/inspect/plugin-icydemux.xml:
6842         * docs/plugins/inspect/plugin-id3demux.xml:
6843         * docs/plugins/inspect/plugin-jpeg.xml:
6844         * docs/plugins/inspect/plugin-ladspa.xml:
6845         * docs/plugins/inspect/plugin-level.xml:
6846         * docs/plugins/inspect/plugin-matroska.xml:
6847         * docs/plugins/inspect/plugin-mulaw.xml:
6848         * docs/plugins/inspect/plugin-multipart.xml:
6849         * docs/plugins/inspect/plugin-navigationtest.xml:
6850         * docs/plugins/inspect/plugin-png.xml:
6851         * docs/plugins/inspect/plugin-quicktime.xml:
6852         * docs/plugins/inspect/plugin-rtp.xml:
6853         * docs/plugins/inspect/plugin-rtsp.xml:
6854         * docs/plugins/inspect/plugin-shout2send.xml:
6855         * docs/plugins/inspect/plugin-smpte.xml:
6856         * docs/plugins/inspect/plugin-speex.xml:
6857         * docs/plugins/inspect/plugin-taglib.xml:
6858         * docs/plugins/inspect/plugin-udp.xml:
6859         * docs/plugins/inspect/plugin-videobalance.xml:
6860         * docs/plugins/inspect/plugin-videobox.xml:
6861         * docs/plugins/inspect/plugin-videocrop.xml:
6862         * docs/plugins/inspect/plugin-videoflip.xml:
6863         * docs/plugins/inspect/plugin-videomixer.xml:
6864         * docs/plugins/inspect/plugin-wavenc.xml:
6865         * docs/plugins/inspect/plugin-wavpack.xml:
6866         * docs/plugins/inspect/plugin-wavparse.xml:
6867           Update plugin docs.
6868
6869         * gst/videomixer/Makefile.am:
6870         * gst/videomixer/videomixer.c:
6871         * gst/videomixer/videomixer.h:
6872         * gst/videomixer/videomixerpad.h:
6873           Split out header to fix warnings from the doc-build.
6874
6875 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6876
6877         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6878
6879         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6880         Use atoll to parse the rtptime with enough precision. Fixes #509329.
6881
6882 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6883
6884         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6885         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6886           Initialise variables to work around (false) 'foo might be used
6887           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6888
6889 2008-01-11  David Schleef  <ds@schleef.org>
6890
6891         * docs/plugins/.cvsignore:
6892         * tests/check/pipelines/.cvsignore:
6893           Ignore more files for the buildbot.
6894
6895 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
6896
6897         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6898         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6899         Generate the image-type values correctly. Leave them out of the caps
6900         when outputting a "preview image" tag, since it only makes sense
6901         to have one of those - the type is irrelevant.
6902
6903         * sys/sunaudio/gstsunaudiomixerctrl.c:
6904         (gst_sunaudiomixer_ctrl_open):
6905         If we can, mark the mixer multiple open when we use it, in case
6906         (for some reason) the process wants to open it again elsewhere.
6907
6908 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
6909
6910         Patch by: Olivier Crete <tester at tester dot ca>
6911
6912         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6913         * gst/rtp/gstrtptheorapay.c:
6914         Fix the clock rate to 90000 as required by the RFC.
6915         Fixes #508644.
6916
6917 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6918
6919         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6920           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6921
6922 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
6923
6924         * autogen.sh:
6925           Add -Wno-portability to the automake parameters to stop warnings
6926           about GNU make extensions being used. We require GNU make in almost
6927           every Makefile anyway.
6928           
6929         * configure.ac:
6930           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6931           at the same time is required for per target flags.
6932
6933 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6934
6935         * gst/videomixer/videomixer.c: (gst_videomixer_init):
6936         Fix error from my last commit.
6937
6938 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6939
6940         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6941
6942         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6943           Make sure the ISO 639-X language code in ID3v2 COMM frames
6944           is actually valid UTF-8 (or rather: ASCII), so we don't end
6945           up with non-UTF8 strings in tags if there's garbage in the
6946           language field. Also make sure the language code is always
6947           lower case. Fixes: #508291.
6948
6949 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6950
6951         * ChangeLog:
6952           Fix ChangeLog typo.
6953
6954 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6955
6956         * Makefile.am:
6957           Include lcov.mak to allow building coverage reports. Guard
6958           check-torture target like in the other packages.
6959
6960 2008-01-09  Sameer Naik  <sameer@damagehead.com>
6961
6962         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
6963
6964         * gst/videomixer/videomixer.c:
6965         (gst_videomixer_set_master_geometry), (_do_init),
6966         (gst_videomixer_child_proxy_get_child_by_index),
6967         (gst_videomixer_child_proxy_get_children_count),
6968         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6969         (gst_videomixer_init), (gst_videomixer_request_new_pad),
6970         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6971         Implement GstChildProxy interface.
6972         Send newsegment at the right moment
6973         Fixes #488879
6974
6975 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6976
6977         * gst/alpha/Makefile.am:
6978         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6979         (gst_alpha_sink_event), (gst_alpha_chain),
6980         (gst_alpha_change_state), (plugin_init):
6981         Make the various properties of 'alpha' controllable. This allows doing
6982         niceties like fade-in/fade-out.
6983
6984 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6985
6986         * gst/rtp/gstasteriskh263.c:
6987         * gst/rtp/gstrtpL16depay.c:
6988         * gst/rtp/gstrtpac3depay.c:
6989         * gst/rtp/gstrtpamrpay.c:
6990         * gst/rtp/gstrtpdepay.c:
6991         * gst/rtp/gstrtpgsmdepay.c:
6992         * gst/rtp/gstrtph263depay.c:
6993         * gst/rtp/gstrtph263pdepay.c:
6994         * gst/rtp/gstrtph263ppay.c:
6995         * gst/rtp/gstrtph264depay.c:
6996         * gst/rtp/gstrtph264pay.c:
6997         * gst/rtp/gstrtpmp2tdepay.c:
6998         * gst/rtp/gstrtpmp4adepay.c:
6999         * gst/rtp/gstrtpmp4gdepay.c:
7000         * gst/rtp/gstrtpmp4gpay.c:
7001         * gst/rtp/gstrtpmp4vdepay.c:
7002         * gst/rtp/gstrtpmpadepay.c:
7003         * gst/rtp/gstrtpmpvdepay.c:
7004         * gst/rtp/gstrtpsv3vdepay.c:
7005         * gst/rtp/gstrtptheoradepay.c:
7006         * gst/rtp/gstrtptheorapay.c:
7007         * gst/rtp/gstrtpvorbisdepay.c:
7008         * gst/rtp/gstrtpvorbispay.c:
7009           Remove copy/paste unused code (property setters and getter) found by
7010           the coverage suite (yay, saves ~20k on disk).
7011
7012 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
7013
7014         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
7015           (videosink_templ):
7016           Also fix up pad templates to indicate that image/jpeg doesn't
7017           absolutely require the framerate property to be set (#504081).
7018
7019 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
7020
7021         Based on patch by: Wouter Cloetens  <wouter at mind be>
7022
7023         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
7024           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
7025           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
7026         * gst/matroska/matroska-mux.h:
7027           Keep track of first and last timestamps for each incoming stream,
7028           so we can calculate the total duration for live sources and other
7029           input where we can't query the duration from the start or where
7030           there's no constant framerate from which we can deduce the
7031           duration; also use calculated/observed duration if it is bigger
7032           than the previously queried duration. Furthermore, use
7033           gst_pad_query_peer_duration() and take into account that it may
7034           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
7035           screws up comparisons when using unsigned integers. Fixes #504081.
7036
7037 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
7038
7039         * configure.ac:
7040         * gst/audiofx/audioamplify.c:
7041         (gst_audio_amplify_clipping_method_get_type),
7042         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
7043         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
7044         (gst_audio_dynamic_transform_ip):
7045         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
7046         (gst_audio_invert_transform_ip):
7047         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
7048         (gst_audio_panorama_transform):
7049         * gst/level/gstlevel.c: (gst_level_init):
7050         Make elements GST_BUFFER_FLAG_GAP aware and call
7051         gst_base_transform_set_gap_aware for this.
7052         Bump core requirement to CVS.
7053         
7054         * gst/audiofx/audiochebyshevfreqband.c:
7055         (gst_audio_chebyshev_freq_band_transform_ip):
7056         * gst/audiofx/audiochebyshevfreqlimit.c:
7057         (gst_audio_chebyshev_freq_limit_transform_ip):
7058         Also sync GObject properties to the controller if operating
7059         in passthrough mode.
7060
7061 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
7062
7063         * sys/directdraw/gstdirectdrawsink.c:
7064           (gst_directdraw_sink_window_thread):
7065           FALSE is not a gpointer.
7066
7067 2008-01-05  Julien Moutte  <julien@fluendo.com>
7068
7069         * sys/directdraw/gstdirectdrawsink.c:
7070         (gst_directdraw_sink_set_window_id),
7071         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
7072         (gst_directdraw_sink_buffer_alloc),
7073         (gst_directdraw_sink_draw_borders),
7074         (gst_directdraw_sink_show_frame),
7075         (gst_directdraw_sink_setup_ddraw),
7076         (gst_directdraw_sink_window_thread),
7077         (gst_directdraw_sink_get_ddrawcaps),
7078         (gst_directdraw_sink_surface_create): Make sure we create our
7079         internal window only when we need it. That will give a chance to
7080         the application to get the prepare-xwindow-id bus message. Draw
7081         black borders when keeping aspect ratio. Handle the case where our
7082         rendering window disappears (closed or errors) like other sinks
7083         do. Various 80 columns fixes, improve state change order. That
7084         element could need some more love.
7085
7086 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
7087
7088         * ext/taglib/gstapev2mux.h:
7089         * ext/taglib/gstid3v2mux.h:
7090         Remove useless typedefs without new type name. Fixes a warning with
7091         gcc 4.3.
7092
7093 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
7094
7095         Patch by: John Millikin <jmillikin at gmail dot com>
7096
7097         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
7098         (gst_flac_dec_setup_stream_decoder),
7099         (gst_flac_normalize_picture_mime_type),
7100         (gst_flac_extract_picture_buffer),
7101         (gst_flac_dec_metadata_callback):
7102         Emit metadata messages when a PICTURE block is encountered.
7103         Fixes #506715.
7104
7105 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
7106
7107         * gst/avi/gstavi.c:
7108         increase rank because no known issues anymore ...
7109         * gst/avi/gstavisubtitle.c:
7110         send subtitle name to the srcpad
7111
7112 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7113
7114         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
7115         * gst/rtsp/gstrtspsrc.h:
7116         Implement redirect for the DESCRIBE reply. Fixes #506025.
7117
7118 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7119
7120         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
7121         Fix 'xyz may be used uninitialized' compiler warnings caused
7122         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7123         abort() in any case but properly report the error.
7124
7125 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
7126
7127         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
7128         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
7129         * sys/ximage/gstximagesrc.c: (composite_pixel):
7130           Fix 'xyz may be used uninitialized' compiler warnings caused
7131           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
7132           not really nice to abort in any case). Fixes #505745.
7133
7134 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7135
7136         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
7137           Small unit test fix (has no practical impact at the moment,
7138           since we're only feeding utf8 and hence just create a sub-
7139           buffer for the output).
7140
7141 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
7142
7143         * gst/avi/gstavisubtitle.c:
7144         * tests/check/elements/avisubtitle.c:
7145         Add seeking support for avi subtitle
7146
7147 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7148
7149         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
7150         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
7151         (gst_flac_dec_write):
7152         * ext/flac/gstflacdec.h:
7153         Remove some unused vars.
7154         Do more cleanup of leftover events and tags.
7155         Output tags after the segment event. Fixes #504018.
7156
7157 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7158
7159         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
7160           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
7161           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
7162           Detect other UTF byte order markers and convert to UTF-8 as
7163           appropriate.
7164
7165 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7166
7167         * gst/avi/gstavisubtitle.c: (src_template),
7168           (gst_avi_subtitle_extract_utf8_file),
7169           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
7170           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
7171           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
7172         * gst/avi/gstavisubtitle.h:
7173           Refactor a bit; fix name extraction; don't assume all the data
7174           in the chunk is actually subtitle data, there may be padding at
7175           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
7176           file so it's there to send again after a seek (for future use).
7177
7178 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
7179
7180         * gst/avi/Makefile.am:
7181         * gst/avi/gstavi.c:
7182         * gst/avi/gstavisubtitle.c:
7183         * gst/avi/gstavisubtitle.h:
7184         * tests/check/Makefile.am:
7185         * tests/check/elements/avisubtitle.c:
7186         * win32/common/config.h:
7187                 Add avi subtitle element for bug #442034. Need seeking support
7188                 and more support for character conversion.
7189
7190 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7191
7192         * Makefile.am:
7193           Include common/win32.mak for CRLF check of win32 project
7194           files (see #393626).
7195
7196         * win32/vs6/libgstpng.dsp:
7197           Fix line endings and do cvs admin -kb.
7198
7199 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
7200
7201         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7202         Actually drop the buffers which are outside the currently configured
7203         segment instead of just emitting a WARNING.
7204
7205 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
7206
7207         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7208         (gst_flac_dec_write):
7209         * ext/flac/gstflacdec.h:
7210         Send segments from the streaming thread. Fixes #502187.
7211         Fix segment seeking and a bunch of other seeking cases.
7212
7213 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
7214
7215         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7216           Parse WOAF frames and put the result into GST_TAG_CONTACT,
7217           which is where it would end up if the same information was
7218           put in a vorbis comment (don't think it's worth adding a
7219           new URI tag for this). Fixes #488112.
7220
7221 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7222
7223         * configure.ac:
7224           We need core/base 0.10.15 or later.
7225
7226 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7227
7228         Patch by: Mark Nauwelaerts <manauw skynet be>
7229
7230         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7231         Fix regression in stream numbering. Fixes #502655.
7232
7233 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7234
7235         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7236
7237         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7238         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7239         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7240         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7241         (gst_rtp_h264_pay_handle_buffer):
7242         * gst/rtp/gstrtph264pay.h:
7243         Use higher performance start-code searching.
7244         Parse NALs and store SPS, PPS and profile in the caps so that they can
7245         be used in the SDP. Fixes #502814.
7246
7247 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7248
7249         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7250         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7251           Init some structs to zero before we pass them to ioctl, which
7252           avoids valgrind warnings.  Also fix a small memory leak.
7253
7254 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7255
7256         Patch by: Wouter Cloetens <wouter at mind dot be>
7257
7258         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7259         Copy timestamp from input to output. Not very perfect yet but better
7260         than nothing. Fixes #503023.
7261
7262 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7263
7264         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7265           Also print a useful error message with the old Wavpack API
7266           if possible.
7267
7268 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
7269
7270         * ext/wavpack/gstwavpackdec.c:
7271           More build fixes for old libwavpack versions: include config.h so
7272           that WAVPACK_OLD_API is actually defined as detected; only use
7273           WavpackGetErrorMessage if it is available. This fixes the build
7274           on debian stable for me.
7275
7276 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7277
7278         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7279         * ext/wavpack/gstwavpackparse.c:
7280           (gst_wavpack_parse_create_src_pad):
7281           Workaround the non-existance of WavpackGetChannelMask in Wavpack
7282           versions below 4.40.0.
7283
7284 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7285
7286         * configure.ac:
7287           And now do it right for real...
7288
7289 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7290
7291         * configure.ac:
7292           Correctly reset $LIBS to not contain -lm.
7293
7294 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7295
7296         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7297
7298         * configure.ac:
7299         * ext/cairo/gsttimeoverlay.c:
7300           (gst_cairo_time_overlay_print_smpte_time):
7301           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7302           and checking for rint() and implementing it ourself if it doesn't
7303           exist. Fixes #497293.
7304
7305 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7306
7307         * configure.ac:
7308           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7309
7310 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
7311
7312         * sys/oss/gstosshelper.c:
7313         Verify that the format returned after the ioctl is the one
7314         we requested. It is valid for the ioctl to succeed while
7315         substituting an alternate 'supported' sample format.
7316
7317 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
7318
7319         * sys/oss/gstossaudio.c: (plugin_init):
7320         * sys/oss/gstosssink.c: (gst_oss_sink_open):
7321         * sys/oss/gstosssrc.c: (gst_oss_src_open):
7322           Post decent (and translated) error message when we can't
7323           open the audio device for some reason.
7324
7325 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
7326
7327         * sys/oss/gstosssink.c:
7328         * sys/oss/gstosssrc.c:
7329         Allow the AUDIODEV environment variable to redirect us
7330         to a different default OSS device, like sunaudiosink does
7331         on Solaris (makes audio play automatically on SunRays).
7332
7333 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
7334
7335         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7336         * gst/audiofx/audiochebyshevfreqband.c:
7337         (gst_audio_chebyshev_freq_band_transform_ip):
7338         * gst/audiofx/audiochebyshevfreqlimit.c:
7339         (gst_audio_chebyshev_freq_limit_transform_ip):
7340         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7341         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7342         The transform_ip() methods should do nothing if in passthrough mode.
7343         It might get non-writable buffers in that case but the buffer might
7344         as well be writable.
7345
7346         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7347         The transform() methods won't be called in passthrough mode and
7348         otherwise the buffer is always writable so don't check here.
7349
7350 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
7351
7352         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7353           Fix seeking in .wav files again (#501775).  Some people seem to think
7354           they don't need to test their changes when they're just 'reflowing'
7355           some code.
7356
7357 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7358
7359         * gst/autodetect/gstautovideosink.c:
7360         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7361         (gst_auto_video_sink_init),
7362         (gst_auto_video_sink_create_element_with_pretty_name),
7363         (gst_auto_video_sink_find_best),
7364         (gst_auto_video_sink_set_property),
7365         (gst_auto_video_sink_get_property):
7366         * gst/autodetect/gstautovideosink.h:
7367         Fix docs.
7368         Use same error reporting code as autoaudiosink.
7369         Add property to filter sinks based on caps. Only select raw video sinks
7370         by default for backwards compat.
7371         API: GstAutoVideoSink::filter-caps
7372
7373 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7374
7375         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7376
7377         * gst/autodetect/gstautoaudiosink.c:
7378         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7379         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7380         (gst_auto_audio_sink_set_property),
7381         (gst_auto_audio_sink_get_property):
7382         * gst/autodetect/gstautoaudiosink.h:
7383         Add property to filter sinks based on caps. Only select raw audio sinks
7384         by default for backwards compat.  Fixes #417420.
7385         API: GstAutoAudioSink::filter-caps
7386
7387 2007-11-29  Michael Smith <msmith@fluendo.com>
7388
7389         Patch by: Arek Korbik <arkadini@gmail.com>
7390
7391         * gst/videobox/gstvideobox.c: (plugin_init):
7392           Initialise liboil in plugin_init()
7393
7394 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
7395
7396         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7397         Post error before sending EOS. Fixes #499178.
7398
7399 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
7400
7401         * win32/vs6/gst_plugins_good.dsw:
7402         * win32/vs6/libgstpng.dsp:
7403         Add a project file for libgstpng
7404
7405 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
7406
7407         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7408         (gst_rtp_h263_depay_process):
7409         Code beautification.
7410         Added debug statements.
7411         Don't bit-shift everything, just do operations on last/first byte
7412         instead.
7413
7414 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
7415
7416         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7417
7418         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7419         Fix wrong comparison in overrun check. Fixes #499239 some more.
7420
7421 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
7422
7423         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7424         (gst_rtp_h263_depay_process):
7425         * gst/rtp/gstrtph263depay.h:
7426         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7427         stream.
7428
7429 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
7430
7431         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7432
7433         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7434         (gst_rtp_mp4a_depay_process):
7435         * gst/rtp/gstrtpmp4adepay.h:
7436         Fix depayloading when multiple frames are inside one RTP packet.
7437         Fixes #499239.
7438
7439 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7440
7441         * gst/level/gstlevel.c:
7442           Add GAP-flag support.
7443
7444 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
7445
7446         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7447         Read the I flag for Mode A h263 rtp stream and set the
7448         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7449         Fixes #499383
7450
7451 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7452
7453         * gst/level/gstlevel.c:
7454           Remove some dead code and do cleanups.
7455
7456 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7457
7458         * tests/check/pipelines/simple-launch-lines.c:
7459           Improve the tests by allowing to set a target state.
7460
7461 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
7462
7463         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7464         Don't check the caps of the output buffer if they're equal some
7465         other caps. The caps can change in a backward compatible way
7466         and did at this point.
7467
7468 2007-11-24  Julien MOUTTE  <julien@moutte.net>
7469
7470         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7471         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7472         (gst_qtdemux_seek_to_previous_keyframe),
7473         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7474         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7475         reverse playback support.
7476
7477 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7478
7479         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7480         Also set the channel layout on the Wavpack caps if we're having
7481         a mono layout. Of course only do it for "audio/x-wavpack".
7482
7483 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7484
7485         * ext/wavpack/gstwavpackcommon.c:
7486         (gst_wavpack_get_default_channel_mask),
7487         (gst_wavpack_set_channel_layout),
7488         (gst_wavpack_get_default_channel_positions),
7489         (gst_wavpack_get_channel_mask_from_positions),
7490         (gst_wavpack_set_channel_mapping):
7491         * ext/wavpack/gstwavpackcommon.h:
7492         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7493         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7494         * ext/wavpack/gstwavpackdec.h:
7495         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7496         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7497         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7498         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7499         (gst_wavpack_enc_rewrite_first_block),
7500         (gst_wavpack_enc_sink_event):
7501         * ext/wavpack/gstwavpackenc.h:
7502         * ext/wavpack/gstwavpackparse.c:
7503         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7504         (gst_wavpack_parse_scan_to_find_sample),
7505         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7506         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7507         * ext/wavpack/gstwavpackparse.h:
7508         Add support for encoding, parsing and decoding multichannel
7509         files with up to 8 channels. This also improves the robustness
7510         of parsing quite a bit.
7511
7512         * ext/wavpack/gstwavpackstreamreader.c:
7513         (gst_wavpack_stream_reader_read_bytes),
7514         (gst_wavpack_stream_reader_get_pos),
7515         (gst_wavpack_stream_reader_set_pos_abs),
7516         (gst_wavpack_stream_reader_set_pos_rel),
7517         (gst_wavpack_stream_reader_push_back_byte),
7518         (gst_wavpack_stream_reader_get_length),
7519         (gst_wavpack_stream_reader_can_seek),
7520         (gst_wavpack_stream_reader_write_bytes):
7521         Improve debugging.
7522
7523 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7524
7525         * ext/libpng/gstpngdec.c:
7526         * ext/libpng/gstpngdec.h:
7527           Don't release the png-memory from within the callback.
7528
7529 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7530
7531         Patch by: René Stadler <mail at renestadler dot de>
7532
7533         * ext/libpng/gstpngenc.c:
7534           Don't leak buffer data memory. Fixes #498395.
7535
7536 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7537
7538         Patch by: René Stadler <mail at renestadler dot de>
7539
7540         * tests/check/pipelines/simple-launch-lines.c:
7541           Tests for #498395.
7542
7543 2007-11-20  Julien MOUTTE  <julien@moutte.net>
7544
7545         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7546         (gst_tag_lib_mux_adjust_event_offsets):
7547         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7548         * sys/osxaudio/Makefile.am:
7549         * sys/osxvideo/cocoawindow.h:
7550         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7551
7552 2007-11-15  David Schleef  <ds@schleef.org>
7553
7554         * ext/cairo/gsttextoverlay.c:
7555           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
7556
7557 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7558
7559         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7560
7561         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7562         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7563         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7564         * gst/rtp/gstrtpmp2tpay.h:
7565         Fill the MTU with as many packets as possible. Fixes #491323.
7566
7567 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7568
7569         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7570
7571         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7572         Fix some more leaks. Fixes #497007.
7573
7574 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7575
7576         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7577
7578         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7579         (gst_rtspsrc_stream_configure_tcp):
7580         Fix 3 pad leaks. Fixes #496983.
7581
7582 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7583
7584         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7585
7586         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7587         Fix small leak. Fixes #497017.
7588
7589 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7590
7591         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7592         (gst_qtdemux_prepare_current_sample),
7593         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7594         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7595         * gst/qtdemux/qtdemux_fourcc.h:
7596         * gst/qtdemux/qtdemux_types.c:
7597         Add suppport for theora in quicktime according to XiphQT.
7598
7599 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
7600
7601         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7602         (gst_v4l2src_init), (gst_v4l2src_set_property),
7603         (gst_v4l2src_get_property):
7604         * sys/v4l2/gstv4l2src.h:
7605         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7606           Always copy buffers by default (handle safer with bugged drivers)
7607           and added a property to make it possible to use mmap effectively (no
7608           copy if possible) when application wants to. Fixes: #480557.
7609
7610 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7611
7612         * gst/id3demux/id3tags.c:
7613         * gst/id3demux/id3tags.h:
7614         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7615           We don't want the same string multiple times in a tag list for the
7616           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7617           this doesn't happen and remove special-case code for GST_TAG_GENRE.
7618
7619 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7620
7621         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7622           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7623           into ID3v2 TXXX frames (fixes #347848).
7624
7625 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7626
7627         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7628           Don't leak sdp message contents (fixes #496773).
7629
7630         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7631           Don't leak URI string.
7632
7633 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7634
7635         Patch by: Julien Puydt <julien dot puydt at laposte net>
7636
7637         * ext/raw1394/Makefile.am:
7638         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7639           (gst_1394_property_probe_get_properties),
7640           (gst_1394_property_probe_probe_property),
7641           (gst_1394_property_probe_needs_probe),
7642           (gst_1394_property_probe_get_values),
7643           (gst_1394_property_probe_interface_init),
7644           (gst_1394_type_add_property_probe_interface):
7645         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7646         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7647           (gst_dv1394src_init), (gst_dv1394src_dispose),
7648           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7649           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7650           (gst_dv1394src_update_device_name):
7651         * ext/raw1394/gstdv1394src.h:
7652           Implement GstPropertyProbe interface and add "device-name" property,
7653           so applications can use this to probe for available devices in the
7654           same way they can already with v4lsrc and v4l2src (however horrible
7655           this property probe interface may be). Fixes #358841.
7656
7657 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7658
7659         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7660
7661         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7662           (gst_rtspsrc_parse_range):
7663           Don't leak event, don't leak range (fixes #496752).
7664
7665 2007-11-14  Michael Smith <msmith@fluendo.com>
7666
7667         Patch by: Arek Korbik <arkadini@gmail.com>
7668
7669         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7670           Detect RGBA/BGRA correctly on little endian systems.
7671
7672 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7673
7674         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7675           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7676           corresponding ioctl() call fails even though the driver claims to
7677           support this format, just fall back to the pre-2.6.19 kernel
7678           routine that creates caps with suitable height and width ranges
7679           (see #448278).
7680
7681 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7682
7683         Patch by: Mark Nauwelaerts <manauw skynet be>
7684
7685         * gst/matroska/matroska-demux.c:
7686           (gst_matroska_demux_push_dvd_clut_change_event),
7687           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7688           (gst_matroska_demux_subtitle_caps):
7689         * gst/matroska/matroska-ids.h:
7690           Extract palette data for dvd subpicture streams and send it
7691           downstream as custom gstreamer dvd event (fixes #453417).
7692
7693 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7694
7695         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7696           Implement minimal parsing of the passed pango font description
7697           string, so passing a font size works the same as with the
7698           pango textoverlay plugin; fixes #455086.
7699           (Maybe we could just use pangocairo here at some point).
7700
7701 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7702
7703         * gst/avi/gstavidemux.c:
7704         * gst/wavparse/gstwavparse.c:
7705           Return the result in _activate_pull(). Don't ref element there.
7706
7707 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7708
7709         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7710         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7711         (gst_wavparse_srcpad_event):
7712           Ref the element when we should, but not when we its not needed. Reflow
7713           the event_handling to not leak the event.       
7714
7715 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
7716
7717         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7718         (qtdemux_parse_samples):
7719         Properly free QTDemuxSamples array.
7720         Protect table write with a sensible check, some files apparently DO contain
7721         stts values starting with 0 :(
7722
7723 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7724
7725         * gst/avi/gstavidemux.c:
7726         * gst/qtdemux/qtdemux.c:
7727           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7728           previous commit messed up.
7729
7730 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7731
7732         * gst/avi/gstavidemux.c:
7733         * gst/qtdemux/qtdemux.c:
7734           Sync _handle_src_event() with oggdemux. In avidemux also ref the
7735           element when we should, but not when we its not needed.
7736
7737 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
7738
7739         * gst/wavparse/gstwavparse.c:
7740           Return FALSE if we can't handle a query instead of changing the
7741           format. Ignore fact when dealing with mpeg audio.
7742
7743 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7744
7745         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
7746
7747         * configure.ac:
7748         * gst/udp/gstdynudpsink.c:
7749         * gst/udp/gstdynudpsink.h:
7750         * gst/udp/gstmultiudpsink.c:
7751         * gst/udp/gstmultiudpsink.h:
7752         * gst/udp/gstudpsink.c:
7753         * gst/udp/gstudpsink.h:
7754           Fix includes for MSVC and GLib-2.14.0 (#492388).
7755
7756         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7757           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7758
7759 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
7760
7761         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7762         (gst_mulawdec_chain):
7763         * gst/law/mulaw-decode.h:
7764         Calculate outgoing buffer duration if incoming buffer didn't have a
7765         valid duration.
7766
7767 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
7768
7769         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7770         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7771         Smarter combine_flow code that also deals with downstream elements
7772         returning UNEXPECTED when they receive data out of the segment
7773         boundaries. Fixes #491305.
7774
7775 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7776
7777         * sys/v4l2/v4l2src_calls.c:
7778           Fix 'unused variable' compiler warning when compiling against
7779           older kernel headers.
7780
7781 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
7782
7783         * ext/taglib/gstid3v2mux.cc (add_funcs):
7784           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7785
7786 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
7787
7788         * tests/check/pipelines/simple-launch-lines.c:
7789            Improve the tests a little more.
7790
7791 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
7792
7793         patch by: Yun Zheng Hu
7794
7795         * sys/osxaudio/gstosxaudiosrc.c:
7796         Use default input device instead of default output device and
7797         only memcpy actual available bytes.
7798
7799 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
7800
7801         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7802           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7803           early. It is temporary until we find something better.
7804
7805 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7806
7807         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7808
7809         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7810         Fix race when pausing a RTSP stream in interleaved.
7811         Fixes #475784.
7812
7813 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7814
7815         Patch by: Peter Kjellerstedt <pkj at axis com>
7816
7817         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7818         Use correct unref function for buffers. #488844.
7819
7820 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
7821
7822         * gst/avi/gstavimux.c:
7823         * tests/check/elements/avimux.c:
7824           Add some debug and sync tests with the fix.     
7825
7826 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7827
7828         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7829
7830         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7831         When the socket is used by the app for other purposes, don't generate an
7832         error if there is activaty on the socket that is not data related.
7833         Fixes #487488.
7834
7835 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7836
7837         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7838         (gst_v4l2src_grab_frame):
7839         Add some more debug info. Generate an error when we run out of buffers
7840         for some reason. See #480557.
7841
7842 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7843
7844         Patch by: Anders Skargren <anders dot skargren at axis dot com>
7845
7846         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7847         Set marker bit correctly.
7848
7849 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
7850
7851         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7852         Use allowed name for the GstStructure.
7853
7854 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7855
7856         * ext/gconf/gstswitchsink.c:
7857         * gst/autodetect/gstautoaudiosink.c:
7858           Use new gst_bus_pop_filtered().
7859
7860 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7861
7862         * sys/v4l2/gstv4l2src.c:
7863         * sys/v4l2/v4l2src_calls.c:
7864           When probing the formats and sizes a camera supports, make
7865           sure the best ones (highest resolution, prefered format)
7866           end up at the beginning of the probed caps and the less
7867           desirable ones at the end.  This is important because the
7868           order within the caps matters for things like fixation and
7869           negotiation, ie. what format is chosen in the end.
7870           With recent kernels, the current probing code will end up
7871           querying the supported sizes from lowest resolution to
7872           highest resolution, adding them to the probed caps in that
7873           order, resulting to v4l2src fixating to the lowest possible
7874           resolution if downstream does not express a size preference.
7875           Also make up a somewhat random ranking of prefered output
7876           formats for the same reason. Fixes #485828.
7877         
7878 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7879
7880         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
7881
7882         * gst/id3demux/id3v2frames.c:
7883           Extract license/copyright URIs from ID3v2 WCOP frames
7884           (Fixes #447000).
7885
7886         * tests/check/elements/id3demux.c:
7887         * tests/files/Makefile.am:
7888         * tests/files/id3-447000-wcop.tag:
7889           Add simple unit test.
7890
7891 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7892
7893         * ext/taglib/gstid3v2mux.cc:
7894           Add support for license/copyright URI tags (ID3v2 WCOP frame).
7895           Prerequisite for #447000.
7896
7897 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
7898
7899         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7900         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7901         a GstClockTime.
7902
7903 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7904
7905         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7906         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7907         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7908         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7909         (gst_rtspsrc_change_state):
7910         More seeking fixes, mostly passing around the new playback segment in
7911         order to configure it properly.
7912         Also reset base_time of udp sources when setting them back to PLAYING as
7913         a temporary hack until core supports seek in live sources properly.
7914
7915 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7916
7917         * gst/rtp/gstrtpmp4adepay.c:
7918         Fix caps as to not confuse autopluggers.
7919
7920 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7921
7922         * gst/id3demux/gstid3demux.c:
7923         * gst/id3demux/gstid3demux.h:
7924         * gst/id3demux/id3tags.c:
7925         * gst/id3demux/id3tags.h:
7926         * gst/id3demux/id3v2frames.c:
7927           Port ID3 tag demuxer over to the new GstTagDemux in -base
7928           (now would be a good time to test re-importing your music
7929           collection).
7930
7931 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7932
7933         * gst/apetag/Makefile.am:
7934         * gst/apetag/gstapedemux.c:
7935         * gst/apetag/gstapedemux.h:
7936         * gst/apetag/gsttagdemux.c:
7937         * gst/apetag/gsttagdemux.h:
7938           Port APE tag demuxer over to the new GstTagDemux in -base.
7939
7940 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
7941
7942         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7943         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7944         (gst_rtspsrc_handle_internal_src_query),
7945         (gst_rtspsrc_handle_src_query), (new_session_pad),
7946         (gst_rtspsrc_stream_configure_tcp),
7947         (gst_rtspsrc_stream_configure_transport),
7948         (gst_rtspsrc_loop_send_cmd):
7949         Improve flushing behaviour.
7950         Set state of the udp sources to PAUSE/PLAYING correctly.
7951         Handle events and queries for UDP and TCP transport now.
7952
7953 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7954
7955         * gst/rtp/gstrtpgsmdepay.c:
7956         * gst/rtp/gstrtpgsmpay.c:
7957           Add log category.
7958
7959 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7960
7961         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7962
7963         * tests/check/Makefile.am:
7964         * tests/check/pipelines/simple-launch-lines.c:
7965           Add unit tests for payloaders/depayloaders.
7966
7967 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7968
7969         * gst/avi/gstavimux.c:
7970         * gst/avi/gstavimux.h:
7971           Also save codec data for audio streams. Fixes #482495.
7972
7973 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7974
7975         * gst/avi/gstavimux.c:
7976           Fix "Index entry has invalid stream nr 1".
7977           Add support for muxing aac - work in progress (see #482495).
7978
7979 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7980
7981         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7982         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7983         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7984         * gst/rtsp/gstrtspsrc.h:
7985         Parse bandwidth modifiers, they are not yet configured in the session
7986         manager because we don't have an API for that yet.
7987
7988 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7989
7990         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7991         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7992         Use shiny new function in -base to get the default clock-rate.
7993         Update some docs.
7994
7995 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
7996
7997         * win32/MANIFEST:
7998         Add files to win32 manifest.
7999         * win32/vs6/libgstaudiofx.dsp:
8000         * win32/vs6/libgstqtdemux.dsp:
8001         * win32/vs6/libgstrtp.dsp:
8002         * win32/vs6/libgstrtsp.dsp:
8003         Update project files.
8004
8005 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
8006
8007         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8008         (gst_rtspsrc_play):
8009         * gst/rtsp/gstrtspsrc.h:
8010         In TCP mode, only timestamp the first buffer. TCP is not real time and
8011         it does not make sense to try to skew compensate, also some servers send
8012         the first batch of data in a burst.
8013
8014 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
8015
8016         * gst/matroska/matroska-demux.c:
8017           Fix setting the discont flag on the first buffer
8018           pushed downstream for formats with private codec
8019           data that needs to be deserialised into buffers
8020           (such as vorbis and FLAC when in a matroska container).
8021
8022 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
8023
8024         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
8025
8026         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
8027         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
8028         (gst_rtp_mp4v_pay_handle_buffer):
8029         * gst/rtp/gstrtpmp4vpay.h:
8030         Free the config string. Fixes #480707.
8031         Clean up the timestamp code a little.
8032
8033 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8034
8035         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8036         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
8037         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
8038         * gst/rtsp/gstrtspsrc.h:
8039         Set timestamps on RTP buffers in interleaved mode.
8040         Mark first buffers with a DISCONT.
8041         Remove flush hack now that sync for live sources has been figured out.
8042
8043 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8044
8045         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8046         Update documentation.
8047
8048 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
8049
8050         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
8051         (gst_rtp_xqt_depay_change_state):
8052         * gst/qtdemux/gstrtpxqtdepay.h:
8053         Fail if we don't know the quicktime format.
8054
8055 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
8056
8057         * ext/flac/gstflacenc.c:
8058         * ext/flac/gstflacenc.h:
8059           Save the flow return from the last gst_pad_push() and
8060           make sure we pass the right flow return value upstream
8061           in the case of failure; minor clean-ups.
8062
8063 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8064
8065         * ext/taglib/gstapev2mux.cc:
8066         * ext/taglib/gstid3v2mux.cc:
8067         * gst/apetag/gstapedemux.c:
8068           Add support for the new GST_TAG_COMPOSER (#459809).
8069
8070 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8071
8072         * gst/law/alaw-decode.c:
8073         * gst/law/alaw-decode.h:
8074         * gst/law/alaw-encode.c:
8075         * gst/law/alaw-encode.h:
8076         * gst/law/alaw.c:
8077         * gst/law/mulaw-conversion.h:
8078           Compulsive clean-ups: use boilerplate macros, add debug
8079           categories, fix up things to conform to symbol nomenklatura,
8080           etc.
8081
8082 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
8083
8084         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
8085
8086         * gst/law/alaw-decode.c:
8087         * gst/law/alaw-encode.c:
8088           Use static tables for A-Law decoding and encoding; this makes
8089           A-Law decoding and encoding less CPU-intensive, but increases
8090           the binary size a bit. Leaving old code around for now,
8091           selectable by a define in the code. Fixes #435435.
8092
8093 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8094
8095         * configure.ac:
8096         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
8097         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
8098         in configure.ac.
8099
8100 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8101
8102         Patch by: Jan Gerber <j at bootlab dot org>
8103
8104         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8105         Add fourccs for MPEG2 HDV streams. Fixes #479960.
8106
8107 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
8108
8109         * sys/oss/gstosshelper.c:
8110           Use GST_WARNING instead of a g_critical. This situation is not caused
8111           by the application.
8112
8113 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8114
8115         * po/LINGUAS:
8116         * po/nl.po:
8117           Updated translations.
8118
8119 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8120
8121         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
8122
8123         * po/eu.po:
8124           Added Basque translation.
8125
8126 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8127
8128         translated by: Abel Cheung <abelcheung@gmail.com>
8129
8130         * po/zh_HK.po:
8131         * po/zh_TW.po:
8132           Added Chinese (traditional and Hong Kong) translation.
8133
8134 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8135
8136         translated by: Jakub Bogusz <qboosh@pld-linux.org>
8137
8138         * po/pl.po:
8139           Added Polish translation.
8140
8141 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8142
8143         translated by: Ilkka Tuohela <hile@iki.fi>
8144
8145         * po/fi.po:
8146           Added Finnish translation.
8147
8148 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8149
8150         translated by: Jorge González González <aloriel@gmail.com>
8151
8152         * po/es.po:
8153           Added Spanish translation.
8154
8155 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8156
8157         translated by: Mogens Jaeger <mogens@jaeger.tf>
8158
8159         * po/da.po:
8160           Added Danish translation.
8161
8162 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8163
8164         translated by: Funda Wang <fundawang@linux.net.cn>
8165
8166         * po/zh_CN.po:
8167           Added Chinese (simplified) translation.
8168
8169 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8170
8171         translated by: Alexander Shopov <ash@contact.bg>
8172
8173         * po/bg.po:
8174           Added Bulgarian translation.
8175
8176 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
8177
8178         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
8179         Set outgoing packet duration because we can. Fixes #478244 some more.
8180
8181 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
8182
8183         * ext/cairo/gsttextoverlay.c:
8184           Add info about static leak.
8185         
8186         * tests/check/Makefile.am:
8187         * tests/check/generic/states.c:
8188           Improved state change unit test.
8189
8190 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
8191
8192         * docs/plugins/.cvsignore:
8193         * tests/check/.cvsignore:
8194           Ignore registries in any format.
8195
8196 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
8197
8198         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8199         Removed some unused code.
8200
8201         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8202         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8203         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8204         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8205         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8206         (gst_rtp_theora_pay_flush_packet):
8207         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8208         Try to preserve the incomming buffer duration on the outgoing
8209         packets. Fixes #478244.
8210
8211 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8212
8213         * ext/taglib/gstapev2mux.cc:
8214         * ext/taglib/gstid3v2mux.cc:
8215           Work around compiler warnings with g++-4.2 when assigning a
8216           string constant to a gchar * (partially fixes #478092).
8217
8218 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8219
8220         * configure.ac:
8221           We require core CVS now for gst_base_src_set_do_timestamp().
8222
8223 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
8224
8225         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8226         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8227         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8228         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8229         (gst_rtspsrc_handle_message):
8230         Fix compiler warnings shown with Forte.
8231
8232 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8233
8234         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8235         (gst_rtspsrc_dup_printf):
8236         Give meaningfull error when all streams failed to configure for some
8237         reason.
8238
8239 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8240
8241         * gst/rtp/README:
8242         Update README with the design for synchronisation rules of RTP on
8243         sender and receiver.
8244
8245 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
8246
8247         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8248         (gst_wavparse_chain):
8249         Don't push EOS from the chain function, the element
8250         driving the pipeline is responsible for this. The bug
8251         this was meant to fix seems to be queue not forwarding
8252         EOS in all cases (see #476514).
8253
8254 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
8255
8256         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8257         (gst_level_transform_ip):
8258         * gst/level/gstlevel.h:
8259         Use basetransform segment so that it is correctly managed on flushes and
8260         start/stop.
8261         Report message timestamp as stream time, which is what an application
8262         can understand.
8263
8264 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8265
8266         * ext/taglib/gstapev2mux.cc:
8267         * ext/taglib/gstapev2mux.h:
8268         * ext/taglib/gsttaglibmux.c:
8269         * tests/check/elements/apev2mux.c:
8270         Update my mail address.
8271
8272 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8273
8274         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8275         (gst_wavparse_loop), (gst_wavparse_chain):
8276         Add EOS logic for the push-based mode too. Fixes #476514.
8277
8278 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
8279
8280         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8281         * gst/law/alaw-encode.h:
8282         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8283         (gst_mulawenc_chain):
8284         * gst/law/mulaw-encode.h:
8285         Fix law encoder timestamps.
8286
8287 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
8288
8289         * ext/gconf/gstgconfaudiosink.c:
8290           Fix warning when building without debug.
8291
8292         * sys/oss/gstossmixertrack.c:
8293           Use const like in alsamixertrack.c (fixes warnings).
8294
8295 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
8296
8297         * sys/v4l2/v4l2src_calls.c:
8298         (gst_v4l2src_probe_caps_for_format_and_size):
8299         Fix framerate detection code some more.
8300         Handle the case where there is a weird step in the stepwise framerates.
8301         Don't overwrite the min interval with the framerate, use a temp variable
8302         instead.
8303         Use max in the Continuous framerate intervals instead of step, which is
8304         1 according to the docs. Fixes #475424.
8305
8306 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
8307
8308         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8309         Make udpsrc timestamp outgoing buffers based on when they were received.
8310         Also make it output a segment in time.
8311
8312 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
8313
8314         * gst/avi/gstavidemux.c:
8315           Plug a little leak. Little code cleanups.
8316
8317 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
8318
8319         * configure.ac:
8320           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8321           flac versions, 's good for cross-compilation karma.
8322
8323 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
8324
8325         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
8326
8327         * gst/rtp/gstrtph263pay.c:
8328           Fix up header structure so that compilers don't add padding
8329           between the structure fields, since that would lead to us
8330           sending RTP packets with broken headers (as is currently the
8331           case when compiling with MSVC). Also see similar fixes in
8332           libgstrtp in gst-plugins-base. (#474616; #471194)
8333
8334 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
8335
8336         * sys/v4l2/v4l2src_calls.c:
8337         (gst_v4l2src_probe_caps_for_format_and_size):
8338         Don't overwrite our GValue with 0 but instead use the previously
8339         computed value. Fixes #471823 some more.
8340
8341 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8342
8343         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8344           No tabs in this file please, or gtk-doc will end up documenting
8345           rather absurd class hierarchies.
8346
8347 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8348
8349         * ext/gconf/gstswitchsink.c:
8350           If the new kid element fails to change state for some reason
8351           (e.g. esdsink not being able to connect to the sound server),
8352           forward the error message it posted on the bus instead of just
8353           posting a generic 'Internal state change error: please file a
8354           bug' error message. Fixes #471364.
8355
8356 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8357
8358         * gst/qtdemux/Makefile.am:
8359         * gst/qtdemux/qtdemux.c:
8360           Don't assume tags are encoded as UTF-8 (#473670).
8361
8362 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8363
8364         * sys/v4l2/gstv4l2src.c:
8365         * sys/v4l2/gstv4l2src.h:
8366         * sys/v4l2/v4l2src_calls.c:
8367           Implement LATENCY queries in the crudest way possible so I don't
8368           have to use sync=false any longer when testing with videosinks.
8369
8370 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8371
8372         * configure.ac:
8373           Fix build.
8374
8375 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8376
8377         * sys/v4l2/v4l2src_calls.c:
8378         (gst_v4l2src_probe_caps_for_format_and_size):
8379         Add some more debugging in the framerate function.
8380         Iterate stepwise framerate up to and _including_ the max and if nothing
8381         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8382         don't end up with an empty list. Fixes #471823
8383
8384 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8385
8386         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8387         (gst_multiudpsink_set_clients_string),
8388         (gst_multiudpsink_get_clients_string),
8389         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8390         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8391         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8392         (gst_multiudpsink_clear):
8393         Add property do configure destination address/port pairs
8394         API:GstMultiUDPSink::clients
8395
8396 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8397
8398         * tests/examples/Makefile.am:
8399         * tests/examples/rtp/Makefile.am:
8400         * tests/examples/rtp/client-H263p-AMR.sh:
8401         * tests/examples/rtp/client-H263p-PCMA.sdp:
8402         * tests/examples/rtp/client-H263p-PCMA.sh:
8403         * tests/examples/rtp/client-H264-PCMA.sdp:
8404         * tests/examples/rtp/client-H264-PCMA.sh:
8405         * tests/examples/rtp/client-PCMA.sh:
8406         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8407         * tests/examples/rtp/server-alsasrc-PCMA.sh:
8408         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8409         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8410         Added some RTP example scripts for sending and receiving RTP streams.
8411
8412 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8413
8414         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8415         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8416         Restructure the setcaps function so that we can also compute the
8417         expected GStreamer output size of the video frames.
8418         Set frame_byte_size correctly so that read-based devices have a chance
8419         of working correctly.
8420         When grabbing a frame, discard frames that are not of the expected size.
8421         Some cameras don't output the right framesize for the first buffer.
8422         Try only a couple of times to get a valid frame, else error out.
8423
8424         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8425         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8426         Add some more debug info when scanning the device.
8427
8428         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8429         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8430         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8431         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8432         Add some more debug info when dequeing a frame.
8433
8434 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8435
8436         * gst/wavparse/gstwavparse.c:
8437           More code cleanups. Add some more comment and improve debugs logs.
8438
8439 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8440
8441         * gst/wavparse/gstwavparse.c:
8442         * gst/wavparse/gstwavparse.h:
8443           Implement seek-query. Refactor duration calculations. Appropriate use
8444           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8445           out of loops.
8446
8447 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
8448
8449         * gst/avi/gstavidemux.c:
8450           Implement seek-query.
8451
8452 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
8453
8454         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8455         (gst_rtspsrc_dup_printf):
8456         Use new basesink async property to make sparse RTCP packet not wait for
8457         preroll.
8458
8459 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
8460
8461         * gst/audiofx/Makefile.am:
8462         Dist the right file.
8463
8464 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
8465
8466         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8467         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8468         Make sure we generate and parse floating point values in the POSIX
8469         locale instead of the current locale. 
8470
8471 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
8472
8473         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8474         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8475         (gst_rtspsrc_play):
8476         * gst/rtsp/gstrtspsrc.h:
8477         Fix method detection again.
8478         Keep track of when we must send a Range header.
8479         Use segment values for Range, Speed and Scale headers.
8480         Parse Speed and Scale headers to update the segment values.
8481
8482 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
8483
8484         patch by: Mark Nauwelaerts <manauw@skynet.be>
8485
8486         * sys/v4l2/v4l2src_calls.c:
8487           Handle optional v4l2 ioctls gracefully.
8488
8489 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
8490
8491         * gst/rtp/Makefile.am:
8492         * gst/rtp/gstrtp.c: (plugin_init):
8493         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8494         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8495         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8496         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8497         (gst_rtp_h263_depay_get_property),
8498         (gst_rtp_h263_depay_change_state),
8499         (gst_rtp_h263_depay_plugin_init):
8500         * gst/rtp/gstrtph263depay.h:
8501         Added an H263 depayloader. Fixes #369392.
8502
8503         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8504         (gst_rtp_h263p_depay_process):
8505         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8506         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8507         Make the H263+ pay/depayloader support H263-1998 and H263-2000
8508         payloads.
8509         Also alow plain H263 on the h263p payloaders. Fixes #465040.
8510
8511 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8512
8513         * gst/audiofx/audiochebyshevfreqband.c:
8514         * gst/audiofx/audiochebyshevfreqlimit.c:
8515         Add small comparision with the windowed sinc filters in the docs.
8516
8517 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8518
8519         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8520         (audiochebyshevfreqband_suite):
8521         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8522         (audiochebyshevfreqlimit_suite):
8523         Also test 32 bit float mode and the type 2 variants of the filters.
8524
8525 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
8526
8527         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8528         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8529         (gst_rtspsrc_loop):
8530         Refactor the udp and interleaved loop function a bit.
8531
8532 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8533
8534         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8535         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8536         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8537         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8538         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8539         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8540         * gst/rtsp/gstrtspsrc.h:
8541         Protect connection activity with a new lock, avoids deadlocks when going
8542         to PAUSED. Fixes #455808.
8543
8544 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8545
8546         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8547         Fix debug statement.
8548
8549 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8550
8551         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8552         Fix stray %u in debug line as spotted by Saur on IRC.
8553
8554 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
8555
8556         * gst/audiofx/audiochebyshevfreqband.c:
8557         (gst_audio_chebyshev_freq_band_class_init):
8558         * gst/audiofx/audiochebyshevfreqlimit.c:
8559         (gst_audio_chebyshev_freq_limit_class_init):
8560         Use generator macros for the process functions for the different
8561         sample types, add lower upper boundaries for the GObject properties
8562         so automatically generated UIs can use sliders and add a note about
8563         the number of poles as a too high number of poles combined with
8564         very low or very high frequencies will produce only noise.
8565         * docs/plugins/gst-plugins-good-plugins.args:
8566         Regenerated for the property changes.
8567
8568 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8569
8570         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8571         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8572         (gst_rtspsrc_stream_configure_udp_sink),
8573         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8574         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8575         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8576         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8577         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8578         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8579         * gst/rtsp/gstrtspsrc.h:
8580         Improve timeout handling.
8581         Use the same socket for sending and receiving RTCP packets so that some
8582         servers can track clients better.
8583         Improve connection closed handling. Try to reconnect.
8584         Don't overwrite our content base with NULL.
8585         Improve debugging.
8586         Improve range parsing and handling.
8587         Remove flushing hack now that core does the right thing.
8588
8589 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8590
8591         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8592         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8593         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8594         (gst_multiudpsink_close), (gst_multiudpsink_add):
8595         * gst/udp/gstmultiudpsink.h:
8596         Add support for getting and setting the socket to use.
8597
8598         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8599         (gst_udpsrc_create), (gst_udpsrc_get_property):
8600         Add support for getting the currently used socket.
8601
8602 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
8603
8604         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8605
8606         * gst/audiofx/Makefile.am:
8607         * gst/audiofx/audiochebyshevfreqband.c:
8608         (gst_audio_chebyshev_freq_band_mode_get_type),
8609         (gst_audio_chebyshev_freq_band_base_init),
8610         (gst_audio_chebyshev_freq_band_dispose),
8611         (gst_audio_chebyshev_freq_band_class_init),
8612         (gst_audio_chebyshev_freq_band_init),
8613         (generate_biquad_coefficients), (calculate_gain),
8614         (generate_coefficients),
8615         (gst_audio_chebyshev_freq_band_set_property),
8616         (gst_audio_chebyshev_freq_band_get_property),
8617         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8618         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8619         (gst_audio_chebyshev_freq_band_start):
8620         * gst/audiofx/audiochebyshevfreqband.h:
8621         * gst/audiofx/audiochebyshevfreqlimit.c:
8622         (gst_audio_chebyshev_freq_limit_mode_get_type),
8623         (gst_audio_chebyshev_freq_limit_base_init),
8624         (gst_audio_chebyshev_freq_limit_dispose),
8625         (gst_audio_chebyshev_freq_limit_class_init),
8626         (gst_audio_chebyshev_freq_limit_init),
8627         (generate_biquad_coefficients), (calculate_gain),
8628         (generate_coefficients),
8629         (gst_audio_chebyshev_freq_limit_set_property),
8630         (gst_audio_chebyshev_freq_limit_get_property),
8631         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8632         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8633         (gst_audio_chebyshev_freq_limit_start):
8634         * gst/audiofx/audiochebyshevfreqlimit.h:
8635         * gst/audiofx/audiofx.c: (plugin_init):
8636         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8637         Fixes #464800.
8638
8639         * tests/check/Makefile.am:
8640         * tests/check/elements/.cvsignore:
8641         * tests/check/elements/audiochebyshevfreqband.c:
8642         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8643         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8644         * tests/check/elements/audiochebyshevfreqlimit.c:
8645         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8646         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8647         Add unit tests for the chebyshev filters.
8648
8649         * docs/plugins/Makefile.am:
8650         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8651         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8652         * docs/plugins/gst-plugins-good-plugins.args:
8653         * docs/plugins/inspect/plugin-1394.xml:
8654         * docs/plugins/inspect/plugin-audiofx.xml:
8655         * docs/plugins/inspect/plugin-dv.xml:
8656         * docs/plugins/inspect/plugin-flac.xml:
8657         * docs/plugins/inspect/plugin-jpeg.xml:
8658         * docs/plugins/inspect/plugin-png.xml:
8659         * docs/plugins/inspect/plugin-rtp.xml:
8660         * docs/plugins/inspect/plugin-shout2send.xml:
8661         * docs/plugins/inspect/plugin-wavpack.xml:
8662         And add docs for the chebyshev filters. While doing
8663         that also run make update in docs/plugins.
8664
8665 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8666
8667         * ext/annodex/gstcmmltag.c:
8668         * gst/rtp/gstrtpvorbispay.c:
8669           Make ro memory to share.
8670
8671 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8672
8673         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8674         Improve UDP performance by avoiding a select() when we have data
8675         available immediatly.
8676
8677 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8678
8679         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8680         (gst_rtp_dec_class_init):
8681         * gst/rtsp/gstrtpdec.h:
8682         Add (dummy) SSRC management signals.
8683
8684         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8685         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8686         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8687         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8688         (on_timeout), (gst_rtspsrc_stream_configure_manager),
8689         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8690         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8691         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8692         * gst/rtsp/gstrtspsrc.h:
8693         Add connection-speed property.
8694         Add find_stream helper functions.
8695         Handle stream EOS based on BYE messages or SSRC timeout.
8696         Returns SUCCESS from the state change function as we hide our async
8697         elements from the parent.
8698
8699 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8700
8701         * gst/debug/rndbuffersize.c:
8702           Fix da leak.
8703
8704 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
8705
8706         * gst/debug/Makefile.am:
8707         * gst/debug/breakmydata.c:
8708         * gst/debug/gstdebug.c:
8709         * gst/debug/negotiation.c:
8710         * gst/debug/progressreport.c:
8711         * gst/debug/rndbuffersize.c:
8712         * gst/debug/testplugin.c:
8713           Add new test element and clean-up the others a little.
8714
8715 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
8716
8717         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8718         Fix parsing of mp4a version 0 atoms. Fixes #465774.
8719
8720 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
8721
8722         * gst/rtp/gstrtpilbcdepay.c:
8723           Include stdlib.
8724
8725 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
8726
8727         * gst/rtp/gstrtpmpvdepay.c:
8728         Set the mpegversion in the caps so that autoplugging does not get
8729         confused.
8730
8731 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8732
8733         * po/hu.po:
8734         * po/uk.po:
8735         * po/vi.po:
8736           Updated translations.
8737
8738 2007-08-08  Michael Smith <msmith@fluendo.com>
8739
8740         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8741           Render right border in the correct location.
8742
8743 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
8744
8745         Patch by: Olivier Crete <tester at tester dot ca>
8746
8747         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8748         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8749         Make mode property a string. Fixes #464475.
8750
8751 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8752
8753         * ext/flac/gstflacenc.c:
8754           Widen caps to match decoder a bit and add more FIXMEs.
8755
8756 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8757
8758         patch by: Mark Nauwelaerts <manauw@skynet.be>
8759
8760         * gst/avi/gstavimux.c:
8761           Fix ODML index tag numbering. Fixes #463624.
8762
8763 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
8764
8765         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8766         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8767         (gst_rtspsrc_stream_configure_tcp),
8768         (gst_rtspsrc_stream_configure_udp_sink):
8769         Fix default clock-rate for realmedia.
8770         Fix parsing of transport.
8771         Don't try to link NULL pads.
8772
8773 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
8774
8775         * po/POTFILES.skip:
8776           Add POTFILES.skip with list of source files that aren't disted at the
8777           moment but contain translatable strings. Should hopefully pacify
8778           broken tools and make it clearer that these files are left out
8779           intentionally (#461600).
8780
8781 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
8782
8783         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8784         If the buffer was entirely clipped ... don't try sending it :)
8785
8786 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8787
8788         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8789         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8790         (gst_rtspsrc_create_transports_string),
8791         (gst_rtspsrc_prepare_transports):
8792         If we don't hav a session manager, set the caps on outgoing buffers
8793         ourselves.
8794         Force PAUSE/PLAY methods for now until the extensions can overwrite.
8795         Append final bit of the transport string even when it does not contain a
8796         placeholder.
8797
8798 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8799
8800         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8801         (gst_rtsp_ext_list_connect):
8802         * gst/rtsp/gstrtspext.h:
8803         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8804         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8805         Clean up the interface list.
8806         Allow connecting to interface signals for the extensions.
8807         Remove old extension code.
8808         Free list on cleanup.
8809         Allow extensions to send additional RTSP messages.
8810
8811 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8812
8813         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8814         Handle a NULL gconf key gracefully by rendering the default element.
8815
8816 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8817
8818         * gst/rtsp/gstrtspext.h:
8819         Fix include path for extension interface.
8820
8821 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8822
8823         * gst/audiofx/audioamplify.h:
8824         Also remove a now unecessary variable here.
8825
8826 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8827
8828         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8829         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8830         * gst/audiofx/audiodynamic.c:
8831         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8832         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8833         * gst/audiofx/audiodynamic.h:
8834         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8835         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8836         * gst/audiofx/audioinvert.h:
8837         Don't save format information ourselves, this is already saved in
8838         GstAudioFilter.
8839
8840 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8841
8842         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8843         (gst_rtsp_ext_list_stream_select):
8844         * gst/rtsp/gstrtspext.h:
8845         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8846         Use rank to filter out extensions.
8847         Add url to stream_select interface call.
8848
8849 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8850
8851         * gst/rtsp/Makefile.am:
8852         * gst/rtsp/base64.c:
8853         * gst/rtsp/base64.h:
8854         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8855         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8856         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8857         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8858         (gst_rtsp_ext_list_setup_media),
8859         (gst_rtsp_ext_list_configure_stream),
8860         (gst_rtsp_ext_list_get_transports),
8861         (gst_rtsp_ext_list_stream_select):
8862         * gst/rtsp/gstrtspext.h:
8863         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8864         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8865         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8866         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8867         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8868         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8869         (gst_rtspsrc_stream_configure_tcp),
8870         (gst_rtspsrc_stream_configure_mcast),
8871         (gst_rtspsrc_stream_configure_udp),
8872         (gst_rtspsrc_stream_configure_udp_sink),
8873         (gst_rtspsrc_stream_configure_transport),
8874         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8875         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8876         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8877         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8878         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8879         (gst_rtspsrc_parse_methods),
8880         (gst_rtspsrc_create_transports_string),
8881         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8882         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8883         (gst_rtspsrc_play), (gst_rtspsrc_pause),
8884         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8885         * gst/rtsp/gstrtspsrc.h:
8886         * gst/rtsp/rtsp.h:
8887         * gst/rtsp/rtspconnection.c:
8888         * gst/rtsp/rtspconnection.h:
8889         * gst/rtsp/rtspdefs.c:
8890         * gst/rtsp/rtspdefs.h:
8891         * gst/rtsp/rtspext.h:
8892         * gst/rtsp/rtspextwms.c:
8893         * gst/rtsp/rtspextwms.h:
8894         * gst/rtsp/rtspmessage.c:
8895         * gst/rtsp/rtspmessage.h:
8896         * gst/rtsp/rtsprange.c:
8897         * gst/rtsp/rtsprange.h:
8898         * gst/rtsp/rtsptransport.c:
8899         * gst/rtsp/rtsptransport.h:
8900         * gst/rtsp/rtspurl.c:
8901         * gst/rtsp/rtspurl.h:
8902         * gst/rtsp/sdp.h:
8903         * gst/rtsp/sdpmessage.c:
8904         * gst/rtsp/sdpmessage.h:
8905         * gst/rtsp/test.c:
8906         Use shiny new RTSP and SDP library.
8907         Implement RTSP extensions using the new interface.
8908         Remove a lot of old code.
8909
8910 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
8911
8912         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8913         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8914
8915 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8916
8917         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8918         Don't unref the outgoing buffer twice when dropping it because it's
8919         outside of the segment.
8920
8921 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8922
8923         * configure.ac:
8924         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8925         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8926         Use the new buffer clipping function from gstaudio here and
8927         require gst-plugins-base CVS.
8928         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8929         For framed Wavpack buffers we require a valid timestamp.
8930
8931 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8932
8933         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8934         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8935         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8936         Clip raw audio and video when we can, keep track of current output
8937         segment.
8938         Don't leak buffers and events when there is no output pad.
8939         Improve debugging here and there.
8940
8941 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8942
8943         * configure.ac:
8944           Sync liboil check with plugins-base.
8945
8946 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8947
8948         * ext/annodex/Makefile.am:
8949           Fix CFLAGS/LIBS.
8950
8951         * ext/cdio/gstcdiocddasrc.c:
8952         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8953           Include stdlib
8954
8955         * ext/cairo/Makefile.am:
8956         * gst/videofilter/Makefile.am:
8957         * tests/examples/level/Makefile.am:
8958           Use $(LIBM) instead of -lm
8959
8960 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8961
8962         * sys/v4l2/gstv4l2src.c:
8963           Add another example pipeline.
8964
8965 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8966
8967         Patch by: Alexander Eichner <alexeichi@yahoo.de>
8968
8969         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8970           Use define here.
8971
8972         * sys/v4l2/gstv4l2tuner.c:
8973         (gst_v4l2_tuner_set_frequency_and_notify):
8974           Don't touch the property - its still disabled.
8975
8976         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8977         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8978         * sys/v4l2/v4l2src_calls.h:
8979           Improve fallback format negotionation. Fixes #451388
8980
8981 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8982
8983         * tests/check/elements/videocrop.c: (GST_START_TEST):
8984           Fix the test.
8985
8986 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8987
8988         * docs/plugins/Makefile.am:
8989         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8990         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8991         * docs/plugins/inspect/plugin-jpeg.xml:
8992         * docs/plugins/inspect/plugin-png.xml:
8993         * ext/jpeg/gstjpegdec.c:
8994         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
8995         (gst_pngdec_sink_setcaps):
8996           More docs. More logs in pngdec.
8997
8998 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
8999
9000         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
9001           Initialize num_buffers with minimum value.
9002
9003         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
9004         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
9005           Handle frame-size query failure gracefully.
9006
9007 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
9008
9009         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
9010         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
9011         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
9012         of qt/aac files.
9013
9014 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
9015
9016         * ext/wavpack/gstwavpackdec.c:
9017         (gst_wavpack_dec_clip_outgoing_buffer):
9018         Fix buffer clipping to correctly clip to the segment stop.
9019
9020 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
9021
9022         * configure.ac:
9023         * tests/Makefile.am:
9024         Remove bogus check for libcheck, since we check for
9025         gstreamer-check and it pulls in the required info from there,
9026         and we weren't actually _using_ the information for libcheck
9027         ourselves anyway.
9028
9029 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
9030
9031         * configure.ac:
9032           Use pkg-config to locate check.
9033
9034 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
9035
9036         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
9037         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
9038         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
9039         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
9040         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
9041         * gst/effectv/gstaging.c: (gst_agingtv_transform):
9042         * gst/effectv/gstdice.c: (gst_dicetv_transform):
9043         * gst/effectv/gstedge.c: (gst_edgetv_transform):
9044         * gst/effectv/gstquark.c: (gst_quarktv_transform):
9045         * gst/effectv/gstrev.c: (gst_revtv_transform):
9046         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
9047         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
9048         * gst/effectv/gstwarp.c: (gst_warptv_transform):
9049         * gst/matroska/matroska-demux.c:
9050         (gst_matroska_demux_add_wvpk_header),
9051         (gst_matroska_demux_check_subtitle_buffer),
9052         (gst_matroska_decode_buffer):
9053         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
9054           Fix build against core CVS.
9055
9056 2007-07-10  Edward Hervey  <bilboed@gmail.com>
9057
9058         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
9059         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
9060         don't have enough granularity to convert that boolean into a
9061         GstFlowReturn.
9062
9063 2007-07-06  Michael Smith <msmith@fluendo.com>
9064
9065         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
9066         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
9067         (gst_alawdec_change_state):
9068         * gst/law/alaw-decode.h:
9069         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
9070         (gst_mulawdec_class_init), (gst_mulawdec_init),
9071         (gst_mulawdec_chain), (gst_mulawdec_change_state):
9072         * gst/law/mulaw-decode.h:
9073           Fix capsnego bogosity in *law decoders. 
9074
9075 2007-07-06  Michael Smith <msmith@fluendo.com>
9076
9077         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
9078         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
9079         (gst_smokeenc_change_state):
9080         * ext/jpeg/gstsmokeenc.h:
9081           Remove stupidity in get/set caps functions.
9082           Fix some refcounting problems.
9083
9084 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
9085
9086         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
9087         Remove endianness-flipping hack that seems to have been required
9088         only because of a bug in ffmpegcolorspace.
9089         Partially Fixes: #451908
9090
9091 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
9092
9093         * docs/plugins/Makefile.am:
9094           Simplify --extra-dir as gtkdoc scans recursively.
9095
9096 2007-07-03  Wim Taymans  <wim@fluendo.com>
9097
9098         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9099
9100         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
9101         Set the encoding-name in the rtp caps to all uppercase, as required by
9102         the caps spec.
9103         Some small cleanups in the error paths. Fixes #453037.
9104
9105 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
9106
9107         * ext/wavpack/gstwavpackparse.c:
9108         (gst_wavpack_parse_index_get_last_entry),
9109         (gst_wavpack_parse_index_get_entry_from_sample),
9110         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
9111         (gst_wavpack_parse_scan_to_find_sample):
9112         * ext/wavpack/gstwavpackparse.h:
9113         Use a GSList for the GArray that is used like a list anyway.
9114
9115 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
9116
9117         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9118         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
9119         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
9120           Add state change function where we set 0/1 as default framerate in
9121           case our setcaps function isn't called, like it might not in a
9122           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
9123           gdkpixbufdec trying to create caps with a 0/0 framerate.
9124           Also post an error message on the bus if gst_pad_push() fails when
9125           called from our sink event handler (+1 for flow returns for event
9126           functions in 0.11) instead of failing silently.
9127
9128 2007-06-27  Wim Taymans  <wim@fluendo.com>
9129
9130         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
9131         Cast stack args to the proper types. Fixes #451249.
9132
9133 2007-06-27  Wim Taymans  <wim@fluendo.com>
9134
9135         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9136         (new_session_pad), (gst_rtspsrc_setup_streams):
9137         * gst/rtsp/gstrtspsrc.h:
9138         For container formats we only need to activate one of the streams so
9139         that we correctly signal no-more-pads. Fixes #451015.
9140
9141 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
9142
9143         * docs/plugins/gst-plugins-good-plugins.args:
9144         * docs/plugins/inspect/plugin-aasink.xml:
9145         * docs/plugins/inspect/plugin-alaw.xml:
9146         * docs/plugins/inspect/plugin-alpha.xml:
9147         * docs/plugins/inspect/plugin-alphacolor.xml:
9148         * docs/plugins/inspect/plugin-annodex.xml:
9149         * docs/plugins/inspect/plugin-apetag.xml:
9150         * docs/plugins/inspect/plugin-audiofx.xml:
9151         * docs/plugins/inspect/plugin-auparse.xml:
9152         * docs/plugins/inspect/plugin-autodetect.xml:
9153         * docs/plugins/inspect/plugin-avi.xml:
9154         * docs/plugins/inspect/plugin-cacasink.xml:
9155         * docs/plugins/inspect/plugin-cairo.xml:
9156         * docs/plugins/inspect/plugin-cdio.xml:
9157         * docs/plugins/inspect/plugin-cutter.xml:
9158         * docs/plugins/inspect/plugin-debug.xml:
9159         * docs/plugins/inspect/plugin-efence.xml:
9160         * docs/plugins/inspect/plugin-effectv.xml:
9161         * docs/plugins/inspect/plugin-esdsink.xml:
9162         * docs/plugins/inspect/plugin-flac.xml:
9163         * docs/plugins/inspect/plugin-flxdec.xml:
9164         * docs/plugins/inspect/plugin-gconfelements.xml:
9165         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9166         * docs/plugins/inspect/plugin-goom.xml:
9167         * docs/plugins/inspect/plugin-halelements.xml:
9168         * docs/plugins/inspect/plugin-icydemux.xml:
9169         * docs/plugins/inspect/plugin-id3demux.xml:
9170         * docs/plugins/inspect/plugin-jpeg.xml:
9171         * docs/plugins/inspect/plugin-ladspa.xml:
9172         * docs/plugins/inspect/plugin-level.xml:
9173         * docs/plugins/inspect/plugin-matroska.xml:
9174         * docs/plugins/inspect/plugin-mulaw.xml:
9175         * docs/plugins/inspect/plugin-multipart.xml:
9176         * docs/plugins/inspect/plugin-navigationtest.xml:
9177         * docs/plugins/inspect/plugin-ossaudio.xml:
9178         * docs/plugins/inspect/plugin-png.xml:
9179         * docs/plugins/inspect/plugin-quicktime.xml:
9180         * docs/plugins/inspect/plugin-rtp.xml:
9181         * docs/plugins/inspect/plugin-rtsp.xml:
9182         * docs/plugins/inspect/plugin-smpte.xml:
9183         * docs/plugins/inspect/plugin-speex.xml:
9184         * docs/plugins/inspect/plugin-taglib.xml:
9185         * docs/plugins/inspect/plugin-udp.xml:
9186         * docs/plugins/inspect/plugin-videobalance.xml:
9187         * docs/plugins/inspect/plugin-videobox.xml:
9188         * docs/plugins/inspect/plugin-videocrop.xml:
9189         * docs/plugins/inspect/plugin-videoflip.xml:
9190         * docs/plugins/inspect/plugin-videomixer.xml:
9191         * docs/plugins/inspect/plugin-wavenc.xml:
9192         * docs/plugins/inspect/plugin-wavparse.xml:
9193         * docs/plugins/inspect/plugin-ximagesrc.xml:
9194           Update docs with caps info.
9195
9196 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
9197
9198         * po/POTFILES.in:
9199           Add more files with translatable strings (#450878).
9200
9201 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
9202
9203         * MAINTAINERS:
9204         Updating all the maintainers files
9205
9206 2007-06-22  Edward Hervey  <edward@fluendo.com>
9207
9208         * ext/flac/gstflactag.c: (gst_flac_tag_init):
9209         * gst/interleave/deinterleave.c: (deinterleave_init),
9210         (deinterleave_sink_link):
9211         * gst/interleave/interleave.c: (interleave_init):
9212         * gst/median/gstmedian.c: (gst_median_init):
9213         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9214         Fix memory leaks.
9215         * tests/check/elements/id3demux.c: (pad_added_cb):
9216         Remove unused variable.
9217
9218 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
9219
9220         * ext/gconf/gconf.h:
9221         Make the prototype of gst_gconf_get_key_for_sink_profile
9222         match the implementation.
9223         Patch by: Damien Carbery <damien dot carbery at sun dot com>
9224         Fixes: #449747
9225
9226 2007-06-20  Michael Smith <msmith@fluendo.com>
9227
9228         * gst/rtp/gstrtpdepay.c:
9229           Fix description - rtpdepay is not a payloader.
9230
9231 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
9232
9233         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9234         (qtdemux_video_caps):
9235         * gst/qtdemux/qtdemux_fourcc.h:
9236           Add MJPG to the variants of motion jpeg.
9237
9238 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
9239
9240         * tests/check/Makefile.am:
9241         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9242         * tests/check/elements/videocrop.c: (GST_START_TEST):
9243         * tests/check/elements/videofilter.c:
9244         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9245         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9246           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9247           error flags are included and it errors out on compiler warnings
9248           for CVS builds; remove unused variables in various unit tests.
9249
9250 2007-06-19  Wim Taymans  <wim@fluendo.com>
9251
9252         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9253         (rtsp_connection_close), (rtsp_connection_free):
9254         Use threadsafe inet_ntop to convert an ip number to a string. 
9255         Fixes #447961.
9256         Don't leak fd (and ip) when freeing a connection without first closing
9257         it.
9258
9259 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
9260
9261         * configure.ac:
9262         Back to CVS
9263
9264         * gst-plugins-good.doap:
9265         Add 0.10.6 to the doap file.
9266
9267 === release 0.10.6 ===
9268
9269 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
9270
9271         * configure.ac:
9272           releasing 0.10.6, "Wobble Board"
9273
9274 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9275
9276         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9277         (rtsp_connection_free):
9278           Revert previous commit again, since we are frozen (sorry).
9279
9280 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9281
9282         Patch by: Peter Kjellerstedt <pkj at axis com>
9283
9284         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9285         (rtsp_connection_free):
9286           inet_ntoa() uses a static buffer internally, so we need to copy the
9287           returned string if we want to store it for later (#447961).
9288
9289 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9290
9291         * win32/vs6/autogen.dsp:
9292         * win32/vs6/gst_plugins_good.dsw:
9293         * win32/vs6/libgstalaw.dsp:
9294         * win32/vs6/libgstalpha.dsp:
9295         * win32/vs6/libgstalphacolor.dsp:
9296         * win32/vs6/libgstapetag.dsp:
9297         * win32/vs6/libgstaudiofx.dsp:
9298         * win32/vs6/libgstauparse.dsp:
9299         * win32/vs6/libgstautodetect.dsp:
9300         * win32/vs6/libgstavi.dsp:
9301         * win32/vs6/libgstcutter.dsp:
9302         * win32/vs6/libgstdirectdraw.dsp:
9303         * win32/vs6/libgstdirectsound.dsp:
9304         * win32/vs6/libgsteffectv.dsp:
9305         * win32/vs6/libgstflx.dsp:
9306         * win32/vs6/libgstgoom.dsp:
9307         * win32/vs6/libgsticydemux.dsp:
9308         * win32/vs6/libgstid3demux.dsp:
9309         * win32/vs6/libgstinterleave.dsp:
9310         * win32/vs6/libgstjpeg.dsp:
9311         * win32/vs6/libgstlevel.dsp:
9312         * win32/vs6/libgstmatroska.dsp:
9313         * win32/vs6/libgstmedian.dsp:
9314         * win32/vs6/libgstmonoscope.dsp:
9315         * win32/vs6/libgstmulaw.dsp:
9316         * win32/vs6/libgstmultipart.dsp:
9317         * win32/vs6/libgstqtdemux.dsp:
9318         * win32/vs6/libgstrtp.dsp:
9319         * win32/vs6/libgstrtsp.dsp:
9320         * win32/vs6/libgstsmpte.dsp:
9321         * win32/vs6/libgstspeex.dsp:
9322         * win32/vs6/libgstudp.dsp:
9323         * win32/vs6/libgstvideobalance.dsp:
9324         * win32/vs6/libgstvideobox.dsp:
9325         * win32/vs6/libgstvideocrop.dsp:
9326         * win32/vs6/libgstvideoflip.dsp:
9327         * win32/vs6/libgstvideomixer.dsp:
9328         * win32/vs6/libgstwaveform.dsp:
9329         * win32/vs6/libgstwavenc.dsp:
9330         * win32/vs6/libgstwavparse.dsp:
9331         Mark *.dsp & *.dsw as binary files and convert to DOS line
9332         endings, as they don't load into VS6 correctly otherwise.
9333
9334 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9335
9336         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9337         (rtsp_connection_connect):
9338         Fix the MingW build. 
9339         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9340         Fixes: #446981
9341
9342 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9343
9344         * tests/check/elements/.cvsignore:
9345         * tests/icles/.cvsignore:
9346         Hush the buildbots up
9347
9348 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9349
9350         * configure.ac:
9351         * sys/Makefile.am:
9352         * sys/directdraw/Makefile.am:
9353         * sys/directsound/Makefile.am:
9354         * sys/waveform/Makefile.am:
9355         Make sure to dist everything needed for win32 builds.
9356
9357 2007-06-14  Edward Hervey  <edward@fluendo.com>
9358
9359         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9360         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9361         caps.
9362         Fixes #447458
9363
9364 2007-06-13  Wim Taymans  <wim@fluendo.com>
9365
9366         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9367         Make sure we allocate enough memory for the codec_data.
9368         Fixes #447210.
9369
9370 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
9371
9372         * win32/MANIFEST:
9373         Add videocrop project file to the win32 manifest.
9374         * win32/vs6/gst_plugins_good.dsw:
9375         Add qtdemux,videocrop and waveform projects to the workspace.
9376         * win32/vs6/libgstqtdemux.dsp:
9377         Add zlib to the link list of qtdemux.
9378         * win32/vs6/libgstvideocrop.dsp:
9379         Add a project file for videocrop.
9380
9381 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9382
9383         * po/POTFILES.in:
9384         Add qtdemux for translation
9385
9386 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9387
9388         * configure.ac:
9389         * docs/plugins/Makefile.am:
9390         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9391         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9392         * docs/plugins/inspect/plugin-videocrop.xml:
9393         * gst-plugins-good.spec.in:
9394         * sys/Makefile.am:
9395         * tests/check/Makefile.am:
9396         * tests/icles/Makefile.am:
9397         * tests/icles/videocrop-test.c:
9398         Move videocrop and osxvideo from -bad.
9399
9400 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9401
9402         * configure.ac:
9403         * docs/plugins/Makefile.am:
9404         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9405         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9406         * docs/plugins/gst-plugins-good-plugins.args:
9407         * docs/plugins/inspect/plugin-qtdemux.xml:
9408         * docs/plugins/inspect/plugin-quicktime.xml:
9409         * win32/MANIFEST:
9410         Move qtdemux from -bad.
9411
9412         * gst-plugins-good.spec.in:
9413         Update spec file to reflect moving of qtdemux and wavpack
9414
9415 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9416         
9417         * win32/MANIFEST:
9418         * docs/plugins/Makefile.am:
9419         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9420         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9421         * docs/plugins/inspect/plugin-directdraw.xml:
9422         * docs/plugins/inspect/plugin-directsound.xml:
9423         * docs/plugins/inspect/plugin-waveform.xml:
9424         Move the waveform plugin from -bad too. Update the inspect xml
9425         files to mention Plugins Good instead of Plugins Bad.
9426
9427 2007-06-12  Andy Wingo  <wingo@pobox.com>
9428
9429         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9430         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9431         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9432         finalization and resuscitation. No longer public.
9433         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9434         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9435         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9436         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9437         miniobject semantics, and be threadsafe.
9438         (gst_v4l2src_queue_frame): Remove this function, as we just call
9439         the ioctls directly in the two places where we queue buffers.
9440         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9441         directly.
9442         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9443         to allocate the pool, which also preallocates the GstBuffers.
9444         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9445         queueing the frames directly.
9446         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9447         mmap buffers have been dequeued.
9448
9449         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9450         real MiniObject instead of rolling our own refcounting and
9451         finalizing. Give it a lock.
9452         (struct _GstV4l2Buffer): Remove one intermediary object, having
9453         the buffers hold the struct v4l2_buffer directly.
9454
9455         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9456         capture_init so that it can set them on the buffers that it will
9457         create.
9458         (gst_v4l2src_get_read): For better or for worse, include the
9459         timestamping and offsetting code here; really we should be using
9460         bufferalloc though.
9461         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9462         preallocated, mmap'd buffers.
9463
9464 2007-06-11  Wim Taymans  <wim@fluendo.com>
9465
9466         Patch by: daniel fischer <dan at f3c dot com>
9467
9468         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9469         (gst_ximage_src_get_caps):
9470         Actually use the display_name property so that we can dump any
9471         available X display. Fixes #445905.
9472
9473 2007-06-11  Wim Taymans  <wim@fluendo.com>
9474
9475         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9476
9477         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9478         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9479         Add missing rate fields to caps. Fixes #441118.
9480
9481 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
9482
9483         * win32/vs6/gst_plugins_good.dsw:
9484         * win32/vs8/gst-plugins-good.sln:
9485         Add DirectSound and DirectDraw sinks project files to
9486         workspace and solution files.
9487
9488 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
9489
9490         Patch by: Josh Coalson <xflac at yahoo dot com>,
9491         updated by Alexis Ballier <aballier at gentoo dot org>:
9492
9493         * configure.ac:
9494         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9495         (gst_flac_dec_setup_seekable_decoder),
9496         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9497         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9498         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9499         * ext/flac/gstflacdec.h:
9500         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9501         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9502         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9503         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9504         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9505         (gst_flac_enc_chain), (gst_flac_enc_set_property),
9506         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9507         * ext/flac/gstflacenc.h:
9508         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9509         
9510 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9511
9512         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9513         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9514         not necessary anymore as we need at least that core version. 
9515
9516 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9517
9518         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9519         (gst_wavpack_dec_chain):
9520         * ext/wavpack/gstwavpackdec.h:
9521         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9522         (gst_wavpack_parse_push_buffer):
9523         * ext/wavpack/gstwavpackparse.h:
9524         Improve discont handling by checking if the next Wavpack block has
9525         the expected, following block index.
9526
9527 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9528
9529         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9530           Fix element description.
9531
9532 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9533
9534         * configure.ac:
9535         * docs/plugins/Makefile.am:
9536         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9537         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9538         * docs/plugins/gst-plugins-good-plugins.args:
9539         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9540         * docs/plugins/gst-plugins-good-plugins.signals:
9541         * docs/plugins/inspect/plugin-autodetect.xml:
9542         * docs/plugins/inspect/plugin-gconfelements.xml:
9543         * docs/plugins/inspect/plugin-ladspa.xml:
9544         * docs/plugins/inspect/plugin-rtp.xml:
9545         * docs/plugins/inspect/plugin-wavpack.xml:
9546         * ext/Makefile.am:
9547         * tests/check/Makefile.am:
9548           move wavpack plugin.  See #352605.
9549
9550 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
9551
9552         * configure.ac:
9553         * docs/plugins/Makefile.am:
9554         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9555         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9556         * docs/plugins/gst-plugins-good-plugins.args:
9557         * sys/Makefile.am:
9558         * win32/MANIFEST:
9559         Add DirectDraw & DirectSound plugins to the build and docs.
9560
9561 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
9562
9563         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9564         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9565           When operating in pull mode, error out correct on not-linked.
9566
9567 2007-06-06  Andy Wingo  <wingo@pobox.com>
9568
9569         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9570         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9571         format and size if the ioctls are defined; should fix compilation
9572         on Linux < 2.16.19.
9573
9574 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
9575
9576         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9577           Printf fixes in debug statements; use LOG level for debug statements
9578           that are printed for each and every frame; convert c++ comments to
9579           C-style comments; not much point using g_try_malloc() if we then not
9580           even check the return value.
9581
9582 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
9583
9584         * configure.ac:
9585           Bump requirements to released versions (core and base 0.10.13).
9586
9587         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9588           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9589           own implementation.
9590
9591 2007-06-05  Andy Wingo  <wingo@pobox.com>
9592
9593         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9594         some useless comments.
9595
9596         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9597         frames before calling STREAMON, that might leave them in a state
9598         where they can't be dequeued if we go back to NULL without calling
9599         STREAMON, according to the docs.
9600         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9601         before we call STREAMON.
9602         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9603         failures. (For me this code hung.) The pool refcounting is still
9604         crack; added a note to that effect.
9605
9606 2007-06-05  Wim Taymans  <wim@fluendo.com>
9607
9608         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9609         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9610         Add support for mapping gst structure names to the MIME type equivalent.
9611         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9612
9613 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
9614
9615         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9616         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9617         (gst_wavenc_chain), (gst_wavenc_change_state):
9618         * gst/wavenc/gstwavenc.h:
9619         Properly write wav files with width!=depth by having the depth most
9620         significant bytes set and all others zero. Fixes #442535.
9621
9622 2007-06-01  Wim Taymans  <wim@fluendo.com>
9623
9624         * gst/rtsp/rtspconnection.c:
9625         Add include to make buildbot happy.
9626
9627 2007-06-01  Wim Taymans  <wim@fluendo.com>
9628
9629         Patch by: Peter Kjellerstedt  <pkj at axis com>
9630
9631         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9632         (rtsp_connection_connect), (add_date_header),
9633         (rtsp_connection_send), (parse_response_status),
9634         (parse_request_line), (parse_line), (rtsp_connection_receive):
9635         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9636         * gst/rtsp/rtspdefs.h:
9637         * gst/rtsp/rtspmessage.c: (key_value_foreach),
9638         (rtsp_message_init_request), (rtsp_message_init_response),
9639         (rtsp_message_remove_header), (rtsp_message_append_headers),
9640         (rtsp_message_dump):
9641         * gst/rtsp/rtspmessage.h:
9642         Improves version checking, allowing an RTSP server to reply with "505
9643         RTSP Version not supported.
9644         Adds a Date header to all messages.
9645         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9646         want to be able to send a response even if something in the request was
9647         invalid. EINVAL is only used when passing wrong arguments to functions.
9648         Do not handle an invalid method in parse_request_line(). Defer this to
9649         the caller so it can respond with "405 Method Not Allowed".
9650         Improves parsing of the timeout parameter to the Session header,
9651         allowing whitespace after the semicolon. 
9652         Avoids a compiler warning due to variables shadowing a function argument.
9653
9654 2007-06-01  Wim Taymans  <wim@fluendo.com>
9655
9656         Based on Patch by: Daniel Charles <dcharles at ti dot com>
9657
9658         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9659         (gst_rtp_amr_depay_process):
9660         * gst/rtp/gstrtpamrdepay.h:
9661         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9662         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9663         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9664         * gst/rtp/gstrtpamrpay.h:
9665         Add support for AMR-WB.
9666         Small cleanups such as using BOILERPLATE.
9667
9668 2007-05-31  Wim Taymans  <wim@fluendo.com>
9669
9670         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9671         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9672
9673 2007-05-30  Andy Wingo  <wingo@pobox.com>
9674
9675         * sys/v4l2/gstv4l2object.h: 
9676         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9677         unintended changes.
9678
9679         * sys/v4l2/v4l2src_calls.h: 
9680         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9681         the format list in the order that the driver gives it to us.
9682         (gst_v4l2src_probe_caps_for_format_and_size)
9683         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9684         based on the capabilities of the device.
9685         (gst_v4l2src_grab_frame): Update for object variable renaming.
9686         (gst_v4l2src_set_capture): Update to be strict in its parameters,
9687         as in the set_caps below.
9688         (gst_v4l2src_capture_init): Update for object variable renaming,
9689         and reflow.
9690         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9691         (gst_v4l2src_capture_deinit): Update for object variable renaming.
9692         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9693         (gst_v4l2src_get_fps): Remove; these functions don't have much
9694         meaning outside of an atomic set_caps method.
9695         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9696         known.
9697
9698         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9699         call to update_fps; not sure about this change.
9700         (gst_v4l2_tuner_set_norm): Work around the fact that for the
9701         moment we don't have an update_fps_func.
9702
9703         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9704         structures in the object, just store what we need. Do store the
9705         probed caps of the device. Don't store the current frame rate.
9706
9707         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9708         update_fps_function, for now. Update for new object variable
9709         naming.
9710         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9711         new object variable naming.
9712         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9713         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9714         (gst_v4l2src_get_caps): Rework to probe the device for supported
9715         frame sizes and frame rates.
9716         (gst_v4l2src_set_caps): Rework to be strict in the given
9717         parameters: if someone asks us to have a certain size and rate,
9718         that is what we configure.
9719         (gst_v4l2src_get_read): Update for object variable naming. Don't
9720         leak buffers on short reads.
9721         (gst_v4l2src_get_mmap): Update for object variable naming, and add
9722         comments.
9723         (gst_v4l2src_create): Update for object variable naming.
9724
9725 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9726
9727         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9728         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9729         * gst/avi/gstavidemux.h:
9730           Parse subtitle text streams instead of erroring out (#442034). Still
9731           needs a parser for the subtitles to actually show up.
9732
9733 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9734
9735         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9736         (gst_avi_demux_loop):
9737           Make _push_event() return TRUE if the event could be pushed on at
9738           least one pad and not only if it could be pushed on all pads,
9739           otherwise we'll end up posting an error message on EOS if one or
9740           more source pads are not connected.
9741
9742 2007-05-28  Wim Taymans  <wim@fluendo.com>
9743
9744         * gst/rtsp/rtsptransport.c:
9745         Use renamed RTP bin.
9746
9747 2007-05-28  Wim Taymans  <wim@fluendo.com>
9748
9749         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9750
9751         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9752         (gst_video_box_set_property), (gst_video_box_transform_caps),
9753         (video_box_recalc_transform), (gst_video_box_set_caps),
9754         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9755         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9756         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9757         (gst_video_box_i420_i420), (gst_video_box_transform),
9758         (plugin_init):
9759         Add AYUV->AYUV and AYUV->I420 formats. 
9760         Fix negotiation and I420->AYUV conversion.
9761         Fixes #429329.
9762
9763 2007-05-26  Wim Taymans  <wim@fluendo.com>
9764
9765         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9766         Use different variables for nested for loops so that the outer loop
9767         functions properly and speex files with multiple frames per buffer work
9768         properly.
9769         Fixes #441408.
9770
9771 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9772
9773         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9774           Don't leak newsegment events.
9775
9776 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9777
9778         * gst/wavparse/Makefile.am:
9779           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9780           drags it in.
9781
9782 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9783
9784         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9785         (notgst_value_array_append_buffer),
9786         (gst_flac_enc_process_stream_headers),
9787         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9788         (gst_flac_enc_change_state):
9789         * ext/flac/gstflacenc.h:
9790           Collect headers, add "streamheader" field to output caps and set
9791           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9792           produces output according to the official FLAC-to-Ogg mapping
9793           instead of completely broken files. Fixes #426044.
9794
9795 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9796
9797         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9798         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9799         (gst_id3demux_sink_event):
9800         * gst/id3demux/gstid3demux.h:
9801         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9802         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9803         (gst_tag_demux_send_new_segment):
9804         Handle and adjust new-segment events so that downstream really
9805         sees a stream with the tag pieces stripped off the front and back.
9806         Fixes strangeness in seeking when mp3 decoders use the new-segment
9807         byte position to estimate their current playback position timestamp
9808         and then the arriving buffers don't match up.
9809
9810 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9811
9812         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9813           Don't unnecessarily perform a READY->NULL->READY transition on the
9814           detected audio sink when starting up. Fixes: #440127
9815
9816 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
9817
9818         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9819         (gst_flac_enc_chain):
9820           Don't crash in chain function if setcaps hasn't been called.
9821
9822 2007-05-24  Wim Taymans  <wim@fluendo.com>
9823
9824         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9825         Init value to avoid infinte loops.
9826
9827 2007-05-24  Wim Taymans  <wim@fluendo.com>
9828
9829         Patch by: Peter Kjellerstedt  <pkj at axis com>
9830
9831         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9832         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9833         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9834         (gst_rtspsrc_play):
9835         (rtsp_connection_send), (rtsp_connection_receive):
9836         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9837         Fix for new API.
9838
9839         * gst/rtsp/rtspconnection.c: (add_auth_header),
9840         Only add authorisation and session headers when sending messages.
9841
9842         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9843         (rtsp_message_init_request), (rtsp_message_init_response),
9844         (rtsp_message_unset), (rtsp_message_add_header),
9845         (rtsp_message_remove_header), (rtsp_message_get_header),
9846         (rtsp_message_append_headers), (dump_key_value),
9847         (rtsp_message_dump):
9848         * gst/rtsp/rtspmessage.h:
9849         Add support for multiple headers of the same type by storing the parsed
9850         headers in a GArray instaed of a hashtable.
9851
9852 2007-05-21  Wim Taymans  <wim@fluendo.com>
9853
9854         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9855         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9856         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9857         safer shutdown.
9858
9859 2007-05-21  Wim Taymans  <wim@fluendo.com>
9860
9861         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9862         * gst/rtsp/gstrtpdec.h:
9863         Added signal for backwards compat.
9864
9865 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
9866         
9867         Patch by: René Stadler <mail at renestadler dot de>
9868
9869         * configure.ac:
9870         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9871         (gst_au_parse_parse_header), (gst_au_parse_chain):
9872         * gst/auparse/gstauparse.h:
9873         Use audioconvert for converting from non-native endianness floats
9874         in auparse instead of doing it ourself. Fixes #424527.
9875         This needs the audioconvert from plugins-base CVS.
9876         
9877 2007-05-21  Wim Taymans  <wim@fluendo.com>
9878
9879         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9880         (gst_rtp_h263p_pay_flush):
9881         Fix enum registration.
9882
9883 2007-05-21  Wim Taymans  <wim@fluendo.com>
9884
9885         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9886
9887         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9888         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9889         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9890         (gst_rtp_h263p_pay_flush):
9891         * gst/rtp/gstrtph263ppay.h:
9892         Add new fragmentation mode base on GOB headers. Fixes #438940.
9893
9894 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
9895
9896         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9897           Printf format fix.
9898
9899 2007-05-18  Wim Taymans  <wim@fluendo.com>
9900
9901         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9902         Don't crash when an unsupported transport error was returned by the
9903         server, just try to configure the next stream. Fixes #439255.
9904
9905 2007-05-18  Wim Taymans  <wim@fluendo.com>
9906
9907         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9908         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9909         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9910         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9911         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9912         * gst/rtsp/gstrtspsrc.h:
9913         Add TCP timeout property and use it for all TCP connection.
9914
9915         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9916         (rtsp_connection_write), (rtsp_connection_next_timeout),
9917         (rtsp_connection_reset_timeout):
9918         Make connect and writes cancelable and make them use the timeout.
9919
9920 2007-05-18  Wim Taymans  <wim@fluendo.com>
9921
9922         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9923         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9924         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9925         (gst_rtspsrc_setup_streams):
9926         Refactor timeout handling.
9927         Also send keep-alive when dealing with TCP transport.
9928
9929         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9930         (rtsp_connection_free), (rtsp_connection_next_timeout),
9931         (rtsp_connection_reset_timeout):
9932         * gst/rtsp/rtspconnection.h:
9933         Use a timer to handle the session timeouts, add some methods to deal
9934         with timeouts.
9935
9936 2007-05-17  Wim Taymans  <wim@fluendo.com>
9937
9938         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9939         (gst_rtspsrc_setup_streams):
9940         Ignore streams that fail the setup command, we will retry with a
9941         different transport later on.
9942
9943         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9944         (rtsp_ext_wms_configure_stream):
9945         Fix encoding name case.
9946
9947 2007-05-16  Edward Hervey  <edward@fluendo.com>
9948
9949         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9950         Fix build on macosx.
9951
9952 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
9953
9954         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9955         Replace direct comparison of a string with the string literal "" with
9956         a comparison of the first character with '\0'. Fixes #438926.
9957
9958 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9959
9960         * gst/debug/breakmydata.c (gst_break_my_data_init):
9961           One more try. This should be the proper fix now.
9962
9963 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9964
9965         * gst/debug/breakmydata.c:
9966           Ooops, no // comments please.
9967
9968 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9969
9970         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9971         (gst_break_my_data_init):
9972           Fix gst_buffer_is_writable() assertion.
9973
9974 2007-05-14  David Schleef  <ds@schleef.org>
9975
9976         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9977           video/x-raw-bayer.  Fixes #314160.
9978
9979 2007-05-14  Wim Taymans  <wim@fluendo.com>
9980
9981         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9982         (gst_rtp_theora_depay_parse_configuration):
9983         * gst/rtp/gstrtptheorapay.c: (encode_base64),
9984         (gst_rtp_theora_pay_finish_headers),
9985         (gst_rtp_theora_pay_handle_buffer):
9986         Update theora pay/depayloader in a similar to vorbis.
9987
9988         * gst/rtp/gstrtpvorbisdepay.c:
9989         (gst_rtp_vorbis_depay_parse_configuration):
9990         Update docs.
9991
9992 2007-05-14  Wim Taymans  <wim@fluendo.com>
9993
9994         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
9995         When we try to execute a method that is not supported by the server,
9996         don't error out but remove the method from the accepted methods so that
9997         we never try to perform this method again.
9998
9999 2007-05-14  Wim Taymans  <wim@fluendo.com>
10000
10001         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
10002         Remove annoying _dump_mem.
10003
10004 2007-05-14  Wim Taymans  <wim@fluendo.com>
10005
10006         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
10007         Parse range correctly.
10008
10009         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
10010         The baseurl now always has a '/' at the start.
10011
10012 2007-05-14  Wim Taymans  <wim@fluendo.com>
10013
10014         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
10015         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
10016         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10017         Factor out caps configuration and configure more stuff such as the time
10018         ranges and speed/scale values.
10019
10020         * gst/rtsp/rtsptransport.c:
10021         Add Copyright after non-trival fixes.
10022
10023 2007-05-12  Wim Taymans  <wim@fluendo.com>
10024
10025         Patch by: Peter Kjellerstedt  <pkj at axis com>
10026
10027         * gst/rtsp/gstrtspsrc.h:
10028         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10029         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
10030         (rtsp_message_get_header):
10031         * gst/rtsp/rtspmessage.h:
10032         Make channel guint8 where possible.
10033         Make rtsp_message_init_data() take the channel as a guint8.
10034
10035         * gst/rtsp/rtspdefs.c:
10036         Fixed a typo: Timout -> Timeout
10037
10038         * gst/rtsp/rtspdefs.h:
10039         Make RTSP_CHECK() behave as a statement.
10040
10041         * gst/rtsp/sdpmessage.c:
10042         Avoid a compiler warning in INIT_ARRAY().
10043         Fixes #437692.
10044
10045 2007-05-12  Wim Taymans  <wim@fluendo.com>
10046
10047         Patch by: Peter Kjellerstedt  <pkj at axis com>
10048
10049         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
10050         (rtsp_url_get_request_uri):
10051         * gst/rtsp/rtspurl.h:
10052         Add support for query parameters to RTSP URLs.
10053
10054 2007-05-12  Wim Taymans  <wim@fluendo.com>
10055
10056         Patch by: Peter Kjellerstedt  <pkj at axis com>
10057
10058         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
10059         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
10060         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
10061         (rtsp_transport_parse), (rtsp_transport_as_text):
10062         * gst/rtsp/rtsptransport.h:
10063         Add validation to rtsp_transport_parse().
10064         Add rtsp_transport_as_text() to generate an RTSP header from an
10065         RTSPTransport.
10066         Change ssrc to guint (was a string) since that is what it is, even
10067         though it is sent as a hex string.
10068         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
10069         incorrect, which can be seen when looking at the examples in the RFC).
10070         Fixes #437670.
10071
10072 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10073
10074         Patch by: Eric Anholt
10075
10076         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
10077           gst_ximage_src_ximage_get):
10078         Use union of all damage between frames to make it faster.
10079         Fixes bug #342463.
10080         Also fix crasher when cursor is at bottom right of window.
10081
10082 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
10083
10084         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10085           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
10086           streaming mode regression for file from #343837 with 'bext' chunk
10087           before the 'fmt' chunk.
10088
10089 2007-05-11  Wim Taymans  <wim@fluendo.com>
10090
10091         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
10092         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
10093         (gst_rtspsrc_handle_src_event),
10094         (gst_rtspsrc_stream_configure_manager),
10095         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
10096         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
10097         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10098         * gst/rtsp/gstrtspsrc.h:
10099         * gst/rtsp/rtspdefs.h:
10100         Preliminary seek support.
10101         Activate internal pads so that we can receive events on them.
10102         Don't try to parse a range string when it's NULL.
10103
10104 2007-05-11  Wim Taymans  <wim@fluendo.com>
10105
10106         * gst/rtp/README:
10107         Update README with new RTP variables that will be used for
10108         synchronisation.
10109
10110         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
10111         (gst_rtp_vorbis_depay_parse_configuration),
10112         (gst_rtp_vorbis_depay_process):
10113         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
10114         (gst_rtp_vorbis_pay_finish_headers),
10115         (gst_rtp_vorbis_pay_handle_buffer):
10116         Update vorbis pay and depayloader to draft-04.
10117
10118 2007-05-11  Wim Taymans  <wim@fluendo.com>
10119
10120         * gst/rtsp/rtsptransport.c:
10121         UDP MCAST is actually the default for RTP/AVP.
10122 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
10123
10124         * gst/level/gstlevel.c: (gst_level_transform_ip):
10125         Use guint8 * instead of gpointer then vs6 can build 
10126         in_data += (filter->width / 8).
10127
10128 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10129
10130         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
10131           gst_ximage_src_ximage_get):
10132         * sys/ximage/gstximagesrc.h (last_ximage):
10133         When using Damage actually keep the last frame, and not assume
10134         that the buffer we get already has the last frame on it.
10135         Copy the cursor over if we specify a non-zero start x and
10136         start y.
10137
10138 2007-05-11  Wim Taymans  <wim@fluendo.com>
10139
10140         * gst/rtsp/rtsptransport.c:
10141         Make UDP the default transport when not specified.
10142
10143 2007-05-09  David Schleef  <ds@schleef.org>
10144
10145         * gst/level/gstlevel.c:
10146           Revert last change.
10147
10148 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
10149
10150         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
10151         (gst_level_transform_ip):
10152         Use guint8 * instead of gpointer then vs6 know the size of data
10153         pointed when moving the pointer.
10154         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
10155         Move instructions after variables declaration.
10156         * win32/vs6/autogen.dsp:
10157         * win32/vs6/libgstrtp.dsp:
10158         * win32/vs6/libgstrtsp.dsp:
10159         Update vs6 project files.
10160
10161 2007-05-09  Wim Taymans  <wim@fluendo.com>
10162
10163         * gst/rtsp/Makefile.am:
10164         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
10165         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
10166         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
10167         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
10168         (rtsp_range_free):
10169         * gst/rtsp/rtsprange.h:
10170         Add code to parse time ranges.
10171         Report DURATION on the stream when possible.
10172
10173 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
10174
10175         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10176         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10177         (gst_videomixer_collected):
10178           Fix strides calculation for AYUV (it's just width*4) (#436910).
10179
10180 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
10181
10182         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10183         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10184         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10185         Sync the GObject properties before each processing step to properly
10186         work with the controller.
10187
10188 2007-05-04  Wim Taymans  <wim@fluendo.com>
10189
10190         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10191         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10192         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10193         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10194         (gst_rtspsrc_change_state):
10195         Let more error state trickle down so that we can catch more error
10196         cases.
10197         Handle keep-alive a little smarter by selecting a method the server
10198         actually supports.
10199         Fix a race in UDP streaming shutdown.
10200
10201 2007-05-04  Wim Taymans  <wim@fluendo.com>
10202
10203         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10204         Ignore errors when trying to use the keep-alive messages.
10205
10206 2007-05-04  Wim Taymans  <wim@fluendo.com>
10207
10208         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10209         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10210         (gst_rtspsrc_stream_configure_manager),
10211         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10212         (gst_rtspsrc_stream_configure_mcast),
10213         (gst_rtspsrc_stream_configure_udp),
10214         (gst_rtspsrc_stream_configure_udp_sink),
10215         (gst_rtspsrc_stream_configure_transport):
10216         Send RTCP messages back to the server over the TCP connection.
10217
10218         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10219         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10220         (rtsp_connection_receive):
10221         * gst/rtsp/rtspconnection.h:
10222         Factor out and expose lowlevel _write and _read methods.
10223         Implement sending data messages to the server.
10224
10225 2007-05-03  Wim Taymans  <wim@fluendo.com>
10226
10227         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10228         (gst_multipart_mux_collected):
10229         Fix timestamps on outgoing buffers.
10230
10231 2007-05-03  Wim Taymans  <wim@fluendo.com>
10232
10233         * gst/multipart/multipartmux.c:
10234         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10235         (gst_multipart_mux_change_state):
10236         Emit NEWSEGMENT events before pushing the first buffer.
10237
10238 2007-05-03  Wim Taymans  <wim@fluendo.com>
10239
10240         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10241         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10242         (gst_rtspsrc_handle_src_query),
10243         (gst_rtspsrc_stream_configure_manager),
10244         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10245         (gst_rtspsrc_stream_configure_mcast),
10246         (gst_rtspsrc_stream_configure_udp),
10247         (gst_rtspsrc_stream_configure_udp_sink),
10248         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10249         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10250         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10251         (gst_rtspsrc_pause):
10252         Refactor transport configuration code.
10253         Create internal pads for TCP transport so that we can implement events
10254         and queries.
10255         Handle events and queries.
10256         Parse range from the SDP.
10257         Fix race in pause handler where the connection could still be flushing.
10258
10259 2007-05-02  Wim Taymans  <wim@fluendo.com>
10260
10261         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10262         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10263         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10264         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10265         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10266         (gst_rtspsrc_change_state):
10267         * gst/rtsp/gstrtspsrc.h:
10268         Fix race when multiple udp sources post timeouts, just act on the first
10269         received timeout.
10270         Protect stream list with a recursive lock to fix some races.
10271         Flush connection when we need to do a reconnect or stop.
10272         Make state lock recursive.
10273
10274         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10275         (rtsp_connection_close):
10276         Some small cleanups.
10277
10278 2007-05-02  Wim Taymans  <wim@fluendo.com>
10279
10280         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10281         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10282         Only set DISCONT when there actually is a discont or when we just
10283         started.
10284
10285 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10286
10287         * ext/flac/gstflac.c: (plugin_init):
10288         Call bindtextdomain() to get localized strings.
10289
10290 2007-05-02  Wim Taymans  <wim@fluendo.com>
10291
10292         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10293         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10294         (gst_wavparse_stream_data):
10295         * gst/wavparse/gstwavparse.h:
10296         Be a bit more clever when dealing with VBR files with FACT tags, we
10297         don't want to timestamp buffers in that case but the estimated BPS can
10298         be used for seeking.
10299         Only send close segment in the streaming thread.
10300
10301 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10302
10303         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10304         Correctly post an error on the bus if something went wrong in the loop
10305         function. This fixes a few cases where the task was paused and nothing
10306         happened anymore.
10307
10308 2007-05-02  Wim Taymans  <wim@fluendo.com>
10309
10310         * gst/rtsp/test.c: (main):
10311         Fix compilation of deprecated test just because I'm too lazy to delete
10312         it.
10313
10314 2007-05-02  Wim Taymans  <wim@fluendo.com>
10315
10316         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10317         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10318         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10319         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10320         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10321         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10322         * gst/rtsp/gstrtspsrc.h:
10323         Fix sending RTCP to the right place.
10324         Fix bug in reffing the wrong UDP element.
10325         Use new pad names for the session manager.
10326         Implement handling server requests in interleaved and UDP modes.
10327         Handle session keep-alive in UDP modes.
10328         Remove GCond for handling UDP timeouts.
10329
10330         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10331         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10332         (rtsp_connection_receive), (rtsp_connection_close):
10333         * gst/rtsp/rtspconnection.h:
10334         Store connection IP address for later.
10335         Add timeout args to all operations that might block forever.
10336         Parse session timeout.
10337         Only close sockets when not already closed.
10338
10339         * gst/rtsp/rtspdefs.c:
10340         * gst/rtsp/rtspdefs.h:
10341         Add timeout return value and error string.
10342
10343         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10344         Add small comment.
10345
10346 2007-05-01  Wim Taymans  <wim@fluendo.com>
10347
10348         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10349
10350         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10351         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10352         * gst/rtp/gstrtpmp4vpay.h:
10353         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10354
10355 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
10356
10357         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10358           Remove v4l2src from docs, since it breaks the docs build, and the
10359           plugin is only built if --enable-experimental is used anyway.
10360
10361         * docs/plugins/Makefile.am:
10362           Spaces => tab.
10363
10364 2007-04-29  Wim Taymans  <wim@fluendo.com>
10365
10366         * gst/udp/gstmultiudpsink.c: (leave_multicast),
10367         (gst_multiudpsink_add), (gst_multiudpsink_remove):
10368         Add code to drop membership of a multicast group.
10369
10370         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10371         (gst_udpsink_set_uri):
10372         Implement URI handler.
10373
10374         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10375         (gst_rtspsrc_parse_rtpinfo):
10376         Use URI handler to make udpsink instace.
10377         Improve code to configure port and destination.
10378
10379 2007-04-29  Wim Taymans  <wim@fluendo.com>
10380
10381         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10382         Fix multicast detection.
10383         Don't try to join a multicast group if the address is not multicast.
10384
10385         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10386         Small debug improvement.
10387
10388 2007-04-27  Wim Taymans  <wim@fluendo.com>
10389
10390         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10391         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10392         (gst_rtspsrc_handle_message):
10393         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10394         parent.
10395
10396 2007-04-27  Wim Taymans  <wim@fluendo.com>
10397
10398         * gst/rtp/gstrtpilbcdepay.h:
10399         Fix mode property when specified as an arg.
10400
10401 2007-04-26  Edward Hervey  <edward@fluendo.com>
10402
10403         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10404         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10405         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10406         * docs/plugins/inspect/plugin-osxaudio.xml:
10407         Add documentation for osxaudio plugin.
10408
10409 2007-04-26  Wim Taymans  <wim@fluendo.com>
10410
10411         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10412         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10413         (gst_rtspsrc_open), (gst_rtspsrc_close),
10414         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10415         (gst_rtspsrc_pause):
10416         * gst/rtsp/gstrtspsrc.h:
10417         Protect state changes with a lock.
10418
10419         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10420         (parse_line):
10421         * gst/rtsp/rtspconnection.h:
10422         Remove some unused stuff.
10423
10424 2007-04-26  Wim Taymans  <wim@fluendo.com>
10425
10426         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10427         Handle the case where there are exactly 0 bytes to read and the ioctl
10428         did not report an error. Fixes #433530.
10429
10430 2007-04-26  Wim Taymans  <wim@fluendo.com>
10431
10432         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10433         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10434         * gst/wavparse/gstwavparse.h:
10435         Apply DISCONT to buffers.
10436         Only apply timestamp to the first sample after a DISCONT, too many VBR
10437         files cause random jitter in the timestamps. Fixes #433119.
10438
10439 2007-04-25  Wim Taymans  <wim@fluendo.com>
10440
10441         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10442         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10443         (gst_rtp_dec_get_property):
10444         * gst/rtsp/gstrtpdec.h:
10445         Add dummy latency property to be backwards compat with rtpbin.
10446
10447         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10448         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10449         (gst_rtspsrc_stream_configure_transport),
10450         (gst_rtspsrc_parse_rtpinfo):
10451         * gst/rtsp/gstrtspsrc.h:
10452         Add latency property and configure in the session manager.
10453         Don't set invalid clock-base and seqnum-base on caps, some servers
10454         sometimes don't send them.
10455
10456 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10457
10458         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10459         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10460           Double-check that RGB input caps are really RGBA caps (apparently
10461           the core doesn't always catch it if those caps aren't a subset of
10462           our template caps, also see #421543). Fixes #429319 in a way.
10463           Also, don't leak the pad template in the transform_caps function.
10464
10465         * tests/check/Makefile.am:
10466         * tests/check/elements/.cvsignore:
10467         * tests/check/elements/alphacolor.c: (setup_alphacolor),
10468         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10469         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10470         (GST_START_TEST), (alphacolor_suite):
10471           Add some basic unit tests for alphacolor.
10472
10473 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10474
10475         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10476           If we get a fatal flow return in the loop function, first post the
10477           error message and only then send the EOS event downstream, otherwise
10478           applications might get an eos message before the error message and
10479           think everything was ok (related to #429319).
10480
10481 2007-04-25  Wim Taymans  <wim@fluendo.com>
10482
10483         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10484         Read the channel byte as an unsigned byte.
10485
10486 2007-04-25  Wim Taymans  <wim@fluendo.com>
10487
10488         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10489         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10490         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10491         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10492         (gst_rtp_gsm_depay_setcaps):
10493         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10494         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10495         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10496         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10497         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10498         (gst_ilbc_depay_get_property):
10499         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10500         * gst/rtp/gstrtpmp4adepay.c:
10501         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10502         (gst_rtp_pcma_depay_setcaps):
10503         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10504         (gst_rtp_pcmu_depay_setcaps):
10505         Make sure we configure the clock_rate in the baseclass in the setcaps
10506         function. Fixes #431282.
10507
10508 2007-04-25  Wim Taymans  <wim@fluendo.com>
10509
10510         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10511         (gst_rtspsrc_stream_free), (request_pt_map),
10512         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10513         * gst/rtsp/gstrtspsrc.h:
10514         Parse server address from SDP.
10515         Hook up a udpsink to send RTCP back to the server.
10516
10517         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10518         * gst/rtsp/rtsptransport.h:
10519         Add some docs.
10520
10521 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
10522
10523         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10524           Make header field check conditional. Fixes #433135
10525
10526 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
10527
10528         * docs/plugins/Makefile.am:
10529         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10530         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10531         * docs/plugins/inspect/plugin-alphacolor.xml:
10532         * gst/alpha/Makefile.am:
10533         * gst/alpha/gstalphacolor.c:
10534         * gst/alpha/gstalphacolor.h:
10535           Add minimal docs blurb to alphacolor; split out headers into
10536           separate header file for gtk-doc.
10537
10538 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
10539
10540         * gst/debug/progressreport.c: (gst_progress_report_report):
10541           Don't try to post NULL message (in case we can't query upstream
10542           position or duration).
10543
10544 2007-04-18  Michael Smith  <msmith@fluendo.com>
10545
10546         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10547         (gst_cutter_get_caps):
10548         * gst/cutter/gstcutter.h:
10549           Fix some of the most obvious bugs in cutter. Now doesn't leak
10550           everything if input is silent.
10551
10552 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
10553
10554         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10555         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10556         * gst/wavenc/gstwavenc.h:
10557         Wav apparently only supports width==GST_ROUND_UP(depth), everything
10558         else results in a invalid block align and invalid files.
10559
10560 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10561
10562         Patch by: Snaik <snaik32 gmail com>
10563
10564         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10565           Add missing break statement for BOX_HORIZONTAL case.
10566
10567 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10568
10569         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10570
10571         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10572         Use correct format strings for integer types.
10573
10574 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10575
10576         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10577         (gst_wavparse_create_sourcepad):
10578         Use gst_riff_create_audio_template_caps () instead of the local caps.
10579         This makes updates of the local caps unecessary whenever libgstriff
10580         gets support for new formats.
10581
10582 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
10583
10584         Patch by: Brian Cameron  <brian.cameron at sun dot com>
10585
10586         * sys/sunaudio/gstsunaudio.c:
10587         * sys/sunaudio/gstsunaudiomixer.c:
10588         * sys/sunaudio/gstsunaudiomixer.h:
10589         * sys/sunaudio/gstsunaudiomixerctrl.c:
10590         * sys/sunaudio/gstsunaudiomixerctrl.h:
10591         * sys/sunaudio/gstsunaudiomixertrack.h:
10592         * sys/sunaudio/gstsunaudiosink.c:
10593         * sys/sunaudio/gstsunaudiosink.h:
10594         * sys/sunaudio/gstsunaudiosrc.c:
10595         * sys/sunaudio/gstsunaudiosrc.h:
10596           Fix and/or update copyright attributions (#430228).
10597
10598 2007-04-13  Wim Taymans  <wim@fluendo.com>
10599
10600         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10601         Fix docs.
10602
10603         * gst/rtsp/URLS:
10604         Add some more example urls.
10605
10606         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10607         (gst_rtp_dec_chain_rtp):
10608         Better debugging.
10609
10610         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10611         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10612         (gst_rtspsrc_parse_rtpinfo):
10613         Remove unused code.
10614
10615 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10616
10617         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10618         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10619         (gst_wavparse_stream_data):
10620           Relax the audio/mpeg caps again and add FIXME: comment.
10621
10622 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10623
10624         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10625         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10626         (gst_wavparse_stream_data):
10627         * gst/wavparse/gstwavparse.h:
10628           More sanity check for the header fields. Fix type for 'rate' header
10629           field.
10630
10631 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
10632
10633         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10634         (gst_icydemux_unicodify):
10635           If the metadata strings we get in the stream are not UTF-8, try to
10636           interpret them according to the character encodings specified in the
10637           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10638           only fall back to locale/ISO-8859-1 if those aren't set or don't
10639           work. Should fix #428901.
10640
10641 2007-04-12  Wim Taymans  <wim@fluendo.com>
10642
10643         * gst/rtp/gstrtph264depay.c:
10644         Use the proper sync word for SPS and PPS.
10645
10646 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10647
10648         * gst/rtp/Makefile.am:
10649         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10650           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10651         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10652           Add a simple hashing implementation that we can use to generate
10653           a 24-bit ident value based on the codebooks for vorbis and theora.
10654         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10655           gst_rtp_theora_pay_handle_buffer):
10656         * gst/rtp/gstrtpvorbisdepay.c
10657           (gst_rtp_vorbis_depay_parse_configuration,
10658           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10659         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10660           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10661           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10662           Use the hashing function, ensuring that the same codebooks result
10663           in the same ident and thus the same SDP description.
10664           Various log fixes/changes.
10665
10666 2007-04-12  Wim Taymans  <wim@fluendo.com>
10667
10668         Patch by: jerry tan <jerry dot tan at sun dot com>
10669
10670         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10671         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10672         application's responsibility to make sure it open the device once.
10673         Remove a careless error if AUDIODEV is set. Fixes #392620.
10674
10675 2007-04-12  Wim Taymans  <wim@fluendo.com>
10676
10677         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10678         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10679         * gst/rtsp/gstrtpdec.h:
10680         Make backward compat with rtpbin by adding the request-pt-map signals.
10681
10682         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10683         (new_session_pad), (request_pt_map),
10684         (gst_rtspsrc_stream_configure_transport),
10685         (gst_rtspsrc_stream_configure_caps),
10686         (gst_rtspsrc_activate_streams):
10687         * gst/rtsp/gstrtspsrc.h:
10688         Implement request-pt-map signals instead of setting caps on the buffers
10689         for the session manager.
10690
10691 2007-04-11  Wim Taymans  <wim@fluendo.com>
10692
10693         * gst/udp/gstudp.c: (plugin_init):
10694         Register GstNetBuffer in plugin_init so that the type can be used from
10695         multiple threads without races.
10696
10697 2007-04-10  Wim Taymans  <wim@fluendo.com>
10698
10699         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10700         (gst_rtp_amr_depay_process):
10701         Fix depayloader clock_rate and some cleanups.
10702
10703         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10704         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10705         * gst/rtp/gstrtph264depay.h:
10706         Don't push codec_data in the adapter because it might get flushed when
10707         we get a discont.
10708
10709         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10710         Handle multiple AU per packet.
10711
10712         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10713         (gst_rtp_sv3v_depay_plugin_init):
10714         Disable rank, this one does not work.
10715         Remove timestamping, base class does that.
10716
10717 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
10718
10719         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10720           limit caps to the formats we announce in the template
10721
10722         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10723         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10724         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10725           fix some crashers/asserts when dealing with broken files
10726
10727 2007-04-10  Wim Taymans  <wim@fluendo.com>
10728
10729         Patch by: Peter Kjellerstedt  <pkj at axis com>
10730
10731         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10732         * gst/rtp/gstrtpL16depay.c:
10733         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10734         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10735         (gst_rtp_speex_depay_setcaps):
10736         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10737         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10738         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10739         Fix some compiler warnings. Fixes #428182.
10740
10741 2007-04-06  Wim Taymans  <wim@fluendo.com>
10742
10743         * gst/rtsp/Makefile.am:
10744         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10745         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10746         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10747         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10748         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10749         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10750         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10751         (create_rtcp), (gst_rtp_dec_request_new_pad),
10752         (gst_rtp_dec_release_pad):
10753         * gst/rtsp/gstrtpdec.h:
10754         * gst/rtsp/gstrtsp.c: (plugin_init):
10755         Morph RTPDec into something compatible with RTPBin as a fallback.
10756         Various other style fixes.
10757
10758         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10759         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10760         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10761         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10762         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10763         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10764         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10765         * gst/rtsp/gstrtspsrc.h:
10766         Implement RTPBin session manager handling.
10767         Don't try to add empty properties to caps.
10768         Implement fallback session manager, handling.
10769         Don't combine errors from RTCP streams, just ignore them.
10770
10771         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10772         * gst/rtsp/rtsptransport.h:
10773         Implement fallback session manager.
10774         Make RTPBin the default one when available.
10775
10776 2007-04-05  Wim Taymans  <wim@fluendo.com>
10777
10778         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10779         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10780         This element is ready to be autoplugged.
10781
10782 2007-04-05  Julien MOUTTE  <julien@moutte.net>
10783
10784         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10785         Don't leave the offsets defined by upstream element on the
10786         compressed data buffer we are pushing downstream. Make them
10787         GST_BUFFER_OFFSET_NONE.
10788
10789 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
10790
10791         * gst/avi/README:
10792         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10793         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10794         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10795         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10796         (gst_avi_demux_calculate_durations_from_index),
10797         (gst_avi_demux_stream_header_push),
10798         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10799         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10800           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10801
10802 2007-04-03  Wim Taymans  <wim@fluendo.com>
10803
10804         * gst/smpte/barboxwipes.c:
10805         Fix error as spotted by Snaik <snaik32 at gmail dot com>
10806
10807 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10808
10809         * gst/wavparse/gstwavparse.c:
10810         Support audio/x-raw-float in wav files. This only works with
10811         plugins-base CVS, using an older version doesn't have any
10812         disadvantages though.
10813
10814 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10815
10816         * configure.ac:
10817         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10818         (gst_au_parse_parse_header), (gst_au_parse_chain):
10819         * gst/auparse/gstauparse.h:
10820         Revert last change as we don't want plugins-good to depend on
10821         plugins-base CVS now.
10822
10823 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10824
10825         * configure.ac:
10826         Require gst-plugins-base CVS for audioconvert with non-native
10827         float support and width/depth fix in libgstriff.
10828
10829         Patch by: René Stadler <mail at renestadler dot de>
10830
10831         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10832         (gst_au_parse_parse_header), (gst_au_parse_chain):
10833         * gst/auparse/gstauparse.h:
10834         Don't swap the floats ourself if they're not in native endianness.
10835         Instead let audioconvert handle this. Fixes #339838.
10836
10837 2007-03-29  Wim Taymans  <wim@fluendo.com>
10838
10839         * gst/rtp/gstasteriskh263.h:
10840         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10841         (gst_rtp_h263p_depay_change_state):
10842         * gst/rtp/gstrtph263pdepay.h:
10843         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10844         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10845         (gst_rtp_h264_depay_change_state):
10846         * gst/rtp/gstrtph264depay.h:
10847         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10848         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10849         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10850         Flush adapter on disconts.
10851
10852 2007-03-29  Wim Taymans  <wim@fluendo.com>
10853
10854         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10855         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10856         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10857         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10858         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10859         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10860         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10861         (gst_rtp_mp4v_depay_process):
10862         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10863         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10864         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10865         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10866         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10867         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10868         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10869         Use more efficient adapter and rtpbuffer methods when possible.
10870
10871 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10872
10873         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10874         (gst_wavenc_sink_setcaps):
10875         Correctly handle width!=depth input.
10876         * gst/wavparse/gstwavparse.c:
10877         Already export in the caps that width==8 uses unsigned samples and
10878         everything else uses signed samples.
10879
10880 2007-03-29  Wim Taymans  <wim@fluendo.com>
10881
10882         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10883
10884         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10885         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10886         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10887         (gst_dynudpsink_close):
10888         * gst/udp/gstdynudpsink.h:
10889         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10890         (gst_udpsrc_create), (gst_udpsrc_set_property),
10891         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10892         * gst/udp/gstudpsrc.h:
10893         Rework the socket allocation a bit based on the sockfd argument so that
10894         it becomes usable.
10895         Add a closefd property to instruct the udp elements to close the custom
10896         file descriptors when going to READY. Fixes #423304.
10897         API:GstUDPSrc::closefd property
10898         API:GstDynUDPSink::closefd property
10899
10900 2007-03-29  Wim Taymans  <wim@fluendo.com>
10901
10902         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10903
10904         * gst/rtp/Makefile.am:
10905         * gst/rtp/gstrtp.c: (plugin_init):
10906         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10907         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10908         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10909         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10910         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10911         (gst_rtp_h264_pay_plugin_init):
10912         * gst/rtp/gstrtph264pay.h:
10913         Added H264 payloader. Fixes #423782.
10914
10915         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10916         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10917         Small fixes.
10918
10919 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10920
10921         * gst/wavparse/gstwavparse.c:
10922         Actually support depths from 1 to 32, not only 8 to 32.
10923
10924 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10925
10926         * gst/wavparse/gstwavparse.c:
10927         Add support for wav files containing audio/x-raw-int with random
10928         depths between 1 and 32 bits.
10929
10930 2007-03-28  Wim Taymans  <wim@fluendo.com>
10931
10932         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
10933
10934         * gst/rtp/Makefile.am:
10935         * gst/rtp/gstrtp.c: (plugin_init):
10936         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10937         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10938         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10939         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10940         (gst_rtp_mp4a_depay_get_property),
10941         (gst_rtp_mp4a_depay_change_state),
10942         (gst_rtp_mp4a_depay_plugin_init):
10943         * gst/rtp/gstrtpmp4adepay.h:
10944         Added MP4A-LATM depayloader. Fixes #417792.
10945
10946         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10947         (gst_rtp_mp4v_depay_process):
10948         Fixup depayloader, setting codec_data, using more efficient adaptor and
10949         rtpbuffer handling.
10950
10951         * gst/rtsp/URLS:
10952         Add url to test above.
10953
10954 2007-03-25  Wim Taymans  <wim@fluendo.com>
10955
10956         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10957         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10958         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10959         (gst_rtspsrc_media_to_caps),
10960         (gst_rtspsrc_stream_configure_transport),
10961         (gst_rtspsrc_stream_configure_caps),
10962         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10963         * gst/rtsp/gstrtspsrc.h:
10964         Handle default clock-rates for static payload types, rearrange stuff so
10965         that the rtpmap field in the sdp can override the defaults.
10966         Parse RTP-Info field to get the seqnum and timebase fields that should
10967         go in the caps.
10968         Delay configuring caps after we got the RTP-Info from the PLAY reply from
10969         the server. 
10970
10971 2007-03-22  Wim Taymans  <wim@fluendo.com>
10972
10973         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10974
10975         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10976         Accept complex pipeline descriptions as an audio profile instead of just
10977         a single element. Fixes #420658.
10978
10979 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10980
10981         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10982           Rename registered type in preparation of GstTagDemux moving to
10983           -base at some point in the future.
10984
10985 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
10986
10987         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10988           Streaming mode fixes: don't unref buffer we don't own any longer;
10989           remove bogus adapter flush. Fixes #419338.
10990
10991 2007-03-17  David Schleef  <ds@schleef.org>
10992
10993         * REQUIREMENTS: Change the format to key/value, add a bunch of
10994           information, remove a bunch of requirements that are for
10995           other GStreamer packages.
10996
10997 2007-03-17  David Schleef  <ds@schleef.org>
10998
10999         * REQUIREMENTS: Fix a few things.  This file really needs a
11000         good once-over.
11001
11002 2007-03-15  Edward Hervey  <edward@fluendo.com>
11003
11004         * sys/Makefile.am:
11005         Don't forget to distribute the sys/osxaudio/ directory.
11006
11007 2007-03-15  Edward Hervey  <edward@fluendo.com>
11008
11009         * configure.ac:
11010         * sys/Makefile.am:
11011         * sys/osxaudio/Makefile.am:
11012         * sys/osxaudio/gstosxaudio.c:
11013         * sys/osxaudio/gstosxaudiosink.c:
11014         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
11015         (gst_osx_audio_sink_getcaps),
11016         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
11017         * sys/osxaudio/gstosxaudiosrc.c:
11018         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
11019         (gst_osx_audio_src_create_ringbuffer):
11020         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
11021         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
11022         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
11023         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
11024         * sys/osxaudio/gstosxringbuffer.h:
11025         Activate osxaudio in gst-plugins-good with proper build setup.
11026         Add inlined documentation.
11027         Fix debug statements
11028         Fix ringbuffer when pausing.
11029         Fixes #323471
11030
11031 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11032         * gst/rtp/gstrtppcmapay.c:
11033         * gst/rtp/gstrtppcmapay.h:
11034         * gst/rtp/gstrtppcmupay.c:
11035         * gst/rtp/gstrtppcmupay.h:
11036         Ported mulaw and alaw payloaders to use new base class
11037
11038 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11039
11040         * po/af.po:
11041         * po/az.po:
11042         * po/cs.po:
11043         * po/en_GB.po:
11044         * po/it.po:
11045         * po/nl.po:
11046         * po/or.po:
11047         * po/sq.po:
11048         * po/sr.po:
11049         * po/sv.po:
11050         * po/uk.po:
11051         * po/vi.po:
11052           Update translations.
11053
11054 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
11055
11056         * configure.ac:
11057           Fix string replace error (AG_AG_GST_* => AG_GST_*).
11058
11059 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11060
11061         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
11062           Fix handling of -1 values for start and stop values when seeking,
11063           and SEEK_CUR+SEEK_END here as well.
11064
11065 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
11066
11067         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
11068           Fix handling of -1 values for start and stop values when seeking, 
11069           and SEEK_CUR+SEEK_END.
11070
11071 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
11072
11073         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
11074           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
11075           the image format a variable-length NUL-terminated string; in
11076           versions before that the image format is a fixed-length string of
11077           3 characters (see #348644 for a sample tag).
11078           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
11079
11080 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
11081
11082         * win32/MANIFEST:
11083         Add new project files to MANIFEST.
11084         * win32/vs6/libgstaudiofx.dsp:
11085         * win32/vs6/libgstrtp.dsp:
11086         * win32/vs6/libgstrtsp.dsp:
11087         Update project files.
11088         
11089 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
11090
11091         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
11092         (gst_avi_demux_parse_index):
11093         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
11094         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
11095           Printf format fixes; also add some missing quotes in translated
11096           strings. Fixes #416728 and #416727.
11097
11098 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11099
11100         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
11101           Tim and I can't think of any reason the child audio sink needs to 
11102           be set back to NULL after successfully determining that it can 
11103           reach READY - it gets immediately set back to READY by the caller
11104           anyway, causing an unnecessary close/open of any audio devices
11105           involved.
11106
11107 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11108
11109         * po/LINGUAS:
11110         * po/ja.po:
11111           Add ja.po file from #377306.
11112
11113 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11114
11115         * sys/sunaudio/gstsunaudio.c: (plugin_init):
11116         * sys/sunaudio/gstsunaudiomixertrack.c:
11117         (gst_sunaudiomixer_track_new):
11118           Actually translate sunaudio mixer track labels instead of just
11119           marking the strings as translatable (#377306); clean up weird
11120           label string mapping code that serves no apparent purpose. Also
11121           set the 'untranslated-label' property when creating mixer tracks
11122           if the GstMixerTrack base class supports this.
11123
11124         * tests/check/Makefile.am:
11125         * tests/check/elements/.cvsignore:
11126         * tests/check/elements/sunaudio.c: (GST_START_TEST),
11127         (sunaudio_suite):
11128           Very minimalistic unit test for sunaudiomixer element (compiles, but not
11129           actually tested on a system where sunaudiomixer is available).
11130
11131 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11132
11133         * tests/check/Makefile.am:
11134         Re-enable the states test and see if it works on the buildbots.
11135
11136 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11137
11138         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
11139         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
11140         (gst_dvdec_change_state):
11141         * ext/dv/gstdvdec.h:
11142         Infer pixel-aspect-ratio from the video frame format if it isn't
11143         provided by the container, as happens when playing DV from AVI
11144         or Quicktime containers.
11145
11146         Patch by: Wim Taymans <wim@fluendo.com>
11147         Fixes #380944
11148
11149 2007-03-09  Wim Taymans  <wim@fluendo.com>
11150
11151         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
11152         When activated, remove the udpsrc timeout, we have dataflow and timeouts
11153         will later be handled by the jitterbuffer.
11154
11155 2007-03-09  Wim Taymans  <wim@fluendo.com>
11156
11157         * ext/taglib/gstid3v2mux.cc:
11158         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
11159         Fixes #414496.
11160         
11161         Patch by: Alex Lancaster <alexl at users sourceforge net>
11162
11163 2007-03-09  Wim Taymans  <wim@fluendo.com>
11164
11165         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11166         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
11167         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11168         (gst_avi_demux_chain):
11169         Fix stream position reporting after a seek. Fixes #416445.
11170
11171 2007-03-08  Wim Taymans  <wim@fluendo.com>
11172
11173         Patch by: René Stadler <mail at renestadler dot de>
11174
11175         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11176         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
11177         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
11178         Make avidemux accept optional header chunks in any order.
11179         Fixes #415446.
11180
11181 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
11182
11183         * tests/check/Makefile.am:
11184         Disable the states check until the remaining Valgrind errors
11185         are fixed or suppressed.
11186
11187 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11188
11189         * tests/check/elements/.cvsignore:
11190           Add audiodynamic check to .cvsignore
11191
11192 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11193
11194         reviewed by: Stefan Kost  <ensonic@users.sf.net>
11195
11196         * gst/audiofx/Makefile.am:
11197         * gst/audiofx/audiodynamic.c:
11198         (gst_audio_dynamic_characteristics_get_type),
11199         (gst_audio_dynamic_mode_get_type),
11200         (gst_audio_dynamic_set_process_function),
11201         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11202         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11203         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11204         (gst_audio_dynamic_transform_hard_knee_compressor_int),
11205         (gst_audio_dynamic_transform_hard_knee_compressor_float),
11206         (gst_audio_dynamic_transform_soft_knee_compressor_int),
11207         (gst_audio_dynamic_transform_soft_knee_compressor_float),
11208         (gst_audio_dynamic_transform_hard_knee_expander_int),
11209         (gst_audio_dynamic_transform_hard_knee_expander_float),
11210         (gst_audio_dynamic_transform_soft_knee_expander_int),
11211         (gst_audio_dynamic_transform_soft_knee_expander_float),
11212         (gst_audio_dynamic_transform_ip):
11213         * gst/audiofx/audiodynamic.h:
11214         * gst/audiofx/audiofx.c: (plugin_init):
11215         Add new audiodynamic element which can act as a compressor or
11216         expander. Supported are hard-knee and soft-knee operation modes with
11217         user-specified ratio and threshold.
11218         Attack and release parameters are not yet implemented but will follow.
11219         * docs/plugins/Makefile.am:
11220         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11221         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11222         * docs/plugins/gst-plugins-good-plugins.args:
11223         * docs/plugins/inspect/plugin-audiofx.xml:
11224         Integrate audiodynamic into the docs.
11225         * tests/check/Makefile.am:
11226         * tests/check/elements/audiodynamic.c: (setup_dynamic),
11227         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11228         Add unit test for audiodynamic.
11229
11230 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
11231
11232         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11233         Free handles that we allocated when exiting via the error paths.
11234
11235 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
11236
11237         * gst/level/gstlevel.c: (gst_level_class_init),
11238         (gst_level_set_caps), (gst_level_start), (gst_level_event),
11239         (gst_level_transform_ip):
11240         * gst/level/gstlevel.h:
11241           Resolve message timestamps against the playback segment.
11242
11243 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11244
11245         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11246         (gst_id3demux_sink_activate):
11247           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11248           caps passed to it (previously one code path assumed it took ownership
11249           while another one assumed it didn't, while in fact it sometimes did and
11250           sometimes didn't ...).
11251
11252         * configure.ac:
11253         * tests/files/Makefile.am:
11254         * tests/files/id3-407349-1.tag:
11255         * tests/files/id3-407349-2.tag:
11256           Add directory where data for unit tests can be stored.
11257
11258         * tests/Makefile.am:
11259         * tests/check/Makefile.am:
11260         * tests/check/elements/.cvsignore:
11261         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11262         (read_tags_from_file), (run_check_for_file),
11263         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11264           Add unit test for id3demux, and in particular for bug #407349. Only
11265           testing pull-mode for now; push mode doesn't work yet because the test
11266           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11267
11268 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11269
11270         * tests/check/Makefile.am:
11271           Add missing backslash at end of line.
11272
11273 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11274
11275         Trigger rebuild.
11276
11277 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11278
11279         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11280         * gst/id3demux/id3tags.h:
11281         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11282         (parse_obsolete_tdat_frame):
11283           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11284           the four-digit number will be interpreted as a year, whereas it is
11285           month and day in DDMM format. Instead, parse TDAT frames and fix up
11286           the date in the GST_TAG_DATE tag later if we also extracted a year.
11287           Fixes #407349.
11288
11289 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11290
11291         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11292         (gst_switch_commit_new_kid):
11293         Fix up the dispose logic so it doesn't leak, and fix setting of 
11294         the child state so that we don't set a child to our current state 
11295         just as we are changing it to something else.
11296
11297 2007-03-06  Wim Taymans  <wim@fluendo.com>
11298
11299         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11300         (gst_goom_chain):
11301         * gst/goom/gstgoom.h:
11302         Document, fix and improve goom adapter behaviour.
11303         Fixes #407006.
11304
11305 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11306
11307         * ext/esd/esdsink.c: (gst_esdsink_open):
11308         Unref static pad template after using it.
11309
11310 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11311
11312         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11313         (gst_switch_commit_new_kid):
11314         Fix up the reference counting of the child elements.
11315
11316 2007-03-05  Wim Taymans  <wim@fluendo.com>
11317
11318         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11319         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11320         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11321         Fix encoding-name case.
11322
11323 2007-03-05  Wim Taymans  <wim@fluendo.com>
11324
11325         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11326         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11327         (gst_rtp_speex_depay_process):
11328         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11329         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11330         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11331         (gst_rtp_speex_pay_change_state):
11332         * gst/rtp/gstrtpspeexpay.h:
11333         Fix speex (de)payloader. Fixes #358040.
11334
11335 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11336
11337         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11338         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11339         Install fakesink in NULL by fixing some broken logic. This obviates
11340         the need to manually set _IS_SINK.
11341         Add some comments and remove a little cruft while I'm at it.
11342
11343 2007-03-05  Wim Taymans  <wim@fluendo.com>
11344
11345         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11346         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11347
11348 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
11349
11350         * po/POTFILES.in:
11351           Update.
11352
11353 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11354
11355         * tests/check/Makefile.am:
11356         Gah! Also disable gconfvideosink from the tests, otherwise
11357         it will instantiate autovideosink, and dfbvideosink and
11358         leak on the buildbots.
11359
11360 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11361
11362         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11363         (gst_cdio_cdda_src_finalize):
11364         Make sure we always destroy our libcdio handle.
11365
11366 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11367
11368         * tests/check/Makefile.am:
11369         Disable autovideosink so the buildbots don't barf over memory
11370         leaked in the directfb sink.
11371
11372 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11373
11374         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11375         Chain up in dispose
11376
11377 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11378
11379         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11380         (gst_multipart_find_pad_by_mime):
11381         Use gst_pad_new_from_static_template instead of
11382         static_pad_template_get+pad_new.
11383
11384 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11385
11386         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11387         Catch the case where no clock has been set.
11388
11389 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11390
11391         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11392         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11393         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11394         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11395         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11396         (gst_gconf_audio_src_finalize), (do_toggle_element):
11397         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11398         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11399         (do_toggle_element):
11400         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11401         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11402         (gst_gconf_video_src_finalize), (do_toggle_element):
11403         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11404         (gst_switch_sink_reset), (gst_switch_sink_set_child):
11405         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11406         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11407         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11408         (gst_shout2send_init), (gst_shout2send_finalize):
11409         * gst/debug/testplugin.c: (gst_test_class_init),
11410         (gst_test_finalize):
11411         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11412         (gst_flxdec_dispose):
11413         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11414         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11415         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11416         (gst_rtspsrc_finalize):
11417         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11418         * gst/rtsp/rtspextwms.h:
11419         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11420         (gst_smpte_finalize):
11421         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11422         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11423         (gst_udpsink_finalize):
11424         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11425         (gst_wavparse_sink_activate):
11426         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11427         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11428         (gst_oss_src_finalize):
11429         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11430         * sys/v4l2/gstv4l2object.h:
11431         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11432         (gst_v4l2src_finalize):
11433         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11434
11435         Fix a bunch of leaks shown by the newly-added states test.
11436
11437 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11438
11439         * ext/dv/gstdvdec.c: (gst_dvdec_init):
11440         Use gst_pad_new_from_static_template instead of 
11441         static_pad_template_get+pad_new.
11442
11443 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
11444
11445         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11446
11447         * ext/libcaca/Makefile.am:
11448         * gst/debug/Makefile.am:
11449           Don't mix tabs and spaces (#414168).
11450
11451 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11452
11453         * tests/check/generic/.cvsignore:
11454           Ignore files to please buildbot.
11455
11456 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11457
11458         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11459         (gst_wavparse_stream_data):
11460           Unbreak my previous commit (swapped nominator & denominator). Tim,
11461           thanks for spotting.
11462
11463 2007-03-02  Wim Taymans  <wim@fluendo.com>
11464
11465         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11466         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11467         (gst_cdio_cdda_src_finalize):
11468         Small code cleanups.
11469         Don't use pad_alloc as the base class cannot deal with the error codes.
11470
11471 2007-03-02  Wim Taymans  <wim@fluendo.com>
11472
11473         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11474         (gst_udpsrc_create):
11475         Fix doc.
11476
11477 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11478
11479         Patch by: René Stadler <mail@renestadler.de>
11480
11481         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11482         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11483         (gst_wavparse_stream_data):
11484           Handle rounding better to not drop last sample frame. Fixes #356692
11485
11486 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
11487
11488         * tests/check/Makefile.am:
11489         Disable cacasink from the states check too - it also calls exit(1)
11490         on us when it can't find a terminal to talk to.
11491
11492 2007-03-02  Wim Taymans  <wim@fluendo.com>
11493
11494         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11495
11496         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11497         (gst_udpsrc_create), (gst_udpsrc_set_property),
11498         (gst_udpsrc_get_property):
11499         * gst/udp/gstudpsrc.h:
11500         Add support to strip proprietary headers. Fixes #350296.
11501
11502 2007-03-02  Wim Taymans  <wim@fluendo.com>
11503
11504         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11505         Fix compilation.
11506
11507 2007-03-02  Wim Taymans  <wim@fluendo.com>
11508
11509         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11510
11511         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11512         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11513         (gst_rtp_mp2t_depay_set_property),
11514         (gst_rtp_mp2t_depay_get_property):
11515         * gst/rtp/gstrtpmp2tdepay.h:
11516         Add support to strip off proprietary headers. Fixes #350278.
11517
11518 2007-03-02  Wim Taymans  <wim@fluendo.com>
11519
11520         * ext/hal/hal.c:
11521         Fix compilation.
11522
11523 2007-03-02  Wim Taymans  <wim@fluendo.com>
11524
11525         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11526         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11527         (gst_sunaudiosrc_open):
11528         * sys/sunaudio/gstsunaudiosrc.h:
11529         Remove device-name from GstSunAudioSrc. Fixes #412597.
11530
11531 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11532
11533         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11534         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11535         Having NULL as UDI previously selected the default sink/src. Change
11536         this back but mention it in the debug output.
11537         * ext/hal/hal.c: (gst_hal_get_alsa_element),
11538         (gst_hal_get_oss_element), (gst_hal_get_string),
11539         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11540         (gst_hal_get_audio_src):
11541         * ext/hal/hal.h:
11542         Refactor a bit, check all error conditions, greatly improve debugging
11543         and fix some possible memory leaks. Also implement OSS support
11544         and allow specifying an UDI that points to a real device. For this the
11545         child device which supports ALSA (preferred) or OSS is used.
11546         As a side effect this makes it impossible now to get a alsasink in
11547         halaudiosrc and a alsasrc in halaudiosink.
11548
11549 2007-03-01  Wim Taymans  <wim@fluendo.com>
11550
11551         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11552         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11553         Errors from the udp sources are not fatal unless all of them are in
11554         error.
11555
11556 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11557
11558         * tests/check/Makefile.am:
11559         Disable aasink in the states test. I suspect this is the element that
11560         is calling exit(1) when it can't proceed.
11561
11562 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11563
11564         * tests/check/Makefile.am:
11565         Draw plugins in from the build tree sys/ dir, rather than picking
11566         up the already installed versions.
11567
11568 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11569
11570         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11571         Error out correctly when getting xcontext fails.
11572
11573 2007-03-01  Wim Taymans  <wim@fluendo.com>
11574
11575         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11576         Make state change to PAUSED NO_PREROLL because that's what it will be in
11577         the future and rtspsrc relies on it.
11578
11579         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11580         (gst_rtspsrc_change_state):
11581         Don't error out when we don't get an error from the state change
11582         function.
11583
11584 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11585
11586         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11587         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11588           Check if the device UDI is set before trying to query HAL
11589           about it and give a useful error message if it wasn't set.
11590         * ext/hal/hal.c: (gst_hal_get_string):
11591           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11592           gives an assertion failure in D-Bus when running with
11593           DBUS_FATAL_WARNINGS=1.
11594
11595 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11596
11597         * configure.ac:
11598           Convert to new AG_GST style.
11599
11600 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11601
11602         * tests/check/Makefile.am:
11603         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11604           add test for states
11605
11606 2007-02-28  Wim Taymans  <wim@fluendo.com>
11607
11608         * tests/check/elements/.cvsignore:
11609         Add new videofilter check to .cvsignore.
11610
11611 2007-02-28  Wim Taymans  <wim@fluendo.com>
11612
11613         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11614         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11615         (gst_avi_demux_loop), (gst_avi_demux_chain):
11616         Fix combined flow return. Fixes #412608.
11617
11618 2007-02-28  Wim Taymans  <wim@fluendo.com>
11619
11620         * gst/videofilter/Makefile.am:
11621         Dist header..
11622
11623 2007-02-28  Wim Taymans  <wim@fluendo.com>
11624
11625         * gst/videofilter/gstgamma.h:
11626         Add header too.
11627
11628 2007-02-28  Wim Taymans  <wim@fluendo.com>
11629
11630         Patch by: Mark Nauwelaerts <manauw at skynet be>
11631
11632         * gst/videofilter/Makefile.am:
11633         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11634         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11635         (gst_gamma_get_property), (gst_gamma_calculate_tables),
11636         (oil_tablelookup_u8), (gst_gamma_set_caps),
11637         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11638         Port gamma filter to 0.10. Fixes #412704.
11639
11640         * tests/check/Makefile.am:
11641         * tests/check/elements/videofilter.c: (setup_filter),
11642         (cleanup_filter), (check_filter), (GST_START_TEST),
11643         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11644         Add unit tests for videofilters.
11645
11646 2007-02-28  Wim Taymans  <wim@fluendo.com>
11647
11648         * gst/rtsp/URLS:
11649         Add another interesting test url.
11650
11651         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11652         Don't allow getting header fields from data packets.
11653
11654 2007-02-28  Michael Smith  <msmith@fluendo.com>
11655
11656         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11657         (gst_shout2send_init), (gst_shout2send_start),
11658         (gst_shout2send_set_property), (gst_shout2send_get_property):
11659         * ext/shout2/gstshout2.h:
11660           Add a property for username.
11661
11662 2007-02-27  Christian Schallerr <christian@fluendo.com>
11663
11664         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11665
11666 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11667
11668         * gst/rtsp/Makefile.am:
11669         Fix make check too.
11670
11671 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11672
11673         * gst/rtsp/base64.c: (util_base64_encode):
11674         * gst/rtsp/base64.h:
11675         Commit missing files for base64 encoding.
11676
11677 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11678
11679         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11680
11681         * configure.ac:
11682         * ext/annodex/Makefile.am:
11683         * ext/jpeg/Makefile.am:
11684         * ext/speex/Makefile.am:
11685         * gst/alpha/Makefile.am:
11686         * gst/cutter/Makefile.am:
11687         * gst/debug/Makefile.am:
11688         * gst/effectv/Makefile.am:
11689         * gst/goom/Makefile.am:
11690         * gst/level/Makefile.am:
11691         * gst/smpte/Makefile.am:
11692         * gst/videofilter/Makefile.am:
11693           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11694
11695 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11696
11697         * gst/rtsp/Makefile.am:
11698         * gst/rtsp/rtspconnection.c: (append_auth_header),
11699         (rtsp_connection_send), (rtsp_connection_set_auth):
11700         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11701         from icecast to replace it. Relicensed from GPL courtesy of Mike
11702         Smith.
11703
11704 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11705
11706         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11707         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11708         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11709         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11710         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11711         (gst_rtspsrc_uri_set_uri):
11712         * gst/rtsp/gstrtspsrc.h:
11713         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11714         (append_auth_header), (rtsp_connection_send),
11715         (rtsp_connection_free), (rtsp_connection_set_auth):
11716         * gst/rtsp/rtspconnection.h:
11717         * gst/rtsp/rtspdefs.h:
11718         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11719         * gst/rtsp/rtspurl.h:
11720
11721         Implement simple Basic Authentication support so that urls like
11722         rtsp://user:pass@hostname/rtspstream work on hosts that require
11723         authentication.
11724
11725 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
11726
11727         * sys/v4l2/gstv4l2object.c:
11728         * sys/v4l2/gstv4l2tuner.c:
11729         * sys/v4l2/v4l2_calls.c:
11730         Fix segfault when oppening a radio device.
11731         
11732 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
11733
11734         * gst/level/gstlevel.c: (gst_level_set_caps),
11735         (gst_level_transform_ip):
11736         * sys/v4l2/README:
11737         * tests/check/elements/level.c: (GST_START_TEST):
11738           Fix level for multi-channel case.
11739
11740 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
11741
11742         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11743         (gst_level_transform_ip):
11744         * gst/level/gstlevel.h:
11745           Use function pointer for process function and add process functions
11746           for float audio.
11747
11748 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
11749
11750         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11751         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11752         (gst_v4l2src_capture_init):
11753           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11754           fixes #407369
11755
11756 2007-02-18  Wim Taymans  <wim@fluendo.com>
11757
11758         * gst/rtp/Makefile.am:
11759         * gst/rtp/gstrtp.c: (plugin_init):
11760         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11761         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11762         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11763         (gst_rtp_mp2t_pay_plugin_init):
11764         * gst/rtp/gstrtpmp2tpay.h:
11765         Added simple mpeg transport stream payloader.
11766
11767 2007-02-16  Wim Taymans  <wim@fluendo.com>
11768
11769         * gst/rtsp/URLS:
11770         Add example H264 rtsp url.
11771
11772         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11773         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11774         Don't convert values to lowercase or we might mess up base64 encoded
11775         properties.
11776
11777 2007-02-16  Wim Taymans  <wim@fluendo.com>
11778
11779         * gst/rtp/README:
11780         Fix case of string params.
11781
11782         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11783         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11784         Fix depayloader, support more packet types.
11785         Add sync codes to make sure the packetizer can do its job.
11786
11787         * gst/rtp/gstrtpmp4gdepay.c:
11788         * gst/rtp/gstrtpmp4gpay.c:
11789         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11790         Fix caps case again.
11791
11792 2007-02-15  Wim Taymans  <wim@fluendo.com>
11793
11794         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11795         Set right caps on output buffers.
11796
11797 2007-02-14  Wim Taymans  <wim@fluendo.com>
11798
11799         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11800         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
11801         Clear stack allocated SDPMedia struct before calling _init() on it.
11802         Clarify this in the docs as well.
11803
11804 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
11805
11806         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11807         (do_change_child):
11808         Don't reset the profile when going switching states, as it makes
11809         the element non-reusable.
11810
11811 2007-02-14  Wim Taymans  <wim@fluendo.com>
11812
11813         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11814         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11815         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11816         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11817         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11818         (sdp_parse_line):
11819         * gst/rtsp/sdpmessage.h:
11820         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11821         Fix memory management of SDP messages. Fixes #407793.
11822
11823 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
11824
11825         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11826
11827         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11828         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11829
11830 2007-02-14  Wim Taymans  <wim@fluendo.com>
11831
11832         Patch by: jp.liu <jp_liu at astrocom dot cn>
11833
11834         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11835         Fix parsing of password field in url. Fixes #407797.
11836
11837 2007-02-14  Wim Taymans  <wim@fluendo.com>
11838
11839         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11840         (gst_wavparse_reset), (gst_wavparse_init),
11841         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11842         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11843         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11844         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11845         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11846         (gst_wavparse_loop), (gst_wavparse_chain),
11847         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11848         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11849         (plugin_init):
11850         * gst/wavparse/gstwavparse.h:
11851         Update docs.
11852         Use boilerplate.
11853         Various code cleanups.
11854         When the bitrate is not known (bps == 0 or compressed formats) let
11855         downstream element guestimate the duration and position and don't
11856         generate timestamps or durations. Fixes #405213.
11857         Fix EOS and ERROR conditions in chain mode, we just need to forward the
11858         error flowreturn upstream.
11859
11860 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11861
11862         * ext/gconf/Makefile.am:
11863         * ext/gconf/gconf.c: (gst_gconf_get_string),
11864         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11865         (gst_gconf_render_bin_with_default):
11866         * ext/gconf/gconf.h:
11867         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11868         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11869         (gst_gconf_audio_sink_dispose), (do_change_child),
11870         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11871         (cb_change_child), (gst_gconf_audio_sink_change_state):
11872         * ext/gconf/gstgconfaudiosink.h:
11873         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11874         (gst_switch_sink_class_init), (gst_switch_sink_reset),
11875         (gst_switch_sink_init), (gst_switch_sink_dispose),
11876         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11877         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11878         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11879         * ext/gconf/gstswitchsink.h:
11880         * gst/autodetect/gstautoaudiosink.c:
11881         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11882         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11883         (gst_auto_audio_sink_detect):
11884         * gst/autodetect/gstautovideosink.c:
11885         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11886         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11887         (gst_auto_video_sink_detect):
11888         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11889         and a child that implements the GConf key monitoring. The end goal of
11890         this is an audio sink that can be changed on the fly, but at the 
11891         moment it still only changes on the next READY transition.
11892
11893 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11894
11895         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11896         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11897         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11898         (gst_avi_demux_calculate_durations_from_index),
11899         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11900         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11901         (gst_avi_demux_loop):
11902           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11903
11904 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11905
11906         * configure.ac:
11907         * docs/plugins/Makefile.am:
11908           Add crossreferences to glib/gobject/gstream docs.
11909
11910 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11911
11912         * gst/monoscope/Makefile.am:
11913         * gst/monoscope/gstmonoscope.c:
11914           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11915           (but no LIBS, since we only use defines from the headers).
11916
11917 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11918
11919         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
11920
11921         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11922         (gst_wavparse_stream_data):
11923           Fix massive memory leak when operating in streaming mode due to
11924           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11925           Fixes #407057.
11926
11927 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11928
11929         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11930         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11931         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11932         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11933         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11934         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11935         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11936         (gst_avi_demux_calculate_durations_from_index),
11937         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11938         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11939         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11940         * gst/avi/gstavidemux.h:
11941           Save some memory (8%) by repacking the index entry structure (more to
11942           come). Add more FIXMEs to questionable parts.
11943
11944 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11945
11946         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11947         (gst_v4l2src_get_caps):
11948         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11949         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11950         (gst_v4l2src_capture_init):
11951           More FIXME comments and messaging changes.
11952
11953 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11954
11955         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11956         (gst_goom_change_state):
11957         * gst/goom/gstgoom.h:
11958           Improved docs and use GST_DEBUG_FUNCPTR.
11959
11960         * gst/level/gstlevel.c: (gst_level_class_init):
11961           Use GST_DEBUG_FUNCPTR.
11962
11963         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11964         (gst_monoscope_chain), (gst_monoscope_change_state):
11965           Improved docs source cleanups.
11966
11967 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11968
11969         * gst/debug/Makefile.am:
11970         * gst/debug/gstdebug.c: (plugin_init):
11971         * gst/debug/gstpushfilesrc.c:
11972         * gst/debug/gstpushfilesrc.h:
11973           Add code for a pushfilesrc element that implements a pushfile:// URI
11974           handler, to make debugging push-mode operation of demuxer/decoders
11975           that support both easier in connection with seek/playbin/etc.
11976           The element isn't registered at the moment.
11977
11978 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
11979
11980         * gst/avi/gstavimux.c:
11981           Comment a #if 0 in caps template definition as VS6 seems to 
11982         do not support it.
11983         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11984           Use gst_guint64_to_gdouble for conversion.
11985         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11986           Move variables declaration before the first instruction.
11987         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11988           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11989           And don't include netdb.h for G_OS_WIN32
11990         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11991           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
11992           by VS6 then use an other way to initialize SDPMedia structure.
11993         * gst/udp/gstdynudpsink.h:
11994         * gst/udp/gstdynudpnetutils.h:
11995           Do not include <sys/time.h> for G_OS_WIN32
11996         * gst/udp/gstudpsrc.c:
11997           Define socklen_t as int for G_OS_WIN32
11998         * win/common/config.h.in:
11999           Undef HAVE_NETINET_IN_H
12000         * win32/vs6/gst_plugins_good.dsw:
12001         * win32/vs6/libgstrtp.dsp:
12002         * win32/vs6/libgstrtsp.dsp:
12003         * win32/vs6/libgstautogen.dsp:
12004         * win32/vs6/libgstaudiofx.dsp:
12005         * win32/vs6/libgstudp.dsp:
12006           Add and update project files.
12007         * win32/common/gstudp-enumtypes.c:
12008         * win32/common/gstudp-enumtypes.h:
12009           Add a copy of udp enumtypes to win32/common as in core 
12010           and base.
12011         
12012 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
12013
12014         * configure.ac:
12015           Activate monoscope when building with --enable-experimental. Fix
12016           --enable-external configure switch description.
12017
12018         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
12019         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
12020           Help gst-indent.
12021
12022 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
12023
12024         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
12025           Explicitly cast result of pointer arithmetic to integer in order to
12026           avoid compiler warnings on some 64-bit systems. Should fix #406018.
12027
12028 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
12029
12030         * gst/debug/progressreport.c:
12031           Some more docs.
12032
12033 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12034
12035         * docs/plugins/inspect/plugin-rtp.xml:
12036           Update for new elements.
12037
12038         * gst/debug/progressreport.h:
12039           Commit newly-created header file as well.
12040
12041 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12042
12043         * docs/plugins/Makefile.am:
12044         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12045         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12046         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12047         * gst/debug/Makefile.am:
12048         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
12049         (gst_progress_report_do_query), (gst_progress_report_report):
12050           Make progressreport element post messages with the current progress
12051           on the bus. Also add some basic docs for it.
12052
12053 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
12054
12055         * ext/hal/hal.c: (gst_hal_get_string):
12056         * ext/hal/hal.h:
12057           Some small cleanups; deal with errors when parsing the HAL ALSA
12058           capabilities a bit better.
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           Let's try this again and use the right cast this time.
12064
12065 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12066
12067         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
12068           Add cast to avoid compiler warnings with older GLib versions
12069           where the nick/name members in GEnumValue are not declared as
12070           constant strings.
12071
12072 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12073
12074         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
12075         (gst_gconf_render_bin_from_key),
12076         (gst_gconf_get_default_audio_sink):
12077         * ext/gconf/gconf.h:
12078         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
12079         (do_toggle_element), (gst_gconf_audio_sink_set_property),
12080         (gst_gconf_audio_sink_get_property):
12081           In gconfaudiosink, get the right key as the old key in do_toggle
12082           (ie. one dependent on the profile selected). Log some more stuff so
12083           we can see what's actually going on.
12084
12085 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
12086
12087         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
12088         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
12089         (gst_audio_amplify_set_process_function),
12090         (gst_audio_amplify_setup):
12091         * gst/audiofx/audioamplify.h:
12092         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12093         (gst_audio_invert_class_init), (gst_audio_invert_setup):
12094         * gst/audiofx/audioinvert.h:
12095         Some small cleanups and port both elements to the new GstAudioFilter
12096         base class to save a few lines of common code.
12097         * gst/audiofx/Makefile.am:
12098         Link against libgstaudio for the above changes
12099
12100 2007-01-29  Wim Taymans  <wim@fluendo.com>
12101
12102         * tests/check/elements/.cvsignore:
12103         Some more ignores.
12104
12105 2007-01-26  Wim Taymans  <wim@fluendo.com>
12106
12107         Patch by: charles <charlesg3 at gmail dot com>
12108
12109         * ext/shout2/gstshout2.c: (gst_shout2send_init),
12110         (set_shout_metadata), (gst_shout2send_event):
12111         * ext/shout2/gstshout2.h:
12112         Properly handle tags in shout2send. Fixes #399825.
12113
12114 2007-01-25  Wim Taymans  <wim@fluendo.com>
12115
12116         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
12117         (gst_rtspsrc_activate_streams):
12118         Convert SDP fields to upper/lowercase following the rules in the SDP to
12119         caps document. 
12120
12121 2007-01-25  Wim Taymans  <wim@fluendo.com>
12122
12123         * gst/rtp/README:
12124         * gst/rtp/gstrtpilbcdepay.c:
12125         * gst/rtp/gstrtpilbcpay.c:
12126         * gst/rtp/gstrtpmp4gdepay.c:
12127         * gst/rtp/gstrtpmp4gpay.c:
12128         * gst/rtp/gstrtpspeexdepay.c:
12129         * gst/rtp/gstrtpspeexpay.c:
12130         * gst/rtp/gstrtpsv3vdepay.c:
12131         * gst/rtp/gstrtptheoradepay.c:
12132         * gst/rtp/gstrtptheorapay.c:
12133         * gst/rtp/gstrtpvorbisdepay.c:
12134         * gst/rtp/gstrtpvorbispay.c:
12135         Fix case of encoding-name and key/value pairs to match the document.
12136         This is to make interoperation with SDP case-insensitive as required by
12137         the relevant RFCs.
12138
12139 2007-01-25  Wim Taymans  <wim@fluendo.com>
12140
12141         * configure.ac:
12142         Bump required -core/-base to CVS
12143
12144 2007-01-25  Wim Taymans  <wim@fluendo.com>
12145
12146         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
12147         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
12148         * gst/rtp/gstrtpL16pay.h:
12149         Fill up to MTU using adapter.
12150         Timestamp rtp packets.
12151
12152 2007-01-25  Edward Hervey  <edward@fluendo.com>
12153
12154         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12155         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
12156         Use G_GSIZE_FORMAT in print statements for portability.
12157         Fixes build on macosx.
12158
12159 2007-01-24  Wim Taymans  <wim@fluendo.com>
12160
12161         * gst/rtp/Makefile.am:
12162         * gst/rtp/gstrtp.c: (plugin_init):
12163         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
12164         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
12165         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
12166         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
12167         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
12168         (gst_rtp_L16_depay_plugin_init):
12169         * gst/rtp/gstrtpL16depay.h:
12170         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
12171         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
12172         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
12173         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
12174         (gst_rtp_L16_pay_plugin_init):
12175         * gst/rtp/gstrtpL16pay.h:
12176         Port and enable raw audio payloader/depayloader. Needs a bit more work
12177         on the payloader side.
12178
12179 2007-01-24  Wim Taymans  <wim@fluendo.com>
12180
12181         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
12182         (gst_rtspsrc_stream_configure_transport),
12183         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12184         * gst/rtsp/gstrtspsrc.h:
12185         Only unblock the udp pads when we linked and activated them all.
12186         Fixes #395688.
12187
12188 2007-01-24  Wim Taymans  <wim@fluendo.com>
12189
12190         * gst/rtp/Makefile.am:
12191         * gst/rtp/gstrtp.c: (plugin_init):
12192         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12193         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12194         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12195         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12196         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12197         * gst/rtp/gstrtpac3depay.h:
12198         Added simple AC3 depayloader (RFC 4184).
12199
12200         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12201         Fix a leak.
12202
12203 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
12204
12205         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12206
12207         * gst/audiofx/Makefile.am:
12208         * gst/audiofx/audioamplify.c:
12209         (gst_audio_amplify_clipping_method_get_type),
12210         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12211         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12212         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12213         (gst_audio_amplify_set_caps),
12214         (gst_audio_amplify_transform_int_clip),
12215         (gst_audio_amplify_transform_int_wrap_negative),
12216         (gst_audio_amplify_transform_int_wrap_positive),
12217         (gst_audio_amplify_transform_float_clip),
12218         (gst_audio_amplify_transform_float_wrap_negative),
12219         (gst_audio_amplify_transform_float_wrap_positive),
12220         (gst_audio_amplify_transform_ip):
12221         * gst/audiofx/audioamplify.h:
12222         * gst/audiofx/audiofx.c: (plugin_init):
12223         Add new element "audioamplify". This allows scaling of raw audio
12224         samples, similar to the "volume" element, but provides different modes
12225         for clipping and allows unlimited amplification. It's mainly targeted
12226         for creative sound design and not as a replacement of the "volume"
12227         element. Fixes #397162
12228         * docs/plugins/Makefile.am:
12229         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12230         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12231         * docs/plugins/gst-plugins-good-plugins.args:
12232         * docs/plugins/inspect/plugin-audiofx.xml:
12233         Add docs for audioamplify and integrate them into the build system
12234         * tests/check/Makefile.am:
12235         * tests/check/elements/audioamplify.c: (setup_amplify),
12236         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12237         Add fairly extensive unit test suite for audioamplify
12238
12239 2007-01-24  Wim Taymans  <wim@fluendo.com>
12240
12241         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12242         Unblock pads after adding the pads to the element so that autopluggers
12243         get a change to link something. Possibly fixes #395688.
12244
12245 2007-01-24  Wim Taymans  <wim@fluendo.com>
12246
12247         * gst/rtp/gstrtpamrdepay.c:
12248         * gst/rtp/gstrtpgsmdepay.c:
12249         * gst/rtp/gstrtph263pdepay.c:
12250         * gst/rtp/gstrtph263ppay.c:
12251         * gst/rtp/gstrtph264depay.c:
12252         * gst/rtp/gstrtpilbcdepay.c:
12253         * gst/rtp/gstrtpmp2tdepay.c:
12254         * gst/rtp/gstrtpmp4gdepay.c:
12255         * gst/rtp/gstrtpmp4gpay.c:
12256         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12257         * gst/rtp/gstrtpmp4vpay.c:
12258         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12259         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12260         (gst_rtp_mpa_depay_process):
12261         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12262         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12263         * gst/rtp/gstrtppcmadepay.c:
12264         * gst/rtp/gstrtppcmudepay.c:
12265         * gst/rtp/gstrtpspeexdepay.c:
12266         * gst/rtp/gstrtpspeexpay.c:
12267         * gst/rtp/gstrtpsv3vdepay.c:
12268         * gst/rtp/gstrtptheoradepay.c:
12269         * gst/rtp/gstrtptheorapay.c:
12270         * gst/rtp/gstrtpvorbisdepay.c:
12271         * gst/rtp/gstrtpvorbispay.c:
12272         Fix caps with payload numbers.
12273         Add some fixed payload numbers to caps when possible.
12274
12275 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
12276
12277         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12278
12279         * gst/audiofx/Makefile.am:
12280         * gst/audiofx/audiofx.c: (plugin_init):
12281         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12282         (gst_audio_invert_class_init), (gst_audio_invert_init),
12283         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12284         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12285         (gst_audio_invert_transform_float),
12286         (gst_audio_invert_transform_ip):
12287         * gst/audiofx/audioinvert.h:
12288         Add new audiofx element "audioinvert". This element swaps the upper
12289         and lower half of samples and can be used for example for a
12290         wide-stereo effect. Fixes #396057
12291         * docs/plugins/Makefile.am:
12292         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12293         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12294         * docs/plugins/gst-plugins-good-plugins.args:
12295         * docs/plugins/inspect/plugin-audiofx.xml:
12296         Add docs for the audioinvert element and add them to the build system.
12297         * tests/check/Makefile.am:
12298         * tests/check/elements/audioinvert.c: (setup_invert),
12299         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12300         Add unit test suite for the audioinvert element.
12301
12302 2007-01-23  Wim Taymans  <wim@fluendo.com>
12303
12304         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12305         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12306         Parse config params as string and int.
12307         Parse and use AU header length
12308
12309 2007-01-23  Wim Taymans  <wim@fluendo.com>
12310
12311         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12312         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12313         * gst/smpte/gstmask.c: (_gst_mask_register):
12314         * gst/smpte/gstmask.h:
12315         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12316         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12317         (gst_smpte_paint_triangle_clock):
12318         constify some static structs.
12319         Don't update the mask if nothing changed to the params.
12320         Make sure we never draw outside of the picture. Fixes #398325.
12321
12322 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
12323
12324         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12325           Error out properly when pull_range fails while we're reading the
12326           headers, instead of just pausing the task silently. Fixes #399338.
12327
12328 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
12329
12330         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12331           Some more sanity checks to make sure the input formats match and the
12332           input pads are actually negotiated, in case someone tries to feed
12333           buffers from fakesrc or filesrc. Fixes #398299.
12334           Also const-ify an array, just because we can.
12335
12336 2007-01-19  Edward Hervey  <edward@fluendo.com>
12337
12338         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12339         Ignore previous commit, that was only valid for widths and heights
12340         that are multiples of 4.
12341         Copy over size/stride macros from jpegdec. This allows the element
12342         to work with any width,height...
12343         ... but puts in evidence that the actual transformations only work
12344         with width/height that are multiples of 4.
12345
12346 2007-01-19  Edward Hervey  <edward@fluendo.com>
12347
12348         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12349         Allocate buffers of the right size.
12350         The proper size of a I420 buffer in bytes is:
12351         
12352             width * height * 3
12353             ------------------
12354                     2
12355
12356 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12357
12358         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12359           Proxy getcaps on sink pads too, so that we either end up with the
12360           same dimensions on all pads or error out if that's not possible
12361           (seems to work even!). Fixes #398086, I think.
12362
12363 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12364
12365         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12366         * docs/plugins/gst-plugins-good-plugins.args:
12367         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12368           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12369           fix integer properties with -1 as minimum value.
12370
12371         * docs/plugins/inspect/plugin-1394.xml:
12372         * docs/plugins/inspect/plugin-aasink.xml:
12373         * docs/plugins/inspect/plugin-alaw.xml:
12374         * docs/plugins/inspect/plugin-alpha.xml:
12375         * docs/plugins/inspect/plugin-alphacolor.xml:
12376         * docs/plugins/inspect/plugin-annodex.xml:
12377         * docs/plugins/inspect/plugin-apetag.xml:
12378         * docs/plugins/inspect/plugin-audiofx.xml:
12379         * docs/plugins/inspect/plugin-auparse.xml:
12380         * docs/plugins/inspect/plugin-autodetect.xml:
12381         * docs/plugins/inspect/plugin-avi.xml:
12382         * docs/plugins/inspect/plugin-cacasink.xml:
12383         * docs/plugins/inspect/plugin-cairo.xml:
12384         * docs/plugins/inspect/plugin-cdio.xml:
12385         * docs/plugins/inspect/plugin-cutter.xml:
12386         * docs/plugins/inspect/plugin-debug.xml:
12387         * docs/plugins/inspect/plugin-dv.xml:
12388         * docs/plugins/inspect/plugin-efence.xml:
12389         * docs/plugins/inspect/plugin-effectv.xml:
12390         * docs/plugins/inspect/plugin-esdsink.xml:
12391         * docs/plugins/inspect/plugin-flac.xml:
12392         * docs/plugins/inspect/plugin-flxdec.xml:
12393         * docs/plugins/inspect/plugin-gconfelements.xml:
12394         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12395         * docs/plugins/inspect/plugin-goom.xml:
12396         * docs/plugins/inspect/plugin-halelements.xml:
12397         * docs/plugins/inspect/plugin-icydemux.xml:
12398         * docs/plugins/inspect/plugin-id3demux.xml:
12399         * docs/plugins/inspect/plugin-jpeg.xml:
12400         * docs/plugins/inspect/plugin-level.xml:
12401         * docs/plugins/inspect/plugin-matroska.xml:
12402         * docs/plugins/inspect/plugin-mulaw.xml:
12403         * docs/plugins/inspect/plugin-multipart.xml:
12404         * docs/plugins/inspect/plugin-navigationtest.xml:
12405         * docs/plugins/inspect/plugin-ossaudio.xml:
12406         * docs/plugins/inspect/plugin-png.xml:
12407         * docs/plugins/inspect/plugin-rtp.xml:
12408         * docs/plugins/inspect/plugin-rtsp.xml:
12409         * docs/plugins/inspect/plugin-shout2send.xml:
12410         * docs/plugins/inspect/plugin-smpte.xml:
12411         * docs/plugins/inspect/plugin-speex.xml:
12412         * docs/plugins/inspect/plugin-taglib.xml:
12413         * docs/plugins/inspect/plugin-udp.xml:
12414         * docs/plugins/inspect/plugin-videobalance.xml:
12415         * docs/plugins/inspect/plugin-videobox.xml:
12416         * docs/plugins/inspect/plugin-videoflip.xml:
12417         * docs/plugins/inspect/plugin-videomixer.xml:
12418         * docs/plugins/inspect/plugin-wavenc.xml:
12419         * docs/plugins/inspect/plugin-wavparse.xml:
12420         * docs/plugins/inspect/plugin-ximagesrc.xml:
12421           Update to CVS.
12422
12423 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
12424
12425         Patch by: Sebastian Dröge <slomo circular-chaos org>
12426
12427         * gst/audiofx/audiopanorama.c:
12428           Fix doc section name (Fixes #397946)
12429
12430 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
12431
12432         * sys/v4l2/gstv4l2object.c:
12433         (gst_v4l2_object_install_properties_helper),
12434         (gst_v4l2_object_set_property_helper),
12435         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12436         * sys/v4l2/gstv4l2object.h:
12437         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12438         (gst_v4l2src_init), (gst_v4l2src_set_property),
12439         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12440         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12441         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12442         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12443         (gst_v4l2src_capture_deinit):
12444           Fix EIO handing when capturing. Add new property to specify the number of
12445           buffers to enque (and remove the borked num-buffers usage).
12446
12447 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
12448
12449         Patch by: Sebastian Dröge <slomo circular-chaos org>
12450
12451         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12452         (gst_audio_panorama_set_process_function):
12453           Use a function array for process methods, add more docs and define the
12454           startindex of enums.
12455
12456 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
12457
12458         Patch by: Mark Nauwelaerts <manauw at skynet be>
12459
12460         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12461         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12462         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12463         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12464         (gst_avi_mux_riff_get_avi_header),
12465         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12466         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12467         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12468         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12469         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12470         (gst_avi_mux_change_state):
12471         * gst/avi/gstavimux.h:
12472         * tests/check/elements/avimux.c: (teardown_src_pad):
12473           Add support for more than one audio stream; write better AVIX
12474           header; refactor code a bit; don't announce vorbis caps on our audio
12475           sink pads since we don't support it anyway. Closes #379298.
12476
12477 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
12478
12479         Patch by: Sebastian Dröge <slomo circular-chaos org>
12480
12481         * gst/audiofx/audiopanorama.c:
12482         (gst_audio_panorama_method_get_type),
12483         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12484         (gst_audio_panorama_set_process_function),
12485         (gst_audio_panorama_set_property),
12486         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12487         (gst_audio_panorama_transform_m2s_int_simple),
12488         (gst_audio_panorama_transform_s2s_int_simple),
12489         (gst_audio_panorama_transform_m2s_float_simple),
12490         (gst_audio_panorama_transform_s2s_float_simple):
12491         * gst/audiofx/audiopanorama.h:
12492           Add 'method' property and provide a simple (non-psychoacustic)
12493           processing method (#394859).
12494
12495         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12496         (panorama_suite):
12497           Tests for new method.
12498
12499 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
12500
12501         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12502         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12503           Set correct caps on outgoing pulled buffers, or things blow up
12504           after recent core changes.
12505
12506 2007-01-11  Wim Taymans  <wim@fluendo.com>
12507
12508         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12509
12510         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12511         (gst_multipart_mux_request_new_pad),
12512         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12513         (gst_multipart_mux_change_state):
12514         Return FLOW errors ASAP. Fixes #394977.
12515         Misc cleanups.
12516
12517 2007-01-11  Wim Taymans  <wim@fluendo.com>
12518
12519         Patch by: Lutz Mueller <lutz at topfrose dot de>
12520
12521         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12522         Check for stream pad before activating. 
12523
12524 2007-01-10  Wim Taymans  <wim@fluendo.com>
12525
12526         Patch by: Peter Kjellerstedt  <pkj at axis com>
12527
12528         * gst/rtsp/COPYING.MIT:
12529         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12530         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12531         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12532         (gst_rtspsrc_stream_configure_transport),
12533         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12534         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12535         (gst_rtspsrc_parse_methods),
12536         (gst_rtspsrc_create_transports_string),
12537         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12538         (gst_rtspsrc_open), (gst_rtspsrc_close):
12539         * gst/rtsp/gstrtspsrc.h:
12540         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12541         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12542         (parse_request_line), (parse_line), (rtsp_connection_read),
12543         (rtsp_connection_close):
12544         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12545         (rtsp_method_as_text), (rtsp_header_as_text),
12546         (rtsp_status_as_text), (rtsp_find_header_field),
12547         (rtsp_find_method):
12548         * gst/rtsp/rtspdefs.h:
12549         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12550         (rtsp_ext_wms_configure_stream):
12551         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12552         (rtsp_message_new_request), (rtsp_message_init_request),
12553         (rtsp_message_new_response), (rtsp_message_init_response),
12554         (rtsp_message_init_data), (rtsp_message_unset),
12555         (rtsp_message_free), (rtsp_message_add_header),
12556         (rtsp_message_get_header), (rtsp_message_set_body),
12557         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12558         * gst/rtsp/rtspmessage.h:
12559         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12560         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12561         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12562         (sdp_message_dump):
12563         Allow url to be NULL to be able to use it for server connections.
12564         Can now send responses as well as requests.
12565         No longer hangs in an endless loop if EOF is received.
12566         Can now convert a status code to a text string.
12567         Return RTSP_HDR_INVALID for unknown headers.
12568         Return RTSP_INVALID for unknown methods.
12569         Copy CSeq and Session headers from the request.
12570         Only free memory corresponding to the currently set message type.
12571         Added const to function arguments as appropriate.
12572         Avoid a compiler warning when initializing nmedia.
12573         Use guint rather than gint to avoid compiler warnings.
12574         Fix crasher in wms extension.
12575         Factor out stream setup from open_connection.
12576         Delay activation of streams when actual data is received from the
12577         server, this prepares us to do proper protocol switching.
12578         Added new license.
12579         Fixes #380895.
12580
12581
12582 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
12583
12584         Patch by: Sebastian Dröge <slomo ubuntu com>
12585
12586         * docs/plugins/Makefile.am:
12587         * gst/audiofx/audiopanorama.c:
12588           Some small docs fixes (#394851).
12589
12590 2007-01-09  Wim Taymans  <wim@fluendo.com>
12591
12592         * gst/avi/gstavidemux.c:
12593         Fix docs.
12594
12595 2007-01-09  Wim Taymans  <wim@fluendo.com>
12596
12597         * gst/rtp/Makefile.am:
12598         * gst/rtp/gstrtp.c: (plugin_init):
12599         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12600         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12601         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12602         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12603         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12604         * gst/rtp/gstrtpmpvdepay.h:
12605           Added RFC 2250 MPEG Video Depayloader.
12606
12607         * gst/rtp/gstrtpL16depay.h:
12608         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12609         (gst_rtp_h263p_depay_process):
12610         Fix Header file. Small cleanups.
12611
12612         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12613         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12614         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12615         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12616         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12617         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12618         (gst_rtp_mp4v_depay_change_state):
12619         Remove usused code. Remove Adapter from state Change. Added debug.
12620
12621         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12622         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12623         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12624         * gst/rtp/gstrtpmpadepay.h:
12625         Subclass base depayloader.
12626         Added debug.
12627         Support static payload type assignment as well.
12628
12629         * gst/rtp/gstrtpmpapay.c:
12630         Fix caps.
12631
12632 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
12633
12634         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12635
12636         * ext/jpeg/gstjpegdec.c:
12637         * ext/jpeg/gstjpegenc.c:
12638         * ext/jpeg/smokecodec.c:
12639           These libjpeg callbacks should return a 'boolean' (unsigned char
12640           apparently) and not a 'gboolean' (which maps to gint). Fixes
12641           warnings when compiling with MingW (#393427).
12642
12643         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12644           Use ioctlsocket on win32.
12645
12646         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12647           Some printf format fixes for win32.
12648
12649 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
12650
12651         * gst/cutter/gstcutter.c: (gst_cutter_chain):
12652           Use gst_guint64_to_gdouble for conversion.
12653         * win32/vs6/libgstmatroska.dsp:
12654           Add zlib to the link.
12655         * win32/vs6/libgstvideobox.dsp:
12656           Update liboil library name (project is linked to 
12657           liboil-0.3-0.lib now).
12658           
12659 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
12660
12661         * gst/matroska/Makefile.am:
12662           If zlib is available and used, we must link it explicitly for
12663           things to work on MingW (fixes #392855).
12664
12665 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
12666
12667         * ext/esd/esdsink.c: (gst_esdsink_delay):
12668           Don't return bogus values when esd_get_delay() fails for some
12669           reason (#392189).
12670
12671 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12672
12673         * sys/ximage/gstximagesrc.c: (composite_pixel):
12674           Fix presumably copy'n'pasto for 16bpp depth.
12675
12676 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12677
12678         * gst/matroska/matroska-mux.c:
12679         (gst_matroska_mux_audio_pad_setcaps):
12680           The "signed" field in audio caps is of boolean type, trying to use
12681           gst_structure_get_int() to extract it will fail. Fixing this makes
12682           matroskamux accept raw audio input (#387121) (use at your own risk
12683           though, due to the matroska spec being not entirely useful in this
12684           respect).
12685           Also fix up raw audio structures in template caps so that they
12686           represent what our setcaps function will actually accept, so that
12687           converters know what to convert to.
12688           Finally, don't fail if there isn't an "endianness" field in 8-bit
12689           PCM caps.
12690
12691 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
12692
12693         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12694         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12695         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12696         (teardown_cmmldec):
12697         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12698         (teardown_cmmlenc):
12699         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12700           reapply consistent pad (de)activation
12701
12702 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12703
12704         * configure.ac:
12705         Back to CVS
12706
12707         * gst-plugins-good.doap:
12708         Add 0.10.5 doap entry
12709
12710 === release 0.10.5 ===
12711
12712 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
12713
12714         * configure.ac:
12715           releasing 0.10.5, "The Path of Thorns"
12716
12717 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12718
12719         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12720         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12721         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12722         (teardown_cmmldec):
12723         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12724         (teardown_cmmlenc):
12725         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12726           revert my freeze breakage
12727
12728 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12729
12730         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12731         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12732         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12733         (teardown_cmmldec):
12734         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12735         (teardown_cmmlenc):
12736         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12737           consistent pad (de)activation
12738
12739 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12740
12741         * configure.ac:
12742         * ext/Makefile.am:
12743         Disable LADPSA, as it has moved to the -bad module for the duration.
12744
12745 2006-12-18  Wim Taymans  <wim@fluendo.com>
12746
12747         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12748         (gst_signal_processor_event):
12749         Reset flow_state back to _OK after a flush stop so that we exit our
12750         error state after the flush. Fixes #374213
12751
12752 2006-12-16  David Schleef  <ds@schleef.org>
12753
12754         * sys/osxvideo/osxvideosink.h:
12755         * sys/osxvideo/osxvideosink.m:
12756           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
12757
12758 2006-12-16  David Schleef  <ds@schleef.org>
12759
12760         Patch by: Vijay Santhanam <vijay santhanam gmail com>
12761
12762         * sys/osxvideo/Makefile.am:
12763         * sys/osxvideo/osxvideosink.h:
12764         * sys/osxvideo/osxvideosink.m:
12765           Preliminary patch for porting osxvideosink
12766
12767 2006-12-16  Wim Taymans  <wim@fluendo.com>
12768
12769         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12770
12771         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12772         (gst_videomixer_set_master_geometry),
12773         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12774         (gst_videomixer_reset), (gst_videomixer_init),
12775         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12776         (gst_videomixer_release_pad), (gst_videomixer_collected),
12777         (gst_videomixer_change_state):
12778         Introduce some locking around the videomixer state so that it does not
12779         crash when adding/removing pads. Fixes #383043.
12780
12781 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12782
12783         * configure.ac:
12784           Make sure libcaca can actually be used instead of just checking for
12785           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12786           cross-compiling (fixes #384587).
12787
12788 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12789
12790         * Makefile.am:
12791         * gst-plugins-good.doap:
12792         * gst-plugins-good.spec.in:
12793           adding doap file
12794
12795 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12796
12797         * configure.ac:
12798           libflac-1.1.3 changed API again, but we can't build against it yet,
12799           so make sure our check doesn't use libflac-1.1.3 and add a comment
12800           to this effect.
12801
12802 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12803
12804         * gst/effectv/gstquark.c: (gst_quarktv_transform),
12805         (gst_quarktv_planetable_clear):
12806           Add some NULL pointer checks (possibly related to #385623).
12807
12808 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12809
12810         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12811         (gst_tag_demux_chain):
12812         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12813           In streaming mode, if the first buffer we get doesn't have an
12814           offset, fix it up to be 0, otherwise trimming won't work later on
12815           and we'll be typefinding application/x-id3, which may result in
12816           decodebin plugging an endless number of id3demux elements as a
12817           consequence. Fixes #385031.
12818           
12819 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12820
12821         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12822           Ignore the buffer_time the sound device reports. Turns out it is 
12823           sometimes completely bogus and we're better off without it.
12824
12825 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12826
12827         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12828         (gst_matroska_demux_video_caps):
12829         * gst/matroska/matroska-ids.c:
12830         (gst_matroska_track_init_video_context):
12831         * gst/matroska/matroska-ids.h:
12832           Try harder to extract the framerate for video tracks correctly and
12833           save it directly instead of converting it back and forth a few
12834           times. Mostly makes a difference for very small framerates (<1).
12835           Fixes #380199.
12836
12837 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12838
12839         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12840         (gst_gconf_audio_src_dispose), (do_toggle_element):
12841         * ext/gconf/gstgconfaudiosrc.h:
12842           Remove gconf notify hook when the gconfaudiosrc element is
12843           destroyed, otherwise the callback may be called on an
12844           already-destroyed instance and bad things happen. Should fix
12845           #378184.
12846           Also ignore gconf key changes when the source is already running.
12847
12848 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
12849
12850         Patch by: Sebastian Dröge  <mail at slomosnail de>
12851
12852         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12853           We need to be able to read and parse any possible floating point string
12854           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12855           will parse the former only in certain locales though, so we really need
12856           to canonicalise the separator to '.' and then use g_ascii_strtod() to
12857           make sure we can parse either version at all times.
12858           Fixes #382982 for real.
12859
12860 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12861
12862         * sys/sunaudio/gstsunaudiomixerctrl.c:
12863         * sys/sunaudio/gstsunaudiosrc.c:
12864
12865         Use the sunaudio debug category.
12866
12867         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12868         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12869         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12870         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12871         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12872         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12873         (gst_sunaudiosink_reset):
12874         * sys/sunaudio/gstsunaudiosink.h:
12875
12876         Uses the sunaudio debug category for all debug output
12877         Implements the _delay() callback to synchronise video playback better
12878         Change the segtotal and segsize values back to the parent class 
12879           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
12880           respectively)
12881         Measure the samples written to the device vs. played.
12882         Keep track of segments in the device by writing empty eof frames, and
12883         sleep using a GCond when we get too far ahead and risk overrunning the
12884         sink's ringbuffer.
12885
12886         Fixes: #360673
12887
12888 2006-12-08  Wim Taymans  <wim@fluendo.com>
12889
12890         Patch by: Sebastian Dröge  <mail at slomosnail de >
12891
12892         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12893         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12894         * gst/audiofx/audiopanorama.h:
12895         Fix audiopanorame with float samples. Fixes #383726.
12896
12897 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12898
12899         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12900         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12901         (gst_sunaudiosrc_reset):
12902
12903         Implement reset functions to unblock the src/sink more quickly on 
12904         state change requests.
12905         Patch by: Brian Cameron <brian dot cameron at sun com>
12906
12907 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12908
12909         * sys/sunaudio/gstsunaudiomixer.c:
12910         (gst_sunaudiomixer_change_state):
12911         Construct the correct mixer device name when the AUDIODEV env var
12912         is set.
12913
12914         Patch by: Jerry Tan <jerry.tan at sun dot com>
12915         Fixes: #383596
12916
12917 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12918
12919         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12920         Apply patch to open the mixer control and set the MULTIPLE_OPEN
12921         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
12922         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
12923         Patch by: Jerry Tan <jerry.tan at sun dot com>
12924         Fixes: #349015
12925
12926 2006-12-07  Wim Taymans  <wim@fluendo.com>
12927
12928         * gst/smpte/gstmask.h:
12929         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12930         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12931         (gst_smpte_collected), (gst_smpte_set_property),
12932         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12933         * gst/smpte/gstsmpte.h:
12934         Port to 0.10 some more. 
12935         Added duration property to specify the duration of the transition.
12936         Make framerate a fraction.
12937         Deprecate fps property, we only use negotiated fps.
12938         Added docs.
12939         Fix collectpad usage.
12940         Reset state in READY.
12941         Send NEWSEGMENT event.
12942         Fix racy updates of object properties.
12943         Added debug category.
12944         Fixes #383323.
12945
12946 2006-12-06  Wim Taymans  <wim@fluendo.com>
12947
12948         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12949
12950         * gst/videomixer/videomixer.c:
12951         (gst_videomixer_set_master_geometry),
12952         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12953         Don't reset xpos and ypos in the setcaps function because causes
12954         unexpected behaviour.
12955         Fixes #382179.
12956
12957 2006-12-06  Wim Taymans  <wim@fluendo.com>
12958
12959         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12960         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12961         Keep track of the buffer timestamp in the collectdata member instead
12962         of modifying the buffer without making the metadata writable first.
12963         Fixes #382277.
12964
12965 2006-12-06  Wim Taymans  <wim@fluendo.com>
12966
12967         Patch by: Rob Taylor <robtaylor at floopily dot org>
12968
12969         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12970         If using multicast in udpsrc, bind to the multicast address rather than
12971         IN_ADDR_ANY.
12972         This allows the simultanous use of multiple udpsrcs listening on
12973         different multicat addresses. Without this all udpsrcs will receive all
12974         packets from all subscribed multicast addresses.
12975         Fixes #383001.
12976
12977 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12978
12979         * ext/taglib/gstid3v2mux.cc:
12980         Don't attempt to write a NULL frame into the ID3 tag set when the 
12981         createFrame method returned NULL.
12982         Fixes: #381857
12983         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12984
12985 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12986
12987         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12988         Use g_strtod() instead of sscanf to parse doubles, so that it will
12989         try parsing in the C locale if the current locale fails.
12990         Fixes: #382982
12991         Patch by: Sebastian Dröge  <mail at slomosnail de >
12992
12993 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
12994
12995         * win32/MANIFEST:
12996         Fix compilation on win32 under VS8
12997         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
12998         Partially fixes #381175
12999
13000 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
13001
13002         * gst/avi/gstavimux.c:
13003           accept all mpegversions,fixes #380825
13004           spotted by: Jerome Alet  
13005
13006 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
13007
13008         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
13009         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
13010         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
13011         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
13012           cleanup the error message a bit more
13013
13014 2006-11-28  Wim Taymans  <wim@fluendo.com>
13015
13016         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
13017         Fix width and height properties.
13018
13019         * ext/libcaca/gstcacasink.h:
13020         Fix compilation on newer libcaca that require us to include a new
13021         header. Fixes #379918.
13022
13023 2006-11-28  Wim Taymans  <wim@fluendo.com>
13024
13025         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
13026         * gst/rtsp/gstrtspsrc.h:
13027         * gst/rtsp/rtspext.h:
13028         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
13029         (rtsp_ext_wms_get_context):
13030         Add method so that extensions can choose to disable the setup of
13031         a stream.
13032         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
13033
13034 2006-11-27  Wim Taymans  <wim@fluendo.com>
13035
13036         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
13037
13038         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
13039         Push header in a separate buffer instead of memcpy:ing all data.
13040         Change LF => CRLF in headers.
13041         Move trailing LF to header. Fixes #379792.
13042
13043 2006-11-27  Wim Taymans  <wim@fluendo.com>
13044
13045         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
13046         Small buffer overflow fix and improve debugging.
13047
13048 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
13049
13050         * ext/esd/esdmon.h:
13051         * ext/esd/esdsink.h:
13052           remove obsolete _factory_init protos
13053
13054 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
13055
13056         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
13057         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13058         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
13059         (gst_avi_demux_read_subindexes_push),
13060         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
13061         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
13062         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
13063         (gst_avi_demux_massage_index),
13064         (gst_avi_demux_calculate_durations_from_index),
13065         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
13066         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13067         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
13068           remove dead code, tweak debugs statements, add comments, use
13069           _uint64_scale instead _uint64_scale_int when using guint64 values,
13070           small optimizations, reflow some error handling
13071
13072 2006-11-22  Edward Hervey  <edward@fluendo.com>
13073
13074         * po/.cvsignore:
13075         We never put .pot files in cvs. Let's ignore them all.
13076
13077 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13078
13079         * po/POTFILES.in:
13080           ... but better exclude files that aren't disted.
13081
13082 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13083
13084         * po/POTFILES.in:
13085           Add v4l2 source files to list of files with translations, so the
13086           strings are actually extracted (however bad they still may be).
13087
13088 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13089
13090         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13091           Minor clean-ups: const-ify static array, remove trailing comma from
13092           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
13093
13094 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
13095
13096         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13097         Make sure that g_free always gets called on the same pointer that was 
13098         returned by g_malloc.  Fixes #376594.
13099         Do not leak memory if decompressed size is wrong.
13100         Remove unneeded check of return value of g_malloc.
13101         Patch by: René Stadler <mail@renestadler.de>
13102
13103 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
13104
13105         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
13106           Add missing curly brackets.
13107
13108 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
13109
13110         * sys/v4l2/v4l2src_calls.c:
13111         Fix capture_deinit.
13112
13113 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13114
13115         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13116         (gst_matroska_mux_request_new_pad):
13117           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
13118
13119         * tests/check/elements/matroskamux.c: (setup_src_pad),
13120         (setup_sink_pad), (GST_START_TEST):
13121         Activate pads before using them.
13122
13123 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13124
13125         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13126           Initialise variable to get rid of bogus compiler warning.
13127
13128 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
13129
13130         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
13131
13132         * gst/rtp/gstrtph263pay.c:
13133         * gst/rtp/gstrtph263pdepay.c:
13134         * gst/rtp/gstrtph263ppay.c:
13135           Specify H.263 variant and version in the caps (fixes #361637)
13136
13137 2006-11-15  Wim Taymans  <wim@fluendo.com>
13138
13139         * gst/rtsp/rtspconnection.c: (read_body):
13140         Don't set a data pointer to NULL and a size > 0 when we deal
13141         with empty packets.
13142
13143         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13144         (rtsp_message_init_response), (rtsp_message_init_data),
13145         (rtsp_message_unset), (rtsp_message_free),
13146         (rtsp_message_take_body):
13147         Check that we can't create invalid empty packets. 
13148
13149 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13150
13151         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13152
13153         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
13154         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
13155         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
13156         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
13157         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13158         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
13159         * gst/matroska/matroska-mux.h:
13160           Add basic tag writing support; implement releasing pads (#374658).
13161
13162 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13163
13164         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13165         (gst_matroska_demux_audio_caps):
13166           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
13167
13168 2006-11-14  David Schleef  <ds@schleef.org>
13169
13170         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
13171
13172 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
13173
13174         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13175
13176         * win32/vs8/gst-plugins-good.sln:
13177         * win32/vs8/libgst1394.vcproj:
13178         * win32/vs8/libgstaasink.vcproj:
13179         * win32/vs8/libgstalaw.vcproj:
13180         * win32/vs8/libgstalpha.vcproj:
13181         * win32/vs8/libgstalphacolor.vcproj:
13182         * win32/vs8/libgstannodex.vcproj:
13183         * win32/vs8/libgstapetag.vcproj:
13184         * win32/vs8/libgstaudiofx.vcproj:
13185         * win32/vs8/libgstauparse.vcproj:
13186         * win32/vs8/libgstautodetect.vcproj:
13187         * win32/vs8/libgstavi.vcproj:
13188         * win32/vs8/libgstcacasink.vcproj:
13189         * win32/vs8/libgstcdio.vcproj:
13190         * win32/vs8/libgstcutter.vcproj:
13191         * win32/vs8/libgstdv.vcproj:
13192         * win32/vs8/libgsteffectv.vcproj:
13193         * win32/vs8/libgstflac.vcproj:
13194         * win32/vs8/libgstflxdec.vcproj:
13195         * win32/vs8/libgstgoom.vcproj:
13196         * win32/vs8/libgsticydemux.vcproj:
13197         * win32/vs8/libgstid3demux.vcproj:
13198         * win32/vs8/libgstjpeg.vcproj:
13199         * win32/vs8/libgstladspa.vcproj:
13200         * win32/vs8/libgstlevel.vcproj:
13201         * win32/vs8/libgstmatroska.vcproj:
13202         * win32/vs8/libgstmikmod.vcproj:
13203         * win32/vs8/libgstmng.vcproj:
13204         * win32/vs8/libgstmonoscope.vcproj:
13205         * win32/vs8/libgstmulaw.vcproj:
13206         * win32/vs8/libgstmultipart.vcproj:
13207         * win32/vs8/libgstpng.vcproj:
13208         * win32/vs8/libgstrtp.vcproj:
13209         * win32/vs8/libgstrtsp.vcproj:
13210         * win32/vs8/libgstshout2.vcproj:
13211         * win32/vs8/libgstsmpte.vcproj:
13212         * win32/vs8/libgstspeex.vcproj:
13213         * win32/vs8/libgsttaglib.vcproj:
13214         * win32/vs8/libgstudp.vcproj:
13215         * win32/vs8/libgstvideobalance.vcproj:
13216         * win32/vs8/libgstvideobox.vcproj:
13217         * win32/vs8/libgstvideoflip.vcproj:
13218         * win32/vs8/libgstvideomixer.vcproj:
13219         * win32/vs8/libgstwavenc.vcproj:
13220         * win32/vs8/libgstwavparse.vcproj:
13221           Make end-of-line returns unixy, so that when the files are checked
13222           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13223           Hopefully fixes #366492.
13224
13225 2006-11-14  Wim Taymans  <wim@fluendo.com>
13226
13227         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13228         Disable init_frames delay timestamp adjustment, it does not
13229         seem to be needed at all. Fixes #369621.
13230
13231 2006-11-13  Wim Taymans  <wim@fluendo.com>
13232
13233         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13234
13235         * gst/videomixer/videomixer.c:
13236         (gst_videomixer_set_master_geometry),
13237         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13238         (gst_videomixer_collect_free), (gst_videomixer_reset),
13239         (gst_videomixer_init), (gst_videomixer_finalize),
13240         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13241         (gst_videomixer_collected), (gst_videomixer_change_state):
13242         Fix memleak by unref'ing collectpads instance (when finalizing)
13243         Implement releasing a request pad. Fixes #374479.
13244
13245 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
13246
13247         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13248
13249         * win32/vs8/gst-plugins-good.sln:
13250         * win32/vs8/libgst1394.vcproj:
13251         * win32/vs8/libgstaasink.vcproj:
13252         * win32/vs8/libgstalaw.vcproj:
13253         * win32/vs8/libgstalpha.vcproj:
13254         * win32/vs8/libgstalphacolor.vcproj:
13255         * win32/vs8/libgstannodex.vcproj:
13256         * win32/vs8/libgstapetag.vcproj:
13257         * win32/vs8/libgstaudiofx.vcproj:
13258         * win32/vs8/libgstauparse.vcproj:
13259         * win32/vs8/libgstautodetect.vcproj:
13260         * win32/vs8/libgstavi.vcproj:
13261         * win32/vs8/libgstcacasink.vcproj:
13262         * win32/vs8/libgstcdio.vcproj:
13263         * win32/vs8/libgstcutter.vcproj:
13264         * win32/vs8/libgstdv.vcproj:
13265         * win32/vs8/libgsteffectv.vcproj:
13266         * win32/vs8/libgstflac.vcproj:
13267         * win32/vs8/libgstflxdec.vcproj:
13268         * win32/vs8/libgstgoom.vcproj:
13269         * win32/vs8/libgsticydemux.vcproj:
13270         * win32/vs8/libgstid3demux.vcproj:
13271         * win32/vs8/libgstjpeg.vcproj:
13272         * win32/vs8/libgstladspa.vcproj:
13273         * win32/vs8/libgstlevel.vcproj:
13274         * win32/vs8/libgstmatroska.vcproj:
13275         * win32/vs8/libgstmikmod.vcproj:
13276         * win32/vs8/libgstmng.vcproj:
13277         * win32/vs8/libgstmonoscope.vcproj:
13278         * win32/vs8/libgstmulaw.vcproj:
13279         * win32/vs8/libgstmultipart.vcproj:
13280         * win32/vs8/libgstpng.vcproj:
13281         * win32/vs8/libgstrtp.vcproj:
13282         * win32/vs8/libgstrtsp.vcproj:
13283         * win32/vs8/libgstshout2.vcproj:
13284         * win32/vs8/libgstsmpte.vcproj:
13285         * win32/vs8/libgstspeex.vcproj:
13286         * win32/vs8/libgsttaglib.vcproj:
13287         * win32/vs8/libgstudp.vcproj:
13288         * win32/vs8/libgstvideobalance.vcproj:
13289         * win32/vs8/libgstvideobox.vcproj:
13290         * win32/vs8/libgstvideoflip.vcproj:
13291         * win32/vs8/libgstvideomixer.vcproj:
13292         * win32/vs8/libgstwavenc.vcproj:
13293         * win32/vs8/libgstwavparse.vcproj:
13294           Add VS8 project files (note that many of the plugins in ext are
13295           disabled by default). Fixes #366492.
13296
13297 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
13298
13299         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13300           we do not translate debug messages
13301
13302 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
13303
13304         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13305           fix categorisation, make short desc more explicit, remove unused code
13306           Fixes #372021
13307
13308 2006-11-08  Wim Taymans  <wim@fluendo.com>
13309
13310         * gst/rtp/gstrtpL16depay.c:
13311         * gst/rtp/gstrtpamrdepay.c:
13312         * gst/rtp/gstrtpamrpay.c:
13313         * gst/rtp/gstrtpgsmdepay.c:
13314         * gst/rtp/gstrtph263pay.c:
13315         * gst/rtp/gstrtph263pdepay.c:
13316         * gst/rtp/gstrtph263ppay.c:
13317         * gst/rtp/gstrtph264depay.c:
13318         * gst/rtp/gstrtpmp2tdepay.c:
13319         * gst/rtp/gstrtpmp4gdepay.c:
13320         * gst/rtp/gstrtpmp4gpay.c:
13321         * gst/rtp/gstrtpmp4vdepay.c:
13322         * gst/rtp/gstrtpmp4vpay.c:
13323         * gst/rtp/gstrtpmpadepay.c:
13324         * gst/rtp/gstrtpmpapay.c:
13325         * gst/rtp/gstrtppcmadepay.c:
13326         * gst/rtp/gstrtppcmapay.c:
13327         * gst/rtp/gstrtppcmudepay.c:
13328         * gst/rtp/gstrtppcmupay.c:
13329         * gst/rtp/gstrtpspeexdepay.c:
13330         * gst/rtp/gstrtpspeexpay.c:
13331         * gst/rtp/gstrtpsv3vdepay.c:
13332         Fix element descriptions.
13333
13334 2006-11-08  Wim Taymans  <wim@fluendo.com>
13335
13336         * gst/rtp/gstrtpvorbisdepay.c:
13337         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13338         Fix description.
13339         Small cleanup in the payloader.
13340
13341 2006-11-08  Wim Taymans  <wim@fluendo.com>
13342
13343         * gst/rtp/Makefile.am:
13344         * gst/rtp/gstrtp.c: (plugin_init):
13345         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13346         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13347         (gst_rtp_theora_depay_finalize),
13348         (gst_rtp_theora_depay_parse_configuration),
13349         (gst_rtp_theora_depay_setcaps),
13350         (gst_rtp_theora_depay_switch_codebook),
13351         (gst_rtp_theora_depay_process),
13352         (gst_rtp_theora_depay_set_property),
13353         (gst_rtp_theora_depay_get_property),
13354         (gst_rtp_theora_depay_change_state),
13355         (gst_rtp_theora_depay_plugin_init):
13356         * gst/rtp/gstrtptheoradepay.h:
13357         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13358         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13359         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13360         (gst_rtp_theora_pay_init_packet),
13361         (gst_rtp_theora_pay_flush_packet),
13362         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13363         (gst_rtp_theora_pay_handle_buffer),
13364         (gst_rtp_theora_pay_plugin_init):
13365         * gst/rtp/gstrtptheorapay.h:
13366         Add theora pay/depayloaders.
13367
13368 2006-11-06  Wim Taymans  <wim@fluendo.com>
13369
13370         * gst/rtp/Makefile.am:
13371         We depend on gsttag to generate the vorbis comments.
13372
13373         * gst/rtp/gstrtpvorbisdepay.c:
13374         (gst_rtp_vorbis_depay_parse_configuration),
13375         (gst_rtp_vorbis_depay_setcaps),
13376         (gst_rtp_vorbis_depay_switch_codebook),
13377         (gst_rtp_vorbis_depay_process):
13378         * gst/rtp/gstrtpvorbisdepay.h:
13379         Parse configuration string in the depayloader.
13380         Implement selecting and switching to a new codebook.
13381         Receiving vorbis over RTP now works.
13382
13383         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13384         (gst_rtp_vorbis_pay_init_packet),
13385         (gst_rtp_vorbis_pay_finish_headers),
13386         (gst_rtp_vorbis_pay_handle_buffer):
13387         * gst/rtp/gstrtpvorbispay.h:
13388         Set timestamps on outgoing buffers and RTP packets.
13389         Fix configuration string, prepend number of Packet headers.
13390         Fix encoding of ident string.
13391         Add delivery-method to caps.
13392         Streaming vorbis over RTP now works.
13393
13394 2006-11-06  Wim Taymans  <wim@fluendo.com>
13395
13396         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13397         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13398         (gst_rtp_vorbis_pay_handle_buffer):
13399         * gst/rtp/gstrtpvorbispay.h:
13400         Generate a valid configuration string in the caps based on the
13401         vorbis headers.
13402
13403 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13404
13405         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13406         * ext/cdio/gstcdio.h:
13407         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13408           Move CD-TEXT utility function into common file so it can also be
13409           used by a future cdioparanoiasrc.
13410
13411 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
13412         
13413         * sys/v4l2/Makefile.am:
13414         * sys/v4l2/gstv4l2object.c:
13415         * sys/v4l2/gstv4l2src.c:
13416         * sys/v4l2/gstv4l2xoverlay.c:
13417         * sys/v4l2/v4l2_calls.c:
13418         * sys/v4l2/v4l2src_calls.c:
13419         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13420         xoverlay code that is still not implemented.
13421
13422 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13423
13424         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13425           We require a -base more recent than 0.10.9, so it's safe to use
13426           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13427
13428         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13429         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13430           Use _newsegment_full() now that we depend on a recent enough core.
13431
13432         * gst/wavparse/gstwavparse.c:
13433           Remove cruft that we don't need any longer now that we depend on
13434           a recent enough -base.
13435
13436 2006-10-31  Wim Taymans  <wim@fluendo.com>
13437
13438         * gst/rtp/Makefile.am:
13439         * gst/rtp/gstrtp.c: (plugin_init):
13440         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13441         (gst_rtpilbcpay_setcaps):
13442         Fix and activate ILBC pay and depayloaders. Fixes #368162.
13443
13444 2006-10-31  Wim Taymans  <wim@fluendo.com>
13445
13446         * ext/speex/gstspeexdec.c: (speex_dec_convert),
13447         (speex_dec_sink_event), (speex_dec_chain_parse_header):
13448         Some small cleanups, use _scale.
13449
13450 2006-10-31  Wim Taymans  <wim@fluendo.com>
13451
13452         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13453         Use higher precision scale function.
13454
13455 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
13456
13457         Patch by: Michal Benes  <michal dot benes at itonis tv>
13458
13459         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13460         (gst_matroska_demux_read_track_encodings),
13461         (gst_matroska_decode_buffer):
13462           Fix several issues with encoded/compressed/encrypted/signed tracks;
13463           also, remove superfluous newline characters from some debug
13464           statements. (#366155)
13465
13466 2006-10-30  Wim Taymans  <wim@fluendo.com>
13467
13468         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13469         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13470         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13471         (gst_smokedec_change_state):
13472         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13473         (gst_smokeenc_init), (gst_smokeenc_finalize),
13474         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13475         (gst_smokeenc_resync), (gst_smokeenc_chain),
13476         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13477         (gst_smokeenc_change_state):
13478         Various cleanups, capsnego and leak fixes.
13479
13480 2006-10-30  Wim Taymans  <wim@fluendo.com>
13481
13482         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13483
13484         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13485         Fix videomixer so that it can handle any combination of framerates.
13486         Fixes #367221.
13487
13488 2006-10-28  Wim Taymans  <wim@fluendo.com>
13489
13490         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13491         (gst_avi_demux_parse_file_header),
13492         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13493         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13494         (gst_avi_demux_chain):
13495         Fix position query for audio. also fixes timestamps in streaming
13496         mode and bug #364958.
13497         Small cleanups.
13498
13499 2006-10-27  Wim Taymans  <wim@fluendo.com>
13500
13501         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13502         * ext/libpng/gstpngenc.h:
13503         Fix strides. Fixes #364856.
13504         Cleanup capsnego.
13505         Set caps on outgoing buffers.
13506
13507 2006-10-18  Wim Taymans  <wim@fluendo.com>
13508
13509         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13510
13511         * gst/rtp/gstrtpgsmpay.c:
13512         * gst/rtp/gstrtph263pay.c:
13513         * gst/rtp/gstrtpmpapay.c:
13514         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13515         (gst_rtp_pcma_pay_handle_buffer):
13516         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13517         Add static payload numbers in addition to the dynamic ones.
13518         Fixes #361639.
13519
13520 2006-10-18  Wim Taymans  <wim@fluendo.com>
13521
13522         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13523         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13524         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13525         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13526         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13527         * gst/rtsp/rtspdefs.h:
13528         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13529         * gst/rtsp/rtspurl.h:
13530         Reuse already existing enum for lower transport.
13531         Add rtspt and rtspu protocols.
13532         Send redirect to rtspt when udp times out.
13533
13534 2006-10-18  Wim Taymans  <wim@fluendo.com>
13535
13536         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13537         (gst_wavparse_stream_data):
13538         Fix seeking some more, mostly for speed changes.
13539
13540 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
13541
13542         Patch by: Fredrik Persson  <frepe at bredband net>
13543
13544         * sys/v4l2/gstv4l2tuner.c:
13545         * sys/v4l2/gstv4l2tuner.h:
13546           Fix _set_channel(): remove useless g_object_notify() for "channel"
13547           property that doesn't exist any longer and therefore now also
13548           useless redirect (#338818).
13549
13550 2006-10-17  Wim Taymans  <wim@fluendo.com>
13551
13552         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13553         Some drivers do not support unsetting the non-blocking flag once the
13554         device is opened. In those cases, close/open the device in
13555         non-blocking mode. Fixes #362673.
13556
13557 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13558
13559         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13560         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13561         (gst_v4l2src_get_fps):
13562           dear stefan, framespersecond is not frameperiod, reverting but adding
13563           comment
13564
13565 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13566
13567         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13568         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13569         (gst_v4l2src_get_fps):
13570           Numerator is numerator and denominator is denominator. Say that aloud
13571           5 times and retry after next beer.
13572
13573 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
13574
13575         Patch by: Josep Torra Valles  <josep at fluendo com>
13576
13577         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13578         * ext/esd/esdsink.c: (gst_esdsink_write):
13579         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13580         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13581         (gst_flac_dec_send_newsegment):
13582         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13583         (gst_flac_enc_tell_callback):
13584         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13585         (smokecodec_parse_header), (smokecodec_decode):
13586         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13587         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13588         * gst/goom/Makefile.am:
13589         * gst/goom/gstgoom.c:
13590         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13591         * gst/rtsp/gstrtspsrc.c:
13592         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13593         * gst/udp/gstudpsink.c:
13594         * gst/udp/gstudpsrc.c:
13595         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13596         * sys/sunaudio/gstsunaudiomixertrack.h:
13597           Fix a bunch of problems discovered by the Forte compiler, mostly type
13598           mixups and pointer arithmetics with void pointers. Fixes #362603.
13599
13600 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13601
13602         * ext/speex/gstspeex.c: (plugin_init):
13603         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13604         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13605         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13606         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13607         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13608         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13609         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13610         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13611         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13612         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13613         (gst_speex_enc_chain), (gst_speex_enc_get_property),
13614         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13615         * ext/speex/gstspeexenc.h:
13616           Miscellaneous clean-ups, among other things: speexenc => enc to
13617           enhance code readability; change speexenc => speex_enc; in chain
13618           function unref input buffer in case of error; take reference in
13619           event function; use boilerplate macro; use gst_pad_query_peer_*
13620           convenience functions.
13621
13622 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13623
13624         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13625         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13626         (gst_speexenc_set_header_on_caps):
13627           Fix some mem leaks.
13628
13629 2006-10-11  Wim Taymans  <wim@fluendo.com>
13630
13631         * gst/rtsp/URLS:
13632         Added some other URL.
13633
13634         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13635         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13636         (gst_rtspsrc_open), (gst_rtspsrc_play),
13637         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13638         * gst/rtsp/gstrtspsrc.h:
13639         Work on fallback to TCP connection when the UDP socket times out.
13640         Handler server requests, just reply with OK for now.
13641
13642         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13643         * gst/rtsp/rtspdefs.h:
13644         Added some more Real extension headers.
13645
13646         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13647         Fix parsing of urls with a ':' that is not part of the hostname:port
13648         part of the url.
13649
13650 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
13651
13652         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13653         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13654         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13655           Activate pad before adding it to the already-running element.
13656
13657         * tests/check/elements/icydemux.c: (icydemux_found_pad):
13658           Activate newly-created pad too.
13659
13660 2006-10-11  Wim Taymans  <wim@fluendo.com>
13661
13662         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13663
13664         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13665         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13666         (gst_udpsrc_start):
13667         Fix some leaks in caps and uris. Fixes #361252.
13668
13669 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
13670
13671         * gst/wavparse/Makefile.am:
13672           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13673
13674 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
13675
13676         * sys/v4l2/gstv4l2xoverlay.c:
13677         * sys/v4l2/gstv4l2xoverlay.h:
13678         Fix build as per the patch in #338818 comment 36.
13679
13680 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
13681
13682         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13683           Activate pads before adding them to the source.
13684
13685 2006-10-06  Wim Taymans  <wim@fluendo.com>
13686
13687         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13688         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13689         Activate pads before adding.
13690
13691 2006-10-06  Wim Taymans  <wim@fluendo.com>
13692
13693         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13694         (gst_multipart_find_pad_by_mime):
13695         Activate pads before adding.
13696
13697         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13698         BOILERPLATE sets parent_class for us.
13699
13700 2006-10-06  Wim Taymans  <wim@fluendo.com>
13701
13702         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13703         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13704         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13705         (gst_rtspsrc_alloc_udp_ports),
13706         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13707         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13708         (gst_rtspsrc_create_transports_string),
13709         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13710         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13711         * gst/rtsp/gstrtspsrc.h:
13712         Rework how the transport string is constructed, try to share channels
13713         and udp ports.
13714         Make most of the stuff less dependant on RTP as we are also going to use
13715         it for RDT.
13716         Add support for transport specific session managers.
13717
13718         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13719         Implement _flush().
13720
13721         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13722         * gst/rtsp/rtspdefs.h:
13723         Add generic error return code.
13724
13725         * gst/rtsp/rtspext.h:
13726         Add support for pluggable tranport strings.
13727
13728         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13729         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13730         (rtsp_ext_wms_get_context):
13731         Detect WMServer and activate the extension.
13732
13733         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13734         (rtsp_transport_get_manager), (rtsp_transport_parse):
13735         * gst/rtsp/rtsptransport.h:
13736         Added methods to get mime/manager for certain transports.
13737
13738 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
13739
13740         * ext/cairo/gsttimeoverlay.c:
13741         (gst_cairo_time_overlay_update_font_height):
13742         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13743         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13744         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13745         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13746         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13747         * ext/libpng/gstpngdec.c: (user_endrow_callback):
13748         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13749         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13750         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13751         (gst_avi_demux_stream_data):
13752         * gst/cutter/gstcutter.c: (gst_cutter_chain):
13753         * gst/debug/efence.c: (gst_efence_buffer_alloc),
13754         (gst_fenced_buffer_copy):
13755         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13756         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13757         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13758         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13759         (gst_rtspsrc_handle_message):
13760         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13761         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13762           Printf format fixes.
13763
13764 2006-10-04  Wim Taymans  <wim@fluendo.com>
13765
13766         * gst/rtsp/Makefile.am:
13767         Dist new .h file too.
13768
13769 2006-10-04  Wim Taymans  <wim@fluendo.com>
13770
13771         * gst/rtsp/Makefile.am:
13772         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13773         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13774         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13775         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13776         (gst_rtspsrc_parse_rtpmap),
13777         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13778         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13779         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13780         * gst/rtsp/gstrtspsrc.h:
13781         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13782         * gst/rtsp/rtspdefs.h:
13783         * gst/rtsp/rtspext.h:
13784         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13785         (rtsp_ext_wms_get_context):
13786         * gst/rtsp/rtspextwms.h:
13787         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13788         (rtsp_transport_parse):
13789         * gst/rtsp/rtsptransport.h:
13790         Factor out extension in separate module.
13791         Fix getcaps to filter against the padtemplate.
13792         Use Content-Base if the server gives one.
13793         Rework the transport parsing a bit for future extensions.
13794         Added some Real Header field definitions.
13795
13796 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13797
13798         * docs/plugins/Makefile.am:
13799         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13800         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13801           added v4l2 stubs
13802         * gst-plugins-good.spec.in:
13803           add v4l2
13804
13805 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
13806
13807         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13808           Extract disc/album/medium number and count and try harder
13809           to extract track number/count.
13810
13811 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13812
13813         * configure.ac:
13814         * sys/Makefile.am:
13815           add build stuff for v4l2, needs --enable-experimental until
13816           the last bits are resolved
13817
13818 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
13819
13820         * tests/check/Makefile.am:
13821           Disable autodetect test temporarily, so that the build bots
13822           update -bad and the ranks of unreliable video sinks in there.
13823
13824         * tests/check/elements/autodetect.c: (GST_START_TEST):
13825           Skip test if no usable videosink is found.
13826
13827 2006-09-29  Wim Taymans  <wim@fluendo.com>
13828
13829         * gst/rtsp/URLS:
13830         Add some more URLs.
13831
13832         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13833         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13834         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13835         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13836         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13837         (gst_rtspsrc_loop), (gst_rtspsrc_send),
13838         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13839         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13840         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13841         * gst/rtsp/gstrtspsrc.h:
13842         Add timeout property to control UDP timeouts.
13843         Fix error messages.
13844         Also start a loop function when operating in UDP mode so that we can
13845         do some more stuff async.
13846         Handle element messages from udpsrc to detect timeouts. If a timeout
13847         happens we currently generate an error.
13848         API: rtspsrc::timeout property.
13849
13850         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13851         (gst_udpsrc_create):
13852         Really implement the timeout in microseconds and not milliseconds.
13853
13854 2006-09-29  Wim Taymans  <wim@fluendo.com>
13855
13856         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13857         (gst_udpsrc_create), (gst_udpsrc_set_property),
13858         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13859         * gst/udp/gstudpsrc.h:
13860         Added property to post a message on timeout.
13861         Updated docs.
13862         When restarting the select, initialize the fdsets again.
13863         Init control sockets so we don't accidentally close a random socket.
13864         API: GstUDPSrc::timeout property
13865
13866 2006-09-29  Wim Taymans  <wim@fluendo.com>
13867
13868         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13869         Fix flag registration.
13870
13871         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13872         Reading 0 also means 'no more commands'
13873
13874 2006-09-29  Wim Taymans  <wim@fluendo.com>
13875
13876         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13877
13878         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13879         Fix possible infinite loop when shutting down, a read can also return
13880         0 to indicate no more messages are available. Fixes #358156.
13881
13882 2006-09-25  Wim Taymans  <wim@fluendo.com>
13883
13884         * gst/autodetect/gstautoaudiosink.c:
13885         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13886         (gst_auto_audio_sink_find_best):
13887         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13888         Small cleanups.
13889         don't try to set "sync" property when it is not available.
13890
13891 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13892
13893         Patch by: Peter Kjellerstedt  <pkj at axis com>
13894
13895         * gst/alpha/gstalpha.c:
13896         * gst/rtp/gstrtpamrdepay.c:
13897         * gst/rtsp/gstrtspsrc.c:
13898         * gst/udp/gstudpsrc.c:
13899         * gst/videomixer/videomixer.c:
13900           Include stdlib.h in some more places, makes things compile
13901           with uClibc and -Werror (#357592).
13902
13903 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13904
13905         * ext/jpeg/gstjpegdec.c:
13906           Set minimum height to 8 (from 16), our code should handle
13907           that fine. Some of the buttons on the apple trailer site
13908           are apparently only 15 pixels high (see #357470).
13909
13910 2006-09-23  Wim Taymans  <wim@fluendo.com>
13911
13912         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13913         (gst_rtspsrc_open):
13914         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13915         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13916         (rtsp_connection_receive):
13917         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13918         * gst/rtsp/rtspdefs.h:
13919         Improve error reporting.
13920
13921 2006-09-23  Wim Taymans  <wim@fluendo.com>
13922
13923         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13924         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13925         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13926         * gst/rtp/gstrtpdepay.c:
13927         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13928         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13929         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13930         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13931         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13932         (gst_rtp_mp2t_depay_plugin_init):
13933         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13934         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13935         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13936         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13937         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13938         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13939         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13940         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13941         Fix klass typos.
13942         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13943
13944 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13945
13946         * configure.ac:
13947           Need  -base CVS for gst_base_rtp_depayload_push_ts().
13948
13949 2006-09-22  Wim Taymans  <wim@fluendo.com>
13950
13951         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13952         Don't check for a tag that is never there and check if we read the
13953         correct tag. Fixes seeking again.
13954         We must post an error when all pads are unlinked.
13955
13956 2006-09-22  Wim Taymans  <wim@fluendo.com>
13957
13958         * gst/rtp/Makefile.am:
13959         * gst/rtp/gstrtp.c: (plugin_init):
13960         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13961         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13962         (gst_rtp_vorbis_pay_reset_packet),
13963         (gst_rtp_vorbis_pay_init_packet),
13964         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13965         (gst_rtp_vorbis_pay_handle_buffer):
13966         More fixage, set endoder-params correctly in the payloader.
13967
13968 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13969
13970         * gst/autodetect/gstautoaudiosink.c:
13971         (gst_auto_audio_sink_base_init):
13972         * gst/autodetect/gstautovideosink.c:
13973         (gst_auto_video_sink_base_init):
13974           Make static pad templates static to appease valgrind's leak
13975           detector.
13976
13977         * tests/check/Makefile.am:
13978         * tests/check/elements/.cvsignore:
13979         * tests/check/elements/autodetect.c: (GST_START_TEST),
13980         (autodetect_suite):
13981           Add simple test for the ghostpad lockup on shutdown fixed in core
13982           CVS (audio bit disabled because it would need dozens of alsa
13983           suppressions and I'm too lazy to add those now).
13984
13985 2006-09-22  Wim Taymans  <wim@fluendo.com>
13986
13987         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13988         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13989         Small cleanups.
13990
13991         * gst/rtp/Makefile.am:
13992         * gst/rtp/gstrtp.c: (plugin_init):
13993         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
13994         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
13995         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
13996         (gst_rtp_vorbis_depay_process),
13997         (gst_rtp_vorbis_depay_set_property),
13998         (gst_rtp_vorbis_depay_get_property),
13999         (gst_rtp_vorbis_depay_change_state),
14000         (gst_rtp_vorbis_depay_plugin_init):
14001         * gst/rtp/gstrtpvorbisdepay.h:
14002         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
14003         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
14004         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
14005         (gst_rtp_vorbis_pay_flush_packet),
14006         (gst_rtp_vorbis_pay_append_buffer),
14007         (gst_rtp_vorbis_pay_handle_buffer),
14008         (gst_rtp_vorbis_pay_plugin_init):
14009         * gst/rtp/gstrtpvorbispay.h:
14010         Add experimental vorbis pay and depayloaders.
14011
14012 2006-09-21  Wim Taymans  <wim@fluendo.com>
14013
14014         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
14015         Fix profile-level-id parsing and setup.
14016
14017 2006-09-21  Wim Taymans  <wim@fluendo.com>
14018
14019         * gst/udp/README:
14020         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
14021         Update README, simple cleanup.
14022
14023 2006-09-21  Wim Taymans  <wim@fluendo.com>
14024
14025         * gst/rtp/README:
14026         Update README with some examples.
14027
14028         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
14029         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
14030         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
14031         (gst_rtp_mp4g_pay_setcaps):
14032         * gst/rtp/gstrtpmp4gpay.h:
14033         Make optional RTP parameters of type STRING, as required by the
14034         application/x-rtp caps specification.
14035
14036 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
14037
14038         * gst/rtp/gstrtph263pdepay.c:
14039         * gst/rtp/gstrtph263ppay.c:
14040         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
14041         RTP header.
14042
14043 2006-09-20  Wim Taymans  <wim@fluendo.com>
14044
14045         * gst/rtp/Makefile.am:
14046         And makefile too.
14047
14048 2006-09-20  Wim Taymans  <wim@fluendo.com>
14049
14050         * gst/rtp/gstrtp.c: (plugin_init):
14051         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
14052         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
14053         (decode_base64), (gst_rtp_asf_depay_setcaps),
14054         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
14055         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
14056         (gst_rtp_asf_depay_plugin_init):
14057         * gst/rtp/gstrtpasfdepay.h:
14058         Added preliminary ASF depayloader.
14059
14060         * gst/rtp/gstrtph264depay.c: (decode_base64):
14061         Fix base64 decoding.
14062
14063 2006-09-20  Wim Taymans  <wim@fluendo.com>
14064
14065         * gst/rtsp/URLS:
14066         Added some test URLS.
14067
14068         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
14069         (gst_rtspsrc_loop), (gst_rtspsrc_open):
14070         * gst/rtsp/gstrtspsrc.h:
14071         When creating streams, give access to the complete SDP.
14072         Fix some leaks.
14073         Collect and merge global stream properties in stream caps.
14074         Preliminary support for WMServer.
14075
14076         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
14077         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
14078         (rtsp_connection_receive):
14079         * gst/rtsp/rtspconnection.h:
14080         Make connection interruptable.
14081         Refactor to make it reconnectable.
14082         Don't fail on short reads when reading data packets.
14083
14084         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
14085         (rtsp_url_get_port):
14086         * gst/rtsp/rtspurl.h:
14087         Add methods for getting/setting the port.
14088
14089         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
14090         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
14091         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
14092         (sdp_media_get_format), (sdp_parse_line),
14093         (sdp_message_parse_buffer):
14094         Fix headers. 
14095         Add methods for getting multiple attributes with the same name.
14096         Increase buffer size when parsing.
14097         Fix parsing of a=foo fields.
14098
14099         * gst/rtsp/test.c: (main):
14100         Update to new connection API.
14101
14102         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
14103         (rtsp_message_init_response), (rtsp_message_init_data),
14104         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
14105         * gst/rtsp/rtspmessage.h:
14106         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
14107         * gst/rtsp/rtsptransport.h:
14108         * gst/rtsp/sdp.h:
14109         * gst/rtsp/sdpmessage.h:
14110         * gst/rtsp/gstrtsp.c:
14111         * gst/rtsp/gstrtsp.h:
14112         * gst/rtsp/gstrtpdec.c:
14113         * gst/rtsp/gstrtpdec.h:
14114         * gst/rtsp/rtsp.h:
14115         * gst/rtsp/rtspdefs.c:
14116         * gst/rtsp/rtspdefs.h:
14117         Dual licensed under MIT and LGPL now.
14118
14119 2006-09-19  Wim Taymans  <wim@fluendo.com>
14120
14121         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
14122         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
14123         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14124         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
14125         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
14126         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
14127         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
14128         * gst/rtsp/gstrtspsrc.h:
14129         Reorganize stream parsing and creation.
14130         Detect container formats in interleaved mode.
14131         Keep more state about the streams.
14132         Assume a server also supports PLAY if it does not say.
14133         Add unicast and interleaved properties to TCP transport requests to make
14134         some servers happy (WMServer).
14135
14136         * gst/rtsp/sdpmessage.h:
14137         Add some defines for the standard Bandwidth types.
14138
14139 2006-09-19  Wim Taymans  <wim@fluendo.com>
14140
14141         * gst/rtsp/test.c: (main):
14142         Fix build.
14143
14144 2006-09-19  Wim Taymans  <wim@fluendo.com>
14145
14146         * gst/wavparse/gstwavparse.c:
14147         Add ms-gsm to the src template.
14148
14149 2006-09-18  Wim Taymans  <wim@fluendo.com>
14150
14151         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14152         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
14153         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14154         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
14155         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14156         * gst/rtsp/gstrtspsrc.h:
14157         Small cleanups, added documentation.
14158         Try to clean up the requests and responses.
14159         Refactor parsing the supported methods.
14160
14161         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
14162         (rtsp_connection_create), (rtsp_connection_send),
14163         (parse_response_status), (parse_request_line),
14164         (rtsp_connection_receive), (rtsp_connection_close),
14165         (rtsp_connection_free):
14166         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
14167         (rtsp_transport_init), (rtsp_transport_parse),
14168         (rtsp_transport_free):
14169         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
14170         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
14171         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
14172         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
14173         Use g_return_val some more.
14174
14175         * gst/rtsp/rtspdefs.h:
14176         Add more enum values to track initial states.
14177
14178         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
14179         (rtsp_message_init_request), (rtsp_message_new_response),
14180         (rtsp_message_init_response), (rtsp_message_init_data),
14181         (rtsp_message_unset), (rtsp_message_free),
14182         (rtsp_message_add_header), (rtsp_message_remove_header),
14183         (rtsp_message_get_header), (rtsp_message_set_body),
14184         (rtsp_message_take_body), (rtsp_message_get_body),
14185         (rtsp_message_steal_body), (rtsp_message_dump):
14186         * gst/rtsp/rtspmessage.h:
14187         Reorder arguments, object goes as the first one.
14188         Use g_return_val some more.
14189
14190 2006-09-18  Wim Taymans  <wim@fluendo.com>
14191
14192         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14193         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14194         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14195         * gst/rtsp/gstrtspsrc.h:
14196         Export sometimes source pad with correct caps on the template, create
14197         the ghostpad from the template.
14198         Remove RTCP template as we never expose RTCP.
14199         Protect against invalid body size.
14200         Avoid memcpy when creating the output buffer.
14201         Properly post an error and send EOS when the loop function is shut down.
14202
14203 2006-09-18  Wim Taymans  <wim@fluendo.com>
14204
14205         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14206
14207         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14208         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14209         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14210         * gst/rtsp/gstrtspsrc.h:
14211         Make sure we can never set an invalid location.
14212
14213         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14214         * gst/rtsp/rtspmessage.h:
14215         Added _steal_body method for future use.
14216
14217         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14218         Make freeing of NULL url return immediatly.
14219
14220 2006-09-18  Wim Taymans  <wim@fluendo.com>
14221
14222         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14223
14224         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14225         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14226         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14227         (gst_rtspsrc_change_state):
14228         * gst/rtsp/gstrtspsrc.h:
14229         Use boilerplate.
14230         Make rtspsrc subclass GstBin to make state changes easier.
14231         Add Range header field on the PLAY request.
14232
14233 2006-09-18  Wim Taymans  <wim@fluendo.com>
14234
14235         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14236
14237         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14238         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14239         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14240         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14241         * gst/rtsp/rtspconnection.c: (inet_aton):
14242         Small cleanups.
14243         when multicast is selected as the transport, create UDP sources and
14244         connect to the multicast group.
14245         Move parsing and setting of caps to a common place.
14246         Fixes #349894.
14247
14248 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
14249
14250         * ext/flac/gstflactag.c:
14251         * gst/alpha/gstalpha.c:
14252         * gst/debug/breakmydata.c:
14253         * gst/debug/negotiation.c:
14254         * gst/debug/testplugin.c:
14255         * gst/effectv/gstaging.c:
14256         * gst/effectv/gstdice.c:
14257         * gst/effectv/gstedge.c:
14258         * gst/effectv/gstquark.c:
14259         * gst/effectv/gstrev.c:
14260         * gst/effectv/gstshagadelic.c:
14261         * gst/effectv/gstvertigo.c:
14262         * gst/effectv/gstwarp.c:
14263         * gst/multipart/multipartdemux.c:
14264         * gst/multipart/multipartmux.c:
14265         * gst/videobox/gstvideobox.c:
14266         * gst/videofilter/gstgamma.c:
14267         * gst/videofilter/gstvideotemplate.c:
14268         * gst/videomixer/videomixer.c:
14269         * sys/sunaudio/gstsunaudiosrc.h:
14270         More G_OBJECT macro fixing.
14271
14272 2006-09-16  Wim Taymans  <wim@fluendo.com>
14273
14274         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14275
14276         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14277         Correctly set the dwLength in strh.
14278         With this patch, the file duration is now displayed correctly in window
14279         media player and the AVI plays completely. Fixes #356147
14280
14281 2006-09-15  Wim Taymans  <wim@fluendo.com>
14282
14283         Patch by: Darren Kenny <darren dot kenny at sun dot com>
14284
14285         * sys/sunaudio/gstsunaudiomixerctrl.c:
14286         (gst_sunaudiomixer_ctrl_build_list):
14287         Set the output track as the MASTER so that the gnome-settings-daemon
14288         keybindings for changing the volume using the keyboard works.
14289         Fixes #356142.
14290
14291 2006-09-15  Wim Taymans  <wim@fluendo.com>
14292
14293         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14294         Fix documentation, it is not possible to control the framerate of jpegdec
14295         using filtered caps yet. Fixes #355210.
14296         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14297         stop when there is an error.
14298
14299 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14300
14301         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14302         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14303           Don't interpret a first buffer with an offset of NONE as
14304           'from the middle of the stream', but only a first buffer
14305           that has a valid buffer offset that's non-zero (see #345449).
14306
14307 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14308
14309         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14310         (gst_icydemux_typefind_or_forward):
14311         * gst/icydemux/gsticydemux.h:
14312           When we merge/collect multiple incoming buffers for typefinding
14313           purposes, keep an initial 0 offset on the first outgoing buffer
14314           as well (otherwise id3demux won't work right). Fixes #345449.
14315           Also Make buffer metadata writable before setting buffer caps.
14316
14317         * tests/check/elements/icydemux.c: (typefind_succeed),
14318         (cleanup_icydemux), (push_data), (GST_START_TEST),
14319         (icydemux_suite):
14320           Small test case for the above.
14321
14322 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
14323
14324         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14325         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14326         (gst_avi_demux_stream_header_push),
14327         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14328         (gst_avi_demux_loop):
14329           More code reuse and better logging in _peek_chunk(). Reintroduce check
14330           for chunk sizes before reading them (avoid oom). Better handling for 
14331           invalid chunksizes when streaming.
14332
14333 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
14334
14335         * gst/level/gstlevel.c: (gst_level_set_property):
14336         * gst/level/gstlevel.h:
14337           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14338           René Stadler
14339
14340 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
14341
14342         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14343         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14344         (gst_avi_demux_stream_data):
14345           Revert one change to fix streaming avi (adapter size != data size).
14346
14347 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14348
14349         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
14350
14351         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14352         (gst_matroska_demux_reset),
14353         (gst_matroska_demux_read_track_encodings),
14354         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14355         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14356         (gst_matroska_demux_subtitle_caps):
14357         * gst/matroska/matroska-ids.h:
14358           Add support for VOBSUB subtitle tracks and zlib-compressed
14359           tracks. Make sure we start on a keyframe after a seek. (#343348)
14360
14361 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14362
14363         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14364         (gst_matroska_demux_push_flac_codec_priv_data),
14365         (gst_matroska_demux_push_xiph_codec_priv_data),
14366         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14367         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14368         * gst/matroska/matroska-ids.h:
14369           Add basic FLAC support (#311586), not perfect yet though, needs some
14370           tweaking in flacdec; also, seeking could be better.
14371           Do better bounds checking when deserialising vorbis stream headers
14372           to make sure we don't read beyond the end of the buffer on bad input.
14373
14374 2006-09-04  Wim Taymans  <wim@fluendo.com>
14375
14376         Patch by: Alessandro Decina <alessandro at nnva dot org>
14377
14378         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14379         Seeking back in a file containing a CMML stream errors out if the seek
14380         goes back up to the CMML headers. This is because after the seek the xml
14381         processing instruction <?xml ...?> is submitted to the xml parser again, 
14382         which results in an error. The attached patch fixes the problem. 
14383         Fixes #353908.
14384
14385         * ext/annodex/gstcmmlenc.h:
14386         Fix authors name.
14387
14388
14389 2006-08-28  Andy Wingo  <wingo@pobox.com>
14390
14391         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14392         New helper function to lessen the ifdefs.
14393         (GST_INFO_OBJECT): 
14394         (gst_dv1394src_iso_receive): Use it.
14395         (gst_dv1394src_create): Also use the control sockets in iec61883
14396         mode.
14397         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14398         handle for AVC operations; fixes #348233.
14399
14400 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14401
14402         * configure.ac:
14403         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14404         * docs/plugins/inspect/plugin-audiofx.xml:
14405         * docs/plugins/inspect/plugin-audiofxgood.xml:
14406         * gst/audiofx/Makefile.am:
14407         * gst/audiofx/audiofx.c:
14408         * gst/audiofxgood/.cvsignore:
14409         * gst/audiofxgood/Makefile.am:
14410         * gst/audiofxgood/audiofx.c:
14411         * gst/audiofxgood/audiopanorama.c:
14412         * gst/audiofxgood/audiopanorama.h:
14413           Rename again (audiofxgood -> audiofx).
14414
14415 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14416
14417         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14418         (gst_avi_demux_stream_scan):
14419           Initialze variables.
14420
14421 2006-08-25  Wim Taymans  <wim@fluendo.com>
14422
14423         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14424         (gst_avi_demux_init), (gst_avi_demux_finalize),
14425         (gst_avi_demux_reset), (gst_avi_demux_index_last),
14426         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14427         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14428         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14429         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14430         (gst_avi_demux_massage_index),
14431         (gst_avi_demux_calculate_durations_from_index),
14432         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14433         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14434         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14435         (gst_avi_demux_change_state):
14436         * gst/avi/gstavidemux.h:
14437         More attempts to turn this into readable code.
14438         Don't leak adapters.
14439         Calculate duration according to index more efficiently.
14440         Don't try to act like we drive the pipeline in chain mode.
14441
14442 2006-08-25  Wim Taymans  <wim@fluendo.com>
14443
14444         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14445         Fix build.
14446
14447 2006-08-25  Wim Taymans  <wim@fluendo.com>
14448
14449         Patch by: Alessandro Decina <alessandro at nnva dot org>
14450
14451         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14452         Do some extra sanity checks.
14453         Fixes #350340.
14454
14455         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14456         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14457         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14458         Check if clip->start_time is valid before adding the clip to the
14459         track list.
14460         Reset enc->preamble going from PAUSED to READY.
14461         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14462         only used for EOS.
14463         Only post an error message if we were the one that created the fatal
14464         GstFlowReturn value.
14465
14466         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14467         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14468         Parse the seconds field of the npt-sec time format using %llu rather than
14469         %d and check that the value scaled by GST_SECOND doesn't overflow.
14470         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14471         Lookup a clip's track with clip->track rather than clip->id which
14472         makes no sense.
14473         Identify a clip by its track and start time and not its xml id.
14474         do some more input checking and make sure we don't do undefined shifts.
14475
14476         * tests/check/elements/cmmldec.c: (setup_cmmldec),
14477         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14478         (cmml_tag_message_pop), (check_headers), (push_clip_full),
14479         (push_clip), (push_empty_clip), (check_output_clip),
14480         (GST_START_TEST), (cmmldec_suite):
14481         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14482         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14483         (check_headers), (push_clip), (check_clip_times), (check_clip),
14484         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14485         Added some more checks.
14486
14487 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14488
14489         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14490         (gst_audio_panorama_set_property),
14491         (gst_audio_panorama_get_property),
14492         (gst_audio_panorama_transform_m2s_int),
14493         (gst_audio_panorama_transform_s2s_int),
14494         (gst_audio_panorama_transform_m2s_float),
14495         (gst_audio_panorama_transform_s2s_float):
14496         * gst/audiofxgood/audiopanorama.h:
14497         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14498           Make also the pan-property float (saves scaling and yields better
14499           resolution)
14500
14501 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14502
14503         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14504         (gst_audio_panorama_transform_m2s_float),
14505         (gst_audio_panorama_transform_s2s_float):
14506           ChangeLog surgery to add cymax's real name
14507
14508
14509 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14510
14511         Patch by: René Stadler <mail@renestadler.de>
14512
14513         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14514         (gst_audio_panorama_transform_m2s_int),
14515         (gst_audio_panorama_transform_s2s_int),
14516         (gst_audio_panorama_transform_m2s_float),
14517         (gst_audio_panorama_transform_s2s_float),
14518         (gst_audio_panorama_transform):
14519         * gst/audiofxgood/audiopanorama.h:
14520           Added float support
14521
14522 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14523
14524         * gst/audiofxgood/audiopanorama.c:
14525         (gst_audio_panorama_transform_m2s):
14526           Fix docs & debug category. Add Fixme for volume pan levels.
14527
14528 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14529
14530         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14531         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14532         (gst_avi_demux_stream_header_pull),
14533         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14534         (gst_avi_demux_chain):
14535           unbreak AVI index handling, some more debug, remove an obsolete
14536           adapter_flush that caused streaming to wander off in the wild
14537
14538 2006-08-24  Wim Taymans  <wim@fluendo.com>
14539
14540         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14541         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14542         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14543         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14544         (gst_avi_demux_calculate_durations_from_index),
14545         (gst_avi_demux_stream_header_push),
14546         (gst_avi_demux_stream_header_pull):
14547         * gst/avi/gstavidemux.h:
14548         Some more cleanups. 
14549         Fix totalFrames parsing in ODML.
14550         Disable use of index for length calculation in case of ODML as this is
14551         broken now.
14552
14553 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
14554
14555         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14556           Use libgsttag helper function here too.
14557
14558 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
14559
14560         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14561         (gst_avi_demux_init), (gst_avi_demux_dispose),
14562         (gst_avi_demux_reset), (gst_avi_demux_index_next),
14563         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14564         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14565         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14566         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14567         (gst_avi_demux_parse_subindex),
14568         (gst_avi_demux_read_subindexes_push),
14569         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14570         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14571         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14572         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14573         (gst_avi_demux_stream_header_pull),
14574         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14575         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14576         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14577         (gst_avi_demux_change_state):
14578         * gst/avi/gstavidemux.h:
14579           Initial streaming support for avidemux (fixes #336465)
14580
14581 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14582
14583         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14584           There is no taglibmux element ...
14585
14586         * gst/rtsp/gstrtspsrc.c:
14587           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14588           was complaining about unknown entity here.
14589
14590 2006-08-22  Wim Taymans  <wim@fluendo.com>
14591
14592         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14593         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14594         (gst_avi_demux_process_next_entry):
14595         * gst/avi/gstavidemux.h:
14596         Mark DISCONT.
14597         Remove old unused fields and reorder the struct a bit.
14598
14599 2006-08-22  Wim Taymans  <wim@fluendo.com>
14600
14601         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14602         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14603         (gst_rtspsrc_pause):
14604         * gst/rtsp/gstrtspsrc.h:
14605         * sys/oss/gstosssink.c: (gst_oss_sink_open),
14606         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14607         Small documentation updates.
14608
14609 2006-08-22  Wim Taymans  <wim@fluendo.com>
14610
14611         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14612         (gst_avi_demux_index_entry_for_time),
14613         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14614         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14615         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14616         (gst_avi_demux_next_data_buffer),
14617         (gst_avi_demux_calculate_durations_from_index),
14618         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14619         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14620         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14621         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14622         * gst/avi/gstavidemux.h:
14623         Precalc most of the duration query for each stream.
14624         Make seeking more correct.
14625         Use GstSegment to track position and duration.
14626         Code cleanups and leak fixes.
14627         Calculate correct total duration based on index length.
14628
14629 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
14630
14631         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14632         (parse_insert_string_field):
14633           If strings in text fields are marked ISO8859-1, but contain
14634           valid UTF-8 already, then handle them as UTF-8 and ignore
14635           the encoding. (#351794)
14636
14637 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14638
14639         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14640         (gst_flac_dec_write), (gst_flac_dec_loop),
14641         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14642         (gst_flac_dec_src_query):
14643         * ext/flac/gstflacdec.h:
14644           Make flac-in-ogg work (#352100).
14645
14646 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14647
14648         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14649           Don't unref buffers of which we've already given away
14650           ownership to the adapter.
14651
14652 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14653
14654         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14655           Make metadata extraction actually work.
14656
14657         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14658         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14659         (gst_speexenc_chain):
14660           Fix metadata writing: replace old code which wrote completely
14661           broken tags with libgsttag-based code. Plus miscellaneous
14662           code cleanups (use static pad templates etc.) and a bunch
14663           of leak fixes.
14664
14665 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14666
14667         * gst/audiopanorama/.cvsignore:
14668         * gst/audiopanorama/Makefile.am:
14669         * gst/audiopanorama/audiofx.c:
14670         * gst/audiopanorama/audiopanorama.c:
14671         * gst/audiopanorama/audiopanorama.h:
14672           die! die! die! you should never have been there
14673
14674 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
14675
14676         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14677         Fix invalid memory access in audiopanorama test suite.
14678
14679 2006-08-21  Edward Hervey  <edward@fluendo.com>
14680
14681         * tests/check/elements/.cvsignore:
14682         ignore built file
14683
14684 2006-08-21  Wim Taymans  <wim@fluendo.com>
14685
14686         * gst/rtp/Makefile.am:
14687         Fix the build again.
14688
14689 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14690
14691         * gst/audiofxgood/.cvsignore:
14692         * gst/audiofxgood/Makefile.am:
14693         * gst/audiofxgood/audiofx.c: (plugin_init):
14694         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14695         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14696         (gst_audio_panorama_set_property),
14697         (gst_audio_panorama_get_property),
14698         (gst_audio_panorama_get_unit_size),
14699         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14700         (gst_audio_panorama_transform_m2s),
14701         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14702         * gst/audiofxgood/audiopanorama.h:
14703           resubmit with the desired name *again*
14704
14705 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14706
14707         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14708         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14709           use g_assert in _get_unit_size
14710
14711 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14712
14713         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14714         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14715         * docs/plugins/inspect/plugin-audiofxgood.xml:
14716           cleanup -unused.txt to make it useful, add previously missing docs
14717
14718         * ext/Makefile.am:
14719           Quietly (accidentally) enable LADSPA for building by default, 
14720           despite the fact that it doesn't meet the plugin checklist.
14721             -- Added by Jan Schmidt 18 Dec 2006
14722
14723         * ext/esd/esdmon.c:
14724         * ext/esd/esdsink.c:
14725         * ext/esd/gstesd.c: (plugin_init):
14726           reflow to get rid of two external symbols
14727
14728         * gst/audiofxgood/audiofx.c: (plugin_init):
14729           re-add
14730
14731 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14732
14733         * configure.ac:
14734         * gst/audiofxgood/.cvsignore:
14735         * gst/audiofxgood/Makefile.am:
14736         * gst/audiofxgood/audiofx.c
14737         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14738         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14739         (gst_audio_panorama_set_property),
14740         (gst_audio_panorama_get_property),
14741         (gst_audio_panorama_get_unit_size),
14742         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14743         (gst_audio_panorama_transform_m2s),
14744         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14745         * gst/audiofxgood/audiopanorama.h:
14746         * tests/check/Makefile.am:
14747         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14748         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14749         (panorama_suite), (main):
14750         Add audiofxgood plugin with audiopanorama element
14751
14752 2006-08-18  Wim Taymans  <wim@fluendo.com>
14753
14754         * docs/plugins/Makefile.am:
14755         More Oss docs fixage. 
14756
14757 2006-08-18  Wim Taymans  <wim@fluendo.com>
14758
14759         * gst/rtp/Makefile.am:
14760         * gst/rtp/gstrtp.c: (plugin_init):
14761         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14762         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14763         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14764         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14765         (gst_rtp_sv3v_depay_get_property),
14766         (gst_rtp_sv3v_depay_change_state),
14767         (gst_rtp_sv3v_depay_plugin_init):
14768         * gst/rtp/gstrtpsv3vdepay.h:
14769         Added experimental SVQ3 depayloader.
14770
14771 2006-08-18  Edward Hervey  <edward@fluendo.com>
14772
14773         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14774         (gst_dvdemux_loop), (gst_dvdemux_change_state):
14775         * ext/dv/gstdvdemux.h:
14776         When handling seek requests, don't send the newsegment event from the
14777         calling thread. Instead save it so it can be sent from the streaming
14778         thread.
14779
14780 2006-08-17  Wim Taymans  <wim@fluendo.com>
14781
14782         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14783
14784         * gst/multipart/multipartdemux.c: (multipart_parse_header):
14785         Accept leading whitespace before the boundary
14786         This patch makes the demuxer allow some whitespace before the actual
14787         boundary. This makes the demuxer work with the ``old'' gstreamer
14788         multipartmuxer again (which placed an extra \n before the start
14789         of the stream) Fixes #349068.
14790
14791 2006-08-17  Wim Taymans  <wim@fluendo.com>
14792
14793         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14794         Error out on non-implemented stuff.
14795
14796 2006-08-16  Wim Taymans  <wim@fluendo.com>
14797
14798         Patch by: Andy Wingo <wingo at pobox dot com>
14799
14800         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14801         (gst_signal_processor_start), (gst_signal_processor_stop),
14802         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14803         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14804         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14805         (gst_signal_processor_change_state):
14806         Make ladspa elements reusable. Fixes #350006.
14807
14808 2006-08-16  Wim Taymans  <wim@fluendo.com>
14809
14810         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14811         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14812         names as possible. Fixes #349901.
14813
14814 2006-08-16  Wim Taymans  <wim@fluendo.com>
14815
14816         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14817         (gst_signal_processor_do_pushes):
14818         A push() gives away our refcount so we should not use the buffer on the
14819         pen anymore.
14820
14821 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14822
14823         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14824         (gst_oss_mixer_element_finalize):
14825           Don't leak device string.
14826
14827 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14828
14829         * configure.ac:
14830           Require CVS of GStreamer core and -base (for
14831           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14832
14833         * ext/taglib/gstid3v2mux.cc:
14834           Write extended comment tags properly (#348762).
14835
14836         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14837         (parse_comment_frame):
14838           Extract COMM frames into extended comments, which makes it
14839           easier to properly retain the description bit of the tag
14840           and maintain this information when re-tagging (#348762).
14841
14842 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14843
14844         * tests/check/Makefile.am:
14845           Don't try to run annodex unit tests if the annodex
14846           plugin has not been built (Fixes #351116).
14847
14848 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14849
14850         * gst/autodetect/gstautoaudiosink.c:
14851         (gst_auto_audio_sink_find_best):
14852           When we can't find a usable audiosink, don't error out,
14853           but use a fake sink instead and post a warning message
14854           on the bus (#341278).
14855
14856 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14857
14858         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14859         * sys/oss/gstosssink.c:
14860         * sys/oss/gstosssrc.c:
14861           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14862           ossmixer's new device property.
14863
14864         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14865         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14866           Add docs for OSS elements.
14867
14868         * docs/plugins/inspect/plugin-aasink.xml:
14869         * docs/plugins/inspect/plugin-alaw.xml:
14870         * docs/plugins/inspect/plugin-alpha.xml:
14871         * docs/plugins/inspect/plugin-alphacolor.xml:
14872         * docs/plugins/inspect/plugin-annodex.xml:
14873         * docs/plugins/inspect/plugin-apetag.xml:
14874         * docs/plugins/inspect/plugin-auparse.xml:
14875         * docs/plugins/inspect/plugin-autodetect.xml:
14876         * docs/plugins/inspect/plugin-avi.xml:
14877         * docs/plugins/inspect/plugin-cacasink.xml:
14878         * docs/plugins/inspect/plugin-cairo.xml:
14879         * docs/plugins/inspect/plugin-cdio.xml:
14880         * docs/plugins/inspect/plugin-cutter.xml:
14881         * docs/plugins/inspect/plugin-debug.xml:
14882         * docs/plugins/inspect/plugin-dv.xml:
14883         * docs/plugins/inspect/plugin-efence.xml:
14884         * docs/plugins/inspect/plugin-effectv.xml:
14885         * docs/plugins/inspect/plugin-esdsink.xml:
14886         * docs/plugins/inspect/plugin-flac.xml:
14887         * docs/plugins/inspect/plugin-flxdec.xml:
14888         * docs/plugins/inspect/plugin-gconfelements.xml:
14889         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14890         * docs/plugins/inspect/plugin-goom.xml:
14891         * docs/plugins/inspect/plugin-halelements.xml:
14892         * docs/plugins/inspect/plugin-icydemux.xml:
14893         * docs/plugins/inspect/plugin-id3demux.xml:
14894         * docs/plugins/inspect/plugin-jpeg.xml:
14895         * docs/plugins/inspect/plugin-level.xml:
14896         * docs/plugins/inspect/plugin-matroska.xml:
14897         * docs/plugins/inspect/plugin-mulaw.xml:
14898         * docs/plugins/inspect/plugin-multipart.xml:
14899         * docs/plugins/inspect/plugin-navigationtest.xml:
14900         * docs/plugins/inspect/plugin-ossaudio.xml:
14901         * docs/plugins/inspect/plugin-png.xml:
14902         * docs/plugins/inspect/plugin-rtp.xml:
14903         * docs/plugins/inspect/plugin-rtsp.xml:
14904         * docs/plugins/inspect/plugin-shout2send.xml:
14905         * docs/plugins/inspect/plugin-smpte.xml:
14906         * docs/plugins/inspect/plugin-speex.xml:
14907         * docs/plugins/inspect/plugin-taglib.xml:
14908         * docs/plugins/inspect/plugin-udp.xml:
14909         * docs/plugins/inspect/plugin-videobalance.xml:
14910         * docs/plugins/inspect/plugin-videobox.xml:
14911         * docs/plugins/inspect/plugin-videoflip.xml:
14912         * docs/plugins/inspect/plugin-videomixer.xml:
14913         * docs/plugins/inspect/plugin-wavenc.xml:
14914         * docs/plugins/inspect/plugin-wavparse.xml:
14915         * docs/plugins/inspect/plugin-ximagesrc.xml:
14916           Update to CVS version.
14917           
14918 2006-08-16  Wim Taymans  <wim@fluendo.com>
14919
14920         * gst/rtp/gstrtpamrdepay.c:
14921         * gst/rtp/gstrtpmp4gdepay.c:
14922         Caps extra properties must be defined as strings for
14923         depayloaders because they are generated from an SDP.
14924
14925         * gst/rtp/Makefile.am:
14926         * gst/rtp/gstrtp.c: (plugin_init):
14927         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14928         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14929         (gst_rtp_h264_depay_finalize), (decode_base64),
14930         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14931         (gst_rtp_h264_depay_set_property),
14932         (gst_rtp_h264_depay_get_property),
14933         (gst_rtp_h264_depay_change_state),
14934         (gst_rtp_h264_depay_plugin_init):
14935         * gst/rtp/gstrtph264depay.h:
14936         Added basic, not completely functional RFC 3984 H264 depayloader.
14937
14938 2006-08-16  Wim Taymans  <wim@fluendo.com>
14939
14940         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14941         Add pads after setting them up.
14942
14943         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14944         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14945         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14946         (gst_rtspsrc_stream_setup_rtp),
14947         (gst_rtspsrc_stream_configure_transport),
14948         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14949         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14950         (gst_rtspsrc_pause):
14951         * gst/rtsp/gstrtspsrc.h:
14952         Fix interleaved mode.
14953          - Protect streaming with lock.
14954          - Combine flows
14955          - set caps on outgoing buffers.
14956          - strip trailing \0 from data packets.
14957          - Configure RTP/RTCP in stream.
14958         Use DEBUG_OBJECT more.
14959
14960 2006-08-16  Wim Taymans  <wim@fluendo.com>
14961
14962         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14963         Turn a g_print into a DEBUG line.
14964
14965 2006-08-13  Wim Taymans  <wim@fluendo.com>
14966
14967         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14968         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14969         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14970         (gst_oss_mixer_element_get_property),
14971         (gst_oss_mixer_element_change_state):
14972         * sys/oss/gstossmixerelement.h:
14973         Small cleanups. Better error reporting.
14974         Add device property for the mixer instead of the hardcoded
14975         /dev/mixer. Fixes #350785.
14976         API: GstOssMixerElement::device property
14977
14978 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
14979
14980         Patch by: Jens Granseuer <jensgr at gmx net>
14981
14982         * gconf/Makefile.am:
14983           Make --disable-schemas work right (they still need
14984           to be copied to the installation directory, just not
14985           applied). Fixes #351347 (also #344100).
14986           
14987 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14988
14989         * configure.ac: back to HEAD
14990
14991 === release 0.10.4 ===
14992
14993 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
14994
14995         * configure.ac:
14996           releasing 0.10.4, "Dear Leader"
14997
14998 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14999
15000         Patch by: Edward Hervey <edward@fluendo.com>
15001
15002         * configure.ac:
15003         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
15004         (gst_wavparse_stream_data):
15005         Send the newsegment event in the streaming thread.
15006         Fixes #347529
15007
15008 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
15009
15010         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
15011         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
15012         (gst_smokeenc_resync), (gst_smokeenc_chain):
15013           Refuse sink caps in the encoder if width or height is not a
15014           multiple of 16, the encoder does not support that yet (#349939);
15015           along the same lines, check the return value of the encoder
15016           setup function; also remove some debug log clutter.
15017
15018 2006-08-04  Andy Wingo  <wingo@pobox.com>
15019
15020         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
15021         whether a processor can work in place or not, and for keeping
15022         track of its state. Change the FlowReturn instance variable from
15023         "state" to "flow_state", all callers changed.
15024
15025         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
15026         (gst_signal_processor_start, gst_signal_processor_stop)
15027         (gst_signal_processor_cleanup): New functions to manage the
15028         processor's state.
15029         (gst_signal_processor_setcaps): start() as well as setup() here.
15030         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
15031         (gst_signal_processor_change_state): Stop and cleanup the
15032         processor as we go to NULL.
15033
15034         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
15035         INPLACE_BROKEN is not set.
15036
15037         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
15038         Do the alloc_buffer in bytes, not frames.
15039         
15040 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15041
15042         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
15043         Fix rgb masks when recording in < 24bpp.
15044
15045 2006-08-04  Andy Wingo  <wingo@pobox.com>
15046
15047         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
15048         (gst_signal_processor_prepare)
15049         (gst_signal_processor_update_inputs)
15050         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
15051         (gst_signal_processor_flush)
15052         (gst_signal_processor_sink_activate_push)
15053         (gst_signal_processor_src_activate_pull)
15054         (gst_signal_processor_change_state): Remove the last of the code
15055         that assumes that we process whole buffers at a time. Fix some
15056         debugging. Seems to work now in some cases.
15057         (gst_signal_processor_src_activate_pull): BPB
15058
15059 2006-08-01  Andy Wingo  <wingo@pobox.com>
15060
15061         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
15062         Fix nframes-choosing.
15063         (gst_signal_processor_init): Init pending_in and pending_out.
15064
15065         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
15066         more default sample rate, although we never check that the sample
15067         rate actually gets set. Something for the future.
15068         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
15069         (gst_signal_processor_event): Refcount fixen.
15070         (gst_signal_processor_process): Pull the number of frames to
15071         process from the sizes of the buffers in the input pens.
15072         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
15073         (gst_signal_processor_do_pulls): Add an nframes argument, and use
15074         it instead of buffer_frames.
15075         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
15076         to do_pulls.
15077         (gst_signal_processor_chain)
15078         (gst_signal_processor_sink_activate_push)
15079         (gst_signal_processor_src_activate_pull):  Refcount fixen.
15080
15081         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
15082
15083 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
15084
15085         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
15086         (gst_signal_processor_process):
15087           don't query buffer-frames from caps, add lots of debug-log,
15088           try fix for assert (#349189)
15089
15090 2006-07-31  Wim Taymans  <wim@fluendo.com>
15091
15092         * gst/udp/gstudpsrc.c:
15093         Fix docs.
15094
15095 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
15096
15097         * ext/ladspa/gstsignalprocessor.c:
15098         (gst_signal_processor_add_pad_from_template),
15099         (gst_signal_processor_init), (gst_signal_processor_setcaps),
15100         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
15101         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
15102         (gst_signal_processor_sink_activate_push),
15103         (gst_signal_processor_src_activate_pull),
15104         (gst_signal_processor_change_state):
15105          Add debugs logs here and there, add more error handling, add some
15106          FIXME comments, filed #349189
15107
15108 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15109
15110         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15111         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
15112         Set caps on buffer correctly.  Fixes bug #349155.
15113
15114 2006-07-28  Wim Taymans  <wim@fluendo.com>
15115
15116         Patch by: Sjoerd Simons <sjoerd at luon dot net>
15117
15118         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15119         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15120         (gst_multipart_demux_finalize), (get_line_end),
15121         (multipart_parse_header), (multipart_find_boundary),
15122         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15123         (gst_multipart_set_property), (gst_multipart_get_property):
15124         Uses GstAdapter instead of own buffering.
15125         Actually parses the mime-type correctly (In tests the mime-type was
15126         always "" with the old version).
15127         Uses the Content-length header if available to speed up things.
15128         Reliably autoscans the boundary name by default.
15129         Fixes #349068.
15130
15131         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
15132         Don't start the stream with a \n.
15133
15134 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
15135
15136         Patch by: Brian Cameron <brian dot cameron at sun com>
15137
15138         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
15139           Open source with O_NONBLOCK (#349015).
15140
15141 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
15142
15143         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15144         (gst_avi_demux_massage_index):
15145         * gst/avi/gstavidemux.h:
15146           Whitespace fixes and more debug
15147
15148 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15149
15150         * gst/autodetect/gstautoaudiosink.c:
15151         (gst_auto_audio_sink_create_element_with_pretty_name),
15152         (gst_auto_audio_sink_find_best),
15153         (gst_auto_audio_sink_change_state):
15154           Get rid of old and unused magic sound-server properties stuff.
15155           Add suffix to child sink's name that makes it easy to see from
15156           the name alone which type it actually is (alsa, oss, esd, etc.).
15157
15158 2006-07-27  Wim Taymans  <wim@fluendo.com>
15159
15160         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15161         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
15162         (gst_udpsrc_start):
15163         * gst/udp/gstudpsrc.h:
15164         Rename "buffer" to "buffer-size" to make clear it is a size we set and
15165         not some sort of feature we enable.
15166
15167 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15168
15169         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
15170           Use CLOSE_SOCKET() here instead of close() to maintain
15171           win32 workiness.
15172
15173 2006-07-27  Wim Taymans  <wim@fluendo.com>
15174
15175         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
15176
15177         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15178         (gst_udpsrc_create), (gst_udpsrc_set_property),
15179         (gst_udpsrc_get_property), (gst_udpsrc_start):
15180         * gst/udp/gstudpsrc.h:
15181         Added "buffer-size" property to control the kernel receive buffer size.
15182         Update documentation.
15183         Small cleanups. Fixes #348752.
15184         API: buffer-size property
15185
15186 2006-07-26  Wim Taymans  <wim@fluendo.com>
15187
15188         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15189
15190         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15191         (gst_rtp_pcma_pay_handle_buffer):
15192         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15193         (gst_rtp_pcmu_pay_handle_buffer):
15194         Fix timestamp calculation on outgoing RTP packets.
15195         Fixes #348675.
15196
15197 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15198
15199         * ext/taglib/gstid3v2mux.cc:
15200           Fix writing of comment frames (should be COMM not TCOM),
15201           is still sub-optimal though, since we don't retain or
15202           extract the comment descriptions properly (#334375,
15203           also see #334375).
15204
15205 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15206
15207         * gst/wavparse/gstwavparse.c:
15208           #define 'fact' RIFF chunk if we are not compiling against
15209           -base CVS (we don't want to depend on -base CVS for this
15210           one define only, and also not for release order reasons).
15211
15212 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15213
15214         * ext/taglib/gstid3v2mux.cc:
15215           Handle multiple tags of the same type properly. Re-inject
15216           unparsed ID3v2 frames that we get as binary blobs from
15217           id3demux into the tag again so we don't lose information
15218           when retagging (#334375).
15219
15220 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15221
15222         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15223           Document newly-added properties properly, so that there is a
15224           'Since: 0.10.4' in the plugin docs. Convert some property
15225           names into canonical GObject style (GObject will do that
15226           internally anyway).
15227
15228 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15229
15230         * gst/id3demux/id3tags.c:
15231         (id3demux_add_id3v2_frame_blob_to_taglist):
15232           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15233           well, and add the version to the blob's buffer caps, since that
15234           information will be needed for deserialisation later on (#348644).
15235
15236 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
15237
15238         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15239         (gst_avi_demux_parse_stream):
15240          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15241          indentation and spacing.
15242
15243 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15244
15245         * docs/plugins/Makefile.am:
15246         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15247         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15248         * docs/plugins/gst-plugins-good-plugins.args:
15249         * docs/plugins/inspect/plugin-1394.xml:
15250         * docs/plugins/inspect/plugin-aasink.xml:
15251         * docs/plugins/inspect/plugin-alaw.xml:
15252         * docs/plugins/inspect/plugin-alpha.xml:
15253         * docs/plugins/inspect/plugin-alphacolor.xml:
15254         * docs/plugins/inspect/plugin-annodex.xml:
15255         * docs/plugins/inspect/plugin-apetag.xml:
15256         * docs/plugins/inspect/plugin-auparse.xml:
15257         * docs/plugins/inspect/plugin-autodetect.xml:
15258         * docs/plugins/inspect/plugin-avi.xml:
15259         * docs/plugins/inspect/plugin-cacasink.xml:
15260         * docs/plugins/inspect/plugin-cairo.xml:
15261         * docs/plugins/inspect/plugin-cdio.xml:
15262         * docs/plugins/inspect/plugin-cutter.xml:
15263         * docs/plugins/inspect/plugin-debug.xml:
15264         * docs/plugins/inspect/plugin-dv.xml:
15265         * docs/plugins/inspect/plugin-efence.xml:
15266         * docs/plugins/inspect/plugin-effectv.xml:
15267         * docs/plugins/inspect/plugin-esdsink.xml:
15268         * docs/plugins/inspect/plugin-flac.xml:
15269         * docs/plugins/inspect/plugin-flxdec.xml:
15270         * docs/plugins/inspect/plugin-gconfelements.xml:
15271         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15272         * docs/plugins/inspect/plugin-goom.xml:
15273         * docs/plugins/inspect/plugin-halelements.xml:
15274         * docs/plugins/inspect/plugin-icydemux.xml:
15275         * docs/plugins/inspect/plugin-id3demux.xml:
15276         * docs/plugins/inspect/plugin-jpeg.xml:
15277         * docs/plugins/inspect/plugin-level.xml:
15278         * docs/plugins/inspect/plugin-matroska.xml:
15279         * docs/plugins/inspect/plugin-mulaw.xml:
15280         * docs/plugins/inspect/plugin-multipart.xml:
15281         * docs/plugins/inspect/plugin-navigationtest.xml:
15282         * docs/plugins/inspect/plugin-ossaudio.xml:
15283         * docs/plugins/inspect/plugin-png.xml:
15284         * docs/plugins/inspect/plugin-rtp.xml:
15285         * docs/plugins/inspect/plugin-rtsp.xml:
15286         * docs/plugins/inspect/plugin-shout2send.xml:
15287         * docs/plugins/inspect/plugin-smpte.xml:
15288         * docs/plugins/inspect/plugin-speex.xml:
15289         * docs/plugins/inspect/plugin-udp.xml:
15290         * docs/plugins/inspect/plugin-videobalance.xml:
15291         * docs/plugins/inspect/plugin-videobox.xml:
15292         * docs/plugins/inspect/plugin-videoflip.xml:
15293         * docs/plugins/inspect/plugin-videomixer.xml:
15294         * docs/plugins/inspect/plugin-wavenc.xml:
15295         * docs/plugins/inspect/plugin-wavparse.xml:
15296         * docs/plugins/inspect/plugin-ximagesrc.xml:
15297           Update files to CVS/Prerelease version, add esdsink docs.
15298
15299         * ext/esd/esdsink.c:
15300           Add gtk-doc blurb.
15301
15302         * gst/rtp/gstrtpmp4vpay.c:
15303           Fix typo in element description.
15304
15305 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15306
15307         * ext/esd/esdsink.c: (gst_esdsink_open),
15308         (gst_esdsink_factory_init):
15309           Prevent libesd from auto-spawning a sound daemon if it
15310           is not already running. Now that we don't do evil stuff
15311           like that any longer we can give esdsink a rank so that
15312           autoaudiosink will try it as well if all other audio
15313           sinks fail (#343051).
15314
15315 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15316
15317         * ext/esd/Makefile.am:
15318           Oops, need to remove README from EXTRA_DIST as well.
15319
15320 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15321
15322         * ext/esd/README:
15323           Remove, it contains nothing useful anyway.
15324
15325         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15326         (gst_esdsink_delay):
15327           Some small clean-ups; use GST_BOILERPLATE etc.
15328
15329 2006-07-24  Wim Taymans  <wim@fluendo.com>
15330
15331         * gst/law/alaw-decode.c: (alawdec_getcaps):
15332         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15333         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15334         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15335         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15336
15337 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
15338
15339         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15340         (gst_wavparse_other), (gst_wavparse_perform_seek),
15341         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15342         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15343         (gst_wavparse_pad_query):
15344         * gst/wavparse/gstwavparse.h:
15345           Use information from 'fact' chunk for length calculation of compressed
15346           samples. Calculate bps if bogus value is found in wav header (embeded
15347           mp2/mp3).
15348           
15349
15350 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15351
15352         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
15353
15354         * configure.ac:
15355         * gst/udp/Makefile.am:
15356         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15357         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15358         * gst/udp/gstdynudpsink.h:
15359         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15360         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15361         * gst/udp/gstmultiudpsink.h:
15362         * gst/udp/gstudp.c: (plugin_init):
15363         * gst/udp/gstudpsink.h:
15364         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15365         (gst_udpsrc_start), (gst_udpsrc_stop):
15366         * gst/udp/gstudpsrc.h:
15367         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15368         (gst_udp_net_utils_win32_wsa_startup):
15369         * gst/udp/gstudpnetutils.h:
15370           Port udp plugin to win32 (#345288).
15371
15372 2006-07-24  Wim Taymans  <wim@fluendo.com>
15373
15374         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15375         Remove unwanted DEBUG line.
15376
15377 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15378
15379         * gst/id3demux/gstid3demux.c: (plugin_init):
15380         * gst/id3demux/id3tags.c:
15381         (id3demux_add_id3v2_frame_blob_to_taglist):
15382         * gst/id3demux/id3tags.h:
15383           On second thought, it might be wiser and more efficient
15384           not to do tag registration from a streaming thread.
15385
15386 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15387
15388         * gst/id3demux/id3tags.c:
15389         (id3demux_add_id3v2_frame_blob_to_taglist),
15390         (id3demux_id3v2_frames_to_tag_list):
15391           Put ID3v2 frames we can't parse as binary blobs into private
15392           tags, so that they are not lost when retagging, at least once
15393           id3v2mux has been taught to re-inject those frames again.
15394           See bug #334375.
15395
15396 2006-07-21  Wim Taymans  <wim@fluendo.com>
15397
15398         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15399         (gst_avi_demux_process_next_entry):
15400         Fix some leaks.
15401
15402         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15403         Don't use \n in debug lines.
15404
15405 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
15406
15407         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15408         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15409           Add annodex and icydemux, cleanup the sections a bit
15410
15411 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
15412
15413         Patch by: Alex Lancaster <alexl at users sourceforge net>
15414
15415         * ext/taglib/gstid3v2mux.cc:
15416           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15417           ID3v2 TSSE frames (#347898).
15418
15419 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
15420
15421         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15422           Respect mpegversion for "video/mpeg" and give message in case of
15423           unhandled versions.
15424
15425 2006-07-17  Wim Taymans  <wim@fluendo.com>
15426
15427         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15428         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15429         (gst_pngdec_chain), (gst_pngdec_sink_event),
15430         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15431         (gst_pngdec_sink_activate_push):
15432         * ext/libpng/gstpngdec.h:
15433         Use statically allocated segment instead of leaking.
15434         Various cleanups.
15435         Fix flush and seek handling.
15436
15437 2006-07-16  Wim Taymans  <wim@fluendo.com>
15438
15439         * gst/rtp/Makefile.am:
15440         * gst/rtp/gstrtp.c: (plugin_init):
15441         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15442         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15443         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15444         (gst_rtp_mp4g_depay_set_property),
15445         (gst_rtp_mp4g_depay_get_property),
15446         (gst_rtp_mp4g_depay_change_state),
15447         (gst_rtp_mp4g_depay_plugin_init):
15448         * gst/rtp/gstrtpmp4gdepay.h:
15449         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15450         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15451         (gst_rtp_mp4g_pay_flush):
15452         Added simple generic mpeg4 depayloader.
15453         Fix generic mpeg4 payloader.
15454
15455 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
15456
15457         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15458           Don't try doing state changes on a NULL pointer.
15459
15460 2006-07-14  Wim Taymans  <wim@fluendo.com>
15461
15462         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15463
15464         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15465         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15466         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15467         * gst/rtp/gstrtpamrdepay.h:
15468         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15469         Fixes #321191
15470
15471 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15472
15473         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15474         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15475         Fix segfault when moving mouse pointer to the bottom right corner.
15476
15477 2006-07-12  Wim Taymans  <wim@fluendo.com>
15478
15479         * gst/rtp/Makefile.am:
15480         * gst/rtp/gstrtp.c: (plugin_init):
15481         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15482         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15483         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15484         (gst_rtp_mp2t_depay_set_property),
15485         (gst_rtp_mp2t_depay_get_property),
15486         (gst_rtp_mp2t_depay_change_state),
15487         (gst_rtp_mp2t_depay_plugin_init):
15488         * gst/rtp/gstrtpmp2tdepay.h:
15489         Added mpeg2 TS depayloader. Closing #347234.
15490
15491 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
15492
15493         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15494           Remove g_assert that shouldn't be there and was triggered
15495           after trying to open a device that doesn't exist or can't
15496           be opened for some other reason (#347972).
15497
15498 2006-07-10  Edward Hervey  <edward@fluendo.com>
15499
15500         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15501         (gst_avi_demux_stream_header), (push_tag_lists):
15502         * gst/avi/gstavidemux.h:
15503         Don't push tag events found by gst_riff_parse_info() before outputting
15504         GST_EVENT_NEWSEGMENT.
15505
15506 2006-07-10  Wim Taymans  <wim@fluendo.com>
15507
15508         * gst/rtsp/Makefile.am:
15509         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15510         (rtsp_connection_close):
15511         * gst/rtsp/rtspdefs.h:
15512         replaced closesocket and close in code with one CLOSE_SOCKET. 
15513         Some more cleanups. Fixes #345301.
15514
15515 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
15516
15517         * gst/autodetect/gstautoaudiosink.c:
15518           Fix example pipeline in docs.
15519
15520 2006-07-10  Wim Taymans  <wim@fluendo.com>
15521
15522         Patch by: Rob Taylor <robtaylor at floopily dot org>
15523
15524         * gst/udp/gstmultiudpsink.c: (join_multicast),
15525         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15526         If a destination is added before the stream is set to PAUSED, the
15527         multicast group is not joined as the socket is not created yet. 
15528         Also TTL and LOOP should also be set. Fixes #346921.
15529
15530 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15531
15532         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15533         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15534         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15535         (gst_ximage_src_init):
15536         * sys/ximage/gstximagesrc.h:
15537         Fix use-damage property to actually work :)
15538         Add startx, starty, endx, endy properties so screencasts other than full
15539         screen ones can work.
15540
15541 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15542
15543         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15544         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15545         (gst_ximage_src_class_init), (gst_ximage_src_init):
15546         * sys/ximage/gstximagesrc.h:
15547         Add use_damage property to offer ability to choose whether to use
15548         XDamage or not.
15549
15550 2006-07-07  Wim Taymans  <wim@fluendo.com>
15551
15552         * gst/goom/filters.c: (zoomFilterSetResolution):
15553         Avoid goom coredumping by clearing memory. 
15554         Fixes 345679.
15555
15556 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
15557
15558         * win32/vs6/libgstid3demux.dsp:
15559         Add a link to libgsttag-0.10.lib.
15560
15561 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15562
15563         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15564         (gst_tag_demux_read_range):
15565         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15566         (gst_id3demux_read_range):
15567           Don't return FLOW_UNEXPECTED when a buffer is before
15568           the start of the stream (which might happen with
15569           large ID3v2 tags if the tag reading was done pullrange
15570           based and we then switched to push mode later on).
15571           Fixes regression introduced by commit from June 29th.
15572
15573 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15574
15575         * ext/taglib/gstid3v2mux.cc:
15576           Make UTF-8 the default encoding when writing string
15577           tags (before, our UTF-8 strings would automatically
15578           be converted to ISO-8859-1 by taglib and written as
15579           ISO-8859-1 fields if that was possible).
15580
15581         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15582         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15583         (test_taglib_id3mux_with_tags):
15584           Add test case that makes sure our UTF-8 strings have
15585           actually been written into the tag as UTF-8.
15586
15587 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15588
15589         * configure.ac:
15590           Let's try that again.
15591
15592 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15593
15594         * configure.ac:
15595           Disable monoscope plugin for now until it fulfills
15596           all the requirements.
15597
15598 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15599
15600         * configure.ac:
15601         * gst/monoscope/Makefile.am:
15602         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15603         (gst_monoscope_class_init), (gst_monoscope_init),
15604         (gst_monoscope_finalize), (gst_monoscope_reset),
15605         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15606         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15607         (gst_monoscope_sink_event), (gst_monoscope_src_event),
15608         (gst_monoscope_change_state), (plugin_init):
15609         * gst/monoscope/gstmonoscope.h:
15610           Port monoscope visualisation to 0.10.
15611
15612 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15613
15614         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15615         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15616           Return FLOW_UNEXPECTED when at the end of the file, not
15617           FLOW_ERROR. Fixes 'internal stream error' errors that
15618           would sometimes occur in totem when scrubbing to the
15619           end of an ID3v1 tagged mp3 file.
15620
15621 2006-07-03  Edward Hervey  <edward@fluendo.com>
15622
15623         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15624         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15625         (gst_pngdec_sink_event), (gst_pngdec_change_state):
15626         * ext/libpng/gstpngdec.h:
15627         Implement buffer clipping/dropping using GstSegment.
15628         This provides accurate seeking.
15629
15630 2006-07-03  Edward Hervey  <edward@fluendo.com>
15631
15632         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15633         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15634         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15635         (gst_avi_demux_process_next_entry), (push_tag_lists),
15636         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15637         * gst/avi/gstavidemux.h:
15638         Proper aggregation of each stream's GstFlowReturn in order to figure out
15639         whether the task should stop or not.
15640         Don't send inline events before pushing out a NEW_SEGMENT, more
15641         specifically for GST_TAG_EVENT.
15642         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15643         sub-indexes.
15644
15645 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
15646
15647         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15648
15649         * sys/sunaudio/gstsunaudiomixerctrl.c:
15650         (gst_sunaudiomixer_ctrl_build_list):
15651           Move "Monitor" slider to input tab so it works more like
15652           sdtaudiocontrol, which is what people on Solaris are used
15653           to using for their mixer program (#346259).
15654
15655 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15656
15657         * tests/check/elements/level.c: (GST_START_TEST):
15658           fix a leak, clean up at the end
15659
15660 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15661
15662         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15663         (gst_matroska_demux_send_event),
15664         (gst_matroska_demux_loop_stream_parse_id):
15665         * gst/matroska/matroska-ids.h:
15666           Send tag event after newsegment event.
15667
15668 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15669
15670         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15671         (gst_id3demux_read_range):
15672           Make sure we don't return GST_FLOW_OK with a NULL buffer in
15673           certain cases where a read beyond the end of the file is
15674           requested. Fixes #345930.
15675
15676         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15677         (gst_tag_demux_read_range):
15678           Fix same issue here as well.
15679
15680 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15681
15682         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15683         
15684         Fix hypothetical crash.
15685
15686 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
15687
15688         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15689
15690         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15691           Do not modify the ports value. If the user has turned off the
15692           built-in speakers, then we should not reset it in the prepare
15693           function, since this causes the built-in speakers to turn
15694           back on anytime the user changes a track in totem, rhythmbox,
15695           etc. (#346066).
15696
15697 2006-06-23  Wim Taymans  <wim@fluendo.com>
15698
15699         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15700         Fix double caps unref when negotiation fails.
15701
15702 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15703
15704         * ext/annodex/gstcmmldec.c:
15705         * ext/annodex/gstcmmlenc.c:
15706         * ext/annodex/gstcmmlparser.c:
15707         * ext/dv/gstdvdec.c:
15708         * ext/dv/gstdvdemux.c:
15709         * ext/gdk_pixbuf/pixbufscale.c:
15710         * ext/jpeg/gstjpegenc.c:
15711         * ext/jpeg/gstsmokedec.c:
15712         * ext/jpeg/gstsmokeenc.c:
15713         * ext/libpng/gstpngdec.c:
15714         * ext/libpng/gstpngenc.c:
15715         * ext/speex/gstspeexenc.c:
15716         * gst/alpha/gstalphacolor.c:
15717         * gst/cutter/gstcutter.c:
15718         * gst/debug/gstnavigationtest.c:
15719         * gst/icydemux/gsticydemux.c:
15720         * gst/level/gstlevel.c:
15721         * gst/multipart/multipart.c:
15722         * gst/rtp/gstrtpamrpay.c:
15723         * gst/rtp/gstrtpdepay.c:
15724         * gst/rtp/gstrtpilbcpay.c:
15725         * gst/rtp/gstrtpmp4gpay.c:
15726         * gst/rtp/gstrtpmp4vpay.c:
15727         * gst/rtsp/gstrtpdec.c:
15728         * gst/rtsp/gstrtspsrc.c:
15729         * gst/udp/gstdynudpsink.c:
15730         * gst/udp/gstmultiudpsink.c:
15731         * gst/udp/gstudpsrc.c:
15732         * gst/videobox/gstvideobox.c:
15733         * gst/videofilter/gstvideoflip.c:
15734           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15735           plus two minor macro fixes.
15736
15737 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15738
15739         * gst/matroska/matroska-demux.c:
15740         (gst_matroska_demux_check_subtitle_buffer),
15741         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15742         (gst_matroska_demux_subtitle_caps):
15743         * gst/matroska/matroska-ids.c:
15744         (gst_matroska_track_init_subtitle_context):
15745         * gst/matroska/matroska-ids.h:
15746           Try to fix up broken matroska files containing subtitle
15747           streams with non-UTF8 character encodings (courtesy of
15748           mkvmerge) using either the encoding specified in the
15749           GST_SUBTITLE_ENCODING environment variable or the
15750           current locale's character set if it is non-UTF8.
15751           Fixes #337076.
15752
15753 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15754
15755         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15756           Set image type from APIC frame as "image-type" field
15757           of GST_TAG_IMAGE buffer caps (#344605).
15758
15759 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
15760
15761         * ext/flac/Makefile.am:
15762         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15763         (gst_flac_dec_reset_decoders),
15764         (gst_flac_dec_setup_seekable_decoder),
15765         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15766         (gst_flac_dec_metadata_callback),
15767         (gst_flac_dec_metadata_callback_seekable),
15768         (gst_flac_dec_metadata_callback_stream),
15769         (gst_flac_dec_error_callback),
15770         (gst_flac_dec_error_callback_seekable),
15771         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15772         (gst_flac_dec_read_stream), (gst_flac_dec_write),
15773         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15774         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15775         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15776         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15777         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15778         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15779         (gst_flac_dec_sink_activate_push),
15780         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15781         * ext/flac/gstflacdec.h:
15782           Support chain-based operation, should make flac-over-DAAP
15783           work (#340492).
15784
15785 2006-06-20  Wim Taymans  <wim@fluendo.com>
15786
15787         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15788         Doc updates, merge some unused symbols.
15789
15790 2006-06-20  Wim Taymans  <wim@fluendo.com>
15791
15792         * docs/plugins/Makefile.am:
15793         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15794         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15795         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15796         * gst/rtsp/gstrtspsrc.c:
15797         * gst/rtsp/gstrtspsrc.h:
15798         Added documentation for the rtsp plugin. Fixes #345393.
15799
15800 2006-06-20  Wim Taymans  <wim@fluendo.com>
15801
15802         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15803         (rtsp_connection_close), (rtsp_connection_free):
15804         Use better G_OS_* macros. Fixes #345301 some more.
15805
15806 2006-06-20  Wim Taymans  <wim@fluendo.com>
15807
15808         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15809
15810         * sys/sunaudio/Makefile.am:
15811         * sys/sunaudio/gstsunaudio.c: (plugin_init):
15812         * sys/sunaudio/gstsunaudiomixerctrl.c:
15813         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15814         (gst_sunaudiomixer_ctrl_list_tracks),
15815         (gst_sunaudiomixer_ctrl_get_volume),
15816         (gst_sunaudiomixer_ctrl_set_volume),
15817         (gst_sunaudiomixer_ctrl_set_mute),
15818         (gst_sunaudiomixer_ctrl_set_record):
15819         * sys/sunaudio/gstsunaudiomixerctrl.h:
15820         * sys/sunaudio/gstsunaudiomixertrack.c:
15821         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15822         * sys/sunaudio/gstsunaudiomixertrack.h:
15823         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15824         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15825         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15826         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15827         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15828         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15829         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15830         (gst_sunaudiosrc_reset):
15831         * sys/sunaudio/gstsunaudiosrc.h:
15832         Add a SunAudio source plugin.
15833         Support stereo and right/left channel gain in the mixer plugin.
15834         Support the RECORD flag so that you can switch between line-input and
15835         microphone in gnome-volume-control.
15836         Code cleanups like using an enumerator for track number instead of an 
15837         integer. Fixes #344923.
15838
15839 2006-06-20  Wim Taymans  <wim@fluendo.com>
15840
15841         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15842
15843         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15844         (rtsp_connection_close):
15845         Make RTSP plugin compile on windows. Fixes #345301.
15846         Some changes to original patch to catch errors better.
15847         use ifdef WIN32 instead of ifndef.
15848
15849 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15850
15851         * configure.ac:
15852         If we have libraw1394 >= 1.2.1, then we need libiec61883.
15853
15854 2006-06-18  Edward Hervey  <edward@fluendo.com>
15855
15856         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
15857         After a failed buffer alloc, we need to abort the jpeg decoding (it
15858         started when parsing headers to figure out how many bytes we need
15859         to request downstream).
15860
15861 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
15862
15863         Patch by: Mark Nauwelaerts  <manauw at skynet be>
15864
15865         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15866           Make sure we don't read beyond the end of the file (#345232).
15867
15868 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
15869
15870         * configure.ac:
15871           Fix --disable-external (can't set conditionals conditionally,
15872           #343602).
15873
15874 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
15875
15876         * autogen.sh:
15877         * configure.ac:
15878         * docs/Makefile.am:
15879           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15880
15881         * docs/plugins/Makefile.am:
15882         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15883         * docs/plugins/inspect/plugin-taglib.xml:
15884           Add/fix apev2mux docs.
15885
15886 2006-06-14  Wim Taymans  <wim@fluendo.com>
15887
15888         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15889         (gst_dvdec_finalize), (gst_dvdec_sink_event),
15890         (gst_dvdec_change_state):
15891         Reset segment info on flush.
15892         Alloc segment in _init, free in _finalize.
15893
15894         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15895         Don't send segments twice.
15896
15897 2006-06-14  Wim Taymans  <wim@fluendo.com>
15898
15899         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15900         Respect segment.stop. Fixes #342592.
15901
15902 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15903
15904         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15905           No language specified means the implied language is English
15906           according to the matroska spec (partially fixes #344708);
15907           add some more debug output.
15908
15909 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15910
15911         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15912         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15913         (gst_wavparse_chain):
15914           When operating chain-based, don't make any assumptions about the
15915           chunking of the incoming data and make streaming work on days other
15916           than the second Thursday after a full moon. Also fix up debug
15917           messages here and there and make use of the most excellent new
15918           gst_pad_query_peer_duration() utility function.
15919           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15920
15921         * gst/wavparse/gstwavparse.h:
15922           Remove trailing comma after last enum value, some compilers don't
15923           like that.
15924
15925 2006-06-13  Wim Taymans  <wim@fluendo.com>
15926
15927         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15928         Handle premature EOS gracefully.
15929
15930 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
15931
15932         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15933           Prevent out of bounds array access when scrubbing towards
15934           the end of the file between the last index entry and the
15935           end. Fixes occasional 'start <= stop' newsegment event
15936           assertions when scrubbing in MJPEG files.
15937
15938 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
15939
15940         * tests/check/elements/.cvsignore:
15941           And another one.
15942
15943 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15944
15945         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15946         (scan_encoded_string), (parse_picture_frame):
15947           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15948
15949         * configure.ac:
15950           Require core >= 0.10.8 (for GST_TAG_IMAGE and
15951           GST_TAG_PPEVIEW_IMAGE used in the patch above).
15952
15953 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15954
15955         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15956           gratuitous comment changes
15957         * tests/check/elements/level.c: (GST_START_TEST):
15958           fix level test leaks
15959
15960 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15961
15962         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15963         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15964           Use gst_pad_query_peer_duration() utility function here.
15965
15966 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15967
15968         * autogen.sh:
15969           require am17
15970         * configure.ac:
15971         * ext/annodex/Makefile.am:
15972         * ext/cdio/Makefile.am:
15973         * ext/dv/Makefile.am:
15974         * ext/esd/Makefile.am:
15975         * ext/flac/Makefile.am:
15976         * ext/gdk_pixbuf/Makefile.am:
15977         * ext/ladspa/Makefile.am:
15978         * ext/libcaca/Makefile.am:
15979         * ext/speex/Makefile.am:
15980         * ext/taglib/Makefile.am:
15981         * sys/oss/Makefile.am:
15982         * sys/sunaudio/Makefile.am:
15983         * sys/ximage/Makefile.am:
15984           clean up build further
15985
15986 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15987
15988         * gconf/Makefile.am:
15989           Honour --disable-schemas-install configure option. Fixes #344100.
15990
15991 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15992
15993         * tests/examples/level/Makefile.am:
15994           Add -lm to LIBS for pow() function, don't assume one of our
15995           dependencies (such as libxml-2.0) drags it in automatically
15996           (#343603).
15997
15998 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15999
16000         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
16001
16002         * configure.ac:
16003           We should use $SED and not $(SED) in configure.ac (#343678).
16004
16005 2006-06-09  Wim Taymans  <wim@fluendo.com>
16006
16007         Patch by: Brian Cameron <brian dot cameron at sun dot com>
16008
16009         * sys/sunaudio/gstsunaudiomixerctrl.c:
16010         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
16011         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
16012         (gst_sunaudiomixer_ctrl_set_mute):
16013         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
16014         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
16015         (gst_sunaudiosink_write):
16016         Attached find a patch that fixes a number of bugs with the SunAudio
16017         mixer plugin and fixes #344101:
16018         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
16019            tracks onto the tracklist causing gnome-volume-control's preferences
16020            dialog to be messed up and would core dump if you checked/unchecked
16021            any item.
16022         2. We weren't previously setting the MUTE flag properly.  Fixing this
16023            makes gnome-volume-control work better.
16024         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
16025            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
16026            gnome-volume-control look better.
16027         Also some minor cleanup in gstsunaudiosink.c.
16028
16029 2006-06-09  Wim Taymans  <wim@fluendo.com>
16030
16031         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
16032         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
16033         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
16034         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
16035         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
16036         * ext/jpeg/gstjpegdec.h:
16037         API: Added IDCT method property
16038         Small cleanups.
16039         Avoid dynamic allocation of trivial fixed structure.
16040         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
16041
16042 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16043
16044         * configure.ac:
16045         We now require libraw1394 >= 1.1.0 and that version onwards all
16046         have .pc files.
16047
16048 2006-06-02  Edward Hervey  <edward@fluendo.com>
16049
16050         * gst/law/alaw-decode.c: (alawdec_getcaps): 
16051         Trying to get items from an ANY or EMPTY caps is ... stupid.
16052
16053 2006-06-02  Edward Hervey  <edward@fluendo.com>
16054
16055         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
16056         (gst_dvdec_chain), (gst_dvdec_change_state):
16057         * ext/dv/gstdvdec.h:
16058         Added GstSegment handling, now implements dropping/clipping.
16059
16060 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
16061
16062         * ext/aalib/gstaasink.h:
16063         * ext/annodex/gstcmmldec.h:
16064         * ext/cairo/gsttimeoverlay.h:
16065         * ext/dv/gstdvdec.h:
16066         * ext/dv/gstdvdemux.h:
16067         * ext/esd/esdmon.h:
16068         * ext/esd/esdsink.h:
16069         * ext/flac/gstflacenc.h:
16070         * ext/gconf/gstgconfaudiosink.h:
16071         * ext/gconf/gstgconfaudiosrc.h:
16072         * ext/gconf/gstgconfvideosink.h:
16073         * ext/gconf/gstgconfvideosrc.h:
16074         * ext/gdk_pixbuf/gstgdkanimation.h:
16075         * ext/gdk_pixbuf/pixbufscale.h:
16076         * ext/hal/gsthalaudiosink.h:
16077         * ext/hal/gsthalaudiosrc.h:
16078         * ext/jpeg/gstjpegenc.h:
16079         * ext/jpeg/gstsmokedec.h:
16080         * ext/jpeg/gstsmokeenc.h:
16081         * ext/libcaca/gstcacasink.h:
16082         * ext/libmng/gstmngdec.h:
16083         * ext/libmng/gstmngenc.h:
16084         * ext/libpng/gstpngdec.h:
16085         * ext/libpng/gstpngenc.h:
16086         * ext/raw1394/gstdv1394src.h:
16087         * ext/speex/gstspeexenc.h:
16088         * gst/autodetect/gstautoaudiosink.h:
16089         * gst/autodetect/gstautovideosink.h:
16090         * gst/avi/gstavidemux.h:
16091         * gst/cutter/gstcutter.h:
16092         * gst/debug/efence.h:
16093         * gst/debug/gstnavigationtest.h:
16094         * gst/debug/gstnavseek.h:
16095         * gst/flx/gstflxdec.h:
16096         * gst/goom/gstgoom.h:
16097         * gst/icydemux/gsticydemux.h:
16098         * gst/id3demux/gstid3demux.h:
16099         * gst/law/alaw-decode.h:
16100         * gst/law/alaw-encode.h:
16101         * gst/law/mulaw-decode.h:
16102         * gst/law/mulaw-encode.h:
16103         * gst/matroska/matroska-mux.h:
16104         * gst/median/gstmedian.h:
16105         * gst/oldcore/gstaggregator.h:
16106         * gst/oldcore/gstfdsink.h:
16107         * gst/oldcore/gstmd5sink.h:
16108         * gst/oldcore/gstmultifilesrc.h:
16109         * gst/oldcore/gstpipefilter.h:
16110         * gst/oldcore/gstshaper.h:
16111         * gst/oldcore/gststatistics.h:
16112         * gst/rtp/gstasteriskh263.h:
16113         * gst/rtp/gstrtpL16depay.h:
16114         * gst/rtp/gstrtpL16pay.h:
16115         * gst/rtp/gstrtpamrdepay.h:
16116         * gst/rtp/gstrtpamrpay.h:
16117         * gst/rtp/gstrtpdepay.h:
16118         * gst/rtp/gstrtpgsmdepay.h:
16119         * gst/rtp/gstrtpgsmpay.h:
16120         * gst/rtp/gstrtph263pay.h:
16121         * gst/rtp/gstrtph263pdepay.h:
16122         * gst/rtp/gstrtph263ppay.h:
16123         * gst/rtp/gstrtpmp4gpay.h:
16124         * gst/rtp/gstrtpmp4vdepay.h:
16125         * gst/rtp/gstrtpmp4vpay.h:
16126         * gst/rtp/gstrtpmpadepay.h:
16127         * gst/rtp/gstrtpmpapay.h:
16128         * gst/rtp/gstrtppcmadepay.h:
16129         * gst/rtp/gstrtppcmapay.h:
16130         * gst/rtp/gstrtppcmudepay.h:
16131         * gst/rtp/gstrtppcmupay.h:
16132         * gst/rtp/gstrtpspeexdepay.h:
16133         * gst/rtp/gstrtpspeexpay.h:
16134         * gst/rtsp/gstrtpdec.h:
16135         * gst/rtsp/gstrtspsrc.h:
16136         * gst/smpte/gstsmpte.h:
16137         * gst/udp/gstdynudpsink.h:
16138         * gst/udp/gstmultiudpsink.h:
16139         * gst/udp/gstudpsink.h:
16140         * gst/udp/gstudpsrc.h:
16141         * gst/videofilter/gstvideobalance.h:
16142         * gst/videofilter/gstvideoflip.h:
16143         * sys/oss/gstossdmabuffer.h:
16144         * sys/oss/gstossmixerelement.h:
16145         * sys/oss/gstosssink.h:
16146         * sys/oss/gstosssrc.h:
16147         * sys/osxvideo/osxvideosink.h:
16148         * sys/sunaudio/gstsunaudiomixer.h:
16149         * sys/sunaudio/gstsunaudiosink.h:
16150         * sys/ximage/gstximagesrc.h:
16151         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16152
16153 2006-05-31  Wim Taymans  <wim@fluendo.com>
16154
16155         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16156         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
16157         (gst_goom_src_setcaps), (gst_goom_src_event),
16158         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
16159         (gst_goom_change_state):
16160         * gst/goom/gstgoom.h:
16161         Handle QoS.
16162         Handle flushing, discont and events.
16163         Fix timestamps and various other cleanups.
16164
16165 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16166
16167         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
16168         Fix bus reset when using libiec61883
16169
16170 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16171
16172         * configure.ac:
16173         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
16174         * ext/raw1394/Makefile.am:
16175         Add CFLAGS.
16176         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
16177         New method, to receive using libiec61883.
16178         (gst_dv1394src_iso_receive),
16179         #ifdef'd out if libiec61883 is present.
16180         (gst_dv1394src_bus_reset),
16181         Get userdata correctly if using libiec61883. 
16182         (gst_dv1394src_create),
16183         When using libiec61883, only poll one fd and no need to read.
16184         (gst_dv1394src_discover_avc_node),
16185         Replace g_warnings.
16186         (gst_dv1394src_start),
16187         Create new handle when we know which dv port.  More reliable
16188         than setting port on an existing handle.  Initialise libiec61883.
16189         (gst_dv1394src_stop):
16190         If using libiec61883, then cleanup its handle properly.
16191         * ext/raw1394/gstdv1394src.h:
16192         Add libiec61883 handle.
16193
16194 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
16195
16196         * gst/avi/gstavidemux.c:
16197           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16198         * win32/MANIFEST:
16199           sort file listing
16200         * win32/vs6/libgstavi.dsp:
16201           add gstavimux.c to the project
16202         * win32/vs6/libgstid3demux.dsp:
16203           add link to zlib library
16204         * win32/vs6/libgstmatroska.dsp:
16205           add matroska-ids.c to the project
16206
16207 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
16208
16209         Patch by: Sebastian Dröge  <mail at slomosnail de >
16210
16211         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16212         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16213         * ext/taglib/Makefile.am:
16214         * ext/taglib/gstapev2mux.cc:
16215         * ext/taglib/gstapev2mux.h:
16216         * ext/taglib/gstid3v2mux.cc:
16217         * ext/taglib/gsttaglibmux.c: (plugin_init):
16218         * ext/taglib/gsttaglibmux.h:
16219           Add apev2mux element (#343122).
16220         
16221         * tests/check/Makefile.am:
16222         * tests/check/elements/apev2mux.c:
16223         (test_taglib_apev2mux_create_tags),
16224         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16225         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16226         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16227         (apev2mux_suite), (main):
16228           Add unit test for apev2mux element.
16229
16230 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16231
16232         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16233         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16234         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16235           GST_PTR_FORMAT should be used to print caps in debug statements.
16236
16237 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16238
16239         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
16240
16241         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16242         (ape_demux_parse_tags):
16243           Some clean-ups and additions: map APE 'file' tag to
16244           GST_TAG_LOCATION (#343123); add support for extracting
16245           the track count and clean up parsing a bit (#343127).
16246
16247 2006-05-28  Edward Hervey  <edward@fluendo.com>
16248
16249         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16250         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16251
16252 2006-05-28  Edward Hervey  <edward@fluendo.com>
16253
16254         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16255         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16256         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16257         * ext/jpeg/gstjpegdec.h:
16258         Clip outgoing buffers according to currently configured segment.
16259
16260 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16261
16262         * ext/taglib/gstid3v2mux.cc:
16263           Handle  writing of track-count or album-volume-count without
16264           track-number or albume-volume-number (in this case the number
16265           will just be set to 0).
16266
16267         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16268           It would be nice if we actually checked the values received for
16269           track/album-volume number/count in  _check_tags(), rather than
16270           setting them again ...
16271
16272 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16273
16274         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16275           A track/volume number or count of 0 does not make sense,
16276           just ignore it along with negative numbers (a tag might
16277           only contain a track count without a track number).
16278
16279 2006-05-27  Edward Hervey  <edward@fluendo.com>
16280
16281         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16282         (gst_jpeg_dec_sink_event):
16283         Abort decompression when receiving FLUSH_STOP. This should avoid
16284         issues when interrupting decoding with flushes.
16285
16286 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16287
16288         * ext/flac/gstflac.c:
16289           Don't #include file we don't dist any longer.
16290
16291 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16292
16293         * README:
16294           Replace current README (containing the release notes from
16295           some 0.9.x version) with a proper README taken from the core.
16296
16297 2006-05-24  Wim Taymans  <wim@fluendo.com>
16298
16299         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16300         Implement EOS correctly by either posting
16301         SEGMENT_DONE or pushing an EOS message depending
16302         on the seek type. Fixes #342592
16303
16304 2006-05-24  Wim Taymans  <wim@fluendo.com>
16305
16306         * gst/law/alaw-decode.c: (gst_alawdec_chain):
16307         * gst/law/alaw-decode.h:
16308         * gst/law/alaw-encode.c: (gst_alawenc_chain):
16309         * gst/law/alaw-encode.h:
16310         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16311         * gst/law/mulaw-decode.h:
16312         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16313         * gst/law/mulaw-encode.h:
16314         Some cleanups in the chain functions.
16315         Remove some GStreamer 0.0.2 bits.
16316
16317 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16318
16319         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16320
16321         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16322           gst_collect_pads_stop() needs to be called before chaining up
16323           to the parent class (#342734).
16324
16325 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16326
16327         * ext/flac/Makefile.am:
16328         * ext/flac/flac_compat.h:
16329         * ext/flac/gstflac.c:
16330         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16331         * ext/flac/gstflacenc.c:
16332           Remove backwards compatibility cruft for dealing with FLAC API
16333           changes in the 1.0.x series - we require 1.1.1 or newer these days.
16334
16335 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16336
16337         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16338         (gst_matroska_demux_push_xiph_codec_priv_data),
16339         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16340         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16341         * gst/matroska/matroska-ids.h:
16342         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16343         (gst_matroska_mux_video_pad_setcaps),
16344         (xiph3_streamheader_to_codecdata),
16345         (vorbis_streamheader_to_codecdata),
16346         (theora_streamheader_to_codecdata),
16347         (gst_matroska_mux_audio_pad_setcaps),
16348         (gst_matroska_mux_write_data):
16349           Add support for muxing/demuxing theora video (#342448; too bad
16350           none of the usual linux players can actually play this). Playback
16351           in GStreamer will require additional changes to theoradec in -base.
16352           Refactor streamheaders <=> CodecPrivateData code a bit; some small
16353           cleanups.
16354
16355 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16356
16357         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16358         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16359           Fix crashes when the horizontal subsampling is 1.
16360           Fixes #342097.
16361
16362 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16363
16364         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16365
16366         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16367         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16368         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16369         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16370         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16371         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16372         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16373         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16374         (gst_avi_mux_change_state):
16375         * gst/avi/gstavimux.h:
16376           Some enhancements for avimux (#342526):
16377            - add odml (large file) index support
16378            - store codec init data (e.g. huffyuv)
16379            - miscellaneous other fixes/cleanups
16380
16381 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
16382
16383         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16384         Don't output any tag when we encounter a negative track number - the
16385         tag type is uint, so we end up outputting huge positive numbers
16386         instead. (Fixes: #342029)
16387
16388 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16389
16390         * configure.ac:
16391           update for new GSTPB_PLUGINS_DIR
16392
16393 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
16394
16395         * rtp/gst/gstrtph263pay.c:
16396         Properly set static caps for H263 at 34.
16397
16398 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
16399
16400         Patch by: James "Doc" Livingston  <doclivingston gmail com>
16401
16402         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16403           Merge event tags and tag setter tags correctly (#339918). Also,
16404           don't leak taglist in case of an error.
16405           
16406 2006-05-17  Edward Hervey  <edward@fluendo.com>
16407
16408         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
16409         We can only do caps intersection if the othercaps are non-empty and not
16410         ANY. Else we return the pad template (base_caps).
16411
16412 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
16413
16414         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16415           Fix crash when outputting debugging information for certain
16416           pictures (always good to use the right struct member for
16417           the number of records in an array).
16418
16419 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
16420
16421         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
16422
16423         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16424         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16425         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16426         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16427         (gst_ebml_read_float), (gst_ebml_read_ascii),
16428         (gst_ebml_read_binary):
16429           Don't create unnecessary sub-buffers all the time. Dramatically
16430           improves performance with multiple concurrently running
16431           matroskademux instances (#341818) (and avoids doing
16432           unnecessarily inefficient things in the general case).
16433
16434 2006-05-16  Edward Hervey  <edward@fluendo.com>
16435
16436         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
16437         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16438         return value of gst_pad_push_event().
16439
16440 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
16441
16442         * gst/autodetect/gstautoaudiosink.c:
16443         (gst_auto_audio_sink_find_best):
16444         * gst/autodetect/gstautovideosink.c:
16445         (gst_auto_video_sink_find_best):
16446         Make the name of the child element be based on the name of the
16447         parent, so that debug output is more useful.
16448         
16449         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16450         (parse_insert_string_field), (parse_split_strings):
16451         Rework string parsing to always walk over BOM markers in UTF16
16452         strings, using the endianness indicated by the innermost one,
16453         then trying the opposite endianness if that fails to convert
16454         to valid UTF-8. Fixes #341774
16455
16456 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16457
16458         Patch from: Matthieu <matthieu at fluendo dot com>
16459
16460         * ext/libpng/Makefile.am:
16461         Add LIBPNG_CFLAGS.
16462
16463 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
16464
16465         * ext/taglib/gstid3v2mux.cc:
16466           Add support for writing images (APIC frames) into ID3v2
16467           tags (picture type always set to 'other' for now though).
16468
16469 2006-05-14  Michael Smith  <msmith@fluendo.com>
16470
16471         * gst/wavparse/gstwavparse.c:
16472           Update docs; wavparse implements push and pull modes.
16473
16474 2006-05-12  Wim Taymans  <wim@fluendo.com>
16475
16476         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16477         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16478         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16479         Ooops, bitten by the copy-and-paste design paradigm, fixes
16480         seek again.
16481
16482 2006-05-12  Wim Taymans  <wim@fluendo.com>
16483
16484         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16485         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16486         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16487         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16488         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16489         (gst_avi_demux_massage_index),
16490         (gst_avi_demux_calculate_durations_from_index),
16491         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16492         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16493         (gst_avi_demux_loop):
16494         * gst/avi/gstavidemux.h:
16495         Some cleanups, prepare to use GstSegment.
16496         Fix error in entry walking code.
16497         Fix VBR detection.
16498         Smarter timestamp calculation code.
16499         Uniform error/eos handling.
16500
16501 2006-05-12  Michael Smith  <msmith@fluendo.com>
16502
16503         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16504         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16505           Fix use of uninitialised values if we're NOT seeking in ready.
16506           Fix typos.
16507
16508 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
16509
16510         * gst/wavparse/Makefile.am:
16511           Add CFLAGS and LIBS for libgstbase, fixes build on
16512           Cygwin (#341489).
16513
16514 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16515
16516         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16517           Some more debug info. No need to check whether the string
16518           returned by g_convert() is really UTF-8 - either it is or
16519           we get NULL returned.
16520
16521 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
16522
16523         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16524           Fix parsing of numeric genre strings some more, by ensuring that
16525           we only try and parse strings that a) Start with '(' and b) Consist
16526           only of digits.
16527           Also, when finding an escaping '((' sequence, bust it back to '(' by
16528           swallowing the first parenthesis
16529
16530 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16531
16532         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16533         (gst_esdsink_open), (gst_esdsink_close):
16534         * ext/esd/esdsink.h:
16535           Move the esd_get_server_info() into gst_esdsink_open() and fail
16536           with a decent error message on errors.
16537
16538 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16539
16540         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16541         (gst_esdmon_channels_get_type):
16542         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16543         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16544         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16545         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16546         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16547         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16548         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16549         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16550         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16551         * gst/videomixer/videomixer.c:
16552         (gst_video_mixer_background_get_type):
16553           Const-ify GEnumValue arrays.
16554
16555 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16556
16557         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
16558
16559         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16560         (gst_avi_mux_do_video_buffer):
16561           Work around gst_buffer_make_metadata_writable() bug that
16562           results in avimux marking all frames in the index as
16563           keyframes (#340859).
16564           
16565 2006-05-08  Wim Taymans  <wim@fluendo.com>
16566
16567         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16568         Make parsing of urls suck slightly less.
16569
16570 2006-05-08  Edward Hervey  <edward@fluendo.com>
16571
16572         * autogen.sh: (CONFIGURE_DEF_OPT): 
16573         libtoolize on Darwin/MacOSX is called glibtoolize.
16574
16575 2006-05-08  Wim Taymans  <wim@fluendo.com>
16576
16577         Patch by: Jens Granseuer <jensgr at gmx dot net>
16578
16579         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16580         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16581         C89 compliance fixes. Fixes #340980
16582
16583 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
16584
16585         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16586         * ext/flac/gstflacdec.h:
16587           Handle segment seeks that include the end of the file as stop point
16588           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16589           message instead of an EOS event in case we're in segment seek
16590           mode (fixes #340699).
16591           
16592 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
16593
16594         * ext/cairo/gsttextoverlay.c:
16595         * ext/flac/gstflacdec.c:
16596         * ext/gdk_pixbuf/pixbufscale.c:
16597         * gst/apetag/gstapedemux.c:
16598         * gst/debug/breakmydata.c:
16599         * gst/debug/testplugin.c:
16600         * gst/matroska/ebml-write.c:
16601         * gst/multipart/multipartdemux.c:
16602         * sys/osxaudio/gstosxaudiosink.c:
16603         * sys/osxaudio/gstosxaudiosrc.c:
16604         Add semicolons after GST_BOILERPLATE[_FULL] so that
16605         indent doesn't mess up following lines.
16606
16607 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
16608
16609         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16610
16611         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16612           Don't leak caps when freeing the stream context (#340623).
16613
16614 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
16615
16616         * configure.ac:
16617           Back to CVS
16618
16619 === release 0.10.3 ===
16620
16621 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
16622
16623         * configure.ac:
16624           releasing 0.10.3, "Desplazado"
16625
16626 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16627
16628         * gst/matroska/matroska-mux.c:
16629         (gst_matroska_mux_stream_is_vorbis_header),
16630         (gst_matroska_mux_write_data):
16631           Don't strcmp() NULL strings.
16632           Only start new clusters on video keyframes, not on any
16633           random audio buffer that doesn't have the DELTA_UNIT
16634           flag set (fixes 'make check' again).
16635
16636 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16637
16638         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16639
16640         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16641         (gst_matroska_mux_stream_is_vorbis_header),
16642         (gst_matroska_mux_write_data):
16643           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16644           value and then dead-lock when muxing vorbis audio streams
16645           (the three vorbis header buffers carry no timestamp, and it
16646           would try to mux these after all video buffers). Fixes #340346.
16647
16648           Improve clustering: start a new cluster also whenever we get
16649           a keyframe.     
16650
16651 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16652
16653         * win32/common/config.h:
16654         * win32/MANIFEST
16655           add the generated file as well
16656
16657 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16658
16659         * Makefile.am:
16660         * configure.ac:
16661         * win32/common/config.h.in:
16662           add win32 stuff
16663
16664 2006-05-03  Michael Smith  <msmith@fluendo.com>
16665
16666         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16667           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16668           SUCKS.
16669
16670 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16671
16672         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16673         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16674         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16675           don't leak caps-string
16676
16677 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16678
16679         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16680         (gst_id3demux_sink_activate):
16681           Let core insert default error message for TYPE_NOT_FOUND
16682           errors, it's just as good as our own and has the added
16683           bonus of being translated.
16684
16685 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16686
16687         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16688         (gst_tag_demux_sink_event):
16689         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16690         (gst_id3demux_sink_event):
16691           Post an error message when we get an EOS event and were not
16692           able to find out the type of stream.
16693
16694         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16695         (test_taglib_id3mux_with_tags):
16696           Decrease num-buffers to 16 per iteration again, otherwise the
16697           many memcpy()s and reallocations in the test will hammer slow
16698           CPUs completely and make the test timeout.
16699
16700 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16701
16702         * configure.ac:
16703           figure out where plugins-base plugins are
16704         * tests/check/Makefile.am:
16705           use plugins-base plugins, so we have typefind functions
16706         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16707           increase num-buffers, this makes sure the test errors out instead
16708           of timing out when no typefind functions are present
16709
16710 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16711
16712         * docs/plugins/Makefile.am:
16713           also check .cc files for gtk-doc markup
16714         * configure.ac:
16715         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16716         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16717         * tests/check/Makefile.am:
16718         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16719         * ext/Makefile.am:
16720         * ext/taglib/Makefile.am:
16721         * ext/taglib/gstid3v2mux.h:
16722         * ext/taglib/gsttaglibmux.c:
16723         * ext/taglib/gsttaglibmux.h:
16724           move taglib-based id3v2muxer to -good.  Fixes #336110.
16725
16726 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16727
16728         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16729           ... and fix multichannel/WAVFORMATEX support again.
16730
16731 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
16732
16733         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16734         (gst_wavparse_class_init), (gst_wavparse_dispose),
16735         (gst_wavparse_reset), (gst_wavparse_init),
16736         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16737         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16738         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16739         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16740         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16741         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16742         (gst_wavparse_stream_data), (gst_wavparse_loop),
16743         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16744         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16745         (gst_wavparse_change_state), (plugin_init):
16746         * gst/wavparse/gstwavparse.h:
16747           Add push (streaming) mode to wavparse (fixes #337625)
16748
16749 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16750
16751         * configure.ac:
16752         * tests/Makefile.am:
16753           add ximagesrc icles test
16754
16755 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16756
16757         * configure.ac:
16758         * docs/plugins/Makefile.am:
16759         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16760         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16761         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16762         (gst_cmml_enc_push_clip):
16763         * sys/Makefile.am:
16764         * sys/ximage/Makefile.am:
16765         * sys/ximage/gstximagesrc.c:
16766           Move ximagesrc plug-in to good after review.  Fixes #336756.
16767
16768 2006-04-28  Michael Smith  <msmith@fluendo.com>
16769
16770         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16771         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16772         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16773         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16774         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16775         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16776         * gst/icydemux/gsticydemux.h:
16777           Fix event handling: cache events when typefinding and forward later.
16778
16779 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16780
16781         * sys/osxaudio/gstosxaudiosink.c:
16782         (plugin_init):
16783          Register osxaudiosrc to the plugin.
16784         * sys/osxaudio/gstosxaudiosrc.c:
16785         (gst_osx_audio_src_osxelement_do_init),
16786         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16787         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16788         (gst_osx_audio_src_get_property),
16789         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16790         (gst_osx_audio_src_osxelement_init):
16791         * sys/osxaudio/gstosxaudiosrc.h:
16792           Port of osxaudiosrc to 0.10.
16793         * sys/osxaudio/Makefile.am:
16794           Add osxaudiosrc
16795
16796 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16797
16798         * sys/osxaudio/gstosxringbuffer.c:
16799         * sys/osxaudio/gstosxringbuffer.h:
16800           Forgot to commit earlier, part of the OSX audio plugin port
16801
16802 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16803
16804         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16805         (parse_split_strings):
16806           Recognise and skip any byte order marker (BOM) in
16807           UTF-16 strings.
16808
16809 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16810
16811         * docs/plugins/Makefile.am:
16812         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16813         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16814         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16815         * docs/plugins/inspect/plugin-avi.xml:
16816         * gst/avi/gstavidemux.c:
16817         * gst/avi/gstavimux.c:
16818           Add docs for both avidemux and avimux.
16819
16820 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16821
16822         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16823
16824         * gst/avi/Makefile.am:
16825         * gst/avi/gstavi.c: (plugin_init):
16826         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16827         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16828         (gst_avi_mux_class_init), (gst_avi_mux_init),
16829         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16830         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16831         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16832         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16833         (gst_avi_mux_riff_get_avix_header),
16834         (gst_avi_mux_riff_get_video_header),
16835         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16836         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16837         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16838         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16839         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16840         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16841         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16842         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16843         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16844         (gst_avi_mux_change_state):
16845         * gst/avi/gstavimux.h:
16846           Port AVI muxer to GStreamer-0.10 (#332031).
16847
16848         * tests/check/Makefile.am:
16849         * tests/check/elements/avimux.c:
16850         * tests/check/elements/.cvsignore:
16851           Add unit test for AVI muxer.
16852
16853 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
16854
16855         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16856         (gst_wavparse_class_init), (gst_wavparse_reset),
16857         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16858         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16859         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16860         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16861         (gst_wavparse_stream_data), (gst_wavparse_loop),
16862         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16863         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16864         (plugin_init):
16865         * gst/wavparse/gstwavparse.h:
16866           reverted patch #337625 for the price of 1 hour sleep
16867
16868 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16869
16870         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16871         (gst_wavparse_class_init), (gst_wavparse_reset),
16872         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16873         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16874         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16875         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16876         (gst_wavparse_stream_data), (gst_wavparse_loop),
16877         (gst_wavparse_chain), (plugin_init):
16878         * gst/wavparse/gstwavparse.h:
16879           correct partial implementation of push mode
16880           (from my last commit)
16881
16882 2006-04-26  Wim Taymans  <wim@fluendo.com>
16883
16884         * ext/esd/esdsink.c:
16885         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16886         it is not in esd.h
16887
16888 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
16889
16890         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16891         (gst_au_parse_class_init), (gst_au_parse_init),
16892         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16893         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16894         (gst_au_parse_chain), (gst_au_parse_src_convert),
16895         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16896         (gst_au_parse_sink_event), (gst_au_parse_src_event),
16897         (gst_au_parse_change_state):
16898         * gst/auparse/gstauparse.h:
16899           Rewrite auparse to suck a little bit less: make source pad
16900           dynamic, so decodebin/playbin work with non-raw formats
16901           like alaw/mulaw; add query function for duration/position
16902           queries; check whether we have enough data before attempting
16903           to parse the header (instead of crashing when that is not the
16904           case); work around audioconvert sucking by swapping endianness
16905           to the native endianness ourselves for float formats; send
16906           initial newsegment event. Fixes #161712.
16907
16908 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16909
16910         * sys/osxaudio/Makefile.am:
16911         * sys/osxaudio/gstosxaudioelement.c:
16912         (gst_osx_audio_element_get_type),
16913         (gst_osx_audio_element_class_init):
16914         * sys/osxaudio/gstosxaudioelement.h:
16915         * sys/osxaudio/gstosxaudiosink.c:
16916         (gst_osx_audio_sink_osxelement_do_init),
16917         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16918         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16919         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16920         (gst_osx_audio_sink_create_ringbuffer),
16921         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16922         (plugin_init):
16923         * sys/osxaudio/gstosxaudiosink.h:
16924         Port of osxaudiosink to 0.10
16925
16926 2006-04-26  Wim Taymans  <wim@fluendo.com>
16927
16928         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16929         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16930         the size of the ringbuffer. This should fix hangs with older 
16931         esd sound servers.
16932
16933 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16934
16935         * ext/aalib/gstaasink.c:
16936         * ext/annodex/gstcmmldec.c:
16937         * ext/annodex/gstcmmlenc.c:
16938         * ext/cairo/gsttextoverlay.c:
16939         * ext/cairo/gsttimeoverlay.c:
16940         * ext/cdio/gstcdiocddasrc.c:
16941         * ext/dv/gstdvdec.c:
16942         * ext/dv/gstdvdemux.c:
16943         * ext/esd/esdmon.c:
16944         * ext/esd/esdsink.c:
16945         * ext/flac/gstflacenc.c:
16946         * ext/flac/gstflactag.c:
16947         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16948         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16949         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16950         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16951         * ext/gdk_pixbuf/pixbufscale.c:
16952         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16953         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16954         * ext/jpeg/gstjpegdec.c:
16955         * ext/jpeg/gstjpegenc.c:
16956         * ext/jpeg/gstsmokedec.c:
16957         * ext/jpeg/gstsmokeenc.c:
16958         * ext/libcaca/gstcacasink.c:
16959         * ext/libmng/gstmngdec.c:
16960         * ext/libmng/gstmngenc.c:
16961         * ext/libpng/gstpngdec.c:
16962         * ext/libpng/gstpngenc.c:
16963         * ext/mikmod/gstmikmod.c:
16964         * ext/raw1394/gstdv1394src.c:
16965         * ext/shout2/gstshout2.c: (gst_shout2send_init):
16966         * ext/shout2/gstshout2.h:
16967         * ext/speex/gstspeexdec.c:
16968         * ext/speex/gstspeexenc.c:
16969         * gst/alpha/gstalpha.c:
16970         * gst/alpha/gstalphacolor.c:
16971         * gst/apetag/gstapedemux.c:
16972         * gst/auparse/gstauparse.c:
16973         * gst/autodetect/gstautoaudiosink.c:
16974         (gst_auto_audio_sink_base_init):
16975         * gst/autodetect/gstautovideosink.c:
16976         (gst_auto_video_sink_base_init):
16977         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16978         * gst/avi/gstavimux.c: (gst_avimux_base_init):
16979         * gst/cutter/gstcutter.c:
16980         * gst/debug/breakmydata.c:
16981         * gst/debug/efence.c:
16982         * gst/debug/gstnavigationtest.c:
16983         * gst/debug/gstnavseek.c:
16984         * gst/debug/negotiation.c:
16985         * gst/debug/progressreport.c:
16986         * gst/debug/testplugin.c:
16987         * gst/effectv/gstaging.c:
16988         * gst/effectv/gstdice.c:
16989         * gst/effectv/gstedge.c:
16990         * gst/effectv/gstquark.c:
16991         * gst/effectv/gstrev.c:
16992         * gst/effectv/gstshagadelic.c:
16993         * gst/effectv/gstvertigo.c:
16994         * gst/effectv/gstwarp.c:
16995         * gst/flx/gstflxdec.c:
16996         * gst/goom/gstgoom.c:
16997         * gst/icydemux/gsticydemux.c:
16998         * gst/id3demux/gstid3demux.c:
16999         * gst/interleave/deinterleave.c:
17000         * gst/interleave/interleave.c:
17001         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17002         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17003         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17004         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17005         * gst/level/gstlevel.c:
17006         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17007         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17008         * gst/median/gstmedian.c:
17009         * gst/monoscope/gstmonoscope.c:
17010         * gst/multipart/multipartdemux.c:
17011         * gst/multipart/multipartmux.c:
17012         * gst/oldcore/gstaggregator.c:
17013         * gst/oldcore/gstfdsink.c:
17014         * gst/oldcore/gstmd5sink.c:
17015         * gst/oldcore/gstmultifilesrc.c:
17016         * gst/oldcore/gstpipefilter.c:
17017         * gst/oldcore/gstshaper.c:
17018         * gst/oldcore/gststatistics.c:
17019         * gst/rtp/gstasteriskh263.c:
17020         * gst/rtp/gstrtpL16depay.c:
17021         * gst/rtp/gstrtpL16pay.c:
17022         * gst/rtp/gstrtpamrdepay.c:
17023         * gst/rtp/gstrtpamrpay.c:
17024         * gst/rtp/gstrtpdepay.c:
17025         * gst/rtp/gstrtpgsmpay.c:
17026         * gst/rtp/gstrtph263pay.c:
17027         * gst/rtp/gstrtph263pdepay.c:
17028         * gst/rtp/gstrtph263ppay.c:
17029         * gst/rtp/gstrtpilbcdepay.c:
17030         * gst/rtp/gstrtpmp4gpay.c:
17031         * gst/rtp/gstrtpmp4vdepay.c:
17032         * gst/rtp/gstrtpmp4vpay.c:
17033         * gst/rtp/gstrtpmpadepay.c:
17034         * gst/rtp/gstrtpmpapay.c:
17035         * gst/rtp/gstrtppcmadepay.c:
17036         * gst/rtp/gstrtppcmapay.c:
17037         * gst/rtp/gstrtppcmudepay.c:
17038         * gst/rtp/gstrtppcmupay.c:
17039         * gst/rtp/gstrtpspeexdepay.c:
17040         * gst/rtp/gstrtpspeexpay.c:
17041         * gst/rtsp/gstrtpdec.c:
17042         * gst/rtsp/gstrtspsrc.c:
17043         * gst/smpte/gstsmpte.c:
17044         * gst/udp/gstdynudpsink.c:
17045         * gst/udp/gstmultiudpsink.c:
17046         * gst/udp/gstudpsink.c:
17047         * gst/udp/gstudpsrc.c:
17048         * gst/videobox/gstvideobox.c:
17049         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17050         * gst/videofilter/gstvideobalance.c:
17051         * gst/videofilter/gstvideoflip.c:
17052         * gst/videofilter/gstvideotemplate.c:
17053         (gst_videotemplate_base_init):
17054         * gst/videomixer/videomixer.c:
17055         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
17056         (gst_wavparse_class_init), (gst_wavparse_dispose),
17057         (gst_wavparse_reset), (gst_wavparse_init),
17058         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
17059         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
17060         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
17061         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
17062         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
17063         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
17064         (gst_wavparse_change_state):
17065         * gst/wavparse/gstwavparse.h:
17066         * sys/oss/gstossmixerelement.c:
17067         * sys/oss/gstosssink.c:
17068         * sys/oss/gstosssrc.c:
17069         * sys/osxaudio/gstosxaudioelement.c:
17070         * sys/osxaudio/gstosxaudiosink.c:
17071         * sys/osxaudio/gstosxaudiosrc.c:
17072         * sys/sunaudio/gstsunaudiomixer.c:
17073         * sys/sunaudio/gstsunaudiosink.c:
17074           Define GstElementDetails as const and also static (when defined as
17075           global)
17076
17077 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17078
17079         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
17080           Source pad has fixed caps. If we don't set this, bad
17081           things happen when the window is resized.
17082
17083 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17084
17085         * gst/matroska/Makefile.am:
17086         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17087         (gst_matroska_demux_handle_src_event):
17088         * gst/matroska/matroska-ids.c:
17089         (gst_matroska_track_init_video_context),
17090         (gst_matroska_track_init_audio_context),
17091         (gst_matroska_track_init_subtitle_context),
17092         (gst_matroska_track_init_complex_context):
17093         * gst/matroska/matroska-ids.h:
17094           Handle case where the TrackType ebml chunk does not come before the
17095           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
17096           events.
17097
17098 2006-04-25  Wim Taymans  <wim@fluendo.com>
17099
17100         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
17101         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
17102         It's codec_data, not codec_info.
17103
17104 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17105
17106         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17107
17108         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17109           Handle codec_data for VfW compatibility codec IDs (#339451)
17110
17111         * gst/matroska/matroska-mux.c:
17112         (gst_matroska_mux_video_pad_setcaps):
17113           Same here, handle codec_data and add additional caps we can handle
17114           now to the pad template (huffyuv, dv and h263 video) (#339451)
17115
17116 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17117
17118         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
17119
17120         * gst/matroska/matroska-mux.c:
17121         (gst_matroska_mux_create_buffer_header),
17122         (gst_matroska_mux_write_data):
17123           Fix timestamping of B-frames, use signed integers, do
17124           some rounding (#339678).
17125
17126 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
17127
17128         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
17129         just make it compile with --disable-gst-debug.
17130
17131 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
17132
17133         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17134         Fix a bad conversion using gst_guint64_to_gdouble.
17135         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
17136         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
17137         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
17138     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
17139         mistake.
17140
17141 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
17142
17143         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17144         Use gst_guint64_to_gdouble for conversions
17145         * win32/vs6/gst_plugins_good.dsw:
17146         * win32/vs6/libgsticydemux.dsp:
17147         Add a project file for icydemux
17148
17149 2006-04-21  Wim Taymans  <wim@fluendo.com>
17150
17151         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17152
17153         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
17154         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
17155         When splitting audio chunks, the block alignment is not taken in
17156         consideration, so the smaller chunks could be of size which is 
17157         not a multiple of the block alignment. Fixes #336904
17158
17159 2006-04-21  Wim Taymans  <wim@fluendo.com>
17160
17161         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
17162         Use scale functions
17163
17164 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17165
17166         * ext/dv/gstdv.c: (plugin_init):
17167           Fix build.
17168
17169 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17170
17171         * gst/debug/progressreport.c: (gst_progress_report_finalize),
17172         (gst_progress_report_class_init), (gst_progress_report_init),
17173         (gst_progress_report_do_query), (gst_progress_report_report),
17174         (gst_progress_report_set_property),
17175         (gst_progress_report_get_property):
17176           Add 'format' property to force querying to a particular format.
17177
17178 2006-04-21  Andy Wingo  <wingo@pobox.com>
17179
17180         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
17181         best, on big endian systems. Drop its rank in that case. OTOH on
17182         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17183
17184 2006-04-21  Michael Smith  <msmith@fluendo.com>
17185
17186         * configure.ac:
17187         * gst/icydemux/Makefile.am:
17188         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17189         (gst_icydemux_base_init), (gst_icydemux_class_init),
17190         (gst_icydemux_reset), (gst_icydemux_init),
17191         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17192         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17193         (unicodify), (gst_icydemux_unicodify),
17194         (gst_icydemux_parse_and_send_tags),
17195         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17196         (gst_icydemux_chain), (gst_icydemux_change_state),
17197         (gst_icydemux_send_tag_event), (plugin_init):
17198         * gst/icydemux/gsticydemux.h:
17199         * tests/check/Makefile.am:
17200         * tests/check/elements/icydemux.c: (typefind_succeed),
17201         (plugin_init), (icydemux_found_pad), (create_icydemux),
17202         (cleanup_icydemux), (push_data), (GST_START_TEST),
17203         (icydemux_suite), (main):
17204           Add icydemux, and tests.
17205
17206 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17207
17208         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17209           Post SEGMENT_DONE message in TIME format.
17210
17211 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17212
17213         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17214
17215         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17216         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17217           Fix index creation when we have to scan the file to create
17218           an index. There may be other types of RIFF 'LIST' chunks than
17219           'movi' and we need to skip them properly as well or we'll end up
17220           reading garbage (#336889). Some other cosmetic changes.
17221           
17222 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17223
17224         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17225         (gst_flac_dec_handle_seek_event):
17226           Add support for segment seeks (fixes #338290). Also demote
17227           some recurring debug message from DEBUG to LOG level.
17228
17229 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17230
17231         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17232         (gst_matroskademux_do_index_seek),
17233         (gst_matroska_demux_handle_seek_event),
17234         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17235         * gst/matroska/matroska-ids.h:
17236           Set DISCONT flag on first buffer after a discontinuity.
17237           Fix newsegment events sent when seeking and honour KEY_UNIT
17238           seek flag. Create pad with bogus caps if we don't recognise
17239           the stream codec id.
17240
17241         * gst/matroska/matroska-demux.h:
17242           Fix GObject macros.
17243
17244 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17245
17246         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17247
17248         * gst/matroska/matroska-demux.c:
17249         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17250           Handle end of segment properly when set; don't dead-lock when
17251           posting start of segment message when doing a segment seek.
17252           Fixes #338810.
17253
17254 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17255
17256         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17257         (gst_matroska_demux_plugin_init):
17258           Make mpeg2 aac audio work: create artificial private codec data
17259           chunk which faad2 seems to require, just as we do for mpeg4 aac.
17260           Also call gst_riff_init(). Partially fixes #338767.
17261
17262 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
17263
17264         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17265         (gst_wavenc_class_init), (gst_wavenc_init),
17266         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17267         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17268         (gst_wavenc_chain), (gst_wavenc_change_state):
17269         * gst/wavenc/gstwavenc.h:
17270           Set caps on first outgoing buffer, so that it doesn't error out
17271           immediately with a non-negotiated error (#338716). Rewrite and
17272           clean up a bit; fix setcaps function to parse things properly;
17273           fix sink caps (8bit audio is unsigned and doesn't have depth);
17274           use boilerplate macros; remove unused properties stuff.
17275
17276 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17277
17278         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17279           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17280           handle MJPEG streams and might be autoplugged for those if the
17281           user doesn't have jpegdec installed (resulting in a cryptic error
17282           message about huffman tables). Better to disable JPEG decoding here
17283           and let the user figure out that she needs to install jpegdec.
17284
17285 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17286
17287         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17288         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17289         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17290         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17291           Make work with packetised/framed input (e.g. png-in-quicktime). Use
17292           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17293           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17294           debug messages. Fix boilerplate macros.
17295
17296 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17297
17298         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17299         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17300           No need to special-case for Gdk-2.0 any longer, we require
17301           Gdk 2.2 or newer; minor clean-ups.
17302
17303 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17304
17305         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17306         (gst_shout2send_class_init), (gst_shout2send_init),
17307         (set_shout_metadata), (gst_shout2send_set_metadata),
17308         (gst_shout2send_event), (gst_shout2send_start),
17309         (gst_shout2send_connect), (gst_shout2send_stop),
17310         (gst_shout2send_render), (gst_shout2send_set_property),
17311         (gst_shout2send_get_property), (gst_shout2send_setcaps),
17312         (plugin_init):
17313         * ext/shout2/gstshout2.h:
17314         * po/POTFILES.in:
17315           Rewrite a bit: use GstBaseSink::start and stop instead of a state
17316           change function; use GST_ELEMENT_ERROR for error reporting, not
17317           g_error() or GST_ERROR(); don't unref caps in setcaps function,
17318           will cause crashes or assertion failures; remove (unused) "sync"
17319           property, basesink already has such a property; misc. other
17320           minor fixes and cleanups.
17321
17322 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17323
17324         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17325         * ext/esd/gstesd.c: (plugin_init):
17326         * po/POTFILES.in:
17327           Add translatable error message for when we cannot
17328           connect to the sound server, as "Cannot open resource
17329           for writing" isn't really an acceptable message to show
17330           to the user in this case.
17331
17332 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17333
17334         * sys/oss/gst-i18n-plugin.h:
17335           Remove bogus file that doesn't belong here.
17336
17337 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17338
17339         Patch by: Philippe Valembois
17340
17341         * ext/shout2/gstshout2.c: (gst_shout2send_init),
17342         (gst_shout2send_set_metadata), (gst_shout2send_event),
17343         (gst_shout2send_render), (gst_shout2send_change_state):
17344         * ext/shout2/gstshout2.h:
17345           Handle tags being received before the connection to
17346           the server is established properly (see #338636).
17347
17348 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17349
17350         * ext/shout2/gstshout2.c: (gst_shout2send_render):
17351           Don't crash in case the connection to the server fails:
17352           don't set pointer to NULL by assigning FALSE; error out
17353           properly by using GST_ELEMENT_ERROR and returning
17354           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17355           before resetting the pointer.
17356
17357 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
17358
17359         * gst/id3demux/id3tags.c:
17360         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17361         (Fixes #338713)
17362
17363 2006-04-12  Wim Taymans  <wim@fluendo.com>
17364
17365         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17366         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17367         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17368         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17369         (gst_gdk_pixbuf_chain):
17370         Some cleanups.
17371         Added RGBA as a possible output format.
17372         Correctly free the supported mimetypes.
17373         deprecate silent arg, it's not used.
17374         Return result from _alloc_buffer to peer.
17375
17376 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17377
17378         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17379           Don't leak memory allocated by gst_buffer_new_and_alloc() by
17380           overwriting GST_BUFFER_MALLOCDATA.
17381
17382 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17383
17384         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17385         (user_endrow_callback), (user_end_callback),
17386         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17387         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17388         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17389         * ext/libpng/gstpngdec.h:
17390           Handle more than one frame if the content is framed,
17391           like with png-in-quicktime (#331917).
17392
17393 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17394
17395         * sys/oss/Makefile.am:
17396         * sys/oss/common.h:
17397         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17398         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17399         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17400         (gst_oss_src_unprepare):
17401           - the user-visible error strings were in the wrong category
17402           - and the messages were not marked for translation
17403           - which is actually a good thing, because they were exactly
17404             the kind of message you would never want anyone to see
17405           - the macros were using variables that didn't exist in the macro
17406             arguments
17407           - and they were obviously copied from each other and then modified
17408           - so a common header makes sense
17409
17410 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17411
17412         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17413           Don't try to modify read-only data.
17414
17415         * gst/matroska/matroska-demux.c:
17416         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17417           Fix comment (won't crash any longer now).
17418
17419 2006-04-10  Michael Smith  <msmith@fluendo.com>
17420
17421         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17422           Use copies of header buffers for caps to avoid circular refcounting
17423           problems (as in theoradec, vorbisdec).
17424
17425         * tests/check/elements/cmmldec.c: (GST_START_TEST):
17426           Fix a typo in test that meant it was testing the wrong thing.
17427
17428         * tests/check/elements/cmmlenc.c: (check_headers):
17429           Fix refcount checks now that we use buffer-copies for caps.
17430
17431 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17432
17433         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17434         (gst_matroska_demux_handle_seek_event),
17435         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17436         (gst_matroska_demux_subtitle_caps),
17437         (gst_matroska_demux_plugin_init):
17438           Use static pad templates with ANY caps for audio and video
17439           source pads and get rid of a lot of unnecessary (and partially
17440           broken) code for the template caps. Clean up caps finding
17441           functions. Fixes playback of audio files/streams that do not
17442           contain the sample rate and/or number of channels in the audio
17443           context (happens a lot with vorbis/mp3 .mka files it seems).
17444           Fixes #337183.
17445           Also add myself to copyright holders.
17446
17447 2006-04-10  Michael Smith  <msmith@fluendo.com>
17448
17449         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17450           Use g_list_delete_link () instead of g_list_remove_link () so that
17451           we free the link as well as the contained data.
17452
17453 2006-04-10  Wim Taymans  <wim@fluendo.com>
17454
17455         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17456
17457         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17458         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17459         (gst_avi_demux_stream_header):
17460         Fix some crashers with empty chunks. (Fixes #337749)
17461
17462 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17463
17464         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17465           use G_GINT64_CONSTANT for INT64 constants
17466         * gst/videofilter/gstvideobalance.c:
17467           define rint for WIN32 #define rint(x) (floor((x)+0.5))
17468         * win32/vs6/libgstavi.dsp:
17469          add missing libraries for the link and remove avimux.c from
17470          the project as it isn't ported to 0.10 yet
17471         
17472 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
17473
17474         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17475           Even better would be if we actually did the right thing
17476           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17477
17478 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17479
17480         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17481           Can't just replace 1LL with 1L here just because MSVC doesn't
17482           support it, as it might lead to incorrect results when doing the
17483           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17484           force a 64-bit constant in a way that all compilers are happy with.
17485
17486 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17487
17488         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17489         * ext/esd/esdsink.c: (gst_esdsink_class_init):
17490         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17491         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17492         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17493         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17494         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17495         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17496         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17497         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17498         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17499         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17500         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17501         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17502         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17503         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17504         * gst/avi/gstavimux.c: (gst_avimux_class_init):
17505         * gst/debug/efence.c: (gst_efence_class_init):
17506         * gst/debug/negotiation.c: (gst_negotiation_class_init):
17507         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17508         * gst/goom/gstgoom.c: (gst_goom_class_init):
17509         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17510         * gst/interleave/deinterleave.c: (deinterleave_class_init):
17511         * gst/interleave/interleave.c: (interleave_class_init):
17512         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17513         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17514         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17515         * gst/median/gstmedian.c: (gst_median_class_init):
17516         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17517         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17518         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17519         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17520         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17521         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17522         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17523         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17524         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17525         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17526         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17527         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17528         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17529         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17530         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17531         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17532         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17533         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17534         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17535         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17536         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17537         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17538         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17539         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17540         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17541         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17542         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17543         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17544         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17545         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17546         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17547         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17548         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17549         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17550         * sys/osxaudio/gstosxaudioelement.c:
17551         (gst_osxaudioelement_class_init):
17552         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17553         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17554         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17555         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17556
17557 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17558
17559         * ext/mikmod/gstmikmod.h:
17560         * gst/level/gstlevel.h:
17561         Fix more broken GObject macros
17562
17563 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17564
17565         * ext/annodex/gstcmmldec.h:
17566         * ext/annodex/gstcmmlenc.h:
17567         * ext/annodex/gstcmmltag.h:
17568         * ext/cairo/gsttextoverlay.h:
17569         * ext/ladspa/gstsignalprocessor.h:
17570         * gst/matroska/ebml-read.h:
17571         * gst/matroska/ebml-write.h:
17572         * sys/osxaudio/gstosxaudioelement.h:
17573         Fix broken GObject macros
17574
17575 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17576
17577         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17578           Don't try to seek beyond the end of the file (would
17579           occasionally display error dialogs in totem when seeking
17580           to the end) (#335869). Will still throw an error though
17581           if the file is truncated and the total_samples value in
17582           the stream header is wrong.
17583
17584 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
17585
17586         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17587         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17588         (gst_flac_dec_metadata_callback):
17589         * ext/flac/gstflacdec.h:
17590           If the stream header doesn't contain the total number of samples,
17591           search for the last flac frame at the end of the file and calculate
17592           the total duration from that frame's offset (fixes #337609).
17593
17594 2006-04-07  Edward Hervey  <edward@fluendo.com>
17595
17596         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17597         Don't unref the GstPadTemplate returned by
17598         gst_element_class_get_pad_template().
17599
17600 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17601
17602         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
17603
17604         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17605         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17606         * sys/sunaudio/gstsunaudiosink.h:
17607           Use spec->segsize and spec->segtotal in the prepare function
17608           to initialise the ring buffer instead of using the buffer-time
17609           property (#337421).
17610
17611 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17612
17613         * configure.ac:
17614           Bump core requirements to CVS for gst_pad_query_peer_duration()
17615           which is used by speexdec.
17616
17617 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
17618
17619         * ext/speex/gstspeex.c: (plugin_init):
17620         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17621         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17622         (speex_get_sink_query_types), (speex_dec_sink_query),
17623         (speex_get_src_query_types), (speex_dec_src_query),
17624         (speex_dec_src_event), (speex_dec_sink_event),
17625         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17626         (speex_dec_chain_parse_data), (speex_dec_chain),
17627         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17628         (speex_dec_change_state):
17629         * ext/speex/gstspeexdec.h:
17630           Fix seeking and duration queries (#337033); clean up and
17631           refactor a bit.
17632
17633 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17634
17635         * ext/raw1394/gstdv1394src.c:
17636           distinguish between device not found and could not open for
17637           reading
17638
17639 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17640
17641         * Makefile.am:
17642         * configure.ac:
17643         * pkgconfig/.cvsignore:
17644         * pkgconfig/Makefile.am:
17645         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17646           add a .pc file so other modules can use good plugins in tests
17647
17648 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17649
17650         * configure.ac:
17651           clean up, use AS_VERSION and AS_NANO
17652         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17653           use PACKAGE_VERSION define
17654         * po/af.po:
17655         * po/az.po:
17656         * po/cs.po:
17657         * po/en_GB.po:
17658         * po/hu.po:
17659         * po/it.po:
17660         * po/nb.po:
17661         * po/nl.po:
17662         * po/or.po:
17663         * po/sq.po:
17664         * po/sr.po:
17665         * po/sv.po:
17666         * po/uk.po:
17667         * po/vi.po:
17668           updated
17669
17670 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
17671
17672         * ext\jpeg\smokecodec.c:
17673           use of GST_DEBUG instead of DEBUG(a...) for WIN32
17674         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17675           move first instruction after all variables declarations
17676         * gst\alpha\gstalpha.c:
17677         * gst\effectv\gstshagadelic.c:
17678         * gst\smpte\paint.c:
17679         * gst\videofilter\gstvideobalance.c:
17680           define M_PI if it's not defined (it's not defined on WIN32)
17681         * gst\cutter\gstcutter.c: (gst_cutter_chain):
17682         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17683         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17684         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
17685         (gst_matroska_demux_video_caps):
17686         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17687         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17688           use gst_guint64_to_gdouble for conversions
17689         * gst\goom\filters.c: (setPixelRGB_):
17690           fix a debug which was using undefined variable
17691         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17692         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17693           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17694         * win32/vs6:
17695           add vs6 projects files for most of plugins-good
17696         
17697 2006-03-30  j^  <j@bootlab.org>
17698
17699         * ext/aalib/gstaasink.c:
17700         * ext/annodex/gstcmmldec.c:
17701         * ext/annodex/gstcmmlenc.c:
17702         * ext/cairo/gsttextoverlay.c:
17703         * ext/cairo/gsttimeoverlay.c:
17704         * ext/cdio/gstcdiocddasrc.c:
17705         * ext/dv/gstdvdec.c:
17706         * ext/esd/esdmon.c:
17707         * ext/esd/esdsink.c:
17708         * ext/flac/gstflacdec.c:
17709         * ext/flac/gstflacenc.c:
17710         * ext/flac/gstflactag.c:
17711         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17712         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17713         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17714         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17715         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17716         * ext/gdk_pixbuf/pixbufscale.c:
17717         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17718         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17719         * ext/jpeg/gstjpegdec.c:
17720         * ext/jpeg/gstjpegenc.c:
17721         * ext/jpeg/gstsmokedec.c:
17722         * ext/jpeg/gstsmokeenc.c:
17723         * ext/libcaca/gstcacasink.c:
17724         * ext/libmng/gstmngdec.c:
17725         * ext/libmng/gstmngenc.c:
17726         * ext/libpng/gstpngdec.c:
17727         * ext/libpng/gstpngenc.c:
17728         * ext/mikmod/gstmikmod.c:
17729         * ext/raw1394/gstdv1394src.c:
17730         * ext/shout2/gstshout2.c:
17731         * ext/speex/gstspeexdec.c:
17732         * ext/speex/gstspeexenc.c:
17733         * gst/alpha/gstalpha.c:
17734         * gst/alpha/gstalphacolor.c:
17735         * gst/auparse/gstauparse.c:
17736         * gst/autodetect/gstautoaudiosink.c:
17737         (gst_auto_audio_sink_base_init):
17738         * gst/autodetect/gstautovideosink.c:
17739         (gst_auto_video_sink_base_init):
17740         * gst/avi/gstavimux.c: (gst_avimux_base_init):
17741         * gst/cutter/gstcutter.c:
17742         * gst/debug/breakmydata.c:
17743         * gst/debug/efence.c:
17744         * gst/debug/gstnavigationtest.c:
17745         * gst/debug/negotiation.c:
17746         * gst/debug/progressreport.c:
17747         * gst/debug/testplugin.c:
17748         * gst/effectv/gstaging.c:
17749         * gst/effectv/gstdice.c:
17750         * gst/effectv/gstedge.c:
17751         * gst/effectv/gstquark.c:
17752         * gst/effectv/gstrev.c:
17753         * gst/effectv/gstvertigo.c:
17754         * gst/effectv/gstwarp.c:
17755         * gst/flx/gstflxdec.c:
17756         * gst/goom/gstgoom.c:
17757         * gst/interleave/deinterleave.c:
17758         * gst/interleave/interleave.c:
17759         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17760         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17761         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17762         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17763         * gst/level/gstlevel.c:
17764         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17765         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17766         * gst/median/gstmedian.c:
17767         * gst/monoscope/gstmonoscope.c:
17768         * gst/multipart/multipartdemux.c:
17769         * gst/multipart/multipartmux.c:
17770         * gst/oldcore/gstmd5sink.c:
17771         * gst/oldcore/gstmultifilesrc.c:
17772         * gst/oldcore/gstpipefilter.c:
17773         * gst/oldcore/gstshaper.c:
17774         * gst/oldcore/gststatistics.c:
17775         * gst/rtp/gstasteriskh263.c:
17776         * gst/rtp/gstrtpL16depay.c:
17777         * gst/rtp/gstrtpL16pay.c:
17778         * gst/rtp/gstrtpamrdepay.c:
17779         * gst/rtp/gstrtpamrpay.c:
17780         * gst/rtp/gstrtpdepay.c:
17781         * gst/rtp/gstrtpgsmpay.c:
17782         * gst/rtp/gstrtph263pay.c:
17783         * gst/rtp/gstrtph263pdepay.c:
17784         * gst/rtp/gstrtph263ppay.c:
17785         * gst/rtp/gstrtpmp4gpay.c:
17786         * gst/rtp/gstrtpmp4vdepay.c:
17787         * gst/rtp/gstrtpmp4vpay.c:
17788         * gst/rtp/gstrtpmpadepay.c:
17789         * gst/rtp/gstrtpmpapay.c:
17790         * gst/rtp/gstrtppcmadepay.c:
17791         * gst/rtp/gstrtppcmapay.c:
17792         * gst/rtp/gstrtppcmudepay.c:
17793         * gst/rtp/gstrtppcmupay.c:
17794         * gst/rtp/gstrtpspeexdepay.c:
17795         * gst/rtp/gstrtpspeexpay.c:
17796         * gst/rtsp/gstrtpdec.c:
17797         * gst/smpte/gstsmpte.c:
17798         * gst/videobox/gstvideobox.c:
17799         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17800         * gst/videofilter/gstvideobalance.c:
17801         * gst/videofilter/gstvideoflip.c:
17802         * gst/videofilter/gstvideotemplate.c:
17803         (gst_videotemplate_base_init):
17804         * gst/videomixer/videomixer.c:
17805         * gst/wavenc/gstwavenc.c:
17806         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17807          better/unified long descriptions
17808          Fixed #336602
17809          Some cleanups to auparse, don't send multiple newsegments.
17810
17811 2006-03-29  Wim Taymans  <wim@fluendo.com>
17812
17813         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17814
17815         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17816         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17817         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17818         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17819         * ext/dv/gstdvdemux.h:
17820         Seek in READY patch. Only works for pull based mode.
17821         Fixes #323880
17822
17823 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
17824
17825         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17826         (gst_gdk_pixbuf_event):
17827           Fix two crashers: don't unref the same caps twice, and
17828           set pixbuf loader to NULL after freeing it.
17829
17830 2006-03-27  Wim Taymans  <wim@fluendo.com>
17831
17832         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17833         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17834         (gst_speexenc_chain):
17835         * ext/speex/gstspeexenc.h:
17836         Don't leak adapter.
17837         A push *always* takes ownership of the buffer, even on
17838         errors.
17839         Small cleanups.
17840
17841 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
17842
17843         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17844           Create source pad without leaking.
17845
17846 2006-03-24  Wim Taymans  <wim@fluendo.com>
17847
17848         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17849         * ext/flac/gstflacdec.h:
17850         * ext/flac/gstflacenc.h:
17851         Spifify a bit.
17852         Fix deadly lock order error in seeking code, STREAM_LOCK
17853         cannot be taken within LOCK and the streaming variables are
17854         protected with the STREAM_LOCK anyway.
17855
17856 2006-03-24  Wim Taymans  <wim@fluendo.com>
17857
17858         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17859         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17860         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17861         this patch combines the global init_frames with the stream
17862         init_frames. Rationale being that the global delay should 
17863         be subtracted from any stream delay.
17864         Fixes #335858.
17865
17866 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
17867
17868         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17869         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17870         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17871         * gst/videomixer/videomixer.c: (gst_videomixer_init):
17872         use DEBUG_FUNCPTR for collectpads
17873
17874 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
17875
17876         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17877           Don't crash when encoding images where the number of rows isn't
17878           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17879
17880 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17881
17882         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17883         * gst/interleave/deinterleave.c: (deinterleave_change_state):
17884         * gst/interleave/interleave.c: (interleave_change_state):
17885         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17886           More state change function fixes.
17887
17888 2006-03-23  Wim Taymans  <wim@fluendo.com>
17889
17890         * ext/esd/esdsink.c: (gst_esdsink_class_init),
17891         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17892         (gst_esdsink_prepare), (gst_esdsink_unprepare),
17893         (gst_esdsink_delay), (gst_esdsink_reset):
17894         * ext/esd/esdsink.h:
17895         Fix esd choppy playback by configuring audiosink
17896         correctly. Fixes #325191
17897
17898 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17899
17900         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17901           Make state change function thread-safe.
17902
17903 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17904
17905         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17906         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17907           Don't try to read beyond the end of the file just because
17908           the header claims a bigger size (like with truncated files).
17909
17910 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17911
17912         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17913         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17914         (gst_wavparse_stream_data), (gst_wavparse_loop):
17915         * gst/wavparse/gstwavparse.h:
17916           Delay source pad creation until we have the first chunk of
17917           media data, so the we can examine the data and adjust the
17918           caps accordingly if required. This makes playback of .wav
17919           files with DTS-declared-as-PCM content work (#313266).
17920
17921 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
17922
17923         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17924         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17925         Don't attempt typefinding on too-short buffers that have been
17926         completely trimmed away. (Fixes #330239)
17927
17928         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17929         Improve the debug output
17930
17931 2006-03-21  Wim Taymans  <wim@fluendo.com>
17932
17933         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17934         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17935         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17936         (gst_esdsink_set_property), (gst_esdsink_get_property):
17937         Some cleanups.
17938         Reset fd to -1 when we close them.
17939
17940 2006-03-21  Wim Taymans  <wim@fluendo.com>
17941
17942         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17943         the OPTIONS request result is optional so don't
17944         fail on it.
17945
17946 2006-03-21  Edward Hervey  <edward@fluendo.com>
17947
17948         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17949         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17950         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17951         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17952         (gst_wavparse_change_state):
17953         gcc 4.1 unreferenced pointer fixes.
17954
17955 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
17956
17957         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17958
17959         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17960           Fix block alignment calculation. Alignment should be done before
17961           adding the byte offset where the data starts (#335231).
17962
17963 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17964
17965         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17966           Ensure that we set correct caps on buffers that are transferred
17967           direct from the input.
17968
17969 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17970
17971         * gst/goom/filters.c: (zoomFilterDestroy):
17972         * gst/goom/goom_core.c: (goom_close):
17973           Free filter data when cleaning up. (Fixes: #334995)
17974
17975 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
17976
17977         * configure.ac:
17978           Don't compile udp and rtsp plugins on win32 (mingw) or other
17979           systems that don't have <sys/socket.h> for some reason (#316203).
17980
17981 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17982
17983         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17984         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17985         * ext/raw1394/gstdv1394src.h:
17986           Change bus reset handler so it reports useful information such as
17987           whether the device being used connected or disconnected
17988
17989 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17990
17991         * gst/id3demux/id3v2frames.c:
17992         (parse_relative_volume_adjustment_two):
17993           We only care about gain and peak data for the master volume.
17994
17995 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17996
17997         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17998         (parse_id_string), (parse_unique_file_identifier),
17999         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
18000           Read replay gain tags (#323721).
18001
18002 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
18003
18004         * configure.ac:
18005           Bump requirements to gst-plugins-base CVS because
18006           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
18007
18008 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18009
18010         * rtp/gst/gstrtppcmadepay.c:
18011         Fixed one of the caps in the code from mulaw to alaw.
18012
18013 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
18014
18015         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
18016           Ensure that we set caps on the buffers we pass.
18017
18018         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
18019         (gst_id3demux_sink_activate):
18020           Ensure that we set caps on the buffers we pass.
18021
18022           Use STREAM, TYPE_NOT_FOUND as the error class when
18023           typefinding fails.
18024
18025 2006-03-15  Edward Hervey  <edward@fluendo.com>
18026
18027         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
18028         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
18029         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
18030         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
18031         (gst_jpeg_dec_setcaps):
18032         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
18033         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
18034         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
18035         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
18036         (gst_mngdec_src_getcaps):
18037         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
18038         (gst_pngdec_caps_create_and_set):
18039         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
18040         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
18041         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
18042         * gst/alpha/gstalpha.c: (gst_alpha_init):
18043         * gst/auparse/gstauparse.c: (gst_au_parse_init):
18044         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
18045         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
18046         * gst/cutter/gstcutter.c: (gst_cutter_init):
18047         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
18048         (gst_efence_checkgetrange):
18049         * gst/debug/negotiation.c: (gst_negotiation_init):
18050         * gst/flx/gstflxdec.c: (gst_flxdec_init):
18051         * gst/goom/gstgoom.c: (gst_goom_init):
18052         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
18053         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
18054         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
18055         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
18056         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
18057         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
18058         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
18059         * gst/smpte/gstsmpte.c: (gst_smpte_init):
18060         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
18061         (gst_wavparse_create_sourcepad):
18062         Fix memleak with gst_static_pad_template_get().
18063         This uses gst_pad_new_from_static_template() instead.
18064         Fixes #333512
18065
18066 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18067
18068         * configure.ac:
18069           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
18070           used by id3demux.
18071
18072         * gst/id3demux/gstid3demux.c: (plugin_init):
18073         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18074         (parse_user_text_identification_frame),
18075         (parse_unique_file_identifier):
18076           Add support for UFID and TXXX frames and extract musicbrainz tags.
18077
18078 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18079
18080         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18081           Catch short reads, like they might happen with truncated
18082           files (see #305279); remove unnecessary indentation.
18083
18084 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18085
18086         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18087           Fix DIB image inversion for pictures with a
18088           depth != 8 (#305279).
18089
18090 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18091
18092         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
18093         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
18094         * ext/jpeg/gstjpegdec.h:
18095           Fix durations on outgoing buffers after seeking
18096           in MJPEG files (#334083); some minor clean-ups.
18097
18098 2006-03-13  Wim Taymans  <wim@fluendo.com>
18099
18100         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
18101         (gst_wavparse_change_state):
18102         Implement seek in READY (re-fixes #327658)
18103
18104 2006-03-13  Wim Taymans  <wim@fluendo.com>
18105
18106         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
18107         * ext/esd/esdmon.c: (gst_esdmon_get):
18108         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
18109         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
18110         (gst_gdk_pixbuf_sink_getcaps):
18111         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
18112         (gst_jpegenc_setcaps):
18113         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
18114         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
18115         (gst_smokeenc_setcaps):
18116         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
18117         (gst_mngdec_src_getcaps):
18118         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
18119         (gst_mngenc_chain):
18120         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
18121         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
18122         * ext/speex/gstspeexdec.c: (speex_dec_convert),
18123         (speex_dec_src_event), (speex_dec_chain):
18124         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
18125         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
18126         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
18127         (gst_negotiation_pad_link), (gst_negotiation_chain):
18128         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18129         (gst_flxdec_chain):
18130         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
18131         (deinterleave_chain):
18132         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
18133         * gst/median/gstmedian.c: (gst_median_link):
18134         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
18135         (gst_monoscope_chain):
18136         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
18137         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
18138         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
18139         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
18140         close #333784 unref the result of gst_pad_get_parent()
18141         by: Christophe Fergeau.
18142
18143 2006-03-09  Wim Taymans  <wim@fluendo.com>
18144
18145         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18146         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
18147         Handle events in push mode better, can now do non-flushing
18148         seeks in push mode as well.
18149
18150 2006-03-07  Wim Taymans  <wim@fluendo.com>
18151
18152         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
18153         Applied patch from Kai Vehmanen, fixes #333624.
18154
18155 2006-03-06  Julien MOUTTE  <julien@moutte.net>
18156
18157         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
18158         Implement paletted and grayscale png files handling.
18159         (#150363).
18160
18161 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18162
18163         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
18164         (gst_speexenc_chain):
18165           fix a tag list assert
18166           follow gst-plugins-base/ext/ogg/README; set OFFSET
18167           and OFFSET_END.  Muxes correctly with gst-plugins-base
18168           > 0.9.3
18169
18170 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18171
18172         * gst/id3demux/Makefile.am:
18173         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
18174         (gst_id3demux_chain), (gst_id3demux_sink_activate):
18175           Use new typefind helper functions here as well, and
18176           do typefinding in pull-mode if upstream supports that.
18177
18178 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18179
18180         * sys/sunaudio/gstsunaudiomixerctrl.c:
18181         (gst_sunaudiomixer_ctrl_get_volume),
18182         (gst_sunaudiomixer_ctrl_set_volume):
18183         * sys/sunaudio/gstsunaudiomixertrack.c:
18184         (gst_sunaudiomixer_track_new):
18185           Remove unused variables, breaks build from CVS
18186           with -Werror (#333392, patch by: Benjamin Pineau)
18187
18188 2006-03-03  Wim Taymans  <wim@fluendo.com>
18189
18190         * docs/plugins/Makefile.am:
18191         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18192         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18193         Added wavparse docs.
18194
18195         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18196         (gst_wavparse_reset), (gst_wavparse_init),
18197         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18198         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18199         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18200         (gst_wavparse_stream_data), (gst_wavparse_loop),
18201         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18202         (gst_wavparse_change_state):
18203         * gst/wavparse/gstwavparse.h:
18204         Implement seek in READY (fixes #327658)
18205         Added docs and did some cleanups.
18206
18207 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18208
18209         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18210         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18211         (gst_avi_demux_calculate_durations_from_index),
18212         (gst_avi_demux_stream_header):
18213         * gst/avi/gstavidemux.h:
18214           If we have an index, use a duration based on the index instead
18215           of blindly trusting the information in the stream headers
18216           (fixes #331817).
18217
18218 2006-03-03  Wim Taymans  <wim@fluendo.com>
18219
18220         * docs/plugins/Makefile.am:
18221         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18222         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18223         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18224         Added smoke and jpeg to the docs.
18225
18226         * ext/jpeg/Makefile.am:
18227         * ext/jpeg/gstjpeg.c: (plugin_init):
18228         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18229         * ext/jpeg/gstjpegenc.h:
18230         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18231         (gst_smokedec_chain):
18232         * ext/jpeg/gstsmokedec.h:
18233         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18234         * ext/jpeg/gstsmokeenc.h:
18235         * ext/jpeg/smokecodec.h:
18236         Port smokedec (fixes #331905).
18237         Added some docs.
18238         Some cleanups.
18239
18240 2006-03-03  Wim Taymans  <wim@fluendo.com>
18241
18242         * docs/plugins/Makefile.am:
18243         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18244         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18245         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18246         Added videobalance and videoflip to the docs.
18247
18248         * gst/videofilter/Makefile.am:
18249         * gst/videofilter/gstvideobalance.c:
18250         (gst_video_balance_update_tables_planar411),
18251         (gst_video_balance_is_passthrough),
18252         (gst_video_balance_update_properties), (oil_tablelookup_u8),
18253         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18254         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18255         (gst_video_balance_finalize), (gst_video_balance_class_init),
18256         (gst_video_balance_init), (gst_video_balance_interface_supported),
18257         (gst_video_balance_interface_init),
18258         (gst_video_balance_colorbalance_list_channels),
18259         (gst_video_balance_colorbalance_set_value),
18260         (gst_video_balance_colorbalance_get_value),
18261         (gst_video_balance_colorbalance_init),
18262         (gst_video_balance_set_property), (gst_video_balance_get_property),
18263         (gst_video_balance_get_type), (plugin_init):
18264         * gst/videofilter/gstvideobalance.h:
18265         Ported to 0.10. (Fixes #326160)
18266         Added docs.
18267
18268         * gst/videofilter/gstvideoflip.c:
18269         * gst/videofilter/gstvideoflip.h:
18270         Added docs.
18271
18272 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
18273
18274         * configure.ac:
18275           Bump requirements to current core and -base CVS
18276           (core for new typefind helper API, and -base for the
18277           WAVFORMATEX support that was added to libgstriff and
18278           is needed by wavparse).
18279         
18280         * gst/apetag/Makefile.am:
18281         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18282         (gst_tag_demux_sink_activate):
18283           Use new typefind helpers for typefinding instead of our
18284           home-grown stuff; also, do typefinding in pull-mode if
18285           upstream supports that.
18286
18287 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
18288
18289         Reviewed by: Christian Schaller <christian@fluendo.com>
18290
18291         This patch fixes bug: 329107
18292
18293         This Changelog entry is for a commit done on February 17
18294
18295         * ext/gconf/gconf.c
18296         * ext/gconf/gconf.h
18297         * ext/gconf/gstgconfaudiosink.c
18298         * ext/gconf/gstgconfaudiosink.h
18299         * gconf/gstreamer.schemas.in
18300
18301 2006-02-28  Wim Taymans  <wim@fluendo.com>
18302
18303         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18304         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18305         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18306         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18307         Use DEBUG_OBJECT more.
18308
18309 2006-02-28  Wim Taymans  <wim@fluendo.com>
18310
18311         * docs/plugins/Makefile.am:
18312         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18313         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18314         Added dvdec and dvdemux to docs.
18315
18316         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18317         Added docs.
18318         Check frame sizes so we don't crash when don't have enough
18319         data.
18320         Send nice error messages on error.
18321
18322         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18323         (gst_dvdemux_class_init), (gst_dvdemux_init),
18324         (gst_dvdemux_finalize), (gst_dvdemux_reset),
18325         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18326         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18327         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18328         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18329         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18330         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18331         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18332         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18333         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18334         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18335         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18336         * ext/dv/gstdvdemux.h:
18337         Added docs.
18338         Implement pull mode.
18339         Fix memleaks.
18340         Reduce memcpy for the video demuxing.
18341
18342 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
18343
18344         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18345         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18346         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18347         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18348           Add a little extra debug. Make the decoder not return NOT_LINKED,
18349           as we want to continue decoding all CMML and emitting tags.
18350
18351 2006-02-27  Michael Smith  <msmith@fluendo.com>
18352
18353         * ext/annodex/gstskeltag.c:
18354         * ext/annodex/gstskeltag.h:
18355           Deleted; these files aren't used any more either.
18356
18357 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18358
18359         * ext/Makefile.am: Fix dist-check.
18360
18361 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18362
18363         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18364         memleak.
18365
18366 2006-02-25  Alessandro Decina <alessandro@nnva.org>
18367
18368         * ext/annodex/Makefile.am:
18369         * ext/annodex/gstannodex.c:
18370         * ext/annodex/gstcmmldec.c:
18371         * ext/annodex/gstcmmlenc.c:
18372         * ext/annodex/gstcmmlparser.c:
18373         * ext/annodex/gstcmmlparser.h:
18374         * ext/annodex/gstcmmlutils.c:
18375         * tests/check/elements/cmmldec.c:
18376         * tests/check/elements/cmmlenc.c:
18377           Fix a memleak in gst_cmml_track_list_add_clip.
18378           Handle overflows in clip's start and end times.
18379           Add the "encoded" parameter to cmmldec and cmmlenc caps.
18380           Do not parse junk at the end of a CMML preamble buffer.
18381           Register a libxml error handler to not print stuff on stderr.
18382           Check for bad clip start and end times in the testsuites.
18383
18384 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18385
18386         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18387         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18388         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18389         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18390         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18391         possible memleaks.
18392
18393 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18394
18395         * tests/check/Makefile.am:
18396         * tests/check/elements/cmmldec.c:
18397         * tests/check/elements/cmmlenc.c: Fix tests so that they use
18398         the plugins-base tags.
18399
18400 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18401
18402         * ext/Makefile.am: Re-enable module.
18403
18404 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18405
18406         * tests/check/Makefile.am: Forgot to remove that test.
18407
18408 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18409
18410         * ext/annodex/Makefile.am:
18411         * ext/annodex/gstannodex.c: (plugin_init):
18412         * ext/annodex/gstcmmldec.c:
18413         * ext/annodex/gstskeldec.c:
18414         * ext/annodex/gstskeldec.h:
18415         * tests/check/Makefile.am:
18416         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18417
18418 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18419
18420         * tests/check/Makefile.am: Disable those checks as well.
18421
18422 2006-02-24  Julien MOUTTE  <julien@moutte.net>
18423
18424         * ext/Makefile.am: Disable annodex for now until we figure out
18425         how to make it build.
18426         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18427         Add a rule to your checklist : "please try to at least build 
18428         what you are going to commit into -good, or if you are too lazy
18429         to do that, please check that the buildbots are not crying because
18430         of your commit."
18431
18432 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18433
18434         * configure.ac:
18435         * ext/Makefile.am:
18436         * ext/gdk_pixbuf/Makefile.am:
18437         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18438         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18439         * ext/gdk_pixbuf/pixbufscale.c:
18440         * ext/gdk_pixbuf/pixbufscale.h:
18441           Gdkpixbuf ported from 0.8 to 0.10 by
18442           Renato Filho <renato.filho@indt.org.br>.
18443           gst_loader and gdkpixbufanimation still need port.
18444
18445 2006-02-24  Michael Smith  <msmith@fluendo.com>
18446
18447         * configure.ac:
18448         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18449         * ext/Makefile.am:
18450         * ext/annodex/Makefile.am:
18451         * ext/annodex/gstannodex.c:
18452         * ext/annodex/gstannodex.h:
18453         * ext/annodex/gstcmmldec.c:
18454         * ext/annodex/gstcmmldec.h:
18455         * ext/annodex/gstcmmlenc.c:
18456         * ext/annodex/gstcmmlenc.h:
18457         * ext/annodex/gstcmmlparser.c:
18458         * ext/annodex/gstcmmlparser.h:
18459         * ext/annodex/gstcmmltag.c:
18460         * ext/annodex/gstcmmltag.h:
18461         * ext/annodex/gstcmmlutils.c:
18462         * ext/annodex/gstcmmlutils.h:
18463         * ext/annodex/gstskeldec.c:
18464         * ext/annodex/gstskeldec.h:
18465         * ext/annodex/gstskeltag.c:
18466         * ext/annodex/gstskeltag.h:
18467         * tests/check/Makefile.am:
18468         * tests/check/elements/cmmldec.c:
18469         * tests/check/elements/cmmlenc.c:
18470         * tests/check/elements/skeldec.c:
18471           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
18472           Includes tests & docs, oh my! Passes Thomas's -good checklist
18473           entirely. Wow.
18474
18475 2006-02-24  Michael Smith  <msmith@fluendo.com>
18476
18477         * autogen.sh:
18478           Check for automake 1.9 as well.
18479
18480 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18481
18482         * ext/flac/gstflacenc.c:
18483           Change min. sample rate to 8kHz to match flacdec's.
18484           
18485 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
18486
18487         * ext/cdio/Makefile.am:
18488           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18489           required for Cygwin, see #317048)
18490
18491         * gst/rtp/gstasteriskh263.c:
18492           Cygwin has includes for both the unix network socket API
18493           and the windows API, but only one can be included, so fix
18494           includes to only use one or the other, prefering the unxi
18495           one (#317048).
18496
18497 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18498
18499         * rtp/gst/gstrtppcmadepay.c:
18500         * rtp/gst/gstrtppcmadepay.h:
18501         * rtp/gst/gstgstrtppcmapay.c:
18502         * rtp/gst/gstgstrtppcmapay.h:
18503         * rtp/gst/gstrtppcmudepay.c:
18504         * rtp/gst/gstrtppcmudepay.h:
18505         * rtp/gst/gstrtppcmupay.c:
18506         * rtp/gst/gstrtppcmupay.h:
18507         * rtp/gst/Makefile.am:
18508         * rtp/gst/gstrtp.c:
18509         * rtp/gst/README:
18510         Separated the G711 payloaders/depayloaders into separate elements for
18511         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18512
18513 2006-02-22  Wim Taymans  <wim@fluendo.com>
18514
18515         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18516         (gst_dvdec_change_state):
18517         * ext/dv/gstdvdec.h:
18518         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18519         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18520         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18521         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18522         (gst_dvdemux_flush), (gst_dvdemux_chain),
18523         (gst_dvdemux_change_state):
18524         * ext/dv/gstdvdemux.h:
18525         Ueber spiffify some more, added debug category.
18526         Use _scale.
18527         Use segments, respect playback rate from newsegment.
18528         Fix refcount issue.
18529
18530 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18531
18532         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18533         (gst_signal_processor_process):
18534         Fix compilation of LADPSA. It doesn't seem to work, and isn't
18535         enabled for the build, but it helps me win the feature-count
18536         competitions ooh yeah.
18537
18538 2006-02-19  Wim Taymans  <wim@fluendo.com>
18539
18540         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18541         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18542         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18543         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18544         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18545         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18546         Use scaling code for added precission and more correct stop
18547         position in case scale==0.
18548
18549 2006-02-19  Wim Taymans  <wim@fluendo.com>
18550
18551         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18552         (gst_flxdec_chain):
18553         * gst/flx/gstflxdec.h:
18554         Implement DURATION query.
18555
18556 2006-02-19  Wim Taymans  <wim@fluendo.com>
18557
18558         * gst/flx/flx_color.h:
18559         * gst/flx/flx_fmt.h:
18560         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18561         (gst_flxdec_src_query_handler), (flx_decode_color),
18562         (gst_flxdec_chain):
18563         * gst/flx/gstflxdec.h:
18564         Set MALLOCDATA for the temp buffers so we don't leak.
18565         Some debug cleanups.
18566         Consume all data in the adapter before leaving the chain
18567         function. Fixes #330678.
18568
18569 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
18570
18571         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18572         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18573          Handle 0 data size in otherwise valid frames.
18574          Handle numeric strings in 2.4.0 even when not in parentheses 
18575
18576 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
18577
18578         * gst/matroska/matroska-demux.c:
18579         (gst_matroska_demux_subtitle_caps),
18580         (gst_matroska_demux_plugin_init):
18581         * gst/matroska/matroska-ids.h:
18582           Recognise SSA/ASS and USF subtitle formats and
18583           set proper caps when they are found.
18584
18585 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18586
18587         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18588         (gst_jpeg_dec_chain):
18589           Fix invalid memory access for some odd-sized images
18590           (see image contained in quicktime stream in #327083);
18591           use g_malloc() instead of g_alloca().
18592
18593 2006-02-17  Wim Taymans  <wim@fluendo.com>
18594
18595         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18596         Patch from Sebastien Cote, fixes #319884
18597
18598 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18599
18600         * ext/cdio/gstcdio.c: (plugin_init):
18601           Init debug category (#331253).
18602
18603 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18604
18605         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18606           Pass extra_data to gst_riff_create_audio_caps(), so that
18607           WAVEFORMATEX stuff works. Post audio codec name and post
18608           it as taglist on the bus. Allow up to 8 channesl for raw
18609           PCM in the source pad template caps.
18610
18611 2006-02-16  Wim Taymans  <wim@fluendo.com>
18612
18613         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18614         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18615         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18616         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18617         (gst_multipart_set_property), (gst_multipart_get_property):
18618         Applied #318663. Gives quite a few false positives in
18619         autoscan mode, but it's better than nothing. Not closing yet.
18620
18621 2006-02-16  Wim Taymans  <wim@fluendo.com>
18622
18623         * docs/plugins/Makefile.am:
18624         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18625         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18626         * docs/plugins/gst-plugins-good-plugins.args:
18627         * docs/plugins/inspect/plugin-udp.xml:
18628         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18629         (gst_udpsrc_start):
18630         Update documentation.
18631         Fix args.
18632
18633 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
18634
18635         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18636         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18637         frame size. (Fixes #331368)
18638
18639 2006-02-16  Wim Taymans  <wim@fluendo.com>
18640
18641         * gst/rtsp/README:
18642         Updated README.
18643
18644         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18645         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18646         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18647         * gst/rtsp/gstrtspsrc.h:
18648         Make sure the RTP port is an even port an try to allocate 
18649         another if not.
18650         Added retry property to control max retries for port allocation.
18651         Make sure RTCP port is RTP port+1.
18652         Cleanup when port allocation fails.
18653         Fixes #319183.
18654         
18655 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18656
18657         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18658           Don't ignore return value of the parent class's state
18659           change function (#331385, patch by: Wouter Paesen).
18660
18661 2006-02-15  Wim Taymans  <wim@fluendo.com>
18662
18663         * configure.ac:
18664         * docs/plugins/Makefile.am:
18665         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18666         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18667         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18668         * ext/Makefile.am:
18669         * ext/hal/Makefile.am:
18670         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18671         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18672         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18673         (do_toggle_element), (gst_hal_audio_sink_set_property),
18674         (gst_hal_audio_sink_get_property),
18675         (gst_hal_audio_sink_change_state):
18676         * ext/hal/gsthalaudiosink.h:
18677         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18678         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18679         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18680         (do_toggle_element), (gst_hal_audio_src_set_property),
18681         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18682         * ext/hal/gsthalaudiosrc.h:
18683         * ext/hal/gsthalelements.c: (plugin_init):
18684         * ext/hal/gsthalelements.h:
18685         * ext/hal/hal.c: (gst_hal_get_string),
18686         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18687         (gst_hal_get_audio_src):
18688         * ext/hal/hal.h:
18689         Add HAL sound device wrapper plugins. Closes #329106
18690
18691 2006-02-15  Wim Taymans  <wim@fluendo.com>
18692
18693         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18694         Add comment in a fultile attempt to stop the copy-and-paste 
18695         paradigm leading to duplication of bad code.
18696
18697         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18698         Mime parameters have to be checked case insensitive
18699
18700 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18701
18702         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18703           Advance stream time for lagging subtitle streams by sending
18704           newsegment events with the update flag set.
18705
18706 2006-02-14  Edward Hervey  <edward@fluendo.com>
18707
18708         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18709         There can be bogus data before the hdrl LIST tag in the RIFF header.
18710         It's hard to say if it's not respecting the AVI specifications or not,
18711         but since Google Video is producing AVIs like that and the other player
18712         don't seem to complain, I guess we should do the same.
18713
18714 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
18715
18716         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18717         (parse_split_strings):
18718         Add more validation to ensure that a char encoding conversion
18719         produced a valid UTF-8 string.
18720
18721 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
18722
18723         Reviewed by: Edward Hervey  <edward@fluendo.com>
18724
18725         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18726         Properly handle end of segment. Closes #330885.
18727
18728 2006-02-13  Wim Taymans  <wim@fluendo.com>
18729
18730         * gst/rtp/gstrtpmp4gpay.h:
18731         For got to commit this one.
18732
18733 2006-02-12  Wim Taymans  <wim@fluendo.com>
18734
18735         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18736         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18737         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18738         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18739         * gst/rtp/gstrtpmp4gpay.h:
18740         Make more things work.
18741         Handle ACC config strings.
18742
18743 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18744
18745         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18746           set timestamps if no incoming timestamps set
18747
18748 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
18749
18750         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18751         (gst_tag_demux_do_typefind):
18752           ... and fix the very same leaks in GstTagDemux.
18753
18754 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
18755
18756         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18757         (gst_id3demux_do_typefind):
18758         Fix a couple of mem leaks. (Patch by Jonathan Matthew
18759         <jonathan at kaolin dot wh9 dot net>)
18760
18761 2006-02-10  Wim Taymans  <wim@fluendo.com>
18762
18763         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18764         First set options, then set caps or else the baseclass
18765         will not know about the options, duh.
18766
18767 2006-02-10  Wim Taymans  <wim@fluendo.com>
18768
18769         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18770         (gst_rtp_mp4v_pay_setcaps):
18771         Don't waste time looking for a config string if we have codec_info
18772         on the incomming caps.
18773
18774 2006-02-10  Wim Taymans  <wim@fluendo.com>
18775
18776         * gst/rtp/README:
18777         Say something about case-sensitivity of caps vs mime-attributes.
18778
18779         * gst/rtp/Makefile.am:
18780         * gst/rtp/gstrtp.c: (plugin_init):
18781         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18782         (gst_rtp_amr_pay_handle_buffer):
18783         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18784         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18785         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18786         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18787         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18788         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18789         (gst_rtp_mp4g_pay_plugin_init):
18790         * gst/rtp/gstrtpmp4gpay.h:
18791         Added beginnings of mpeg4-generic payloader (RFC 3640)
18792
18793 2006-02-09  Wim Taymans  <wim@fluendo.com>
18794
18795         * gst/rtsp/Makefile.am:
18796         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18797         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18798         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18799         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18800         (gst_rtpdec_change_state):
18801         * gst/rtsp/gstrtpdec.h:
18802         * gst/rtsp/gstrtsp.c: (plugin_init):
18803         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18804         * gst/rtsp/rtspconnection.c: (read_body),
18805         (rtsp_connection_receive):
18806         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18807         Resurected rtpdec to make rtspsrc happy again.
18808         Skip attributes from the session id.
18809         Don't crash when dumping a message with an empty body.
18810
18811
18812 2006-02-09  Wim Taymans  <wim@fluendo.com>
18813
18814         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18815         Added more meaningfull warnings when something goes wrong.
18816         Clear F bit on outgoing AMR packets.
18817
18818         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18819         (gst_rtp_amr_pay_handle_buffer):
18820         Added debugging category
18821         Support payloading of multiple AMR frames.
18822
18823         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18824         Added some debugging.
18825
18826 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18827
18828         * configure.ac:
18829           Back to CVS
18830
18831 === release 0.10.2 ===
18832
18833 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18834
18835         * configure.ac:
18836           releasing 0.10.2, "Papa was a rolling stone"
18837
18838 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18839
18840         * configure.ac:
18841           Bump core and plugins-base requirement to 0.10.2.2
18842           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18843
18844 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18845
18846         * ext/flac/gstflac.c: (plugin_init):
18847         * ext/speex/gstspeex.c: (plugin_init):
18848           Register musicbrainz tags.
18849
18850 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18851
18852         * ext/gconf/gconf.h:
18853           Remove declaration of function that no longer exists.
18854
18855 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18856
18857         * ext/shout2/gstshout2.c: (gst_shout2send_render),
18858         (gst_shout2send_setcaps), (gst_shout2send_change_state):
18859         Make shout2 work for non ogg streams
18860
18861 2006-02-06  Wim Taymans  <wim@fluendo.com>
18862
18863         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18864         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18865         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18866         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18867         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18868         * gst/udp/gstmultiudpsink.h:
18869         Updated docs.
18870         Added properties bytes-served, bytes_to_serve.
18871         Post proper error messages,
18872         Emit client added signal too.
18873
18874 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18875
18876         * docs/plugins/Makefile.am:
18877         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18878         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18879         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18880         (gst_multiudpsink_get_stats):
18881           adding docs for multiudpsink
18882
18883 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18884
18885         * gst/level/gstlevel.c: (gst_level_transform_ip):
18886           peak below decay is not necessarily an error, so don't ERROR log
18887
18888 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18889
18890         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18891         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18892         (gst_ebml_write_seek):
18893         * gst/matroska/ebml-write.h:
18894           Make sure we send a newsegment event in BYTES format
18895           before sending buffers (#328531).
18896
18897 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18898
18899         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18900         (gst_dvdemux_sink_query):
18901         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18902         * ext/speex/gstspeexdec.c: (speex_get_query_types),
18903         (speex_dec_src_query):
18904         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18905         (gst_speexenc_sink_query):
18906         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18907         * gst/matroska/matroska-demux.c:
18908         (gst_matroska_demux_get_src_query_types),
18909         (gst_matroska_demux_handle_src_query):
18910         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18911         (gst_wavparse_pad_query):
18912           Pass unhandled queries upstream instead of just dropping
18913           them (#326446). Update query type arrays here and there.
18914
18915 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18916
18917         * tests/check/elements/matroskamux.c: (setup_src_pad):
18918           Collectpads in core got changed and now also holds a
18919           reference to any pad that is part of it. Fix refcount
18920           checks in test case accordingly.
18921
18922 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18923
18924         * gst/apetag/gstapedemux.h:
18925           Fix include, for now GstTagDemux is in the apetag dir.
18926
18927 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18928
18929         * docs/plugins/Makefile.am:
18930         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18931         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18932         * docs/plugins/inspect/plugin-cdio.xml:
18933           Add cdio plugin to docs.
18934
18935         * ext/cdio/gstcdiocddasrc.c:
18936           Add gtk-doc blurb.
18937
18938         * ext/cdio/gstcdio.c:
18939           The plugin is called 'cdio' not 'cddio'.
18940
18941 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18942
18943         * configure.ac:
18944         * docs/plugins/Makefile.am:
18945         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18946         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18947         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18948         * docs/plugins/inspect/plugin-apetag.xml:
18949         * gst/apetag/Makefile.am:
18950         * gst/apetag/gstapedemux.c:
18951         * gst/apetag/gstapedemux.h:
18952         * gst/apetag/gsttagdemux.c:
18953         * gst/apetag/gsttagdemux.h:
18954           Add APE tag demuxer (#325649).
18955
18956 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18957
18958         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18959         (gst_gconf_get_default_video_sink),
18960         (gst_gconf_get_default_audio_src),
18961         (gst_gconf_get_default_video_src):
18962         * ext/gconf/gconf.h:
18963         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18964         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18965         (do_toggle_element):
18966         * ext/gconf/gstgconfaudiosink.h:
18967         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18968         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18969         (do_toggle_element):
18970         * ext/gconf/gstgconfaudiosrc.h:
18971         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18972         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18973         (do_toggle_element):
18974         * ext/gconf/gstgconfvideosink.h:
18975         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18976         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18977         (do_toggle_element):
18978         * ext/gconf/gstgconfvideosrc.h:
18979           Ignore changing the GConf key to "". Ignore GConf key updates
18980           that don't actually change the string.
18981           For now, ignore the GConf key when the state is > READY, as
18982           it breaks streaming. Sometime it will be nice to bring the
18983           new sink online even mid-stream, by sending NEWSEGMENT info
18984           and possibly prerolling.
18985           (Fixes #326736)
18986
18987 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18988
18989         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18990         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18991         (zoomFilterSetResolution), (zoomFilterDestroy),
18992         (zoomFilterFastRGB), (pointFilter):
18993         * gst/goom/filters.h:
18994         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
18995         (goom_update), (goom_close):
18996         * gst/goom/goom_core.h:
18997         * gst/goom/goom_tools.h:
18998         * gst/goom/graphic.c:
18999         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19000         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
19001         * gst/goom/gstgoom.h:
19002         * gst/goom/lines.c: (goom_lines):
19003         * gst/goom/lines.h:
19004           Make goom reentrant by moving all important static variables
19005           into instance structures.
19006           (Fixes #329181)
19007
19008 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
19009
19010         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
19011         (gst_avi_demux_all_source_pads_unlinked),
19012         (gst_avi_demux_process_next_entry):
19013         * gst/avi/gstavidemux.h:
19014           Third attempt, use gst_pad_is_linked() this time.
19015
19016 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
19017
19018         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19019         (parse_split_strings):
19020         Adjust for data length indicators when parsing (Fixes #329810)
19021         Fix stupid bug parsing UTF-8 tag text.
19022         Output tag strings with multiple fields as multiple tags, so the
19023         app gets all the data.
19024
19025 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
19026
19027         * ext/flac/gstflacenc.c:
19028         Fixed a bug add in last commit, where no event is send. Thanks Tim to
19029         show me.
19030         
19031 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
19032
19033         * ext/flac/gstflacenc.c:
19034         * gst/matroska/ebml-read.c:
19035         Just make it compile with --disable-gst-debug.
19036
19037 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
19038
19039         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
19040         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
19041         (id3v2_genre_fields_to_taglist):
19042           Never output a tag with a null contents string.
19043
19044 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19045
19046         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
19047           Only pause if all pads are unlinked AND we've tried to send data
19048           on all of them at least once.
19049
19050 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19051
19052         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
19053         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
19054           Make loop function/task pause itself when all source pads are
19055           unlinked.
19056
19057 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
19058
19059         * configure.ac:
19060         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
19061           Use new functions from core to render a bin from a
19062           string. Fixes build. Up requirements to core CVS.
19063
19064 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
19065
19066         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
19067           Don't push buffers into the adapter that we are going to
19068           push downstream again without framing anyway. Also, the
19069           adaptor takes ownership of buffers put into it (fixes
19070           auparse pushing invalid buffers for .au files with
19071           ADPCM contents). Finally, set caps on all outgoing buffers.
19072
19073 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
19074
19075         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
19076         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
19077         (gst_id3demux_send_tag_event):
19078         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
19079         Someone should kick my butt. Remove ID3v1 tags from the end of the
19080         file.
19081
19082         Improve error messages. Send the TAG message as soon as we complete
19083         typefinding, instead of waiting until we send the first buffer.
19084         Downstream tag event is still sent before the first buffer.
19085
19086 2006-01-27  Jan Gerber  <j@bootlab.org>
19087
19088         Reviewed by: Andy Wingo <wingo@pobox.com>
19089
19090         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
19091         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
19092         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
19093         to not have warings flooding stderr. this is the suggested way
19094         also used in dvgrab and kino. (#328336)
19095
19096 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
19097
19098         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
19099         (gst_oss_sink_init), (gst_oss_sink_finalise):
19100           Free the device name string when finalised.
19101
19102 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
19103
19104         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
19105           Don't put function calls in g_return_if_fail() statements,
19106           or they'll be replaced with NOOPs if someone compiles with
19107           G_DISABLE_CHECKS defined.
19108           
19109 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
19110
19111         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19112         Never trust ANY information encoded in a media file, especially
19113         when it's giving you sizes. (Fixes #328452)
19114
19115 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
19116
19117         * gst/rtp/gstrtpg711pay.c:
19118         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
19119         bug #325148.
19120
19121 2006-01-23  Edward Hervey  <edward@fluendo.com>
19122
19123         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
19124         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
19125         * gst/matroska/matroska-ids.h:
19126         Added recognition of Real Audio and Video streams in matroska demuxer.
19127
19128 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19129
19130         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
19131           Remove errant break statement, and fix compilation with
19132           older GCC.
19133
19134 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
19135
19136         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19137
19138         * sys/sunaudio/gstsunaudiomixerctrl.c:
19139         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
19140           Export functions that are needed in other parts of the code,
19141           makes the mixer actually work; adjust magic minimum buffer-time
19142           value from 3ms to 5ms to work around stuttering during mp3
19143           playback (#327765).
19144
19145 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
19146
19147         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19148
19149         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
19150         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
19151           Fix possible deadlock in matroska muxer (#327825).
19152
19153 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
19154
19155         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
19156         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
19157         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
19158         * gst/rtsp/sdpmessage.h:
19159         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
19160         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
19161           C89 fixes: declare variables at the beginning of a block and
19162           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
19163           <jensgr at gmx dot net>).
19164
19165 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19166
19167         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19168         * gst/id3demux/id3tags.h:
19169         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19170         (parse_comment_frame), (parse_text_identification_frame),
19171         (id3v2_tag_to_taglist), (id3v2_are_digits),
19172         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
19173         (parse_split_strings), (free_tag_strings):
19174           Rewrite parsing of text tags to handle multiple NULL terminated
19175           strings. Parse numeric genre strings and ID3v2 type
19176           "(3)(6)Alternative" style genre strings.
19177           Parse dates that are only YYYY or YYYY-mm format.
19178           (Fixes #328241 and #322154)
19179
19180 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
19181
19182         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19183           Don't forget to initialize liboil, otherwise our oil functions
19184           will crash (fixes #327871; patch by: Christoph Burghardt
19185           <hawkes at web dot de>).
19186
19187 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19188
19189         * configure.ac:
19190           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19191           like in the core and gst-plugins-base. Fixes #324367 and #326683;
19192           patch by: Brian Cameron <brian dot cameron at sun dot com>
19193
19194 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19195
19196         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19197         * ext/cdio/gstcdio.h:
19198         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19199           Fix build for libcdio versions >= 76; give slightly lower rank
19200           than cdparanoia.
19201
19202 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19203
19204         * configure.ac:
19205         * ext/Makefile.am:
19206         * ext/cdio/Makefile.am:
19207         * ext/cdio/gstcdio.c:
19208         * ext/cdio/gstcdio.h:
19209         * ext/cdio/gstcdiocddasrc.c:
19210         * ext/cdio/gstcdiocddasrc.h:
19211           Port libcdio cdda source, formerly known as cddasrc, now known as
19212           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19213           but that's not tested (fixes #317658).
19214
19215 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19216
19217         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19218           Fix conversion from TIME to BYTES format (fixes #326864;
19219           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19220
19221 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
19222
19223         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19224           Fix compilation of id3demux when zlib is not present.
19225           (Fixes #326602; patch by: Sergey Scobich)
19226
19227 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
19228
19229         * ext/esd/Makefile.am:
19230           Add $(ESD_CFLAGS), otherwise build will fail for folks
19231           with libesd in a non-standard prefix (#327009).
19232
19233 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19234
19235         * configure.ac:
19236           back to HEAD
19237
19238 === release 0.10.1 ===
19239
19240 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
19241
19242         * configure.ac:
19243           releasing 0.10.1, "Li"
19244
19245 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19246
19247           patch by: Wim Taymans
19248
19249         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19250           fix memleak.  Fixes #326618
19251
19252 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19253
19254           patch by: Mike Smith
19255
19256         * gst/level/gstlevel.c: (gst_level_message_new),
19257         (gst_level_message_append_channel):
19258           Fix memleak.  Fixes #326612
19259
19260 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19261
19262         * configure.ac:
19263           prereleasing
19264         * po/af.po:
19265         * po/az.po:
19266         * po/cs.po:
19267         * po/en_GB.po:
19268         * po/hu.po:
19269         * po/it.po:
19270         * po/nb.po:
19271         * po/nl.po:
19272         * po/or.po:
19273         * po/sq.po:
19274         * po/sr.po:
19275         * po/sv.po:
19276         * po/uk.po:
19277         * po/vi.po:
19278           update translations
19279
19280 2006-01-10  Michael Smith  <msmith@fluendo.com>
19281
19282         * gst/level/gstlevel.c: (gst_level_class_init),
19283         (gst_level_dispose):
19284           Don't leak filter arrays.
19285
19286 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19287
19288         reviewed by: Christian Schaller <uraeus@gnome.org>
19289         
19290         * configure.ac:
19291         * gst-plugins-good.spec.in:
19292         * sys/Makefile.am:
19293         * sys/sunaudio/Makefile.am:
19294         * sys/sunaudio/gstsunaudio.c: (plugin_init):
19295         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19296         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19297         (gst_sunaudiomixer_change_state):
19298         * sys/sunaudio/gstsunaudiomixer.h:
19299         * sys/sunaudio/gstsunaudiomixerctrl.c:
19300         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19301         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19302         (gst_sunaudiomixer_ctrl_list_tracks),
19303         (gst_sunaudiomixer_ctrl_get_volume),
19304         (gst_sunaudiomixer_ctrl_set_volume),
19305         (gst_sunaudiomixer_ctrl_set_mute),
19306         (gst_sunaudiomixer_ctrl_set_record):
19307         * sys/sunaudio/gstsunaudiomixerctrl.h:
19308         * sys/sunaudio/gstsunaudiomixertrack.c:
19309         (gst_sunaudiomixer_track_class_init),
19310         (gst_sunaudiomixer_track_init), (fill_labels),
19311         (gst_sunaudiomixer_track_new):
19312         * sys/sunaudio/gstsunaudiomixertrack.h:
19313         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19314         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19315         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19316         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19317         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19318         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19319         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19320         * sys/sunaudio/gstsunaudiosink.h:
19321
19322         Add SunAudio plugin - tested to make sure it doesn't break
19323         the build under GNU/Linux.      
19324
19325 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
19326
19327         * gst-plugins-good/gst/udp/gstdynudpsink.c:
19328         * gst-plugins-good/gst/udp/gstudpsrc.c:
19329         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19330         overrides the port or multicast parameters. Fixes bugs #323021.
19331         API addition: adds GstUDPSrc::sockfd property   
19332
19333 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
19334
19335         * ext/gconf/Makefile.am:
19336         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19337         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19338         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19339         (do_toggle_element), (cb_toggle_element),
19340         (gst_gconf_audio_src_change_state):
19341         * ext/gconf/gstgconfaudiosrc.h:
19342         * ext/gconf/gstgconfelements.c: (plugin_init):
19343         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19344         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19345         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19346         (do_toggle_element), (cb_toggle_element),
19347         (gst_gconf_video_src_change_state):
19348         * ext/gconf/gstgconfvideosrc.h:
19349           Add new gconfaudiosrc and gconfvideosrc elements
19350           (needed for gnome-sound-recorder).
19351
19352 2006-01-06  Edward Hervey  <edward@fluendo.com>
19353
19354         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19355         Add gst_element_no_more_pads() for proper decodebin behaviour.
19356         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19357         (parse_text_identification_frame), (parse_split_strings):
19358         Failure to decode some tags is not a GST_ERROR() but a
19359         GST_WARNING()
19360         When iterating over a chunk of text, check that we haven't gone too
19361         far.
19362
19363 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19364
19365         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19366         (plugin_init):
19367           call oil_init() when using liboil
19368
19369 2006-01-04  Wim Taymans  <wim@fluendo.com>
19370
19371         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19372         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19373         Fix leaks.
19374
19375 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
19376
19377         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19378
19379         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19380         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19381         (gst_flac_dec_change_state):
19382           Don't g_assert() where we should just return FALSE; remove
19383           unnecessary g_assert(); initialize some fields properly in
19384           state change function (fixes #325504). Also, use
19385           GST_DEBUG_OBJECT in two more places.
19386
19387 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19388
19389         * configure.ac:
19390           also remove smoothwave's Makefile.am
19391         * docs/plugins/Makefile.am:
19392           fix plugin docs
19393
19394 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19395
19396         * tests/examples/Makefile.am:
19397           added missing Makefile.am
19398
19399 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19400
19401         * configure.ac:
19402         * gst/level/Makefile.am:
19403         * gst/level/level-example.c:
19404         * tests/Makefile.am:
19405         * tests/examples/level/Makefile.am:
19406         * tests/examples/level/level-example.c: (message_handler), (main):
19407           moved level-example to tests/examples/level-example
19408         * tests/old/examples/level/demo.c: (main):
19409         * tests/old/examples/level/plot.c: (main):
19410           some initial fixes
19411
19412 2005-12-29  Michael Smith  <msmith@fluendo.com>
19413
19414         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19415         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19416         * gst/udp/gstmultiudpsink.h:
19417           Track packets sent per client in addition to bytes sent; provide
19418           this info through get-stats signal
19419
19420 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19421
19422         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19423           Can't use gst_object_unref() on a GstAdapter (#325191).
19424
19425 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
19426
19427         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19428         If a broken tag has 0 bytes payload, at least still skip
19429         the 10 byte header
19430
19431 2005-12-22  Philippe Khalaf  <burger@speedy.org>
19432
19433         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19434         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19435         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19436         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19437           Making these depayloaders (H263+ and mpeg4 video) inherit from
19438           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19439
19440 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19441
19442         * docs/plugins/gst-plugins-good-plugins.args:
19443         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19444         Regenerate the plugin hiearchy.
19445
19446 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19447
19448         * docs/plugins/Makefile.am:
19449         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19450         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19451         * docs/plugins/gst-plugins-good-plugins.args:
19452         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19453         (gst_id3demux_base_init), (gst_id3demux_class_init),
19454         (gst_id3demux_chain):
19455         * gst/id3demux/gstid3demux.h:
19456           Add documentation for id3demux.
19457           Don't fail if the first buffer is not at offset 0, just
19458           attempt to typefind and do pass through
19459           Rename the gst_type function from gst_gst_id3demux..
19460
19461 2005-12-20  Michael Smith  <msmith@fluendo.com>
19462
19463         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19464         (gst_multiudpsink_add), (gst_multiudpsink_remove),
19465         (gst_multiudpsink_get_stats):
19466         * gst/udp/gstmultiudpsink.h:
19467           Collect statistics; return them from get_stats.
19468
19469 2005-12-19  Edward Hervey  <edward@fluendo.com>
19470
19471         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19472         Stupid signedness issue...
19473
19474 2005-12-19  Edward Hervey  <edward@fluendo.com>
19475
19476         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19477         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19478         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19479         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19480         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19481         Construct index for indexless files.
19482         Make sure pad/buffers are correctly reset to NULL once we don't need
19483         them anymore, else we get lovely segfaults/assertions.
19484         * gst/wavparse/gstwavparse.c:
19485         Yes, you can have 96KHz audio and wma in wav :(
19486
19487 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19488
19489         * configure.ac:
19490           Check for optional dependency on zlib for id3demux
19491
19492         * gst/id3demux/Makefile.am:
19493         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19494         (gst_id3demux_base_init), (gst_id3demux_class_init),
19495         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19496         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19497         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19498         (gst_id3demux_set_property), (gst_id3demux_get_property),
19499         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19500         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19501         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19502         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19503         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19504         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19505         (simple_find_peek), (simple_find_suggest),
19506         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19507         (plugin_init):
19508         * gst/id3demux/gstid3demux.h:
19509         * gst/id3demux/id3tags.c: (read_synch_uint),
19510         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19511         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19512         (id3demux_id3v2_frames_to_tag_list):
19513         * gst/id3demux/id3tags.h:
19514         * gst/id3demux/id3v2.4.0-frames.txt:
19515         * gst/id3demux/id3v2.4.0-structure.txt:
19516         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19517         (parse_comment_frame), (parse_text_identification_frame),
19518         (id3v2_tag_to_taglist), (parse_split_strings):
19519           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
19520           otherwise it discards them. Works on my test files. 
19521
19522         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19523           Don't send EOS to a non-existing srcpad
19524           The debug category can be static
19525
19526 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19527
19528         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19529         * ext/esd/esdsink.c: (gst_esdsink_prepare):
19530         * gst/multipart/multipartdemux.c:
19531           change some char* into char[]
19532
19533 2005-12-16  Wim Taymans  <wim@fluendo.com>
19534
19535         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19536         (gst_wavparse_other), (gst_wavparse_perform_seek),
19537         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19538         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19539         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19540         * gst/wavparse/gstwavparse.h:
19541         Use GstSegment to implement more seeking features.
19542
19543 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19544
19545         * gst/rtsp/rtspconnection.c:
19546           Add <netinet/in.h> include and move <arpa/inet.h> include
19547           to make things work on OpenBSD as well (fixes #323717;
19548           patch by: Benjamin Pineau)
19549
19550 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19551
19552         * gst/rtp/gstrtpspeexdepay.c:
19553         * gst/rtp/gstrtpspeexpay.c:
19554         Set clock rate to be fixed in 8000. It fixes bug #324012.
19555
19556 2005-12-14  Philippe Khalaf  <burger@speedy.org>
19557
19558         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19559         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19560         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19561         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19562         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19563         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19564         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19565         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19566         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19567         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19568         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19569         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19570         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19571         * gst-plugins-good/gst/rtp/README:
19572         Fixed payload range in payloder caps. Removed payload range completely
19573         from depayloaders as they don't require payload type in their caps.
19574         In effect, there isn't any specific payload type for any given codec,
19575         only suggestions.
19576         Fixes bug #324011.
19577
19578 2005-12-13  Julien MOUTTE  <julien@moutte.net>
19579
19580         * gst/videomixer/videomixer.c: (gst_videomixer_init),
19581         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19582         (gst_videomixer_collected): Code cleanup and re-enabling 
19583         queued time validity check for correct EOS handling.
19584
19585 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
19586
19587         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19588         (gst_oss_mixer_element_get_property),
19589         (gst_oss_mixer_element_change_state):
19590         Add 'device-name' property and fix state change function.
19591
19592 2005-12-13  Edward Hervey  <edward@fluendo.com>
19593
19594         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
19595         If the speed of the file is null in the header, set the frame_time to
19596         the default setting of GST_SECOND / 70. Which is the default
19597         frame_delay for .fli files as stated in this document :
19598         http://www.compuphase.com/flic.htm
19599         Would be nice to have the time conversion done properly too (duration =
19600         flxh->frames * flxdec->frame_time)
19601
19602 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19603
19604         * docs/plugins/Makefile.am:
19605         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19606         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19607         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19608         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19609         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19610         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19611         documentation for videomixer on my way with a funny sample
19612         pipeline.
19613
19614 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19615
19616         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19617         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19618         (gst_videomixer_update_queues), (gst_videomixer_collected):
19619         Fix caps negotiation. (#323896)
19620
19621 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
19622
19623         * gst/matroska/matroska-demux.c:
19624         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19625           Set correct timestamps on audio laces, fixes playback of mp3 from
19626                 matroska.
19627
19628 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19629
19630         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19631         (gst_au_parse_class_init), (gst_au_parse_init),
19632         (gst_au_parse_dispose), (gst_au_parse_chain),
19633         (gst_au_parse_change_state), (plugin_init):
19634         * gst/auparse/gstauparse.h:
19635           Use gst_object_unref() for GstObjects instead of
19636           g_object_unref() and fix a mem leak in a debug
19637           statement; while we're at it, also borgify, use
19638           boilerplate macros and clean up a little bit.
19639
19640 2005-12-11  Edward Hervey  <edward@fluendo.com>
19641
19642         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19643         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19644         Added pull mode.
19645
19646 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19647
19648         * gst/goom/gstgoom.c:
19649         * gst/level/level-example.c: (main):
19650         * gst/smoothwave/demo-osssrc.c: (main):
19651           Use audiotestsrc instead of sinesrc (#323798).
19652
19653 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
19654
19655         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19656           more debug-func-ptr usage
19657
19658 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
19659
19660         * gst/flx/flx_color.c: (flx_colorspace_convert):
19661         * gst/flx/flx_color.h:
19662         * gst/flx/flx_fmt.h:
19663         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19664         * gst/flx/gstflxdec.h:
19665           Now flxdec works on big-endian machines as well.
19666
19667 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19668
19669         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19670         (gst_fenced_buffer_copy):
19671           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19672           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19673           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19674           and use GST_DEBUG_FUNCPTR for pad functions.
19675
19676 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19677
19678         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19679         (gst_flac_dec_class_init), (gst_flac_dec_init),
19680         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19681         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19682         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19683         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19684         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19685         (gst_flac_dec_change_state):
19686         * ext/flac/gstflacdec.h:
19687           Rewrite flacdec a bit, so that even seeking might work now. Most
19688           importantly, don't act upon any flow return values we get, just tell
19689           the decoder everything's dandy and act on the flow return values
19690           later on in the loop function. We don't want to mess up the internal
19691           decoder state for non-fatal things like flushing pads etc. Other
19692           than that, use GstSegment (segment seeks don't work yet though, but
19693           should be easy to add), use boilerplate macros, drop the superfluous
19694           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19695           lots of other things.
19696
19697 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19698
19699         * configure.ac:
19700           Update comment in OSS includes check.
19701
19702         * sys/oss/gstossdmabuffer.c:
19703         * sys/oss/gstosshelper.c:
19704         * sys/oss/gstossmixer.c:
19705         * sys/oss/gstossmixertrack.c:
19706         * sys/oss/gstosssink.c:
19707         * sys/oss/gstosssrc.c:
19708         * sys/oss/oss_probe.c:
19709           Don't assume the OSS soundcard.h include is always in
19710           the sys/ directory. Instead, use the existing defines
19711           from config.h to include the right file. Fixes
19712           compilation on OpenBSD 3.8 (#323718).
19713
19714 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19715
19716         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19717         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19718         * docs/plugins/inspect/plugin-1394.xml:
19719         * docs/plugins/inspect/plugin-aasink.xml:
19720         * docs/plugins/inspect/plugin-alaw.xml:
19721         * docs/plugins/inspect/plugin-alpha.xml:
19722         * docs/plugins/inspect/plugin-alphacolor.xml:
19723         * docs/plugins/inspect/plugin-auparse.xml:
19724         * docs/plugins/inspect/plugin-autodetect.xml:
19725         * docs/plugins/inspect/plugin-avi.xml:
19726         * docs/plugins/inspect/plugin-cacasink.xml:
19727         * docs/plugins/inspect/plugin-cairo.xml:
19728         * docs/plugins/inspect/plugin-cutter.xml:
19729         * docs/plugins/inspect/plugin-debug.xml:
19730         * docs/plugins/inspect/plugin-dv.xml:
19731         * docs/plugins/inspect/plugin-efence.xml:
19732         * docs/plugins/inspect/plugin-effectv.xml:
19733         * docs/plugins/inspect/plugin-esdsink.xml:
19734         * docs/plugins/inspect/plugin-flac.xml:
19735         * docs/plugins/inspect/plugin-flxdec.xml:
19736         * docs/plugins/inspect/plugin-gconfelements.xml:
19737         * docs/plugins/inspect/plugin-goom.xml:
19738         * docs/plugins/inspect/plugin-jpeg.xml:
19739         * docs/plugins/inspect/plugin-level.xml:
19740         * docs/plugins/inspect/plugin-matroska.xml:
19741         * docs/plugins/inspect/plugin-mulaw.xml:
19742         * docs/plugins/inspect/plugin-multipart.xml:
19743         * docs/plugins/inspect/plugin-navigationtest.xml:
19744         * docs/plugins/inspect/plugin-ossaudio.xml:
19745         * docs/plugins/inspect/plugin-png.xml:
19746         * docs/plugins/inspect/plugin-rtp.xml:
19747         * docs/plugins/inspect/plugin-rtsp.xml:
19748         * docs/plugins/inspect/plugin-shout2send.xml:
19749         * docs/plugins/inspect/plugin-smpte.xml:
19750         * docs/plugins/inspect/plugin-speex.xml:
19751         * docs/plugins/inspect/plugin-udp.xml:
19752         * docs/plugins/inspect/plugin-videobox.xml:
19753         * docs/plugins/inspect/plugin-videoflip.xml:
19754         * docs/plugins/inspect/plugin-videomixer.xml:
19755         * docs/plugins/inspect/plugin-wavenc.xml:
19756         * docs/plugins/inspect/plugin-wavparse.xml:
19757         * ext/flac/gstflac.c: (plugin_init):
19758         * ext/flac/gstflacdec.c: (flacdec_get_type),
19759         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19760         (gst_flac_dec_init), (gst_flac_dec_finalize),
19761         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19762         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19763         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19764         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19765         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19766         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19767         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19768         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19769         * ext/flac/gstflacdec.h:
19770         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19771         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19772         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19773         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19774         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19775         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19776         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19777         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19778         (gst_flac_enc_change_state):
19779         * ext/flac/gstflacenc.h:
19780           borgify and fix up documentation
19781
19782 2005-12-09  Michael Smith  <msmith@fluendo.com>
19783
19784         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19785           Accept a wider range of flac files, more closely matching flac spec.
19786
19787 2005-12-08  Julien MOUTTE  <julien@moutte.net>
19788
19789         * docs/plugins/Makefile.am: Add multipart elements.
19790         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19791         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19792         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19793         * gst/multipart/multipartdemux.c:
19794         * gst/multipart/multipartmux.c: Add docs.
19795
19796 2005-12-07  Edward Hervey  <edward@fluendo.com>
19797
19798         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19799         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19800         (gst_avi_demux_invert):
19801         Memleak and crasher fixes.
19802         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19803         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19804         Memleak fixes
19805
19806 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19807
19808         * ext/aalib/gstaasink.h:
19809         * ext/cairo/gsttextoverlay.h:
19810         * ext/dv/gstdvdec.h:
19811         * ext/dv/gstdvdemux.c:
19812         * ext/dv/gstdvdemux.h:
19813         * ext/esd/esdsink.h:
19814         * ext/flac/flac_compat.h:
19815         * ext/flac/gstflacdec.h:
19816         * ext/flac/gstflacenc.h:
19817         * ext/gconf/gconf.h:
19818         * ext/gconf/gstgconfaudiosink.h:
19819         * ext/gconf/gstgconfvideosink.h:
19820         * ext/gdk_pixbuf/gstgdkanimation.h:
19821         * ext/jpeg/gstjpegdec.h:
19822         * ext/jpeg/smokecodec.h:
19823         * ext/jpeg/smokeformat.h:
19824         * ext/ladspa/gstsignalprocessor.h:
19825         * ext/ladspa/search.c: (LADSPAPluginSearch):
19826         * ext/ladspa/utils.h:
19827         * ext/libmng/gstmng.c:
19828         * ext/libmng/gstmngdec.h:
19829         * ext/libmng/gstmngenc.c:
19830         * ext/libmng/gstmngenc.h:
19831         * ext/libpng/gstpng.c:
19832         * ext/libpng/gstpngenc.c:
19833         * ext/libpng/gstpngenc.h:
19834         * ext/shout2/gstshout2.h:
19835         * ext/speex/gstspeexdec.h:
19836         * ext/speex/gstspeexenc.c:
19837         * ext/speex/gstspeexenc.h:
19838         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19839         * gst/autodetect/gstautoaudiosink.h:
19840         * gst/autodetect/gstautovideosink.h:
19841         * gst/avi/gstavidemux.h:
19842         * gst/cutter/gstcutter.c: (gst_cutter_chain),
19843         (gst_cutter_set_property), (gst_cutter_get_caps):
19844         * gst/cutter/gstcutter.h:
19845         * gst/debug/tests.c: (md5_process_block):
19846         * gst/debug/tests.h:
19847         * gst/effectv/gstwarp.c:
19848         * gst/flx/flx_fmt.h:
19849         * gst/flx/gstflxdec.h:
19850         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19851         (zoomFilterFastRGB):
19852         * gst/goom/filters.h:
19853         * gst/goom/goom_tools.h:
19854         * gst/law/alaw-encode.c:
19855         * gst/level/gstlevel.c:
19856         * gst/level/gstlevel.h:
19857         * gst/matroska/ebml-write.h:
19858         * gst/matroska/matroska-demux.h:
19859         * gst/matroska/matroska-ids.h:
19860         * gst/matroska/matroska-mux.h:
19861         * gst/monoscope/convolve.c: (convolve_match):
19862         * gst/monoscope/convolve.h:
19863         * gst/multipart/multipartmux.c:
19864         * gst/oldcore/gstaggregator.c:
19865         * gst/oldcore/gstaggregator.h:
19866         * gst/oldcore/gstmd5sink.c: (md5_process_block):
19867         * gst/oldcore/gstmd5sink.h:
19868         * gst/oldcore/gstmultifilesrc.c:
19869         * gst/oldcore/gstmultifilesrc.h:
19870         * gst/oldcore/gstpipefilter.h:
19871         * gst/oldcore/gstshaper.h:
19872         * gst/rtp/gstrtpL16depay.h:
19873         * gst/rtp/gstrtpL16pay.h:
19874         * gst/rtp/gstrtpdepay.h:
19875         * gst/rtp/gstrtpmp4vpay.c:
19876         * gst/rtp/gstrtpmp4vpay.h:
19877         * gst/rtsp/gstrtspsrc.c:
19878         * gst/rtsp/gstrtspsrc.h:
19879         * gst/rtsp/rtspconnection.h:
19880         * gst/rtsp/rtspdefs.h:
19881         * gst/rtsp/rtspmessage.h:
19882         * gst/rtsp/rtsptransport.h:
19883         * gst/rtsp/rtspurl.c:
19884         * gst/rtsp/rtspurl.h:
19885         * gst/rtsp/sdpmessage.c:
19886         * gst/rtsp/sdpmessage.h:
19887         * gst/smpte/barboxwipes.c:
19888         * gst/smpte/gstmask.h:
19889         * gst/smpte/gstsmpte.h:
19890         * gst/smpte/paint.c:
19891         * gst/smpte/paint.h:
19892         * gst/udp/gstdynudpsink.h:
19893         * gst/udp/gstmultiudpsink.h:
19894         * gst/udp/gstudpsink.c:
19895         * gst/udp/gstudpsink.h:
19896         * gst/udp/gstudpsrc.c:
19897         * gst/videomixer/videomixer.c:
19898         * gst/wavenc/riff.h:
19899         * gst/wavparse/gstwavparse.h:
19900         * sys/oss/gstossdmabuffer.h:
19901         * sys/oss/gstossmixer.h:
19902         * sys/oss/gstossmixerelement.h:
19903         * sys/oss/gstossmixertrack.h:
19904         * sys/oss/gstosssink.c:
19905         * sys/oss/gstosssink.h:
19906         * sys/oss/gstosssrc.c:
19907         * sys/oss/gstosssrc.h:
19908         * sys/osxaudio/gstosxaudioelement.h:
19909         * sys/osxaudio/gstosxaudiosink.h:
19910         * sys/osxaudio/gstosxaudiosrc.h:
19911           expand tabs
19912
19913 === release 0.10.0 ===
19914
19915 2005-12-05   <thomas (at) apestaart (dot) org>
19916
19917         * configure.ac:
19918           releasing 0.10.0, "Abondance"
19919
19920 2005-12-05  Andy Wingo  <wingo@pobox.com>
19921
19922         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19923         * ext/flac/gstflacdec.c: (gst_flacdec_write):
19924         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19925         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19926         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19927         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19928         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19929         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19930         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19931         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19932         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19933         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19934         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19935         * gst/goom/gstgoom.c: (gst_goom_chain):
19936         * gst/matroska/matroska-demux.c:
19937         (gst_matroska_demux_push_vorbis_codec_priv_data),
19938         (gst_matroska_demux_add_wvpk_header):
19939         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19940         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19941         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19942         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19943         alloc_buffer changes.
19944
19945 2005-12-05  Michael Smith  <msmith@fluendo.com>
19946
19947         * docs/plugins/gst-plugins-good-plugins.args:
19948           Remove args for plugins that aren't in -good.
19949
19950 === release 0.9.7 ===
19951
19952 2005-12-01   <thomas (at) apestaart (dot) org>
19953
19954         * configure.ac:
19955           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19956
19957 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19958
19959         * docs/plugins/.cvsignore:
19960         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19961         * docs/plugins/inspect/plugin-multipart.xml:
19962         * docs/plugins/inspect/plugin-rtp.xml:
19963           add multipart plugin to docs
19964
19965 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19966
19967         * configure.ac:
19968         * ext/Makefile.am:
19969         * ext/pango/Makefile.am:
19970         * ext/pango/gstclockoverlay.c:
19971         * ext/pango/gstclockoverlay.h:
19972         * ext/pango/gsttextoverlay.c:
19973         * ext/pango/gsttextoverlay.h:
19974         * ext/pango/gsttextrender.c:
19975         * ext/pango/gsttextrender.h:
19976         * ext/pango/gsttimeoverlay.c:
19977         * ext/pango/gsttimeoverlay.h:
19978           move pango to base
19979
19980 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19981
19982         * gst/rtp/Makefile.am:
19983         * gst/rtp/gstrtpL16depay.c:
19984         * gst/rtp/gstrtpL16depay.h:
19985         * gst/rtp/gstrtpL16parse.c:
19986         * gst/rtp/gstrtpL16parse.h:
19987         * gst/rtp/gstrtpgsmdepay.c:
19988         * gst/rtp/gstrtpgsmdepay.h:
19989         * gst/rtp/gstrtpgsmparse.c:
19990         * gst/rtp/gstrtpgsmparse.h:
19991           parsers are depayers
19992
19993 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19994
19995         * gst/rtp/Makefile.am:
19996         * gst/rtp/gstasteriskh263.c:
19997         * gst/rtp/gstrtp.c:
19998         * gst/rtp/gstrtpL16enc.c:
19999         * gst/rtp/gstrtpL16enc.h:
20000         * gst/rtp/gstrtpL16parse.c:
20001         * gst/rtp/gstrtpL16parse.h:
20002         * gst/rtp/gstrtpL16pay.c:
20003         * gst/rtp/gstrtpL16pay.h:
20004         * gst/rtp/gstrtpamrdec.c:
20005         * gst/rtp/gstrtpamrdec.h:
20006         * gst/rtp/gstrtpamrdepay.c:
20007         * gst/rtp/gstrtpamrdepay.h:
20008         * gst/rtp/gstrtpamrenc.c:
20009         * gst/rtp/gstrtpamrenc.h:
20010         * gst/rtp/gstrtpamrpay.c:
20011         * gst/rtp/gstrtpamrpay.h:
20012         * gst/rtp/gstrtpdec.c:
20013         * gst/rtp/gstrtpdec.h:
20014         * gst/rtp/gstrtpdepay.c:
20015         * gst/rtp/gstrtpdepay.h:
20016         * gst/rtp/gstrtpg711dec.c:
20017         * gst/rtp/gstrtpg711dec.h:
20018         * gst/rtp/gstrtpg711depay.c:
20019         * gst/rtp/gstrtpg711depay.h:
20020         * gst/rtp/gstrtpg711enc.c:
20021         * gst/rtp/gstrtpg711enc.h:
20022         * gst/rtp/gstrtpg711pay.c:
20023         * gst/rtp/gstrtpg711pay.h:
20024         * gst/rtp/gstrtpgsmenc.c:
20025         * gst/rtp/gstrtpgsmenc.h:
20026         * gst/rtp/gstrtpgsmparse.c:
20027         * gst/rtp/gstrtpgsmparse.h:
20028         * gst/rtp/gstrtpgsmpay.c:
20029         * gst/rtp/gstrtpgsmpay.h:
20030         * gst/rtp/gstrtph263enc.c:
20031         * gst/rtp/gstrtph263enc.h:
20032         * gst/rtp/gstrtph263pay.c:
20033         * gst/rtp/gstrtph263pay.h:
20034         * gst/rtp/gstrtph263pdec.c:
20035         * gst/rtp/gstrtph263pdec.h:
20036         * gst/rtp/gstrtph263pdepay.c:
20037         * gst/rtp/gstrtph263pdepay.h:
20038         * gst/rtp/gstrtph263penc.c:
20039         * gst/rtp/gstrtph263penc.h:
20040         * gst/rtp/gstrtph263ppay.c:
20041         * gst/rtp/gstrtph263ppay.h:
20042         * gst/rtp/gstrtpmp4vdec.c:
20043         * gst/rtp/gstrtpmp4vdec.h:
20044         * gst/rtp/gstrtpmp4vdepay.c:
20045         * gst/rtp/gstrtpmp4vdepay.h:
20046         * gst/rtp/gstrtpmp4venc.c:
20047         * gst/rtp/gstrtpmp4venc.h:
20048         * gst/rtp/gstrtpmp4vpay.c:
20049         * gst/rtp/gstrtpmp4vpay.h:
20050         * gst/rtp/gstrtpmpadec.c:
20051         * gst/rtp/gstrtpmpadec.h:
20052         * gst/rtp/gstrtpmpadepay.c:
20053         * gst/rtp/gstrtpmpadepay.h:
20054         * gst/rtp/gstrtpmpaenc.c:
20055         * gst/rtp/gstrtpmpaenc.h:
20056         * gst/rtp/gstrtpmpapay.c:
20057         * gst/rtp/gstrtpmpapay.h:
20058         * gst/rtp/gstrtpspeexdec.c:
20059         * gst/rtp/gstrtpspeexdec.h:
20060         * gst/rtp/gstrtpspeexdepay.c:
20061         * gst/rtp/gstrtpspeexdepay.h:
20062         * gst/rtp/gstrtpspeexenc.c:
20063         * gst/rtp/gstrtpspeexenc.h:
20064         * gst/rtp/gstrtpspeexpay.c:
20065         * gst/rtp/gstrtpspeexpay.h:
20066           Do burger's rename for rtp payloaders and depayloaders
20067
20068 2005-11-30  Wim Taymans  <wim@fluendo.com>
20069
20070         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
20071         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
20072         * ext/dv/gstdvdemux.h:
20073         Fix seeking in dvdemux again, add some more debug info.
20074
20075 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20076
20077         * configure.ac:
20078           fix tests
20079
20080 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20081
20082         * PORTED_09:
20083         * docs/random/PORTED_09:
20084           move
20085         * tests/Makefile.am:
20086           add
20087         * win32/gst.sln:
20088           remove
20089
20090 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20091
20092         * Makefile.am:
20093         * check/.cvsignore:
20094         * check/Makefile.am:
20095         * check/elements/.cvsignore:
20096         * check/elements/level.c:
20097         * check/elements/matroskamux.c:
20098         * configure.ac:
20099         * examples/Makefile.am:
20100         * examples/capsfilter/Makefile.am:
20101         * examples/capsfilter/capsfilter1.c:
20102         * examples/gob/Makefile.am:
20103         * examples/gob/gst-identity2.gob:
20104         * examples/gstplay/.cvsignore:
20105         * examples/gstplay/Makefile.am:
20106         * examples/gstplay/player.c:
20107         * examples/indexing/.cvsignore:
20108         * examples/indexing/Makefile.am:
20109         * examples/indexing/indexmpeg.c:
20110         * examples/level/Makefile.am:
20111         * examples/level/README:
20112         * examples/level/demo.c:
20113         * examples/level/plot.c:
20114         * examples/stats/Makefile.am:
20115         * examples/stats/mp2ogg.c:
20116         * examples/switch/.cvsignore:
20117         * examples/switch/Makefile.am:
20118         * examples/switch/switcher.c:
20119           move under tests/
20120
20121 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20122
20123         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
20124         (gst_text_render_class_init), (resize_bitmap),
20125         (gst_text_render_render_text), (gst_text_render_setcaps),
20126         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
20127         (gst_text_render_chain), (gst_text_render_finalize),
20128         (gst_text_render_init), (gst_text_render_set_property):
20129         * ext/pango/gsttextrender.h:
20130           Add missing files.
20131
20132 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20133
20134         * configure.ac:
20135         * ext/Makefile.am:
20136         * ext/pango/Makefile.am:
20137         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
20138         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
20139         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
20140         * ext/pango/gstclockoverlay.h:
20141         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
20142         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
20143         (gst_text_overlay_finalize), (gst_text_overlay_init),
20144         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
20145         (gst_text_overlay_text_pad_linked),
20146         (gst_text_overlay_text_pad_unlinked),
20147         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
20148         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
20149         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
20150         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20151         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20152         (gst_text_overlay_change_state), (plugin_init):
20153         * ext/pango/gsttextoverlay.h:
20154         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
20155         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
20156         (gst_time_overlay_class_init), (gst_time_overlay_init):
20157         * ext/pango/gsttimeoverlay.h:
20158           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
20159           and add background shading and text wrapping modes. Make 
20160           timoverlay derive from textoverlay. Also add new clockoverlay
20161           element.
20162
20163 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20164
20165         * gst/udp/Makefile.am: Moved to netbuffer.
20166
20167 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20168
20169         * configure.ac:
20170         * PORTED_O9:
20171         * gst/multipart/Makefile.am:
20172         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
20173         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
20174         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
20175         (gst_multipart_demux_change_state),
20176         (gst_multipart_demux_plugin_init):
20177         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20178         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
20179         (gst_multipart_mux_sinkconnect),
20180         (gst_multipart_mux_request_new_pad),
20181         (gst_multipart_mux_handle_src_event),
20182         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20183         (gst_multipart_mux_change_state): Ported multipart mux/demux to
20184         0.9.
20185
20186 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20187
20188         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20189         * gst/debug/gstnavigationtest.h:
20190         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20191         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20192         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20193         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20194         * gst/effectv/gstrev.c: (gst_revtv_get_type):
20195         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20196         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20197         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20198         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20199         (gst_video_flip_get_type):
20200         * gst/videofilter/gstvideoflip.h:
20201           update for symbols change
20202
20203 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20204
20205         * gst/udp/gstdynudpsink.c:
20206         * gst/udp/gstudpsrc.c:
20207           the old gstnet lib was renamed gstnetbuffer (#322257)
20208
20209 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20210
20211         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20212         (gst_text_overlay_collected):
20213           Actually render the text from the text pad.
20214
20215 2005-11-29  Edward Hervey  <edward@fluendo.com>
20216
20217         * gst/debug/gstnavseek.c: (gst_navseek_event):
20218         * gst/debug/progressreport.c: (gst_progress_report_event):
20219         Update for GstBaseTransform event virtual method
20220
20221 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20222
20223         * ext/cairo/Makefile.am:
20224           no need to link to videofilter
20225
20226 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20227
20228         * gst/debug/Makefile.am:
20229         * gst/debug/gstnavigationtest.h:
20230         * gst/effectv/Makefile.am:
20231         * gst/effectv/gstaging.c:
20232         * gst/effectv/gstdice.c:
20233         * gst/effectv/gstedge.c:
20234         * gst/effectv/gstquark.c:
20235         * gst/effectv/gstrev.c:
20236         * gst/effectv/gstshagadelic.c:
20237         * gst/effectv/gstvertigo.c:
20238         * gst/effectv/gstwarp.c:
20239         * gst/videofilter/Makefile.am:
20240         * gst/videofilter/gstvideofilter.c:
20241         * gst/videofilter/gstvideofilter.h:
20242         * gst/videofilter/gstvideoflip.h:
20243           remove the videofilter library and link to the one in base
20244
20245 2005-11-28  Edward Hervey  <edward@fluendo.com>
20246
20247         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20248         Useless check now we're setting the current entry correctly.
20249
20250 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20251
20252         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20253         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20254         (gst_jpegenc_change_state):
20255           Don't leak input buffer in chain function (fixes #322667); make 
20256           state change function thread-safe; don't repeat the current function
20257           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20258           gst_pad_alloc_buffer(); misc. minor cleanups.
20259
20260 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20261
20262         * gst/matroska/matroska-mux.c:
20263         (gst_matroska_mux_video_pad_setcaps):
20264         Look for pixel-aspect-ratio in caps, not pixel_width and
20265         pixel_height (Fixes: #322645)
20266
20267 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20268
20269         * gst/matroska/matroska-mux.c:
20270         (gst_matroska_mux_video_pad_setcaps):
20271         From Michal Benes:
20272         frame duration should be GST_SECOND / framerate, not
20273         GST_SECOND * framerate. (Fixes: #322643)
20274
20275 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20276
20277         * configure.ac:
20278           fix up GST_PLUGIN_LDFLAGS
20279         * gst/rtsp/rtspconnection.c:
20280           fix includes (see #317043)
20281         * gst/videofilter/Makefile.am:
20282           stop installing this library
20283
20284 2005-11-26  Edward Hervey  <edward@fluendo.com>
20285
20286         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20287         Handle the case where the incoming Video dv stream doesn't have
20288         a pixel aspect ratio set.
20289
20290 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20291
20292         * docs/plugins/Makefile.am:
20293         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20294         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20295         * ext/flac/gstflacdec.c:
20296           document flacdec
20297
20298 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20299
20300         * docs/plugins/Makefile.am:
20301         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20302         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20303         * docs/plugins/inspect/plugin-autodetect.xml:
20304         * ext/cairo/gstcairo.c: (plugin_init):
20305         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20306         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20307         (gst_text_overlay_init), (gst_text_overlay_font_init),
20308         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20309         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20310         (gst_text_overlay_text_pad_linked),
20311         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20312         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20313         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20314         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20315         (gst_text_overlay_change_state):
20316         * ext/cairo/gsttextoverlay.h:
20317         * ext/cairo/gsttimeoverlay.c:
20318         (gst_cairo_time_overlay_update_font_height),
20319         (gst_cairo_time_overlay_set_caps),
20320         (gst_cairo_time_overlay_get_unit_size),
20321         (gst_cairo_time_overlay_print_smpte_time),
20322         (gst_cairo_time_overlay_transform),
20323         (gst_cairo_time_overlay_base_init),
20324         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20325         (gst_cairo_time_overlay_get_type):
20326         * ext/cairo/gsttimeoverlay.h:
20327           do some name borgifying
20328           document
20329
20330 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20331
20332         * docs/plugins/Makefile.am:
20333         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20334         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20335         * gst/autodetect/gstautoaudiosink.c:
20336         (gst_auto_audio_sink_base_init):
20337         * gst/autodetect/gstautovideosink.c:
20338         (gst_auto_video_sink_base_init),
20339         (gst_auto_video_sink_factory_filter):
20340           documenting auto*sink
20341           using strstr for the video sink lookup, class field is not ordered
20342         * docs/plugins/inspect/plugin-1394.xml:
20343         * docs/plugins/inspect/plugin-aasink.xml:
20344         * docs/plugins/inspect/plugin-alaw.xml:
20345         * docs/plugins/inspect/plugin-alpha.xml:
20346         * docs/plugins/inspect/plugin-alphacolor.xml:
20347         * docs/plugins/inspect/plugin-auparse.xml:
20348         * docs/plugins/inspect/plugin-autodetect.xml:
20349         * docs/plugins/inspect/plugin-avi.xml:
20350         * docs/plugins/inspect/plugin-cacasink.xml:
20351         * docs/plugins/inspect/plugin-cairo.xml:
20352         * docs/plugins/inspect/plugin-cutter.xml:
20353         * docs/plugins/inspect/plugin-debug.xml:
20354         * docs/plugins/inspect/plugin-dv.xml:
20355         * docs/plugins/inspect/plugin-efence.xml:
20356         * docs/plugins/inspect/plugin-effectv.xml:
20357         * docs/plugins/inspect/plugin-esdsink.xml:
20358         * docs/plugins/inspect/plugin-flac.xml:
20359         * docs/plugins/inspect/plugin-flxdec.xml:
20360         * docs/plugins/inspect/plugin-gconfelements.xml:
20361         * docs/plugins/inspect/plugin-goom.xml:
20362         * docs/plugins/inspect/plugin-jpeg.xml:
20363         * docs/plugins/inspect/plugin-level.xml:
20364         * docs/plugins/inspect/plugin-matroska.xml:
20365         * docs/plugins/inspect/plugin-mulaw.xml:
20366         * docs/plugins/inspect/plugin-navigationtest.xml:
20367         * docs/plugins/inspect/plugin-ossaudio.xml:
20368         * docs/plugins/inspect/plugin-png.xml:
20369         * docs/plugins/inspect/plugin-rtp.xml:
20370         * docs/plugins/inspect/plugin-rtsp.xml:
20371         * docs/plugins/inspect/plugin-shout2send.xml:
20372         * docs/plugins/inspect/plugin-smpte.xml:
20373         * docs/plugins/inspect/plugin-speex.xml:
20374         * docs/plugins/inspect/plugin-udp.xml:
20375         * docs/plugins/inspect/plugin-videobox.xml:
20376         * docs/plugins/inspect/plugin-videoflip.xml:
20377         * docs/plugins/inspect/plugin-videomixer.xml:
20378         * docs/plugins/inspect/plugin-wavenc.xml:
20379         * docs/plugins/inspect/plugin-wavparse.xml:
20380           update for HEAD version
20381
20382 2005-11-25  Michael Smith  <msmith@fluendo.com>
20383
20384         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20385           Patch from Sebastien Cote to close control sockets in udpsrc.
20386
20387 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20388
20389         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20390         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20391         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20392         (gst_quarktv_base_init), (gst_quarktv_class_init),
20393         (gst_quarktv_init): Flush the planes list on reverse caps
20394         negotiation. This was crashing because of differently sized
20395         buffers.
20396
20397 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20398
20399         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20400         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20401         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20402         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20403         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20404         (gst_videoflip_set_property), (gst_videoflip_base_init),
20405         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20406         correctly, fix identity flipping, convert navigation event 
20407         correctly again.
20408
20409 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20410
20411         * configure.ac: back to HEAD
20412
20413 === release 0.9.6 ===
20414
20415 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20416
20417         * configure.ac:
20418           releasing 0.9.6, "Everything's Not Lost"
20419
20420 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20421
20422         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20423         Oops, initialise the framerate GValue
20424
20425 2005-11-23  Julien MOUTTE  <julien@moutte.net>
20426
20427         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20428         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20429         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20430         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20431         (gst_timeoverlay_get_type):
20432         * ext/cairo/gsttimeoverlay.h:
20433         * gst/debug/Makefile.am:
20434         * gst/debug/gstnavigationtest.c:
20435         (gst_navigationtest_handle_src_event),
20436         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20437         (gst_navigationtest_transform), (gst_navigationtest_change_state),
20438         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20439         (gst_navigationtest_init), (gst_navigationtest_get_type),
20440         (plugin_init):
20441         * gst/debug/gstnavigationtest.h:
20442         * gst/effectv/Makefile.am:
20443         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20444         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20445         (gst_agingtv_base_init), (gst_agingtv_class_init),
20446         (gst_agingtv_init), (gst_agingtv_get_type):
20447         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20448         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20449         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20450         (gst_dicetv_get_type):
20451         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20452         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20453         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20454         (gst_edgetv_get_type):
20455         * gst/effectv/gsteffectv.c:
20456         * gst/effectv/gsteffectv.h:
20457         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20458         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20459         (gst_quarktv_change_state), (gst_quarktv_base_init),
20460         (gst_quarktv_class_init), (gst_quarktv_init),
20461         (gst_quarktv_get_type):
20462         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20463         (gst_revtv_get_unit_size), (gst_revtv_transform),
20464         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20465         (gst_revtv_get_type):
20466         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20467         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20468         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20469         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20470         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20471         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20472         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20473         (gst_vertigotv_init), (gst_vertigotv_get_type):
20474         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20475         (gst_warptv_get_unit_size), (gst_warptv_transform),
20476         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20477         (gst_warptv_get_type):
20478         * gst/videofilter/Makefile.am:
20479         * gst/videofilter/gstvideobalance.c:
20480         * gst/videofilter/gstvideobalance.h:
20481         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20482         (gst_videofilter_class_init), (gst_videofilter_init):
20483         * gst/videofilter/gstvideofilter.h:
20484         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20485         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20486         (gst_videoflip_flip), (gst_videoflip_transform),
20487         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20488         (gst_videoflip_base_init), (gst_videoflip_class_init),
20489         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20490         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20491         BaseTransform, it's just a place holder for now and every video
20492         effect plugin has been ported to use BaseTransform features 
20493         directly. QuarkTV was fixed too (was broken), navigationtest works
20494         and best for the end, videoflip converts navigation events depending
20495         on flip method ! Fixes #320953
20496
20497 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20498
20499         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20500         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20501         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20502         (gst_goom_src_negotiate), (gst_goom_chain):
20503         * gst/matroska/matroska-mux.c:
20504         (gst_matroska_mux_video_pad_setcaps):
20505         * sys/osxvideo/osxvideosink.m:
20506           Fixes for API changes
20507
20508 2005-11-23  Michael Smith <msmith@fluendo.com>
20509
20510         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20511         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20512         * ext/jpeg/gstjpegdec.h:
20513         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20514         * ext/jpeg/gstjpegenc.h:
20515         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20516         (gst_smokeenc_resync):
20517         * ext/jpeg/gstsmokeenc.h:
20518           JPEG fractiony goodness.
20519
20520 2005-11-22  Michael Smith <msmith@fluendo.com>
20521
20522         * gst/goom/filters.c:
20523         * gst/goom/graphic.h:
20524           Fix compilation by making some functions static inline instead of
20525           extern inline, matching the way they're used.
20526
20527 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20528
20529         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20530         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20531         * ext/cairo/gsttextoverlay.h:
20532         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20533         * ext/gdk_pixbuf/gstgdkpixbuf.h:
20534         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20535         (gst_pngdec_caps_create_and_set):
20536         * ext/libpng/gstpngdec.h:
20537         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20538         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20539         * gst/avi/gstavimux.c: (gst_avimux_init),
20540         (gst_avimux_vidsinkconnect):
20541         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20542         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20543         (gst_goom_src_negotiate), (gst_goom_chain):
20544         * gst/goom/gstgoom.h:
20545         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20546         * gst/matroska/matroska-mux.c:
20547         (gst_matroska_mux_video_pad_setcaps):
20548         * sys/osxvideo/osxvideosink.h:
20549         * sys/osxvideo/osxvideosink.m:
20550           More fractional framerate conversions 
20551
20552 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20553
20554         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20555         * gst/debug/gstnavigationtest.c:
20556         (gst_navigationtest_handle_src_event):
20557         * gst/videofilter/gstvideofilter.c:
20558         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20559         (gst_videofilter_init):
20560         * gst/videofilter/gstvideofilter.h:
20561           Convert to fractional framerates.
20562
20563 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20564
20565         * ext/aalib/gstaasink.c:
20566         * ext/dv/gstdvdec.c:
20567         * ext/esd/esdmon.c:
20568         * ext/flac/gstflacenc.c:
20569         * ext/gdk_pixbuf/pixbufscale.c:
20570         * ext/libcaca/gstcacasink.c:
20571         * ext/shout2/gstshout2.c:
20572         * gst/alpha/gstalpha.c:
20573         * gst/oldcore/gstaggregator.c:
20574         * gst/oldcore/gstshaper.c:
20575         * gst/smpte/barboxwipes.c:
20576         * gst/smpte/gstsmpte.c:
20577         * gst/videobox/gstvideobox.c:
20578         * gst/videofilter/gstvideoflip.c:
20579         * gst/videomixer/videomixer.c:
20580           fix up more enums
20581
20582 2005-11-22  Michael Smith <msmith@fluendo.com>
20583
20584         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20585         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20586         (gst_videomixer_update_queues):
20587           Fractional framerates, videomixer.
20588
20589 2005-11-22  Michael Smith <msmith@fluendo.com>
20590
20591         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20592         * ext/dv/gstdvdec.h:
20593         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20594         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20595         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20596         (gst_dvdemux_flush):
20597         * ext/dv/gstdvdemux.h:
20598           Fractional framerates for DV. 
20599
20600 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20601
20602         * gst/autodetect/gstautoaudiosink.c:
20603         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20604         * gst/autodetect/gstautovideosink.c:
20605         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20606           Use gst_plugin_feature_list_free() to free feature list and
20607           in the case of autovideosink free the list at all. Also
20608           miscellaneous cosmetic fixes.
20609
20610 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20611
20612         * gst/cutter/gstcutter.c: (gst_cutter_chain),
20613         (gst_cutter_set_property), (gst_cutter_get_caps):
20614           copy calculation code from level; remove use of some audio
20615           functions
20616
20617 2005-11-22  Andy Wingo  <wingo@pobox.com>
20618
20619         * Update for gst_tag_setter API changes.
20620
20621 2005-11-22  Andy Wingo  <wingo@pobox.com>
20622
20623         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20624         (gst_dvdemux_demux_frame)
20625         * ext/flac/gstflacdec.c (gst_flacdec_write)
20626         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20627         (gst_flacenc_sink_event)
20628         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20629         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20630         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20631         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20632         * gst/auparse/gstauparse.c (gst_auparse_chain)
20633         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20634         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20635         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20636         (gst_avi_demux_handle_seek)
20637         * gst/goom/gstgoom.c (gst_goom_event)
20638         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20639         * gst/matroska/matroska-demux.c
20640         (gst_matroska_demux_handle_seek_event)
20641         (gst_matroska_demux_loop_stream_parse_id)
20642         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20643         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20644         (gst_wavparse_stream_headers): Run update-funcnames.
20645
20646 2005-11-22  Edward Hervey  <edward@fluendo.com>
20647
20648         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20649         (gst_dv1394src_init), (gst_dv1394src_dispose),
20650         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20651         (gst_dv1394src_uri_set_uri):
20652         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20653         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20654         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20655         URIHandler interface and element properties are now properly
20656         synchronized for DV1394src and UDPSrc
20657
20658 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20659
20660         * ext/flac/Makefile.am:
20661         * ext/speex/Makefile.am:
20662           libgsttagedit has been renamed to libgsttag.
20663
20664 2005-11-21  Wim Taymans  <wim@fluendo.com>
20665
20666         * gst/rtsp/rtspconnection.c: (read_body):
20667         Apply patch from Sebastien Cote to fix #319184.
20668
20669 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20670
20671         * configure.ac:
20672         * gst/cutter/Makefile.am:
20673         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20674         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20675         (gst_cutter_set_property), (gst_cutter_get_property),
20676         (plugin_init), (gst_cutter_get_caps):
20677           port cutter
20678         * gst/level/gstlevel.c:
20679           fix up plugin details
20680
20681 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20682
20683         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20684         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20685         (gst_flacdec_src_event):
20686         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20687         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20688         (gst_signal_processor_getrange), (gst_signal_processor_chain):
20689         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20690         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20691         (gst_flxdec_sink_event_handler):
20692         * gst/matroska/matroska-demux.c:
20693         (gst_matroska_demux_handle_seek_event):
20694         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20695           Update for stream lock API changes: don't take stream log
20696           in sink event handlers any longer and change GST_STREAM_LOCK
20697           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20698           functions.
20699
20700 2005-11-21  Michael Smith <msmith@fluendo.com>
20701
20702         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20703           gst_object_unref, not g_object_unref
20704
20705 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20706
20707         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20708         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20709           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20710
20711 2005-11-21  Michael Smith <msmith@fluendo.com>
20712
20713         * gst/auparse/Makefile.am:
20714         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20715         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20716         (gst_auparse_change_state):
20717         * gst/auparse/gstauparse.h:
20718           Partially fix #161712. playbin still doesn't work on these files,
20719           (on the bug report, Andy says we aren't typefinding it for some
20720           reason?) but at least auparse isn't totally busted like it was before.
20721
20722 2005-11-21  Andy Wingo  <wingo@pobox.com>
20723
20724         * *.h:
20725         * *.c: Ran scripts/update-macros. Oh yes.
20726
20727 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20728
20729         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20730           Filler events are gone for now, comment out section generating
20731           them.
20732
20733 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20734
20735         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20736         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20737         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20738         * sys/osxvideo/osxvideosink.m:
20739           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20740           (#322027)
20741
20742 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20743
20744         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20745         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20746         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20747         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20748         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20749         (gst_avi_demux_stream_data):
20750         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20751         * gst/wavenc/gstwavenc.c: (write_metadata):
20752         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20753         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20754         Fixes for GST_FOURCC_FORMAT API change.
20755
20756 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20757
20758         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20759         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20760         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20761         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20762         (gst_text_overlay_change_state):
20763         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20764         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20765         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20766         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20767         * gst/videomixer/videomixer.c: (gst_videomixer_init),
20768         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20769         (gst_videomixer_change_state):
20770           Fix for collect pads API change. Also fix textoverlay state
20771           change function.
20772
20773 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20774
20775         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20776         GST_PAD_IS_USABLE by something approaching it.
20777
20778 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20779
20780         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20781         API changes.
20782         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20783         but also fix the code that was not checking return values from
20784         pad_push neither using pad_alloc_buffer.
20785
20786 2005-11-18  Edward Hervey  <edward@fluendo.com>
20787
20788         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20789         (gst_pngenc_chain):
20790         Added debug category
20791         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20792         goes to EOS.
20793
20794 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
20795
20796         * gst/rtp/Makefile.am
20797         * gst/rtp/gstrtp.c
20798         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20799         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20800         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20801         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20802         * gst/rtp/gstrtpg711enc.h:
20803         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20804         * gst/rtp/gstrtpspeexenc.c:
20805         * gst/rtp/gstrtpspeexenc.h:
20806         * gst/rtp/gstrtpspeexdec.c:
20807         * gst/rtp/gstrtpspeexdec.h:
20808         Created Speex payloader and depayloader; Optimize G711 payloader to
20809         use adapter and send packets until MTU size.
20810
20811 2005-11-16  Wim Taymans  <wim@fluendo.com>
20812
20813         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20814         Fix leak in check.
20815
20816 2005-11-16  Wim Taymans  <wim@fluendo.com>
20817
20818         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20819         Fix state change.
20820
20821 2005-11-16  Andy Wingo  <wingo@pobox.com>
20822
20823         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20824         (gst_udpsrc_create): Move comment.
20825
20826 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
20827
20828         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20829
20830         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20831           When seeking, seek to closest index entry at or before the requested
20832           seek position, not just the closest one (#321001).
20833
20834 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20835
20836         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20837         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20838           Invert DIB images again (see #132341).
20839
20840 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20841
20842         * configure.ac:
20843           rework configure.ac file
20844         * ext/aalib/gstaasink.c:
20845         * ext/cairo/gstcairo.c:
20846         * ext/dv/gstdv.c:
20847         * ext/esd/gstesd.c:
20848         * ext/flac/gstflac.c:
20849         * ext/gconf/gstgconfelements.c:
20850         * ext/gdk_pixbuf/gstgdkpixbuf.c:
20851         * ext/jpeg/gstjpeg.c:
20852         * ext/ladspa/gstladspa.c:
20853         * ext/libcaca/gstcacasink.c:
20854         * ext/libmng/gstmng.c:
20855         * ext/libpng/gstpng.c:
20856         * ext/mikmod/gstmikmod.c:
20857         * ext/pango/gsttextoverlay.c:
20858         * ext/pango/gsttimeoverlay.c:
20859         * ext/raw1394/gst1394.c:
20860         * ext/speex/gstspeex.c:
20861         * gst/alpha/Makefile.am:
20862         * gst/alpha/gstalpha.c:
20863         * gst/alpha/gstalphacolor.c:
20864         * gst/auparse/gstauparse.c:
20865         * gst/autodetect/gstautoaudiosink.c:
20866         (gst_auto_audio_sink_factory_filter),
20867         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20868         * gst/autodetect/gstautodetect.c:
20869         * gst/avi/gstavi.c:
20870         * gst/cutter/gstcutter.c:
20871         * gst/debug/efence.c:
20872         * gst/debug/gstdebug.c:
20873         * gst/debug/gstnavigationtest.c:
20874         * gst/effectv/gsteffectv.c:
20875         * gst/flx/gstflxdec.c:
20876         * gst/goom/gstgoom.c:
20877         * gst/interleave/plugin.c:
20878         * gst/law/alaw.c:
20879         * gst/law/mulaw.c:
20880         * gst/level/gstlevel.c:
20881         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20882         * gst/matroska/matroska.c:
20883         * gst/median/gstmedian.c:
20884         * gst/monoscope/gstmonoscope.c:
20885         * gst/multipart/multipart.c:
20886         * gst/oldcore/gstelements.c:
20887         * gst/rtp/gstrtp.c:
20888         * gst/rtsp/gstrtsp.c:
20889         * gst/smoothwave/gstsmoothwave.c:
20890         * gst/smpte/gstsmpte.c:
20891         * gst/udp/gstudp.c:
20892         * gst/videobox/gstvideobox.c:
20893         * gst/videofilter/gstgamma.c:
20894         * gst/videofilter/gstvideobalance.c:
20895         * gst/videofilter/gstvideoflip.c:
20896         * gst/videofilter/gstvideotemplate.c:
20897         * gst/videomixer/videomixer.c:
20898         * gst/wavenc/gstwavenc.c:
20899         * gst/wavparse/gstwavparse.c:
20900         * sys/oss/gstossaudio.c:
20901         * sys/osxaudio/gstosxaudio.c:
20902           update GST_PLUGIN_DEFINE
20903         * gst/rtp/Makefile.am:
20904         * gst/rtp/gstasteriskh263.c:
20905           check for htons/htonl headers and possibly link to winsock2 lib
20906
20907 2005-11-12  Edward Hervey  <edward@fluendo.com>
20908
20909         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
20910         Only GST_DEBUG() information on the valid components.
20911
20912 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20913
20914         * configure.ac: back to HEAD
20915
20916 === release 0.9.5 ===
20917
20918 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20919
20920         * configure.ac:
20921           releasing 0.9.5, "Phone Alarm"
20922
20923 2005-11-11  Edward Hervey  <edward@fluendo.com>
20924
20925         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20926         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20927         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20928         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20929         (gst_avi_demux_loop):
20930         * gst/avi/gstavidemux.h:
20931         Yeah, implement proper seeking. Exact seeking and segment seeking.
20932         Still need to do some checks for segment_stop.
20933
20934 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20935
20936         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20937
20938         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20939           Don't try to ready buffer duration from buffer that we don't
20940           own any  longer and that might already have been unreffed.
20941           (#321136)
20942
20943 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
20944
20945         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20946         (flx_decode_delta_flc), (gst_flxdec_chain):
20947         Attempting to optimize the code for embedded systems.
20948
20949 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
20950
20951         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20952
20953         * sys/oss/gstosssink.c: (gst_oss_sink_close):
20954           Don't re-use already closed file descriptor. (#320920)
20955
20956 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20957
20958         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20959         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20960         (gst_oss_sink_prepare):
20961         * sys/oss/gstosssink.h:
20962           Cache probed caps; fix debug output for SET_PARAM macros.
20963
20964 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20965
20966         * ext/cairo/Makefile.am:
20967         * ext/cairo/gstcairo.c: (plugin_init):
20968         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20969         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20970         (gst_text_overlay_init), (gst_text_overlay_font_init),
20971         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20972         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20973         (gst_text_overlay_text_pad_linked),
20974         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20975         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20976         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20977         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20978         (gst_text_overlay_change_state):
20979         * ext/cairo/gsttextoverlay.h:
20980           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20981           property and redo positioning. Doesn't handle upstream renegotiation
20982           yet though.
20983
20984 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20985
20986         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20987         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20988         (gst_avi_demux_loop):
20989           No need to take the STREAM_LOCK in the loop function. Improve
20990           some debug messages. Don't leak pad names in debug messages.
20991
20992 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20993
20994         * gst/matroska/matroska-demux.c:
20995         (gst_matroska_demux_push_vorbis_codec_priv_data),
20996         (gst_matroska_demux_add_wvpk_header):
20997           Don't error out when the source pad isn't linked.
20998
20999 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
21000
21001         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
21002         (gst_gconf_audio_sink_change_state):
21003         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
21004         (gst_gconf_video_sink_change_state):
21005           Fix state change functions here as well and set kid
21006           to NULL state before removing it.
21007
21008 2005-11-01  Edward Hervey  <edward@fluendo.com>
21009
21010         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
21011         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
21012         Added proper event handlind, 
21013         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
21014         ignored),
21015         and don't set a duration of 0 for buffers otherwise they are discarded
21016         by GstBaseSink.
21017
21018         GstWavEnc needs some serious loving, after going through the code I'm
21019         really wondering how this can stay in -good ...
21020
21021 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21022
21023         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
21024         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
21025         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
21026         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
21027         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
21028         (gst_matroska_mux_collected):
21029           Fix leaks and invalid memory access as reported by valgrind
21030
21031 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21032
21033         Patch by: Michal Benes <michal.benes@xeris.cz>
21034
21035         * check/Makefile.am:
21036         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
21037         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
21038         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21039           add a unit test for matroskamux
21040           fix the bugs that the unit test exposed
21041
21042 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
21043
21044         * gst/autodetect/gstautoaudiosink.c:
21045         (gst_auto_audio_sink_class_init),
21046         (gst_auto_audio_sink_change_state):
21047         * gst/autodetect/gstautovideosink.c:
21048         (gst_auto_video_sink_class_init),
21049         (gst_auto_video_sink_change_state):
21050           Fix state change function and use GST_DEBUG_FUNCPTR in
21051           class_init.
21052
21053 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
21054
21055         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21056
21057         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
21058         (gst_ebml_write_reset), (gst_ebml_write_element_new):
21059         * gst/matroska/ebml-write.h:
21060         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
21061           Set timestamps on outgoing ebml headers as well, so that the
21062           element after matroskamux can get the timestamp already when
21063           reading the first ebml element and doesn't have to wait for
21064           the actual data buffer for that (#320308).
21065           
21066 2005-10-31  Andy Wingo  <wingo@pobox.com>
21067
21068         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
21069         (gst_videomixer_pad_link): Kill some memleaks.
21070         (gst_videomixer_pad_get_property): Style fix.
21071         (gst_videomixer_pad_set_property): Style fix.
21072         (gst_videomixer_pad_init): Style fix.
21073         (gst_videomixer_update_queues): Kill memleak.
21074         (gst_videomixer_loop): Kill memleak.
21075         (gst_videomixer_collected): Kill memleak.
21076
21077 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21078
21079         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
21080         gst_auparse_change_state:
21081         Just some cleanup.
21082
21083 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
21084
21085         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
21086         Add checks to GST_FLOW_NOT_LINKED for values returned
21087         from gst_pad_push.
21088         
21089 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21090
21091         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
21092         (gst_rtpg711dec_process):
21093         * gst/rtp/gstrtpgsmenc.c:
21094         Payloader now sets some default caps on the srcpad if caps on the sinkpad
21095         are never set. This is important for the g711 to work with burger's rtpbin
21096         element.
21097
21098 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
21099
21100         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
21101         (gst_speexenc_push_buffer):
21102         Add checks for return values from gst_pad_push and
21103         gst_pad_alloc_buffer.
21104
21105 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
21106
21107         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21108
21109         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21110         (gst_matroska_demux_parse_info),
21111         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
21112         (gst_matroska_demux_parse_cluster):
21113         * gst/matroska/matroska-ids.h:
21114         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
21115         (gst_matroska_mux_init), (gst_matroska_mux_start),
21116         (gst_matroska_mux_create_buffer_header),
21117         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
21118         (gst_matroska_mux_get_property):
21119         * gst/matroska/matroska-mux.h:
21120           Add SimpleBlock support to matroska demuxer and muxer (part of
21121           Matroska v2). (#319731)
21122
21123 2005-10-28  Wim Taymans  <wim@fluendo.com>
21124
21125         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
21126         (gst_jpeg_dec_change_state):
21127         * ext/jpeg/gstjpegdec.h:
21128         Cleanups. Don't create caps for every chain.
21129
21130 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
21131
21132         * gst/law/alaw-encode.c: (gst_alawenc_init),
21133         (alawenc_setcaps), (gst_alawenc_chain)
21134         * gst/law/alaw-encode.h:
21135         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
21136         (mulawenc_setcaps), (gst_mulawenc_chain)
21137         * gst/law/mulaw-encode.h:
21138         Set timestamp on buffer and it allows RTP G711 elements
21139         work properly.
21140
21141 2005-10-27  Wim Taymans  <wim@fluendo.com>
21142
21143         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21144         Set correct format on oss instead of a silly value. 
21145
21146 2005-10-27  Julien MOUTTE  <julien@moutte.net>
21147
21148         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21149         (gst_video_box_transform_caps), (gst_video_box_set_caps),
21150         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
21151         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
21152         I420 rendering as well, doesn't bring much for my platform.
21153         Might help on some other platforms.
21154
21155 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21156
21157         * gst/rtp/gstrtpgsmenc.c:
21158         * gst/rtp/gstrtpgsmparse.c:
21159         Declaring the padtemplate correctly.
21160
21161 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21162
21163         * gst/rtp/gstrtpg711dec.c:
21164         * gst/rtp/gstrtpg711enc.c:
21165         * gst/rtp/gstrtpgsmenc.c:
21166         * gst/rtp/gstrtpgsmparse.c:
21167         Setting the proper copyright notice.
21168
21169 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21170
21171         * gst/videobox/Makefile.am: Use liboil.
21172         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21173         (gst_video_box_set_property), (gst_video_box_transform_caps),
21174         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
21175         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
21176         using liboil. Will dot the same to I420 border generation
21177         tomorrow.
21178
21179 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21180
21181         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
21182         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21183         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21184         * gst/rtp/gstrtpg711dec.h:
21185         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21186         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21187         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21188         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21189         (gst_rtpgsmenc_handle_buffer):
21190         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21191         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21192         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21193         * gst/rtp/gstrtpgsmparse.h:
21194         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21195         inherits from the basertpdepayloader.
21196
21197 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21198
21199         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21200         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21201         (gst_video_box_ayuv): Removing this forgotten debug.
21202
21203 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21204
21205         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21206         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21207         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21208
21209 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21210
21211         * sys/oss/gstossaudio.c:
21212         * sys/oss/gstossdmabuffer.c:
21213         * sys/oss/gstosshelper.c:
21214         * sys/oss/gstossmixer.c:
21215         * sys/oss/gstossmixerelement.c:
21216         * sys/oss/gstossmixertrack.c:
21217         * sys/oss/gstosssink.c:
21218         * sys/oss/gstosssrc.c:
21219           Actually use the 'oss' debug category we register.
21220
21221 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21222
21223         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21224         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21225         Use gst_pad_get_parent and drop the ref that was added through
21226         that call.
21227
21228 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21229
21230         * gst/rtp/gstrtpgsmenc.c:
21231           Fix compilation
21232
21233 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21234
21235         * gst/rtp/gstrtpg711dec.c
21236         Just removed a couple of lines of weird code used during
21237         development/test time.
21238
21239 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21240
21241         * gst/rtp/Makefile.am
21242         * gst/rtp/gstrtp.c
21243         * gst/rtp/gstrtpg711enc.c
21244         * gst/rtp/gstrtpg711enc.h
21245         * gst/rtp/gstrtpg711dec.c
21246         * gst/rtp/gstrtpg711dec.h
21247         Created G711 payloader and depayloader (it supports mulaw and alaw
21248         (dec)encoders)
21249
21250 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21251
21252         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21253         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21254         Doh ! I introduced wingo's bug again ! Sorry...
21255
21256 2005-10-25  Christian Schaller <christian@fluendo.com> 
21257
21258         * gst/rtp/Makefile.am: add missing header files for disting
21259
21260 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21261
21262         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21263         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21264         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21265         (gst_rtpgsmenc_handle_buffer):
21266         * gst/rtp/gstrtpgsmenc.h:
21267         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21268         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21269         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21270         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21271         * gst/rtp/gstrtpgsmparse.h:
21272         Getting the GSM (de)payloader working and compatible with our plans for RTP.
21273
21274 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21275
21276         * ext/libpng/gstpngdec.c: (user_info_callback),
21277         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21278         a newsegment event, move some redundant code in a single place.
21279
21280 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21281
21282         * ext/libpng/gstpngdec.c: (user_info_callback),
21283         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21284         hack to get correct colors order when we have a png image with
21285         alpha channel.
21286
21287 2005-10-24  Edward Hervey  <edward@fluendo.com>
21288
21289         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
21290         Call gst_element_no_more_pads when there will be no more pads.
21291
21292 2005-10-24  Wim Taymans  <wim@fluendo.com>
21293
21294         * gst/rtp/Makefile.am:
21295         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21296         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21297         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21298         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21299         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21300         (gst_asteriskh263_plugin_init):
21301         * gst/rtp/gstasteriskh263.h:
21302         * gst/rtp/gstrtp.c: (plugin_init):
21303         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21304         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21305         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21306         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21307         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21308         (gst_rtph263enc_plugin_init):
21309         * gst/rtp/gstrtph263enc.h:
21310         Added two new payloaders, an RFC 2190 payloader for h263 and
21311         a payload convertor for an asterisk server.
21312
21313 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21314
21315         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21316           Set bytes_per_sample correctly (is not always 4, but 
21317           depends on width and number of channels).
21318
21319 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21320
21321         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21322         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21323         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21324         (gst_flacenc_sink_event), (gst_flacenc_chain),
21325         (gst_flacenc_set_property), (gst_flacenc_get_property),
21326         (gst_flacenc_change_state):
21327         * ext/flac/gstflacenc.h:
21328           Fix seeking, so that flacenc can rewrite the header with the
21329           correct duration and amount of samples and all that at EOS;
21330           also set timestamps and granulepos on outgoing buffers; add
21331           debug category; fix state change function.
21332           
21333 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21334
21335         * gst/videomixer/videomixer.c: Don't restrict video geometry
21336         from 16 to 4096.
21337
21338 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21339
21340         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21341         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21342         Fix caps negotiation correctly, add debugging category.
21343
21344 2005-10-24  Christian Schaller  <christian@fluendo.com>
21345
21346         * configure.ac: Port over Thomas's change from base listing all plugins
21347
21348 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21349
21350         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21351         a sink pad.
21352
21353 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21354
21355         * configure.ac:
21356         * docs/upload.mak:
21357           back to HEAD
21358
21359 === release 0.9.4 ===
21360
21361 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21362
21363         * configure.ac:
21364           Releasing 0.9.4, "Dromiceiomimus"
21365
21366 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
21367
21368         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21369         (gst_speexenc_src_query):
21370           Add position and duration query, fix query type function.
21371           
21372         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21373         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21374           Let's not set non-fixed caps on source pads.
21375
21376 2005-10-21  Wim Taymans  <wim@fluendo.com>
21377
21378         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21379         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21380         (gst_avi_demux_handle_seek):
21381         Set correct stream_time in newsegment event.
21382         avi can also handle a duration query now.
21383
21384 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21385
21386         * gst/matroska/matroska-demux.c:
21387         (gst_matroska_demux_handle_src_query),
21388         (gst_matroska_demux_handle_seek_event),
21389         (gst_matroska_demux_loop_stream_parse_id):
21390           Fix duration query; fix basetime in newsegment event after
21391           seek; fix duration in initial newsegment event.
21392
21393         * gst/matroska/matroska-mux.c:
21394         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21395           Extract number of channels and samplerate from vorbis headers;
21396           add some debug messages when querying the durations of the
21397           input streams.
21398
21399 2005-10-20  Wim Taymans  <wim@fluendo.com>
21400
21401         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21402         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21403         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21404         Set stream time correctly in newsegment.
21405
21406 2005-10-20  Wim Taymans  <wim@fluendo.com>
21407
21408         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21409         Correctly fill in the stream time.
21410
21411 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21412
21413         * check/elements/level.c: (GST_START_TEST):
21414         * gst/level/gstlevel.c: (gst_level_message_new):
21415         * gst/level/level-example.c: (message_handler):
21416           use ELEMENT messages instead
21417
21418 2005-10-19  Wim Taymans  <wim@fluendo.com>
21419
21420         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21421         (gst_dvdemux_src_query):
21422         * ext/flac/gstflacdec.c: (gst_flacdec_length),
21423         (gst_flacdec_src_query):
21424         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21425         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21426         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21427         * gst/debug/gstnavseek.c: (gst_navseek_seek):
21428         * gst/debug/progressreport.c: (gst_progress_report_report):
21429         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21430         * gst/matroska/matroska-demux.c:
21431         (gst_matroska_demux_handle_src_query):
21432         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21433         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21434         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21435         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21436         (gst_wavparse_srcpad_event):
21437         API change fix.
21438
21439 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21440
21441         * gst/goom/filters.c:
21442         * gst/goom/graphic.h:
21443         * gst/goom/lines.c:
21444           Make inline functions either 'static inline' or 'extern inline',
21445           otherwise the Forte compiler apparently won't inline them (#317300).
21446
21447 2005-10-19  Julien MOUTTE  <julien@moutte.net>
21448
21449         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21450         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21451         (user_info_callback), (user_endrow_callback), (user_end_callback),
21452         (user_read_data), (gst_pngdec_caps_create_and_set),
21453         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21454         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21455         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21456         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21457         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21458         very nice and handle push/pull based model. if you have filesrc
21459         connected to it, it will do random access to load the png file.
21460         If you have a network source that can't do _getrange, it does 
21461         progressive loading through the chain function.
21462         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21463         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21464         thanks to Master Wim Taymans ;-)
21465
21466 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
21467
21468         * gst/matroska/Makefile.am:
21469         * gst/matroska/ebml-read.c:
21470         * gst/matroska/ebml-read.h:
21471         * gst/matroska/matroska-demux.c:
21472         * gst/matroska/matroska-demux.h:
21473         * gst/matroska/matroska.c: (plugin_init):
21474           Ported matroska demuxer to 0.9.
21475
21476 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
21477
21478         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21479
21480         * gst/matroska/matroska-mux.c:
21481         (gst_matroska_mux_video_pad_setcaps),
21482         (gst_matroska_mux_audio_pad_setcaps):
21483           Fix mpeg4 input handling (#318847); also, while we're at it,
21484           fix media type for Motion-JPEG: should be image/jpeg.
21485
21486 2005-10-18  Wim Taymans  <wim@fluendo.com>
21487
21488         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21489         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21490         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21491         Fix for segment-start/stop API change.
21492
21493 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21494
21495         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21496         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21497         way.
21498
21499 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21500
21501         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21502         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21503         output declared in transform_caps.
21504
21505 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21506
21507         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21508
21509 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21510
21511         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21512         (gst_video_box_get_unit_size): Fix wrong size calculations and
21513         implement get_unit_size correctly.
21514
21515 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
21516
21517         * configure.ac:
21518           Enable flx plugin.
21519
21520         * gst/flx/gstflxdec.c: (flx_decode_chunks):
21521           Fix gcc4 signedness issue.
21522
21523 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21524
21525         * configure.ac: Adding videomixer.
21526         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21527         (user_read_data), (gst_pngdec_chain): More debugging.
21528         * gst/alpha/Makefile.am: Adding alphacolor
21529         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21530         (gst_alpha_color_class_init), (gst_alpha_color_init),
21531         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21532         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21533         (plugin_init): Ported to 0.9 using in place base tranform.
21534         * gst/videomixer/Makefile.am:
21535         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21536         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21537         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21538         (gst_videomixer_pad_init), (gst_videomixer_class_init),
21539         (gst_videomixer_init), (gst_videomixer_getcaps),
21540         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21541         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21542         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21543         to 0.9 using collectpads.
21544
21545 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
21546
21547         * configure.ac:
21548         * gst/flx/Makefile.am:
21549         * gst/flx/gstflxdec.c: (gst_flxdec_init),
21550         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21551         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21552         * gst/flx/gstflxdec.h:
21553         flx plugin ported to 0.9
21554
21555 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21556
21557         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21558           use new gst_version_string()
21559
21560 2005-10-16  Andy Wingo  <wingo@pobox.com>
21561
21562         * configure.ac: GLIB_CHECK.
21563
21564 2005-10-15  Julien MOUTTE  <julien@moutte.net>
21565
21566         * ext/libpng/Makefile.am:
21567         * ext/libpng/gstpng.c: (plugin_init):
21568         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21569         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21570         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21571
21572 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
21573
21574         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21575
21576         * configure.ac:
21577         * gst/matroska/Makefile.am:
21578         * gst/matroska/ebml-ids.h:
21579         * gst/matroska/ebml-write.c:
21580         * gst/matroska/ebml-write.h:
21581         * gst/matroska/matroska-ids.h:
21582         * gst/matroska/matroska-mux.c:
21583         * gst/matroska/matroska-mux.h:
21584         * gst/matroska/matroska.c: (plugin_init):
21585           Port matroska muxer to 0.9 (#318847).
21586
21587 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21588
21589         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21590         (comment_init), (comment_add):
21591           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21592           use GST_READ_UINT32_LE() and friends rather than the private
21593           implementation of those same macros.
21594
21595 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21596
21597         * examples/stats/mp2ogg.c:
21598           more typo fixes
21599
21600 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21601
21602         * examples/indexing/indexmpeg.c: (main):
21603         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21604         (gst_esdmon_close_audio), (gst_esdmon_change_state):
21605         * ext/esd/esdmon.h:
21606         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21607         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21608         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21609         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21610         * gst/avi/gstavimux.c: (gst_avimux_init):
21611         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21612         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21613         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21614         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21615         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21616         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21617         * gst/oldcore/gstmultifilesrc.h:
21618         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21619         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21620         (gst_pipefilter_change_state):
21621         * gst/oldcore/gstpipefilter.h:
21622         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21623         * gst/videomixer/videomixer.c: (gst_videomixer_init):
21624         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21625         * sys/osxaudio/gstosxaudiosink.h:
21626         * sys/osxaudio/gstosxaudiosrc.h:
21627           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21628           moved bitshift from macro to enum definition
21629
21630 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21631
21632         * ext/Makefile.am:
21633         * ext/cairo/Makefile.am:
21634         * ext/cairo/gstcairo.c: (plugin_init):
21635         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21636         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21637         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21638         * ext/cairo/gsttimeoverlay.h:
21639           update of cairo-based timeoverlay to 1.0 Cairo API
21640           doesn't work yet for resizing of output sink
21641
21642 2005-10-11  Wim Taymans  <wim@fluendo.com>
21643
21644         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21645         newsegment API fix.
21646
21647 2005-10-11  Wim Taymans  <wim@fluendo.com>
21648
21649         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21650         (gst_dvdemux_demux_frame):
21651         * ext/flac/gstflacdec.c: (gst_flacdec_write):
21652         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21653         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21654         (gst_avi_demux_handle_seek):
21655         * gst/goom/gstgoom.c: (gst_goom_event):
21656         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21657         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21658         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21659         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21660         (gst_wavparse_srcpad_event):
21661         newsegment API update.
21662
21663 2005-10-11  Andy Wingo  <wingo@pobox.com>
21664
21665         * ext/speex/gstspeexenc.c: Signedness cleanups.
21666
21667 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
21668
21669         * PORTED_09:
21670         * ext/speex/Makefile.am:
21671         * ext/speex/gstspeex.c:
21672         * ext/speex/gstspeexenc.c:
21673         Speexenc ported to 0.9
21674
21675 2005-10-10  Wim Taymans  <wim@fluendo.com>
21676
21677         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21678         (gst_oss_sink_init), (gst_oss_sink_set_property),
21679         (gst_oss_sink_get_property), (gst_oss_sink_open),
21680         (gst_oss_sink_prepare), (gst_oss_sink_reset):
21681         * sys/oss/gstosssink.h:
21682         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21683         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21684         (gst_oss_src_prepare):
21685         Cleanups, make device configurable in the sink, handle and report
21686         errors.
21687
21688 2005-10-10  Wim Taymans  <wim@fluendo.com>
21689
21690         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21691         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21692         Make sure element is NULL before removing from the bin.
21693
21694 2005-10-07  Andy Wingo  <wingo@pobox.com>
21695
21696         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21697         block forever in a read().
21698         (gst_dv1394src_bus_reset): Post a message when the cable is
21699         unplugged.
21700         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21701         (gst_dv1394src_bus_reset): Don't unref the message.
21702
21703         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21704         hacking. The only change should be that the state change stuff was
21705         put into basesrc's start() and stop() routines, which coalesces
21706         some steps.
21707
21708 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
21709
21710         * configure.ac:
21711           Add check for mmap
21712           
21713         * gst/debug/Makefile.am:
21714           Only compile efence plugin on systems that have mmap.
21715
21716 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
21717
21718         * gst/debug/Makefile.am:
21719         * gst/debug/breakmydata.c:
21720         * gst/debug/gstdebug.c:
21721         * gst/debug/gstnavigationtest.c:
21722         * gst/debug/gstnavseek.c: 
21723         * gst/debug/gstnavseek.h:
21724         * gst/debug/progressreport.c: 
21725         * gst/debug/testplugin.c:
21726           Port progressreport, navseek, navigationtest, testsink and
21727           breakmydata.
21728
21729 2005-10-05  Edward Hervey  <edward@fluendo.com>
21730
21731         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21732         (gst_dvdemux_src_query):
21733         Fixes for better conversion
21734
21735 2005-10-04  Michael Smith <msmith@fluendo.com>
21736
21737         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21738         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21739         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21740         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21741           Set state of elements to NULL before removing from bins.
21742           Set state of test element to NULL if we failed to move it to READY
21743
21744 2005-10-04  Edward Hervey  <edward@fluendo.com>
21745
21746         * ext/dv/Makefile.am:
21747         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
21748         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21749         Corrected the query function for position so it doesn't forget what
21750         format was asked, and calls the conversion functions on the correct pad.
21751
21752 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21753
21754         * configure.ac:
21755           back to development
21756
21757 === release 0.9.3 ===
21758
21759 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21760
21761         * configure.ac:
21762           Releasing 0.9.3, "Aramis"
21763
21764 2005-10-03  Andy Wingo  <wingo@pobox.com>
21765
21766         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21767         error returns.
21768
21769 2005-10-02  Andy Wingo  <wingo@pobox.com>
21770
21771         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21772
21773         * ext/flac/gstflacenc.c: Ported to 0.9.
21774
21775         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21776
21777         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21778         and link to gsttagedit. Enable flacenc.
21779
21780         * ext/flac/gstflacdec.c: Re-enable tag reading.
21781
21782 2005-09-30  Wim Taymans  <wim@fluendo.com>
21783
21784         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21785         * gst/rtp/gstrtpgsmparse.c:
21786         * gst/rtp/gstrtph263penc.c:
21787         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21788         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21789         (gst_rtpmp4venc_set_property):
21790         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21791         Various class and caps fixes from Andre Magalhaes (andrunko)
21792
21793 2005-09-29  Wim Taymans  <wim@fluendo.com>
21794
21795         * gst/level/level-example.c: (main):
21796         Update for new bus API.
21797
21798 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
21799
21800         * configure.ac:
21801           Fix unexpanded autoconf macro GST_DOC, which has been renamed
21802           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21803
21804 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
21805
21806         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21807           Fix playback of mono streams (bytes_per_sample should be set
21808           from the sample width and the number of channels negotiated,
21809           and not just be set to 4) (#317338)
21810
21811 2005-09-26  Wim Taymans  <wim@fluendo.com>
21812
21813         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21814         (gst_rtpmpaenc_handle_buffer):
21815         Set buffer duration correctly.
21816
21817 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
21818
21819         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21820         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21821         (gst_avi_demux_change_state):
21822           Don't crash when encountering a stream with an unknown fourcc or
21823           codec id. Instead, create a pad of type video/x-avi-unknown or
21824           audio/x-avi-unknown, which as a side-effect also results in less
21825           confusing error messages in players ('no decoder' vs. 'no streams');
21826           minor fixes to state change function and class_init function.
21827
21828 2005-09-24  Wim Taymans  <wim@fluendo.com>
21829
21830         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21831         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21832         These are sinks.
21833
21834 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21835
21836         * check/elements/level.c: (GST_START_TEST):
21837           fix test for new GstClockTime use
21838         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21839         (gst_level_transform_ip):
21840         * gst/level/gstlevel.h:
21841           fix up the decay peak, ensuring the decay peak is never lower
21842           than the peak for that interval
21843
21844 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21845
21846         * docs/plugins/gst-plugins-good-plugins.args:
21847         * docs/plugins/inspect/plugin-alpha.xml:
21848         * docs/plugins/inspect/plugin-rtp.xml:
21849         * gst/level/gstlevel.c: (gst_level_set_caps),
21850         (gst_level_transform_ip):
21851           updating docs
21852
21853 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21854
21855         * Makefile.am:
21856         * check/elements/level.c: (GST_START_TEST):
21857         * gst/level/Makefile.am:
21858         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21859         (gst_level_set_property), (gst_level_get_property),
21860         (gst_level_set_caps), (gst_level_message_new),
21861         (gst_level_transform_ip):
21862         * gst/level/gstlevel.h:
21863         * gst/level/level-example.c: (message_handler), (main):
21864           convert to using GstClockTime for all time values, finally.
21865
21866 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21867
21868         * gst/auparse/Makefile.am:
21869         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21870           fix up build
21871         * configure.ac:
21872         * ext/cairo/Makefile.am:
21873         * ext/dv/Makefile.am:
21874         * ext/esd/Makefile.am:
21875         * ext/flac/Makefile.am:
21876         * ext/gconf/Makefile.am:
21877         * ext/gdk_pixbuf/Makefile.am:
21878         * ext/jpeg/Makefile.am:
21879         * ext/ladspa/Makefile.am:
21880         * ext/libcaca/Makefile.am:
21881         * ext/libmng/Makefile.am:
21882         * ext/libpng/Makefile.am:
21883         * ext/mikmod/Makefile.am:
21884         * ext/pango/Makefile.am:
21885         * ext/raw1394/Makefile.am:
21886         * ext/shout2/Makefile.am:
21887         * ext/speex/Makefile.am:
21888         * gst/alpha/Makefile.am:
21889         * gst/autodetect/Makefile.am:
21890         * gst/avi/Makefile.am:
21891         * gst/cutter/Makefile.am:
21892         * gst/debug/Makefile.am:
21893         * gst/effectv/Makefile.am:
21894         * gst/flx/Makefile.am:
21895         * gst/goom/Makefile.am:
21896         * gst/interleave/Makefile.am:
21897         * gst/law/Makefile.am:
21898         * gst/matroska/Makefile.am:
21899         * gst/median/Makefile.am:
21900         * gst/monoscope/Makefile.am:
21901         * gst/multipart/Makefile.am:
21902         * gst/oldcore/Makefile.am:
21903         * gst/rtp/Makefile.am:
21904         * gst/rtsp/Makefile.am:
21905         * gst/smoothwave/Makefile.am:
21906         * gst/smpte/Makefile.am:
21907         * gst/videobox/Makefile.am:
21908         * gst/videofilter/Makefile.am:
21909         * gst/videomixer/Makefile.am:
21910         * gst/wavenc/Makefile.am:
21911         * gst/wavparse/Makefile.am:
21912         * sys/oss/Makefile.am:
21913         * sys/osxaudio/Makefile.am:
21914         * sys/osxvideo/Makefile.am:
21915           fix up GST_LIBS use
21916
21917 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21918
21919         * gst/auparse/Makefile.am:
21920         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21921           fix build of auparse
21922
21923 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21924
21925         * configure.ac:
21926         * PORTED_09:
21927         * gst/auparse/gstauparse.c:
21928         * gst/auparse/gstauparse.h:
21929         Auparse ported to 0.9.
21930
21931 2005-09-22  Wim Taymans  <wim@fluendo.com>
21932
21933         * gst/rtp/TODO:
21934         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21935         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21936         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21937         (gst_rtpmp4venc_set_property):
21938         * gst/rtp/gstrtpmp4venc.h:
21939         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21940         * gst/rtp/gstrtpmpaenc.h:
21941         Use is_filled to both check MTU and max-ptime of base class.
21942
21943 2005-09-22  Wim Taymans  <wim@fluendo.com>
21944
21945         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21946         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21947         (gst_rtpmp4venc_set_property):
21948         Don't fragment packets with multiple frames.
21949
21950 2005-09-22  Wim Taymans  <wim@fluendo.com>
21951
21952         * gst/rtp/TODO:
21953         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21954         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21955         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21956         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21957         (gst_rtpmp4venc_get_property):
21958         * gst/rtp/gstrtpmp4venc.h:
21959         Remove g_print.
21960         Update TODO
21961         Make payload encoder a bit smarter and more correct with
21962         timestamps.
21963         Added option in payloader to include config string in-band.
21964
21965 2005-09-21  Wim Taymans  <wim@fluendo.com>
21966
21967         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21968         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21969         (gst_rtspsrc_send):
21970         Strip spaces for key/value pairs.
21971
21972 2005-09-21  Wim Taymans  <wim@fluendo.com>
21973
21974         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21975         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21976         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21977         (gst_rtspsrc_change_state):
21978         More SDP parsing and caps setting.
21979         Do NO_PREROLL differently.
21980         add pads only after negotiated.
21981
21982         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21983         (gst_udpsrc_getcaps):
21984         Implement the getcaps function.
21985
21986 2005-09-21  Wim Taymans  <wim@fluendo.com>
21987
21988         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21989         (gst_rtpamrdec_chain):
21990         Handle multiple AMr packets per payload. Handle CRC and
21991         parse ILL/ILP.
21992
21993         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21994         Make caps params strings for easy SDP mapping.
21995         
21996         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
21997         Handle capsnego better.
21998
21999         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
22000         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
22001         Generate and parse config string in the caps.
22002
22003 2005-09-21  Wim Taymans  <wim@fluendo.com>
22004
22005         * gst/rtp/README:
22006         Update README
22007
22008         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
22009         Make extra params as strings.
22010
22011         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
22012         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22013         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
22014         Make state change return NO_PREROLL as this is a live
22015         source.
22016
22017         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22018         Don't unref old caps when NULL.
22019
22020 2005-09-20  Wim Taymans  <wim@fluendo.com>
22021
22022         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
22023         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22024         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
22025         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
22026         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
22027         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
22028         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
22029         * gst/rtsp/sdpmessage.h:
22030         Add URI handler.
22031         Parse SDP and create caps.
22032
22033 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
22034
22035         * gst/alpha/gstalpha.c:
22036           fix element description
22037
22038 2005-09-19  Wim Taymans  <wim@fluendo.com>
22039
22040         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
22041         Don't check payload for now.
22042
22043 2005-09-19  Wim Taymans  <wim@fluendo.com>
22044
22045         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
22046         (gst_wavparse_init), (gst_wavparse_parse_file_header),
22047         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
22048         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
22049         (gst_wavparse_loop), (gst_wavparse_pad_convert),
22050         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
22051         (gst_wavparse_change_state):
22052         * gst/wavparse/gstwavparse.h:
22053         Fix wavparse some more.
22054
22055 2005-09-19  Wim Taymans  <wim@fluendo.com>
22056
22057         * check/elements/level.c: (GST_START_TEST):
22058         Fix for bus API change.
22059
22060 2005-09-19  Wim Taymans  <wim@fluendo.com>
22061
22062         * gst/level/level-example.c: (main):
22063         Fix for new bus API.
22064
22065         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22066         Set caps on pads.
22067
22068 2005-09-15  Wim Taymans  <wim@fluendo.com>
22069
22070         * gst/rtp/Makefile.am:
22071         * gst/rtp/README:
22072         * gst/rtp/gstrtp.c: (plugin_init):
22073         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
22074         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
22075         (gst_rtpamrdec_change_state):
22076         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
22077         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
22078         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
22079         * gst/rtp/gstrtpamrenc.h:
22080         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
22081         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
22082         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
22083         * gst/rtp/gstrtpgsmenc.h:
22084         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
22085         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
22086         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
22087         (gst_rtpgsmparse_change_state):
22088         * gst/rtp/gstrtpgsmparse.h:
22089         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
22090         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
22091         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
22092         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
22093         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
22094         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
22095         * gst/rtp/gstrtph263penc.h:
22096         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
22097         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
22098         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22099         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
22100         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
22101         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
22102         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
22103         * gst/rtp/gstrtpmp4venc.h:
22104         * gst/rtp/gstrtpmpadec.c:
22105         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
22106         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
22107         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
22108         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
22109         * gst/rtp/gstrtpmpaenc.h:
22110         Updates to payloader/depayloaders, make payloaders use
22111         the base classes.
22112         Updated README with suggested RTP caps and how to convert
22113         to/from SDP.
22114         Added config descriptor in mp4v payloader.
22115
22116 2005-09-15  Andy Wingo  <wingo@pobox.com>
22117
22118         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
22119         * gst/autodetect/gstautovideosink.c
22120         (gst_auto_video_sink_find_best): Update for new registry API.
22121
22122 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22123
22124         * common/c-to-xml.py:
22125         * common/gtk-doc-plugins.mak:
22126           a simple py script to generate valid xml from a C example
22127           probably also need to strip an MIT license when we decide
22128         * docs/plugins/Makefile.am:
22129         * gst/level/Makefile.am:
22130         * gst/level/gstlevel.c: (gst_level_init):
22131         * gst/level/level-example.c: (message_handler), (main):
22132           add an example to level that will show up in the docs
22133         * gst/rtp/TODO:
22134           add a note for the future
22135
22136 2005-09-14  Michael Smith <msmith@fluendo.com>
22137
22138         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
22139           Actually define the debug object being used in wavenc. Fixes #316205
22140
22141 2005-09-14  Michael Smith <msmith@fluendo.com>
22142
22143         * gst/smpte/Makefile.am:
22144           Link against GST_BASE_LIBS, to get it linked against libgstbase;
22145           needed to build on windows (bug 316204)
22146
22147 2005-09-12  Andy Wingo  <wingo@pobox.com>
22148
22149         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
22150
22151 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22152
22153         * configure.ac:
22154         * gst/fdsrc/Makefile.am:
22155         * gst/fdsrc/gstfdsrc.c:
22156         * gst/fdsrc/gstfdsrc.h:
22157           Move fdsrc back into gstreamer core elements.
22158
22159         * gst/level/gstlevel.c: (gst_level_class_init),
22160         (gst_level_transform_ip):
22161         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
22162           Basetransform changes.
22163
22164 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22165
22166         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
22167         * ext/jpeg/smokecodec.c: (find_best_size):
22168           fix compiler warnings
22169
22170 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22171
22172         * gst-plugins-good.spec.in:
22173           spec file fixes
22174         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
22175         (gst_multiudpsink_render), (gst_multiudpsink_add),
22176         (gst_multiudpsink_clear):
22177           it actually helps to actually stream if we hook up the
22178           "add" signal to an actual implementation
22179         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
22180           some debugging
22181
22182 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
22183
22184         * ext/jpeg/Makefile.am:
22185         * ext/jpeg/gstjpeg.c
22186         * ext/jpeg/gstjpegenc.c:
22187         * ext/jpeg/gstsmokeenc.c:
22188
22189 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22190
22191         * ext/flac/gstflacdec.c:
22192         * ext/flac/gstflacenc.c:
22193         * ext/flac/gstflactag.c:
22194         * ext/speex/gstspeexenc.c:
22195           gsttaginterface.h -> gsttagsetter.h
22196
22197 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22198
22199         * configure.ac:
22200         * gst/debug/Makefile.am:
22201         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22202         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22203         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22204         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22205         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22206           Port to 0.9 and re-enable efence plugin.
22207
22208 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
22209
22210         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22211         (gst_flacdec_write), (gst_flacdec_convert_src):
22212         * ext/flac/gstflacdec.h:
22213           Add support for flac files with 24/32 bits per sample; and misc.
22214           minor clean-ups. Seeking is still partly broken (for me at least).
22215
22216 2005-09-06  Wim Taymans  <wim@fluendo.com>
22217
22218         * gst/rtp/Makefile.am:
22219         * gst/rtp/gstrtp.c: (plugin_init):
22220         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22221         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22222         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22223         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22224         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22225         (gst_rtpmp4vdec_plugin_init):
22226         * gst/rtp/gstrtpmp4vdec.h:
22227         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22228         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22229         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22230         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22231         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22232         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22233         * gst/rtp/gstrtpmp4venc.h:
22234         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22235         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22236         Added mpeg4 video payload encoder/decoder.
22237         Added some docs in mpa payloader.
22238
22239 === release 0.9.1 ===
22240
22241 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22242
22243         * NEWS:
22244         * README:
22245         * RELEASE:
22246         * autogen.sh:
22247         * configure.ac:
22248           releasing 0.9.1, "Blondie"
22249
22250 2005-09-05  Andy Wingo  <wingo@pobox.com>
22251
22252         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22253         here from the state change handler, so we fire signals without
22254         holding the state lock.
22255
22256 2005-09-02  Andy Wingo  <wingo@pobox.com>
22257
22258         * All plugins updated for element state changes.
22259
22260 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22261
22262         * Makefile.am:
22263         * check/.cvsignore:
22264         * check/Makefile.am:
22265         * check/elements/.cvsignore:
22266         * check/elements/level.c: (setup_level), (cleanup_level),
22267         (GST_START_TEST), (level_suite), (main):
22268           add a test for level
22269         * common/release.mak:
22270           move the enum checking to release.mak
22271         * configure.ac:
22272           add valgrind and check checking
22273         * gst/level/gstlevel.c: (gst_level_transform):
22274         * gst/level/gstlevel.h:
22275           fix Andy's cast bug
22276           convert a field to int
22277           fix the arithmetic to int when checking for emit so that a
22278           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22279
22280 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22281
22282         * Makefile.am:
22283         * configure.ac:
22284           add docs to build
22285         * common/plugins.xsl:
22286           wrap Description into a refsect2
22287         * docs/Makefile.am:
22288         * docs/plugins/Makefile.am:
22289         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22290         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22291         * gst/goom/Makefile.am:
22292         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22293         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22294         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22295         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22296         (gst_goom_change_state):
22297         * gst/goom/gstgoom.h:
22298           GstGOOM -> GstGoom
22299           add an example launch line
22300         * gst/level/gstlevel.h:
22301         * gst/monoscope/gstmonoscope.c:
22302           cleanups
22303
22304 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22305
22306         * configure.ac:
22307         * docs/plugins/Makefile.am:
22308         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22309         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22310         * docs/plugins/gst-plugins-good-plugins.types:
22311           document elements and plugins.  Shazam !
22312
22313 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22314
22315         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
22316           be found under doc/random/ChangeLog-0.8