Add audioiirfilter and audiofirfilter elements which allow generic IIR/FIR filters...
[platform/upstream/gstreamer.git] / ChangeLog
1 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * configure.ac:
4         * gst/audiofx/Makefile.am:
5         * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init),
6         (gst_audio_fir_filter_class_init),
7         (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init),
8         (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize),
9         (gst_audio_fir_filter_set_property),
10         (gst_audio_fir_filter_get_property):
11         * gst/audiofx/audiofirfilter.h:
12         * gst/audiofx/audiofx.c: (plugin_init):
13         * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init),
14         (gst_audio_iir_filter_class_init),
15         (gst_audio_iir_filter_update_coefficients),
16         (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup),
17         (gst_audio_iir_filter_finalize),
18         (gst_audio_iir_filter_set_property),
19         (gst_audio_iir_filter_get_property):
20         * gst/audiofx/audioiirfilter.h:
21         Add audioiirfilter and audiofirfilter elements which allow
22         generic IIR/FIR filters to be implemented by providing the
23         filter coefficients. Fixes bug #567577.
24
25         * docs/plugins/Makefile.am:
26         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
27         * docs/plugins/gst-plugins-good-plugins-sections.txt:
28         * docs/plugins/gst-plugins-good-plugins.args:
29         * docs/plugins/gst-plugins-good-plugins.hierarchy:
30         * docs/plugins/gst-plugins-good-plugins.signals:
31         * docs/plugins/inspect/plugin-alaw.xml:
32         * docs/plugins/inspect/plugin-audiofx.xml:
33         * docs/plugins/inspect/plugin-avi.xml:
34         * docs/plugins/inspect/plugin-flac.xml:
35         * docs/plugins/inspect/plugin-mulaw.xml:
36         * docs/plugins/inspect/plugin-video4linux2.xml:
37         * docs/plugins/inspect/plugin-wavparse.xml:
38         Add documentation for the audioiirfilter and audiofirfilter
39         elements.
40
41         * tests/check/Makefile.am:
42         * tests/check/elements/audiofirfilter.c: (on_message),
43         (on_rate_changed), (on_handoff), (GST_START_TEST),
44         (audiofirfilter_suite):
45         * tests/check/elements/audioiirfilter.c: (on_message),
46         (on_rate_changed), (on_handoff), (GST_START_TEST),
47         (audioiirfilter_suite):
48         * tests/examples/Makefile.am:
49         * tests/examples/audiofx/Makefile.am:
50         * tests/examples/audiofx/firfilter-example.c: (on_message),
51         (on_rate_changed), (main):
52         * tests/examples/audiofx/iirfilter-example.c: (on_message),
53         (on_rate_changed), (main):
54         Add unit tests and example applications for the two filter
55         elements.
56
57 2009-01-13  Michael Smith <msmith@songbirdnest.com>
58
59         Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
60         * gst/qtdemux/qtdemux.c:
61           Fix format string for guint64.
62
63 2009-01-13  Michael Smith <msmith@songbirdnest.com>
64
65         * sys/osxaudio/Makefile.am:
66           osxaudio plugin now requires AudioUnit framework, so link against that.
67           Clean up tabs v spaces while I'm there.
68
69 2009-01-13  Wim Taymans  <wim.taymans@collabora.co.uk>
70
71         * tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
72         (print_stats), (main):
73         Add some example code for printing the RTP manager stats.
74
75 2009-01-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
76
77         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_class_init),
78         (gst_audio_cheb_band_init), (gst_audio_cheb_band_finalize),
79         (gst_audio_cheb_band_set_property):
80         * gst/audiofx/audiochebband.h:
81         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_class_init),
82         (gst_audio_cheb_limit_init), (gst_audio_cheb_limit_finalize),
83         (gst_audio_cheb_limit_set_property):
84         * gst/audiofx/audiocheblimit.h:
85         * gst/audiofx/audiowsincband.c: (gst_audio_wsincband_class_init),
86         (gst_audio_wsincband_init), (gst_audio_wsincband_finalize),
87         (gst_audio_wsincband_set_property):
88         * gst/audiofx/audiowsincband.h:
89         * gst/audiofx/audiowsinclimit.c: (gst_audio_wsinclimit_class_init),
90         (gst_audio_wsinclimit_init), (gst_audio_wsinclimit_finalize),
91         (gst_audio_wsinclimit_set_property):
92         * gst/audiofx/audiowsinclimit.h:
93         Use a custom mutex for protecting the instance fields instead of
94         the GstObject lock. Using the latter can lead to deadlocks, especially
95         with the FIR filters when updating the latency.
96
97 2009-01-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
98
99         * gst/audiofx/Makefile.am:
100         * gst/audiofx/audiofxbasefirfilter.c:
101         (gst_audio_fx_base_fir_filter_dispose),
102         (gst_audio_fx_base_fir_filter_base_init),
103         (gst_audio_fx_base_fir_filter_class_init),
104         (gst_audio_fx_base_fir_filter_init),
105         (gst_audio_fx_base_fir_filter_push_residue),
106         (gst_audio_fx_base_fir_filter_setup),
107         (gst_audio_fx_base_fir_filter_transform),
108         (gst_audio_fx_base_fir_filter_start),
109         (gst_audio_fx_base_fir_filter_stop),
110         (gst_audio_fx_base_fir_filter_query),
111         (gst_audio_fx_base_fir_filter_query_type),
112         (gst_audio_fx_base_fir_filter_event),
113         (gst_audio_fx_base_fir_filter_set_kernel):
114         * gst/audiofx/audiofxbasefirfilter.h:
115         * gst/audiofx/audiofxbaseiirfilter.c:
116         Implement a base class for generic audio FIR filters.
117
118         * gst/audiofx/audiowsincband.c:
119         (gst_gst_audio_wsincband_mode_get_type),
120         (gst_gst_audio_wsincband_window_get_type),
121         (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
122         (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
123         (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
124         (gst_audio_wsincband_get_property):
125         * gst/audiofx/audiowsincband.h:
126         * gst/audiofx/audiowsinclimit.c:
127         (gst_audio_wsinclimit_mode_get_type),
128         (gst_audio_wsinclimit_window_get_type),
129         (gst_audio_wsinclimit_base_init),
130         (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
131         (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
132         (gst_audio_wsinclimit_set_property),
133         (gst_audio_wsinclimit_get_property):
134         * gst/audiofx/audiowsinclimit.h:
135         * tests/check/elements/audiowsincband.c: (GST_START_TEST):
136         * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
137         Use this new base class for audiowsincband and audiowsinclimit.
138         Also cleanup both elements.
139
140 2009-01-08  Michael Smith <msmith@songbirdnest.com>
141
142         * gst/qtdemux/qtdemux.c:
143           In push mode, error out if we get EOS before we've created any srcpads.
144           Handle (in pull mode) some files that have a truncated moov atom where
145           the final sub-atom is a 'free' atom and the contents of that are not
146           present in the file.
147
148 2009-01-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
149
150         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
151         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
152         Some cleanups, refactoring and minor enhancements in caps handling.
153
154         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
155         (gst_matroska_mux_init), (gst_matroska_pad_reset),
156         (gst_matroska_pad_free), (gst_matroska_mux_reset),
157         (gst_matroska_mux_video_pad_setcaps),
158         (gst_matroska_mux_request_new_pad):
159         * tests/check/elements/matroskamux.c: (teardown_src_pad):
160         Only remove, release or reset what is appropriate upon state change.
161
162 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
163
164         * ext/pulse/pulsesink.c:
165         * ext/pulse/pulsesink.h:
166         Use a mutex to protect the current stream pointer, and ignore
167         callbacks for stream objects that have been destroyed already.
168         Fixes problems with unprepare/prepare cycles caused by the input
169         caps changing, without reintroducing bug #556986.
170
171 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
172
173         * sys/v4l2/gstv4l2src.c:
174         Remove () from translateable string, so that it makes more sense.
175
176 2009-01-07  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
177
178         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
179         Minor fix/cleanup in header field calculation.
180
181 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
182
183         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
184         (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
185         * gst/matroska/matroska-mux.h:
186         Remove internal taglist and fully use tagsetter interface.
187
188 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
189
190         * gst/avi/gstavimux.c: (gst_avi_mux_reset),
191         (gst_avi_mux_riff_get_avi_header):
192         * gst/avi/gstavimux.h:
193         Ensure header size invariance during subsequent rewrite by using
194         tags snapshot.
195
196 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
197
198         * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
199         Don't wait for the pulse mainloop when destroying the stream.
200         Fixes a deadlock when the pulsedaemon goes away while pulsesink
201         is PLAYING. Fixes bug #556986.
202
203 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
204
205         Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
206                   Luotao Fu <l dot fu at pengutronix dot de>
207
208         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
209         (gst_v4l2_get_caps_info):
210         Add support for grayscale v4l2 devices. Fixes bug #566616.
211
212 2009-01-05  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
213
214         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
215         (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
216         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
217         (qtdemux_tag_add_blob), (qtdemux_parse_udta):
218         * gst/qtdemux/qtdemux.h:
219         * gst/qtdemux/quicktime.c: (plugin_init):
220         Streamline tag handling and pass unparsed tags as binary blob
221         in private tag.
222
223 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
224
225         * gst/audiofx/Makefile.am:
226         * gst/audiofx/audiofxbaseiirfilter.c:
227         (gst_audio_fx_base_iir_filter_base_init),
228         (gst_audio_fx_base_iir_filter_dispose),
229         (gst_audio_fx_base_iir_filter_class_init),
230         (gst_audio_fx_base_iir_filter_init),
231         (gst_audio_fx_base_iir_filter_calculate_gain),
232         (gst_audio_fx_base_iir_filter_set_coefficients),
233         (gst_audio_fx_base_iir_filter_setup), (process),
234         (gst_audio_fx_base_iir_filter_transform_ip),
235         (gst_audio_fx_base_iir_filter_stop):
236         * gst/audiofx/audiofxbaseiirfilter.h:
237         Implement a base class for IIR filters.
238
239         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
240         (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
241         (generate_coefficients), (gst_audio_cheb_band_set_property),
242         (gst_audio_cheb_band_setup):
243         * gst/audiofx/audiochebband.h:
244         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
245         (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
246         (generate_coefficients), (gst_audio_cheb_limit_set_property),
247         (gst_audio_cheb_limit_setup):
248         * gst/audiofx/audiocheblimit.h:
249         Use the IIR filter base class for the chebyshev filters.
250
251 2009-01-02  Michael Smith <msmith@songbirdnest.com>
252
253           Patch by: Justin Karnegas <justin@affinix.com> and
254                     Michael Smith <msmith@songbirdnest.com>
255         * sys/osxaudio/gstosxaudio.c:
256         * sys/osxaudio/gstosxaudioelement.c:
257         * sys/osxaudio/gstosxaudioelement.h:
258         * sys/osxaudio/gstosxaudiosink.c:
259         * sys/osxaudio/gstosxaudiosink.h:
260         * sys/osxaudio/gstosxaudiosrc.c:
261         * sys/osxaudio/gstosxaudiosrc.h:
262         * sys/osxaudio/gstosxringbuffer.c:
263         * sys/osxaudio/gstosxringbuffer.h:
264           Rewrite osxaudio to work more flexibly and more reliably, using a
265           different abstraction layer of coreaudio that is the recommended way of
266           doing low-level audio I/O on OSX.
267           Fixes byg #564948.
268
269 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
270
271         * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
272         Add example RTP transcoding pipeline from any file decodedable with
273         uridecodebin.
274
275 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
276
277         * tests/examples/rtp/.cvsignore:
278         * tests/examples/rtp/Makefile.am:
279         * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
280         * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
281         Add two C examples of using gstrtpbin as a sender and a receiver.
282
283 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
284
285         * ChangeLog:
286         Remove conflict marker from ChangeLog
287
288 2008-12-28  Edward Hervey  <edward.hervey@collabora.co.uk>
289
290         Patch by: j^ <j at oil21.org>
291
292         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
293         (qtdemux_audio_caps):
294         Add codec mapping for xvid, fmp4 and ac3 tracks.
295         Fixes #565850
296
297 2008-12-23  Wim Taymans  <wim.taymans@collabora.co.uk>
298
299         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
300         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
301         (gst_smokeenc_chain), (gst_smokeenc_change_state):
302         * ext/jpeg/gstsmokeenc.h:
303         Implement getcaps function.
304         Set caps on the pad and on all outgoing buffers.
305         Fixes #565441.
306
307 2008-12-19  Stefan Kost  <ensonic@users.sf.net>
308
309         * ext/pulse/pulsemixerctrl.c:
310           And remove temporary comment pointing to the bug ticket.
311
312         * gst/avi/gstavimux.c:
313           Move reoccuring logging to LOG and log instance too.
314
315 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
316
317         * ext/pulse/pulsemixerctrl.c:
318           Don't leak the pa_operation.
319
320 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
321
322         * configure.ac:
323           Require core cvs.
324
325 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
326
327         * gst/avi/gstavimux.c:
328           Rename api from _flush to _reset_tags. 
329
330 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
331
332         * gst/avi/gstavimux.c:
333           Use new tagsetter api to flush tags.
334
335 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
336
337         * tests/check/elements/deinterleave.c: (deinterleave_suite):
338         Increase timeout to 3 minutes to prevent timeouts.
339
340 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
341
342         * tests/check/elements/interleave.c: (interleave_suite):
343         Increase timeout to 3 minutes to prevent timeouts.
344
345 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
346
347         * gst/avi/gstavimux.c:
348         * gst/avi/gstavimux.h:
349           Totally remove the internal taglists and fully use tagsetter.
350
351 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
352
353         * gst/avi/gstavimux.c:
354           Instead of filtering wrongly just use the mergemode. Applications is
355           use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
356           avi for real (I hope). Everyone chime in, before I fix the others.
357
358 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
359
360         * ext/pulse/pulsemixerctrl.c:
361           Add note about memleak.
362
363 2008-12-13  Edward Hervey  <bilboed@gmail.com>
364
365         * m4/Makefile.am:
366         A couple more .m4 that aren't shipped anymore with gettext 0.17.
367
368 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
369
370         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
371         (gst_flac_dec_init):
372         * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
373         (gst_alaw_dec_init):
374         * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
375         (gst_alaw_enc_init):
376         * gst/law/alaw.c: (plugin_init):
377         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
378         (gst_mulawdec_init):
379         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
380         (gst_mulawenc_init):
381         * gst/law/mulaw.c: (plugin_init):
382         Switch to using GstStaticPadTemplate.
383         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
384         Don't forget to free the addrinfo structure.
385         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
386         (gst_wavparse_sink_activate):
387         Don't forget to unref the GstAdapter.
388
389 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
390
391         * m4/Makefile.am:
392         inttypes.m4 hasn't been available since gettext-0.15, and since we now
393         require gettext >= 0.17 ... we can remove it from the list of files to
394         dist.
395
396 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
397
398         * gst/avi/gstavidemux.c:
399           More logging.
400
401         * gst/avi/gstavimux.c:
402           Handle more metadata fields. Better estimate of metadata size. Don't
403           merge received tags, if application has specified tags using
404           GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
405
406 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
407
408         * tests/check/Makefile.am:
409         Also ignore pulsemixer for the states unit test.
410
411 2008-12-09  Wim Taymans  <wim.taymans@collabora.co.uk>
412
413         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
414         Add an EOI marker at the end of the jpeg frame when it's missing.
415         Fixes #563056.
416
417 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
418
419         * tests/check/elements/videocrop.c: (check_1x1_buffer):
420         Update the unit test for the new color values for BT.601 red.
421         Fixes bug #563510.
422
423 2008-12-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
424
425         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
426           Restore previous behaviour of not passing QoS and navigation
427           events upstream, which presumably wasn't meant to be changed.
428
429 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
430
431         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
432         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
433         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
434         (gst_dvdemux_chain), (gst_dvdemux_loop),
435         (gst_dvdemux_change_state):
436         Add srcpads only when needed and remove them again when going
437         back to READY. This prevents stalled pipelines if there's no
438         audio inside the DV stream, which happens for many MXF files.
439
440 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
441
442         * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
443         (run_server):
444         The ports in libsoup are unsigned integers and not signed
445         integers.
446
447 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
448
449         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
450         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
451         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
452         (gst_dvdemux_chain), (gst_dvdemux_loop),
453         (gst_dvdemux_change_state):
454         Add srcpads only when they're needed. If we add all pads in any
455         case we will get a stalling audio pad if the stream contains
456         no audio, which is the case for many MXF files.
457
458 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
459
460         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
461         Forward all events upstream unless it's something we really
462         don't handle. This fixes latency configuration of pipelines.
463
464 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
465
466         * ext/dv/gstdv.c: (plugin_init):
467         * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
468         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
469         Really call dv_init() exactly one time, not one time for
470         the demuxer and one time for the decoder.
471
472 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
473
474         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
475         Copy incomming timestamp to outgoing packets.
476
477 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
478
479         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
480         (gst_rtp_mp4v_pay_event):
481         Don't try to push packets before we could find a valid config
482         startcode. Fixes #563509.
483
484 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
485
486         Patch by: Brian Cameron <brian.cameron at sun dot com>
487
488         * sys/sunaudio/gstsunaudiomixerctrl.c:
489         (gst_sunaudiomixer_ctrl_open):
490         Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
491
492 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
493
494         Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
495
496         * configure.ac:
497         Make usage of libv4l optional by a configure parameter.
498         Fixes bug #563504.
499
500 2008-12-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
501
502         * docs/plugins/Makefile.am:
503         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
504         * docs/plugins/gst-plugins-good-plugins-sections.txt:
505         * docs/plugins/gst-plugins-good-plugins.args:
506         * docs/plugins/gst-plugins-good-plugins.hierarchy:
507         * docs/plugins/gst-plugins-good-plugins.interfaces:
508         * docs/plugins/inspect/plugin-1394.xml:
509         * docs/plugins/inspect/plugin-aasink.xml:
510         * docs/plugins/inspect/plugin-alaw.xml:
511         * docs/plugins/inspect/plugin-alpha.xml:
512         * docs/plugins/inspect/plugin-alphacolor.xml:
513         * docs/plugins/inspect/plugin-annodex.xml:
514         * docs/plugins/inspect/plugin-apetag.xml:
515         * docs/plugins/inspect/plugin-audiofx.xml:
516         * docs/plugins/inspect/plugin-auparse.xml:
517         * docs/plugins/inspect/plugin-autodetect.xml:
518         * docs/plugins/inspect/plugin-avi.xml:
519         * docs/plugins/inspect/plugin-cacasink.xml:
520         * docs/plugins/inspect/plugin-cairo.xml:
521         * docs/plugins/inspect/plugin-cutter.xml:
522         * docs/plugins/inspect/plugin-debug.xml:
523         * docs/plugins/inspect/plugin-dv.xml:
524         * docs/plugins/inspect/plugin-efence.xml:
525         * docs/plugins/inspect/plugin-effectv.xml:
526         * docs/plugins/inspect/plugin-equalizer.xml:
527         * docs/plugins/inspect/plugin-esdsink.xml:
528         * docs/plugins/inspect/plugin-flac.xml:
529         * docs/plugins/inspect/plugin-flxdec.xml:
530         * docs/plugins/inspect/plugin-gamma.xml:
531         * docs/plugins/inspect/plugin-gconfelements.xml:
532         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
533         * docs/plugins/inspect/plugin-goom.xml:
534         * docs/plugins/inspect/plugin-goom2k1.xml:
535         * docs/plugins/inspect/plugin-halelements.xml:
536         * docs/plugins/inspect/plugin-icydemux.xml:
537         * docs/plugins/inspect/plugin-id3demux.xml:
538         * docs/plugins/inspect/plugin-interleave.xml:
539         * docs/plugins/inspect/plugin-jpeg.xml:
540         * docs/plugins/inspect/plugin-level.xml:
541         * docs/plugins/inspect/plugin-matroska.xml:
542         * docs/plugins/inspect/plugin-monoscope.xml:
543         * docs/plugins/inspect/plugin-mulaw.xml:
544         * docs/plugins/inspect/plugin-multifile.xml:
545         * docs/plugins/inspect/plugin-multipart.xml:
546         * docs/plugins/inspect/plugin-navigationtest.xml:
547         * docs/plugins/inspect/plugin-ossaudio.xml:
548         * docs/plugins/inspect/plugin-png.xml:
549         * docs/plugins/inspect/plugin-pulseaudio.xml:
550         * docs/plugins/inspect/plugin-quicktime.xml:
551         * docs/plugins/inspect/plugin-replaygain.xml:
552         * docs/plugins/inspect/plugin-rtp.xml:
553         * docs/plugins/inspect/plugin-rtsp.xml:
554         * docs/plugins/inspect/plugin-shout2send.xml:
555         * docs/plugins/inspect/plugin-smpte.xml:
556         * docs/plugins/inspect/plugin-soup.xml:
557         * docs/plugins/inspect/plugin-spectrum.xml:
558         * docs/plugins/inspect/plugin-speex.xml:
559         * docs/plugins/inspect/plugin-taglib.xml:
560         * docs/plugins/inspect/plugin-udp.xml:
561         * docs/plugins/inspect/plugin-video4linux2.xml:
562         * docs/plugins/inspect/plugin-videobalance.xml:
563         * docs/plugins/inspect/plugin-videobox.xml:
564         * docs/plugins/inspect/plugin-videocrop.xml:
565         * docs/plugins/inspect/plugin-videoflip.xml:
566         * docs/plugins/inspect/plugin-videomixer.xml:
567         * docs/plugins/inspect/plugin-wavenc.xml:
568         * docs/plugins/inspect/plugin-wavpack.xml:
569         * docs/plugins/inspect/plugin-wavparse.xml:
570         * docs/plugins/inspect/plugin-ximagesrc.xml:
571         * gst/matroska/matroska-demux.c:
572         * gst/matroska/matroska-demux.h:
573         * gst/matroska/matroska-mux.c:
574         * gst/matroska/matroska-mux.h:
575         Add documentation for matroskamux and matroskademux and
576         update the inspection xml files.
577
578 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
579
580         * configure.ac:
581         Apparently AC_CONFIG_MACRO_DIR breaks when using more
582         than one macro directory, reverting last change.
583
584 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
585
586         * configure.ac:
587         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
588         our M4 macros.
589
590 2008-11-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
591
592         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
593         Provide the parameters that are required for the format string
594         to fix a compiler warning.
595
596 2008-11-29  Stefan Kost  <ensonic@users.sf.net>
597
598         * gst/autodetect/gstautoaudiosrc.c:
599           Fix classification.
600
601 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
602
603         Patch by: Cygwin Ports maintainer
604                   <yselkowitz at users dot sourceforge dot net>
605
606         * autogen.sh:
607         * configure.ac:
608         Require gettext 0.17 because older versions don't mix with libtool
609         2.2. At build time an older gettext version will still work.
610         Fixes bug #556091.
611
612 2008-11-28  Wim Taymans  <wim.taymans@collabora.co.uk>
613
614         Patch by: Peter Kjellerstedt <pkj at axis com>
615
616         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
617         Make gst_multiudpsink_render() ignore errors from sendto() instead of
618         breaking streaming. Emit a warning instead. Fixes #562572.
619
620 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
621
622         Patch by: Ron McOuat <rmcouat at smartt dot com>
623
624         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
625         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
626         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
627         (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
628         * ext/soup/gstsouphttpsrc.h:
629         * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
630         (digest_auth_cb), (run_test), (GST_START_TEST),
631         (souphttpsrc_suite), (run_server):
632         Add support for basic and digest authentication in souphttpsrc.
633         Fixes bug #561775.
634
635 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
636
637         Patch by: Pepijn Van Eeckhoudt
638                       <pepijn dot vaneeckhoudt at luciad dot com>
639
640         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
641         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
642         * gst/wavenc/gstwavenc.h:
643         * gst/wavenc/riff.h:
644         Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
645
646 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
647
648         Patch by: 이문형 <iwings at gmail dot com>
649
650         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
651         Prevent further read/write actions taken to the connect-failed socket by
652         erroring out quickly. See #562258.
653
654 2008-11-26  Stefan Kost  <ensonic@users.sf.net>
655
656         * tests/examples/level/level-example.c:
657           Set fakesink to sync. Otherwise people might question the message
658           interval. Nevertheless the timestamp in the message is what matters.
659
660 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
661
662         * tests/icles/.cvsignore:
663         cvsignore newly generated file.
664
665 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
666
667         * gst/rtp/gstasteriskh263.c:
668         * gst/rtp/gstasteriskh263.h:
669         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
670         * gst/rtp/gstrtpL16depay.h:
671         * gst/rtp/gstrtpL16pay.c:
672         * gst/rtp/gstrtpL16pay.h:
673         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
674         * gst/rtp/gstrtpac3depay.h:
675         * gst/rtp/gstrtpamrdepay.c:
676         * gst/rtp/gstrtpamrdepay.h:
677         * gst/rtp/gstrtpamrpay.c:
678         * gst/rtp/gstrtpamrpay.h:
679         * gst/rtp/gstrtpdepay.c:
680         * gst/rtp/gstrtpdepay.h:
681         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
682         * gst/rtp/gstrtpg726depay.c:
683         * gst/rtp/gstrtpg726pay.c:
684         * gst/rtp/gstrtpg729depay.c:
685         * gst/rtp/gstrtpg729pay.c:
686         * gst/rtp/gstrtpgsmdepay.c:
687         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
688         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
689         * gst/rtp/gstrtph263depay.h:
690         * gst/rtp/gstrtph263pay.c:
691         * gst/rtp/gstrtph263pay.h:
692         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
693         * gst/rtp/gstrtph263pdepay.h:
694         * gst/rtp/gstrtph263ppay.c:
695         * gst/rtp/gstrtph263ppay.h:
696         * gst/rtp/gstrtph264depay.c:
697         * gst/rtp/gstrtph264depay.h:
698         * gst/rtp/gstrtph264pay.c:
699         * gst/rtp/gstrtph264pay.h:
700         * gst/rtp/gstrtpilbcdepay.c:
701         * gst/rtp/gstrtpilbcpay.c:
702         * gst/rtp/gstrtpjpegdepay.h:
703         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
704         * gst/rtp/gstrtpmp1sdepay.h:
705         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
706         * gst/rtp/gstrtpmp2tdepay.h:
707         * gst/rtp/gstrtpmp2tpay.c:
708         * gst/rtp/gstrtpmp2tpay.h:
709         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
710         * gst/rtp/gstrtpmp4apay.c:
711         * gst/rtp/gstrtpmp4apay.h:
712         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
713         * gst/rtp/gstrtpmp4gdepay.h:
714         * gst/rtp/gstrtpmp4gpay.c:
715         * gst/rtp/gstrtpmp4gpay.h:
716         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
717         * gst/rtp/gstrtpmp4vdepay.h:
718         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
719         * gst/rtp/gstrtpmp4vpay.h:
720         * gst/rtp/gstrtpmpadepay.c:
721         * gst/rtp/gstrtpmpadepay.h:
722         * gst/rtp/gstrtpmpapay.c:
723         * gst/rtp/gstrtpmpapay.h:
724         * gst/rtp/gstrtpmpvdepay.c:
725         * gst/rtp/gstrtpmpvdepay.h:
726         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
727         * gst/rtp/gstrtppcmapay.c:
728         * gst/rtp/gstrtppcmudepay.c:
729         * gst/rtp/gstrtppcmupay.c:
730         * gst/rtp/gstrtpspeexdepay.c:
731         * gst/rtp/gstrtpspeexpay.c:
732         * gst/rtp/gstrtpsv3vdepay.c:
733         * gst/rtp/gstrtpsv3vdepay.h:
734         * gst/rtp/gstrtptheoradepay.c:
735         * gst/rtp/gstrtptheoradepay.h:
736         * gst/rtp/gstrtptheorapay.c:
737         * gst/rtp/gstrtptheorapay.h:
738         * gst/rtp/gstrtpvorbisdepay.c:
739         * gst/rtp/gstrtpvorbisdepay.h:
740         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
741         * gst/rtp/gstrtpvorbispay.h:
742         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
743         * gst/rtp/gstrtpvrawpay.c:
744         Fix the descriptions and fix some email addresses.
745
746 2008-11-25  Julien Moutte  <julien@fluendo.com>
747
748         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
749         to supported qtdemux video codecs as I found some video clips using 
750         those.
751
752 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
753
754         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
755         * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
756         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
757         (gst_auto_video_sink_detect):
758         * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
759         Post an error when we can't set the internal ghostpad target.
760
761 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
762
763         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
764         (gst_video_crop_transform), (gst_video_crop_transform_caps),
765         (gst_video_crop_set_caps), (gst_video_crop_set_property):
766         * gst/videocrop/gstvideocrop.h:
767         Fix renegotiation when changing properties using the new basetransform
768         features. Fixes #561502.
769
770         * tests/icles/Makefile.am:
771         * tests/icles/videocrop2-test.c: (make_pipeline), (main):
772         Add crazy interactive test unit for dynamically changing properties.
773
774 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
775
776         * gst/rtsp/gstrtspsrc.c: (new_session_pad),
777         (gst_rtspsrc_parse_range):
778         Add some more debugging.
779         Use the reanges received from the server unconditionally.
780         Fixes #561625.
781
782 2008-11-23  Stefan Kost  <ensonic@users.sf.net>
783
784         * ext/pulse/pulsesink.c:
785           Change #if 0 to something more expresive and add pointer to related
786           bug ticket.
787
788 2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
789
790         Patch by: Tal Shalif <tshalif at nargila dot org>
791
792         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
793         Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
794         the latter don't exist on some systems (mingw). Fixes bug #561990.
795
796 2008-11-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
797
798         Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
799
800         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
801         Add transferMode.dnla.org header to HTTP requests as this is
802         required by the DLNA specs and doesn't hurt in other situations.
803         Fixes bug #561802.
804
805 2008-11-20  Michael Smith <msmith@songbirdnest.com>
806
807         * sys/osxvideo/osxvideosink.h:
808         * sys/osxvideo/osxvideosink.m:
809           Handle video window resizing more correctly, avoiding crashes when
810           embedding the window and resizing it.
811
812 2008-11-20  Michael Smith <msmith@songbirdnest.com>
813
814         * gst/udp/gstmultiudpsink.c:
815         * gst/udp/gstudpnetutils.c:
816         * gst/udp/gstudpnetutils.h:
817         * gst/udp/gstudpsrc.c:
818           Fix multiudpsink on OSX by passing the specific length of the socket,
819           refactor that into a function shared with the same thing in udpsrc.
820
821 2008-11-20  Wim Taymans  <wim.taymans@collabora.co.uk>
822
823         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
824         (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
825         (gst_wavparse_stream_headers):
826         Fix the scaling code.
827         Fix parsing of the INFO chunks, we were reading the wrong number of
828         bytes.  Fixes #561580.
829
830 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
831
832         * gst/matroska/matroska-mux.c:
833         Fix NULL pointer dereference of an unset codec_id in the recently 
834         added Dirac paths
835
836 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
837
838         * tests/check/Makefile.am:
839         Just keep disabling elements that hang the states test until it
840         works.
841
842 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
843
844         * ext/libpng/gstpngenc.c:
845         Don't flush downstream after every buffer - that's not what
846         this libpng callback is for at all!
847
848 2008-11-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
849
850         * sys/v4l2/v4l2src_calls.c:
851           (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
852           (gst_v4l2src_probe_caps_for_format):
853           Turns out we don't always get the frame sizes in a predefined
854           order from lowest to highest resolution, so let's just sort the
855           list by frame size once we've queried the possible resolutions
856           rather than assume any particular order. Fixes probed caps for
857           the camera in my HP2133 mini notebook and makes v4l2src default
858           to a decent size.
859
860 2008-11-16  Edward Hervey  <edward.hervey@collabora.co.uk>
861
862         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
863         * gst/matroska/matroska-ids.h:
864         Make mkvdemux aware of E-AC3.
865
866 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
867
868         * gst/rtp/Makefile.am:
869         * gst/rtp/gstrtp.c: (plugin_init):
870         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
871         (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
872         (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
873         (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
874         (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
875         (gst_rtp_jpeg_depay_change_state),
876         (gst_rtp_jpeg_depay_plugin_init):
877         * gst/rtp/gstrtpjpegdepay.h:
878         Add a jpeg depayloader.
879
880         * gst/rtp/gstrtpjpegpay.c:
881         Set the default properties on the payloader to better defaults.
882
883 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
884
885         * sys/v4l2/gstv4l2.c:
886           Give it a primary rank for autovideosrc.
887
888 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
889
890         Patch by: Bjorn Ostby <bjornos at axis dot com>
891
892         * gst/rtp/Makefile.am:
893         * gst/rtp/gstrtp.c: (plugin_init):
894         * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
895         (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
896         (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
897         (gst_rtp_jpeg_pay_read_quant_table),
898         (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
899         (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
900         (gst_rtp_jpeg_pay_plugin_init):
901         * gst/rtp/gstrtpjpegpay.h:
902         Add JPEG payloader. Fixes #560756.
903
904 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
905
906         Patch by: Fabricio Godoy <skarllot at gmail dot com>
907
908         * sys/oss/gstosssink.c: (gst_oss_sink_open):
909         * sys/oss/gstosssrc.c: (gst_oss_src_open):
910         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
911         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
912         Fix some spelling mistakes. Fixes #556802.
913
914 2008-11-13  Stefan Kost  <ensonic@users.sf.net>
915
916         * gst/equalizer/GstIirEqualizer10Bands.prs:
917         * gst/equalizer/GstIirEqualizer3Bands.prs:
918         * gst/equalizer/Makefile.am:
919         * gst/equalizer/gstiirequalizer10bands.c:
920         * gst/equalizer/gstiirequalizer3bands.c:
921           Add presets for equalizer. Fixes #522183.
922
923 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
924
925         * gst/rtsp/Makefile.am:
926         * gst/rtsp/gstrtsp.c: (plugin_init):
927         * gst/rtsp/gstrtspgoogle.c:
928         * gst/rtsp/gstrtspgoogle.h:
929         Remove google extension again, it's not needed anymore because we never
930         send multiple transports anymore.
931
932 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
933
934         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
935
936         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
937         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
938         (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
939         (gst_rtspsrc_stream_free),
940         (gst_rtspsrc_stream_configure_udp_sinks),
941         (gst_rtspsrc_stream_configure_transport),
942         (gst_rtspsrc_send_dummy_packets),
943         (gst_rtspsrc_create_transports_string),
944         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
945         * gst/rtsp/gstrtspsrc.h:
946         Add property to configure NAT traversal method.
947         Ignore EOS from the internal sinks.
948         Implement sending dummy packets as a (simple) method to open up
949         some firewalls.
950         Send PLAY request to the server after we started the udp sources.
951         Fixes #559545.
952
953 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
954
955         Patch by: Yotam <sh dot yotam at gmail dot com>
956
957         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
958         Flush the remaining frames on EOS. Fixes #560641.
959
960 2008-11-12  Jan Schmidt  <jan.schmidt@sun.com>
961
962         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
963         Fix compiler warning about printf formatting.
964
965 2008-11-12  Andy Wingo  <wingo@pobox.com>
966
967         * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
968         * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
969         segment events instead of sending them from the seeking thread.
970         Fixes #559288.
971         (gst_qtdemux_push_pending_newsegment): New helper, sends out
972         queued newsegment events.
973         (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
974         call it here, as we only seek when looping, and only push in the
975         movie state.
976
977 2008-11-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
978
979         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
980         (qtdemux_tag_add_covr), (qtdemux_parse_udta):
981         * gst/qtdemux/qtdemux_fourcc.h:
982         * gst/qtdemux/qtdemux_types.c:
983         Add cover and alternative copyright tag, and enhance some existing
984         ones by marking them as container atoms.
985
986 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
987
988         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
989         Don't ignore the return value of setcaps.
990
991 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
992
993         Patch by: Olivier Crete <tester at tester dot ca>
994
995         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
996         (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
997         (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
998         * gst/rtp/gstrtpg729pay.h:
999         Replace G729 payloader with an improved version. Fixes #532409.
1000
1001 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1002
1003         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
1004         (gst_rtspsrc_change_state):
1005         Only send one transport at a time for improved compatibility with some
1006         broken servers. See #537832.
1007
1008 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1009
1010         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1011         (gst_rtspsrc_perform_seek):
1012         Only pause/play in the seek handler when the source was playing.
1013         Fixes #529379.
1014
1015 2008-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
1016
1017         * gst/matroska/matroska-mux.c:
1018         (gst_matroska_mux_handle_dirac_packet):
1019         Fix muxing of Dirac streams if the input already has the format
1020         we need, i.e. is the output of matroskademux.
1021
1022 2008-11-11  Stefan Kost  <ensonic@users.sf.net>
1023
1024         * gst/avi/gstavimux.c:
1025           Don't segfault on string typed tags being NULL. Fixes #560155.
1026
1027 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1028
1029         * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
1030         (gst_matroska_mux_audio_pad_setcaps):
1031         Fix mapping AAC profile to Matroska codec id.
1032
1033 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1034
1035         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
1036         (qtdemux_video_caps), (qtdemux_audio_caps):
1037         Refactor some raw audio caps building, and handle >16-bit cases.
1038         Fix/replace building caps from a string description.
1039
1040 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1041
1042         * gst/audiofx/audiowsincband.c:
1043         * gst/audiofx/audiowsinclimit.c:
1044         * gst/cutter/gstcutter.c:
1045           Make author name consistent with others.
1046
1047 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1048
1049         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1050
1051         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
1052         (gst_rtspsrc_stream_configure_udp_sink):
1053         Pause the RTSP stream before doing a new play request.
1054         Make sure that adding the udpsinks does not cause the rtspsrc to become
1055         a sink. Fixes #559547.
1056
1057 2008-11-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1058
1059         * gst/matroska/matroska-ids.h:
1060         * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
1061         (gst_matroska_mux_handle_dirac_packet),
1062         (gst_matroska_mux_write_data):
1063         Implement Dirac muxing into Matroska comforming to the spec, i.e.
1064         put all Dirac packages up to a picture into a Matroska block.
1065
1066         TODO: Implement writing of the ReferenceBlock Matroska elements,
1067         currently the Dirac muxing is only 100% correct if Matroska version 2
1068         is selected for muxing.
1069
1070 2008-11-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1071
1072         Patch by: Bastien Nocera <hadess at hadess dot net>,
1073                   Hans de Goede <jwrdegoede at fedoraproject dot org>
1074
1075         * configure.ac:
1076         * sys/v4l2/Makefile.am:
1077         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
1078         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1079         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
1080         (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
1081         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
1082         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
1083         (gst_v4l2_get_input), (gst_v4l2_set_input):
1084         * sys/v4l2/v4l2_calls.h:
1085         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1086         (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
1087         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1088         (gst_v4l2src_fill_format_list),
1089         (gst_v4l2src_probe_caps_for_format_and_size),
1090         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
1091         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
1092         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
1093         (gst_v4l2src_get_nearest_size):
1094         Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
1095
1096 2008-11-04  Stefan Kost  <ensonic@users.sf.net>
1097
1098         * ext/aalib/Makefile.am:
1099         * ext/annodex/Makefile.am:
1100         * ext/cairo/Makefile.am:
1101         * ext/dv/Makefile.am:
1102         * ext/esd/Makefile.am:
1103         * ext/flac/Makefile.am:
1104         * ext/gconf/Makefile.am:
1105         * ext/gdk_pixbuf/Makefile.am:
1106         * ext/hal/Makefile.am:
1107         * ext/jpeg/Makefile.am:
1108         * ext/ladspa/Makefile.am:
1109         * ext/libcaca/Makefile.am:
1110         * ext/libmng/Makefile.am:
1111         * ext/libpng/Makefile.am:
1112         * ext/mikmod/Makefile.am:
1113         * ext/pulse/Makefile.am:
1114         * ext/raw1394/Makefile.am:
1115         * ext/shout2/Makefile.am:
1116         * ext/soup/Makefile.am:
1117         * ext/speex/Makefile.am:
1118         * ext/taglib/Makefile.am:
1119         * ext/wavpack/Makefile.am:
1120         * gst/alpha/Makefile.am:
1121         * gst/apetag/Makefile.am:
1122         * gst/audiofx/Makefile.am:
1123         * gst/auparse/Makefile.am:
1124         * gst/autodetect/Makefile.am:
1125         * gst/avi/Makefile.am:
1126         * gst/cutter/Makefile.am:
1127         * gst/debug/Makefile.am:
1128         * gst/effectv/Makefile.am:
1129         * gst/equalizer/Makefile.am:
1130         * gst/flx/Makefile.am:
1131         * gst/goom/Makefile.am:
1132         * gst/goom2k1/Makefile.am:
1133         * gst/icydemux/Makefile.am:
1134         * gst/id3demux/Makefile.am:
1135         * gst/interleave/Makefile.am:
1136         * gst/law/Makefile.am:
1137         * gst/level/Makefile.am:
1138         * gst/matroska/Makefile.am:
1139         * gst/median/Makefile.am:
1140         * gst/monoscope/Makefile.am:
1141         * gst/multifile/Makefile.am:
1142         * gst/multipart/Makefile.am:
1143         * gst/oldcore/Makefile.am:
1144         * gst/qtdemux/Makefile.am:
1145         * gst/replaygain/Makefile.am:
1146         * gst/rtp/Makefile.am:
1147         * gst/rtsp/Makefile.am:
1148         * gst/smpte/Makefile.am:
1149         * gst/spectrum/Makefile.am:
1150         * gst/udp/Makefile.am:
1151         * gst/videobox/Makefile.am:
1152         * gst/videocrop/Makefile.am:
1153         * gst/videofilter/Makefile.am:
1154         * gst/videomixer/Makefile.am:
1155         * gst/wavenc/Makefile.am:
1156         * gst/wavparse/Makefile.am:
1157         * sys/directdraw/Makefile.am:
1158         * sys/directsound/Makefile.am:
1159         * sys/oss/Makefile.am:
1160         * sys/osxaudio/Makefile.am:
1161         * sys/osxvideo/Makefile.am:
1162         * sys/sunaudio/Makefile.am:
1163         * sys/v4l2/Makefile.am:
1164         * sys/waveform/Makefile.am:
1165         * sys/ximage/Makefile.am:
1166           Don't install static libs for plugins. Fixes #550851 for -good.
1167
1168 2008-10-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1169
1170         * ext/flac/Makefile.am:
1171         Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1172         This fixes compilation if FLAC is installed in an uncommon location
1173         that is not already handled by other CFLAGS. Fixes bug #558711.
1174
1175 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1176
1177         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1178         Guard more uncommon formats with ifdefs so that we can compile on older
1179         versions.
1180
1181 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1182
1183         Patch by: Nick Haddad <nick at haddads dot net>
1184
1185         * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1186         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1187         (gst_avi_demux_stream_data):
1188         Invert other uncompressed RGB formats. Fixes #558554.
1189
1190 2008-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
1191
1192         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1193         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1194         * gst/wavenc/gstwavenc.h:
1195         Add support for float/double as input and remove the (nowadays)
1196         useless parsing of the depth as we require width==depth.
1197
1198 2008-10-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1199
1200         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1201         * gst/rtp/gstrtpmpapay.c:
1202         Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1203         mpeg version 1. Fixes #558427.
1204
1205 2008-10-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1206
1207         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1208         (gst_rtp_L16_pay_getcaps):
1209         Only put an integral amount of samples in the RTP packet.
1210         Fixes #556641.
1211
1212 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1213
1214         * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1215         * gst/rtp/gstrtpchannels.h:
1216         Add method to get possible channel positions.
1217
1218 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1219
1220         * gst/rtp/Makefile.am:
1221         Also commit updated makefile
1222
1223 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1224
1225         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1226         Don't allow width=32,depth=24 as input. WAV requires that the width
1227         is the next integer multiply of 8 from the depth.
1228
1229 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1230
1231         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1232         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1233         (gst_rtp_L16_pay_getcaps):
1234         * gst/rtp/gstrtpchannels.c: (check_channels),
1235         (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1236         (gst_rtp_channels_create_default):
1237         * gst/rtp/gstrtpchannels.h:
1238         Add mappings for multichannel support. Does not completely just work
1239         because the getcaps function does not yet return the allowed channel
1240         mappings. See #556641.
1241
1242 2008-10-28  Stefan Kost  <ensonic@users.sf.net>
1243
1244         * gst/goom/Makefile.am:
1245         * gst/goom/README:
1246         * gst/goom/config_param.c:
1247         * gst/goom/convolve_fx.c:
1248         * gst/goom/drawmethods.c:
1249         * gst/goom/drawmethods.h:
1250         * gst/goom/filters.c:
1251         * gst/goom/filters_mmx.s:
1252         * gst/goom/flying_stars_fx.c:
1253         * gst/goom/goom.h:
1254         * gst/goom/goom_config.h:
1255         * gst/goom/goom_config_param.h:
1256         * gst/goom/goom_core.c:
1257         * gst/goom/goom_filters.h:
1258         * gst/goom/goom_fx.h:
1259         * gst/goom/goom_graphic.h:
1260         * gst/goom/goom_plugin_info.h:
1261         * gst/goom/goom_tools.c:
1262         * gst/goom/goom_tools.h:
1263         * gst/goom/goom_typedefs.h:
1264         * gst/goom/goom_visual_fx.h:
1265         * gst/goom/graphic.c:
1266         * gst/goom/ifs.c:
1267         * gst/goom/ifs.h:
1268         * gst/goom/lines.c:
1269         * gst/goom/lines.h:
1270         * gst/goom/mathtools.c:
1271         * gst/goom/mathtools.h:
1272         * gst/goom/mmx.c:
1273         * gst/goom/motif_goom1.h:
1274         * gst/goom/motif_goom2.h:
1275         * gst/goom/plugin_info.c:
1276         * gst/goom/ppc_drawings.h:
1277         * gst/goom/ppc_zoom_ultimate.h:
1278         * gst/goom/sound_tester.c:
1279         * gst/goom/sound_tester.h:
1280         * gst/goom/surf3d.c:
1281         * gst/goom/surf3d.h:
1282         * gst/goom/tentacle3d.c:
1283         * gst/goom/tentacle3d.h:
1284         * gst/goom/v3d.c:
1285         * gst/goom/v3d.h:
1286         * gst/goom/xmmx.c:
1287           Add license headers in all source files. Remove filter.c from
1288           EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1289           which are not used right now. Fixes #557709.
1290
1291 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1292
1293         Patch by: Olivier Crete <tester at tester dot ca>
1294
1295         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1296         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1297         Implement getcaps in rtpL16pay. Fixes #556484.
1298
1299 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1300
1301         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1302         (gst_rtp_L16_depay_process):
1303         Check if clock-rate and channels are valid.
1304         Don't ignore the return value of setcaps.
1305         No need to validate the buffer, the base class does that for us.
1306         Use the marker bit to set the DISCONT flag on outgoing buffers.
1307
1308         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1309         Don't ignore the return value of set_outcaps.
1310
1311         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1312         (gst_rtp_ac3_depay_process):
1313         Don't ignore the return value of set_caps.
1314         No need to validate the buffer, the base class does that for us.
1315
1316         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1317         (gst_rtp_amr_depay_process):
1318         * gst/rtp/gstrtpamrdepay.h:
1319         Don't ignore the return value of setcaps.
1320         No need to validate the buffer, the base class does that for us.
1321         No need to set output caps on the buffers, the base class does that for
1322         us.
1323         The subclass will make sure we are negotiated.
1324         
1325         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1326         (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1327         * gst/rtp/gstrtpdvdepay.h:
1328         Clean up caps negotiation.
1329         The subclass will make sure we are negotiated.
1330
1331         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1332         (gst_rtp_g726_depay_process):
1333         Clean up caps negotiation.
1334         Use the marker bit to set the DISCONT flag on outgoing buffers.
1335
1336         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1337         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1338         * gst/rtp/gstrtpg729depay.h:
1339         The subclass will make sure we are negotiated.
1340         Use the marker bit to set the DISCONT flag on outgoing buffers.
1341
1342         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1343         (gst_rtp_gsm_depay_process):
1344         Clean up caps negotiation.
1345         Use the marker bit to set the DISCONT flag on outgoing buffers.
1346
1347         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1348         Clean up caps negotiation.
1349         Don't ignore the return value of set_outcaps.
1350
1351         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1352         (gst_rtp_h263_depay_process):
1353         Clean up caps negotiation.
1354         No need to validate the buffer, the base class does that for us.
1355
1356         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1357         (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1358         * gst/rtp/gstrtph263pay.h:
1359         Don't ignore the return value of set_outcaps.
1360         Do some more timestamps.
1361
1362         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1363         (gst_rtp_h263p_depay_process):
1364         Clean up caps negotiation.
1365         Don't ignore the return value of setcaps.
1366         No need to validate the buffer, the base class does that for us.
1367
1368         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1369         (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1370         (gst_rtp_h263p_pay_handle_buffer):
1371         * gst/rtp/gstrtph263ppay.h:
1372         Don't ignore the return value of set_outcaps.
1373         Do some more timestamps.
1374
1375         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1376         (gst_rtp_h264_depay_process):
1377         Clean up caps negotiation.
1378         Don't ignore the return value of setcaps.
1379         Fix possible caps leak.
1380         No need to validate the buffer, the base class does that for us.
1381
1382         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1383         Add some more debug info.
1384
1385         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1386         (gst_rtp_ilbc_depay_process):
1387         Clean up caps negotiation.
1388         Use the marker bit to set the DISCONT flag on outgoing buffers.
1389
1390         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1391         Clean up caps negotiation.
1392
1393         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1394         (gst_rtp_mp1s_depay_process):
1395         Clean up caps negotiation.
1396         Don't ignore the return value of setcaps.
1397         No need to validate the buffer, the base class does that for us.
1398         No need to set caps on buffers, subclass does that for us.
1399
1400         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1401         (gst_rtp_mp2t_depay_process):
1402         Clean up caps negotiation.
1403         Don't ignore the return value of setcaps.
1404         No need to validate the buffer, the base class does that for us.
1405         No need to set caps on buffers, subclass does that for us.
1406
1407         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1408         (gst_rtp_mp4a_depay_process):
1409         Clean up caps negotiation.
1410         Don't ignore the return value of setcaps.
1411         No need to validate the buffer, the base class does that for us.
1412
1413         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1414         (gst_rtp_mp4a_pay_setcaps):
1415         Don't ignore the return value of set_outcaps.
1416
1417         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1418         (gst_rtp_mp4g_depay_process):
1419         Clean up caps negotiation.
1420         Don't ignore the return value of setcaps.
1421         No need to validate the buffer, the base class does that for us.
1422         No need to set caps on buffers, subclass does that for us.
1423
1424         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1425         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1426         Don't ignore the return value of set_outcaps.
1427
1428         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1429         (gst_rtp_mp4v_depay_process):
1430         Clean up caps negotiation.
1431         Don't ignore the return value of setcaps.
1432         No need to validate the buffer, the base class does that for us.
1433         No need to set caps on buffers, subclass does that for us.
1434
1435         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1436         (gst_rtp_mp4v_pay_setcaps):
1437         Don't ignore the return value of set_outcaps.
1438
1439         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1440         (gst_rtp_mpa_depay_process):
1441         Clean up caps negotiation.
1442         Don't ignore the return value of setcaps.
1443         No need to validate the buffer, the base class does that for us.
1444         Use the marker bit to set the DISCONT flag on outgoing buffers.
1445
1446         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1447         Don't ignore the return value of set_outcaps.
1448
1449         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1450         (gst_rtp_mpv_depay_process):
1451         Clean up caps negotiation.
1452         Actually set output caps.
1453         No need to validate the buffer, the base class does that for us.
1454
1455         * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1456         Don't ignore the return value of set_outcaps.
1457
1458         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1459         (gst_rtp_pcma_depay_process):
1460         Clean up caps negotiation.
1461         Set output buffer duration because we can.
1462         Use the marker bit to set the DISCONT flag on outgoing buffers.
1463
1464         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1465         Don't ignore the return value of set_outcaps.
1466
1467         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1468         (gst_rtp_pcmu_depay_process):
1469         Clean up caps negotiation.
1470         Use the marker bit to set the DISCONT flag on outgoing buffers.
1471
1472         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1473         Don't ignore the return value of set_outcaps.
1474
1475         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1476         (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1477         Clean up caps negotiation.
1478         Set output caps on the pad and header buffers.
1479         Set duration on output buffers because we can.
1480
1481         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1482         Don't ignore the return value of set_outcaps.
1483
1484         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1485         (gst_rtp_sv3v_depay_process):
1486         Clean up caps negotiation.
1487         No need to validate the buffer, the base class does that for us.
1488         No need to set caps out output buffers, subclass does that.
1489
1490         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1491         (gst_rtp_theora_depay_process):
1492         Don't ignore the return value of setcaps.
1493         No need to validate the buffer, the base class does that for us.
1494
1495         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1496         (gst_rtp_theora_pay_flush_packet), (encode_base64),
1497         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1498         (gst_rtp_theora_pay_handle_buffer):
1499         Don't ignore the return value of set_outcaps.
1500
1501         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1502         (gst_rtp_vorbis_depay_process):
1503         Don't ignore the return value of setcaps.
1504         No need to validate the buffer, the base class does that for us.
1505
1506         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1507         Don't ignore the return value of set_outcaps.
1508
1509         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1510         Clean up caps negotiation, don't ignore setcaps return.
1511
1512         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1513         Don't ignore the return value of set_outcaps.
1514
1515 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1516
1517         * gst/matroska/matroska-demux.c:
1518         (gst_matroska_demux_handle_src_event):
1519         Forward unknown events upstream.
1520
1521 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1522
1523         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1524         Add some refcount check
1525
1526         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1527         Don't ignore the result of write(), fixes a  compiler warning for me.
1528
1529         * tests/icles/videobox-test.c: (main):
1530         Make the output a little more pretty.
1531
1532 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1533
1534         * ext/esd/esdmon.c:
1535           Add doc blob.
1536
1537 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1538
1539         * docs/plugins/Makefile.am:
1540         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1541         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1542         * docs/plugins/gst-plugins-good-plugins.args:
1543         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1544         * docs/plugins/gst-plugins-good-plugins.interfaces:
1545         * docs/plugins/inspect/plugin-autodetect.xml:
1546           Add the docs of the new elements.
1547
1548 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1549
1550         * gst/autodetect/gstautoaudiosrc.c:
1551         (gst_auto_audio_src_class_init):
1552         * gst/autodetect/gstautovideosrc.c:
1553         (gst_auto_video_src_class_init):
1554         Fix "Since" tags in the documentation.
1555
1556 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1557
1558         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1559
1560         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1561         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1562         Add support for souphttpsrc to act as a live source. This makes it
1563         possible to get timestamped buffers in combination with the
1564         "do-timestamp" property. Fixes bug #556019.
1565
1566 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1567
1568         * gst/autodetect/Makefile.am:
1569         * gst/autodetect/gstautoaudiosink.c:
1570         * gst/autodetect/gstautoaudiosrc.c:
1571         * gst/autodetect/gstautoaudiosrc.h:
1572         * gst/autodetect/gstautodetect.c:
1573         * gst/autodetect/gstautovideosink.c:
1574         * gst/autodetect/gstautovideosrc.c:
1575         * gst/autodetect/gstautovideosrc.h:
1576           Implement src plugins. Little code/string cleanup in the sinks.
1577           Fixes #523813.
1578
1579 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1580
1581         Patch by: Peter Kjellerstedt <pkj at axis com>
1582
1583         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1584         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1585         Fix a memory leak when pads are requested but the pipeline never
1586         goes into PLAYING.
1587
1588         Correctly remove request pads, no matter if they have collected
1589         data or not.
1590
1591         Fixes bug #557710.
1592
1593 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1594
1595         Patch by: <lrn1986 at gmail dot com>
1596
1597         * gst/udp/gstudpnetutils.h:
1598         Define the correct WINVER so getaddinfo() can be used when using
1599         mingw32. Fixes bug #557294.
1600
1601 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1602
1603         Patch by: <lrn1986 at gmail dot com>
1604
1605         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1606         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1607         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1608         Fix "argument type mismatch" compiler warnings on Windows.
1609         Fixes bug #557293.
1610
1611 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1612
1613         * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1614         Don't calculate the filter coefficients for every single buffer
1615         but only when it's needed. Fixes bug #557260.
1616
1617 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
1618
1619         * configure.ac:
1620         Back to development -> 0.10.11.1
1621
1622 2008-10-25  Jan Schmidt  <jan.schmidt@sun.com>
1623
1624         * gst-plugins-good.doap:
1625         Fix version number of 0.10.11 release in doap file
1626
1627 === release 0.10.11 ===
1628
1629 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
1630
1631         * configure.ac:
1632           releasing 0.10.11, "Secondary Consideration"
1633
1634 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
1635
1636         * configure.ac:
1637         Commit 0.10.10.4 pre-release
1638
1639 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1640
1641         * gst/avi/gstavimux.c:
1642         Fix VPRP chunk setup in avimux.
1643         Fixes: #556010
1644         Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1645
1646 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1647
1648         * gst/videobox/gstvideobox.c:
1649         support dynamically changing properties in videobox
1650         Fixed: #557085
1651         Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1652
1653 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1654
1655         * configure.ac:
1656         0.10.10.3 pre-release
1657
1658 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1659
1660         * tests/check/Makefile.am:
1661         Don't run the states test on pulsesrc and pulsesink
1662
1663 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1664
1665         * configure.ac:
1666         Commit 0.10.10.2 pre-release bump that actually went
1667         out on 2008-10-11
1668
1669 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1670
1671         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1672         Skip entries for streams that don't have a output pad yet, thereby
1673         avoiding calling pad functions with a NULL pad.
1674         Fixes #556424
1675
1676 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1677
1678         * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1679         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1680         Remove problematic and useless refcount check.
1681         Fixes #556381
1682
1683 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1684
1685         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1686         Remove problematic and useless refcount check.
1687         Fixes #556381
1688
1689 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
1690
1691         * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1692         * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1693         Cast some size_t arguments to guint to avoid compiler
1694         warnings on 64-bit systems.
1695
1696 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
1697
1698         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1699         Return TRUE instead of FALSE from the event handler when we swallowed the
1700         event.
1701
1702 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1703
1704         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1705         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1706         Reset header state. Fixes #555321.
1707
1708 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1709
1710         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1711         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1712         * gst/avi/gstavidemux.h:
1713         For timestamping audio packets we need to take into account the
1714         amount of blocks in one entry using the blockalign. Fixes some sync
1715         issues with zero-padded audio blocks in the beginning of avi files.
1716
1717 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1718
1719         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1720         (gst_multi_file_src_query):
1721         Implement DEFAULT and BUFFER position queries. See #555260.
1722
1723 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1724
1725         * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1726         Fix build for systems that don't have XDamage.
1727
1728 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1729
1730         * tests/examples/rtp/client-H263p.sdp:
1731         * tests/examples/rtp/client-H263p.sh:
1732         * tests/examples/rtp/server-VTS-H263p.sh:
1733         Add some more H263p server and client examples.
1734
1735 2008-10-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1736
1737         * configure.ac::
1738           Depend on released versions of core and base.
1739
1740 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1741
1742         * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1743         * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1744         Return -1 instead of 0 in error cases. Fixes #554771.
1745
1746 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1747
1748         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1749         (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1750         Stop leaking the cursor image.
1751         Unref the last_ximage and the cached cursor image on shutdown.
1752         Fixes #551570.
1753
1754 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1755
1756         * sys/v4l2/gstv4l2object.h:
1757         Getting the Class from an instance is not just a matter of casting it to
1758         the class struct but it involves calling G_OBJECT_GET_CLASS on the
1759         instance. Fixes #549784.
1760
1761 2008-10-01  Michael Smith <msmith@songbirdnest.com>
1762
1763         * configure.ac:
1764           Fix libs for linking directsound.
1765         * sys/directsound/gstdirectsoundsink.c:
1766           Fix buffer sizing to prevent racing the ringbuffer at startup.
1767           Add volume property.
1768
1769 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
1770
1771         * ext/pulse/pulsesink.c:
1772         Fix problems with pulsesink randomly erroring with code 'OK' after a
1773         format change on the stream by waiting when disconnecting the stream.
1774
1775 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1776
1777         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1778         (gst_rtp_amr_depay_process):
1779         Mark DISCONT on output buffers when the marker bit signals a new talk
1780         spurt.
1781
1782         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1783         Set the marker bit for buffers with a DISCONT flag to signal a talk
1784         spurt.
1785
1786 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1787
1788         * gst/rtp/Makefile.am:
1789         * gst/rtp/gstrtp.c: (plugin_init):
1790         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1791         (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1792         (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1793         (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1794         (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1795         (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1796         * gst/rtp/gstrtpmp4apay.h:
1797         Added MP4A-LATM payloader to match the depayloader.
1798
1799 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1800
1801         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1802         (gst_videomixer_sink_event):
1803         Handle segments a little better. Fixes #537361.
1804
1805 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1806
1807         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1808         Don't assume the server supports PAUSE by default. Fixes #551048.
1809
1810 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1811
1812         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1813         (gst_udpsrc_set_uri), (gst_udpsrc_start):
1814         Switch on the socket family to get the addrlen size right.
1815
1816 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1817
1818         Patch by: Daniel Franke <df at dfranke dot us>
1819
1820         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1821         OS X's bind() implementation is picky about its addrlen parameter and
1822         fails with EINVAL if it is larger than expected for the socket's address
1823         family. Set the length to the expected length instead. Fixes #553191.
1824
1825 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1826
1827         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1828         Handle the case where we cannot do desribe or when the describe result
1829         does not contain a valid SDP message.
1830
1831 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1832
1833         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1834         Fix setting the qos.
1835
1836 2008-09-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1837
1838         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1839         (gst_qtdemux_chain):
1840         Some 'broken' files out there have atom lengths of zero...
1841         which basically results in qtdemux consuming that atom again and again
1842         until the *end of night* !
1843         Detect that and emits an adequate element error message.
1844
1845 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
1846
1847         * gst/interleave/Makefile.am:
1848         * gst/matroska/Makefile.am:
1849         Fix build flags order.
1850
1851         * tests/check/elements/audioamplify.c: (GST_START_TEST):
1852         * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1853         * tests/check/elements/audioinvert.c: (GST_START_TEST):
1854         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1855         Format fixes.
1856
1857         * tests/check/elements/multifile.c:
1858         Pull in unistd.h
1859
1860 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1861
1862         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1863         (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1864         (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1865         (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1866         (gst_rtp_mp4g_depay_change_state):
1867         * gst/rtp/gstrtpmp4gdepay.h:
1868         Handle interleaved streams by reordering AU in a queue.
1869
1870 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1871
1872         * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1873         (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1874         Change some of the ranges in the caps, mostly for the amount of bits we
1875         can use.
1876         Added a little bitstream parse and use it to parse the AU header fields.
1877         Check for malformed and wrongly sized packets better.
1878         Implement more header field parsing.
1879         Handle the size of fragmented packets correctly.
1880
1881 2008-09-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1882
1883         Patch by: Jonathan Matthew <notverysmart@gmail.com>
1884         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1885         Add mapping for 'tiff' => image/tiff
1886         Fixes #552213
1887
1888 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
1889
1890
1891         * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1892         * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1893           Pretend to care about the result of write() which works around
1894           compiler warnings.
1895
1896 2008-09-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1897
1898         * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1899           Make sure the desired default values are actually set, not only
1900           registered as defaults (actual problem is that the stereo-specific
1901           values are only updated if channels==2, which is not the case yet
1902           when the object is created, so the default values for the
1903           mid-side-stereo and loose-mid-side-stereo settings are never
1904           set in _update_quality()). Makes flacenc create smaller files by
1905           default (for stereo input), and fixes #550791.
1906
1907 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1908
1909         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1910         (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
1911         (qtdemux_parse_trak), (qtdemux_video_caps):
1912         * gst/qtdemux/qtdemux.h:
1913         * gst/qtdemux/qtdemux_fourcc.h:
1914         * gst/qtdemux/qtdemux_types.c:
1915         Add support for video/mj2 mime-type and its additional atoms/boxes.
1916         Fixes #550646.
1917
1918 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1919
1920         * gst/debug/gsttaginject.c:
1921           Add warning when tags parameter is unparsable and give example for
1922           quoting in the docs.
1923
1924 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1925
1926         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
1927         Add mapping for IMA Loki SDL MJPEG ADPCM codec.
1928         Add some alternative byteswapped mappings that seem to pop up sometimes.
1929         Fixes #550288.
1930
1931 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1932
1933         * po/LINGUAS:
1934         * po/POTFILES.in:
1935         * po/POTFILES.skip:
1936           Add 'ca' to LINGUAS; add some more files with translations and some
1937           files which should be ignored by translation tools.
1938
1939 2008-09-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1940
1941         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1942         * ext/speex/gstspeexdec.h:
1943         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1944         * ext/speex/gstspeexenc.h:
1945         Use integer encoding and decoding functions instead of converting
1946         the integer input to float in the element. The libspeex integer
1947         functions are doing this for us already or, if libspeex was compiled
1948         in integer mode, they're doing everything using integer arithmetics.
1949         Also saves some copying around.
1950
1951 2008-09-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
1952
1953         * configure.ac:
1954           Fix --disable-external
1955
1956 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1957
1958         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
1959         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
1960         * ext/wavpack/gstwavpackenc.h:
1961         Handle non-zero start timestamps and stream discontinuities
1962         correctly. This only has an effect if we're muxing into
1963         a container format as the raw WavPack stream must contain
1964         continous sample numbers.
1965
1966 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1967
1968         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1969         Correct the timestamp and granulepos calculation by one Speex
1970         frame.
1971
1972 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1973
1974         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1975         Correctly take the granulepos from upstream if possible and
1976         correctly handle the granulepos in various calculations: the
1977         granulepos is the sample number of the _last_ sample in a frame, not
1978         the first.
1979
1980         * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
1981         (gst_speex_enc_encode), (gst_speex_enc_chain),
1982         (gst_speex_enc_change_state):
1983         * ext/speex/gstspeexenc.h:
1984         Handle non-zero start timestamps in the encoder and detect/handle
1985         stream discontinuities. Fixes bug #547075.
1986
1987 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1988
1989         Patch by: Craig Keogh <cskeogh at adam dot com dot au>
1990
1991         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
1992         Fix compiler warnings caused by passing a string as format string
1993         instead of "%s" and then the string. This is only exposed by -Wformat=2
1994         as used by default on Ubuntu. Fixes bug #550015.
1995
1996 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1997
1998         * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
1999         * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
2000         * gst/audiofx/audiocheblimit.c: (generate_coefficients):
2001         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
2002         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2003           (gst_ebml_read_element_length):
2004         * gst/matroska/matroska-demux.c:
2005           (gst_matroska_demux_check_subtitle_buffer):
2006           Make stuff compile with GST_DISABLE_GST_DEBUG.
2007
2008 2008-08-28  Michael Smith <msmith@songbirdnest.com>
2009
2010         * gst/law/alaw.c:
2011         * gst/law/mulaw.c:
2012           Ref caps before passing to gst_pad_template_new(), since that takes
2013           ownership.
2014
2015 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2016
2017         Patch by: Mersad Jelacic <mersad at axis dot com>
2018
2019         * gst/multipart/multipartdemux.c:
2020         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
2021         Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
2022         demuxer. Fixes #549551.
2023
2024 2008-08-27  Edward Hervey  <edward.hervey@collabora.co.uk>
2025
2026         * sys/osxaudio/gstosxaudiosink.c:
2027         (gst_osx_audio_sink_select_device):
2028         * sys/osxaudio/gstosxaudiosrc.c:
2029         (gst_osx_audio_src_create_ringbuffer),
2030         (gst_osx_audio_src_select_device):
2031         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
2032         Fix the build on macosx.
2033
2034 2008-08-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2035
2036         * gst/icydemux/gsticydemux.c:
2037           Small docs fix: in the example pipeline, we need to pass
2038           iradio-mode=true to the source, so the server actually sends
2039           an ICY stream.
2040
2041 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2042
2043         * sys/osxaudio/gstosxaudio.c:
2044           Oops. Revert more completely.
2045
2046 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2047
2048         * sys/osxaudio/gstosxaudio.c:
2049           Revert accidental element rename from testing.
2050
2051 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2052
2053         * gst-plugins-good.doap:
2054         Pull in 0.10.10 doap entry from release branch
2055
2056 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
2057
2058         * configure.ac:
2059         Update version number to reflect 0.10.10 release from
2060         branch.
2061
2062 2008-08-26  Michael Smith <msmith@songbirdnest.com>
2063
2064         * sys/osxaudio/Makefile.am:
2065         * sys/osxaudio/gstosxaudio.c:
2066         * sys/osxaudio/gstosxaudiosink.c:
2067         * sys/osxaudio/gstosxaudiosink.h:
2068         * sys/osxaudio/gstosxaudiosrc.c:
2069         * sys/osxaudio/gstosxaudiosrc.h:
2070         * sys/osxaudio/gstosxringbuffer.c:
2071         * sys/osxaudio/gstosxringbuffer.h:
2072           Rewrite caps setting and ring buffer initialisation.
2073           Previously we never told CoreAudio what format we were going to send it,
2074           so it only worked due to luck, and not at all on some hardware.
2075           Now we explicitly advertise what formats the hardware supports, and then
2076           configure the selected one correctly.
2077
2078 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2079
2080         * sys/v4l2/gstv4l2object.c:
2081         * sys/v4l2/gstv4l2src.c:
2082         * sys/v4l2/gstv4l2src.h:
2083         * sys/v4l2/v4l2_calls.c:
2084         * sys/v4l2/v4l2src_calls.c:
2085           Fix memory leaks. Small code cleanups : No need for empty _init(). No
2086           need to memset instance structures. Some more FIXME's and comments.
2087
2088 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2089
2090         * tests/icles/.cvsignore:
2091           Ignore more.
2092
2093 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2094
2095         * gst/goom/.cvsignore:
2096         * gst/goom2k1/.cvsignore:
2097           Ignore files.
2098
2099 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2100
2101         * ext/cairo/gsttextoverlay.c:
2102           Fix compiler warning.
2103
2104 2008-08-25  David Schleef  <ds@schleef.org>
2105
2106         * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2107
2108 2008-08-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2109
2110         * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2111         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2112         * gst/matroska/matroska-mux.c:
2113         (gst_matroska_mux_video_pad_setcaps),
2114         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2115         Add Real[Audio|Video] support to Matroska containers.
2116         It works fine for:
2117         * decoding real audio/video streams contained in mkv
2118         * 'transmuxing' real (.rm) files into .mkv files
2119         It will not work though for encoding real[audio/video] streams that
2120         don't contain the 'mdpr_data' extra data on the caps.
2121         The reason why this will not work is because I never intended to
2122         duplicate virtually all the 'mdpr' block creation into mkvmux.
2123         Fixes #536067
2124
2125 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2126
2127         * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2128         * gst/law/mulaw-conversion.c:
2129         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2130         (gst_mulawenc_chain):
2131         The encoder can't really renegotiate at the time they perform a
2132         pad-alloc so make the srcpads use fixed caps.
2133         Check the buffer size after a pad-alloc because the returned size might
2134         not be right when the downstream element does not know the size of the
2135         new buffer (capsfilter). Fixes #549073.
2136
2137 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2138
2139         Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2140
2141         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2142         v4l2src doesn't have a property named "norm" so don't try to notify
2143         about changes to that property. The "norm" property and related
2144         code are commented out currently. Fixes bug #549090.
2145
2146 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2147
2148         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2149
2150         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2151         Reprobe devices again instead of taking a cached list as new
2152         devices could've been plugged in. Fixes bug #549062.
2153
2154 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2155
2156         * gst/autodetect/Makefile.am:
2157         Don't link the autodetect plugin with GConf as it doesn't
2158         use GConf. Fixes bug #545463.
2159
2160 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2161
2162         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2163         (gst_ebml_read_element_length), (gst_ebml_read_uint),
2164         (gst_ebml_read_sint), (gst_ebml_read_float),
2165         (gst_ebml_read_header):
2166         Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2167         possible to ignore errors and not post any ERROR messages on
2168         the bus.
2169
2170         * gst/matroska/matroska-demux.c:
2171         (gst_matroska_demux_parse_contents):
2172         Ignore any errors and not just EOS when parsing the contents of
2173         a SeekHead. Errors here are usually caused by truncated files
2174         and playback of the file works fine. Fixes playback of the
2175         audio_only_chapter_seekbroken.mka file from the MPlayer samples
2176         archive.
2177
2178 2008-08-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2179
2180         * gst/multipart/multipartdemux.c:
2181         * gst/multipart/multipartmux.c:
2182         Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2183
2184 2008-08-21  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
2185
2186         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2187           gst_directdraw_sink_bufferpool_clear):
2188           Fix two more buffer ref leaks.
2189
2190 2008-08-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
2191
2192         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2193
2194         * sys/directdraw/gstdirectdrawsink.c:
2195           (gst_directdraw_sink_show_frame):
2196           Fix buffer ref leak.
2197
2198 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2199
2200         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2201         Revert the last commit. wavenc still supports width!=depth for 32 bit
2202         width. Thanks Tim.
2203
2204 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2205
2206         * gst/matroska/matroska-demux.c:
2207         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2208         If the duration of a block is unknown only use the timestamp for the
2209         first lace and use GST_CLOCK_TIME_NONE as duration for the following
2210         laces. Otherwise every lace has the same timestamp which leads to
2211         various problems. Really fixes bug #548831.
2212
2213 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2214
2215         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2216         If we're not allowing width!=depth in wavenc we should also disable
2217         the code that was added to support width!=depth.
2218
2219 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2220
2221         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2222         Don't calculate the default duration of a frame from the audio sampling
2223         rate. This only works for raw audio if every frame contains a single
2224         sample and results in broken buffer durations for other formats
2225         if no specified default duration is given or the blocks have no
2226         duration. Fixes bug #548831.
2227
2228 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2229
2230         * gst/matroska/matroska-demux.c:
2231         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2232         Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2233         are used for text/plain subtitles as a gap-filler in some files.
2234
2235 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2236
2237         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2238         (gst_v4l2_get_caps_info):
2239         Add S910 and PWC formats with a low priority.
2240
2241         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2242         (gst_v4l2src_probe_caps_for_format):
2243         Add more debugging.
2244
2245 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
2246
2247         * ext/flac/gstflacenc.c:
2248           Fix compilation against older libflac versions.
2249
2250 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2251
2252         * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2253         (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2254         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2255         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2256         (gst_pulsemixer_ctrl_set_volume):
2257         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2258         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2259         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2260         (gst_pulsesink_init), (gst_pulsesink_open),
2261         (gst_pulsesink_prepare), (gst_pulsesink_write),
2262         (gst_pulsesink_delay), (gst_pulsesink_reset):
2263         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2264         (gst_pulsesrc_init):
2265         Use GST_BOILERPLATE everywhere and fix coding style at some places.
2266         Fix a locking issue in pulsesink's prepare function.
2267
2268         * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2269         Check if the created channel layout is valid for GStreamer.
2270
2271 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2272
2273         * gst/rtsp/gstrtspgoogle.c:
2274         Things that can happen when your brain is in google mode trying to
2275         deal with their google rtsp server extensions and trying to type your
2276         google mail account.
2277
2278 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2279
2280         * gst/rtsp/Makefile.am:
2281         * gst/rtsp/gstrtsp.c: (plugin_init):
2282         * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2283         (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2284         (_do_init), (gst_rtsp_google_base_init),
2285         (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2286         (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2287         (gst_rtsp_google_extension_init):
2288         * gst/rtsp/gstrtspgoogle.h:
2289         Add google RTSP extension, it can only handle udp and responds with
2290         unsupported if we do anything else. Fixes #546465.
2291
2292         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2293         (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2294         (gst_rtspsrc_create_transports_string),
2295         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2296         (gst_rtspsrc_close), (gst_rtspsrc_pause):
2297         Make transport setup code a bit better using GString.
2298         Add some more debug.
2299         Check for closed connections before doing anything on them.
2300
2301 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2302
2303         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2304         (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2305         (gst_pulsesrc_prepare):
2306         * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2307         (gst_pulse_channel_map_to_gst):
2308         * ext/pulse/pulseutil.h:
2309         If downstream provides no channel layout and >2 channels should be
2310         used use the default layout that pulseaudio chooses and also
2311         add this layout to the caps. Fixes bug #547258.
2312
2313 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2314
2315         Patch by: Peter Kjellerstedt <pkj at axis com>
2316
2317         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2318         (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2319         (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2320         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2321         (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2322         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2323         (gst_udpsrc_set_property):
2324         Avoid leaking internally allocated file descriptors when setting
2325         custom file descriptors. Fixes #543101.
2326
2327 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2328
2329         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2330         Don't try to configure RTCP back to the server when the server did not
2331         give us a valid port number.
2332
2333 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2334
2335         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2336         Use new basetransform method to renegotiate. Fixes #544956.
2337
2338         * tests/icles/Makefile.am:
2339         * tests/icles/videobox-test.c: (make_pipeline), (main):
2340         Add videobox renegotiation example.
2341
2342 2008-08-19  David Schleef  <ds@schleef.org>
2343
2344         * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2345         with sane values.  Fixes #548530.
2346
2347 2008-08-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2348
2349         * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2350         * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2351         The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2352         are already filled with the correct values by
2353         gst_ring_buffer_parse_caps() so there's no need to set them again
2354         with wrong values.
2355
2356 2008-08-16  Edward Hervey  <edward.hervey@collabora.co.uk>
2357
2358         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2359         (gst_avi_demux_read_subindexes_push):
2360         Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2361         and instead of using the 'ix##' nomenclature, use '##ix'.
2362         They're still valid though, this fixes the duration and indexes for
2363         virtually all the ODML files I have.
2364
2365 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
2366
2367         Patch by: Olivier Crete <tester at tester dot ca>
2368
2369         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2370         (gst_rtp_vorbis_depay_process):
2371         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2372         Update the vorbis RTP pay/depay to RFC 5215.
2373         Fixes #547842.
2374
2375 2008-08-14  David Schleef  <ds@schleef.org>
2376
2377         * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2378           with 3:2 pulldown, i.e., 24p.
2379
2380 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2381
2382         * tests/check/elements/level.c: (GST_START_TEST):
2383         Fix compilation some more.
2384
2385 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2386
2387         * configure.ac::
2388           Require -base CVS for wavparse acid chunk parsing.
2389
2390 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2391
2392         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2393         (gst_pulsesink_init), (gst_pulsesink_finalize),
2394         (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2395         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2396         (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2397         * ext/pulse/pulsesink.h:
2398         Add "device-name" property to pulsesink too and currently commented
2399         out and not working support for a "volume" property.
2400
2401 2008-08-13  Thijs Vermeir  <thijsvermeir@gmail.com>
2402
2403         * configure.ac:
2404         Remove more cdio stuff (moved to ugly)
2405
2406 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2407
2408         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2409
2410         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2411         (gst_pulsesrc_get_property):
2412         Add "device-name" property, which provides a human readable string
2413         for the audio device, to make it more consisten with other audio
2414         sources. Fixes bug #547519.
2415
2416 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2417
2418         * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2419         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2420         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2421         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2422         * ext/pulse/pulsemixerctrl.h:
2423         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2424         (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2425         (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2426         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2427         * ext/pulse/pulseprobe.h:
2428         * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2429         * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2430         (gst_pulsesrc_change_state):
2431         Improve debugging a bit by including the parent object in pulsemixerctrl
2432         and pulseprobe objects and using GST_WARNING_OBJECT instead of
2433         GST_WARNING.
2434
2435         Use the parent GObject subclass instead of a random struct as GObject
2436         parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2437         when probing for another property than "device".
2438
2439 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2440
2441         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2442
2443         * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2444         Fix property probing after the device property is set by calling
2445         set_server when the server property changes. Fixes bug #547518.
2446
2447 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2448
2449         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2450
2451         * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2452         (gst_pulsesink_implements_interface_init),
2453         (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2454         (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2455         (gst_pulsesink_get_type):
2456         * ext/pulse/pulsesink.h:
2457         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2458         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2459         (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2460         * ext/pulse/pulsesrc.h:
2461         Implement GstPropertyProbe interface on pulsesink for detecting
2462         sink devices and on pulsesrc for detecting source devices.
2463         Fixes bugs #547227 and #547217.
2464
2465 2008-08-13  Stefan Kost  <ensonic@users.sf.net>
2466
2467         * gst/spectrum/gstspectrum.c:
2468           Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2469
2470 2008-08-13  Edward Hervey  <edward.hervey@collabora.co.uk>
2471
2472         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2473         Properly set the maximum latency value, in the same way it is done in
2474         v4lsrc.
2475         * sys/v4l2/v4l2src_calls.c:
2476         Simplify fraction equality check, no need to use GValues for this.
2477
2478 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2479
2480         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2481         Add warning messages stating exactly why the latency query failed.
2482         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2483         In some cases, the negotiated framerate might be the default one which
2484         is already set internally. But we still need to mark it down in fps_n
2485         and fps_d so that the latency query can happen properly.
2486
2487 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2488
2489         * docs/plugins/inspect/plugin-1394.xml:
2490         Whoops, forgot one doc file for people who can't/don't build the
2491         raw1394 plugin.
2492
2493 2008-08-12  Jan Schmidt  <jan.schmidt@sun.com>
2494
2495         * docs/plugins/Makefile.am:
2496         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2497         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2498         * docs/plugins/inspect/plugin-cdio.xml:
2499         * ext/Makefile.am:
2500         * ext/cdio/Makefile.am:
2501         * ext/cdio/gstcdio.c:
2502         * ext/cdio/gstcdio.h:
2503         * ext/cdio/gstcdiocddasrc.c:
2504         * ext/cdio/gstcdiocddasrc.h:
2505
2506         Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2507         CDDA source to -ugly.
2508
2509         * po/LINGUAS:
2510         * po/POTFILES.in:
2511         * po/id.po:
2512         Pull in new translation from 0.10.9.2 release branch.
2513
2514 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2515
2516         * docs/plugins/Makefile.am:
2517         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2518         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2519         * docs/plugins/gst-plugins-good-plugins.args:
2520         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2521         * docs/plugins/gst-plugins-good-plugins.interfaces:
2522         Integrate documentation for new hdv1394src element.
2523
2524 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2525
2526         * ext/raw1394/Makefile.am:
2527         * ext/raw1394/gst1394.c: (plugin_init):
2528         * ext/raw1394/gsthdv1394src.c: (_do_init),
2529         (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2530         (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2531         (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2532         (gst_hdv1394src_from_raw1394handle),
2533         (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2534         (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2535         (gst_hdv1394src_start), (gst_hdv1394src_stop),
2536         (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2537         (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2538         (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2539         (gst_hdv1394src_uri_handler_init):
2540         * ext/raw1394/gsthdv1394src.h:
2541         mpeg2-ts (HDV) variant of firewire capture element.
2542         Fixes #350830
2543
2544 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2545
2546         * gst/level/gstlevel.c: (gst_level_message_new):
2547          Fix compilation (also known as the classic 'fix code that someone
2548          committed without compiling it first').
2549
2550 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2551
2552         * tests/check/elements/level.c:
2553           Add a test for level in stereo mode.
2554
2555 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2556
2557         * tests/examples/spectrum/demo-audiotest.c:
2558         * tests/examples/spectrum/demo-osssrc.c:
2559           Demo how to draw analyzer results synced to the clock.
2560
2561 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2562
2563         * gst/level/gstlevel.c:
2564           Little renaming (l -> level).
2565
2566         * gst/spectrum/gstspectrum.c:
2567         * gst/spectrum/gstspectrum.h:
2568           Also send full timestamp/duration details here.
2569
2570 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2571
2572         * gst/level/gstlevel.c:
2573         * gst/level/gstlevel.h:
2574           Send same timestamp/duration details as videoanalysis. This gives
2575           applications better chance to sync analysis results with playback.
2576
2577 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2578
2579         * gst/matroska/matroska-mux.c:
2580         (gst_matroska_mux_handle_sink_event),
2581         (flac_streamheader_to_codecdata):
2582         We need to drop one additional buffer for FLAC as the fLaC
2583         marker and STREAMINFO block are merged into one buffer in the caps.
2584
2585         Also don't pretend to support NEWSEGMENT events, otherwise we
2586         will most probably write some invalid data.
2587
2588 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2589
2590         * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2591         (gst_matroska_mux_audio_pad_setcaps):
2592         Add support for muxing FLAC into Matroska containers.
2593         Fixes bug #311586.
2594
2595 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2596
2597         * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2598         Actually provide the variables required for the format string.
2599
2600 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2601
2602         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2603         (gst_matroska_demux_element_send_event),
2604         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2605         * gst/matroska/matroska-demux.h:
2606         Close the current segment if we're doing a non-flushing seek and send
2607         the close-segment and the new segment of the seek from the streaming
2608         thread.
2609
2610 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2611
2612         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2613         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2614         (gst_flac_enc_change_state):
2615         * ext/flac/gstflacenc.h:
2616         Handle non-zero start timestamps correctly, mark header packets as
2617         IN_CAPS and print a warning and suggest using audiorate if stream
2618         discontinuities are detected. When FLAC supports flushing the encoder
2619         somehow this should be done for discontinuities instead.
2620
2621         Remove some unused variables from the instance struct.
2622
2623 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2624
2625         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2626         If seeking failed return the appropiate return value to FLAC.
2627         Otherwise it thinks seeking was successfull and tries to rewrite
2628         parts of the headers which then get appended to the output.
2629
2630 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2631
2632         Patch by: Frederic Crozat <fcrozat@mandriva.org>
2633
2634         * ext/esd/gstesd.c: (plugin_init):
2635         * ext/flac/gstflac.c: (plugin_init):
2636         * ext/shout2/gstshout2.c: (plugin_init):
2637         * ext/wavpack/gstwavpack.c: (plugin_init):
2638         * sys/oss/gstossaudio.c: (plugin_init):
2639         * sys/v4l2/gstv4l2.c: (plugin_init):
2640         Make sure gettext returns translations in UTF-8 encoding rather
2641         than in the current locale encoding (#546822).
2642
2643 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2644
2645         * ext/flac/gstflacdec.c:
2646         Add FIXME for 0.11 to simply output everything with width=32 as given
2647         by FLAC and let audioconvert handle the conversions instead of doing
2648         them in flacdec.
2649
2650 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
2651
2652         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2653         When outputting a pad template range for the size, include a framerate
2654         range too, to avoid 'not a real subset of template caps' errors.
2655
2656 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2657
2658         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2659
2660         * ext/flac/Makefile.am:
2661         * ext/flac/gstflac.c: (plugin_init):
2662         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2663         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2664         (gst_flac_tag_dispose), (gst_flac_tag_init),
2665         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2666         (gst_flac_tag_change_state):
2667         * ext/flac/gstflactag.h:
2668         Port flactag to 0.10, add documentation for it and clean it up a bit.
2669         Fixes bug #413841.
2670
2671         * docs/plugins/Makefile.am:
2672         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2673         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2674         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2675         * docs/plugins/gst-plugins-good-plugins.interfaces:
2676         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2677         * docs/plugins/inspect/plugin-flac.xml:
2678         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2679         * ext/flac/gstflacdec.h:
2680         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2681         * ext/flac/gstflacenc.h:
2682         Add flactag and flacenc to the documentation and mark
2683         the private parts of the flacdec instance structure as private.
2684
2685         Also use gst_element_class_set_details_simple() in flacdec and
2686         flacenc.
2687
2688 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
2689
2690         * gst/qtdemux/qtdemux.c:
2691           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2692           for it but ffmpeg does not.
2693
2694 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2695
2696         * gst/wavparse/gstwavparse.c:
2697           Handle the list chunk and use gst_riff_parse_info() to parse the info
2698           sub-chunk.
2699
2700 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2701
2702         * gst/wavparse/gstwavparse.c:
2703           Handle the acid chunk and send tempo as part of tags. Other fields are
2704           interesting too, but need more tag-definitions. Fixes #545433.
2705
2706 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2707
2708         * gst/wavparse/gstwavparse.c:
2709           Refactor wavparse. Call _reset() from dispose() and move old code from
2710           dispose into reset. This way we don't leak taglists when we abort
2711           parsing. Fix some comments. Move code for skipping a chunk into extra
2712           function. Replace chunk sizes with a const to ease readability.         
2713
2714 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2715
2716         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2717
2718         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2719         Improve udp port setup. Fixes #545710.
2720
2721 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2722
2723         * gst/rtp/Makefile.am:
2724         * gst/rtp/gstrtp.c: (plugin_init):
2725         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2726         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2727         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2728         (gst_rtp_mp1s_depay_set_property),
2729         (gst_rtp_mp1s_depay_get_property),
2730         (gst_rtp_mp1s_depay_change_state),
2731         (gst_rtp_mp1s_depay_plugin_init):
2732         * gst/rtp/gstrtpmp1sdepay.h:
2733         Add MP1S depayloader.
2734
2735         * gst/rtsp/URLS:
2736         Some more sample rtsp streams.
2737
2738 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2739
2740         * gst/rtsp/URLS:
2741         Add another URL.
2742
2743         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2744         * tests/check/elements/rglimiter.c: (GST_START_TEST):
2745         Add some more debug info.
2746
2747 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2748
2749         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2750         Provide cbSize field for audio extra_data size, and take care to
2751         pad extra_data.
2752
2753 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2754
2755         * gst/qtdemux/qtdemux.c:
2756           Return the result of gst_pad_{start,stop}_task instead of hard-coded
2757           TRUE.
2758
2759 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2760
2761         * gst/qtdemux/qtdemux.c:
2762         * gst/qtdemux/qtdemux_fourcc.h:
2763           Add keyword tag support. Fixes #520694 for qtdemux.
2764
2765 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2766
2767         * gst/qtdemux/qtdemux.c:
2768           Add support for tmpo tag (BPM).
2769
2770 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2771
2772         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2773         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2774         Set an estimate for the total number of samples that will be encoded
2775         if possible to help decoders if the streaminfo can't be rewritten
2776         later (like when muxing into Ogg containers).
2777
2778         Add a warning if we get header packets after data packets as those
2779         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2780         work.
2781
2782 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2783
2784         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2785         (gst_flac_dec_write):
2786         Support decoding of all depths between 4 and 32 bits and read the
2787         depth from the streaminfo header if needed. Also support all sampling
2788         rates between 1 and 655350 Hz.
2789
2790         * ext/flac/gstflacenc.c:
2791         (gst_flac_enc_caps_append_structure_with_widths),
2792         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2793         (gst_flac_enc_chain):
2794         * ext/flac/gstflacenc.h:
2795         Support encoding in all bit depths supported by the streamable
2796         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2797         between 1 Hz and 655350 Hz.
2798
2799 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2800
2801         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2802         (gst_flac_enc_sink_getcaps):
2803         Support encoding of up to 8 channels.
2804
2805 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2806
2807         * ext/soup/gstsouphttpsrc.c:
2808         * ext/soup/gstsouphttpsrc.h:
2809         Fix seeking race condition in #540300
2810         Patch By: Wouter Cloetens  <wouter at mind be>
2811
2812 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2813
2814         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2815         (gst_matroska_demux_element_send_event),
2816         (gst_matroska_demux_handle_seek_event),
2817         (gst_matroska_demux_handle_src_event):
2818         When receiving a SEEK event on a specific pad first search for a seek
2819         table entry for the stream of the pad and then fall back to an entry
2820         for a different stream.
2821
2822 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2823
2824         * configure.ac:
2825         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2826         * gst/matroska/matroska-ids.h:
2827         Build depend on core CVS for the attachment tag.
2828
2829 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2830
2831         * configure.ac:
2832         * gst/matroska/Makefile.am:
2833         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2834         (copy_backptr), (lzo1x_decode), (main):
2835         * gst/matroska/lzo.h:
2836         * gst/matroska/matroska-demux.c:
2837         (gst_matroska_demux_read_track_encoding),
2838         (gst_matroska_decompress_data), (gst_matroska_decode_data),
2839         (gst_matroska_decode_buffer),
2840         (gst_matroska_decode_content_encodings),
2841         (gst_matroska_demux_read_track_encodings),
2842         (gst_matroska_demux_add_stream),
2843         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2844         * gst/matroska/matroska-ids.h:
2845         Decode the codec private data and following ContentEncoding if
2846         necessary.
2847
2848         Support bzip2, lzo and header stripped compression. For lzo use the
2849         ffmpeg lzo implementation as liblzo is GPL licensed.
2850         
2851         Fix zlib decompression.
2852
2853 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2854
2855         * gst/matroska/matroska-mux.c:
2856         (gst_matroska_mux_audio_pad_setcaps):
2857         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2858         duration of a frame with the new mpegaudioversion caps field.
2859
2860 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2861
2862         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2863         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2864         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2865         (gst_matroska_demux_stream_from_num),
2866         (gst_matroska_demux_tracknumber_unique),
2867         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2868         (gst_matroska_demux_handle_seek_event),
2869         (gst_matroska_demux_sync_streams),
2870         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2871         (gst_matroska_demux_loop):
2872         * gst/matroska/matroska-demux.h:
2873         Allow an infinite number of stream inside Matroska containers and use
2874         a GPtrArray for storing them instead of allowing "only" 127 streams.
2875
2876 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2877
2878         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2879         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2880         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2881         (gst_ebml_read_element_length), (gst_ebml_peek_id),
2882         (gst_ebml_read_get_length), (gst_ebml_read_skip),
2883         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2884         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2885         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2886         (gst_ebml_read_master), (gst_ebml_read_binary),
2887         (gst_ebml_read_header):
2888         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2889         (gst_ebml_write_element_size), (gst_ebml_write_uint),
2890         (gst_ebml_write_sint), (gst_ebml_write_ascii),
2891         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2892         (gst_ebml_replace_uint):
2893         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2894         (gst_matroska_demux_read_track_encoding),
2895         (gst_matroska_demux_read_track_encodings),
2896         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2897         (gst_matroska_demux_send_event),
2898         (gst_matroska_demux_element_send_event),
2899         (gst_matroska_demux_handle_seek_event),
2900         (gst_matroska_demux_handle_src_event),
2901         (gst_matroska_demux_init_stream),
2902         (gst_matroska_demux_parse_tracks),
2903         (gst_matroska_demux_parse_index_cuetrack),
2904         (gst_matroska_demux_parse_index_pointentry),
2905         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
2906         (gst_matroska_demux_parse_metadata_id_simple_tag),
2907         (gst_matroska_demux_parse_metadata_id_tag),
2908         (gst_matroska_demux_parse_metadata),
2909         (gst_matroska_demux_parse_attached_file),
2910         (gst_matroska_demux_parse_attachments),
2911         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
2912         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
2913         (gst_matroska_demux_push_flac_codec_priv_data),
2914         (gst_matroska_demux_push_xiph_codec_priv_data),
2915         (gst_matroska_demux_push_dvd_clut_change_event),
2916         (gst_matroska_demux_add_mpeg_seq_header),
2917         (gst_matroska_demux_add_wvpk_header),
2918         (gst_matroska_demux_check_subtitle_buffer),
2919         (gst_matroska_decode_buffer),
2920         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2921         (gst_matroska_demux_parse_cluster),
2922         (gst_matroska_demux_parse_contents_seekentry),
2923         (gst_matroska_demux_parse_contents),
2924         (gst_matroska_demux_loop_stream_parse_id),
2925         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
2926         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
2927         (gst_matroska_demux_subtitle_caps),
2928         (gst_matroska_demux_change_state):
2929         * gst/matroska/matroska-ids.c:
2930         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
2931         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
2932         (gst_matroska_mux_video_pad_setcaps),
2933         (xiph3_streamheader_to_codecdata),
2934         (vorbis_streamheader_to_codecdata),
2935         (theora_streamheader_to_codecdata),
2936         (gst_matroska_mux_audio_pad_setcaps),
2937         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
2938         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
2939         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
2940         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
2941         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
2942         Fix indention everywhere. A broken indent version has added newlines
2943         after every single declaration some time ago.
2944
2945 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2946
2947         * gst/matroska/matroska-demux.c:
2948         (gst_matroska_demux_loop_stream_parse_id):
2949         If no Tracks are found error out instead of trying it again until the
2950         end of time.
2951
2952 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2953
2954         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
2955         Fix demuxing of raw integer audio. The samples are unsigned only for 8
2956         bit and signed otherwise, not the other way around.
2957
2958 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2959
2960         * gst/matroska/matroska-mux.c:
2961         Add more raw YUV formats to the list of supported formats.
2962
2963 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2964
2965         * gst/matroska/matroska-mux.c:
2966         (gst_matroska_mux_audio_pad_setcaps):
2967         Add support for muxing raw float audio now that the spec defines the
2968         endianness and add support for muxing raw integer audio with 24 and
2969         32 bits.
2970
2971         Allow muxing of more than 8 audio channels.
2972
2973 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2974
2975         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
2976         (gst_matroska_mux_reset), (gst_matroska_mux_start):
2977         Add locking to the global array of used track UIDs to prevent random
2978         crashes if more than a single matrosmux instance is used.
2979
2980         Use 64 bit values for the track UIDs.
2981
2982         Use the global GRandom of GLib instead of creating our own one
2983         for the few random numbers we need every single time.
2984
2985 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2986
2987         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
2988         (gst_flac_dec_setup_stream_decoder),
2989         (gst_flac_dec_update_metadata):
2990         Always post the audio-codec tag, not only if other tags are present.
2991
2992 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2993
2994         * configure.ac:
2995         Back to development -> 0.10.9.1
2996
2997 === release 0.10.9 ===
2998
2999 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
3000
3001         * configure.ac:
3002           releasing 0.10.9, "Steam Train Rolling"
3003
3004 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
3005
3006         * ext/soup/gstsouphttpsrc.c:
3007         Don't throw an error when soup completes a msg with status
3008         'cancelled', as that indicates we cancelled a request while
3009         shutting down or seeking, and it's not an error.
3010         Fixes: #540300 again.
3011
3012 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
3013
3014         * configure.ac:
3015         0.10.8.4 pre-release
3016
3017 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
3018
3019         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
3020         Fix segment-stop regression.
3021         Add documentation regarding segments in quicktime files by Wim Taymans.
3022         Fixes #544509
3023
3024 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
3025
3026         * configure.ac:
3027         0.10.8.3 pre-release
3028
3029         * po/LINGUAS:
3030         * po/pt_BR.po:
3031         Add pt_BR translation
3032
3033 2008-07-23  Michael Smith <msmith@songbirdnest.com>
3034
3035         * gst/goom/convolve_fx.c:
3036         * gst/goom/filters.c:
3037         * gst/goom/goom_config.h:
3038         * gst/goom/goom_core.c:
3039         * gst/goom/goom_tools.h:
3040           Fix build with MSVC: include glib.h to define inline appropriately,
3041           use header guards where needed.
3042         * gst/udp/gstudpnetutils.c:
3043         * gst/udp/gstudpsrc.c:
3044           Fix build with MSVC: use WSA* constants/functions where appropriate, use
3045           g_snprintf rather than snprintf.
3046           Fixes #544433.
3047
3048 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
3049
3050         * gst/debug/gsttaginject.c:
3051         * gst/debug/gsttaginject.h:
3052           Sent tags in _transform_ip() instead of _start(). Fixes #543404
3053           partially.
3054
3055 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3056
3057         * configure.ac:
3058         0.10.8.2 pre-release
3059
3060 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3061
3062         * ext/Makefile.am:
3063         Finish hooking up pulseaudio plugin to the build.
3064
3065         * ext/pulse/pulsemixerctrl.c:
3066         Fix compilation error.
3067
3068 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3069
3070         * po/LINGUAS:
3071         * po/lt.po:
3072         Add new lithunian translation, and add french to the LINGUAS
3073         file.
3074
3075 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3076
3077         * ext/soup/gstsouphttpsrc.c:
3078         Fix Soup HTTP source seeking.
3079         Patch By: Wouter Cloetens  <wouter at mind be>
3080         Fixes: #540300
3081
3082         * tests/check/elements/.cvsignore:
3083         Ignore new check programs.
3084
3085 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
3086
3087         * configure.ac:
3088         * docs/plugins/Makefile.am:
3089         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3090         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3091         * docs/plugins/gst-plugins-good-plugins.args:
3092         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3093         * docs/plugins/gst-plugins-good-plugins.interfaces:
3094         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3095         * docs/plugins/inspect/plugin-interleave.xml:
3096         * docs/plugins/inspect/plugin-replaygain.xml:
3097         * tests/check/Makefile.am:
3098
3099         Move replaygain and interleave plugins from -bad.
3100         Fixes: #543406
3101         Fixes: #536228
3102
3103 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3104
3105         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3106         (qtdemux_parse_trak):
3107         Revert ISO base media spec based pixel-aspect-ratio calculation.
3108         Fixes #543300.
3109
3110 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
3111
3112         * sys/osxvideo/osxvideosink.m:
3113         Fix minor build issues on macosx.
3114         Fixes #543054
3115
3116 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3117
3118         * configure.ac::
3119         * ext/taglib/Makefile.am::
3120           Only use -Wno-attributes (which is there to work around a
3121           bug in the taglib 1.5 headers) if the c++ compiler actually
3122           supports it (#543255).
3123
3124 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3125
3126         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3127
3128         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3129           Avoid compiler warning by initialising variable to NULL (#543259).
3130
3131 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3132
3133         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3134         Don't pass NULL taglists to gst_tag_list_is_empty().
3135
3136 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3137
3138         * tests/check/elements/cmmldec.c: (GST_START_TEST):
3139         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3140         (rtp_pipeline_run):
3141         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3142         Don't use declarations after statements.
3143
3144 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3145
3146         * ext/jpeg/gstjpegdec.c:
3147         Align documentation with reality.
3148
3149 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3150
3151         * gst/udp/gstudpnetutils.c:
3152         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3153         old value (1) if it's not defined which should not cause any problems
3154         as we're using it internal only anyway.
3155
3156 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3157
3158         Patch by: Alessandro Decina <alessandro at nnva dot org>
3159
3160         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3161         Fix build of avidemux on big endian architectures.
3162
3163 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3164
3165         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3166
3167         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3168         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
3169
3170 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3171
3172         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3173         (qtdemux_parse_trak):
3174         Set pixel-aspect-ratio in caps using display width and height
3175         provided in track.
3176
3177 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3178
3179         * configure.ac:
3180         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3181         flags that are invalid for C++. Fixes bug #516509.
3182
3183 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3184
3185         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3186         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3187         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3188         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3189         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3190         * tests/examples/equalizer/demo.c: (message_handler):
3191         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3192         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3193         Don't use declarations after statements and variable length arrays.
3194
3195 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3196
3197         Patch by: Daniel Drake <dsd at gentoo dot org>
3198
3199         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3200         (gst_v4l2src_get_nearest_size):
3201         Try progressive video if interlaced fails. Fixes bug #541956
3202         and the usage of v4l2src on OLPC.
3203
3204 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3205
3206         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3207         (gst_rtp_speex_depay_process):
3208         * gst/rtp/gstrtpspeexdepay.h:
3209         Revert last change: Only the jitterbuffer is able to convert RTP to
3210         Gstreamer timestamps and normal (de)payloaders should simply copy it.
3211         Reopens bug #541787.
3212
3213 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
3214
3215         * gst/rtp/gstrtpvrawdepay.c:
3216           Include stdlib.h for atoi().
3217
3218         * gst/rtsp/gstrtspsrc.c:
3219           Use floating point math for latencies < 0 sec in log output.
3220
3221 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3222
3223         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3224
3225         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3226         (gst_rtp_speex_depay_process):
3227         * gst/rtp/gstrtpspeexdepay.h:
3228         Take timestamp from the RTP packet as a first step to fix problems
3229         with transmission over RTP when the network is not reliable.
3230         Fixes bug #541787.
3231
3232 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3233
3234         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3235
3236         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3237         Fix parsing of udp:// URIs containing IPv6 addresses.
3238         Fixes bug #541650.
3239
3240 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3241
3242         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3243         Do not leak incoming buffers.
3244
3245 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3246
3247         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3248
3249         * configure.ac:
3250         Fix build of the RTP plugin with mingw32 by linking to ws2_32
3251         for htons() and htonl(). Fixes bug #541412.
3252
3253 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3254
3255         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3256         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3257         (gst_matroska_demux_element_query),
3258         (gst_matroska_demux_handle_src_query),
3259         (gst_matroska_demux_handle_seek_event):
3260         Handle position and duration query in DEFAULT format if the
3261         pad's track has a default frame duration set.
3262
3263         Fix seeking now that the segment's duration doesn't contain the
3264         (possibly wrong or inaccurate) duration of the Matroska file.
3265
3266 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3267
3268         * gst/matroska/ebml-read.c: (_ext2dbl):
3269         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3270         in math.h except on MSVC where it is defined in xmath.h.
3271         Fixes compilation with MSVC.
3272
3273 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3274
3275         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3276         (gst_matroska_demux_handle_src_query),
3277         (gst_matroska_demux_parse_info),
3278         (gst_matroska_demux_loop_stream_parse_id):
3279         * gst/matroska/matroska-demux.h:
3280         Don't set the segment duration to the duration from the Matroska
3281         header as this value could be wrong and is just informational.
3282
3283 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3284
3285         * gst/matroska/matroska-demux.c:
3286         (gst_matroska_demux_loop_stream_parse_id):
3287         If no Tracks element is found until the first Cluster is found
3288         search it and error out if none is found in the complete file.
3289
3290 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3291
3292         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3293         Resync non-subtitle tracks too if a too large gap compared to other
3294         tracks is detected.
3295
3296 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3297
3298         * gst/rtp/Makefile.am:
3299         * gst/rtp/gstrtp.c: (plugin_init):
3300         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3301         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3302         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3303         (gst_rtp_vraw_depay_change_state),
3304         (gst_rtp_vraw_depay_plugin_init):
3305         * gst/rtp/gstrtpvrawdepay.h:
3306         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3307         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3308         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3309         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3310         (gst_rtp_vraw_pay_plugin_init):
3311         * gst/rtp/gstrtpvrawpay.h:
3312         Add raw video pay and depayloaders, see RFC4175.
3313
3314 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
3315
3316         * ext/libpng/gstpngdec.c:
3317         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3318         whatever it returned.
3319
3320 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3321
3322         * gst/avi/avi-ids.h:
3323         Add vprp chunk related structures.
3324         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3325         (gst_avi_demux_parse_stream):
3326         Parse optional vprp chunk and add calculated pixel-aspect-ratio
3327         to caps.  Fixes #539482.
3328         * gst/avi/gstavimux.h:
3329         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3330         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3331         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3332
3333 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3334
3335         * tests/check/elements/avimux.c: (check_avimux_pad):
3336         Adjust avimux unit test according to increased streamheader size.
3337
3338 2008-06-27  David Schleef  <ds@schleef.org>
3339
3340         * gst/qtdemux/qtdemux.c: Add Dirac stream type
3341
3342 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3343
3344         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3345         * gst/avi/gstavimux.h:
3346         Add 8 bytes to current streamheader to make for a complete one
3347         and to make more players happy.  Fixes #519460.
3348
3349 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
3350
3351         * sys/v4l2/v4l2_calls.c::
3352           Don't include unused gstv4l2xoverlay.h. Fixes build
3353           in case where X11 headers are not installed.
3354
3355 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3356
3357         * ext/dv/gstdv.c: (plugin_init):
3358         Fix compilation.
3359
3360 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
3361
3362         * ext/dv/gstdv.c: (plugin_init):
3363         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3364         DV decoder available.
3365         Fixes #532393
3366
3367 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3368
3369         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3370         Call getsockname() after the call to bind() to get updated values
3371         for the port, etc. This fixes the usage of udpsrc on anonymous
3372         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3373         Thanks to Aurelien Grimaud for pointing out the obvious fix.
3374
3375 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3376
3377         * tests/check/pipelines/wavpack.c: (bus_handler):
3378         Remove workaround for a bug in identity that is fixed in 0.10.20.
3379
3380 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3381
3382         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3383
3384         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3385         Fix HTTP auth support with user/password passed via the URI.
3386         Fixes bug #540067.
3387
3388 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
3389
3390         * configure.ac:
3391           Depend on released versions of core and -base.
3392
3393 2008-06-23  Julien Moutte  <julien@fluendo.com>
3394
3395         * gst/matroska/matroska-demux.c:
3396         (gst_matroska_demux_read_track_encoding),
3397         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3398         format strings in macros. (makes it build on OS X again...)
3399
3400 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3401
3402         * gst/rtp/gstrtptheorapay.c:
3403         * gst/udp/gstmultiudpsink.c:
3404           Added debug.
3405
3406 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
3407
3408         * configure.ac: switch v4l2src over to the normal build instead of
3409         being 'experimental'. Fixes bug #536831.
3410
3411 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3412
3413         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3414         Remove unused variable so that we can compile again.
3415
3416 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
3417
3418         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3419         No need to check for audio/G723 and audio/32KADPCM here as they are
3420         no longer supported.
3421
3422 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3423
3424         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3425         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3426         Use G_GINT64_CONSTANT, this fixes the duration query on files without
3427         known length.
3428
3429 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3430
3431         * gst/matroska/matroska-demux.c:
3432         (gst_matroska_demux_add_wvpk_header),
3433         (gst_matroska_demux_audio_caps):
3434         * gst/matroska/matroska-ids.h:
3435         Fix demuxing of WavPack files. Muxing is still broken.
3436
3437 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3438
3439         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3440         (gst_matroska_demux_add_mpeg_seq_header),
3441         (gst_matroska_demux_add_wvpk_header),
3442         (gst_matroska_demux_check_subtitle_buffer),
3443         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3444         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3445         (gst_matroska_demux_subtitle_caps):
3446         * gst/matroska/matroska-ids.h:
3447         Add a "vfunc" to the track context for postprocessing frames and
3448         convert the wavpack and subtitle postprocessing to this vfunc.
3449         Copy buffer flags in those functions to the new buffers too.
3450
3451         Parse CodecState elements of Blocks.
3452
3453         Add a postprocessing function for MPEG video that adds the sequence
3454         header from the codec private data or codec state to the frames if
3455         it's not already there.
3456
3457 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3458
3459         * gst/matroska/matroska-demux.c:
3460         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3461         If a gap of more than 1/2 second is found in one stream send a
3462         NEWSEGMENT event to not stall the pipeline if the gap is too large.
3463         This also fixes Matroska files where the first buffer doesn't start
3464         at timestamp 0. Fixes bug #429322.
3465
3466         The duration of a block is the default duration multiplied with the
3467         number of laces. Every lace is one frame and the default duration
3468         is the duration of one frame. This fixes playback of files that use
3469         lacing for some tracks.
3470
3471 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3472
3473         * gst/matroska/matroska-demux.c:
3474         (gst_matroska_demux_parse_contents_seekentry):
3475         Update FIXME/TODOs and only ignore EOS at the central, important place
3476         instead of several places.
3477
3478 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3479
3480         * gst/rtp/gstrtpg726pay.c:
3481         Fix caps, See #538891.
3482
3483 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3484
3485         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3486         (gst_matroska_demux_stream_from_num),
3487         (gst_matroska_demux_encoding_cmp),
3488         (gst_matroska_demux_encoding_order_unique),
3489         (gst_matroska_demux_read_track_encoding),
3490         (gst_matroska_demux_read_track_encodings),
3491         (gst_matroska_demux_tracknumber_unique),
3492         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3493         (gst_matroska_demux_parse_tracks),
3494         (gst_matroska_demux_parse_index_cuetrack),
3495         (gst_matroska_demux_parse_index_pointentry),
3496         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3497         (gst_matroska_demux_parse_metadata_id_simple_tag),
3498         (gst_matroska_demux_parse_metadata_id_tag),
3499         (gst_matroska_demux_parse_metadata),
3500         (gst_matroska_demux_parse_attached_file),
3501         (gst_matroska_demux_parse_attachments),
3502         (gst_matroska_demux_parse_chapters),
3503         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3504         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3505         (gst_matroska_demux_parse_cluster),
3506         (gst_matroska_demux_parse_contents_seekentry),
3507         (gst_matroska_demux_parse_contents),
3508         (gst_matroska_demux_loop_stream_parse_id),
3509         (gst_matroska_demux_loop):
3510         Improve debug output everywhere and fix the EOS logic.
3511
3512         Check the values of the ContentEncoding elements more strictly and
3513         don't use tracks for which it's invalid.
3514
3515         Check that the track number is unique for this stream.
3516
3517         Check that seek positions are below G_MAXINT64 as our seeks are
3518         int64-based and overflows will fail badly.
3519
3520         After seeks also don't push SimpleBlocks until the first one
3521         containing a keyframe is found. Before this was done only for normal
3522         Blocks.
3523
3524         Update some FIXME/TODOs.
3525         
3526         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3527         (gst_ebml_read_utf8), (gst_ebml_read_header):
3528         Improve debug output.
3529
3530         * gst/matroska/matroska-ids.c:
3531         (gst_matroska_track_init_video_context):
3532         * gst/matroska/matroska-ids.h:
3533         * gst/matroska/matroska-mux.c:
3534         (gst_matroska_mux_video_pad_setcaps):
3535         Remove eye mode and don't parse it anymore. We can't use that
3536         information in GStreamer yet so it's useless.
3537
3538
3539 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3540
3541         Patch by: Mersad Jelacic <mersad at axis dot com>
3542
3543         * gst/rtp/Makefile.am:
3544         * gst/rtp/gstrtp.c: (plugin_init):
3545         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3546         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3547         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3548         (gst_rtp_g726_depay_plugin_init):
3549         * gst/rtp/gstrtpg726depay.h:
3550         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3551         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3552         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3553         * gst/rtp/gstrtpg726pay.h:
3554         Added G726 pay/depayloaders. Fixes #538891.
3555
3556 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3557
3558         * gst/rtsp/URLS:
3559         Some more urls.
3560
3561         * gst/smpte/barboxwipes.c:
3562         Add a comment
3563
3564         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3565         Fix typo, add audioresample to the pipeline.
3566
3567 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3568
3569         * ext/libmng/Makefile.am:
3570         * ext/libmng/gstmng.c: (plugin_init):
3571         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3572         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3573         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3574         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3575         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3576         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3577         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3578         (gst_mng_dec_change_state):
3579         * ext/libmng/gstmngdec.h:
3580         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3581         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3582         (gst_mng_enc_init), (gst_mng_enc_chain),
3583         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3584         * ext/libmng/gstmngenc.h:
3585         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3586         bits ifdeffed out still.
3587
3588 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3589
3590         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3591         When comparing index elements with the same time compare their
3592         block number.
3593
3594 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
3595
3596         * gst/matroska/matroska-demux.c:
3597           (gst_matroska_demux_parse_attached_file)
3598           Init variable to NULL to avoid compiler warning.
3599
3600 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3601
3602         * gst/matroska/Makefile.am:
3603         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3604         (gst_matroska_demux_parse_attached_file),
3605         (gst_matroska_demux_parse_attachments),
3606         (gst_matroska_demux_parse_contents_seekentry),
3607         (gst_matroska_demux_loop_stream_parse_id):
3608         * gst/matroska/matroska-demux.h:
3609         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3610         * gst/matroska/matroska-ids.h:
3611         * gst/matroska/matroska.c: (plugin_init):
3612         Parse Attachments and post them as GST_TAG_IMAGE if we detect
3613         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3614         and description of the attachments in the caps. Fixes bug #537622.
3615
3616 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
3617
3618         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3619         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3620         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3621         (gst_speex_enc_src_query), (gst_speex_enc_init),
3622         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3623         (gst_speex_enc_chain), (gst_speex_enc_get_property),
3624         (gst_speex_enc_set_property):
3625         Add mode property.
3626         Some cleanups, add more debug info.
3627         Add latency query.
3628
3629 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3630
3631         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3632         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3633         If we get less bytes than requested we can't do anything except doing
3634         our EOS logic.
3635
3636 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3637
3638         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3639         (gst_matroskademux_do_index_seek),
3640         (gst_matroska_demux_parse_index_cuetrack),
3641         (gst_matroska_demux_parse_index_pointentry),
3642         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3643         (gst_matroska_demux_parse_metadata):
3644         * gst/matroska/matroska-demux.h:
3645         * gst/matroska/matroska-ids.h:
3646         Use a GArray for storing the Cue (i.e. seek) information, store
3647         the CueTrackPositions for every track, store the block number
3648         and optimize searching in the array by sorting it after the last
3649         element was added.
3650
3651         Fix a small memory leak when trying to parse a tags element that was
3652         already parsed.
3653
3654 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3655
3656         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3657         (gst_matroska_mux_start), (gst_matroska_mux_finish),
3658         (gst_matroska_mux_write_data):
3659         * gst/matroska/matroska-mux.h:
3660         Don't write another SeekHead which indexes all Clusters to the end of
3661         the file. This isn't useful for anything and just increases filesize.
3662
3663 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3664
3665         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3666         Prevent unaligned memory access when reading floats.
3667
3668 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3669
3670         * gst/matroska/ebml-read.c:
3671         * gst/matroska/ebml-read.h:
3672         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3673         (gst_matroska_demux_parse_metadata):
3674         * gst/matroska/matroska-demux.h:
3675         Make sure that every Tags element is only parsed once and it's
3676         containing tags are only posted once.
3677
3678 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3679
3680         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3681         (gst_ebml_read_header):
3682         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3683         (gst_matroska_demux_parse_tracks),
3684         (gst_matroska_demux_parse_index_cuetrack),
3685         (gst_matroska_demux_parse_index_pointentry),
3686         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3687         (gst_matroska_demux_parse_metadata_id_simple_tag),
3688         (gst_matroska_demux_parse_metadata_id_tag),
3689         (gst_matroska_demux_parse_metadata),
3690         (gst_matroska_demux_parse_attachments),
3691         (gst_matroska_demux_parse_chapters),
3692         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3693         (gst_matroska_demux_parse_cluster),
3694         (gst_matroska_demux_parse_contents_seekentry),
3695         (gst_matroska_demux_parse_contents),
3696         (gst_matroska_demux_loop_stream_parse_id):
3697         Handle EBML elements like Void or CRC32 in the EbmlRead base class
3698         already. They're not useful in the matroska parser and only cause
3699         additional code.
3700
3701 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
3702
3703         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3704         (gst_ebml_finalize), (gst_ebml_read_change_state),
3705         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3706         * gst/matroska/matroska-demux.c:
3707         (gst_matroska_demux_parse_contents_seekentry):
3708         Reverse the level list as we usually are only interested in the
3709         first element or want to add a new first element. Having the
3710         first element stored at the end and calling g_list_last() and
3711         g_list_append() is more expensive.
3712
3713         Also use GSlice for allocating the GstEbmlLevel structs.
3714
3715 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
3716
3717         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3718           (gst_tag_inject_class_init), (gst_tag_inject_init):
3719           Don't unref NULL taglist in finalize. Don't use c++ style
3720           comments.
3721
3722 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3723
3724         * gst/matroska/matroska-demux.c:
3725         (gst_matroska_demux_parse_metadata_id_simple_tag):
3726         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3727         (gst_matroska_mux_write_data):
3728         Use gst_value_serialize() and gst_value_deserialize() for transforming
3729         tags from some GType to a string and the other way around. The default
3730         transformations in GLib don't include transformations from string to
3731         number types.
3732
3733 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3734
3735         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3736         (gst_matroska_demux_parse_tracks),
3737         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3738         (gst_matroska_demux_parse_attachments),
3739         (gst_matroska_demux_parse_chapters),
3740         (gst_matroska_demux_parse_contents_seekentry),
3741         (gst_matroska_demux_loop_stream_parse_id):
3742         * gst/matroska/matroska-demux.h:
3743         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3744         Tags multiple times. The first ones can appear more than once but must
3745         contain the same content as the first for backup purposes so we ignore
3746         all but the first one. Tags can appear multiple times with different
3747         content.
3748
3749         Jump to all elements except Clusters that are available from a
3750         SeekHead to make it more likely to have all required informations
3751         before getting to the first Clusters.
3752
3753         Add dummy functions for parsing Attachments and Chapters.
3754
3755 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3756
3757         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3758         (gst_udpsrc_create), (gst_udpsrc_set_property),
3759         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3760         * gst/udp/gstudpsrc.h:
3761         Add property to control automatic join/leave of multicast groups.
3762         Add G_LIKELY.
3763         Remove setting caps on buffers explicitly, basesrc does that for us now.
3764         Improve debug info.
3765         Convert some non-fatal error into warnings.
3766         Use g_ntohs for better portability.
3767         Leave multicast groups when stopping.
3768         When using external sockets, use getsockname() on them to fill up the
3769         addr structure before calling methods that use the structure.
3770         Should all fix #536903.
3771         API: GstUDPSrc::auto-multicast property
3772
3773 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3774
3775         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3776         Use g_ntohl for better portability.
3777
3778 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3779
3780         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3781         (gst_multiudpsink_remove):
3782         Fix a typo and do some small cleanups.
3783
3784 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3785
3786         Patch by: Olivier Crete <tester at tester dot ca>
3787
3788         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3789         Make the delivery-method mandatory on the caps and only accept inline
3790         for now.
3791         Reverse strcmp checks for delivery-method.
3792
3793         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3794         Make delivery method optional when parsing caps and note this in the
3795         caps.
3796         Reverse strcmp checks for delivery-method.
3797
3798         * gst/rtp/gstrtpvorbispay.c:
3799         Update a comment to note that the delivery-method is optional, 
3800         Fixes #537675.
3801
3802 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3803
3804         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3805         Set udpsrc for receiving data from multicast groups to PAUSED instead of
3806         leaving them in READY. Fixes #537832.
3807
3808 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3809
3810         * gst/avi/gstavimux.c:
3811           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3812           for a random constant in tagmuxing code.
3813
3814 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3815
3816         * gst/debug/gsttaginject.c:
3817         * gst/debug/gsttaginject.h:
3818           Now actually adding the new element.
3819
3820 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3821
3822         * docs/plugins/Makefile.am:
3823         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3824         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3825         * docs/plugins/gst-plugins-good-plugins.args:
3826         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3827         * docs/plugins/gst-plugins-good-plugins.interfaces:
3828         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3829         * docs/plugins/inspect/plugin-aasink.xml:
3830         * docs/plugins/inspect/plugin-alaw.xml:
3831         * docs/plugins/inspect/plugin-alpha.xml:
3832         * docs/plugins/inspect/plugin-alphacolor.xml:
3833         * docs/plugins/inspect/plugin-annodex.xml:
3834         * docs/plugins/inspect/plugin-apetag.xml:
3835         * docs/plugins/inspect/plugin-audiofx.xml:
3836         * docs/plugins/inspect/plugin-auparse.xml:
3837         * docs/plugins/inspect/plugin-autodetect.xml:
3838         * docs/plugins/inspect/plugin-avi.xml:
3839         * docs/plugins/inspect/plugin-cacasink.xml:
3840         * docs/plugins/inspect/plugin-cairo.xml:
3841         * docs/plugins/inspect/plugin-cdio.xml:
3842         * docs/plugins/inspect/plugin-cutter.xml:
3843         * docs/plugins/inspect/plugin-debug.xml:
3844         * docs/plugins/inspect/plugin-dv.xml:
3845         * docs/plugins/inspect/plugin-efence.xml:
3846         * docs/plugins/inspect/plugin-effectv.xml:
3847         * docs/plugins/inspect/plugin-equalizer.xml:
3848         * docs/plugins/inspect/plugin-esdsink.xml:
3849         * docs/plugins/inspect/plugin-flac.xml:
3850         * docs/plugins/inspect/plugin-flxdec.xml:
3851         * docs/plugins/inspect/plugin-gamma.xml:
3852         * docs/plugins/inspect/plugin-gconfelements.xml:
3853         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3854         * docs/plugins/inspect/plugin-goom.xml:
3855         * docs/plugins/inspect/plugin-goom2k1.xml:
3856         * docs/plugins/inspect/plugin-halelements.xml:
3857         * docs/plugins/inspect/plugin-icydemux.xml:
3858         * docs/plugins/inspect/plugin-id3demux.xml:
3859         * docs/plugins/inspect/plugin-jpeg.xml:
3860         * docs/plugins/inspect/plugin-level.xml:
3861         * docs/plugins/inspect/plugin-matroska.xml:
3862         * docs/plugins/inspect/plugin-monoscope.xml:
3863         * docs/plugins/inspect/plugin-mulaw.xml:
3864         * docs/plugins/inspect/plugin-multifile.xml:
3865         * docs/plugins/inspect/plugin-multipart.xml:
3866         * docs/plugins/inspect/plugin-navigationtest.xml:
3867         * docs/plugins/inspect/plugin-ossaudio.xml:
3868         * docs/plugins/inspect/plugin-png.xml:
3869         * docs/plugins/inspect/plugin-quicktime.xml:
3870         * docs/plugins/inspect/plugin-rtp.xml:
3871         * docs/plugins/inspect/plugin-rtsp.xml:
3872         * docs/plugins/inspect/plugin-smpte.xml:
3873         * docs/plugins/inspect/plugin-soup.xml:
3874         * docs/plugins/inspect/plugin-spectrum.xml:
3875         * docs/plugins/inspect/plugin-speex.xml:
3876         * docs/plugins/inspect/plugin-taglib.xml:
3877         * docs/plugins/inspect/plugin-udp.xml:
3878         * docs/plugins/inspect/plugin-video4linux2.xml:
3879         * docs/plugins/inspect/plugin-videobalance.xml:
3880         * docs/plugins/inspect/plugin-videobox.xml:
3881         * docs/plugins/inspect/plugin-videocrop.xml:
3882         * docs/plugins/inspect/plugin-videoflip.xml:
3883         * docs/plugins/inspect/plugin-videomixer.xml:
3884         * docs/plugins/inspect/plugin-wavenc.xml:
3885         * docs/plugins/inspect/plugin-wavpack.xml:
3886         * docs/plugins/inspect/plugin-wavparse.xml:
3887         * docs/plugins/inspect/plugin-ximagesrc.xml:
3888         * gst/debug/Makefile.am:
3889         * gst/debug/breakmydata.c:
3890         * gst/debug/efence.c:
3891         * gst/debug/gstdebug.c:
3892         * gst/debug/gstnavseek.c:
3893         * gst/debug/gstpushfilesrc.c:
3894         * gst/debug/gstpushfilesrc.h:
3895         * gst/debug/negotiation.c:
3896         * gst/debug/progressreport.c:
3897         * gst/debug/progressreport.h:
3898         * gst/debug/rndbuffersize.c:
3899         * gst/debug/testplugin.c:
3900           Remove dummy plugin_init. Remove some undefined entries from doc-
3901           section file. Add taginject element and rebuild docs for it.
3902
3903 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3904
3905         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
3906         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
3907         Update the counter for the number of streams when pads are added or
3908         removed. This will make sure that a seek table is generated for
3909         files with just one audio stream.
3910
3911 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3912
3913         * gst/matroska/matroska-demux.c:
3914         (gst_matroska_demux_parse_metadata_id_simple_tag):
3915         * gst/matroska/matroska-ids.h:
3916         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
3917         Add some more tags, improve debugging a bit and make sure that
3918         GValue transformation has succeeded before using the result
3919         as a tag.
3920
3921 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3922
3923         Patch by: Olivier Crete <tester at tester dot ca>
3924
3925         * gst/rtp/gstrtptheorapay.c:
3926         The Theora RTP payloader only supports the "inline" delievery method
3927         so let's declare this on the caps of the static pad template.
3928         Fixes bug #537675.
3929
3930 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3931
3932         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3933         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
3934         Remove bogus check.
3935
3936 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3937
3938         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3939         (gst_videomixer_blend_buffers):
3940         Use stream_time to synchronize the object properties.
3941         Use running_time of the master pad to timestamp outgoing buffers.
3942         Fix the initial segment event to extend an unknown amount of time.
3943         Fixes #537361.
3944
3945 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3946
3947         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
3948         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
3949         (gst_avi_demux_calculate_durations_from_index),
3950         (gst_avi_demux_stream_header_push),
3951         (gst_avi_demux_stream_header_pull):
3952         Try to ignore unparsable/unknown streams and give a warning instead of
3953         erroring out. Fixes #537377.
3954
3955 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3956
3957         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
3958         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
3959
3960         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
3961         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
3962         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
3963         (gst_matroska_demux_read_track_encodings),
3964         (gst_matroska_demux_add_stream),
3965         (gst_matroska_demux_handle_src_query),
3966         (gst_matroska_demux_init_stream),
3967         (gst_matroska_demux_parse_index_cuetrack),
3968         (gst_matroska_demux_parse_index_pointentry),
3969         (gst_matroska_demux_parse_info),
3970         (gst_matroska_demux_parse_metadata_id_simple_tag),
3971         (gst_matroska_demux_parse_metadata),
3972         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
3973         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3974         (gst_matroska_demux_parse_cluster),
3975         (gst_matroska_demux_parse_contents_seekentry),
3976         (gst_matroska_demux_loop_stream_parse_id),
3977         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
3978         (gst_matroska_demux_audio_caps),
3979         (gst_matroska_demux_subtitle_caps):
3980         * gst/matroska/matroska-demux.h:
3981         * gst/matroska/matroska-ids.c:
3982         (gst_matroska_track_init_subtitle_context):
3983         * gst/matroska/matroska-ids.h:
3984         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
3985         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
3986         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
3987         (gst_matroska_mux_video_pad_setcaps),
3988         (gst_matroska_mux_audio_pad_setcaps),
3989         (gst_matroska_mux_subtitle_pad_setcaps),
3990         (gst_matroska_mux_request_new_pad),
3991         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
3992         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
3993         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
3994         (gst_matroska_mux_set_property):
3995         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
3996         elements, do some checks for valid values in the demuxer, handle
3997         tracktimecodescale in the demuxer, set correct default values for all
3998         settings in the demuxer, review and add all missing matroska
3999         IDs and some more raw YUV formats, and some trivial cleanup.
4000
4001 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4002
4003         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
4004         (gst_pulsemixer_class_init):
4005         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4006         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
4007         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4008         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
4009         (gst_pulsesrc_prepare):
4010         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
4011         gst_element_class_set_details_simple() and fix coding style a bit
4012         more.
4013
4014 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4015
4016         * docs/plugins/Makefile.am:
4017         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4018         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4019         * docs/plugins/gst-plugins-good-plugins.args:
4020         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4021         * docs/plugins/gst-plugins-good-plugins.interfaces:
4022         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4023         * docs/plugins/inspect/plugin-aasink.xml:
4024         * docs/plugins/inspect/plugin-alaw.xml:
4025         * docs/plugins/inspect/plugin-alpha.xml:
4026         * docs/plugins/inspect/plugin-alphacolor.xml:
4027         * docs/plugins/inspect/plugin-annodex.xml:
4028         * docs/plugins/inspect/plugin-apetag.xml:
4029         * docs/plugins/inspect/plugin-audiofx.xml:
4030         * docs/plugins/inspect/plugin-auparse.xml:
4031         * docs/plugins/inspect/plugin-autodetect.xml:
4032         * docs/plugins/inspect/plugin-avi.xml:
4033         * docs/plugins/inspect/plugin-cacasink.xml:
4034         * docs/plugins/inspect/plugin-cairo.xml:
4035         * docs/plugins/inspect/plugin-cdio.xml:
4036         * docs/plugins/inspect/plugin-cutter.xml:
4037         * docs/plugins/inspect/plugin-debug.xml:
4038         * docs/plugins/inspect/plugin-dv.xml:
4039         * docs/plugins/inspect/plugin-efence.xml:
4040         * docs/plugins/inspect/plugin-effectv.xml:
4041         * docs/plugins/inspect/plugin-equalizer.xml:
4042         * docs/plugins/inspect/plugin-esdsink.xml:
4043         * docs/plugins/inspect/plugin-flac.xml:
4044         * docs/plugins/inspect/plugin-flxdec.xml:
4045         * docs/plugins/inspect/plugin-gamma.xml:
4046         * docs/plugins/inspect/plugin-gconfelements.xml:
4047         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4048         * docs/plugins/inspect/plugin-goom.xml:
4049         * docs/plugins/inspect/plugin-goom2k1.xml:
4050         * docs/plugins/inspect/plugin-halelements.xml:
4051         * docs/plugins/inspect/plugin-icydemux.xml:
4052         * docs/plugins/inspect/plugin-id3demux.xml:
4053         * docs/plugins/inspect/plugin-jpeg.xml:
4054         * docs/plugins/inspect/plugin-level.xml:
4055         * docs/plugins/inspect/plugin-matroska.xml:
4056         * docs/plugins/inspect/plugin-monoscope.xml:
4057         * docs/plugins/inspect/plugin-mulaw.xml:
4058         * docs/plugins/inspect/plugin-multifile.xml:
4059         * docs/plugins/inspect/plugin-multipart.xml:
4060         * docs/plugins/inspect/plugin-navigationtest.xml:
4061         * docs/plugins/inspect/plugin-ossaudio.xml:
4062         * docs/plugins/inspect/plugin-png.xml:
4063         * docs/plugins/inspect/plugin-pulseaudio.xml:
4064         * docs/plugins/inspect/plugin-quicktime.xml:
4065         * docs/plugins/inspect/plugin-rtp.xml:
4066         * docs/plugins/inspect/plugin-rtsp.xml:
4067         * docs/plugins/inspect/plugin-smpte.xml:
4068         * docs/plugins/inspect/plugin-soup.xml:
4069         * docs/plugins/inspect/plugin-spectrum.xml:
4070         * docs/plugins/inspect/plugin-speex.xml:
4071         * docs/plugins/inspect/plugin-taglib.xml:
4072         * docs/plugins/inspect/plugin-udp.xml:
4073         * docs/plugins/inspect/plugin-video4linux2.xml:
4074         * docs/plugins/inspect/plugin-videobalance.xml:
4075         * docs/plugins/inspect/plugin-videobox.xml:
4076         * docs/plugins/inspect/plugin-videocrop.xml:
4077         * docs/plugins/inspect/plugin-videoflip.xml:
4078         * docs/plugins/inspect/plugin-videomixer.xml:
4079         * docs/plugins/inspect/plugin-wavenc.xml:
4080         * docs/plugins/inspect/plugin-wavpack.xml:
4081         * docs/plugins/inspect/plugin-wavparse.xml:
4082         * docs/plugins/inspect/plugin-ximagesrc.xml:
4083         * ext/pulse/plugin.c:
4084         * ext/pulse/pulsemixer.c:
4085         * ext/pulse/pulsesink.c:
4086         * ext/pulse/pulsesrc.c:
4087         Add documentation to the pulseaudio plugin and run make update
4088         in docs/plugins.
4089
4090 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4091
4092         Patch by: Brian Cameron <brian.cameron at sun dot com>
4093
4094         * sys/sunaudio/gstsunaudiomixerctrl.c:
4095         (gst_sunaudiomixer_ctrl_get_volume),
4096         (gst_sunaudiomixer_ctrl_set_volume):
4097         Improvements for the SunAudio mixer by handling mute as no gain
4098         for tracks that have a gain property but no mute property.
4099         Fixes bug #536067.
4100
4101 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4102
4103         * configure.ac:
4104         * ext/pulse/Makefile.am:
4105         * ext/pulse/plugin.c: (plugin_init):
4106         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4107         (gst_pulsemixer_implements_interface_init),
4108         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4109         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4110         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4111         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4112         * ext/pulse/pulsemixer.h:
4113         * ext/pulse/pulsemixerctrl.c:
4114         (gst_pulsemixer_ctrl_context_state_cb),
4115         (gst_pulsemixer_ctrl_sink_info_cb),
4116         (gst_pulsemixer_ctrl_source_info_cb),
4117         (gst_pulsemixer_ctrl_subscribe_cb),
4118         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4119         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4120         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4121         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4122         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4123         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4124         * ext/pulse/pulsemixerctrl.h:
4125         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4126         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4127         * ext/pulse/pulsemixertrack.h:
4128         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4129         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4130         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4131         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4132         (gst_pulseprobe_new), (gst_pulseprobe_free),
4133         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4134         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4135         (gst_pulseprobe_set_server):
4136         * ext/pulse/pulseprobe.h:
4137         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4138         (gst_pulsesink_class_init), (gst_pulsesink_init),
4139         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4140         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4141         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4142         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4143         (gst_pulsesink_stream_request_cb),
4144         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4145         (gst_pulsesink_close), (gst_pulsesink_prepare),
4146         (gst_pulsesink_unprepare), (gst_pulsesink_write),
4147         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4148         (gst_pulsesink_reset), (gst_pulsesink_change_title),
4149         (gst_pulsesink_event), (gst_pulsesink_get_type):
4150         * ext/pulse/pulsesink.h:
4151         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4152         (gst_pulsesrc_implements_interface_init),
4153         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4154         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4155         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4156         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4157         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4158         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4159         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4160         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4161         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4162         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4163         (gst_pulsesrc_get_type):
4164         * ext/pulse/pulsesrc.h:
4165         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4166         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4167         * ext/pulse/pulseutil.h:
4168         Add pulseaudio GStreamer element from gst-pulse. Development will
4169         continue here instead of pulseaudio SVN. Fixes bug #400679.
4170         Only changes over gst-pulse SVN are added copyright to the top of
4171         files and coding style changes.
4172
4173 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
4174
4175         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
4176
4177         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4178           (gst_cdio_add_cdtext_album_tags):
4179         * ext/cdio/gstcdio.h:
4180         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4181           Also extract album title and album genre from CD-TEXT if
4182           available (#537021).
4183
4184 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4185
4186         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4187
4188         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4189         Improve negotiation a bit more by picking the smallest possible
4190         resolution that is larger than the resolution specified in the
4191         first caps entry of the peer caps. Fixes bug #536994.
4192
4193 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4194
4195         Patch by: Bastien Nocera <hadess at hadess dot net>
4196
4197         * sys/v4l2/gstv4l2vidorient.c:
4198         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4199         Fix compilation with newer GIT kernels that deprecated
4200         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4201
4202 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4203
4204         * configure.ac:
4205         * ext/cdio/gstcdio.c:
4206         * ext/cdio/gstcdio.h:
4207         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4208           Require libcdio >= 0.76.
4209
4210 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
4211
4212         * gst/avi/gstavidemux.c:
4213         Catch UNEXPECTED when downstream has reached end of
4214         segment in reverse mode.
4215
4216 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4217
4218         * gst/avi/gstavidemux.c:
4219         Fix typo in comment
4220
4221 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4222
4223         * gst/avi/gstavidemux.c:
4224         Because we don't know the frame order we need to push till
4225         the next keyframe
4226
4227 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4228
4229         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4230
4231         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4232         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4233         Provide a custom negotiation function to make sure to pick the highest
4234         possible framerate and resolution. Fixes bug #536646.
4235
4236 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4237
4238         * gst/avi/gstavidemux.c:
4239         Set EOS when going out of the segment in reverse playback
4240
4241 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4242
4243         * ext/taglib/Makefile.am::
4244           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4245           taglib headers (with gcc 4.3.1).
4246
4247 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
4248
4249         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4250         Use the new gst_rtsp_connection_get_ip() to access the IP address
4251         of a GstRTSPConnection since it is a private member.
4252
4253 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4254
4255         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4256         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4257           Use new utility functions in libgsttag to process coverart (#512333).
4258
4259 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4260
4261         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4262         We actually support left/side, right/side and mid/side files. The
4263         conversion to normal, interleaved stereo is done by libflac.
4264
4265 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4266
4267         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4268         (gst_ebml_write_set_cache):
4269         Unref the write cache in finalize if it was set and add add "FIXME"
4270         to a comment that needs it.
4271
4272 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4273
4274         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4275
4276         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4277         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4278         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4279         (gst_avi_demux_process_next_entry):
4280         * gst/avi/gstavidemux.h:
4281         Implement reverse playback. Fixes #535300.
4282         Small cleanups.
4283
4284 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
4285
4286         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4287         (gst_videomixer_query_latency):
4288         When using gst_element_iterate_pads() one has to unref every pad
4289         after usage.
4290
4291 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
4292
4293         Patch by: Bastien Nocera <hadess at hadess dot net>
4294         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4295         (qtdemux_parse_udta):
4296         * gst/qtdemux/qtdemux_fourcc.h:
4297         Improve meta-data handling, add 'comment', 'description' and
4298         'copyright' tag handling.
4299         Fixes #535935
4300
4301 2008-05-31  Julien Moutte  <julien@fluendo.com>
4302
4303         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4304         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4305         (gst_qtdemux_seek_to_previous_keyframe),
4306         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4307         we don't clip the segment's stop using the main segment duration as
4308         that could crop quite some video frames. Make reverse playback support
4309         more robust and support edit lists. Support seeking to the last frame,
4310         and fix reverse looping playback. Add some debugging.
4311         * win32/common/config.h: Updated.
4312
4313 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
4314
4315         * gst/equalizer/gstiirequalizer.c:
4316         (gst_iir_equalizer_transform_ip):
4317         Don't clip float/double samples, correctly unset passthrough mode
4318         and use better rounding for integer samples.
4319
4320 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
4321
4322         * gst/equalizer/gstiirequalizer.c:
4323         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4324         (setup_filter), (set_passthrough), (update_coefficients),
4325         (gst_iir_equalizer_compute_frequencies),
4326         (gst_iir_equalizer_transform_ip):
4327         * gst/equalizer/gstiirequalizer.h:
4328         Update the filter coefficients only when needed in the transform_ip
4329         function and correctly set the element into passthrough mode if the
4330         gain of all bands is 0.
4331
4332 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4333
4334         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4335
4336         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4337         (gst_alpha_set_property), (gst_alpha_get_property),
4338         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4339         Try to skip pixels or areas that are too dark or too bright for us to do
4340         meaningfull color detection.
4341         Added properties to control the sensitivity to light and darkness.
4342         Added some small cleanups. Fixes #512345.
4343
4344 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
4345
4346         * docs/plugins/.cvsignore:
4347         * tests/check/elements/.cvsignore:
4348         Ignore some more generated things
4349
4350         * tests/check/Makefile.am:
4351         Ignore OSS elements in the state changes test too.
4352
4353 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4354
4355         * docs/plugins/Makefile.am:
4356         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4357         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4358         Add SMPTE effect elements to docs.
4359
4360 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4361
4362         * docs/plugins/Makefile.am:
4363         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4364         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4365         * ext/raw1394/gstdv1394src.c:
4366           Document whats first shown on the fdo plugin docs page :)
4367
4368 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4369
4370         * docs/plugins/Makefile.am:
4371         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4372         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4373         * docs/plugins/gst-plugins-good-plugins.args:
4374         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4375         * docs/plugins/inspect/plugin-audiofx.xml:
4376         * gst/audiofx/Makefile.am:
4377         * gst/audiofx/audiofx.c:
4378         * gst/audiofx/audiokaraoke.c:
4379         * gst/audiofx/audiokaraoke.h:
4380         * gst/audiofx/audiovoice.c:
4381         * gst/audiofx/audiovoice.h:
4382           Rename audiovoice to audiokaraoke and add it to the docs.
4383
4384 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4385
4386         * REQUIREMENTS:
4387         * docs/plugins/Makefile.am:
4388         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4389         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4390         * docs/plugins/gst-plugins-good-plugins.args:
4391         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4392         * docs/plugins/gst-plugins-good-plugins.interfaces:
4393         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4394         * docs/plugins/inspect/plugin-aasink.xml:
4395         * docs/plugins/inspect/plugin-alaw.xml:
4396         * docs/plugins/inspect/plugin-alpha.xml:
4397         * docs/plugins/inspect/plugin-alphacolor.xml:
4398         * docs/plugins/inspect/plugin-annodex.xml:
4399         * docs/plugins/inspect/plugin-apetag.xml:
4400         * docs/plugins/inspect/plugin-audiofx.xml:
4401         * docs/plugins/inspect/plugin-auparse.xml:
4402         * docs/plugins/inspect/plugin-autodetect.xml:
4403         * docs/plugins/inspect/plugin-avi.xml:
4404         * docs/plugins/inspect/plugin-cacasink.xml:
4405         * docs/plugins/inspect/plugin-cairo.xml:
4406         * docs/plugins/inspect/plugin-cdio.xml:
4407         * docs/plugins/inspect/plugin-cutter.xml:
4408         * docs/plugins/inspect/plugin-debug.xml:
4409         * docs/plugins/inspect/plugin-dv.xml:
4410         * docs/plugins/inspect/plugin-efence.xml:
4411         * docs/plugins/inspect/plugin-effectv.xml:
4412         * docs/plugins/inspect/plugin-equalizer.xml:
4413         * docs/plugins/inspect/plugin-esdsink.xml:
4414         * docs/plugins/inspect/plugin-flac.xml:
4415         * docs/plugins/inspect/plugin-flxdec.xml:
4416         * docs/plugins/inspect/plugin-gamma.xml:
4417         * docs/plugins/inspect/plugin-gconfelements.xml:
4418         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4419         * docs/plugins/inspect/plugin-goom.xml:
4420         * docs/plugins/inspect/plugin-goom2k1.xml:
4421         * docs/plugins/inspect/plugin-halelements.xml:
4422         * docs/plugins/inspect/plugin-icydemux.xml:
4423         * docs/plugins/inspect/plugin-id3demux.xml:
4424         * docs/plugins/inspect/plugin-jpeg.xml:
4425         * docs/plugins/inspect/plugin-level.xml:
4426         * docs/plugins/inspect/plugin-matroska.xml:
4427         * docs/plugins/inspect/plugin-monoscope.xml:
4428         * docs/plugins/inspect/plugin-mulaw.xml:
4429         * docs/plugins/inspect/plugin-multifile.xml:
4430         * docs/plugins/inspect/plugin-multipart.xml:
4431         * docs/plugins/inspect/plugin-navigationtest.xml:
4432         * docs/plugins/inspect/plugin-ossaudio.xml:
4433         * docs/plugins/inspect/plugin-png.xml:
4434         * docs/plugins/inspect/plugin-quicktime.xml:
4435         * docs/plugins/inspect/plugin-rtp.xml:
4436         * docs/plugins/inspect/plugin-rtsp.xml:
4437         * docs/plugins/inspect/plugin-smpte.xml:
4438         * docs/plugins/inspect/plugin-soup.xml:
4439         * docs/plugins/inspect/plugin-spectrum.xml:
4440         * docs/plugins/inspect/plugin-speex.xml:
4441         * docs/plugins/inspect/plugin-taglib.xml:
4442         * docs/plugins/inspect/plugin-udp.xml:
4443         * docs/plugins/inspect/plugin-video4linux2.xml:
4444         * docs/plugins/inspect/plugin-videobalance.xml:
4445         * docs/plugins/inspect/plugin-videobox.xml:
4446         * docs/plugins/inspect/plugin-videocrop.xml:
4447         * docs/plugins/inspect/plugin-videoflip.xml:
4448         * docs/plugins/inspect/plugin-videomixer.xml:
4449         * docs/plugins/inspect/plugin-wavenc.xml:
4450         * docs/plugins/inspect/plugin-wavpack.xml:
4451         * docs/plugins/inspect/plugin-wavparse.xml:
4452         * docs/plugins/inspect/plugin-ximagesrc.xml:
4453         * ext/aalib/gstaasink.c:
4454         * ext/libcaca/gstcacasink.c:
4455           Document aasink and cacasink.
4456
4457 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
4458
4459         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4460         (gst_videomixer_init), (gst_videomixer_query_duration),
4461         (gst_videomixer_query_latency), (gst_videomixer_query),
4462         (gst_videomixer_blend_buffers):
4463         * gst/videomixer/videomixer.h:
4464         Implement position (in time), duration and latency queries.
4465
4466 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
4467
4468         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4469         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4470         (gst_videomixer_fill_queues), (forward_event_func),
4471         (forward_event), (gst_videomixer_src_event),
4472         (gst_videomixer_sink_event):
4473         * gst/videomixer/videomixer.h:
4474         Implement proper seek/newsegment handling.
4475         Based on adder's implementation.
4476         Fixes #535121
4477
4478 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4479
4480         Patch by: Jan Gerber <j at oil21 dot org>
4481
4482         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4483         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4484
4485 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4486
4487         * gst/audiofx/Makefile.am:
4488         * gst/audiofx/audiofx.c: (plugin_init):
4489         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4490         (gst_audio_voice_class_init), (gst_audio_voice_init),
4491         (update_filter), (gst_audio_voice_set_property),
4492         (gst_audio_voice_get_property), (gst_audio_voice_setup),
4493         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4494         (gst_audio_voice_transform_ip):
4495         * gst/audiofx/audiovoice.h:
4496         Add simple voice removal element. Yay karaoke.
4497
4498 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4499
4500         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4501
4502         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4503         Fix potential caps leak.
4504         If we can't get the framerate with an ioctl, try to get it with the
4505         current norm. Fixes #520092.
4506
4507 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4508
4509         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4510
4511         * sys/v4l2/v4l2src_calls.c:
4512         (gst_v4l2src_probe_caps_for_format_and_size):
4513         If we fail to get the frame intervals, simply don't touch the framerates
4514         on the template caps instead of discarding the format. See #520092.
4515
4516 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4517
4518         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4519
4520         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4521         (gst_v4l2_get_caps_info):
4522         Add NV12, NV21 and bayer support. See #520092.
4523
4524 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4525
4526         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4527         (gst_qtdemux_activate_segment):
4528         Unbreak segment activation again. Fixes #531672.
4529
4530 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
4531
4532         * ext/flac/Makefile.am:
4533         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4534         Set the channel layout when decoding FLAC files with more than 2
4535         channels as defined by the FLAC spec. Fixes bug #534570.
4536
4537         Also don't try to decode left/side, right/side and mid/side files
4538         as we don't support this at all.
4539
4540 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
4541
4542         * configure.ac:
4543           We need -base CVS (rtsp).
4544
4545 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
4546
4547         * gst/udp/Makefile.am:
4548           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4549           when including netdb.h when building against glibc >= 2.8.
4550
4551 2008-05-22  Julien Moutte  <julien@fluendo.com>
4552
4553         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4554         debug statement arguments.
4555         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4556         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4557         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4558         on more platforms.
4559
4560 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4561
4562         * tests/check/elements/avimux.c: (setup_src_pad),
4563         (teardown_src_pad):
4564         * tests/check/elements/icydemux.c: (icydemux_found_pad),
4565         (GST_START_TEST):
4566         * tests/check/elements/matroskamux.c: (setup_src_pad),
4567         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4568         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4569         (GST_START_TEST):
4570         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4571         (setup_wavpackparse), (cleanup_wavpackparse):
4572         Don't use gst_element_get_pad(), it's a bad, bad method.
4573
4574 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4575
4576         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4577         (do_toggle_element):
4578         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4579         (do_toggle_element):
4580         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4581         (do_toggle_element):
4582         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4583         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4584         (do_toggle_element):
4585         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4586         (do_toggle_element):
4587         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4588         (gst_auto_audio_sink_detect):
4589         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4590         (gst_auto_video_sink_detect):
4591         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4592         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4593         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4594         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4595         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4596         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4597         * tests/icles/videocrop-test.c: (test_with_caps),
4598         (video_crop_get_test_caps):
4599         Don't use gst_element_get_pad(), it's a bad method.
4600
4601 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4602
4603         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4604         (gst_multiudpsink_add_internal):
4605         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4606         (gst_udp_join_group):
4607         * gst/udp/gstudpnetutils.h:
4608         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4609         Joining a multicast group and setting the loop/ttl properties are
4610         totally unrelated tasks are must be separated.
4611
4612 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
4613
4614         * gst/avi/gstavimux.c:
4615           Also support alaw/mulaw.
4616
4617 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4618
4619         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4620         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4621         * gst/udp/gstmultiudpsink.h:
4622         Add a fixme for the auto-multicast property.
4623         Fix some confusing debug messages.
4624         Disable setting a qos value by default.
4625
4626 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4627
4628         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4629
4630         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4631         Ignore EPERM errors from sendto. Fixes #533619.
4632
4633 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4634
4635         Patch by: Henrik Eriksson <henriken at axis dot com>
4636
4637         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4638         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4639         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4640         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4641         * gst/udp/gstmultiudpsink.h:
4642         Add qos-dscp property to manage the Quality of service. Fixes #469917.
4643
4644 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4645
4646         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4647         Improve debugging of the ident.
4648
4649 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4650
4651         Patch by: Bruno Santos <brunof at ua dot pt>
4652
4653         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4654         (gst_udp_join_group), (gst_udp_leave_group),
4655         (gst_udp_is_multicast):
4656         * gst/udp/gstudpnetutils.h:
4657         Provide a bunch of helper methods to deal with IPv4 and IPv6
4658         transparently.
4659
4660         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4661         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4662         (gst_multiudpsink_get_property), (join_multicast),
4663         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4664         (gst_multiudpsink_remove):
4665         * gst/udp/gstmultiudpsink.h:
4666         Add multicast TTL and loopback properties.
4667         Use the helper methods to implement ip4 and ip6.
4668
4669         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4670         * gst/udp/gstudpsrc.h:
4671         Use the helper methods to implement ip4 and ip6.
4672         Fixes #515962.
4673
4674 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4675
4676         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4677
4678         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4679         (gst_multipart_demux_get_gstname),
4680         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4681         * gst/multipart/multipartdemux.h:
4682         Don't blindly copy the mime-type as the caps name because they not
4683         always map directly. Instead use a hashtable with common mappings.
4684         Fixes #533287.
4685
4686 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4687
4688         * ext/esd/esdsink.c: (gst_esdsink_write):
4689         When we post an error, we must return -1 to let the parent know that we
4690         cannot write the segment else it will loop and continue to call us again
4691         forever. Patch by Michael Meeks.
4692
4693 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
4694
4695         * gst/videomixer/videomixer.c:
4696           Add missing incudes.
4697
4698 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
4699
4700         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4701         (gst_rtp_h264_pay_handle_buffer):
4702         * gst/rtp/gstrtph264pay.h:
4703         Correct a typo (sinle -> single).
4704
4705 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4706
4707         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4708         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4709         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4710         (gst_rtp_h264_depay_process):
4711         * gst/rtp/gstrtph264depay.h:
4712         Add experimental support for outputting quicktime-like AVC output in
4713         addition to the existing bytestream output.
4714
4715         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4716         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4717         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4718         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4719         (gst_rtp_h264_pay_get_property):
4720         * gst/rtp/gstrtph264pay.h:
4721         Make the parsing mode configurable, for some inputs we don't need to
4722         scan every byte for start codes.
4723         Only set the marker bit on ACCESS units.
4724
4725 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
4726
4727         * gst/equalizer/gstiirequalizer.c:
4728         Use a bigger type in integer mode for the intermediate results to
4729         prevent overflows. This fixes the crippled sound when using the
4730         equalizer in integer mode. Fixes bug #510865.
4731
4732 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
4733
4734         * gst/videomixer/videomixer.c:
4735         * gst/videomixer/videomixer.h:
4736         Instead of a random number for the request pad id's,
4737         use a counter.
4738
4739         Register the videomixerpad class from the element's class_init
4740         where it's safer, and allows the docs generator to scan it.
4741
4742 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4743
4744         * gst/smpte/Makefile.am:
4745         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4746         * gst/smpte/gstsmpte.h:
4747         * gst/smpte/gstsmptealpha.c:
4748         (gst_smpte_alpha_transition_type_get_type),
4749         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4750         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4751         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4752         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4753         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4754         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4755         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4756         * gst/smpte/gstsmptealpha.h:
4757         * gst/smpte/plugin.c: (plugin_init):
4758         Add new plugin that adds the SMPTE transition in the alpha channel of
4759         I420 and AYUV frames so that they can be blended with videomixer later
4760         on. Uses all niceties such as using base transform for efficient alloc
4761         and negotiation. It currently requires GstController to control the
4762         position in the transition effect.
4763
4764 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
4765
4766         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4767         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4768         * docs/plugins/gst-plugins-good-plugins.args:
4769         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4770         * docs/plugins/gst-plugins-good-plugins.interfaces:
4771         * docs/plugins/gst-plugins-good-plugins.types:
4772         * gst/videomixer/videomixer.c:
4773           Try using thaytans new mechanism to get extra classes into plugin
4774           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4775           missing still.
4776
4777 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
4778
4779         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4780         Set proper rate in avi stream header for PCM audio, and also do some
4781         more sanity checks on caps in this case.  Fixes #511489.
4782
4783 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4784
4785         * sys/v4l2/gstv4l2src.c:
4786         Don't include the gstv4l2xoverlay.h header as the XOverlay support
4787         isn't implemented at all yet and this requires X headers to be
4788         installed. Fixes bug #533264.
4789
4790 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4791
4792         reviewed by: <delete if not using a buddy>
4793
4794         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4795         (gst_ebml_write_set_cache):
4796         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4797         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4798         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4799         (gst_matroska_demux_read_track_encodings),
4800         (gst_matroska_demux_add_stream),
4801         (gst_matroska_demux_handle_src_query),
4802         (gst_matroska_demux_init_stream),
4803         (gst_matroska_demux_parse_index_cuetrack),
4804         (gst_matroska_demux_parse_index_pointentry),
4805         (gst_matroska_demux_parse_info),
4806         (gst_matroska_demux_parse_metadata_id_simple_tag),
4807         (gst_matroska_demux_parse_metadata),
4808         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4809         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4810         (gst_matroska_demux_parse_cluster),
4811         (gst_matroska_demux_parse_contents_seekentry),
4812         (gst_matroska_demux_loop_stream_parse_id),
4813         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4814         (gst_matroska_demux_audio_caps),
4815         (gst_matroska_demux_subtitle_caps):
4816         * gst/matroska/matroska-demux.h:
4817         * gst/matroska/matroska-ids.c:
4818         (gst_matroska_track_init_subtitle_context):
4819         * gst/matroska/matroska-ids.h:
4820         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4821         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4822         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4823         * sys/v4l2/gstv4l2src.c:
4824         * tests/check/pipelines/wavpack.c: (bus_handler):
4825         * win32/common/config.h:
4826
4827 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
4828
4829         * ext/wavpack/gstwavpackstreamreader.c:
4830         * tests/examples/spectrum/demo-audiotest.c:
4831         * tests/examples/spectrum/demo-osssrc.c:
4832         Fix some compiler warnings.
4833
4834 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4835
4836         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4837         Small comment added.
4838
4839         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4840         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4841         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4842         Debug string cleanups (remove trailing \n)
4843         Refactor and clean up the payloader a bit and make sure that we only
4844         put one NAL unit in an RTP packet even if the input buffer contains
4845         multiple NAL units.
4846         Add suport for AVC format input.
4847
4848 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
4849
4850         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4851         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4852         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4853         * gst/rtp/gstrtph264pay.h:
4854         Make it possible to specify profile-level-id and sprop-parameter-sets
4855         using properties in case they are not available in-stream.
4856
4857 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
4858
4859         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4860         * docs/plugins/gst-plugins-good-plugins.args:
4861         * docs/plugins/inspect/plugin-ladspa.xml:
4862           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4863
4864 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
4865
4866         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4867         Send an initial BYTE segment to inform downstream of later seeking,
4868         and to forego sync attempts.
4869
4870 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4871
4872         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4873         Fix wrong caps string.
4874
4875 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4876
4877         Based on patch by: Olivier Crete <tester at tester dot ca>
4878
4879         * gst/rtp/Makefile.am:
4880         * gst/rtp/gstrtp.c: (plugin_init):
4881         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4882         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4883         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4884         (gst_rtp_g729_depay_plugin_init):
4885         * gst/rtp/gstrtpg729depay.h:
4886         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4887         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4888         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4889         * gst/rtp/gstrtpg729pay.h:
4890         Added G729 pay and depayloaders. Fixes #532409.
4891
4892 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4893
4894         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4895         Fix the calculation of the duration of the concealment packets.
4896
4897 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4898
4899         Based on patch by: Olivier Crete <tester at tester dot ca>
4900
4901         * gst/rtp/Makefile.am:
4902         * gst/rtp/gstrtp.c: (plugin_init):
4903         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4904         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
4905         (parse_encode), (gst_rtp_dv_depay_setcaps),
4906         (calculate_difblock_location), (gst_rtp_dv_depay_process),
4907         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
4908         (gst_rtp_dv_depay_plugin_init):
4909         * gst/rtp/gstrtpdvdepay.h:
4910         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
4911         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
4912         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
4913         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
4914         (gst_dv_pay_negotiate), (include_dif),
4915         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
4916         * gst/rtp/gstrtpdvpay.h:
4917         Add DV pay and depayloaders. Fixes #532423.
4918
4919 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4920
4921         * gst/matroska/matroska-demux.c:
4922         (gst_matroska_demux_push_dvd_clut_change_event):
4923         Convert subtitle palette info in VobSub private data from VobSub's
4924         (buggy) RGB to YUV.
4925
4926 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4927
4928         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
4929         Do not leave fourcc stream header field empty upon reset.
4930         Fixes #519301.
4931
4932 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4933
4934         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4935         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4936         * docs/plugins/inspect/plugin-goom.xml:
4937         * docs/plugins/inspect/plugin-goom2k1.xml:
4938         * gst/goom/gstgoom.c:
4939         * gst/goom2k1/gstgoom.c:
4940         Add goom2k1 into the docs.
4941
4942 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4943
4944         Based on patch by: Wouter Cloetens  <wouter at mind be>
4945
4946         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4947         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
4948         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
4949         (gst_rtsp_decode_quoted_string),
4950         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
4951         (gst_rtspsrc_setup_auth):
4952         Support Digest authentication. Fixes #532065.
4953
4954 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
4955
4956         * gst/level/gstlevel.c:
4957           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
4958           about whats needed for liboil acceleration. Simplify docs a bit.
4959
4960 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4961
4962         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4963
4964         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
4965         Update the track duration if the old one was invalid.
4966         Fixes bug #532117.
4967
4968 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4969
4970         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
4971           Use GST_STR_NULL when trying to print sps and pps strings that could
4972           be NULL, as this might crash on some platforms.
4973
4974 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4975
4976         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4977
4978         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
4979           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
4980           set after creating the clipper.
4981
4982 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4983
4984         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4985
4986         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
4987           Added checking of surface lost case after an unsuccessful
4988           IDirectDrawSurface7_Lock() call.
4989           If surface is lost, return GST_FLOW_OK.
4990
4991 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4992
4993         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4994
4995         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
4996           WndProc, gst_directdraw_sink_window_thread):
4997           Improved Windows message loop and fixed window destruction issue.
4998           When the window which DirectDraw is rendering to is destroyed, the
4999           render/show_frame function will return GST_FLOW_ERROR.
5000           Partially fixes #520885.
5001
5002 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5003
5004         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5005
5006         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
5007           Fixed mid stream resolution change bug, the offscreen surface is now
5008           released when set_caps is called.
5009           Partially fixes #520885.
5010
5011 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5012
5013         * sys/directdraw/gstdirectdrawsink.c
5014           (gst_directdraw_sink_buffer_alloc):
5015           Make it so that gst_directdraw_sink_buffer_alloc uses the right
5016           width/height.
5017
5018           Especially when looking through the pool of buffers, make sure that
5019           the width/height of caps is used instead of the already negotiated
5020           dimensions.
5021           For example if a buffer with different caps is requested, i.e.
5022           higher resolution, the caller would get a buffer with the old
5023           dimensions and thus corrupt the heap.
5024
5025 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5026
5027         * sys/directdraw/gstdirectdrawsink.c
5028           (gst_directdraw_sink_buffer_alloc):
5029           Clear the flags on recycled buffers from buffer_alloc.
5030           Partially fixes #520885.
5031
5032 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
5033
5034         * gst/rtp/gstrtpilbcpay.c:
5035           Added missing stdlib.h include for strtol(), and made include ordering and
5036           style consistent with the corresponding depayloader.
5037
5038 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
5039
5040         * configure.ac:
5041           Error out if we don't have the required core/base versions.
5042
5043 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
5044
5045         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5046
5047         * sys/osxvideo/cocoawindow.m:
5048         Fix compiler warnings on PPC64. Fixes bug #499318.
5049
5050 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5051
5052         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5053
5054         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
5055         Don't leak file descriptors on error. Fixes #531532.
5056
5057 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
5058
5059         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
5060         (gst_gconf_audio_src_change_state):
5061         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
5062         (gst_gconf_video_sink_change_state):
5063         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
5064         (gst_gconf_video_src_change_state):
5065         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5066         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
5067         When we can't create a fakesink/fakesrc complain instead of unreffing
5068         NULL pointers and crashing later. See bug #530535.
5069
5070 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5071
5072         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5073         Add some more debug info and guard against small payloads.
5074
5075         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
5076         Set duration on outgoing buffers because we can.
5077
5078 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5079
5080         Patch by: Olivier Crete <tester at tester dot ca>
5081
5082         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
5083         (gst_speex_enc_init), (gst_speex_enc_chain):
5084         Add negotiation for the speex channels and rate. Fixes #465146.
5085
5086 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5087
5088         Patch by: Olivier Crete <tester at tester dot ca>
5089
5090         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
5091         (gst_rtp_speex_pay_getcaps):
5092         Add negotiation for the speex channels and rate. See #465146.
5093
5094 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5095
5096         Patch by: Olivier Crete <tester at tester dot ca>
5097
5098         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5099         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5100         Add negotiation for the ILBC mode. See #465146.
5101
5102 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
5103
5104         * ext/soup/gstsouphttpsrc.c:
5105           Include stdlib to fix the build. Use g_free instead of free, libsoup
5106           uses glib.
5107
5108 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5109
5110         Patch by: j^ <j@bootlab.org>
5111
5112         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5113         Add more mpeg2 variants. Fixes #530886.
5114
5115 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
5116
5117         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5118
5119         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5120           Don't error out if we get an ICMP destination-unreachable
5121           message when trying to read packets on win32 (#529454).
5122
5123 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5124
5125         * configure.ac:
5126         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5127           Use new error code for encrypted streams (which requires core CVS).
5128
5129 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5130
5131         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5132           (gst_qtdemux_audiosrc_template):
5133           Fix swapped pad template names, spotted by Thiago Sousa Santos.
5134
5135 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5136
5137         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5138         (speex_dec_chain_parse_data):
5139         Produce concealment data when time progresses in a segment update.
5140
5141 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
5142
5143         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5144         (speex_dec_chain):
5145         Try to preserve input timestamps when we can.
5146         Do beginnings of error concealment.
5147
5148 2008-04-28  Michael Smith <msmith@songbirdnest.com>
5149
5150         * gst/debug/gstnavigationtest.c:
5151           MSVC doesn't provide rint(), define an adequate replacement locally as
5152           elsewhere.
5153
5154 2008-04-28  Julien Moutte  <julien@fluendo.com>
5155
5156         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5157         format to pacify Mac OSX's gcc.
5158
5159 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5160
5161         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5162           (DEFAULT_MAX), (src_template), (sink_template),
5163           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5164           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5165           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5166           Bring rndbuffersize element into a state that doesn't require us
5167           to move it to -bad immediately. For one, fix up default min/max
5168           values so that the element actuall works using the default values.
5169           Also, don't ignore flow return values and do some kind of minimal
5170           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5171           other gratuitious clean-ups.
5172
5173 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5174
5175         * docs/plugins/Makefile.am:
5176         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5177         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5178         * docs/plugins/gst-plugins-good-plugins.args:
5179         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5180         * docs/plugins/gst-plugins-good-plugins.interfaces:
5181         * docs/plugins/gst-plugins-good-plugins.prerequisites:
5182         * docs/plugins/inspect/plugin-1394.xml:
5183         * docs/plugins/inspect/plugin-aasink.xml:
5184         * docs/plugins/inspect/plugin-alaw.xml:
5185         * docs/plugins/inspect/plugin-alpha.xml:
5186         * docs/plugins/inspect/plugin-alphacolor.xml:
5187         * docs/plugins/inspect/plugin-annodex.xml:
5188         * docs/plugins/inspect/plugin-apetag.xml:
5189         * docs/plugins/inspect/plugin-audiofx.xml:
5190         * docs/plugins/inspect/plugin-auparse.xml:
5191         * docs/plugins/inspect/plugin-autodetect.xml:
5192         * docs/plugins/inspect/plugin-avi.xml:
5193         * docs/plugins/inspect/plugin-cacasink.xml:
5194         * docs/plugins/inspect/plugin-cairo.xml:
5195         * docs/plugins/inspect/plugin-cdio.xml:
5196         * docs/plugins/inspect/plugin-cutter.xml:
5197         * docs/plugins/inspect/plugin-debug.xml:
5198         * docs/plugins/inspect/plugin-dv.xml:
5199         * docs/plugins/inspect/plugin-efence.xml:
5200         * docs/plugins/inspect/plugin-effectv.xml:
5201         * docs/plugins/inspect/plugin-equalizer.xml:
5202         * docs/plugins/inspect/plugin-esdsink.xml:
5203         * docs/plugins/inspect/plugin-flac.xml:
5204         * docs/plugins/inspect/plugin-flxdec.xml:
5205         * docs/plugins/inspect/plugin-gamma.xml:
5206         * docs/plugins/inspect/plugin-gconfelements.xml:
5207         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5208         * docs/plugins/inspect/plugin-goom.xml:
5209         * docs/plugins/inspect/plugin-halelements.xml:
5210         * docs/plugins/inspect/plugin-icydemux.xml:
5211         * docs/plugins/inspect/plugin-id3demux.xml:
5212         * docs/plugins/inspect/plugin-jpeg.xml:
5213         * docs/plugins/inspect/plugin-level.xml:
5214         * docs/plugins/inspect/plugin-matroska.xml:
5215         * docs/plugins/inspect/plugin-monoscope.xml:
5216         * docs/plugins/inspect/plugin-mulaw.xml:
5217         * docs/plugins/inspect/plugin-multifile.xml:
5218         * docs/plugins/inspect/plugin-multipart.xml:
5219         * docs/plugins/inspect/plugin-navigationtest.xml:
5220         * docs/plugins/inspect/plugin-ossaudio.xml:
5221         * docs/plugins/inspect/plugin-png.xml:
5222         * docs/plugins/inspect/plugin-quicktime.xml:
5223         * docs/plugins/inspect/plugin-rtp.xml:
5224         * docs/plugins/inspect/plugin-rtsp.xml:
5225         * docs/plugins/inspect/plugin-shout2send.xml:
5226         * docs/plugins/inspect/plugin-smpte.xml:
5227         * docs/plugins/inspect/plugin-spectrum.xml:
5228         * docs/plugins/inspect/plugin-speex.xml:
5229         * docs/plugins/inspect/plugin-taglib.xml:
5230         * docs/plugins/inspect/plugin-udp.xml:
5231         * docs/plugins/inspect/plugin-video4linux2.xml:
5232         * docs/plugins/inspect/plugin-videobalance.xml:
5233         * docs/plugins/inspect/plugin-videobox.xml:
5234         * docs/plugins/inspect/plugin-videocrop.xml:
5235         * docs/plugins/inspect/plugin-videoflip.xml:
5236         * docs/plugins/inspect/plugin-videomixer.xml:
5237         * docs/plugins/inspect/plugin-wavenc.xml:
5238         * docs/plugins/inspect/plugin-wavpack.xml:
5239         * docs/plugins/inspect/plugin-wavparse.xml:
5240         * docs/plugins/inspect/plugin-ximagesrc.xml:
5241           Add docs for gdkpixbufsink; update docs to CVS version.
5242
5243 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5244
5245         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5246         Remove test sync-offset by default.
5247
5248 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5249
5250         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5251         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5252         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5253           Use GLib versions of htonl, htons, ntohl and ntohs in order
5254           to avoid problems on win32 (#529707).
5255
5256 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5257
5258         Patch by: Jesús Corrius <jesus at softcatala org>
5259
5260         * gst/goom/filters.c: (zoomVector):
5261         * gst/goom/goom_core.c: (init_buffers):
5262           Fix build with mingw32: use rand() instead of random() and
5263           replace bzero() with memset(). Fixes #529692.
5264
5265 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5266
5267         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5268         Fix typo in comments.
5269
5270         * tests/examples/rtp/client-H263p-PCMA.sdp:
5271         * tests/examples/rtp/client-H263p-PCMA.sh:
5272         * tests/examples/rtp/client-H264-PCMA.sdp:
5273         * tests/examples/rtp/client-H264-PCMA.sh:
5274         * tests/examples/rtp/client-H264.sdp:
5275         * tests/examples/rtp/client-H264.sh:
5276         * tests/examples/rtp/client-PCMA.sdp:
5277         * tests/examples/rtp/client-PCMA.sh:
5278         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5279         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5280         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5281         Add some more docs and fix examples.
5282
5283 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
5284
5285         * tests/check/elements/multifile.c:
5286         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5287         declared in the former, some have it declared in the latter.
5288
5289 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
5290
5291         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5292         * gst/debug/tests.c: (md5_get_value):
5293         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5294         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5295         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5296         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5297         Stop using deprecated GLib functions.
5298
5299 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
5300
5301         * configure.ac:
5302         Back to development -> 0.10.8.1
5303
5304 === release 0.10.8 ===
5305
5306 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
5307
5308         * configure.ac:
5309           releasing 0.10.8, "One For The Money"
5310
5311 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5312
5313         * configure.ac:
5314         0.10.7.4 pre-release
5315
5316 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5317
5318         * gst/goom/config_param.c: (goom_plugin_parameters_free):
5319         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5320         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5321         * gst/goom/flying_stars_fx.c: (fs_free):
5322         * gst/goom/goom_config_param.h:
5323         * gst/goom/goom_core.c: (goom_init), (goom_close):
5324         * gst/goom/goom_plugin_info.h:
5325         * gst/goom/gstgoom.c: (gst_goom_finalize):
5326         * gst/goom/lines.c: (goom_lines_free):
5327         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5328         * gst/goom/surf3d.c: (grid3d_free):
5329         * gst/goom/surf3d.h:
5330         * gst/goom/tentacle3d.c: (tentacle_free):
5331         Free a bunch of stuff, and initialise things to fix leaks
5332         and valgrind warnings in the testsuite.
5333
5334         Fixes: #529268
5335
5336 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
5337
5338         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5339         (gst_rtspsrc_configure_caps):
5340         Ref caps as the return value for the request_pt_map signal.
5341         Remove some caps weirdness when configuring a stream. See #528245.
5342
5343 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
5344
5345         * tests/icles/gdkpixbufsink-test.c:
5346           Add cast to placate gcc 4.1.2.
5347
5348 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5349
5350         * configure.ac:
5351         0.10.7.3 pre-release
5352
5353 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5354
5355         * tests/check/Makefile.am:
5356         Disable some more elements in the state test.
5357         Add a define so the soup test can find the test files
5358         it needs at runtime.
5359
5360         * tests/check/elements/souphttpsrc.c: (run_server):
5361
5362         Add a define so the soup test can find the test files
5363         it needs at runtime.
5364
5365 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5366
5367         * gst/goom/convolve_fx.c: (convolve_apply):
5368         Don't ever draw the GOOM logo.
5369         Fixes: #528615
5370
5371 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5372
5373         * ext/cdio/gstcdiocddasrc.c:
5374         * ext/dv/gstdvdemux.c: 
5375         gst_atomic_int_set ==> g_atomic_int_set
5376
5377 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
5378
5379         * configure.ac:
5380         * gst/goom/Makefile.am:
5381         * gst/goom/convolve_fx.c:
5382         * gst/goom/default_scripts.h:
5383         * gst/goom/goom.h:
5384         * gst/goom/goom_core.c: (choose_a_goom_line):
5385         * gst/goom/goom_plugin_info.h:
5386         * gst/goom/goomsl.c:
5387         * gst/goom/goomsl.h:
5388         * gst/goom/goomsl_hash.c:
5389         * gst/goom/goomsl_hash.h:
5390         * gst/goom/goomsl_heap.c:
5391         * gst/goom/goomsl_heap.h:
5392         * gst/goom/goomsl_private.h:
5393         * gst/goom/plugin_info.c:
5394           Strip out the config/script parsing stuff, we don't need it.
5395           Fixes #527999.
5396
5397 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
5398
5399         * gst/goom/plugin_info.c: (setOptimizedMethods):
5400           Disable altivec optimisations for 32-bit PPC as well to make
5401           things build properly on all PPC systems. Fixes #528143
5402
5403 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
5404
5405         * gst-plugins-good.spec.in:
5406           Update for souphttpsrc plugin which has moved to -good.
5407
5408 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
5409
5410         * gst/matroska/matroska-demux.c:
5411         (gst_matroska_demux_handle_seek_event):
5412         Fix open-ended seeks in matroskademux
5413         Patch by: Mark Nauwelaerts <manauw skynet be>
5414         Fixes: #526557
5415
5416 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
5417
5418         * tests/check/Makefile.am:
5419         Add soup test certificates to the dist.
5420
5421 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5422
5423         * ext/Makefile.am:
5424         Remove LADSPA reference I missed.
5425
5426 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
5427
5428         * ext/soup/gstsouphttpsrc.c: (plugin_init):
5429         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5430         over gnome-vfs and everything else. Fixes bug #527848.
5431
5432 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5433
5434         * configure.ac:
5435         * ext/Makefile.am:
5436         Remove LADSPA plugin. Fixes: #515978
5437
5438 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5439
5440         * configure.ac:
5441         * docs/plugins/Makefile.am:
5442         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5443         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5444         * docs/plugins/gst-plugins-good-plugins.args:
5445         * docs/plugins/inspect/plugin-soup.xml:
5446         * ext/Makefile.am:
5447         * tests/check/Makefile.am:
5448         Move soup plugin from -bad (Fixes: #523124)
5449
5450 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
5451
5452         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5453         Fix bounds checking of mode in Speex header, which may
5454         produce negative numbers in speex <= 1.1.12
5455
5456 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5457
5458         * gst/goom/Makefile.am:
5459         * gst/goom/gfontlib.c:
5460         * gst/goom/gfontlib.h:
5461         * gst/goom/gfontrle.c:
5462         * gst/goom/gfontrle.h:
5463         * gst/goom/goom.h:
5464         * gst/goom/goom_core.c: (goom_update):
5465         * gst/goom/goom_plugin_info.h:
5466         * gst/goom/gstgoom.c: (gst_goom_chain):
5467         * gst/goom/plugin_info.c:
5468           Remove a bunch of font/text related code that we don't need.
5469
5470 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5471
5472         * gst/goom/ppc_drawings.s:
5473         * gst/goom/ppc_zoom_ultimate.s:
5474           Change license of these files to LGPL, as permitted by the
5475           author, Guillaume Borios. See #515073.
5476
5477 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
5478
5479         * gst/goom/convolve_fx.c:
5480         * gst/goom/motif_goom1.h:
5481         * gst/goom/motif_goom2.h:
5482           As hinted in Bug #518213, revert one change and fix warnings properly.
5483           This fixes both #518213 and #520073 for me.     
5484
5485 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
5486
5487         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5488         * gst/matroska/matroska-demux.c:
5489         (gst_matroska_demux_handle_seek_event),
5490         (gst_matroska_demux_parse_contents_seekentry),
5491         (gst_matroska_demux_loop):
5492         Fix the Forte build by making function declaration signatures
5493         match the implementations.
5494
5495 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
5496
5497         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5498         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5499         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5500           More logging when probing (see #518474), some comments in _reset().
5501
5502 2008-04-07  Julien Moutte  <julien@fluendo.com>
5503
5504         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5505         because of a bad argument number.
5506
5507 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
5508
5509         * tests/icles/.cvsignore:
5510         * tests/icles/Makefile.am:
5511         * tests/icles/gdkpixbufsink-test.c:
5512           Interactive test app for gdkpixbufsink.
5513
5514 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
5515
5516         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5517
5518         * configure.ac:
5519         Actually build dlls when cross-compiling with mingw32.
5520         Fixes bug #526247.
5521
5522 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
5523
5524         * ext/hal/hal.c: (gst_hal_get_alsa_element):
5525           Don't munge device string to 'default:x' for capture devices.
5526           Fixes #525833.
5527
5528 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
5529
5530         * ext/wavpack/gstwavpackparse.c:
5531         (gst_wavpack_parse_index_entry_free):
5532         Always use GSlice as we actually depend on GLib 2.12 already.
5533
5534 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5535
5536         * configure.ac:
5537           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5538           Also bump the GLib requirement to the current de-facto requirement
5539           (ie. 2.12).
5540
5541 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5542
5543         * gst/rtp/gstrtph264pay.c: (encode_base64),
5544         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5545         * gst/rtp/gstrtph264pay.h:
5546         Parse codec_data for future AVC compatibility.
5547         Fail when we encounter AVC data for now.
5548
5549 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5550
5551         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5552           (gst_spectrum_init), (gst_spectrum_set_property),
5553           (gst_spectrum_get_property), (gst_spectrum_message_new):
5554           Rename property enums and default defines for the properties to match
5555           the property names and rephrase property descriptions to make them a
5556           bit clearer (hopefully). See #518188.
5557
5558 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5559
5560         * tests/check/Makefile.am:
5561         * tests/check/elements/.cvsignore:
5562         * tests/check/elements/gdkpixbufsink.c:
5563           Add unit test for gdkpixbufsink element.
5564
5565 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5566
5567         * ext/gdk_pixbuf/Makefile.am:
5568         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5569         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5570           (gst_gdk_pixbuf_sink_base_init),
5571           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5572           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5573           (gst_gdk_pixbuf_sink_set_caps),
5574           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5575           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5576           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5577           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5578           (gst_gdk_pixbuf_sink_get_property):
5579         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5580           Add gdkpixbufsink element for easy snapshotting (#525946).
5581
5582 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5583
5584         * tests/check/pipelines/wavpack.c: (wavpack_suite):
5585         Bump timeout from 3 to 60 seconds.
5586
5587 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5588
5589         * tests/check/pipelines/.cvignore:
5590         Remove useless file.
5591
5592         * tests/check/pipelines/.cvsignore:
5593         Add new test to .cvsignore.
5594
5595 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5596
5597         * tests/check/Makefile.am:
5598         * tests/check/pipelines/wavpack.c: (bus_handler),
5599         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5600         (wavpack_suite), (main):
5601         Add unit test that encodes and decodes some data, checks that it
5602         is still the same and that all timestamps/offsets are perfect.
5603
5604 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5605
5606         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5607         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5608         * ext/wavpack/gstwavpackparse.c:
5609         (gst_wavpack_parse_index_entry_new),
5610         (gst_wavpack_parse_index_entry_free),
5611         (gst_wavpack_parse_base_init),
5612         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5613         Use GSlice for allocating index entries and use
5614         gst_element_class_set_details_simple().
5615
5616 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5617
5618         Patch by: Brian Cameron <brian.cameron at sun dot com>
5619
5620         * sys/sunaudio/gstsunaudio.c:
5621         * sys/sunaudio/gstsunaudiomixer.c:
5622         * sys/sunaudio/gstsunaudiomixer.h:
5623         * sys/sunaudio/gstsunaudiomixerctrl.c:
5624         * sys/sunaudio/gstsunaudiomixerctrl.h:
5625         * sys/sunaudio/gstsunaudiomixertrack.c:
5626         * sys/sunaudio/gstsunaudiomixertrack.h:
5627         * sys/sunaudio/gstsunaudiosink.c:
5628         * sys/sunaudio/gstsunaudiosink.h:
5629         * sys/sunaudio/gstsunaudiosrc.c:
5630         * sys/sunaudio/gstsunaudiosrc.h:
5631           Fix up copyrights (#525860).
5632
5633 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5634
5635         * gst/goom/goomsl.c: (gsl_read_file):
5636           Check return value of fread() to avoid compiler warnings.
5637
5638 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5639
5640         Based on patch by: Mersad Jelacic <mersad at axis dot com>
5641
5642         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5643         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5644         * gst/law/alaw-decode.h:
5645         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5646         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5647         (gst_mulawdec_chain), (gst_mulawdec_change_state):
5648         * gst/law/mulaw-decode.h:
5649         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5650         Make negotiation a bit modern.
5651         Use pad_alloc. Fixes #525359.
5652
5653 2008-03-31  David Schleef  <ds@schleef.org>
5654
5655         * gst/goom/xmmx.c: Fix constraints on asm code so that it
5656           compiles consistently.  Fixes #522278.
5657
5658 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
5659
5660         Patch by: Brian Cameron <brian.cameron at sun dot com>
5661
5662         * sys/sunaudio/gstsunaudiomixerctrl.c:
5663           (gst_sunaudiomixer_ctrl_get_volume),
5664           (gst_sunaudiomixer_ctrl_set_volume):
5665         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5666           Fix up the mixer tracks to use a volume range of 0-255, which is what
5667           the sun audio API uses. This simplifies the code and avoids rounding
5668           errors. Fixes #524593.
5669
5670 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
5671
5672         * sys/v4l2/gstv4l2object.c:
5673         * sys/v4l2/gstv4l2object.h:
5674         Add device-fd property to make it possible to apps to call ioctl's.
5675
5676 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5677
5678         * gst/qtdemux/qtdemux.c: (next_entry_size):
5679         Unbreak streaming mode again.
5680
5681 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5682
5683         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5684           Remove superfluous DEBUG macro.
5685
5686 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5687
5688         Based on patch by: William M. Brack <wbrack at mmm com hk>
5689
5690         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5691           (gst_v4l2src_set_capture):
5692           Check whether the device supports setting the framerate before
5693           trying to set it and then posting a warning or error if it doesn't
5694           work (#516649, #520092). Also compare fractions more correctly.
5695
5696 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5697
5698         * gst/goom/Makefile.am:
5699           Remove ppc assembler optimisations from the build until they
5700           actually build (they also seem to have GPL headers).
5701
5702 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5703
5704         * m4/Makefile.am:
5705           Better not dist files that don't exist any longer (lrint*m4).
5706
5707 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
5708
5709         * configure.ac:
5710         * m4/lrint.m4:
5711         * m4/lrintf.m4:
5712         Remove lrint/lrintf checks. We don't use it anywhere.
5713
5714 2008-03-18  Andy Wingo  <wingo@pobox.com>
5715
5716         * sys/osxvideo/osxvideosink.m
5717         (gst_osx_video_sink_osxwindow_destroy)
5718         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5719         task, whoopdee.
5720         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5721         2 ms.
5722
5723 2008-03-18  Andy Wingo  <wingo@pobox.com>
5724
5725         * sys/osxvideo/osxvideosink.m
5726         (gst_osx_video_sink_osxwindow_destroy)
5727         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5728         task, whoopdee.
5729         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5730         2 ms.
5731         
5732 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
5733
5734         Patch by: William M. Brack <wbrack at mmm com hk>
5735
5736         * sys/v4l2/v4l2src_calls.c:
5737           (gst_v4l2src_probe_caps_for_format_and_size),
5738           (gst_v4l2src_probe_caps_for_format):
5739           Make sure the probed frame sizes are reversed in the resulting
5740           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5741           highest resolution first); also remove unused variable.
5742           (Partly fixes #520092)
5743
5744 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5745
5746         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5747
5748         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5749         (gst_rtspsrc_finalize):
5750         Call WSAStartup() and WSACleanup before using the Winsock API.
5751         See #520808.
5752
5753 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5754
5755         * gst/avi/gstavidemux.c:
5756           Erm, the buffer-size is just guint, no need for the special format
5757           specifier.
5758
5759 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
5760
5761         * gst/goom/plugin_info.c:
5762         * gst/goom/ppc_zoom_ultimate.h:
5763           Small fixes to build more on PPC: ifdef out code that uses unknown
5764           define; add newline at end of header file to avoid compiler warning.
5765           Assembler code still doesn't build though.
5766
5767 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5768
5769         * gst/avi/gstavidemux.c:
5770           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5771           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5772
5773 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5774
5775         * gst/avi/gstavidemux.c:
5776           Chunksize is uint32. Fix format specifier.
5777
5778 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
5779
5780         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5781         mistake. Return file to pure MIT text.
5782
5783 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5784
5785         * gst/audiofx/audiofx.c:
5786         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5787         of hardcoding values.
5788
5789 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5790
5791         Patch by: Mark Nauwelaerts <manauw skynet be>
5792
5793         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5794           (gst_oss_src_close):
5795         * sys/oss/gstosssrc.h:
5796           Cache probed caps, so _get_caps() during recording doesn't cause
5797           ioctl calls which may disrupt the recording (fixes #521875).
5798
5799 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5800
5801         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5802         (gst_qtdemux_activate_segment),
5803         (gst_qtdemux_prepare_current_sample),
5804         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5805         Make sure we always send a DISCONT after a seek by setting the sample
5806         index to an undefined value after a seek.
5807
5808 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5809
5810         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5811           (GST_IS_AVI_SUBTITLE_CLASS):
5812           Fix up IS_FOO macros, which makes gtk-doc much happier.
5813
5814 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
5815
5816         * tests/icles/Makefile.am:
5817           Move the -lgstfoo where it belongs.
5818
5819 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5820
5821         * gst/matroska/ebml-ids.h:
5822         Add ID for EBML CRC32 elements.
5823
5824         * gst/matroska/Makefile.am:
5825         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5826         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5827         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5828         (gst_ebml_read_header):
5829         Support reading 80bit floats, add finalize method to clean up
5830         in any case, support reading length/id elements with any length
5831         as long as it's smaller than our supported maximum, don't leak
5832         buffers if reading as much data as we wanted failed and some
5833         smaller cleanup.
5834
5835 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5836
5837         Patch by: Olivier Crete <tester at tester dot ca>
5838
5839         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5840         Check that a buffer is large enough before reading from it.
5841         Fixes bug #521102.
5842         
5843 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5844
5845         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5846         Fix compilation after removing the GstPollMode from the
5847         constructor.
5848
5849 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5850
5851         * configure.ac:
5852         * gst/audiofx/Makefile.am:
5853         * gst/audiofx/audiochebband.c:
5854         * gst/audiofx/audiocheblimit.c:
5855         * gst/audiofx/math_compat.h:
5856         Check for sinh(), cosh() and asinh() and define our own
5857         implementations if they're not available. Fixes bug #520880.
5858
5859 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5860
5861         Patch by: Olivier Crete <tester at tester dot ca>
5862
5863         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5864         Unref the buffers only once when handling not-negotiated errors.
5865         Fixes bug #520764.
5866
5867 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5868
5869         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5870
5871         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5872         (gst_udpsrc_stop):
5873         Properly balance WSA_Cleanup with WSA_Startup.
5874         Also make the poll controllable on windows. Fixes #520888.
5875
5876 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5877
5878         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5879         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5880         (gst_ebml_read_element_length), (gst_ebml_peek_id),
5881         (gst_ebml_read_skip), (gst_ebml_read_buffer),
5882         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5883         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5884         (gst_ebml_read_date), (gst_ebml_read_master),
5885         (gst_ebml_read_binary), (gst_ebml_read_header):
5886         * gst/matroska/ebml-read.h:
5887         * gst/matroska/matroska-demux.c:
5888         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5889         (gst_matroska_demux_read_track_encodings),
5890         (gst_matroska_demux_add_stream),
5891         (gst_matroska_demux_handle_src_query),
5892         (gst_matroska_demux_handle_seek_event),
5893         (gst_matroska_demux_init_stream),
5894         (gst_matroska_demux_parse_tracks),
5895         (gst_matroska_demux_parse_index_cuetrack),
5896         (gst_matroska_demux_parse_index_pointentry),
5897         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5898         (gst_matroska_demux_parse_metadata_id_simple_tag),
5899         (gst_matroska_demux_parse_metadata_id_tag),
5900         (gst_matroska_demux_parse_metadata),
5901         (gst_matroska_demux_sync_streams),
5902         (gst_matroska_demux_push_hdr_buf),
5903         (gst_matroska_demux_push_flac_codec_priv_data),
5904         (gst_matroska_demux_push_xiph_codec_priv_data),
5905         (gst_matroska_demux_add_wvpk_header),
5906         (gst_matroska_demux_check_subtitle_buffer),
5907         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5908         (gst_matroska_demux_parse_cluster),
5909         (gst_matroska_demux_parse_contents_seekentry),
5910         (gst_matroska_demux_parse_contents),
5911         (gst_matroska_demux_loop_stream_parse_id),
5912         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
5913         * gst/matroska/matroska-demux.h:
5914         * gst/matroska/matroska-ids.h:
5915         Handle return values from pull_range in a more granular way to properly
5916         shut down on seeks.
5917         Combine return values from push.
5918         Implement proper error handling.
5919         Prepare for handling seeking correctly.
5920
5921 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
5922
5923         * gst/matroska/ebml-read.c:
5924         Use GINT64 formatting constants from GLIB.
5925
5926         * gst/matroska/matroska-demux.c:
5927         Add some guards to avoid a possible division by 0 and crashing
5928         with NULL events on some systems.
5929         Use gst_gdouble_to_guint64 somewhere instead of an implicit
5930         conversion. 
5931
5932         * gst/matroska/matroska-mux.c:
5933         Check for invalid timestamps in a bunch of places to avoid
5934         writing bogus durations into the output file.
5935         Fix some double<->gint64 conversions that weren't using
5936         gst_guint64_to_gdouble
5937
5938 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5939
5940         * configure.ac:
5941         Move the checks for bison, flex and as to the program section and the
5942         check for gcc inline asm to the compiler characteristics section.
5943
5944 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5945
5946         * configure.ac:
5947         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5948         plug-ins are included/excluded. (#498222)
5949
5950 2008-02-29  Michael Smith <msmith@fluendo.com>
5951
5952         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
5953           Don't call gst_object_sync_values() unless we have a valid timestamp.
5954
5955 2008-02-28  David Schleef  <ds@schleef.org>
5956
5957         * gst/matroska/matroska-demux.c:
5958         * gst/matroska/matroska-ids.h:
5959         * gst/matroska/matroska-mux.c:
5960           Fix Dirac mapping.  I had previously added a VfW-type
5961           mapping, but it looks like Dirac will get a native Matroska
5962           mapping, and this is the most likely method.
5963
5964 2008-02-28  David Schleef  <ds@schleef.org>
5965
5966         * gst/avi/gstavimux.c: Add Dirac encoding
5967
5968 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5969
5970         Patch by: Peter Kjellerstedt <pkj at axis com>
5971
5972         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
5973         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
5974         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
5975         * gst/udp/gstudpsrc.h:
5976         Port to GstPoll. See #505417.
5977
5978 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
5979
5980         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
5981         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
5982         yet on the srcpad. We need rate and channels before we
5983         can do any processing. Fixes bug #519088.
5984
5985 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
5986
5987         * configure.ac:
5988         Detect and indicate if GCC inline assembly syntax is
5989         available.
5990
5991         * gst/goom/Makefile.am:
5992         * gst/goom/convolve_fx.c:
5993         * gst/goom/flying_stars_fx.c:
5994         * gst/goom/goom_config.h:
5995         * gst/goom/goom_core.c:
5996         * gst/goom/goomsl.c:
5997         * gst/goom/ifs.c:
5998         * gst/goom/mmx.c:
5999         * gst/goom/plugin_info.c:
6000         * gst/goom/xmmx.c:
6001         Fix various GCC-isms, and only build the inline assembly
6002         with compilers that support GCC inline assembly.
6003
6004         Fix a couple of other warnings shown with Forte.
6005
6006 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
6007
6008         * gst/goom/xmmx.c:
6009           Use 'emms' instead of 'femms' to not crash on cpus that do not
6010           implement this 3dnow specific instruction.
6011
6012 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6013
6014         * gst/goom/plugin_info.c: (setOptimizedMethods):
6015         Use extended MMX for draw_line() too if available, not only
6016         normal MMX.
6017
6018 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
6019
6020         * ext/jpeg/gstjpeg.c: (plugin_init):
6021         Remove (commented out) smoke typefinder. This is in base now.
6022
6023 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
6024
6025         * gst/goom2k1/Makefile.am:
6026         * gst/goom2k1/gstgoom.c:
6027
6028         Rename the installed library, and don't register the same 
6029         GType name as the new goom.
6030
6031 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6032
6033         * configure.ac:
6034         * ext/taglib/Makefile.am:
6035           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
6036           when building C++ code (#516509).
6037
6038 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6039
6040         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
6041         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
6042           (setOptimizedMethods):
6043           Call oil_init(), otherwise oil_get_cpu_flags() won't return
6044           anything useful. Export goom debug category so we can get
6045           rid of the VERBOSE define and the printfs.
6046
6047 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
6048
6049         * gst/goom/goomsl_heap.c: (align_it):
6050         * gst/goom/plugin_info.c: (setOptimizedMethods):
6051           Compile fixes for x86-64.
6052
6053 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6054
6055         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
6056         with warnings, but add other CFLAGS
6057
6058         * gst/goom/goomsl.c (gsl_instr_set_namespace),
6059         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
6060         (calculate_labels), (gsl_read_file):
6061         * gst/goom/goomsl_lex.l:
6062         * gst/goom/goomsl_yacc.y:
6063         * gst/goom/plugin_info.c: Remove a few live printf, and
6064         fprintf, replace exit() calls with g_assert_not_reached()
6065         if it not optimal for a library
6066
6067 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6068
6069         * gst/goom/Makefile.am: Remove the warnings being disabled,
6070         fix linkage on x86, spotted by Sebastian Dröge
6071         <slomo@circular-chaos.org>
6072
6073         * gst/goom/convolve_fx.c (convolve_init),
6074         (create_output_with_brightness), (convolve_apply):
6075         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
6076         * gst/goom/goomsl.c:
6077         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
6078         * gst/goom/plugin_info.c:
6079         * gst/goom/tentacle3d.c (tentacle_fx_create):
6080         Fix warnings, and disable the motifs in the convolve_fx
6081         plugin (they were causing warnings, and they were just
6082         "Goom" in funny letterring)
6083
6084 2008-02-23  Bastien Nocera  <hadess@hadess.net>
6085
6086         * configure.ac: Add checks for Flex/Yacc/Bison and other
6087         furry animals, for the new goom 2k4 based plugin
6088
6089         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
6090         CPU optimisations (not working yet), move the old plugin to...
6091
6092         * gst/goom2k1/*: ... here, in case somebody is sick enough
6093
6094         Fixes #515073
6095
6096 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
6097
6098         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6099         Post the server response code in an error message instead of a generic
6100         'error' message. Fixes #517237.
6101
6102 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6103
6104         * tests/check/Makefile.am:
6105         Ignore gconfaudiosrc for the states unit test too. It will fallback
6106         to alsasrc if the gconf settings can't be read and not everybody has
6107         alsa.
6108
6109 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6110
6111         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6112         (gst_wavpack_parse_create_src_pad):
6113         * ext/wavpack/gstwavpackparse.h:
6114         Always report the duration if we know it in push mode and don't
6115         return 0 just to make totem believe we can't seek in push mode.
6116         Newer totem version use the SEEKING query which properly reports
6117         if we can seek or not.
6118
6119 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6120
6121         Patch by: Jens Granseuer <jensgr at gmx dot net>
6122
6123         * tests/examples/equalizer/demo.c: (main):
6124         C89 fix, moving variable declarations to the beginning of
6125         the block. Fixes bug #517933.
6126
6127 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
6128
6129         * configure.ac:
6130         Back to development...
6131
6132 === release 0.10.7 ===
6133
6134 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
6135
6136         * configure.ac:
6137           releasing 0.10.7, "Red Door Black"
6138
6139 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
6140
6141         * gst/alpha/Makefile.am:
6142         Link alpha plugin with libgstbase. Fixes bug #517386.
6143
6144 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6145
6146         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6147         Init values to -1 instead of the default 0 value.
6148         Fixes #516524.
6149
6150 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
6151
6152         * tests/examples/spectrum/spectrum-example.c:
6153         Add missing include to fix compilation when libxml usage is disabled.
6154         Fixes: #516371
6155
6156 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6157
6158         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
6159         fixes: #514889
6160
6161         * gst/rtp/gstrtph264pay.c:
6162         * gst/rtp/gstrtpmp4gdepay.c:
6163         * gst/rtp/gstrtpmp4gpay.c:
6164         * gst/rtp/gstrtpmp4gpay.h:
6165         * gst/rtp/gstrtptheorapay.c:
6166         * gst/rtp/gstrtpvorbispay.c:
6167
6168         Fix various leaks shown up in valgrind
6169         - free sprops and buffer in error cases in H264 payloader
6170         - fix leak in mp4g depayloader when construction the caps
6171         - don't leak config string in the mp4g payloader
6172         - don't leak buffers and headers in theora and vorbis payloaders
6173
6174         * tests/check/elements/rtp-payloading.c:
6175
6176         Fix the RTP data test
6177         - Actually send valid amr data to the payloader instead of 20
6178         zero-bytes
6179         - The mp4g payloader expects codec_data on the caps
6180
6181 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
6182
6183         * win32/MANIFEST:
6184         Add libgstpng.dsp to MANIFEST.
6185         * win32/vs6/libgstaudiofx.dsp:
6186         Add new source files to VS project file.
6187
6188 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6189
6190         * sys/ximage/gstximagesrc.c:
6191         Initialise variables when opening the X display rather
6192         than in _start(), as the display can be opened before that.
6193
6194         Fixes: #515985
6195
6196 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6197
6198         * sys/directdraw/gstdirectdrawsink.c:
6199         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6200         (gst_directdraw_sink_finalize):
6201         Properly chain up finalize functions. Fixes bug #515980.
6202
6203 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6204
6205         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6206         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6207         (gst_v4l2_buffer_pool_class_init):
6208         Chain up the finalize functions. Fixes bug #515984.
6209
6210 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6211
6212         * sys/ximage/ximageutil.c:
6213         Chain up in the finalize function for our custom
6214         buffer sub-class.
6215         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
6216         Fixes: #515706
6217
6218 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6219
6220         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6221         (gst_fenced_buffer_class_init):
6222         Properly chain up finalize method. Fixes bug #515979.
6223
6224 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6225
6226         * sys/ximage/gstximagesrc.c:
6227         Free allocated Damage memory before closing our connection to the
6228         X server. Partially fixes: #515706
6229
6230 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6231
6232         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6233         * tests/check/Makefile.am:
6234         * tests/check/gst-plugins-good.supp:
6235         Add a few libjpeg suppressions and initialize a variable to
6236         make smokeenc valgrind clean. Fixes bug #515701.
6237
6238 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
6239
6240         * gst/avi/gstavidemux.c:
6241         Revert patch which sends timestamps only on keyframes, as it
6242         breaks playback with current gst-ffmpeg.
6243
6244         Fixes: #515562
6245
6246 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6247
6248         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6249         * tests/check/elements/multifile.c: (GST_START_TEST):
6250         Close some memory leaks spotted by the unit test. Fixes bug #515697.
6251
6252 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6253
6254         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6255         Use and unset the GError when pipeline creation fails instead of
6256         simply leaking it. Fixes bug #515704.
6257
6258 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
6259
6260         * gst/audiofx/audioamplify.c:
6261         * gst/audiofx/audiochebband.c:
6262         * gst/audiofx/audiocheblimit.c:
6263         * gst/audiofx/audiodynamic.c:
6264         * gst/audiofx/audioinvert.c:
6265         * gst/audiofx/audiopanorama.c:
6266         * gst/audiofx/audiowsincband.c:
6267         * gst/audiofx/audiowsinclimit.c:
6268         Fix long description of audiofx elements. Fixes bug #515457.
6269
6270 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
6271
6272         * docs/plugins/Makefile.am:
6273         * gst/spectrum/gstspectrum.c:
6274         * tests/examples/spectrum/.cvsignore:
6275         * tests/examples/spectrum/Makefile.am:
6276         * tests/examples/spectrum/spectrum-example.c:
6277
6278         Add a simple example application for the spectrum element, include it
6279         in the docs, and fix some documentation ambiguities.
6280
6281         Fixes: #348085
6282
6283 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6284
6285         * gst/equalizer/Makefile.am:
6286         * gst/spectrum/Makefile.am:
6287         Fix includes order
6288
6289         * tests/check/Makefile.am:
6290         Exclude v4l2src from the states test - it takes too long to start.
6291
6292         * tests/check/elements/spectrum.c:
6293         Make the test run properly with CK_FORK=no
6294
6295 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6296
6297         * gst/audiofix/Makefile.am: add missing header files 
6298
6299 2008-02-08  Julien Moutte  <julien@fluendo.com>
6300
6301         * gst/matroska/matroska-demux.c:
6302         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6303         keyframe and delta units correctly when dealign with a BlockGroup.
6304         Fixes: #514397
6305
6306 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6307
6308         * tests/check/elements/.cvsignore:
6309         Spell the new tests correctly in .cvsignore
6310
6311 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6312
6313         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6314           Need to use gsize here for the size, fixes compiler warning.
6315
6316         * tests/examples/equalizer/.cvsignore:
6317         * tests/examples/equalizer/Makefile.am:
6318         * tests/examples/spectrum/.cvsignore:
6319         * tests/examples/spectrum/Makefile.am:
6320           Add missing files to fix the build.
6321
6322 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6323
6324         * configure.ac:
6325         * docs/plugins/Makefile.am:
6326         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6327         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6328         * docs/plugins/gst-plugins-good-plugins.args:
6329         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6330         * docs/plugins/inspect/plugin-multifile.xml:
6331         * tests/check/Makefile.am:
6332         * tests/check/elements/.cvsignore:
6333
6334         Move multifile plugin from -bad.
6335         Fixes: #490283
6336
6337 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6338
6339         * configure.ac:
6340         * docs/plugins/Makefile.am:
6341         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6342         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6343         * docs/plugins/gst-plugins-good-plugins.args:
6344         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6345         * docs/plugins/inspect/plugin-spectrum.xml:
6346         * gst/spectrum/Makefile.am:
6347         * tests/check/Makefile.am:
6348         * tests/check/elements/.cvsignore:
6349         * tests/examples/Makefile.am:
6350
6351         Move spectrum plugin from -bad.
6352         Move examples into tests/examples/spectrum.
6353
6354 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6355
6356         * configure.ac:
6357         * docs/plugins/Makefile.am:
6358         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6359         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6360         * docs/plugins/gst-plugins-good-plugins.args:
6361         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6362         * docs/plugins/gst-plugins-good-plugins.interfaces:
6363         * docs/plugins/inspect/plugin-equalizer.xml:
6364         * gst/equalizer/Makefile.am:
6365         * tests/check/Makefile.am:
6366         * tests/examples/Makefile.am:
6367         Move the equalizer plugin across from -bad
6368
6369         * tests/check/elements/.cvsignore:
6370         Add equalizer, audiosincwband and audiosincwlimit
6371
6372         * tests/check/elements/equalizer.c:
6373         Fix compiler warnings
6374
6375         Fixes: #415627
6376
6377 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6378
6379         * configure.ac:
6380         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6381         are treated like releases and build without it.
6382
6383 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6384
6385         * docs/plugins/Makefile.am:
6386         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6387         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6388         * docs/plugins/gst-plugins-good-plugins.args:
6389         * docs/plugins/inspect/plugin-audiofx.xml:
6390         * gst/audiofx/Makefile.am:
6391         * gst/audiofx/audiofx.c:
6392         * gst/audiofx/audiowsincband.c:
6393         * gst/audiofx/audiowsincband.h:
6394         * gst/audiofx/audiowsinclimit.c:
6395         * gst/audiofx/audiowsinclimit.h:
6396         * tests/check/Makefile.am:
6397         * tests/check/elements/audiowsincband.c:
6398         * tests/check/elements/audiowsinclimit.c:
6399
6400         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6401         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6402         respectively.
6403
6404         Fixes: #467666
6405
6406 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6407
6408         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6409         * tests/check/elements/icydemux.c:
6410           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6411           caps, and add a somewhat useful debug message. Plus test.
6412
6413 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
6414
6415         * gst/rtsp/gstrtspsrc.c:
6416         Include unistd.h only if HAVE_UNISTD_H is defined
6417         * win32/common/config.h.in:
6418         * win32/common/config.h:
6419         Define socklen_t as it seems it's not defined in default 
6420         Visual Studio headers.
6421         * win32/vs6/libgstalpha.dsp:
6422         * win32/vs6/libgstapetag.dsp:
6423         * win32/vs6/libgstavi.dsp:
6424         * win32/vs6/libgstrtp.dsp:
6425         * win32/vs6/libgstrtsp.dsp:
6426         * win32/vs6/libgstvideomixer.dsp:
6427         Update project file dependencies and add new source files       
6428
6429 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
6430
6431         Patch by: Bjarne Rosengren <bjarne at axis dot com>
6432
6433         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6434         Don't leak buffers when we don't push them downstream.
6435         Fixes bug #514965.
6436
6437 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6438
6439         * configure.ac:
6440           Bump requirements to (good) released versions to avoid
6441           confusion and make implicit core requirement explicit.
6442
6443 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
6444
6445         * docs/plugins/Makefile.am:
6446         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6447         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6448         * docs/plugins/gst-plugins-good-plugins.args:
6449         * docs/plugins/inspect/plugin-audiofx.xml:
6450         * gst/audiofx/Makefile.am:
6451         * gst/audiofx/audiochebband.c:
6452         * gst/audiofx/audiochebband.h:
6453         * gst/audiofx/audiocheblimit.c:
6454         * gst/audiofx/audiocheblimit.h:
6455         * gst/audiofx/audiochebyshevfreqband.c:
6456         * gst/audiofx/audiochebyshevfreqband.h:
6457         * gst/audiofx/audiochebyshevfreqlimit.c:
6458         * gst/audiofx/audiochebyshevfreqlimit.h:
6459         * gst/audiofx/audiofx.c:
6460         * tests/check/Makefile.am:
6461         * tests/check/elements/.cvsignore:
6462         * tests/check/elements/audiochebband.c:
6463         * tests/check/elements/audiocheblimit.c:
6464         * tests/check/elements/audiochebyshevfreqband.c:
6465         * tests/check/elements/audiochebyshevfreqlimit.c:
6466
6467         Rename audiochebyshevfreqband -> audiochebband and
6468         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6469         surgery.
6470
6471         Closes: #491811
6472
6473 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
6474
6475         Patch by: Orjan Friberg <orjanf at axis dot com>
6476
6477         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6478         Fix caps memory leak. Fixes #514573.
6479
6480 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6481
6482         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6483         If there's no entries in the subindex, don't try to do anything stupid,
6484         just return.
6485
6486 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6487
6488         Patch by: John Millikin <jmillikin at gmail dot com>
6489
6490         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6491           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6492           Fix extraction of picture blocks with newer libflac versions again:
6493           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6494
6495 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6496
6497         * tests/check/Makefile.am:
6498           Add rtp-payloading test to VALGRIND_TO_FIX.
6499
6500         * tests/check/elements/rtp-payloading.c:
6501           Add semicolons after GST_TEST_END so gst-indent gets the
6502           formatting right; make test less verbose in general, but
6503           more verbose in the error case (which should probably
6504           make the test fail anyway).
6505
6506 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
6507
6508         * docs/plugins/Makefile.am:
6509         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6510         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6511         * gst/avi/gstavisubtitle.c:
6512         Add documentation for avisubtitle and change class to
6513         Codec/Parser/Subtitle
6514
6515 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6516
6517         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6518         Treat ENOTTY (driver does not implement ioctl) the same as
6519         EINVAL since it implies there are no available standards.
6520
6521         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6522         (gst_v4l2src_get_nearest_size):
6523         Replace gst_v4l2src_get_size_limits with 2 calls to new function
6524         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6525         probe if the driver does not support VIDIOC_TRY_FMT for whatever
6526         reason, and if we aren't yet actively capturing.
6527
6528         * sys/v4l2/v4l2src_calls.h:
6529         Remove replaced function declaration.
6530
6531 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6532
6533         * configure.ac:
6534         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6535         API.
6536
6537 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
6538
6539         * configure.ac:
6540         Fix typo.
6541
6542 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
6543
6544         * gst/alpha/Makefile.am:
6545         * gst/alpha/gstalpha.c:
6546
6547         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6548         some stuff, and making buffer-alloc and resizing work automatically.
6549         No longer crashes on odd frame widths and heights, although there
6550         seems to be a disagreement with ffmpegcolorspace about what size
6551         an AYUV frame with odd height should be.
6552
6553 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6554
6555         Patch by: Alessandro Decina <alessandro at nnva dot org>
6556
6557         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6558         * ext/libpng/gstpngenc.h:
6559         Preallocate the output buffer so that g_memdup() and
6560         gst_buffer_merge() aren't needed anymore. This greatly improves
6561         performances and fixes #512544.
6562
6563 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6564
6565         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6566         (gst_avi_demux_stream_data):
6567         GStreamer timestamps are PTS values while AVI only knows about DTS
6568         timestamps. Make sure we only copy the DTS as the buffer timestamp when
6569         we are dealing with a key frame.
6570
6571 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6572
6573         * tests/check/Makefile.am:
6574         * tests/check/elements/.cvsignore:
6575         * tests/check/elements/rtp-payloading.c:
6576           Add add testsuite for the rtp-payloader that tries simulating
6577           dataflow. Needs more test data.
6578
6579 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6580
6581         * tests/check/elements/alphacolor.c:
6582           Remove two unused variables.
6583
6584 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6585
6586         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6587           Use g_ascii_strtoll() instead of atoll, which is only
6588           available in C99.
6589
6590 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
6591
6592         * gst/rtp/Makefile.am:
6593         * gst/rtp/gstrtp.c:
6594         * gst/rtp/gstrtpmpvpay.c:
6595         * gst/rtp/gstrtpmpvpay.h:
6596         Add MPEG2 video payloader
6597
6598 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6599
6600         * gst/level/gstlevel.c:
6601         Use #include <math.h> instead of #include "math.h".
6602
6603 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6604
6605         * tests/check/Makefile.am:
6606         Fix up some CFLAGS sets.
6607         Don't include gconfvideosrc in the states test.
6608
6609         * tests/check/elements/autodetect.c: (GST_START_TEST):
6610         Add some error strings to fail_unless arguments to fix some weird
6611         compiler errors on Solaris.
6612
6613 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6614
6615         * configure.ac:
6616         Detect video4linux headers on Solaris too.
6617         * sys/v4l2/gstv4l2colorbalance.h:
6618         * sys/v4l2/gstv4l2object.h:
6619         * sys/v4l2/v4l2_calls.c:
6620         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6621         (gst_v4l2_buffer_new):
6622
6623         Make v4l2 build on Solaris.
6624         Patch by: Brian Cameron  <brian.cameron at sun dot com>
6625         Fixes: #510505
6626
6627 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6628
6629         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6630           Update list from (still local) scanning script.
6631
6632 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6633
6634         Based on a patch by:
6635             Victor STINNER <victor dot stinner at haypocalc dot com>
6636
6637         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6638         Set variable to NULL after freeing it to prevent double frees
6639         or make failures by another use of it afterwards more obvious
6640         and fix use of it after the freeing. Fixes bug #510592.
6641
6642 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6643
6644         * gst/udp/gstmultiudpsink.c:
6645         use GST_WARNING for logging
6646
6647 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6648
6649         * gst/udp/gstmultiudpsink.c:
6650         Don't try to leave a multicast group with an invalid socket
6651
6652 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
6653
6654         * ext/flac/gstflacdec.c:
6655           Fix compilation against flac 1.1.2 (as on debian stable), where
6656           the picture metadata defines and structs don't exist yet.
6657           Fixes #509301.
6658
6659 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
6660
6661         Patch by: Olivier Crete <tester at tester dot ca>
6662
6663         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6664         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6665         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6666         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6667         * gst/udp/gstmultiudpsink.h:
6668         Add property to automatically join a multicast group or not. This can be
6669         useful when sharing a socket between multiple elements.
6670         Fixes #509531.
6671
6672 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6673
6674         * gst/videomixer/Makefile.am:
6675           Add controller flags.
6676
6677 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6678
6679         * gst/videomixer/videomixer.c:
6680           Also commit the missing gst_object_sync_values().
6681
6682 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6683
6684         * docs/plugins/Makefile.am:
6685           Remove duplicate entry.
6686
6687 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6688
6689         * docs/plugins/Makefile.am:
6690         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6691         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6692         * docs/plugins/inspect/plugin-gamma.xml:
6693         * docs/plugins/inspect/plugin-monoscope.xml:
6694         * docs/plugins/inspect/plugin-video4linux2.xml:
6695           Add 3 more plugins to docs.
6696
6697 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6698
6699         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6700         * sys/osxvideo/osxvideosink.h:
6701           Revert previous change caused by a file that got stuck on an old
6702           revision.
6703
6704 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6705
6706         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6707         * gst/multipart/Makefile.am:
6708         * gst/multipart/multipartdemux.c:
6709         * gst/multipart/multipartdemux.h:
6710         * gst/multipart/multipartmux.c:
6711         * gst/multipart/multipartmux.h:
6712           Re-add multipartdemux to the docs. Last round of section cleanup.
6713
6714 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6715
6716         * docs/plugins/Makefile.am:
6717         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6718         * sys/osxaudio/gstosxaudiosink.h:
6719         * sys/osxvideo/osxvideosink.h:
6720           Managed to resolve most unused declarations. Filed a bug for one left.          
6721
6722 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6723
6724         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6725           Cleanup section file.
6726
6727 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6728
6729         * docs/plugins/Makefile.am:
6730         * docs/plugins/gst-plugins-good-plugins.args:
6731         * docs/plugins/gst-plugins-good-plugins.signals:
6732         * docs/plugins/inspect/plugin-alaw.xml:
6733         * docs/plugins/inspect/plugin-alpha.xml:
6734         * docs/plugins/inspect/plugin-alphacolor.xml:
6735         * docs/plugins/inspect/plugin-annodex.xml:
6736         * docs/plugins/inspect/plugin-apetag.xml:
6737         * docs/plugins/inspect/plugin-audiofx.xml:
6738         * docs/plugins/inspect/plugin-auparse.xml:
6739         * docs/plugins/inspect/plugin-autodetect.xml:
6740         * docs/plugins/inspect/plugin-avi.xml:
6741         * docs/plugins/inspect/plugin-cairo.xml:
6742         * docs/plugins/inspect/plugin-cdio.xml:
6743         * docs/plugins/inspect/plugin-cutter.xml:
6744         * docs/plugins/inspect/plugin-debug.xml:
6745         * docs/plugins/inspect/plugin-dv.xml:
6746         * docs/plugins/inspect/plugin-efence.xml:
6747         * docs/plugins/inspect/plugin-effectv.xml:
6748         * docs/plugins/inspect/plugin-flac.xml:
6749         * docs/plugins/inspect/plugin-flxdec.xml:
6750         * docs/plugins/inspect/plugin-gconfelements.xml:
6751         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6752         * docs/plugins/inspect/plugin-goom.xml:
6753         * docs/plugins/inspect/plugin-halelements.xml:
6754         * docs/plugins/inspect/plugin-icydemux.xml:
6755         * docs/plugins/inspect/plugin-id3demux.xml:
6756         * docs/plugins/inspect/plugin-jpeg.xml:
6757         * docs/plugins/inspect/plugin-ladspa.xml:
6758         * docs/plugins/inspect/plugin-level.xml:
6759         * docs/plugins/inspect/plugin-matroska.xml:
6760         * docs/plugins/inspect/plugin-mulaw.xml:
6761         * docs/plugins/inspect/plugin-multipart.xml:
6762         * docs/plugins/inspect/plugin-navigationtest.xml:
6763         * docs/plugins/inspect/plugin-png.xml:
6764         * docs/plugins/inspect/plugin-quicktime.xml:
6765         * docs/plugins/inspect/plugin-rtp.xml:
6766         * docs/plugins/inspect/plugin-rtsp.xml:
6767         * docs/plugins/inspect/plugin-shout2send.xml:
6768         * docs/plugins/inspect/plugin-smpte.xml:
6769         * docs/plugins/inspect/plugin-speex.xml:
6770         * docs/plugins/inspect/plugin-taglib.xml:
6771         * docs/plugins/inspect/plugin-udp.xml:
6772         * docs/plugins/inspect/plugin-videobalance.xml:
6773         * docs/plugins/inspect/plugin-videobox.xml:
6774         * docs/plugins/inspect/plugin-videocrop.xml:
6775         * docs/plugins/inspect/plugin-videoflip.xml:
6776         * docs/plugins/inspect/plugin-videomixer.xml:
6777         * docs/plugins/inspect/plugin-wavenc.xml:
6778         * docs/plugins/inspect/plugin-wavpack.xml:
6779         * docs/plugins/inspect/plugin-wavparse.xml:
6780           Update plugin docs.
6781
6782         * gst/videomixer/Makefile.am:
6783         * gst/videomixer/videomixer.c:
6784         * gst/videomixer/videomixer.h:
6785         * gst/videomixer/videomixerpad.h:
6786           Split out header to fix warnings from the doc-build.
6787
6788 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6789
6790         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6791
6792         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6793         Use atoll to parse the rtptime with enough precision. Fixes #509329.
6794
6795 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6796
6797         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6798         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6799           Initialise variables to work around (false) 'foo might be used
6800           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6801
6802 2008-01-11  David Schleef  <ds@schleef.org>
6803
6804         * docs/plugins/.cvsignore:
6805         * tests/check/pipelines/.cvsignore:
6806           Ignore more files for the buildbot.
6807
6808 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
6809
6810         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6811         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6812         Generate the image-type values correctly. Leave them out of the caps
6813         when outputting a "preview image" tag, since it only makes sense
6814         to have one of those - the type is irrelevant.
6815
6816         * sys/sunaudio/gstsunaudiomixerctrl.c:
6817         (gst_sunaudiomixer_ctrl_open):
6818         If we can, mark the mixer multiple open when we use it, in case
6819         (for some reason) the process wants to open it again elsewhere.
6820
6821 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
6822
6823         Patch by: Olivier Crete <tester at tester dot ca>
6824
6825         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6826         * gst/rtp/gstrtptheorapay.c:
6827         Fix the clock rate to 90000 as required by the RFC.
6828         Fixes #508644.
6829
6830 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6831
6832         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6833           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6834
6835 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
6836
6837         * autogen.sh:
6838           Add -Wno-portability to the automake parameters to stop warnings
6839           about GNU make extensions being used. We require GNU make in almost
6840           every Makefile anyway.
6841           
6842         * configure.ac:
6843           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6844           at the same time is required for per target flags.
6845
6846 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6847
6848         * gst/videomixer/videomixer.c: (gst_videomixer_init):
6849         Fix error from my last commit.
6850
6851 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6852
6853         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6854
6855         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6856           Make sure the ISO 639-X language code in ID3v2 COMM frames
6857           is actually valid UTF-8 (or rather: ASCII), so we don't end
6858           up with non-UTF8 strings in tags if there's garbage in the
6859           language field. Also make sure the language code is always
6860           lower case. Fixes: #508291.
6861
6862 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6863
6864         * ChangeLog:
6865           Fix ChangeLog typo.
6866
6867 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6868
6869         * Makefile.am:
6870           Include lcov.mak to allow building coverage reports. Guard
6871           check-torture target like in the other packages.
6872
6873 2008-01-09  Sameer Naik  <sameer@damagehead.com>
6874
6875         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
6876
6877         * gst/videomixer/videomixer.c:
6878         (gst_videomixer_set_master_geometry), (_do_init),
6879         (gst_videomixer_child_proxy_get_child_by_index),
6880         (gst_videomixer_child_proxy_get_children_count),
6881         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6882         (gst_videomixer_init), (gst_videomixer_request_new_pad),
6883         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6884         Implement GstChildProxy interface.
6885         Send newsegment at the right moment
6886         Fixes #488879
6887
6888 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6889
6890         * gst/alpha/Makefile.am:
6891         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6892         (gst_alpha_sink_event), (gst_alpha_chain),
6893         (gst_alpha_change_state), (plugin_init):
6894         Make the various properties of 'alpha' controllable. This allows doing
6895         niceties like fade-in/fade-out.
6896
6897 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6898
6899         * gst/rtp/gstasteriskh263.c:
6900         * gst/rtp/gstrtpL16depay.c:
6901         * gst/rtp/gstrtpac3depay.c:
6902         * gst/rtp/gstrtpamrpay.c:
6903         * gst/rtp/gstrtpdepay.c:
6904         * gst/rtp/gstrtpgsmdepay.c:
6905         * gst/rtp/gstrtph263depay.c:
6906         * gst/rtp/gstrtph263pdepay.c:
6907         * gst/rtp/gstrtph263ppay.c:
6908         * gst/rtp/gstrtph264depay.c:
6909         * gst/rtp/gstrtph264pay.c:
6910         * gst/rtp/gstrtpmp2tdepay.c:
6911         * gst/rtp/gstrtpmp4adepay.c:
6912         * gst/rtp/gstrtpmp4gdepay.c:
6913         * gst/rtp/gstrtpmp4gpay.c:
6914         * gst/rtp/gstrtpmp4vdepay.c:
6915         * gst/rtp/gstrtpmpadepay.c:
6916         * gst/rtp/gstrtpmpvdepay.c:
6917         * gst/rtp/gstrtpsv3vdepay.c:
6918         * gst/rtp/gstrtptheoradepay.c:
6919         * gst/rtp/gstrtptheorapay.c:
6920         * gst/rtp/gstrtpvorbisdepay.c:
6921         * gst/rtp/gstrtpvorbispay.c:
6922           Remove copy/paste unused code (property setters and getter) found by
6923           the coverage suite (yay, saves ~20k on disk).
6924
6925 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6926
6927         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
6928           (videosink_templ):
6929           Also fix up pad templates to indicate that image/jpeg doesn't
6930           absolutely require the framerate property to be set (#504081).
6931
6932 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6933
6934         Based on patch by: Wouter Cloetens  <wouter at mind be>
6935
6936         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
6937           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
6938           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
6939         * gst/matroska/matroska-mux.h:
6940           Keep track of first and last timestamps for each incoming stream,
6941           so we can calculate the total duration for live sources and other
6942           input where we can't query the duration from the start or where
6943           there's no constant framerate from which we can deduce the
6944           duration; also use calculated/observed duration if it is bigger
6945           than the previously queried duration. Furthermore, use
6946           gst_pad_query_peer_duration() and take into account that it may
6947           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
6948           screws up comparisons when using unsigned integers. Fixes #504081.
6949
6950 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
6951
6952         * configure.ac:
6953         * gst/audiofx/audioamplify.c:
6954         (gst_audio_amplify_clipping_method_get_type),
6955         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
6956         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
6957         (gst_audio_dynamic_transform_ip):
6958         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
6959         (gst_audio_invert_transform_ip):
6960         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
6961         (gst_audio_panorama_transform):
6962         * gst/level/gstlevel.c: (gst_level_init):
6963         Make elements GST_BUFFER_FLAG_GAP aware and call
6964         gst_base_transform_set_gap_aware for this.
6965         Bump core requirement to CVS.
6966         
6967         * gst/audiofx/audiochebyshevfreqband.c:
6968         (gst_audio_chebyshev_freq_band_transform_ip):
6969         * gst/audiofx/audiochebyshevfreqlimit.c:
6970         (gst_audio_chebyshev_freq_limit_transform_ip):
6971         Also sync GObject properties to the controller if operating
6972         in passthrough mode.
6973
6974 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
6975
6976         * sys/directdraw/gstdirectdrawsink.c:
6977           (gst_directdraw_sink_window_thread):
6978           FALSE is not a gpointer.
6979
6980 2008-01-05  Julien Moutte  <julien@fluendo.com>
6981
6982         * sys/directdraw/gstdirectdrawsink.c:
6983         (gst_directdraw_sink_set_window_id),
6984         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
6985         (gst_directdraw_sink_buffer_alloc),
6986         (gst_directdraw_sink_draw_borders),
6987         (gst_directdraw_sink_show_frame),
6988         (gst_directdraw_sink_setup_ddraw),
6989         (gst_directdraw_sink_window_thread),
6990         (gst_directdraw_sink_get_ddrawcaps),
6991         (gst_directdraw_sink_surface_create): Make sure we create our
6992         internal window only when we need it. That will give a chance to
6993         the application to get the prepare-xwindow-id bus message. Draw
6994         black borders when keeping aspect ratio. Handle the case where our
6995         rendering window disappears (closed or errors) like other sinks
6996         do. Various 80 columns fixes, improve state change order. That
6997         element could need some more love.
6998
6999 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
7000
7001         * ext/taglib/gstapev2mux.h:
7002         * ext/taglib/gstid3v2mux.h:
7003         Remove useless typedefs without new type name. Fixes a warning with
7004         gcc 4.3.
7005
7006 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
7007
7008         Patch by: John Millikin <jmillikin at gmail dot com>
7009
7010         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
7011         (gst_flac_dec_setup_stream_decoder),
7012         (gst_flac_normalize_picture_mime_type),
7013         (gst_flac_extract_picture_buffer),
7014         (gst_flac_dec_metadata_callback):
7015         Emit metadata messages when a PICTURE block is encountered.
7016         Fixes #506715.
7017
7018 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
7019
7020         * gst/avi/gstavi.c:
7021         increase rank because no known issues anymore ...
7022         * gst/avi/gstavisubtitle.c:
7023         send subtitle name to the srcpad
7024
7025 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7026
7027         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
7028         * gst/rtsp/gstrtspsrc.h:
7029         Implement redirect for the DESCRIBE reply. Fixes #506025.
7030
7031 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7032
7033         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
7034         Fix 'xyz may be used uninitialized' compiler warnings caused
7035         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7036         abort() in any case but properly report the error.
7037
7038 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
7039
7040         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
7041         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
7042         * sys/ximage/gstximagesrc.c: (composite_pixel):
7043           Fix 'xyz may be used uninitialized' compiler warnings caused
7044           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
7045           not really nice to abort in any case). Fixes #505745.
7046
7047 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7048
7049         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
7050           Small unit test fix (has no practical impact at the moment,
7051           since we're only feeding utf8 and hence just create a sub-
7052           buffer for the output).
7053
7054 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
7055
7056         * gst/avi/gstavisubtitle.c:
7057         * tests/check/elements/avisubtitle.c:
7058         Add seeking support for avi subtitle
7059
7060 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7061
7062         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
7063         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
7064         (gst_flac_dec_write):
7065         * ext/flac/gstflacdec.h:
7066         Remove some unused vars.
7067         Do more cleanup of leftover events and tags.
7068         Output tags after the segment event. Fixes #504018.
7069
7070 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7071
7072         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
7073           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
7074           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
7075           Detect other UTF byte order markers and convert to UTF-8 as
7076           appropriate.
7077
7078 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7079
7080         * gst/avi/gstavisubtitle.c: (src_template),
7081           (gst_avi_subtitle_extract_utf8_file),
7082           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
7083           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
7084           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
7085         * gst/avi/gstavisubtitle.h:
7086           Refactor a bit; fix name extraction; don't assume all the data
7087           in the chunk is actually subtitle data, there may be padding at
7088           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
7089           file so it's there to send again after a seek (for future use).
7090
7091 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
7092
7093         * gst/avi/Makefile.am:
7094         * gst/avi/gstavi.c:
7095         * gst/avi/gstavisubtitle.c:
7096         * gst/avi/gstavisubtitle.h:
7097         * tests/check/Makefile.am:
7098         * tests/check/elements/avisubtitle.c:
7099         * win32/common/config.h:
7100                 Add avi subtitle element for bug #442034. Need seeking support
7101                 and more support for character conversion.
7102
7103 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7104
7105         * Makefile.am:
7106           Include common/win32.mak for CRLF check of win32 project
7107           files (see #393626).
7108
7109         * win32/vs6/libgstpng.dsp:
7110           Fix line endings and do cvs admin -kb.
7111
7112 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
7113
7114         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7115         Actually drop the buffers which are outside the currently configured
7116         segment instead of just emitting a WARNING.
7117
7118 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
7119
7120         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7121         (gst_flac_dec_write):
7122         * ext/flac/gstflacdec.h:
7123         Send segments from the streaming thread. Fixes #502187.
7124         Fix segment seeking and a bunch of other seeking cases.
7125
7126 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
7127
7128         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7129           Parse WOAF frames and put the result into GST_TAG_CONTACT,
7130           which is where it would end up if the same information was
7131           put in a vorbis comment (don't think it's worth adding a
7132           new URI tag for this). Fixes #488112.
7133
7134 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7135
7136         * configure.ac:
7137           We need core/base 0.10.15 or later.
7138
7139 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7140
7141         Patch by: Mark Nauwelaerts <manauw skynet be>
7142
7143         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7144         Fix regression in stream numbering. Fixes #502655.
7145
7146 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7147
7148         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7149
7150         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7151         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7152         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7153         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7154         (gst_rtp_h264_pay_handle_buffer):
7155         * gst/rtp/gstrtph264pay.h:
7156         Use higher performance start-code searching.
7157         Parse NALs and store SPS, PPS and profile in the caps so that they can
7158         be used in the SDP. Fixes #502814.
7159
7160 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7161
7162         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7163         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7164           Init some structs to zero before we pass them to ioctl, which
7165           avoids valgrind warnings.  Also fix a small memory leak.
7166
7167 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7168
7169         Patch by: Wouter Cloetens <wouter at mind dot be>
7170
7171         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7172         Copy timestamp from input to output. Not very perfect yet but better
7173         than nothing. Fixes #503023.
7174
7175 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7176
7177         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7178           Also print a useful error message with the old Wavpack API
7179           if possible.
7180
7181 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
7182
7183         * ext/wavpack/gstwavpackdec.c:
7184           More build fixes for old libwavpack versions: include config.h so
7185           that WAVPACK_OLD_API is actually defined as detected; only use
7186           WavpackGetErrorMessage if it is available. This fixes the build
7187           on debian stable for me.
7188
7189 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7190
7191         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7192         * ext/wavpack/gstwavpackparse.c:
7193           (gst_wavpack_parse_create_src_pad):
7194           Workaround the non-existance of WavpackGetChannelMask in Wavpack
7195           versions below 4.40.0.
7196
7197 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7198
7199         * configure.ac:
7200           And now do it right for real...
7201
7202 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7203
7204         * configure.ac:
7205           Correctly reset $LIBS to not contain -lm.
7206
7207 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7208
7209         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7210
7211         * configure.ac:
7212         * ext/cairo/gsttimeoverlay.c:
7213           (gst_cairo_time_overlay_print_smpte_time):
7214           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7215           and checking for rint() and implementing it ourself if it doesn't
7216           exist. Fixes #497293.
7217
7218 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7219
7220         * configure.ac:
7221           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7222
7223 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
7224
7225         * sys/oss/gstosshelper.c:
7226         Verify that the format returned after the ioctl is the one
7227         we requested. It is valid for the ioctl to succeed while
7228         substituting an alternate 'supported' sample format.
7229
7230 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
7231
7232         * sys/oss/gstossaudio.c: (plugin_init):
7233         * sys/oss/gstosssink.c: (gst_oss_sink_open):
7234         * sys/oss/gstosssrc.c: (gst_oss_src_open):
7235           Post decent (and translated) error message when we can't
7236           open the audio device for some reason.
7237
7238 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
7239
7240         * sys/oss/gstosssink.c:
7241         * sys/oss/gstosssrc.c:
7242         Allow the AUDIODEV environment variable to redirect us
7243         to a different default OSS device, like sunaudiosink does
7244         on Solaris (makes audio play automatically on SunRays).
7245
7246 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
7247
7248         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7249         * gst/audiofx/audiochebyshevfreqband.c:
7250         (gst_audio_chebyshev_freq_band_transform_ip):
7251         * gst/audiofx/audiochebyshevfreqlimit.c:
7252         (gst_audio_chebyshev_freq_limit_transform_ip):
7253         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7254         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7255         The transform_ip() methods should do nothing if in passthrough mode.
7256         It might get non-writable buffers in that case but the buffer might
7257         as well be writable.
7258
7259         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7260         The transform() methods won't be called in passthrough mode and
7261         otherwise the buffer is always writable so don't check here.
7262
7263 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
7264
7265         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7266           Fix seeking in .wav files again (#501775).  Some people seem to think
7267           they don't need to test their changes when they're just 'reflowing'
7268           some code.
7269
7270 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7271
7272         * gst/autodetect/gstautovideosink.c:
7273         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7274         (gst_auto_video_sink_init),
7275         (gst_auto_video_sink_create_element_with_pretty_name),
7276         (gst_auto_video_sink_find_best),
7277         (gst_auto_video_sink_set_property),
7278         (gst_auto_video_sink_get_property):
7279         * gst/autodetect/gstautovideosink.h:
7280         Fix docs.
7281         Use same error reporting code as autoaudiosink.
7282         Add property to filter sinks based on caps. Only select raw video sinks
7283         by default for backwards compat.
7284         API: GstAutoVideoSink::filter-caps
7285
7286 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7287
7288         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7289
7290         * gst/autodetect/gstautoaudiosink.c:
7291         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7292         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7293         (gst_auto_audio_sink_set_property),
7294         (gst_auto_audio_sink_get_property):
7295         * gst/autodetect/gstautoaudiosink.h:
7296         Add property to filter sinks based on caps. Only select raw audio sinks
7297         by default for backwards compat.  Fixes #417420.
7298         API: GstAutoAudioSink::filter-caps
7299
7300 2007-11-29  Michael Smith <msmith@fluendo.com>
7301
7302         Patch by: Arek Korbik <arkadini@gmail.com>
7303
7304         * gst/videobox/gstvideobox.c: (plugin_init):
7305           Initialise liboil in plugin_init()
7306
7307 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
7308
7309         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7310         Post error before sending EOS. Fixes #499178.
7311
7312 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
7313
7314         * win32/vs6/gst_plugins_good.dsw:
7315         * win32/vs6/libgstpng.dsp:
7316         Add a project file for libgstpng
7317
7318 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
7319
7320         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7321         (gst_rtp_h263_depay_process):
7322         Code beautification.
7323         Added debug statements.
7324         Don't bit-shift everything, just do operations on last/first byte
7325         instead.
7326
7327 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
7328
7329         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7330
7331         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7332         Fix wrong comparison in overrun check. Fixes #499239 some more.
7333
7334 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
7335
7336         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7337         (gst_rtp_h263_depay_process):
7338         * gst/rtp/gstrtph263depay.h:
7339         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7340         stream.
7341
7342 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
7343
7344         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7345
7346         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7347         (gst_rtp_mp4a_depay_process):
7348         * gst/rtp/gstrtpmp4adepay.h:
7349         Fix depayloading when multiple frames are inside one RTP packet.
7350         Fixes #499239.
7351
7352 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7353
7354         * gst/level/gstlevel.c:
7355           Add GAP-flag support.
7356
7357 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
7358
7359         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7360         Read the I flag for Mode A h263 rtp stream and set the
7361         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7362         Fixes #499383
7363
7364 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7365
7366         * gst/level/gstlevel.c:
7367           Remove some dead code and do cleanups.
7368
7369 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7370
7371         * tests/check/pipelines/simple-launch-lines.c:
7372           Improve the tests by allowing to set a target state.
7373
7374 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
7375
7376         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7377         Don't check the caps of the output buffer if they're equal some
7378         other caps. The caps can change in a backward compatible way
7379         and did at this point.
7380
7381 2007-11-24  Julien MOUTTE  <julien@moutte.net>
7382
7383         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7384         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7385         (gst_qtdemux_seek_to_previous_keyframe),
7386         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7387         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7388         reverse playback support.
7389
7390 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7391
7392         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7393         Also set the channel layout on the Wavpack caps if we're having
7394         a mono layout. Of course only do it for "audio/x-wavpack".
7395
7396 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7397
7398         * ext/wavpack/gstwavpackcommon.c:
7399         (gst_wavpack_get_default_channel_mask),
7400         (gst_wavpack_set_channel_layout),
7401         (gst_wavpack_get_default_channel_positions),
7402         (gst_wavpack_get_channel_mask_from_positions),
7403         (gst_wavpack_set_channel_mapping):
7404         * ext/wavpack/gstwavpackcommon.h:
7405         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7406         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7407         * ext/wavpack/gstwavpackdec.h:
7408         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7409         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7410         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7411         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7412         (gst_wavpack_enc_rewrite_first_block),
7413         (gst_wavpack_enc_sink_event):
7414         * ext/wavpack/gstwavpackenc.h:
7415         * ext/wavpack/gstwavpackparse.c:
7416         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7417         (gst_wavpack_parse_scan_to_find_sample),
7418         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7419         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7420         * ext/wavpack/gstwavpackparse.h:
7421         Add support for encoding, parsing and decoding multichannel
7422         files with up to 8 channels. This also improves the robustness
7423         of parsing quite a bit.
7424
7425         * ext/wavpack/gstwavpackstreamreader.c:
7426         (gst_wavpack_stream_reader_read_bytes),
7427         (gst_wavpack_stream_reader_get_pos),
7428         (gst_wavpack_stream_reader_set_pos_abs),
7429         (gst_wavpack_stream_reader_set_pos_rel),
7430         (gst_wavpack_stream_reader_push_back_byte),
7431         (gst_wavpack_stream_reader_get_length),
7432         (gst_wavpack_stream_reader_can_seek),
7433         (gst_wavpack_stream_reader_write_bytes):
7434         Improve debugging.
7435
7436 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7437
7438         * ext/libpng/gstpngdec.c:
7439         * ext/libpng/gstpngdec.h:
7440           Don't release the png-memory from within the callback.
7441
7442 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7443
7444         Patch by: René Stadler <mail at renestadler dot de>
7445
7446         * ext/libpng/gstpngenc.c:
7447           Don't leak buffer data memory. Fixes #498395.
7448
7449 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7450
7451         Patch by: René Stadler <mail at renestadler dot de>
7452
7453         * tests/check/pipelines/simple-launch-lines.c:
7454           Tests for #498395.
7455
7456 2007-11-20  Julien MOUTTE  <julien@moutte.net>
7457
7458         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7459         (gst_tag_lib_mux_adjust_event_offsets):
7460         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7461         * sys/osxaudio/Makefile.am:
7462         * sys/osxvideo/cocoawindow.h:
7463         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7464
7465 2007-11-15  David Schleef  <ds@schleef.org>
7466
7467         * ext/cairo/gsttextoverlay.c:
7468           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
7469
7470 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7471
7472         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7473
7474         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7475         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7476         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7477         * gst/rtp/gstrtpmp2tpay.h:
7478         Fill the MTU with as many packets as possible. Fixes #491323.
7479
7480 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7481
7482         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7483
7484         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7485         Fix some more leaks. Fixes #497007.
7486
7487 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7488
7489         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7490
7491         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7492         (gst_rtspsrc_stream_configure_tcp):
7493         Fix 3 pad leaks. Fixes #496983.
7494
7495 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7496
7497         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7498
7499         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7500         Fix small leak. Fixes #497017.
7501
7502 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7503
7504         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7505         (gst_qtdemux_prepare_current_sample),
7506         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7507         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7508         * gst/qtdemux/qtdemux_fourcc.h:
7509         * gst/qtdemux/qtdemux_types.c:
7510         Add suppport for theora in quicktime according to XiphQT.
7511
7512 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
7513
7514         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7515         (gst_v4l2src_init), (gst_v4l2src_set_property),
7516         (gst_v4l2src_get_property):
7517         * sys/v4l2/gstv4l2src.h:
7518         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7519           Always copy buffers by default (handle safer with bugged drivers)
7520           and added a property to make it possible to use mmap effectively (no
7521           copy if possible) when application wants to. Fixes: #480557.
7522
7523 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7524
7525         * gst/id3demux/id3tags.c:
7526         * gst/id3demux/id3tags.h:
7527         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7528           We don't want the same string multiple times in a tag list for the
7529           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7530           this doesn't happen and remove special-case code for GST_TAG_GENRE.
7531
7532 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7533
7534         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7535           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7536           into ID3v2 TXXX frames (fixes #347848).
7537
7538 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7539
7540         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7541           Don't leak sdp message contents (fixes #496773).
7542
7543         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7544           Don't leak URI string.
7545
7546 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7547
7548         Patch by: Julien Puydt <julien dot puydt at laposte net>
7549
7550         * ext/raw1394/Makefile.am:
7551         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7552           (gst_1394_property_probe_get_properties),
7553           (gst_1394_property_probe_probe_property),
7554           (gst_1394_property_probe_needs_probe),
7555           (gst_1394_property_probe_get_values),
7556           (gst_1394_property_probe_interface_init),
7557           (gst_1394_type_add_property_probe_interface):
7558         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7559         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7560           (gst_dv1394src_init), (gst_dv1394src_dispose),
7561           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7562           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7563           (gst_dv1394src_update_device_name):
7564         * ext/raw1394/gstdv1394src.h:
7565           Implement GstPropertyProbe interface and add "device-name" property,
7566           so applications can use this to probe for available devices in the
7567           same way they can already with v4lsrc and v4l2src (however horrible
7568           this property probe interface may be). Fixes #358841.
7569
7570 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7571
7572         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7573
7574         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7575           (gst_rtspsrc_parse_range):
7576           Don't leak event, don't leak range (fixes #496752).
7577
7578 2007-11-14  Michael Smith <msmith@fluendo.com>
7579
7580         Patch by: Arek Korbik <arkadini@gmail.com>
7581
7582         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7583           Detect RGBA/BGRA correctly on little endian systems.
7584
7585 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7586
7587         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7588           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7589           corresponding ioctl() call fails even though the driver claims to
7590           support this format, just fall back to the pre-2.6.19 kernel
7591           routine that creates caps with suitable height and width ranges
7592           (see #448278).
7593
7594 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7595
7596         Patch by: Mark Nauwelaerts <manauw skynet be>
7597
7598         * gst/matroska/matroska-demux.c:
7599           (gst_matroska_demux_push_dvd_clut_change_event),
7600           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7601           (gst_matroska_demux_subtitle_caps):
7602         * gst/matroska/matroska-ids.h:
7603           Extract palette data for dvd subpicture streams and send it
7604           downstream as custom gstreamer dvd event (fixes #453417).
7605
7606 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7607
7608         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7609           Implement minimal parsing of the passed pango font description
7610           string, so passing a font size works the same as with the
7611           pango textoverlay plugin; fixes #455086.
7612           (Maybe we could just use pangocairo here at some point).
7613
7614 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7615
7616         * gst/avi/gstavidemux.c:
7617         * gst/wavparse/gstwavparse.c:
7618           Return the result in _activate_pull(). Don't ref element there.
7619
7620 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7621
7622         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7623         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7624         (gst_wavparse_srcpad_event):
7625           Ref the element when we should, but not when we its not needed. Reflow
7626           the event_handling to not leak the event.       
7627
7628 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
7629
7630         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7631         (qtdemux_parse_samples):
7632         Properly free QTDemuxSamples array.
7633         Protect table write with a sensible check, some files apparently DO contain
7634         stts values starting with 0 :(
7635
7636 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7637
7638         * gst/avi/gstavidemux.c:
7639         * gst/qtdemux/qtdemux.c:
7640           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7641           previous commit messed up.
7642
7643 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7644
7645         * gst/avi/gstavidemux.c:
7646         * gst/qtdemux/qtdemux.c:
7647           Sync _handle_src_event() with oggdemux. In avidemux also ref the
7648           element when we should, but not when we its not needed.
7649
7650 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
7651
7652         * gst/wavparse/gstwavparse.c:
7653           Return FALSE if we can't handle a query instead of changing the
7654           format. Ignore fact when dealing with mpeg audio.
7655
7656 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7657
7658         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
7659
7660         * configure.ac:
7661         * gst/udp/gstdynudpsink.c:
7662         * gst/udp/gstdynudpsink.h:
7663         * gst/udp/gstmultiudpsink.c:
7664         * gst/udp/gstmultiudpsink.h:
7665         * gst/udp/gstudpsink.c:
7666         * gst/udp/gstudpsink.h:
7667           Fix includes for MSVC and GLib-2.14.0 (#492388).
7668
7669         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7670           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7671
7672 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
7673
7674         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7675         (gst_mulawdec_chain):
7676         * gst/law/mulaw-decode.h:
7677         Calculate outgoing buffer duration if incoming buffer didn't have a
7678         valid duration.
7679
7680 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
7681
7682         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7683         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7684         Smarter combine_flow code that also deals with downstream elements
7685         returning UNEXPECTED when they receive data out of the segment
7686         boundaries. Fixes #491305.
7687
7688 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7689
7690         * sys/v4l2/v4l2src_calls.c:
7691           Fix 'unused variable' compiler warning when compiling against
7692           older kernel headers.
7693
7694 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
7695
7696         * ext/taglib/gstid3v2mux.cc (add_funcs):
7697           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7698
7699 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
7700
7701         * tests/check/pipelines/simple-launch-lines.c:
7702            Improve the tests a little more.
7703
7704 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
7705
7706         patch by: Yun Zheng Hu
7707
7708         * sys/osxaudio/gstosxaudiosrc.c:
7709         Use default input device instead of default output device and
7710         only memcpy actual available bytes.
7711
7712 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
7713
7714         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7715           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7716           early. It is temporary until we find something better.
7717
7718 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7719
7720         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7721
7722         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7723         Fix race when pausing a RTSP stream in interleaved.
7724         Fixes #475784.
7725
7726 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7727
7728         Patch by: Peter Kjellerstedt <pkj at axis com>
7729
7730         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7731         Use correct unref function for buffers. #488844.
7732
7733 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
7734
7735         * gst/avi/gstavimux.c:
7736         * tests/check/elements/avimux.c:
7737           Add some debug and sync tests with the fix.     
7738
7739 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7740
7741         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7742
7743         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7744         When the socket is used by the app for other purposes, don't generate an
7745         error if there is activaty on the socket that is not data related.
7746         Fixes #487488.
7747
7748 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7749
7750         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7751         (gst_v4l2src_grab_frame):
7752         Add some more debug info. Generate an error when we run out of buffers
7753         for some reason. See #480557.
7754
7755 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7756
7757         Patch by: Anders Skargren <anders dot skargren at axis dot com>
7758
7759         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7760         Set marker bit correctly.
7761
7762 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
7763
7764         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7765         Use allowed name for the GstStructure.
7766
7767 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7768
7769         * ext/gconf/gstswitchsink.c:
7770         * gst/autodetect/gstautoaudiosink.c:
7771           Use new gst_bus_pop_filtered().
7772
7773 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7774
7775         * sys/v4l2/gstv4l2src.c:
7776         * sys/v4l2/v4l2src_calls.c:
7777           When probing the formats and sizes a camera supports, make
7778           sure the best ones (highest resolution, prefered format)
7779           end up at the beginning of the probed caps and the less
7780           desirable ones at the end.  This is important because the
7781           order within the caps matters for things like fixation and
7782           negotiation, ie. what format is chosen in the end.
7783           With recent kernels, the current probing code will end up
7784           querying the supported sizes from lowest resolution to
7785           highest resolution, adding them to the probed caps in that
7786           order, resulting to v4l2src fixating to the lowest possible
7787           resolution if downstream does not express a size preference.
7788           Also make up a somewhat random ranking of prefered output
7789           formats for the same reason. Fixes #485828.
7790         
7791 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7792
7793         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
7794
7795         * gst/id3demux/id3v2frames.c:
7796           Extract license/copyright URIs from ID3v2 WCOP frames
7797           (Fixes #447000).
7798
7799         * tests/check/elements/id3demux.c:
7800         * tests/files/Makefile.am:
7801         * tests/files/id3-447000-wcop.tag:
7802           Add simple unit test.
7803
7804 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7805
7806         * ext/taglib/gstid3v2mux.cc:
7807           Add support for license/copyright URI tags (ID3v2 WCOP frame).
7808           Prerequisite for #447000.
7809
7810 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
7811
7812         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7813         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7814         a GstClockTime.
7815
7816 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7817
7818         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7819         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7820         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7821         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7822         (gst_rtspsrc_change_state):
7823         More seeking fixes, mostly passing around the new playback segment in
7824         order to configure it properly.
7825         Also reset base_time of udp sources when setting them back to PLAYING as
7826         a temporary hack until core supports seek in live sources properly.
7827
7828 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7829
7830         * gst/rtp/gstrtpmp4adepay.c:
7831         Fix caps as to not confuse autopluggers.
7832
7833 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7834
7835         * gst/id3demux/gstid3demux.c:
7836         * gst/id3demux/gstid3demux.h:
7837         * gst/id3demux/id3tags.c:
7838         * gst/id3demux/id3tags.h:
7839         * gst/id3demux/id3v2frames.c:
7840           Port ID3 tag demuxer over to the new GstTagDemux in -base
7841           (now would be a good time to test re-importing your music
7842           collection).
7843
7844 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7845
7846         * gst/apetag/Makefile.am:
7847         * gst/apetag/gstapedemux.c:
7848         * gst/apetag/gstapedemux.h:
7849         * gst/apetag/gsttagdemux.c:
7850         * gst/apetag/gsttagdemux.h:
7851           Port APE tag demuxer over to the new GstTagDemux in -base.
7852
7853 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
7854
7855         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7856         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7857         (gst_rtspsrc_handle_internal_src_query),
7858         (gst_rtspsrc_handle_src_query), (new_session_pad),
7859         (gst_rtspsrc_stream_configure_tcp),
7860         (gst_rtspsrc_stream_configure_transport),
7861         (gst_rtspsrc_loop_send_cmd):
7862         Improve flushing behaviour.
7863         Set state of the udp sources to PAUSE/PLAYING correctly.
7864         Handle events and queries for UDP and TCP transport now.
7865
7866 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7867
7868         * gst/rtp/gstrtpgsmdepay.c:
7869         * gst/rtp/gstrtpgsmpay.c:
7870           Add log category.
7871
7872 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7873
7874         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7875
7876         * tests/check/Makefile.am:
7877         * tests/check/pipelines/simple-launch-lines.c:
7878           Add unit tests for payloaders/depayloaders.
7879
7880 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7881
7882         * gst/avi/gstavimux.c:
7883         * gst/avi/gstavimux.h:
7884           Also save codec data for audio streams. Fixes #482495.
7885
7886 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7887
7888         * gst/avi/gstavimux.c:
7889           Fix "Index entry has invalid stream nr 1".
7890           Add support for muxing aac - work in progress (see #482495).
7891
7892 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7893
7894         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7895         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7896         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7897         * gst/rtsp/gstrtspsrc.h:
7898         Parse bandwidth modifiers, they are not yet configured in the session
7899         manager because we don't have an API for that yet.
7900
7901 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7902
7903         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7904         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7905         Use shiny new function in -base to get the default clock-rate.
7906         Update some docs.
7907
7908 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
7909
7910         * win32/MANIFEST:
7911         Add files to win32 manifest.
7912         * win32/vs6/libgstaudiofx.dsp:
7913         * win32/vs6/libgstqtdemux.dsp:
7914         * win32/vs6/libgstrtp.dsp:
7915         * win32/vs6/libgstrtsp.dsp:
7916         Update project files.
7917
7918 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
7919
7920         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
7921         (gst_rtspsrc_play):
7922         * gst/rtsp/gstrtspsrc.h:
7923         In TCP mode, only timestamp the first buffer. TCP is not real time and
7924         it does not make sense to try to skew compensate, also some servers send
7925         the first batch of data in a burst.
7926
7927 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7928
7929         * gst/matroska/matroska-demux.c:
7930           Fix setting the discont flag on the first buffer
7931           pushed downstream for formats with private codec
7932           data that needs to be deserialised into buffers
7933           (such as vorbis and FLAC when in a matroska container).
7934
7935 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
7936
7937         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
7938
7939         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
7940         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
7941         (gst_rtp_mp4v_pay_handle_buffer):
7942         * gst/rtp/gstrtpmp4vpay.h:
7943         Free the config string. Fixes #480707.
7944         Clean up the timestamp code a little.
7945
7946 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7947
7948         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
7949         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
7950         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
7951         * gst/rtsp/gstrtspsrc.h:
7952         Set timestamps on RTP buffers in interleaved mode.
7953         Mark first buffers with a DISCONT.
7954         Remove flush hack now that sync for live sources has been figured out.
7955
7956 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7957
7958         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7959         Update documentation.
7960
7961 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7962
7963         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
7964         (gst_rtp_xqt_depay_change_state):
7965         * gst/qtdemux/gstrtpxqtdepay.h:
7966         Fail if we don't know the quicktime format.
7967
7968 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
7969
7970         * ext/flac/gstflacenc.c:
7971         * ext/flac/gstflacenc.h:
7972           Save the flow return from the last gst_pad_push() and
7973           make sure we pass the right flow return value upstream
7974           in the case of failure; minor clean-ups.
7975
7976 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7977
7978         * ext/taglib/gstapev2mux.cc:
7979         * ext/taglib/gstid3v2mux.cc:
7980         * gst/apetag/gstapedemux.c:
7981           Add support for the new GST_TAG_COMPOSER (#459809).
7982
7983 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7984
7985         * gst/law/alaw-decode.c:
7986         * gst/law/alaw-decode.h:
7987         * gst/law/alaw-encode.c:
7988         * gst/law/alaw-encode.h:
7989         * gst/law/alaw.c:
7990         * gst/law/mulaw-conversion.h:
7991           Compulsive clean-ups: use boilerplate macros, add debug
7992           categories, fix up things to conform to symbol nomenklatura,
7993           etc.
7994
7995 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7996
7997         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7998
7999         * gst/law/alaw-decode.c:
8000         * gst/law/alaw-encode.c:
8001           Use static tables for A-Law decoding and encoding; this makes
8002           A-Law decoding and encoding less CPU-intensive, but increases
8003           the binary size a bit. Leaving old code around for now,
8004           selectable by a define in the code. Fixes #435435.
8005
8006 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8007
8008         * configure.ac:
8009         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
8010         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
8011         in configure.ac.
8012
8013 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
8014
8015         Patch by: Jan Gerber <j at bootlab dot org>
8016
8017         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8018         Add fourccs for MPEG2 HDV streams. Fixes #479960.
8019
8020 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
8021
8022         * sys/oss/gstosshelper.c:
8023           Use GST_WARNING instead of a g_critical. This situation is not caused
8024           by the application.
8025
8026 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8027
8028         * po/LINGUAS:
8029         * po/nl.po:
8030           Updated translations.
8031
8032 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8033
8034         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
8035
8036         * po/eu.po:
8037           Added Basque translation.
8038
8039 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8040
8041         translated by: Abel Cheung <abelcheung@gmail.com>
8042
8043         * po/zh_HK.po:
8044         * po/zh_TW.po:
8045           Added Chinese (traditional and Hong Kong) translation.
8046
8047 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8048
8049         translated by: Jakub Bogusz <qboosh@pld-linux.org>
8050
8051         * po/pl.po:
8052           Added Polish translation.
8053
8054 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8055
8056         translated by: Ilkka Tuohela <hile@iki.fi>
8057
8058         * po/fi.po:
8059           Added Finnish translation.
8060
8061 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8062
8063         translated by: Jorge González González <aloriel@gmail.com>
8064
8065         * po/es.po:
8066           Added Spanish translation.
8067
8068 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8069
8070         translated by: Mogens Jaeger <mogens@jaeger.tf>
8071
8072         * po/da.po:
8073           Added Danish translation.
8074
8075 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8076
8077         translated by: Funda Wang <fundawang@linux.net.cn>
8078
8079         * po/zh_CN.po:
8080           Added Chinese (simplified) translation.
8081
8082 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8083
8084         translated by: Alexander Shopov <ash@contact.bg>
8085
8086         * po/bg.po:
8087           Added Bulgarian translation.
8088
8089 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
8090
8091         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
8092         Set outgoing packet duration because we can. Fixes #478244 some more.
8093
8094 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
8095
8096         * ext/cairo/gsttextoverlay.c:
8097           Add info about static leak.
8098         
8099         * tests/check/Makefile.am:
8100         * tests/check/generic/states.c:
8101           Improved state change unit test.
8102
8103 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
8104
8105         * docs/plugins/.cvsignore:
8106         * tests/check/.cvsignore:
8107           Ignore registries in any format.
8108
8109 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
8110
8111         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8112         Removed some unused code.
8113
8114         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8115         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8116         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8117         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8118         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8119         (gst_rtp_theora_pay_flush_packet):
8120         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8121         Try to preserve the incomming buffer duration on the outgoing
8122         packets. Fixes #478244.
8123
8124 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8125
8126         * ext/taglib/gstapev2mux.cc:
8127         * ext/taglib/gstid3v2mux.cc:
8128           Work around compiler warnings with g++-4.2 when assigning a
8129           string constant to a gchar * (partially fixes #478092).
8130
8131 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8132
8133         * configure.ac:
8134           We require core CVS now for gst_base_src_set_do_timestamp().
8135
8136 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
8137
8138         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8139         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8140         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8141         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8142         (gst_rtspsrc_handle_message):
8143         Fix compiler warnings shown with Forte.
8144
8145 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8146
8147         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8148         (gst_rtspsrc_dup_printf):
8149         Give meaningfull error when all streams failed to configure for some
8150         reason.
8151
8152 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8153
8154         * gst/rtp/README:
8155         Update README with the design for synchronisation rules of RTP on
8156         sender and receiver.
8157
8158 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
8159
8160         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8161         (gst_wavparse_chain):
8162         Don't push EOS from the chain function, the element
8163         driving the pipeline is responsible for this. The bug
8164         this was meant to fix seems to be queue not forwarding
8165         EOS in all cases (see #476514).
8166
8167 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
8168
8169         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8170         (gst_level_transform_ip):
8171         * gst/level/gstlevel.h:
8172         Use basetransform segment so that it is correctly managed on flushes and
8173         start/stop.
8174         Report message timestamp as stream time, which is what an application
8175         can understand.
8176
8177 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8178
8179         * ext/taglib/gstapev2mux.cc:
8180         * ext/taglib/gstapev2mux.h:
8181         * ext/taglib/gsttaglibmux.c:
8182         * tests/check/elements/apev2mux.c:
8183         Update my mail address.
8184
8185 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8186
8187         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8188         (gst_wavparse_loop), (gst_wavparse_chain):
8189         Add EOS logic for the push-based mode too. Fixes #476514.
8190
8191 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
8192
8193         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8194         * gst/law/alaw-encode.h:
8195         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8196         (gst_mulawenc_chain):
8197         * gst/law/mulaw-encode.h:
8198         Fix law encoder timestamps.
8199
8200 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
8201
8202         * ext/gconf/gstgconfaudiosink.c:
8203           Fix warning when building without debug.
8204
8205         * sys/oss/gstossmixertrack.c:
8206           Use const like in alsamixertrack.c (fixes warnings).
8207
8208 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
8209
8210         * sys/v4l2/v4l2src_calls.c:
8211         (gst_v4l2src_probe_caps_for_format_and_size):
8212         Fix framerate detection code some more.
8213         Handle the case where there is a weird step in the stepwise framerates.
8214         Don't overwrite the min interval with the framerate, use a temp variable
8215         instead.
8216         Use max in the Continuous framerate intervals instead of step, which is
8217         1 according to the docs. Fixes #475424.
8218
8219 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
8220
8221         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8222         Make udpsrc timestamp outgoing buffers based on when they were received.
8223         Also make it output a segment in time.
8224
8225 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
8226
8227         * gst/avi/gstavidemux.c:
8228           Plug a little leak. Little code cleanups.
8229
8230 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
8231
8232         * configure.ac:
8233           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8234           flac versions, 's good for cross-compilation karma.
8235
8236 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
8237
8238         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
8239
8240         * gst/rtp/gstrtph263pay.c:
8241           Fix up header structure so that compilers don't add padding
8242           between the structure fields, since that would lead to us
8243           sending RTP packets with broken headers (as is currently the
8244           case when compiling with MSVC). Also see similar fixes in
8245           libgstrtp in gst-plugins-base. (#474616; #471194)
8246
8247 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
8248
8249         * sys/v4l2/v4l2src_calls.c:
8250         (gst_v4l2src_probe_caps_for_format_and_size):
8251         Don't overwrite our GValue with 0 but instead use the previously
8252         computed value. Fixes #471823 some more.
8253
8254 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8255
8256         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8257           No tabs in this file please, or gtk-doc will end up documenting
8258           rather absurd class hierarchies.
8259
8260 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8261
8262         * ext/gconf/gstswitchsink.c:
8263           If the new kid element fails to change state for some reason
8264           (e.g. esdsink not being able to connect to the sound server),
8265           forward the error message it posted on the bus instead of just
8266           posting a generic 'Internal state change error: please file a
8267           bug' error message. Fixes #471364.
8268
8269 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8270
8271         * gst/qtdemux/Makefile.am:
8272         * gst/qtdemux/qtdemux.c:
8273           Don't assume tags are encoded as UTF-8 (#473670).
8274
8275 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8276
8277         * sys/v4l2/gstv4l2src.c:
8278         * sys/v4l2/gstv4l2src.h:
8279         * sys/v4l2/v4l2src_calls.c:
8280           Implement LATENCY queries in the crudest way possible so I don't
8281           have to use sync=false any longer when testing with videosinks.
8282
8283 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8284
8285         * configure.ac:
8286           Fix build.
8287
8288 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8289
8290         * sys/v4l2/v4l2src_calls.c:
8291         (gst_v4l2src_probe_caps_for_format_and_size):
8292         Add some more debugging in the framerate function.
8293         Iterate stepwise framerate up to and _including_ the max and if nothing
8294         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8295         don't end up with an empty list. Fixes #471823
8296
8297 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8298
8299         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8300         (gst_multiudpsink_set_clients_string),
8301         (gst_multiudpsink_get_clients_string),
8302         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8303         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8304         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8305         (gst_multiudpsink_clear):
8306         Add property do configure destination address/port pairs
8307         API:GstMultiUDPSink::clients
8308
8309 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8310
8311         * tests/examples/Makefile.am:
8312         * tests/examples/rtp/Makefile.am:
8313         * tests/examples/rtp/client-H263p-AMR.sh:
8314         * tests/examples/rtp/client-H263p-PCMA.sdp:
8315         * tests/examples/rtp/client-H263p-PCMA.sh:
8316         * tests/examples/rtp/client-H264-PCMA.sdp:
8317         * tests/examples/rtp/client-H264-PCMA.sh:
8318         * tests/examples/rtp/client-PCMA.sh:
8319         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8320         * tests/examples/rtp/server-alsasrc-PCMA.sh:
8321         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8322         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8323         Added some RTP example scripts for sending and receiving RTP streams.
8324
8325 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8326
8327         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8328         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8329         Restructure the setcaps function so that we can also compute the
8330         expected GStreamer output size of the video frames.
8331         Set frame_byte_size correctly so that read-based devices have a chance
8332         of working correctly.
8333         When grabbing a frame, discard frames that are not of the expected size.
8334         Some cameras don't output the right framesize for the first buffer.
8335         Try only a couple of times to get a valid frame, else error out.
8336
8337         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8338         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8339         Add some more debug info when scanning the device.
8340
8341         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8342         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8343         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8344         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8345         Add some more debug info when dequeing a frame.
8346
8347 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8348
8349         * gst/wavparse/gstwavparse.c:
8350           More code cleanups. Add some more comment and improve debugs logs.
8351
8352 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8353
8354         * gst/wavparse/gstwavparse.c:
8355         * gst/wavparse/gstwavparse.h:
8356           Implement seek-query. Refactor duration calculations. Appropriate use
8357           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8358           out of loops.
8359
8360 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
8361
8362         * gst/avi/gstavidemux.c:
8363           Implement seek-query.
8364
8365 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
8366
8367         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8368         (gst_rtspsrc_dup_printf):
8369         Use new basesink async property to make sparse RTCP packet not wait for
8370         preroll.
8371
8372 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
8373
8374         * gst/audiofx/Makefile.am:
8375         Dist the right file.
8376
8377 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
8378
8379         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8380         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8381         Make sure we generate and parse floating point values in the POSIX
8382         locale instead of the current locale. 
8383
8384 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
8385
8386         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8387         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8388         (gst_rtspsrc_play):
8389         * gst/rtsp/gstrtspsrc.h:
8390         Fix method detection again.
8391         Keep track of when we must send a Range header.
8392         Use segment values for Range, Speed and Scale headers.
8393         Parse Speed and Scale headers to update the segment values.
8394
8395 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
8396
8397         patch by: Mark Nauwelaerts <manauw@skynet.be>
8398
8399         * sys/v4l2/v4l2src_calls.c:
8400           Handle optional v4l2 ioctls gracefully.
8401
8402 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
8403
8404         * gst/rtp/Makefile.am:
8405         * gst/rtp/gstrtp.c: (plugin_init):
8406         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8407         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8408         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8409         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8410         (gst_rtp_h263_depay_get_property),
8411         (gst_rtp_h263_depay_change_state),
8412         (gst_rtp_h263_depay_plugin_init):
8413         * gst/rtp/gstrtph263depay.h:
8414         Added an H263 depayloader. Fixes #369392.
8415
8416         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8417         (gst_rtp_h263p_depay_process):
8418         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8419         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8420         Make the H263+ pay/depayloader support H263-1998 and H263-2000
8421         payloads.
8422         Also alow plain H263 on the h263p payloaders. Fixes #465040.
8423
8424 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8425
8426         * gst/audiofx/audiochebyshevfreqband.c:
8427         * gst/audiofx/audiochebyshevfreqlimit.c:
8428         Add small comparision with the windowed sinc filters in the docs.
8429
8430 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8431
8432         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8433         (audiochebyshevfreqband_suite):
8434         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8435         (audiochebyshevfreqlimit_suite):
8436         Also test 32 bit float mode and the type 2 variants of the filters.
8437
8438 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
8439
8440         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8441         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8442         (gst_rtspsrc_loop):
8443         Refactor the udp and interleaved loop function a bit.
8444
8445 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8446
8447         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8448         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8449         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8450         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8451         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8452         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8453         * gst/rtsp/gstrtspsrc.h:
8454         Protect connection activity with a new lock, avoids deadlocks when going
8455         to PAUSED. Fixes #455808.
8456
8457 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8458
8459         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8460         Fix debug statement.
8461
8462 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8463
8464         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8465         Fix stray %u in debug line as spotted by Saur on IRC.
8466
8467 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
8468
8469         * gst/audiofx/audiochebyshevfreqband.c:
8470         (gst_audio_chebyshev_freq_band_class_init):
8471         * gst/audiofx/audiochebyshevfreqlimit.c:
8472         (gst_audio_chebyshev_freq_limit_class_init):
8473         Use generator macros for the process functions for the different
8474         sample types, add lower upper boundaries for the GObject properties
8475         so automatically generated UIs can use sliders and add a note about
8476         the number of poles as a too high number of poles combined with
8477         very low or very high frequencies will produce only noise.
8478         * docs/plugins/gst-plugins-good-plugins.args:
8479         Regenerated for the property changes.
8480
8481 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8482
8483         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8484         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8485         (gst_rtspsrc_stream_configure_udp_sink),
8486         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8487         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8488         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8489         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8490         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8491         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8492         * gst/rtsp/gstrtspsrc.h:
8493         Improve timeout handling.
8494         Use the same socket for sending and receiving RTCP packets so that some
8495         servers can track clients better.
8496         Improve connection closed handling. Try to reconnect.
8497         Don't overwrite our content base with NULL.
8498         Improve debugging.
8499         Improve range parsing and handling.
8500         Remove flushing hack now that core does the right thing.
8501
8502 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8503
8504         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8505         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8506         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8507         (gst_multiudpsink_close), (gst_multiudpsink_add):
8508         * gst/udp/gstmultiudpsink.h:
8509         Add support for getting and setting the socket to use.
8510
8511         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8512         (gst_udpsrc_create), (gst_udpsrc_get_property):
8513         Add support for getting the currently used socket.
8514
8515 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
8516
8517         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8518
8519         * gst/audiofx/Makefile.am:
8520         * gst/audiofx/audiochebyshevfreqband.c:
8521         (gst_audio_chebyshev_freq_band_mode_get_type),
8522         (gst_audio_chebyshev_freq_band_base_init),
8523         (gst_audio_chebyshev_freq_band_dispose),
8524         (gst_audio_chebyshev_freq_band_class_init),
8525         (gst_audio_chebyshev_freq_band_init),
8526         (generate_biquad_coefficients), (calculate_gain),
8527         (generate_coefficients),
8528         (gst_audio_chebyshev_freq_band_set_property),
8529         (gst_audio_chebyshev_freq_band_get_property),
8530         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8531         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8532         (gst_audio_chebyshev_freq_band_start):
8533         * gst/audiofx/audiochebyshevfreqband.h:
8534         * gst/audiofx/audiochebyshevfreqlimit.c:
8535         (gst_audio_chebyshev_freq_limit_mode_get_type),
8536         (gst_audio_chebyshev_freq_limit_base_init),
8537         (gst_audio_chebyshev_freq_limit_dispose),
8538         (gst_audio_chebyshev_freq_limit_class_init),
8539         (gst_audio_chebyshev_freq_limit_init),
8540         (generate_biquad_coefficients), (calculate_gain),
8541         (generate_coefficients),
8542         (gst_audio_chebyshev_freq_limit_set_property),
8543         (gst_audio_chebyshev_freq_limit_get_property),
8544         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8545         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8546         (gst_audio_chebyshev_freq_limit_start):
8547         * gst/audiofx/audiochebyshevfreqlimit.h:
8548         * gst/audiofx/audiofx.c: (plugin_init):
8549         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8550         Fixes #464800.
8551
8552         * tests/check/Makefile.am:
8553         * tests/check/elements/.cvsignore:
8554         * tests/check/elements/audiochebyshevfreqband.c:
8555         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8556         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8557         * tests/check/elements/audiochebyshevfreqlimit.c:
8558         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8559         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8560         Add unit tests for the chebyshev filters.
8561
8562         * docs/plugins/Makefile.am:
8563         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8564         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8565         * docs/plugins/gst-plugins-good-plugins.args:
8566         * docs/plugins/inspect/plugin-1394.xml:
8567         * docs/plugins/inspect/plugin-audiofx.xml:
8568         * docs/plugins/inspect/plugin-dv.xml:
8569         * docs/plugins/inspect/plugin-flac.xml:
8570         * docs/plugins/inspect/plugin-jpeg.xml:
8571         * docs/plugins/inspect/plugin-png.xml:
8572         * docs/plugins/inspect/plugin-rtp.xml:
8573         * docs/plugins/inspect/plugin-shout2send.xml:
8574         * docs/plugins/inspect/plugin-wavpack.xml:
8575         And add docs for the chebyshev filters. While doing
8576         that also run make update in docs/plugins.
8577
8578 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8579
8580         * ext/annodex/gstcmmltag.c:
8581         * gst/rtp/gstrtpvorbispay.c:
8582           Make ro memory to share.
8583
8584 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8585
8586         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8587         Improve UDP performance by avoiding a select() when we have data
8588         available immediatly.
8589
8590 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8591
8592         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8593         (gst_rtp_dec_class_init):
8594         * gst/rtsp/gstrtpdec.h:
8595         Add (dummy) SSRC management signals.
8596
8597         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8598         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8599         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8600         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8601         (on_timeout), (gst_rtspsrc_stream_configure_manager),
8602         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8603         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8604         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8605         * gst/rtsp/gstrtspsrc.h:
8606         Add connection-speed property.
8607         Add find_stream helper functions.
8608         Handle stream EOS based on BYE messages or SSRC timeout.
8609         Returns SUCCESS from the state change function as we hide our async
8610         elements from the parent.
8611
8612 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8613
8614         * gst/debug/rndbuffersize.c:
8615           Fix da leak.
8616
8617 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
8618
8619         * gst/debug/Makefile.am:
8620         * gst/debug/breakmydata.c:
8621         * gst/debug/gstdebug.c:
8622         * gst/debug/negotiation.c:
8623         * gst/debug/progressreport.c:
8624         * gst/debug/rndbuffersize.c:
8625         * gst/debug/testplugin.c:
8626           Add new test element and clean-up the others a little.
8627
8628 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
8629
8630         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8631         Fix parsing of mp4a version 0 atoms. Fixes #465774.
8632
8633 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
8634
8635         * gst/rtp/gstrtpilbcdepay.c:
8636           Include stdlib.
8637
8638 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
8639
8640         * gst/rtp/gstrtpmpvdepay.c:
8641         Set the mpegversion in the caps so that autoplugging does not get
8642         confused.
8643
8644 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8645
8646         * po/hu.po:
8647         * po/uk.po:
8648         * po/vi.po:
8649           Updated translations.
8650
8651 2007-08-08  Michael Smith <msmith@fluendo.com>
8652
8653         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8654           Render right border in the correct location.
8655
8656 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
8657
8658         Patch by: Olivier Crete <tester at tester dot ca>
8659
8660         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8661         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8662         Make mode property a string. Fixes #464475.
8663
8664 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8665
8666         * ext/flac/gstflacenc.c:
8667           Widen caps to match decoder a bit and add more FIXMEs.
8668
8669 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8670
8671         patch by: Mark Nauwelaerts <manauw@skynet.be>
8672
8673         * gst/avi/gstavimux.c:
8674           Fix ODML index tag numbering. Fixes #463624.
8675
8676 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
8677
8678         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8679         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8680         (gst_rtspsrc_stream_configure_tcp),
8681         (gst_rtspsrc_stream_configure_udp_sink):
8682         Fix default clock-rate for realmedia.
8683         Fix parsing of transport.
8684         Don't try to link NULL pads.
8685
8686 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
8687
8688         * po/POTFILES.skip:
8689           Add POTFILES.skip with list of source files that aren't disted at the
8690           moment but contain translatable strings. Should hopefully pacify
8691           broken tools and make it clearer that these files are left out
8692           intentionally (#461600).
8693
8694 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
8695
8696         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8697         If the buffer was entirely clipped ... don't try sending it :)
8698
8699 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8700
8701         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8702         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8703         (gst_rtspsrc_create_transports_string),
8704         (gst_rtspsrc_prepare_transports):
8705         If we don't hav a session manager, set the caps on outgoing buffers
8706         ourselves.
8707         Force PAUSE/PLAY methods for now until the extensions can overwrite.
8708         Append final bit of the transport string even when it does not contain a
8709         placeholder.
8710
8711 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8712
8713         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8714         (gst_rtsp_ext_list_connect):
8715         * gst/rtsp/gstrtspext.h:
8716         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8717         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8718         Clean up the interface list.
8719         Allow connecting to interface signals for the extensions.
8720         Remove old extension code.
8721         Free list on cleanup.
8722         Allow extensions to send additional RTSP messages.
8723
8724 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8725
8726         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8727         Handle a NULL gconf key gracefully by rendering the default element.
8728
8729 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8730
8731         * gst/rtsp/gstrtspext.h:
8732         Fix include path for extension interface.
8733
8734 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8735
8736         * gst/audiofx/audioamplify.h:
8737         Also remove a now unecessary variable here.
8738
8739 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8740
8741         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8742         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8743         * gst/audiofx/audiodynamic.c:
8744         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8745         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8746         * gst/audiofx/audiodynamic.h:
8747         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8748         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8749         * gst/audiofx/audioinvert.h:
8750         Don't save format information ourselves, this is already saved in
8751         GstAudioFilter.
8752
8753 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8754
8755         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8756         (gst_rtsp_ext_list_stream_select):
8757         * gst/rtsp/gstrtspext.h:
8758         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8759         Use rank to filter out extensions.
8760         Add url to stream_select interface call.
8761
8762 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8763
8764         * gst/rtsp/Makefile.am:
8765         * gst/rtsp/base64.c:
8766         * gst/rtsp/base64.h:
8767         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8768         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8769         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8770         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8771         (gst_rtsp_ext_list_setup_media),
8772         (gst_rtsp_ext_list_configure_stream),
8773         (gst_rtsp_ext_list_get_transports),
8774         (gst_rtsp_ext_list_stream_select):
8775         * gst/rtsp/gstrtspext.h:
8776         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8777         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8778         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8779         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8780         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8781         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8782         (gst_rtspsrc_stream_configure_tcp),
8783         (gst_rtspsrc_stream_configure_mcast),
8784         (gst_rtspsrc_stream_configure_udp),
8785         (gst_rtspsrc_stream_configure_udp_sink),
8786         (gst_rtspsrc_stream_configure_transport),
8787         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8788         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8789         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8790         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8791         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8792         (gst_rtspsrc_parse_methods),
8793         (gst_rtspsrc_create_transports_string),
8794         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8795         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8796         (gst_rtspsrc_play), (gst_rtspsrc_pause),
8797         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8798         * gst/rtsp/gstrtspsrc.h:
8799         * gst/rtsp/rtsp.h:
8800         * gst/rtsp/rtspconnection.c:
8801         * gst/rtsp/rtspconnection.h:
8802         * gst/rtsp/rtspdefs.c:
8803         * gst/rtsp/rtspdefs.h:
8804         * gst/rtsp/rtspext.h:
8805         * gst/rtsp/rtspextwms.c:
8806         * gst/rtsp/rtspextwms.h:
8807         * gst/rtsp/rtspmessage.c:
8808         * gst/rtsp/rtspmessage.h:
8809         * gst/rtsp/rtsprange.c:
8810         * gst/rtsp/rtsprange.h:
8811         * gst/rtsp/rtsptransport.c:
8812         * gst/rtsp/rtsptransport.h:
8813         * gst/rtsp/rtspurl.c:
8814         * gst/rtsp/rtspurl.h:
8815         * gst/rtsp/sdp.h:
8816         * gst/rtsp/sdpmessage.c:
8817         * gst/rtsp/sdpmessage.h:
8818         * gst/rtsp/test.c:
8819         Use shiny new RTSP and SDP library.
8820         Implement RTSP extensions using the new interface.
8821         Remove a lot of old code.
8822
8823 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
8824
8825         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8826         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8827
8828 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8829
8830         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8831         Don't unref the outgoing buffer twice when dropping it because it's
8832         outside of the segment.
8833
8834 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8835
8836         * configure.ac:
8837         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8838         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8839         Use the new buffer clipping function from gstaudio here and
8840         require gst-plugins-base CVS.
8841         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8842         For framed Wavpack buffers we require a valid timestamp.
8843
8844 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8845
8846         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8847         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8848         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8849         Clip raw audio and video when we can, keep track of current output
8850         segment.
8851         Don't leak buffers and events when there is no output pad.
8852         Improve debugging here and there.
8853
8854 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8855
8856         * configure.ac:
8857           Sync liboil check with plugins-base.
8858
8859 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8860
8861         * ext/annodex/Makefile.am:
8862           Fix CFLAGS/LIBS.
8863
8864         * ext/cdio/gstcdiocddasrc.c:
8865         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8866           Include stdlib
8867
8868         * ext/cairo/Makefile.am:
8869         * gst/videofilter/Makefile.am:
8870         * tests/examples/level/Makefile.am:
8871           Use $(LIBM) instead of -lm
8872
8873 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8874
8875         * sys/v4l2/gstv4l2src.c:
8876           Add another example pipeline.
8877
8878 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8879
8880         Patch by: Alexander Eichner <alexeichi@yahoo.de>
8881
8882         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8883           Use define here.
8884
8885         * sys/v4l2/gstv4l2tuner.c:
8886         (gst_v4l2_tuner_set_frequency_and_notify):
8887           Don't touch the property - its still disabled.
8888
8889         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8890         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8891         * sys/v4l2/v4l2src_calls.h:
8892           Improve fallback format negotionation. Fixes #451388
8893
8894 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8895
8896         * tests/check/elements/videocrop.c: (GST_START_TEST):
8897           Fix the test.
8898
8899 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8900
8901         * docs/plugins/Makefile.am:
8902         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8903         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8904         * docs/plugins/inspect/plugin-jpeg.xml:
8905         * docs/plugins/inspect/plugin-png.xml:
8906         * ext/jpeg/gstjpegdec.c:
8907         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
8908         (gst_pngdec_sink_setcaps):
8909           More docs. More logs in pngdec.
8910
8911 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
8912
8913         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8914           Initialize num_buffers with minimum value.
8915
8916         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
8917         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
8918           Handle frame-size query failure gracefully.
8919
8920 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8921
8922         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8923         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
8924         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
8925         of qt/aac files.
8926
8927 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
8928
8929         * ext/wavpack/gstwavpackdec.c:
8930         (gst_wavpack_dec_clip_outgoing_buffer):
8931         Fix buffer clipping to correctly clip to the segment stop.
8932
8933 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8934
8935         * configure.ac:
8936         * tests/Makefile.am:
8937         Remove bogus check for libcheck, since we check for
8938         gstreamer-check and it pulls in the required info from there,
8939         and we weren't actually _using_ the information for libcheck
8940         ourselves anyway.
8941
8942 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8943
8944         * configure.ac:
8945           Use pkg-config to locate check.
8946
8947 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
8948
8949         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
8950         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
8951         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
8952         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8953         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
8954         * gst/effectv/gstaging.c: (gst_agingtv_transform):
8955         * gst/effectv/gstdice.c: (gst_dicetv_transform):
8956         * gst/effectv/gstedge.c: (gst_edgetv_transform):
8957         * gst/effectv/gstquark.c: (gst_quarktv_transform):
8958         * gst/effectv/gstrev.c: (gst_revtv_transform):
8959         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
8960         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
8961         * gst/effectv/gstwarp.c: (gst_warptv_transform):
8962         * gst/matroska/matroska-demux.c:
8963         (gst_matroska_demux_add_wvpk_header),
8964         (gst_matroska_demux_check_subtitle_buffer),
8965         (gst_matroska_decode_buffer):
8966         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
8967           Fix build against core CVS.
8968
8969 2007-07-10  Edward Hervey  <bilboed@gmail.com>
8970
8971         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
8972         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
8973         don't have enough granularity to convert that boolean into a
8974         GstFlowReturn.
8975
8976 2007-07-06  Michael Smith <msmith@fluendo.com>
8977
8978         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
8979         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
8980         (gst_alawdec_change_state):
8981         * gst/law/alaw-decode.h:
8982         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
8983         (gst_mulawdec_class_init), (gst_mulawdec_init),
8984         (gst_mulawdec_chain), (gst_mulawdec_change_state):
8985         * gst/law/mulaw-decode.h:
8986           Fix capsnego bogosity in *law decoders. 
8987
8988 2007-07-06  Michael Smith <msmith@fluendo.com>
8989
8990         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
8991         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
8992         (gst_smokeenc_change_state):
8993         * ext/jpeg/gstsmokeenc.h:
8994           Remove stupidity in get/set caps functions.
8995           Fix some refcounting problems.
8996
8997 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
8998
8999         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
9000         Remove endianness-flipping hack that seems to have been required
9001         only because of a bug in ffmpegcolorspace.
9002         Partially Fixes: #451908
9003
9004 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
9005
9006         * docs/plugins/Makefile.am:
9007           Simplify --extra-dir as gtkdoc scans recursively.
9008
9009 2007-07-03  Wim Taymans  <wim@fluendo.com>
9010
9011         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9012
9013         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
9014         Set the encoding-name in the rtp caps to all uppercase, as required by
9015         the caps spec.
9016         Some small cleanups in the error paths. Fixes #453037.
9017
9018 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
9019
9020         * ext/wavpack/gstwavpackparse.c:
9021         (gst_wavpack_parse_index_get_last_entry),
9022         (gst_wavpack_parse_index_get_entry_from_sample),
9023         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
9024         (gst_wavpack_parse_scan_to_find_sample):
9025         * ext/wavpack/gstwavpackparse.h:
9026         Use a GSList for the GArray that is used like a list anyway.
9027
9028 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
9029
9030         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9031         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
9032         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
9033           Add state change function where we set 0/1 as default framerate in
9034           case our setcaps function isn't called, like it might not in a
9035           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
9036           gdkpixbufdec trying to create caps with a 0/0 framerate.
9037           Also post an error message on the bus if gst_pad_push() fails when
9038           called from our sink event handler (+1 for flow returns for event
9039           functions in 0.11) instead of failing silently.
9040
9041 2007-06-27  Wim Taymans  <wim@fluendo.com>
9042
9043         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
9044         Cast stack args to the proper types. Fixes #451249.
9045
9046 2007-06-27  Wim Taymans  <wim@fluendo.com>
9047
9048         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9049         (new_session_pad), (gst_rtspsrc_setup_streams):
9050         * gst/rtsp/gstrtspsrc.h:
9051         For container formats we only need to activate one of the streams so
9052         that we correctly signal no-more-pads. Fixes #451015.
9053
9054 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
9055
9056         * docs/plugins/gst-plugins-good-plugins.args:
9057         * docs/plugins/inspect/plugin-aasink.xml:
9058         * docs/plugins/inspect/plugin-alaw.xml:
9059         * docs/plugins/inspect/plugin-alpha.xml:
9060         * docs/plugins/inspect/plugin-alphacolor.xml:
9061         * docs/plugins/inspect/plugin-annodex.xml:
9062         * docs/plugins/inspect/plugin-apetag.xml:
9063         * docs/plugins/inspect/plugin-audiofx.xml:
9064         * docs/plugins/inspect/plugin-auparse.xml:
9065         * docs/plugins/inspect/plugin-autodetect.xml:
9066         * docs/plugins/inspect/plugin-avi.xml:
9067         * docs/plugins/inspect/plugin-cacasink.xml:
9068         * docs/plugins/inspect/plugin-cairo.xml:
9069         * docs/plugins/inspect/plugin-cdio.xml:
9070         * docs/plugins/inspect/plugin-cutter.xml:
9071         * docs/plugins/inspect/plugin-debug.xml:
9072         * docs/plugins/inspect/plugin-efence.xml:
9073         * docs/plugins/inspect/plugin-effectv.xml:
9074         * docs/plugins/inspect/plugin-esdsink.xml:
9075         * docs/plugins/inspect/plugin-flac.xml:
9076         * docs/plugins/inspect/plugin-flxdec.xml:
9077         * docs/plugins/inspect/plugin-gconfelements.xml:
9078         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9079         * docs/plugins/inspect/plugin-goom.xml:
9080         * docs/plugins/inspect/plugin-halelements.xml:
9081         * docs/plugins/inspect/plugin-icydemux.xml:
9082         * docs/plugins/inspect/plugin-id3demux.xml:
9083         * docs/plugins/inspect/plugin-jpeg.xml:
9084         * docs/plugins/inspect/plugin-ladspa.xml:
9085         * docs/plugins/inspect/plugin-level.xml:
9086         * docs/plugins/inspect/plugin-matroska.xml:
9087         * docs/plugins/inspect/plugin-mulaw.xml:
9088         * docs/plugins/inspect/plugin-multipart.xml:
9089         * docs/plugins/inspect/plugin-navigationtest.xml:
9090         * docs/plugins/inspect/plugin-ossaudio.xml:
9091         * docs/plugins/inspect/plugin-png.xml:
9092         * docs/plugins/inspect/plugin-quicktime.xml:
9093         * docs/plugins/inspect/plugin-rtp.xml:
9094         * docs/plugins/inspect/plugin-rtsp.xml:
9095         * docs/plugins/inspect/plugin-smpte.xml:
9096         * docs/plugins/inspect/plugin-speex.xml:
9097         * docs/plugins/inspect/plugin-taglib.xml:
9098         * docs/plugins/inspect/plugin-udp.xml:
9099         * docs/plugins/inspect/plugin-videobalance.xml:
9100         * docs/plugins/inspect/plugin-videobox.xml:
9101         * docs/plugins/inspect/plugin-videocrop.xml:
9102         * docs/plugins/inspect/plugin-videoflip.xml:
9103         * docs/plugins/inspect/plugin-videomixer.xml:
9104         * docs/plugins/inspect/plugin-wavenc.xml:
9105         * docs/plugins/inspect/plugin-wavparse.xml:
9106         * docs/plugins/inspect/plugin-ximagesrc.xml:
9107           Update docs with caps info.
9108
9109 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
9110
9111         * po/POTFILES.in:
9112           Add more files with translatable strings (#450878).
9113
9114 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
9115
9116         * MAINTAINERS:
9117         Updating all the maintainers files
9118
9119 2007-06-22  Edward Hervey  <edward@fluendo.com>
9120
9121         * ext/flac/gstflactag.c: (gst_flac_tag_init):
9122         * gst/interleave/deinterleave.c: (deinterleave_init),
9123         (deinterleave_sink_link):
9124         * gst/interleave/interleave.c: (interleave_init):
9125         * gst/median/gstmedian.c: (gst_median_init):
9126         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9127         Fix memory leaks.
9128         * tests/check/elements/id3demux.c: (pad_added_cb):
9129         Remove unused variable.
9130
9131 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
9132
9133         * ext/gconf/gconf.h:
9134         Make the prototype of gst_gconf_get_key_for_sink_profile
9135         match the implementation.
9136         Patch by: Damien Carbery <damien dot carbery at sun dot com>
9137         Fixes: #449747
9138
9139 2007-06-20  Michael Smith <msmith@fluendo.com>
9140
9141         * gst/rtp/gstrtpdepay.c:
9142           Fix description - rtpdepay is not a payloader.
9143
9144 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
9145
9146         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9147         (qtdemux_video_caps):
9148         * gst/qtdemux/qtdemux_fourcc.h:
9149           Add MJPG to the variants of motion jpeg.
9150
9151 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
9152
9153         * tests/check/Makefile.am:
9154         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9155         * tests/check/elements/videocrop.c: (GST_START_TEST):
9156         * tests/check/elements/videofilter.c:
9157         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9158         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9159           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9160           error flags are included and it errors out on compiler warnings
9161           for CVS builds; remove unused variables in various unit tests.
9162
9163 2007-06-19  Wim Taymans  <wim@fluendo.com>
9164
9165         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9166         (rtsp_connection_close), (rtsp_connection_free):
9167         Use threadsafe inet_ntop to convert an ip number to a string. 
9168         Fixes #447961.
9169         Don't leak fd (and ip) when freeing a connection without first closing
9170         it.
9171
9172 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
9173
9174         * configure.ac:
9175         Back to CVS
9176
9177         * gst-plugins-good.doap:
9178         Add 0.10.6 to the doap file.
9179
9180 === release 0.10.6 ===
9181
9182 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
9183
9184         * configure.ac:
9185           releasing 0.10.6, "Wobble Board"
9186
9187 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9188
9189         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9190         (rtsp_connection_free):
9191           Revert previous commit again, since we are frozen (sorry).
9192
9193 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9194
9195         Patch by: Peter Kjellerstedt <pkj at axis com>
9196
9197         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9198         (rtsp_connection_free):
9199           inet_ntoa() uses a static buffer internally, so we need to copy the
9200           returned string if we want to store it for later (#447961).
9201
9202 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9203
9204         * win32/vs6/autogen.dsp:
9205         * win32/vs6/gst_plugins_good.dsw:
9206         * win32/vs6/libgstalaw.dsp:
9207         * win32/vs6/libgstalpha.dsp:
9208         * win32/vs6/libgstalphacolor.dsp:
9209         * win32/vs6/libgstapetag.dsp:
9210         * win32/vs6/libgstaudiofx.dsp:
9211         * win32/vs6/libgstauparse.dsp:
9212         * win32/vs6/libgstautodetect.dsp:
9213         * win32/vs6/libgstavi.dsp:
9214         * win32/vs6/libgstcutter.dsp:
9215         * win32/vs6/libgstdirectdraw.dsp:
9216         * win32/vs6/libgstdirectsound.dsp:
9217         * win32/vs6/libgsteffectv.dsp:
9218         * win32/vs6/libgstflx.dsp:
9219         * win32/vs6/libgstgoom.dsp:
9220         * win32/vs6/libgsticydemux.dsp:
9221         * win32/vs6/libgstid3demux.dsp:
9222         * win32/vs6/libgstinterleave.dsp:
9223         * win32/vs6/libgstjpeg.dsp:
9224         * win32/vs6/libgstlevel.dsp:
9225         * win32/vs6/libgstmatroska.dsp:
9226         * win32/vs6/libgstmedian.dsp:
9227         * win32/vs6/libgstmonoscope.dsp:
9228         * win32/vs6/libgstmulaw.dsp:
9229         * win32/vs6/libgstmultipart.dsp:
9230         * win32/vs6/libgstqtdemux.dsp:
9231         * win32/vs6/libgstrtp.dsp:
9232         * win32/vs6/libgstrtsp.dsp:
9233         * win32/vs6/libgstsmpte.dsp:
9234         * win32/vs6/libgstspeex.dsp:
9235         * win32/vs6/libgstudp.dsp:
9236         * win32/vs6/libgstvideobalance.dsp:
9237         * win32/vs6/libgstvideobox.dsp:
9238         * win32/vs6/libgstvideocrop.dsp:
9239         * win32/vs6/libgstvideoflip.dsp:
9240         * win32/vs6/libgstvideomixer.dsp:
9241         * win32/vs6/libgstwaveform.dsp:
9242         * win32/vs6/libgstwavenc.dsp:
9243         * win32/vs6/libgstwavparse.dsp:
9244         Mark *.dsp & *.dsw as binary files and convert to DOS line
9245         endings, as they don't load into VS6 correctly otherwise.
9246
9247 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9248
9249         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9250         (rtsp_connection_connect):
9251         Fix the MingW build. 
9252         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9253         Fixes: #446981
9254
9255 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9256
9257         * tests/check/elements/.cvsignore:
9258         * tests/icles/.cvsignore:
9259         Hush the buildbots up
9260
9261 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9262
9263         * configure.ac:
9264         * sys/Makefile.am:
9265         * sys/directdraw/Makefile.am:
9266         * sys/directsound/Makefile.am:
9267         * sys/waveform/Makefile.am:
9268         Make sure to dist everything needed for win32 builds.
9269
9270 2007-06-14  Edward Hervey  <edward@fluendo.com>
9271
9272         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9273         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9274         caps.
9275         Fixes #447458
9276
9277 2007-06-13  Wim Taymans  <wim@fluendo.com>
9278
9279         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9280         Make sure we allocate enough memory for the codec_data.
9281         Fixes #447210.
9282
9283 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
9284
9285         * win32/MANIFEST:
9286         Add videocrop project file to the win32 manifest.
9287         * win32/vs6/gst_plugins_good.dsw:
9288         Add qtdemux,videocrop and waveform projects to the workspace.
9289         * win32/vs6/libgstqtdemux.dsp:
9290         Add zlib to the link list of qtdemux.
9291         * win32/vs6/libgstvideocrop.dsp:
9292         Add a project file for videocrop.
9293
9294 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9295
9296         * po/POTFILES.in:
9297         Add qtdemux for translation
9298
9299 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9300
9301         * configure.ac:
9302         * docs/plugins/Makefile.am:
9303         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9304         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9305         * docs/plugins/inspect/plugin-videocrop.xml:
9306         * gst-plugins-good.spec.in:
9307         * sys/Makefile.am:
9308         * tests/check/Makefile.am:
9309         * tests/icles/Makefile.am:
9310         * tests/icles/videocrop-test.c:
9311         Move videocrop and osxvideo from -bad.
9312
9313 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9314
9315         * configure.ac:
9316         * docs/plugins/Makefile.am:
9317         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9318         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9319         * docs/plugins/gst-plugins-good-plugins.args:
9320         * docs/plugins/inspect/plugin-qtdemux.xml:
9321         * docs/plugins/inspect/plugin-quicktime.xml:
9322         * win32/MANIFEST:
9323         Move qtdemux from -bad.
9324
9325         * gst-plugins-good.spec.in:
9326         Update spec file to reflect moving of qtdemux and wavpack
9327
9328 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9329         
9330         * win32/MANIFEST:
9331         * docs/plugins/Makefile.am:
9332         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9333         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9334         * docs/plugins/inspect/plugin-directdraw.xml:
9335         * docs/plugins/inspect/plugin-directsound.xml:
9336         * docs/plugins/inspect/plugin-waveform.xml:
9337         Move the waveform plugin from -bad too. Update the inspect xml
9338         files to mention Plugins Good instead of Plugins Bad.
9339
9340 2007-06-12  Andy Wingo  <wingo@pobox.com>
9341
9342         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9343         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9344         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9345         finalization and resuscitation. No longer public.
9346         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9347         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9348         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9349         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9350         miniobject semantics, and be threadsafe.
9351         (gst_v4l2src_queue_frame): Remove this function, as we just call
9352         the ioctls directly in the two places where we queue buffers.
9353         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9354         directly.
9355         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9356         to allocate the pool, which also preallocates the GstBuffers.
9357         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9358         queueing the frames directly.
9359         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9360         mmap buffers have been dequeued.
9361
9362         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9363         real MiniObject instead of rolling our own refcounting and
9364         finalizing. Give it a lock.
9365         (struct _GstV4l2Buffer): Remove one intermediary object, having
9366         the buffers hold the struct v4l2_buffer directly.
9367
9368         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9369         capture_init so that it can set them on the buffers that it will
9370         create.
9371         (gst_v4l2src_get_read): For better or for worse, include the
9372         timestamping and offsetting code here; really we should be using
9373         bufferalloc though.
9374         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9375         preallocated, mmap'd buffers.
9376
9377 2007-06-11  Wim Taymans  <wim@fluendo.com>
9378
9379         Patch by: daniel fischer <dan at f3c dot com>
9380
9381         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9382         (gst_ximage_src_get_caps):
9383         Actually use the display_name property so that we can dump any
9384         available X display. Fixes #445905.
9385
9386 2007-06-11  Wim Taymans  <wim@fluendo.com>
9387
9388         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9389
9390         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9391         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9392         Add missing rate fields to caps. Fixes #441118.
9393
9394 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
9395
9396         * win32/vs6/gst_plugins_good.dsw:
9397         * win32/vs8/gst-plugins-good.sln:
9398         Add DirectSound and DirectDraw sinks project files to
9399         workspace and solution files.
9400
9401 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
9402
9403         Patch by: Josh Coalson <xflac at yahoo dot com>,
9404         updated by Alexis Ballier <aballier at gentoo dot org>:
9405
9406         * configure.ac:
9407         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9408         (gst_flac_dec_setup_seekable_decoder),
9409         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9410         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9411         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9412         * ext/flac/gstflacdec.h:
9413         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9414         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9415         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9416         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9417         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9418         (gst_flac_enc_chain), (gst_flac_enc_set_property),
9419         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9420         * ext/flac/gstflacenc.h:
9421         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9422         
9423 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9424
9425         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9426         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9427         not necessary anymore as we need at least that core version. 
9428
9429 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9430
9431         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9432         (gst_wavpack_dec_chain):
9433         * ext/wavpack/gstwavpackdec.h:
9434         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9435         (gst_wavpack_parse_push_buffer):
9436         * ext/wavpack/gstwavpackparse.h:
9437         Improve discont handling by checking if the next Wavpack block has
9438         the expected, following block index.
9439
9440 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9441
9442         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9443           Fix element description.
9444
9445 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9446
9447         * configure.ac:
9448         * docs/plugins/Makefile.am:
9449         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9450         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9451         * docs/plugins/gst-plugins-good-plugins.args:
9452         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9453         * docs/plugins/gst-plugins-good-plugins.signals:
9454         * docs/plugins/inspect/plugin-autodetect.xml:
9455         * docs/plugins/inspect/plugin-gconfelements.xml:
9456         * docs/plugins/inspect/plugin-ladspa.xml:
9457         * docs/plugins/inspect/plugin-rtp.xml:
9458         * docs/plugins/inspect/plugin-wavpack.xml:
9459         * ext/Makefile.am:
9460         * tests/check/Makefile.am:
9461           move wavpack plugin.  See #352605.
9462
9463 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
9464
9465         * configure.ac:
9466         * docs/plugins/Makefile.am:
9467         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9468         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9469         * docs/plugins/gst-plugins-good-plugins.args:
9470         * sys/Makefile.am:
9471         * win32/MANIFEST:
9472         Add DirectDraw & DirectSound plugins to the build and docs.
9473
9474 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
9475
9476         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9477         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9478           When operating in pull mode, error out correct on not-linked.
9479
9480 2007-06-06  Andy Wingo  <wingo@pobox.com>
9481
9482         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9483         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9484         format and size if the ioctls are defined; should fix compilation
9485         on Linux < 2.16.19.
9486
9487 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
9488
9489         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9490           Printf fixes in debug statements; use LOG level for debug statements
9491           that are printed for each and every frame; convert c++ comments to
9492           C-style comments; not much point using g_try_malloc() if we then not
9493           even check the return value.
9494
9495 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
9496
9497         * configure.ac:
9498           Bump requirements to released versions (core and base 0.10.13).
9499
9500         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9501           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9502           own implementation.
9503
9504 2007-06-05  Andy Wingo  <wingo@pobox.com>
9505
9506         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9507         some useless comments.
9508
9509         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9510         frames before calling STREAMON, that might leave them in a state
9511         where they can't be dequeued if we go back to NULL without calling
9512         STREAMON, according to the docs.
9513         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9514         before we call STREAMON.
9515         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9516         failures. (For me this code hung.) The pool refcounting is still
9517         crack; added a note to that effect.
9518
9519 2007-06-05  Wim Taymans  <wim@fluendo.com>
9520
9521         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9522         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9523         Add support for mapping gst structure names to the MIME type equivalent.
9524         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9525
9526 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
9527
9528         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9529         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9530         (gst_wavenc_chain), (gst_wavenc_change_state):
9531         * gst/wavenc/gstwavenc.h:
9532         Properly write wav files with width!=depth by having the depth most
9533         significant bytes set and all others zero. Fixes #442535.
9534
9535 2007-06-01  Wim Taymans  <wim@fluendo.com>
9536
9537         * gst/rtsp/rtspconnection.c:
9538         Add include to make buildbot happy.
9539
9540 2007-06-01  Wim Taymans  <wim@fluendo.com>
9541
9542         Patch by: Peter Kjellerstedt  <pkj at axis com>
9543
9544         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9545         (rtsp_connection_connect), (add_date_header),
9546         (rtsp_connection_send), (parse_response_status),
9547         (parse_request_line), (parse_line), (rtsp_connection_receive):
9548         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9549         * gst/rtsp/rtspdefs.h:
9550         * gst/rtsp/rtspmessage.c: (key_value_foreach),
9551         (rtsp_message_init_request), (rtsp_message_init_response),
9552         (rtsp_message_remove_header), (rtsp_message_append_headers),
9553         (rtsp_message_dump):
9554         * gst/rtsp/rtspmessage.h:
9555         Improves version checking, allowing an RTSP server to reply with "505
9556         RTSP Version not supported.
9557         Adds a Date header to all messages.
9558         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9559         want to be able to send a response even if something in the request was
9560         invalid. EINVAL is only used when passing wrong arguments to functions.
9561         Do not handle an invalid method in parse_request_line(). Defer this to
9562         the caller so it can respond with "405 Method Not Allowed".
9563         Improves parsing of the timeout parameter to the Session header,
9564         allowing whitespace after the semicolon. 
9565         Avoids a compiler warning due to variables shadowing a function argument.
9566
9567 2007-06-01  Wim Taymans  <wim@fluendo.com>
9568
9569         Based on Patch by: Daniel Charles <dcharles at ti dot com>
9570
9571         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9572         (gst_rtp_amr_depay_process):
9573         * gst/rtp/gstrtpamrdepay.h:
9574         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9575         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9576         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9577         * gst/rtp/gstrtpamrpay.h:
9578         Add support for AMR-WB.
9579         Small cleanups such as using BOILERPLATE.
9580
9581 2007-05-31  Wim Taymans  <wim@fluendo.com>
9582
9583         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9584         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9585
9586 2007-05-30  Andy Wingo  <wingo@pobox.com>
9587
9588         * sys/v4l2/gstv4l2object.h: 
9589         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9590         unintended changes.
9591
9592         * sys/v4l2/v4l2src_calls.h: 
9593         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9594         the format list in the order that the driver gives it to us.
9595         (gst_v4l2src_probe_caps_for_format_and_size)
9596         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9597         based on the capabilities of the device.
9598         (gst_v4l2src_grab_frame): Update for object variable renaming.
9599         (gst_v4l2src_set_capture): Update to be strict in its parameters,
9600         as in the set_caps below.
9601         (gst_v4l2src_capture_init): Update for object variable renaming,
9602         and reflow.
9603         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9604         (gst_v4l2src_capture_deinit): Update for object variable renaming.
9605         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9606         (gst_v4l2src_get_fps): Remove; these functions don't have much
9607         meaning outside of an atomic set_caps method.
9608         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9609         known.
9610
9611         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9612         call to update_fps; not sure about this change.
9613         (gst_v4l2_tuner_set_norm): Work around the fact that for the
9614         moment we don't have an update_fps_func.
9615
9616         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9617         structures in the object, just store what we need. Do store the
9618         probed caps of the device. Don't store the current frame rate.
9619
9620         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9621         update_fps_function, for now. Update for new object variable
9622         naming.
9623         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9624         new object variable naming.
9625         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9626         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9627         (gst_v4l2src_get_caps): Rework to probe the device for supported
9628         frame sizes and frame rates.
9629         (gst_v4l2src_set_caps): Rework to be strict in the given
9630         parameters: if someone asks us to have a certain size and rate,
9631         that is what we configure.
9632         (gst_v4l2src_get_read): Update for object variable naming. Don't
9633         leak buffers on short reads.
9634         (gst_v4l2src_get_mmap): Update for object variable naming, and add
9635         comments.
9636         (gst_v4l2src_create): Update for object variable naming.
9637
9638 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9639
9640         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9641         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9642         * gst/avi/gstavidemux.h:
9643           Parse subtitle text streams instead of erroring out (#442034). Still
9644           needs a parser for the subtitles to actually show up.
9645
9646 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9647
9648         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9649         (gst_avi_demux_loop):
9650           Make _push_event() return TRUE if the event could be pushed on at
9651           least one pad and not only if it could be pushed on all pads,
9652           otherwise we'll end up posting an error message on EOS if one or
9653           more source pads are not connected.
9654
9655 2007-05-28  Wim Taymans  <wim@fluendo.com>
9656
9657         * gst/rtsp/rtsptransport.c:
9658         Use renamed RTP bin.
9659
9660 2007-05-28  Wim Taymans  <wim@fluendo.com>
9661
9662         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9663
9664         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9665         (gst_video_box_set_property), (gst_video_box_transform_caps),
9666         (video_box_recalc_transform), (gst_video_box_set_caps),
9667         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9668         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9669         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9670         (gst_video_box_i420_i420), (gst_video_box_transform),
9671         (plugin_init):
9672         Add AYUV->AYUV and AYUV->I420 formats. 
9673         Fix negotiation and I420->AYUV conversion.
9674         Fixes #429329.
9675
9676 2007-05-26  Wim Taymans  <wim@fluendo.com>
9677
9678         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9679         Use different variables for nested for loops so that the outer loop
9680         functions properly and speex files with multiple frames per buffer work
9681         properly.
9682         Fixes #441408.
9683
9684 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9685
9686         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9687           Don't leak newsegment events.
9688
9689 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9690
9691         * gst/wavparse/Makefile.am:
9692           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9693           drags it in.
9694
9695 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9696
9697         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9698         (notgst_value_array_append_buffer),
9699         (gst_flac_enc_process_stream_headers),
9700         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9701         (gst_flac_enc_change_state):
9702         * ext/flac/gstflacenc.h:
9703           Collect headers, add "streamheader" field to output caps and set
9704           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9705           produces output according to the official FLAC-to-Ogg mapping
9706           instead of completely broken files. Fixes #426044.
9707
9708 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9709
9710         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9711         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9712         (gst_id3demux_sink_event):
9713         * gst/id3demux/gstid3demux.h:
9714         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9715         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9716         (gst_tag_demux_send_new_segment):
9717         Handle and adjust new-segment events so that downstream really
9718         sees a stream with the tag pieces stripped off the front and back.
9719         Fixes strangeness in seeking when mp3 decoders use the new-segment
9720         byte position to estimate their current playback position timestamp
9721         and then the arriving buffers don't match up.
9722
9723 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9724
9725         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9726           Don't unnecessarily perform a READY->NULL->READY transition on the
9727           detected audio sink when starting up. Fixes: #440127
9728
9729 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
9730
9731         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9732         (gst_flac_enc_chain):
9733           Don't crash in chain function if setcaps hasn't been called.
9734
9735 2007-05-24  Wim Taymans  <wim@fluendo.com>
9736
9737         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9738         Init value to avoid infinte loops.
9739
9740 2007-05-24  Wim Taymans  <wim@fluendo.com>
9741
9742         Patch by: Peter Kjellerstedt  <pkj at axis com>
9743
9744         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9745         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9746         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9747         (gst_rtspsrc_play):
9748         (rtsp_connection_send), (rtsp_connection_receive):
9749         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9750         Fix for new API.
9751
9752         * gst/rtsp/rtspconnection.c: (add_auth_header),
9753         Only add authorisation and session headers when sending messages.
9754
9755         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9756         (rtsp_message_init_request), (rtsp_message_init_response),
9757         (rtsp_message_unset), (rtsp_message_add_header),
9758         (rtsp_message_remove_header), (rtsp_message_get_header),
9759         (rtsp_message_append_headers), (dump_key_value),
9760         (rtsp_message_dump):
9761         * gst/rtsp/rtspmessage.h:
9762         Add support for multiple headers of the same type by storing the parsed
9763         headers in a GArray instaed of a hashtable.
9764
9765 2007-05-21  Wim Taymans  <wim@fluendo.com>
9766
9767         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9768         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9769         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9770         safer shutdown.
9771
9772 2007-05-21  Wim Taymans  <wim@fluendo.com>
9773
9774         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9775         * gst/rtsp/gstrtpdec.h:
9776         Added signal for backwards compat.
9777
9778 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
9779         
9780         Patch by: René Stadler <mail at renestadler dot de>
9781
9782         * configure.ac:
9783         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9784         (gst_au_parse_parse_header), (gst_au_parse_chain):
9785         * gst/auparse/gstauparse.h:
9786         Use audioconvert for converting from non-native endianness floats
9787         in auparse instead of doing it ourself. Fixes #424527.
9788         This needs the audioconvert from plugins-base CVS.
9789         
9790 2007-05-21  Wim Taymans  <wim@fluendo.com>
9791
9792         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9793         (gst_rtp_h263p_pay_flush):
9794         Fix enum registration.
9795
9796 2007-05-21  Wim Taymans  <wim@fluendo.com>
9797
9798         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9799
9800         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9801         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9802         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9803         (gst_rtp_h263p_pay_flush):
9804         * gst/rtp/gstrtph263ppay.h:
9805         Add new fragmentation mode base on GOB headers. Fixes #438940.
9806
9807 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
9808
9809         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9810           Printf format fix.
9811
9812 2007-05-18  Wim Taymans  <wim@fluendo.com>
9813
9814         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9815         Don't crash when an unsupported transport error was returned by the
9816         server, just try to configure the next stream. Fixes #439255.
9817
9818 2007-05-18  Wim Taymans  <wim@fluendo.com>
9819
9820         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9821         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9822         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9823         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9824         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9825         * gst/rtsp/gstrtspsrc.h:
9826         Add TCP timeout property and use it for all TCP connection.
9827
9828         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9829         (rtsp_connection_write), (rtsp_connection_next_timeout),
9830         (rtsp_connection_reset_timeout):
9831         Make connect and writes cancelable and make them use the timeout.
9832
9833 2007-05-18  Wim Taymans  <wim@fluendo.com>
9834
9835         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9836         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9837         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9838         (gst_rtspsrc_setup_streams):
9839         Refactor timeout handling.
9840         Also send keep-alive when dealing with TCP transport.
9841
9842         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9843         (rtsp_connection_free), (rtsp_connection_next_timeout),
9844         (rtsp_connection_reset_timeout):
9845         * gst/rtsp/rtspconnection.h:
9846         Use a timer to handle the session timeouts, add some methods to deal
9847         with timeouts.
9848
9849 2007-05-17  Wim Taymans  <wim@fluendo.com>
9850
9851         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9852         (gst_rtspsrc_setup_streams):
9853         Ignore streams that fail the setup command, we will retry with a
9854         different transport later on.
9855
9856         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9857         (rtsp_ext_wms_configure_stream):
9858         Fix encoding name case.
9859
9860 2007-05-16  Edward Hervey  <edward@fluendo.com>
9861
9862         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9863         Fix build on macosx.
9864
9865 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
9866
9867         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9868         Replace direct comparison of a string with the string literal "" with
9869         a comparison of the first character with '\0'. Fixes #438926.
9870
9871 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9872
9873         * gst/debug/breakmydata.c (gst_break_my_data_init):
9874           One more try. This should be the proper fix now.
9875
9876 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9877
9878         * gst/debug/breakmydata.c:
9879           Ooops, no // comments please.
9880
9881 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9882
9883         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9884         (gst_break_my_data_init):
9885           Fix gst_buffer_is_writable() assertion.
9886
9887 2007-05-14  David Schleef  <ds@schleef.org>
9888
9889         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9890           video/x-raw-bayer.  Fixes #314160.
9891
9892 2007-05-14  Wim Taymans  <wim@fluendo.com>
9893
9894         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9895         (gst_rtp_theora_depay_parse_configuration):
9896         * gst/rtp/gstrtptheorapay.c: (encode_base64),
9897         (gst_rtp_theora_pay_finish_headers),
9898         (gst_rtp_theora_pay_handle_buffer):
9899         Update theora pay/depayloader in a similar to vorbis.
9900
9901         * gst/rtp/gstrtpvorbisdepay.c:
9902         (gst_rtp_vorbis_depay_parse_configuration):
9903         Update docs.
9904
9905 2007-05-14  Wim Taymans  <wim@fluendo.com>
9906
9907         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
9908         When we try to execute a method that is not supported by the server,
9909         don't error out but remove the method from the accepted methods so that
9910         we never try to perform this method again.
9911
9912 2007-05-14  Wim Taymans  <wim@fluendo.com>
9913
9914         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
9915         Remove annoying _dump_mem.
9916
9917 2007-05-14  Wim Taymans  <wim@fluendo.com>
9918
9919         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
9920         Parse range correctly.
9921
9922         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
9923         The baseurl now always has a '/' at the start.
9924
9925 2007-05-14  Wim Taymans  <wim@fluendo.com>
9926
9927         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
9928         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
9929         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
9930         Factor out caps configuration and configure more stuff such as the time
9931         ranges and speed/scale values.
9932
9933         * gst/rtsp/rtsptransport.c:
9934         Add Copyright after non-trival fixes.
9935
9936 2007-05-12  Wim Taymans  <wim@fluendo.com>
9937
9938         Patch by: Peter Kjellerstedt  <pkj at axis com>
9939
9940         * gst/rtsp/gstrtspsrc.h:
9941         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
9942         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
9943         (rtsp_message_get_header):
9944         * gst/rtsp/rtspmessage.h:
9945         Make channel guint8 where possible.
9946         Make rtsp_message_init_data() take the channel as a guint8.
9947
9948         * gst/rtsp/rtspdefs.c:
9949         Fixed a typo: Timout -> Timeout
9950
9951         * gst/rtsp/rtspdefs.h:
9952         Make RTSP_CHECK() behave as a statement.
9953
9954         * gst/rtsp/sdpmessage.c:
9955         Avoid a compiler warning in INIT_ARRAY().
9956         Fixes #437692.
9957
9958 2007-05-12  Wim Taymans  <wim@fluendo.com>
9959
9960         Patch by: Peter Kjellerstedt  <pkj at axis com>
9961
9962         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
9963         (rtsp_url_get_request_uri):
9964         * gst/rtsp/rtspurl.h:
9965         Add support for query parameters to RTSP URLs.
9966
9967 2007-05-12  Wim Taymans  <wim@fluendo.com>
9968
9969         Patch by: Peter Kjellerstedt  <pkj at axis com>
9970
9971         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
9972         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
9973         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
9974         (rtsp_transport_parse), (rtsp_transport_as_text):
9975         * gst/rtsp/rtsptransport.h:
9976         Add validation to rtsp_transport_parse().
9977         Add rtsp_transport_as_text() to generate an RTSP header from an
9978         RTSPTransport.
9979         Change ssrc to guint (was a string) since that is what it is, even
9980         though it is sent as a hex string.
9981         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
9982         incorrect, which can be seen when looking at the examples in the RFC).
9983         Fixes #437670.
9984
9985 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
9986
9987         Patch by: Eric Anholt
9988
9989         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
9990           gst_ximage_src_ximage_get):
9991         Use union of all damage between frames to make it faster.
9992         Fixes bug #342463.
9993         Also fix crasher when cursor is at bottom right of window.
9994
9995 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
9996
9997         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
9998           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
9999           streaming mode regression for file from #343837 with 'bext' chunk
10000           before the 'fmt' chunk.
10001
10002 2007-05-11  Wim Taymans  <wim@fluendo.com>
10003
10004         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
10005         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
10006         (gst_rtspsrc_handle_src_event),
10007         (gst_rtspsrc_stream_configure_manager),
10008         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
10009         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
10010         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10011         * gst/rtsp/gstrtspsrc.h:
10012         * gst/rtsp/rtspdefs.h:
10013         Preliminary seek support.
10014         Activate internal pads so that we can receive events on them.
10015         Don't try to parse a range string when it's NULL.
10016
10017 2007-05-11  Wim Taymans  <wim@fluendo.com>
10018
10019         * gst/rtp/README:
10020         Update README with new RTP variables that will be used for
10021         synchronisation.
10022
10023         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
10024         (gst_rtp_vorbis_depay_parse_configuration),
10025         (gst_rtp_vorbis_depay_process):
10026         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
10027         (gst_rtp_vorbis_pay_finish_headers),
10028         (gst_rtp_vorbis_pay_handle_buffer):
10029         Update vorbis pay and depayloader to draft-04.
10030
10031 2007-05-11  Wim Taymans  <wim@fluendo.com>
10032
10033         * gst/rtsp/rtsptransport.c:
10034         UDP MCAST is actually the default for RTP/AVP.
10035 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
10036
10037         * gst/level/gstlevel.c: (gst_level_transform_ip):
10038         Use guint8 * instead of gpointer then vs6 can build 
10039         in_data += (filter->width / 8).
10040
10041 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
10042
10043         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
10044           gst_ximage_src_ximage_get):
10045         * sys/ximage/gstximagesrc.h (last_ximage):
10046         When using Damage actually keep the last frame, and not assume
10047         that the buffer we get already has the last frame on it.
10048         Copy the cursor over if we specify a non-zero start x and
10049         start y.
10050
10051 2007-05-11  Wim Taymans  <wim@fluendo.com>
10052
10053         * gst/rtsp/rtsptransport.c:
10054         Make UDP the default transport when not specified.
10055
10056 2007-05-09  David Schleef  <ds@schleef.org>
10057
10058         * gst/level/gstlevel.c:
10059           Revert last change.
10060
10061 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
10062
10063         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
10064         (gst_level_transform_ip):
10065         Use guint8 * instead of gpointer then vs6 know the size of data
10066         pointed when moving the pointer.
10067         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
10068         Move instructions after variables declaration.
10069         * win32/vs6/autogen.dsp:
10070         * win32/vs6/libgstrtp.dsp:
10071         * win32/vs6/libgstrtsp.dsp:
10072         Update vs6 project files.
10073
10074 2007-05-09  Wim Taymans  <wim@fluendo.com>
10075
10076         * gst/rtsp/Makefile.am:
10077         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
10078         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
10079         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
10080         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
10081         (rtsp_range_free):
10082         * gst/rtsp/rtsprange.h:
10083         Add code to parse time ranges.
10084         Report DURATION on the stream when possible.
10085
10086 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
10087
10088         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10089         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10090         (gst_videomixer_collected):
10091           Fix strides calculation for AYUV (it's just width*4) (#436910).
10092
10093 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
10094
10095         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10096         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10097         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10098         Sync the GObject properties before each processing step to properly
10099         work with the controller.
10100
10101 2007-05-04  Wim Taymans  <wim@fluendo.com>
10102
10103         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10104         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10105         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10106         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10107         (gst_rtspsrc_change_state):
10108         Let more error state trickle down so that we can catch more error
10109         cases.
10110         Handle keep-alive a little smarter by selecting a method the server
10111         actually supports.
10112         Fix a race in UDP streaming shutdown.
10113
10114 2007-05-04  Wim Taymans  <wim@fluendo.com>
10115
10116         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10117         Ignore errors when trying to use the keep-alive messages.
10118
10119 2007-05-04  Wim Taymans  <wim@fluendo.com>
10120
10121         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10122         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10123         (gst_rtspsrc_stream_configure_manager),
10124         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10125         (gst_rtspsrc_stream_configure_mcast),
10126         (gst_rtspsrc_stream_configure_udp),
10127         (gst_rtspsrc_stream_configure_udp_sink),
10128         (gst_rtspsrc_stream_configure_transport):
10129         Send RTCP messages back to the server over the TCP connection.
10130
10131         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10132         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10133         (rtsp_connection_receive):
10134         * gst/rtsp/rtspconnection.h:
10135         Factor out and expose lowlevel _write and _read methods.
10136         Implement sending data messages to the server.
10137
10138 2007-05-03  Wim Taymans  <wim@fluendo.com>
10139
10140         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10141         (gst_multipart_mux_collected):
10142         Fix timestamps on outgoing buffers.
10143
10144 2007-05-03  Wim Taymans  <wim@fluendo.com>
10145
10146         * gst/multipart/multipartmux.c:
10147         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10148         (gst_multipart_mux_change_state):
10149         Emit NEWSEGMENT events before pushing the first buffer.
10150
10151 2007-05-03  Wim Taymans  <wim@fluendo.com>
10152
10153         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10154         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10155         (gst_rtspsrc_handle_src_query),
10156         (gst_rtspsrc_stream_configure_manager),
10157         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10158         (gst_rtspsrc_stream_configure_mcast),
10159         (gst_rtspsrc_stream_configure_udp),
10160         (gst_rtspsrc_stream_configure_udp_sink),
10161         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10162         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10163         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10164         (gst_rtspsrc_pause):
10165         Refactor transport configuration code.
10166         Create internal pads for TCP transport so that we can implement events
10167         and queries.
10168         Handle events and queries.
10169         Parse range from the SDP.
10170         Fix race in pause handler where the connection could still be flushing.
10171
10172 2007-05-02  Wim Taymans  <wim@fluendo.com>
10173
10174         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10175         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10176         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10177         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10178         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10179         (gst_rtspsrc_change_state):
10180         * gst/rtsp/gstrtspsrc.h:
10181         Fix race when multiple udp sources post timeouts, just act on the first
10182         received timeout.
10183         Protect stream list with a recursive lock to fix some races.
10184         Flush connection when we need to do a reconnect or stop.
10185         Make state lock recursive.
10186
10187         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10188         (rtsp_connection_close):
10189         Some small cleanups.
10190
10191 2007-05-02  Wim Taymans  <wim@fluendo.com>
10192
10193         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10194         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10195         Only set DISCONT when there actually is a discont or when we just
10196         started.
10197
10198 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10199
10200         * ext/flac/gstflac.c: (plugin_init):
10201         Call bindtextdomain() to get localized strings.
10202
10203 2007-05-02  Wim Taymans  <wim@fluendo.com>
10204
10205         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10206         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10207         (gst_wavparse_stream_data):
10208         * gst/wavparse/gstwavparse.h:
10209         Be a bit more clever when dealing with VBR files with FACT tags, we
10210         don't want to timestamp buffers in that case but the estimated BPS can
10211         be used for seeking.
10212         Only send close segment in the streaming thread.
10213
10214 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10215
10216         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10217         Correctly post an error on the bus if something went wrong in the loop
10218         function. This fixes a few cases where the task was paused and nothing
10219         happened anymore.
10220
10221 2007-05-02  Wim Taymans  <wim@fluendo.com>
10222
10223         * gst/rtsp/test.c: (main):
10224         Fix compilation of deprecated test just because I'm too lazy to delete
10225         it.
10226
10227 2007-05-02  Wim Taymans  <wim@fluendo.com>
10228
10229         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10230         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10231         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10232         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10233         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10234         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10235         * gst/rtsp/gstrtspsrc.h:
10236         Fix sending RTCP to the right place.
10237         Fix bug in reffing the wrong UDP element.
10238         Use new pad names for the session manager.
10239         Implement handling server requests in interleaved and UDP modes.
10240         Handle session keep-alive in UDP modes.
10241         Remove GCond for handling UDP timeouts.
10242
10243         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10244         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10245         (rtsp_connection_receive), (rtsp_connection_close):
10246         * gst/rtsp/rtspconnection.h:
10247         Store connection IP address for later.
10248         Add timeout args to all operations that might block forever.
10249         Parse session timeout.
10250         Only close sockets when not already closed.
10251
10252         * gst/rtsp/rtspdefs.c:
10253         * gst/rtsp/rtspdefs.h:
10254         Add timeout return value and error string.
10255
10256         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10257         Add small comment.
10258
10259 2007-05-01  Wim Taymans  <wim@fluendo.com>
10260
10261         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10262
10263         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10264         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10265         * gst/rtp/gstrtpmp4vpay.h:
10266         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10267
10268 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
10269
10270         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10271           Remove v4l2src from docs, since it breaks the docs build, and the
10272           plugin is only built if --enable-experimental is used anyway.
10273
10274         * docs/plugins/Makefile.am:
10275           Spaces => tab.
10276
10277 2007-04-29  Wim Taymans  <wim@fluendo.com>
10278
10279         * gst/udp/gstmultiudpsink.c: (leave_multicast),
10280         (gst_multiudpsink_add), (gst_multiudpsink_remove):
10281         Add code to drop membership of a multicast group.
10282
10283         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10284         (gst_udpsink_set_uri):
10285         Implement URI handler.
10286
10287         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10288         (gst_rtspsrc_parse_rtpinfo):
10289         Use URI handler to make udpsink instace.
10290         Improve code to configure port and destination.
10291
10292 2007-04-29  Wim Taymans  <wim@fluendo.com>
10293
10294         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10295         Fix multicast detection.
10296         Don't try to join a multicast group if the address is not multicast.
10297
10298         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10299         Small debug improvement.
10300
10301 2007-04-27  Wim Taymans  <wim@fluendo.com>
10302
10303         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10304         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10305         (gst_rtspsrc_handle_message):
10306         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10307         parent.
10308
10309 2007-04-27  Wim Taymans  <wim@fluendo.com>
10310
10311         * gst/rtp/gstrtpilbcdepay.h:
10312         Fix mode property when specified as an arg.
10313
10314 2007-04-26  Edward Hervey  <edward@fluendo.com>
10315
10316         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10317         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10318         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10319         * docs/plugins/inspect/plugin-osxaudio.xml:
10320         Add documentation for osxaudio plugin.
10321
10322 2007-04-26  Wim Taymans  <wim@fluendo.com>
10323
10324         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10325         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10326         (gst_rtspsrc_open), (gst_rtspsrc_close),
10327         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10328         (gst_rtspsrc_pause):
10329         * gst/rtsp/gstrtspsrc.h:
10330         Protect state changes with a lock.
10331
10332         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10333         (parse_line):
10334         * gst/rtsp/rtspconnection.h:
10335         Remove some unused stuff.
10336
10337 2007-04-26  Wim Taymans  <wim@fluendo.com>
10338
10339         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10340         Handle the case where there are exactly 0 bytes to read and the ioctl
10341         did not report an error. Fixes #433530.
10342
10343 2007-04-26  Wim Taymans  <wim@fluendo.com>
10344
10345         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10346         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10347         * gst/wavparse/gstwavparse.h:
10348         Apply DISCONT to buffers.
10349         Only apply timestamp to the first sample after a DISCONT, too many VBR
10350         files cause random jitter in the timestamps. Fixes #433119.
10351
10352 2007-04-25  Wim Taymans  <wim@fluendo.com>
10353
10354         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10355         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10356         (gst_rtp_dec_get_property):
10357         * gst/rtsp/gstrtpdec.h:
10358         Add dummy latency property to be backwards compat with rtpbin.
10359
10360         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10361         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10362         (gst_rtspsrc_stream_configure_transport),
10363         (gst_rtspsrc_parse_rtpinfo):
10364         * gst/rtsp/gstrtspsrc.h:
10365         Add latency property and configure in the session manager.
10366         Don't set invalid clock-base and seqnum-base on caps, some servers
10367         sometimes don't send them.
10368
10369 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10370
10371         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10372         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10373           Double-check that RGB input caps are really RGBA caps (apparently
10374           the core doesn't always catch it if those caps aren't a subset of
10375           our template caps, also see #421543). Fixes #429319 in a way.
10376           Also, don't leak the pad template in the transform_caps function.
10377
10378         * tests/check/Makefile.am:
10379         * tests/check/elements/.cvsignore:
10380         * tests/check/elements/alphacolor.c: (setup_alphacolor),
10381         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10382         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10383         (GST_START_TEST), (alphacolor_suite):
10384           Add some basic unit tests for alphacolor.
10385
10386 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10387
10388         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10389           If we get a fatal flow return in the loop function, first post the
10390           error message and only then send the EOS event downstream, otherwise
10391           applications might get an eos message before the error message and
10392           think everything was ok (related to #429319).
10393
10394 2007-04-25  Wim Taymans  <wim@fluendo.com>
10395
10396         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10397         Read the channel byte as an unsigned byte.
10398
10399 2007-04-25  Wim Taymans  <wim@fluendo.com>
10400
10401         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10402         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10403         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10404         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10405         (gst_rtp_gsm_depay_setcaps):
10406         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10407         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10408         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10409         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10410         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10411         (gst_ilbc_depay_get_property):
10412         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10413         * gst/rtp/gstrtpmp4adepay.c:
10414         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10415         (gst_rtp_pcma_depay_setcaps):
10416         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10417         (gst_rtp_pcmu_depay_setcaps):
10418         Make sure we configure the clock_rate in the baseclass in the setcaps
10419         function. Fixes #431282.
10420
10421 2007-04-25  Wim Taymans  <wim@fluendo.com>
10422
10423         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10424         (gst_rtspsrc_stream_free), (request_pt_map),
10425         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10426         * gst/rtsp/gstrtspsrc.h:
10427         Parse server address from SDP.
10428         Hook up a udpsink to send RTCP back to the server.
10429
10430         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10431         * gst/rtsp/rtsptransport.h:
10432         Add some docs.
10433
10434 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
10435
10436         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10437           Make header field check conditional. Fixes #433135
10438
10439 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
10440
10441         * docs/plugins/Makefile.am:
10442         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10443         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10444         * docs/plugins/inspect/plugin-alphacolor.xml:
10445         * gst/alpha/Makefile.am:
10446         * gst/alpha/gstalphacolor.c:
10447         * gst/alpha/gstalphacolor.h:
10448           Add minimal docs blurb to alphacolor; split out headers into
10449           separate header file for gtk-doc.
10450
10451 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
10452
10453         * gst/debug/progressreport.c: (gst_progress_report_report):
10454           Don't try to post NULL message (in case we can't query upstream
10455           position or duration).
10456
10457 2007-04-18  Michael Smith  <msmith@fluendo.com>
10458
10459         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10460         (gst_cutter_get_caps):
10461         * gst/cutter/gstcutter.h:
10462           Fix some of the most obvious bugs in cutter. Now doesn't leak
10463           everything if input is silent.
10464
10465 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
10466
10467         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10468         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10469         * gst/wavenc/gstwavenc.h:
10470         Wav apparently only supports width==GST_ROUND_UP(depth), everything
10471         else results in a invalid block align and invalid files.
10472
10473 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10474
10475         Patch by: Snaik <snaik32 gmail com>
10476
10477         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10478           Add missing break statement for BOX_HORIZONTAL case.
10479
10480 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10481
10482         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10483
10484         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10485         Use correct format strings for integer types.
10486
10487 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10488
10489         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10490         (gst_wavparse_create_sourcepad):
10491         Use gst_riff_create_audio_template_caps () instead of the local caps.
10492         This makes updates of the local caps unecessary whenever libgstriff
10493         gets support for new formats.
10494
10495 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
10496
10497         Patch by: Brian Cameron  <brian.cameron at sun dot com>
10498
10499         * sys/sunaudio/gstsunaudio.c:
10500         * sys/sunaudio/gstsunaudiomixer.c:
10501         * sys/sunaudio/gstsunaudiomixer.h:
10502         * sys/sunaudio/gstsunaudiomixerctrl.c:
10503         * sys/sunaudio/gstsunaudiomixerctrl.h:
10504         * sys/sunaudio/gstsunaudiomixertrack.h:
10505         * sys/sunaudio/gstsunaudiosink.c:
10506         * sys/sunaudio/gstsunaudiosink.h:
10507         * sys/sunaudio/gstsunaudiosrc.c:
10508         * sys/sunaudio/gstsunaudiosrc.h:
10509           Fix and/or update copyright attributions (#430228).
10510
10511 2007-04-13  Wim Taymans  <wim@fluendo.com>
10512
10513         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10514         Fix docs.
10515
10516         * gst/rtsp/URLS:
10517         Add some more example urls.
10518
10519         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10520         (gst_rtp_dec_chain_rtp):
10521         Better debugging.
10522
10523         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10524         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10525         (gst_rtspsrc_parse_rtpinfo):
10526         Remove unused code.
10527
10528 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10529
10530         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10531         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10532         (gst_wavparse_stream_data):
10533           Relax the audio/mpeg caps again and add FIXME: comment.
10534
10535 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10536
10537         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10538         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10539         (gst_wavparse_stream_data):
10540         * gst/wavparse/gstwavparse.h:
10541           More sanity check for the header fields. Fix type for 'rate' header
10542           field.
10543
10544 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
10545
10546         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10547         (gst_icydemux_unicodify):
10548           If the metadata strings we get in the stream are not UTF-8, try to
10549           interpret them according to the character encodings specified in the
10550           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10551           only fall back to locale/ISO-8859-1 if those aren't set or don't
10552           work. Should fix #428901.
10553
10554 2007-04-12  Wim Taymans  <wim@fluendo.com>
10555
10556         * gst/rtp/gstrtph264depay.c:
10557         Use the proper sync word for SPS and PPS.
10558
10559 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10560
10561         * gst/rtp/Makefile.am:
10562         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10563           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10564         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10565           Add a simple hashing implementation that we can use to generate
10566           a 24-bit ident value based on the codebooks for vorbis and theora.
10567         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10568           gst_rtp_theora_pay_handle_buffer):
10569         * gst/rtp/gstrtpvorbisdepay.c
10570           (gst_rtp_vorbis_depay_parse_configuration,
10571           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10572         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10573           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10574           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10575           Use the hashing function, ensuring that the same codebooks result
10576           in the same ident and thus the same SDP description.
10577           Various log fixes/changes.
10578
10579 2007-04-12  Wim Taymans  <wim@fluendo.com>
10580
10581         Patch by: jerry tan <jerry dot tan at sun dot com>
10582
10583         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10584         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10585         application's responsibility to make sure it open the device once.
10586         Remove a careless error if AUDIODEV is set. Fixes #392620.
10587
10588 2007-04-12  Wim Taymans  <wim@fluendo.com>
10589
10590         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10591         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10592         * gst/rtsp/gstrtpdec.h:
10593         Make backward compat with rtpbin by adding the request-pt-map signals.
10594
10595         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10596         (new_session_pad), (request_pt_map),
10597         (gst_rtspsrc_stream_configure_transport),
10598         (gst_rtspsrc_stream_configure_caps),
10599         (gst_rtspsrc_activate_streams):
10600         * gst/rtsp/gstrtspsrc.h:
10601         Implement request-pt-map signals instead of setting caps on the buffers
10602         for the session manager.
10603
10604 2007-04-11  Wim Taymans  <wim@fluendo.com>
10605
10606         * gst/udp/gstudp.c: (plugin_init):
10607         Register GstNetBuffer in plugin_init so that the type can be used from
10608         multiple threads without races.
10609
10610 2007-04-10  Wim Taymans  <wim@fluendo.com>
10611
10612         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10613         (gst_rtp_amr_depay_process):
10614         Fix depayloader clock_rate and some cleanups.
10615
10616         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10617         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10618         * gst/rtp/gstrtph264depay.h:
10619         Don't push codec_data in the adapter because it might get flushed when
10620         we get a discont.
10621
10622         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10623         Handle multiple AU per packet.
10624
10625         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10626         (gst_rtp_sv3v_depay_plugin_init):
10627         Disable rank, this one does not work.
10628         Remove timestamping, base class does that.
10629
10630 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
10631
10632         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10633           limit caps to the formats we announce in the template
10634
10635         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10636         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10637         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10638           fix some crashers/asserts when dealing with broken files
10639
10640 2007-04-10  Wim Taymans  <wim@fluendo.com>
10641
10642         Patch by: Peter Kjellerstedt  <pkj at axis com>
10643
10644         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10645         * gst/rtp/gstrtpL16depay.c:
10646         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10647         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10648         (gst_rtp_speex_depay_setcaps):
10649         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10650         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10651         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10652         Fix some compiler warnings. Fixes #428182.
10653
10654 2007-04-06  Wim Taymans  <wim@fluendo.com>
10655
10656         * gst/rtsp/Makefile.am:
10657         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10658         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10659         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10660         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10661         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10662         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10663         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10664         (create_rtcp), (gst_rtp_dec_request_new_pad),
10665         (gst_rtp_dec_release_pad):
10666         * gst/rtsp/gstrtpdec.h:
10667         * gst/rtsp/gstrtsp.c: (plugin_init):
10668         Morph RTPDec into something compatible with RTPBin as a fallback.
10669         Various other style fixes.
10670
10671         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10672         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10673         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10674         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10675         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10676         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10677         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10678         * gst/rtsp/gstrtspsrc.h:
10679         Implement RTPBin session manager handling.
10680         Don't try to add empty properties to caps.
10681         Implement fallback session manager, handling.
10682         Don't combine errors from RTCP streams, just ignore them.
10683
10684         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10685         * gst/rtsp/rtsptransport.h:
10686         Implement fallback session manager.
10687         Make RTPBin the default one when available.
10688
10689 2007-04-05  Wim Taymans  <wim@fluendo.com>
10690
10691         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10692         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10693         This element is ready to be autoplugged.
10694
10695 2007-04-05  Julien MOUTTE  <julien@moutte.net>
10696
10697         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10698         Don't leave the offsets defined by upstream element on the
10699         compressed data buffer we are pushing downstream. Make them
10700         GST_BUFFER_OFFSET_NONE.
10701
10702 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
10703
10704         * gst/avi/README:
10705         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10706         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10707         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10708         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10709         (gst_avi_demux_calculate_durations_from_index),
10710         (gst_avi_demux_stream_header_push),
10711         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10712         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10713           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10714
10715 2007-04-03  Wim Taymans  <wim@fluendo.com>
10716
10717         * gst/smpte/barboxwipes.c:
10718         Fix error as spotted by Snaik <snaik32 at gmail dot com>
10719
10720 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10721
10722         * gst/wavparse/gstwavparse.c:
10723         Support audio/x-raw-float in wav files. This only works with
10724         plugins-base CVS, using an older version doesn't have any
10725         disadvantages though.
10726
10727 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10728
10729         * configure.ac:
10730         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10731         (gst_au_parse_parse_header), (gst_au_parse_chain):
10732         * gst/auparse/gstauparse.h:
10733         Revert last change as we don't want plugins-good to depend on
10734         plugins-base CVS now.
10735
10736 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10737
10738         * configure.ac:
10739         Require gst-plugins-base CVS for audioconvert with non-native
10740         float support and width/depth fix in libgstriff.
10741
10742         Patch by: René Stadler <mail at renestadler dot de>
10743
10744         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10745         (gst_au_parse_parse_header), (gst_au_parse_chain):
10746         * gst/auparse/gstauparse.h:
10747         Don't swap the floats ourself if they're not in native endianness.
10748         Instead let audioconvert handle this. Fixes #339838.
10749
10750 2007-03-29  Wim Taymans  <wim@fluendo.com>
10751
10752         * gst/rtp/gstasteriskh263.h:
10753         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10754         (gst_rtp_h263p_depay_change_state):
10755         * gst/rtp/gstrtph263pdepay.h:
10756         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10757         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10758         (gst_rtp_h264_depay_change_state):
10759         * gst/rtp/gstrtph264depay.h:
10760         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10761         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10762         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10763         Flush adapter on disconts.
10764
10765 2007-03-29  Wim Taymans  <wim@fluendo.com>
10766
10767         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10768         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10769         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10770         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10771         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10772         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10773         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10774         (gst_rtp_mp4v_depay_process):
10775         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10776         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10777         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10778         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10779         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10780         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10781         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10782         Use more efficient adapter and rtpbuffer methods when possible.
10783
10784 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10785
10786         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10787         (gst_wavenc_sink_setcaps):
10788         Correctly handle width!=depth input.
10789         * gst/wavparse/gstwavparse.c:
10790         Already export in the caps that width==8 uses unsigned samples and
10791         everything else uses signed samples.
10792
10793 2007-03-29  Wim Taymans  <wim@fluendo.com>
10794
10795         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10796
10797         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10798         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10799         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10800         (gst_dynudpsink_close):
10801         * gst/udp/gstdynudpsink.h:
10802         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10803         (gst_udpsrc_create), (gst_udpsrc_set_property),
10804         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10805         * gst/udp/gstudpsrc.h:
10806         Rework the socket allocation a bit based on the sockfd argument so that
10807         it becomes usable.
10808         Add a closefd property to instruct the udp elements to close the custom
10809         file descriptors when going to READY. Fixes #423304.
10810         API:GstUDPSrc::closefd property
10811         API:GstDynUDPSink::closefd property
10812
10813 2007-03-29  Wim Taymans  <wim@fluendo.com>
10814
10815         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10816
10817         * gst/rtp/Makefile.am:
10818         * gst/rtp/gstrtp.c: (plugin_init):
10819         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10820         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10821         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10822         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10823         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10824         (gst_rtp_h264_pay_plugin_init):
10825         * gst/rtp/gstrtph264pay.h:
10826         Added H264 payloader. Fixes #423782.
10827
10828         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10829         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10830         Small fixes.
10831
10832 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10833
10834         * gst/wavparse/gstwavparse.c:
10835         Actually support depths from 1 to 32, not only 8 to 32.
10836
10837 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10838
10839         * gst/wavparse/gstwavparse.c:
10840         Add support for wav files containing audio/x-raw-int with random
10841         depths between 1 and 32 bits.
10842
10843 2007-03-28  Wim Taymans  <wim@fluendo.com>
10844
10845         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
10846
10847         * gst/rtp/Makefile.am:
10848         * gst/rtp/gstrtp.c: (plugin_init):
10849         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10850         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10851         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10852         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10853         (gst_rtp_mp4a_depay_get_property),
10854         (gst_rtp_mp4a_depay_change_state),
10855         (gst_rtp_mp4a_depay_plugin_init):
10856         * gst/rtp/gstrtpmp4adepay.h:
10857         Added MP4A-LATM depayloader. Fixes #417792.
10858
10859         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10860         (gst_rtp_mp4v_depay_process):
10861         Fixup depayloader, setting codec_data, using more efficient adaptor and
10862         rtpbuffer handling.
10863
10864         * gst/rtsp/URLS:
10865         Add url to test above.
10866
10867 2007-03-25  Wim Taymans  <wim@fluendo.com>
10868
10869         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10870         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10871         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10872         (gst_rtspsrc_media_to_caps),
10873         (gst_rtspsrc_stream_configure_transport),
10874         (gst_rtspsrc_stream_configure_caps),
10875         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10876         * gst/rtsp/gstrtspsrc.h:
10877         Handle default clock-rates for static payload types, rearrange stuff so
10878         that the rtpmap field in the sdp can override the defaults.
10879         Parse RTP-Info field to get the seqnum and timebase fields that should
10880         go in the caps.
10881         Delay configuring caps after we got the RTP-Info from the PLAY reply from
10882         the server. 
10883
10884 2007-03-22  Wim Taymans  <wim@fluendo.com>
10885
10886         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10887
10888         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10889         Accept complex pipeline descriptions as an audio profile instead of just
10890         a single element. Fixes #420658.
10891
10892 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10893
10894         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10895           Rename registered type in preparation of GstTagDemux moving to
10896           -base at some point in the future.
10897
10898 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
10899
10900         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10901           Streaming mode fixes: don't unref buffer we don't own any longer;
10902           remove bogus adapter flush. Fixes #419338.
10903
10904 2007-03-17  David Schleef  <ds@schleef.org>
10905
10906         * REQUIREMENTS: Change the format to key/value, add a bunch of
10907           information, remove a bunch of requirements that are for
10908           other GStreamer packages.
10909
10910 2007-03-17  David Schleef  <ds@schleef.org>
10911
10912         * REQUIREMENTS: Fix a few things.  This file really needs a
10913         good once-over.
10914
10915 2007-03-15  Edward Hervey  <edward@fluendo.com>
10916
10917         * sys/Makefile.am:
10918         Don't forget to distribute the sys/osxaudio/ directory.
10919
10920 2007-03-15  Edward Hervey  <edward@fluendo.com>
10921
10922         * configure.ac:
10923         * sys/Makefile.am:
10924         * sys/osxaudio/Makefile.am:
10925         * sys/osxaudio/gstosxaudio.c:
10926         * sys/osxaudio/gstosxaudiosink.c:
10927         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
10928         (gst_osx_audio_sink_getcaps),
10929         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
10930         * sys/osxaudio/gstosxaudiosrc.c:
10931         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
10932         (gst_osx_audio_src_create_ringbuffer):
10933         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
10934         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
10935         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
10936         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
10937         * sys/osxaudio/gstosxringbuffer.h:
10938         Activate osxaudio in gst-plugins-good with proper build setup.
10939         Add inlined documentation.
10940         Fix debug statements
10941         Fix ringbuffer when pausing.
10942         Fixes #323471
10943
10944 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10945         * gst/rtp/gstrtppcmapay.c:
10946         * gst/rtp/gstrtppcmapay.h:
10947         * gst/rtp/gstrtppcmupay.c:
10948         * gst/rtp/gstrtppcmupay.h:
10949         Ported mulaw and alaw payloaders to use new base class
10950
10951 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10952
10953         * po/af.po:
10954         * po/az.po:
10955         * po/cs.po:
10956         * po/en_GB.po:
10957         * po/it.po:
10958         * po/nl.po:
10959         * po/or.po:
10960         * po/sq.po:
10961         * po/sr.po:
10962         * po/sv.po:
10963         * po/uk.po:
10964         * po/vi.po:
10965           Update translations.
10966
10967 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10968
10969         * configure.ac:
10970           Fix string replace error (AG_AG_GST_* => AG_GST_*).
10971
10972 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
10973
10974         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
10975           Fix handling of -1 values for start and stop values when seeking,
10976           and SEEK_CUR+SEEK_END here as well.
10977
10978 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
10979
10980         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
10981           Fix handling of -1 values for start and stop values when seeking, 
10982           and SEEK_CUR+SEEK_END.
10983
10984 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
10985
10986         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
10987           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
10988           the image format a variable-length NUL-terminated string; in
10989           versions before that the image format is a fixed-length string of
10990           3 characters (see #348644 for a sample tag).
10991           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
10992
10993 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
10994
10995         * win32/MANIFEST:
10996         Add new project files to MANIFEST.
10997         * win32/vs6/libgstaudiofx.dsp:
10998         * win32/vs6/libgstrtp.dsp:
10999         * win32/vs6/libgstrtsp.dsp:
11000         Update project files.
11001         
11002 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
11003
11004         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
11005         (gst_avi_demux_parse_index):
11006         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
11007         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
11008           Printf format fixes; also add some missing quotes in translated
11009           strings. Fixes #416728 and #416727.
11010
11011 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11012
11013         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
11014           Tim and I can't think of any reason the child audio sink needs to 
11015           be set back to NULL after successfully determining that it can 
11016           reach READY - it gets immediately set back to READY by the caller
11017           anyway, causing an unnecessary close/open of any audio devices
11018           involved.
11019
11020 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11021
11022         * po/LINGUAS:
11023         * po/ja.po:
11024           Add ja.po file from #377306.
11025
11026 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
11027
11028         * sys/sunaudio/gstsunaudio.c: (plugin_init):
11029         * sys/sunaudio/gstsunaudiomixertrack.c:
11030         (gst_sunaudiomixer_track_new):
11031           Actually translate sunaudio mixer track labels instead of just
11032           marking the strings as translatable (#377306); clean up weird
11033           label string mapping code that serves no apparent purpose. Also
11034           set the 'untranslated-label' property when creating mixer tracks
11035           if the GstMixerTrack base class supports this.
11036
11037         * tests/check/Makefile.am:
11038         * tests/check/elements/.cvsignore:
11039         * tests/check/elements/sunaudio.c: (GST_START_TEST),
11040         (sunaudio_suite):
11041           Very minimalistic unit test for sunaudiomixer element (compiles, but not
11042           actually tested on a system where sunaudiomixer is available).
11043
11044 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11045
11046         * tests/check/Makefile.am:
11047         Re-enable the states test and see if it works on the buildbots.
11048
11049 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
11050
11051         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
11052         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
11053         (gst_dvdec_change_state):
11054         * ext/dv/gstdvdec.h:
11055         Infer pixel-aspect-ratio from the video frame format if it isn't
11056         provided by the container, as happens when playing DV from AVI
11057         or Quicktime containers.
11058
11059         Patch by: Wim Taymans <wim@fluendo.com>
11060         Fixes #380944
11061
11062 2007-03-09  Wim Taymans  <wim@fluendo.com>
11063
11064         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
11065         When activated, remove the udpsrc timeout, we have dataflow and timeouts
11066         will later be handled by the jitterbuffer.
11067
11068 2007-03-09  Wim Taymans  <wim@fluendo.com>
11069
11070         * ext/taglib/gstid3v2mux.cc:
11071         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
11072         Fixes #414496.
11073         
11074         Patch by: Alex Lancaster <alexl at users sourceforge net>
11075
11076 2007-03-09  Wim Taymans  <wim@fluendo.com>
11077
11078         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11079         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
11080         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11081         (gst_avi_demux_chain):
11082         Fix stream position reporting after a seek. Fixes #416445.
11083
11084 2007-03-08  Wim Taymans  <wim@fluendo.com>
11085
11086         Patch by: René Stadler <mail at renestadler dot de>
11087
11088         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11089         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
11090         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
11091         Make avidemux accept optional header chunks in any order.
11092         Fixes #415446.
11093
11094 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
11095
11096         * tests/check/Makefile.am:
11097         Disable the states check until the remaining Valgrind errors
11098         are fixed or suppressed.
11099
11100 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11101
11102         * tests/check/elements/.cvsignore:
11103           Add audiodynamic check to .cvsignore
11104
11105 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11106
11107         reviewed by: Stefan Kost  <ensonic@users.sf.net>
11108
11109         * gst/audiofx/Makefile.am:
11110         * gst/audiofx/audiodynamic.c:
11111         (gst_audio_dynamic_characteristics_get_type),
11112         (gst_audio_dynamic_mode_get_type),
11113         (gst_audio_dynamic_set_process_function),
11114         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11115         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11116         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11117         (gst_audio_dynamic_transform_hard_knee_compressor_int),
11118         (gst_audio_dynamic_transform_hard_knee_compressor_float),
11119         (gst_audio_dynamic_transform_soft_knee_compressor_int),
11120         (gst_audio_dynamic_transform_soft_knee_compressor_float),
11121         (gst_audio_dynamic_transform_hard_knee_expander_int),
11122         (gst_audio_dynamic_transform_hard_knee_expander_float),
11123         (gst_audio_dynamic_transform_soft_knee_expander_int),
11124         (gst_audio_dynamic_transform_soft_knee_expander_float),
11125         (gst_audio_dynamic_transform_ip):
11126         * gst/audiofx/audiodynamic.h:
11127         * gst/audiofx/audiofx.c: (plugin_init):
11128         Add new audiodynamic element which can act as a compressor or
11129         expander. Supported are hard-knee and soft-knee operation modes with
11130         user-specified ratio and threshold.
11131         Attack and release parameters are not yet implemented but will follow.
11132         * docs/plugins/Makefile.am:
11133         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11134         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11135         * docs/plugins/gst-plugins-good-plugins.args:
11136         * docs/plugins/inspect/plugin-audiofx.xml:
11137         Integrate audiodynamic into the docs.
11138         * tests/check/Makefile.am:
11139         * tests/check/elements/audiodynamic.c: (setup_dynamic),
11140         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11141         Add unit test for audiodynamic.
11142
11143 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
11144
11145         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11146         Free handles that we allocated when exiting via the error paths.
11147
11148 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
11149
11150         * gst/level/gstlevel.c: (gst_level_class_init),
11151         (gst_level_set_caps), (gst_level_start), (gst_level_event),
11152         (gst_level_transform_ip):
11153         * gst/level/gstlevel.h:
11154           Resolve message timestamps against the playback segment.
11155
11156 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11157
11158         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11159         (gst_id3demux_sink_activate):
11160           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11161           caps passed to it (previously one code path assumed it took ownership
11162           while another one assumed it didn't, while in fact it sometimes did and
11163           sometimes didn't ...).
11164
11165         * configure.ac:
11166         * tests/files/Makefile.am:
11167         * tests/files/id3-407349-1.tag:
11168         * tests/files/id3-407349-2.tag:
11169           Add directory where data for unit tests can be stored.
11170
11171         * tests/Makefile.am:
11172         * tests/check/Makefile.am:
11173         * tests/check/elements/.cvsignore:
11174         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11175         (read_tags_from_file), (run_check_for_file),
11176         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11177           Add unit test for id3demux, and in particular for bug #407349. Only
11178           testing pull-mode for now; push mode doesn't work yet because the test
11179           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11180
11181 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11182
11183         * tests/check/Makefile.am:
11184           Add missing backslash at end of line.
11185
11186 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11187
11188         Trigger rebuild.
11189
11190 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11191
11192         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11193         * gst/id3demux/id3tags.h:
11194         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11195         (parse_obsolete_tdat_frame):
11196           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11197           the four-digit number will be interpreted as a year, whereas it is
11198           month and day in DDMM format. Instead, parse TDAT frames and fix up
11199           the date in the GST_TAG_DATE tag later if we also extracted a year.
11200           Fixes #407349.
11201
11202 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11203
11204         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11205         (gst_switch_commit_new_kid):
11206         Fix up the dispose logic so it doesn't leak, and fix setting of 
11207         the child state so that we don't set a child to our current state 
11208         just as we are changing it to something else.
11209
11210 2007-03-06  Wim Taymans  <wim@fluendo.com>
11211
11212         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11213         (gst_goom_chain):
11214         * gst/goom/gstgoom.h:
11215         Document, fix and improve goom adapter behaviour.
11216         Fixes #407006.
11217
11218 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11219
11220         * ext/esd/esdsink.c: (gst_esdsink_open):
11221         Unref static pad template after using it.
11222
11223 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11224
11225         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11226         (gst_switch_commit_new_kid):
11227         Fix up the reference counting of the child elements.
11228
11229 2007-03-05  Wim Taymans  <wim@fluendo.com>
11230
11231         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11232         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11233         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11234         Fix encoding-name case.
11235
11236 2007-03-05  Wim Taymans  <wim@fluendo.com>
11237
11238         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11239         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11240         (gst_rtp_speex_depay_process):
11241         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11242         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11243         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11244         (gst_rtp_speex_pay_change_state):
11245         * gst/rtp/gstrtpspeexpay.h:
11246         Fix speex (de)payloader. Fixes #358040.
11247
11248 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11249
11250         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11251         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11252         Install fakesink in NULL by fixing some broken logic. This obviates
11253         the need to manually set _IS_SINK.
11254         Add some comments and remove a little cruft while I'm at it.
11255
11256 2007-03-05  Wim Taymans  <wim@fluendo.com>
11257
11258         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11259         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11260
11261 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
11262
11263         * po/POTFILES.in:
11264           Update.
11265
11266 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11267
11268         * tests/check/Makefile.am:
11269         Gah! Also disable gconfvideosink from the tests, otherwise
11270         it will instantiate autovideosink, and dfbvideosink and
11271         leak on the buildbots.
11272
11273 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11274
11275         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11276         (gst_cdio_cdda_src_finalize):
11277         Make sure we always destroy our libcdio handle.
11278
11279 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11280
11281         * tests/check/Makefile.am:
11282         Disable autovideosink so the buildbots don't barf over memory
11283         leaked in the directfb sink.
11284
11285 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11286
11287         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11288         Chain up in dispose
11289
11290 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11291
11292         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11293         (gst_multipart_find_pad_by_mime):
11294         Use gst_pad_new_from_static_template instead of
11295         static_pad_template_get+pad_new.
11296
11297 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11298
11299         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11300         Catch the case where no clock has been set.
11301
11302 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11303
11304         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11305         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11306         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11307         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11308         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11309         (gst_gconf_audio_src_finalize), (do_toggle_element):
11310         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11311         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11312         (do_toggle_element):
11313         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11314         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11315         (gst_gconf_video_src_finalize), (do_toggle_element):
11316         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11317         (gst_switch_sink_reset), (gst_switch_sink_set_child):
11318         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11319         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11320         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11321         (gst_shout2send_init), (gst_shout2send_finalize):
11322         * gst/debug/testplugin.c: (gst_test_class_init),
11323         (gst_test_finalize):
11324         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11325         (gst_flxdec_dispose):
11326         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11327         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11328         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11329         (gst_rtspsrc_finalize):
11330         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11331         * gst/rtsp/rtspextwms.h:
11332         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11333         (gst_smpte_finalize):
11334         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11335         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11336         (gst_udpsink_finalize):
11337         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11338         (gst_wavparse_sink_activate):
11339         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11340         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11341         (gst_oss_src_finalize):
11342         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11343         * sys/v4l2/gstv4l2object.h:
11344         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11345         (gst_v4l2src_finalize):
11346         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11347
11348         Fix a bunch of leaks shown by the newly-added states test.
11349
11350 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11351
11352         * ext/dv/gstdvdec.c: (gst_dvdec_init):
11353         Use gst_pad_new_from_static_template instead of 
11354         static_pad_template_get+pad_new.
11355
11356 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
11357
11358         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11359
11360         * ext/libcaca/Makefile.am:
11361         * gst/debug/Makefile.am:
11362           Don't mix tabs and spaces (#414168).
11363
11364 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11365
11366         * tests/check/generic/.cvsignore:
11367           Ignore files to please buildbot.
11368
11369 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11370
11371         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11372         (gst_wavparse_stream_data):
11373           Unbreak my previous commit (swapped nominator & denominator). Tim,
11374           thanks for spotting.
11375
11376 2007-03-02  Wim Taymans  <wim@fluendo.com>
11377
11378         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11379         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11380         (gst_cdio_cdda_src_finalize):
11381         Small code cleanups.
11382         Don't use pad_alloc as the base class cannot deal with the error codes.
11383
11384 2007-03-02  Wim Taymans  <wim@fluendo.com>
11385
11386         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11387         (gst_udpsrc_create):
11388         Fix doc.
11389
11390 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11391
11392         Patch by: René Stadler <mail@renestadler.de>
11393
11394         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11395         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11396         (gst_wavparse_stream_data):
11397           Handle rounding better to not drop last sample frame. Fixes #356692
11398
11399 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
11400
11401         * tests/check/Makefile.am:
11402         Disable cacasink from the states check too - it also calls exit(1)
11403         on us when it can't find a terminal to talk to.
11404
11405 2007-03-02  Wim Taymans  <wim@fluendo.com>
11406
11407         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11408
11409         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11410         (gst_udpsrc_create), (gst_udpsrc_set_property),
11411         (gst_udpsrc_get_property):
11412         * gst/udp/gstudpsrc.h:
11413         Add support to strip proprietary headers. Fixes #350296.
11414
11415 2007-03-02  Wim Taymans  <wim@fluendo.com>
11416
11417         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11418         Fix compilation.
11419
11420 2007-03-02  Wim Taymans  <wim@fluendo.com>
11421
11422         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11423
11424         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11425         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11426         (gst_rtp_mp2t_depay_set_property),
11427         (gst_rtp_mp2t_depay_get_property):
11428         * gst/rtp/gstrtpmp2tdepay.h:
11429         Add support to strip off proprietary headers. Fixes #350278.
11430
11431 2007-03-02  Wim Taymans  <wim@fluendo.com>
11432
11433         * ext/hal/hal.c:
11434         Fix compilation.
11435
11436 2007-03-02  Wim Taymans  <wim@fluendo.com>
11437
11438         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11439         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11440         (gst_sunaudiosrc_open):
11441         * sys/sunaudio/gstsunaudiosrc.h:
11442         Remove device-name from GstSunAudioSrc. Fixes #412597.
11443
11444 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11445
11446         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11447         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11448         Having NULL as UDI previously selected the default sink/src. Change
11449         this back but mention it in the debug output.
11450         * ext/hal/hal.c: (gst_hal_get_alsa_element),
11451         (gst_hal_get_oss_element), (gst_hal_get_string),
11452         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11453         (gst_hal_get_audio_src):
11454         * ext/hal/hal.h:
11455         Refactor a bit, check all error conditions, greatly improve debugging
11456         and fix some possible memory leaks. Also implement OSS support
11457         and allow specifying an UDI that points to a real device. For this the
11458         child device which supports ALSA (preferred) or OSS is used.
11459         As a side effect this makes it impossible now to get a alsasink in
11460         halaudiosrc and a alsasrc in halaudiosink.
11461
11462 2007-03-01  Wim Taymans  <wim@fluendo.com>
11463
11464         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11465         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11466         Errors from the udp sources are not fatal unless all of them are in
11467         error.
11468
11469 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11470
11471         * tests/check/Makefile.am:
11472         Disable aasink in the states test. I suspect this is the element that
11473         is calling exit(1) when it can't proceed.
11474
11475 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11476
11477         * tests/check/Makefile.am:
11478         Draw plugins in from the build tree sys/ dir, rather than picking
11479         up the already installed versions.
11480
11481 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11482
11483         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11484         Error out correctly when getting xcontext fails.
11485
11486 2007-03-01  Wim Taymans  <wim@fluendo.com>
11487
11488         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11489         Make state change to PAUSED NO_PREROLL because that's what it will be in
11490         the future and rtspsrc relies on it.
11491
11492         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11493         (gst_rtspsrc_change_state):
11494         Don't error out when we don't get an error from the state change
11495         function.
11496
11497 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11498
11499         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11500         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11501           Check if the device UDI is set before trying to query HAL
11502           about it and give a useful error message if it wasn't set.
11503         * ext/hal/hal.c: (gst_hal_get_string):
11504           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11505           gives an assertion failure in D-Bus when running with
11506           DBUS_FATAL_WARNINGS=1.
11507
11508 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11509
11510         * configure.ac:
11511           Convert to new AG_GST style.
11512
11513 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11514
11515         * tests/check/Makefile.am:
11516         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11517           add test for states
11518
11519 2007-02-28  Wim Taymans  <wim@fluendo.com>
11520
11521         * tests/check/elements/.cvsignore:
11522         Add new videofilter check to .cvsignore.
11523
11524 2007-02-28  Wim Taymans  <wim@fluendo.com>
11525
11526         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11527         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11528         (gst_avi_demux_loop), (gst_avi_demux_chain):
11529         Fix combined flow return. Fixes #412608.
11530
11531 2007-02-28  Wim Taymans  <wim@fluendo.com>
11532
11533         * gst/videofilter/Makefile.am:
11534         Dist header..
11535
11536 2007-02-28  Wim Taymans  <wim@fluendo.com>
11537
11538         * gst/videofilter/gstgamma.h:
11539         Add header too.
11540
11541 2007-02-28  Wim Taymans  <wim@fluendo.com>
11542
11543         Patch by: Mark Nauwelaerts <manauw at skynet be>
11544
11545         * gst/videofilter/Makefile.am:
11546         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11547         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11548         (gst_gamma_get_property), (gst_gamma_calculate_tables),
11549         (oil_tablelookup_u8), (gst_gamma_set_caps),
11550         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11551         Port gamma filter to 0.10. Fixes #412704.
11552
11553         * tests/check/Makefile.am:
11554         * tests/check/elements/videofilter.c: (setup_filter),
11555         (cleanup_filter), (check_filter), (GST_START_TEST),
11556         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11557         Add unit tests for videofilters.
11558
11559 2007-02-28  Wim Taymans  <wim@fluendo.com>
11560
11561         * gst/rtsp/URLS:
11562         Add another interesting test url.
11563
11564         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11565         Don't allow getting header fields from data packets.
11566
11567 2007-02-28  Michael Smith  <msmith@fluendo.com>
11568
11569         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11570         (gst_shout2send_init), (gst_shout2send_start),
11571         (gst_shout2send_set_property), (gst_shout2send_get_property):
11572         * ext/shout2/gstshout2.h:
11573           Add a property for username.
11574
11575 2007-02-27  Christian Schallerr <christian@fluendo.com>
11576
11577         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11578
11579 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11580
11581         * gst/rtsp/Makefile.am:
11582         Fix make check too.
11583
11584 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11585
11586         * gst/rtsp/base64.c: (util_base64_encode):
11587         * gst/rtsp/base64.h:
11588         Commit missing files for base64 encoding.
11589
11590 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11591
11592         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11593
11594         * configure.ac:
11595         * ext/annodex/Makefile.am:
11596         * ext/jpeg/Makefile.am:
11597         * ext/speex/Makefile.am:
11598         * gst/alpha/Makefile.am:
11599         * gst/cutter/Makefile.am:
11600         * gst/debug/Makefile.am:
11601         * gst/effectv/Makefile.am:
11602         * gst/goom/Makefile.am:
11603         * gst/level/Makefile.am:
11604         * gst/smpte/Makefile.am:
11605         * gst/videofilter/Makefile.am:
11606           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11607
11608 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11609
11610         * gst/rtsp/Makefile.am:
11611         * gst/rtsp/rtspconnection.c: (append_auth_header),
11612         (rtsp_connection_send), (rtsp_connection_set_auth):
11613         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11614         from icecast to replace it. Relicensed from GPL courtesy of Mike
11615         Smith.
11616
11617 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11618
11619         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11620         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11621         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11622         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11623         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11624         (gst_rtspsrc_uri_set_uri):
11625         * gst/rtsp/gstrtspsrc.h:
11626         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11627         (append_auth_header), (rtsp_connection_send),
11628         (rtsp_connection_free), (rtsp_connection_set_auth):
11629         * gst/rtsp/rtspconnection.h:
11630         * gst/rtsp/rtspdefs.h:
11631         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11632         * gst/rtsp/rtspurl.h:
11633
11634         Implement simple Basic Authentication support so that urls like
11635         rtsp://user:pass@hostname/rtspstream work on hosts that require
11636         authentication.
11637
11638 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
11639
11640         * sys/v4l2/gstv4l2object.c:
11641         * sys/v4l2/gstv4l2tuner.c:
11642         * sys/v4l2/v4l2_calls.c:
11643         Fix segfault when oppening a radio device.
11644         
11645 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
11646
11647         * gst/level/gstlevel.c: (gst_level_set_caps),
11648         (gst_level_transform_ip):
11649         * sys/v4l2/README:
11650         * tests/check/elements/level.c: (GST_START_TEST):
11651           Fix level for multi-channel case.
11652
11653 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
11654
11655         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11656         (gst_level_transform_ip):
11657         * gst/level/gstlevel.h:
11658           Use function pointer for process function and add process functions
11659           for float audio.
11660
11661 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
11662
11663         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11664         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11665         (gst_v4l2src_capture_init):
11666           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11667           fixes #407369
11668
11669 2007-02-18  Wim Taymans  <wim@fluendo.com>
11670
11671         * gst/rtp/Makefile.am:
11672         * gst/rtp/gstrtp.c: (plugin_init):
11673         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11674         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11675         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11676         (gst_rtp_mp2t_pay_plugin_init):
11677         * gst/rtp/gstrtpmp2tpay.h:
11678         Added simple mpeg transport stream payloader.
11679
11680 2007-02-16  Wim Taymans  <wim@fluendo.com>
11681
11682         * gst/rtsp/URLS:
11683         Add example H264 rtsp url.
11684
11685         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11686         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11687         Don't convert values to lowercase or we might mess up base64 encoded
11688         properties.
11689
11690 2007-02-16  Wim Taymans  <wim@fluendo.com>
11691
11692         * gst/rtp/README:
11693         Fix case of string params.
11694
11695         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11696         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11697         Fix depayloader, support more packet types.
11698         Add sync codes to make sure the packetizer can do its job.
11699
11700         * gst/rtp/gstrtpmp4gdepay.c:
11701         * gst/rtp/gstrtpmp4gpay.c:
11702         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11703         Fix caps case again.
11704
11705 2007-02-15  Wim Taymans  <wim@fluendo.com>
11706
11707         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11708         Set right caps on output buffers.
11709
11710 2007-02-14  Wim Taymans  <wim@fluendo.com>
11711
11712         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11713         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
11714         Clear stack allocated SDPMedia struct before calling _init() on it.
11715         Clarify this in the docs as well.
11716
11717 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
11718
11719         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11720         (do_change_child):
11721         Don't reset the profile when going switching states, as it makes
11722         the element non-reusable.
11723
11724 2007-02-14  Wim Taymans  <wim@fluendo.com>
11725
11726         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11727         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11728         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11729         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11730         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11731         (sdp_parse_line):
11732         * gst/rtsp/sdpmessage.h:
11733         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11734         Fix memory management of SDP messages. Fixes #407793.
11735
11736 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
11737
11738         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11739
11740         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11741         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11742
11743 2007-02-14  Wim Taymans  <wim@fluendo.com>
11744
11745         Patch by: jp.liu <jp_liu at astrocom dot cn>
11746
11747         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11748         Fix parsing of password field in url. Fixes #407797.
11749
11750 2007-02-14  Wim Taymans  <wim@fluendo.com>
11751
11752         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11753         (gst_wavparse_reset), (gst_wavparse_init),
11754         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11755         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11756         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11757         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11758         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11759         (gst_wavparse_loop), (gst_wavparse_chain),
11760         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11761         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11762         (plugin_init):
11763         * gst/wavparse/gstwavparse.h:
11764         Update docs.
11765         Use boilerplate.
11766         Various code cleanups.
11767         When the bitrate is not known (bps == 0 or compressed formats) let
11768         downstream element guestimate the duration and position and don't
11769         generate timestamps or durations. Fixes #405213.
11770         Fix EOS and ERROR conditions in chain mode, we just need to forward the
11771         error flowreturn upstream.
11772
11773 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11774
11775         * ext/gconf/Makefile.am:
11776         * ext/gconf/gconf.c: (gst_gconf_get_string),
11777         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11778         (gst_gconf_render_bin_with_default):
11779         * ext/gconf/gconf.h:
11780         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11781         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11782         (gst_gconf_audio_sink_dispose), (do_change_child),
11783         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11784         (cb_change_child), (gst_gconf_audio_sink_change_state):
11785         * ext/gconf/gstgconfaudiosink.h:
11786         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11787         (gst_switch_sink_class_init), (gst_switch_sink_reset),
11788         (gst_switch_sink_init), (gst_switch_sink_dispose),
11789         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11790         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11791         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11792         * ext/gconf/gstswitchsink.h:
11793         * gst/autodetect/gstautoaudiosink.c:
11794         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11795         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11796         (gst_auto_audio_sink_detect):
11797         * gst/autodetect/gstautovideosink.c:
11798         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11799         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11800         (gst_auto_video_sink_detect):
11801         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11802         and a child that implements the GConf key monitoring. The end goal of
11803         this is an audio sink that can be changed on the fly, but at the 
11804         moment it still only changes on the next READY transition.
11805
11806 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11807
11808         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11809         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11810         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11811         (gst_avi_demux_calculate_durations_from_index),
11812         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11813         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11814         (gst_avi_demux_loop):
11815           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11816
11817 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11818
11819         * configure.ac:
11820         * docs/plugins/Makefile.am:
11821           Add crossreferences to glib/gobject/gstream docs.
11822
11823 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11824
11825         * gst/monoscope/Makefile.am:
11826         * gst/monoscope/gstmonoscope.c:
11827           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11828           (but no LIBS, since we only use defines from the headers).
11829
11830 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11831
11832         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
11833
11834         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11835         (gst_wavparse_stream_data):
11836           Fix massive memory leak when operating in streaming mode due to
11837           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11838           Fixes #407057.
11839
11840 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11841
11842         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11843         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11844         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11845         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11846         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11847         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11848         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11849         (gst_avi_demux_calculate_durations_from_index),
11850         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11851         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11852         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11853         * gst/avi/gstavidemux.h:
11854           Save some memory (8%) by repacking the index entry structure (more to
11855           come). Add more FIXMEs to questionable parts.
11856
11857 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11858
11859         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11860         (gst_v4l2src_get_caps):
11861         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11862         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11863         (gst_v4l2src_capture_init):
11864           More FIXME comments and messaging changes.
11865
11866 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11867
11868         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11869         (gst_goom_change_state):
11870         * gst/goom/gstgoom.h:
11871           Improved docs and use GST_DEBUG_FUNCPTR.
11872
11873         * gst/level/gstlevel.c: (gst_level_class_init):
11874           Use GST_DEBUG_FUNCPTR.
11875
11876         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11877         (gst_monoscope_chain), (gst_monoscope_change_state):
11878           Improved docs source cleanups.
11879
11880 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11881
11882         * gst/debug/Makefile.am:
11883         * gst/debug/gstdebug.c: (plugin_init):
11884         * gst/debug/gstpushfilesrc.c:
11885         * gst/debug/gstpushfilesrc.h:
11886           Add code for a pushfilesrc element that implements a pushfile:// URI
11887           handler, to make debugging push-mode operation of demuxer/decoders
11888           that support both easier in connection with seek/playbin/etc.
11889           The element isn't registered at the moment.
11890
11891 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
11892
11893         * gst/avi/gstavimux.c:
11894           Comment a #if 0 in caps template definition as VS6 seems to 
11895         do not support it.
11896         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11897           Use gst_guint64_to_gdouble for conversion.
11898         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11899           Move variables declaration before the first instruction.
11900         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11901           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11902           And don't include netdb.h for G_OS_WIN32
11903         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11904           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
11905           by VS6 then use an other way to initialize SDPMedia structure.
11906         * gst/udp/gstdynudpsink.h:
11907         * gst/udp/gstdynudpnetutils.h:
11908           Do not include <sys/time.h> for G_OS_WIN32
11909         * gst/udp/gstudpsrc.c:
11910           Define socklen_t as int for G_OS_WIN32
11911         * win/common/config.h.in:
11912           Undef HAVE_NETINET_IN_H
11913         * win32/vs6/gst_plugins_good.dsw:
11914         * win32/vs6/libgstrtp.dsp:
11915         * win32/vs6/libgstrtsp.dsp:
11916         * win32/vs6/libgstautogen.dsp:
11917         * win32/vs6/libgstaudiofx.dsp:
11918         * win32/vs6/libgstudp.dsp:
11919           Add and update project files.
11920         * win32/common/gstudp-enumtypes.c:
11921         * win32/common/gstudp-enumtypes.h:
11922           Add a copy of udp enumtypes to win32/common as in core 
11923           and base.
11924         
11925 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
11926
11927         * configure.ac:
11928           Activate monoscope when building with --enable-experimental. Fix
11929           --enable-external configure switch description.
11930
11931         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
11932         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
11933           Help gst-indent.
11934
11935 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
11936
11937         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
11938           Explicitly cast result of pointer arithmetic to integer in order to
11939           avoid compiler warnings on some 64-bit systems. Should fix #406018.
11940
11941 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
11942
11943         * gst/debug/progressreport.c:
11944           Some more docs.
11945
11946 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11947
11948         * docs/plugins/inspect/plugin-rtp.xml:
11949           Update for new elements.
11950
11951         * gst/debug/progressreport.h:
11952           Commit newly-created header file as well.
11953
11954 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11955
11956         * docs/plugins/Makefile.am:
11957         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11958         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11959         * docs/plugins/gst-plugins-good-plugins.hierarchy:
11960         * gst/debug/Makefile.am:
11961         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
11962         (gst_progress_report_do_query), (gst_progress_report_report):
11963           Make progressreport element post messages with the current progress
11964           on the bus. Also add some basic docs for it.
11965
11966 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
11967
11968         * ext/hal/hal.c: (gst_hal_get_string):
11969         * ext/hal/hal.h:
11970           Some small cleanups; deal with errors when parsing the HAL ALSA
11971           capabilities a bit better.
11972
11973 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11974
11975         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11976           Let's try this again and use the right cast this time.
11977
11978 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11979
11980         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11981           Add cast to avoid compiler warnings with older GLib versions
11982           where the nick/name members in GEnumValue are not declared as
11983           constant strings.
11984
11985 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11986
11987         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
11988         (gst_gconf_render_bin_from_key),
11989         (gst_gconf_get_default_audio_sink):
11990         * ext/gconf/gconf.h:
11991         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
11992         (do_toggle_element), (gst_gconf_audio_sink_set_property),
11993         (gst_gconf_audio_sink_get_property):
11994           In gconfaudiosink, get the right key as the old key in do_toggle
11995           (ie. one dependent on the profile selected). Log some more stuff so
11996           we can see what's actually going on.
11997
11998 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
11999
12000         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
12001         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
12002         (gst_audio_amplify_set_process_function),
12003         (gst_audio_amplify_setup):
12004         * gst/audiofx/audioamplify.h:
12005         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12006         (gst_audio_invert_class_init), (gst_audio_invert_setup):
12007         * gst/audiofx/audioinvert.h:
12008         Some small cleanups and port both elements to the new GstAudioFilter
12009         base class to save a few lines of common code.
12010         * gst/audiofx/Makefile.am:
12011         Link against libgstaudio for the above changes
12012
12013 2007-01-29  Wim Taymans  <wim@fluendo.com>
12014
12015         * tests/check/elements/.cvsignore:
12016         Some more ignores.
12017
12018 2007-01-26  Wim Taymans  <wim@fluendo.com>
12019
12020         Patch by: charles <charlesg3 at gmail dot com>
12021
12022         * ext/shout2/gstshout2.c: (gst_shout2send_init),
12023         (set_shout_metadata), (gst_shout2send_event):
12024         * ext/shout2/gstshout2.h:
12025         Properly handle tags in shout2send. Fixes #399825.
12026
12027 2007-01-25  Wim Taymans  <wim@fluendo.com>
12028
12029         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
12030         (gst_rtspsrc_activate_streams):
12031         Convert SDP fields to upper/lowercase following the rules in the SDP to
12032         caps document. 
12033
12034 2007-01-25  Wim Taymans  <wim@fluendo.com>
12035
12036         * gst/rtp/README:
12037         * gst/rtp/gstrtpilbcdepay.c:
12038         * gst/rtp/gstrtpilbcpay.c:
12039         * gst/rtp/gstrtpmp4gdepay.c:
12040         * gst/rtp/gstrtpmp4gpay.c:
12041         * gst/rtp/gstrtpspeexdepay.c:
12042         * gst/rtp/gstrtpspeexpay.c:
12043         * gst/rtp/gstrtpsv3vdepay.c:
12044         * gst/rtp/gstrtptheoradepay.c:
12045         * gst/rtp/gstrtptheorapay.c:
12046         * gst/rtp/gstrtpvorbisdepay.c:
12047         * gst/rtp/gstrtpvorbispay.c:
12048         Fix case of encoding-name and key/value pairs to match the document.
12049         This is to make interoperation with SDP case-insensitive as required by
12050         the relevant RFCs.
12051
12052 2007-01-25  Wim Taymans  <wim@fluendo.com>
12053
12054         * configure.ac:
12055         Bump required -core/-base to CVS
12056
12057 2007-01-25  Wim Taymans  <wim@fluendo.com>
12058
12059         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
12060         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
12061         * gst/rtp/gstrtpL16pay.h:
12062         Fill up to MTU using adapter.
12063         Timestamp rtp packets.
12064
12065 2007-01-25  Edward Hervey  <edward@fluendo.com>
12066
12067         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12068         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
12069         Use G_GSIZE_FORMAT in print statements for portability.
12070         Fixes build on macosx.
12071
12072 2007-01-24  Wim Taymans  <wim@fluendo.com>
12073
12074         * gst/rtp/Makefile.am:
12075         * gst/rtp/gstrtp.c: (plugin_init):
12076         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
12077         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
12078         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
12079         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
12080         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
12081         (gst_rtp_L16_depay_plugin_init):
12082         * gst/rtp/gstrtpL16depay.h:
12083         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
12084         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
12085         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
12086         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
12087         (gst_rtp_L16_pay_plugin_init):
12088         * gst/rtp/gstrtpL16pay.h:
12089         Port and enable raw audio payloader/depayloader. Needs a bit more work
12090         on the payloader side.
12091
12092 2007-01-24  Wim Taymans  <wim@fluendo.com>
12093
12094         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
12095         (gst_rtspsrc_stream_configure_transport),
12096         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12097         * gst/rtsp/gstrtspsrc.h:
12098         Only unblock the udp pads when we linked and activated them all.
12099         Fixes #395688.
12100
12101 2007-01-24  Wim Taymans  <wim@fluendo.com>
12102
12103         * gst/rtp/Makefile.am:
12104         * gst/rtp/gstrtp.c: (plugin_init):
12105         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12106         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12107         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12108         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12109         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12110         * gst/rtp/gstrtpac3depay.h:
12111         Added simple AC3 depayloader (RFC 4184).
12112
12113         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12114         Fix a leak.
12115
12116 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
12117
12118         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12119
12120         * gst/audiofx/Makefile.am:
12121         * gst/audiofx/audioamplify.c:
12122         (gst_audio_amplify_clipping_method_get_type),
12123         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12124         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12125         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12126         (gst_audio_amplify_set_caps),
12127         (gst_audio_amplify_transform_int_clip),
12128         (gst_audio_amplify_transform_int_wrap_negative),
12129         (gst_audio_amplify_transform_int_wrap_positive),
12130         (gst_audio_amplify_transform_float_clip),
12131         (gst_audio_amplify_transform_float_wrap_negative),
12132         (gst_audio_amplify_transform_float_wrap_positive),
12133         (gst_audio_amplify_transform_ip):
12134         * gst/audiofx/audioamplify.h:
12135         * gst/audiofx/audiofx.c: (plugin_init):
12136         Add new element "audioamplify". This allows scaling of raw audio
12137         samples, similar to the "volume" element, but provides different modes
12138         for clipping and allows unlimited amplification. It's mainly targeted
12139         for creative sound design and not as a replacement of the "volume"
12140         element. Fixes #397162
12141         * docs/plugins/Makefile.am:
12142         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12143         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12144         * docs/plugins/gst-plugins-good-plugins.args:
12145         * docs/plugins/inspect/plugin-audiofx.xml:
12146         Add docs for audioamplify and integrate them into the build system
12147         * tests/check/Makefile.am:
12148         * tests/check/elements/audioamplify.c: (setup_amplify),
12149         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12150         Add fairly extensive unit test suite for audioamplify
12151
12152 2007-01-24  Wim Taymans  <wim@fluendo.com>
12153
12154         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12155         Unblock pads after adding the pads to the element so that autopluggers
12156         get a change to link something. Possibly fixes #395688.
12157
12158 2007-01-24  Wim Taymans  <wim@fluendo.com>
12159
12160         * gst/rtp/gstrtpamrdepay.c:
12161         * gst/rtp/gstrtpgsmdepay.c:
12162         * gst/rtp/gstrtph263pdepay.c:
12163         * gst/rtp/gstrtph263ppay.c:
12164         * gst/rtp/gstrtph264depay.c:
12165         * gst/rtp/gstrtpilbcdepay.c:
12166         * gst/rtp/gstrtpmp2tdepay.c:
12167         * gst/rtp/gstrtpmp4gdepay.c:
12168         * gst/rtp/gstrtpmp4gpay.c:
12169         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12170         * gst/rtp/gstrtpmp4vpay.c:
12171         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12172         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12173         (gst_rtp_mpa_depay_process):
12174         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12175         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12176         * gst/rtp/gstrtppcmadepay.c:
12177         * gst/rtp/gstrtppcmudepay.c:
12178         * gst/rtp/gstrtpspeexdepay.c:
12179         * gst/rtp/gstrtpspeexpay.c:
12180         * gst/rtp/gstrtpsv3vdepay.c:
12181         * gst/rtp/gstrtptheoradepay.c:
12182         * gst/rtp/gstrtptheorapay.c:
12183         * gst/rtp/gstrtpvorbisdepay.c:
12184         * gst/rtp/gstrtpvorbispay.c:
12185         Fix caps with payload numbers.
12186         Add some fixed payload numbers to caps when possible.
12187
12188 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
12189
12190         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12191
12192         * gst/audiofx/Makefile.am:
12193         * gst/audiofx/audiofx.c: (plugin_init):
12194         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12195         (gst_audio_invert_class_init), (gst_audio_invert_init),
12196         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12197         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12198         (gst_audio_invert_transform_float),
12199         (gst_audio_invert_transform_ip):
12200         * gst/audiofx/audioinvert.h:
12201         Add new audiofx element "audioinvert". This element swaps the upper
12202         and lower half of samples and can be used for example for a
12203         wide-stereo effect. Fixes #396057
12204         * docs/plugins/Makefile.am:
12205         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12206         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12207         * docs/plugins/gst-plugins-good-plugins.args:
12208         * docs/plugins/inspect/plugin-audiofx.xml:
12209         Add docs for the audioinvert element and add them to the build system.
12210         * tests/check/Makefile.am:
12211         * tests/check/elements/audioinvert.c: (setup_invert),
12212         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12213         Add unit test suite for the audioinvert element.
12214
12215 2007-01-23  Wim Taymans  <wim@fluendo.com>
12216
12217         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12218         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12219         Parse config params as string and int.
12220         Parse and use AU header length
12221
12222 2007-01-23  Wim Taymans  <wim@fluendo.com>
12223
12224         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12225         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12226         * gst/smpte/gstmask.c: (_gst_mask_register):
12227         * gst/smpte/gstmask.h:
12228         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12229         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12230         (gst_smpte_paint_triangle_clock):
12231         constify some static structs.
12232         Don't update the mask if nothing changed to the params.
12233         Make sure we never draw outside of the picture. Fixes #398325.
12234
12235 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
12236
12237         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12238           Error out properly when pull_range fails while we're reading the
12239           headers, instead of just pausing the task silently. Fixes #399338.
12240
12241 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
12242
12243         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12244           Some more sanity checks to make sure the input formats match and the
12245           input pads are actually negotiated, in case someone tries to feed
12246           buffers from fakesrc or filesrc. Fixes #398299.
12247           Also const-ify an array, just because we can.
12248
12249 2007-01-19  Edward Hervey  <edward@fluendo.com>
12250
12251         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12252         Ignore previous commit, that was only valid for widths and heights
12253         that are multiples of 4.
12254         Copy over size/stride macros from jpegdec. This allows the element
12255         to work with any width,height...
12256         ... but puts in evidence that the actual transformations only work
12257         with width/height that are multiples of 4.
12258
12259 2007-01-19  Edward Hervey  <edward@fluendo.com>
12260
12261         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12262         Allocate buffers of the right size.
12263         The proper size of a I420 buffer in bytes is:
12264         
12265             width * height * 3
12266             ------------------
12267                     2
12268
12269 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12270
12271         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12272           Proxy getcaps on sink pads too, so that we either end up with the
12273           same dimensions on all pads or error out if that's not possible
12274           (seems to work even!). Fixes #398086, I think.
12275
12276 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12277
12278         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12279         * docs/plugins/gst-plugins-good-plugins.args:
12280         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12281           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12282           fix integer properties with -1 as minimum value.
12283
12284         * docs/plugins/inspect/plugin-1394.xml:
12285         * docs/plugins/inspect/plugin-aasink.xml:
12286         * docs/plugins/inspect/plugin-alaw.xml:
12287         * docs/plugins/inspect/plugin-alpha.xml:
12288         * docs/plugins/inspect/plugin-alphacolor.xml:
12289         * docs/plugins/inspect/plugin-annodex.xml:
12290         * docs/plugins/inspect/plugin-apetag.xml:
12291         * docs/plugins/inspect/plugin-audiofx.xml:
12292         * docs/plugins/inspect/plugin-auparse.xml:
12293         * docs/plugins/inspect/plugin-autodetect.xml:
12294         * docs/plugins/inspect/plugin-avi.xml:
12295         * docs/plugins/inspect/plugin-cacasink.xml:
12296         * docs/plugins/inspect/plugin-cairo.xml:
12297         * docs/plugins/inspect/plugin-cdio.xml:
12298         * docs/plugins/inspect/plugin-cutter.xml:
12299         * docs/plugins/inspect/plugin-debug.xml:
12300         * docs/plugins/inspect/plugin-dv.xml:
12301         * docs/plugins/inspect/plugin-efence.xml:
12302         * docs/plugins/inspect/plugin-effectv.xml:
12303         * docs/plugins/inspect/plugin-esdsink.xml:
12304         * docs/plugins/inspect/plugin-flac.xml:
12305         * docs/plugins/inspect/plugin-flxdec.xml:
12306         * docs/plugins/inspect/plugin-gconfelements.xml:
12307         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12308         * docs/plugins/inspect/plugin-goom.xml:
12309         * docs/plugins/inspect/plugin-halelements.xml:
12310         * docs/plugins/inspect/plugin-icydemux.xml:
12311         * docs/plugins/inspect/plugin-id3demux.xml:
12312         * docs/plugins/inspect/plugin-jpeg.xml:
12313         * docs/plugins/inspect/plugin-level.xml:
12314         * docs/plugins/inspect/plugin-matroska.xml:
12315         * docs/plugins/inspect/plugin-mulaw.xml:
12316         * docs/plugins/inspect/plugin-multipart.xml:
12317         * docs/plugins/inspect/plugin-navigationtest.xml:
12318         * docs/plugins/inspect/plugin-ossaudio.xml:
12319         * docs/plugins/inspect/plugin-png.xml:
12320         * docs/plugins/inspect/plugin-rtp.xml:
12321         * docs/plugins/inspect/plugin-rtsp.xml:
12322         * docs/plugins/inspect/plugin-shout2send.xml:
12323         * docs/plugins/inspect/plugin-smpte.xml:
12324         * docs/plugins/inspect/plugin-speex.xml:
12325         * docs/plugins/inspect/plugin-taglib.xml:
12326         * docs/plugins/inspect/plugin-udp.xml:
12327         * docs/plugins/inspect/plugin-videobalance.xml:
12328         * docs/plugins/inspect/plugin-videobox.xml:
12329         * docs/plugins/inspect/plugin-videoflip.xml:
12330         * docs/plugins/inspect/plugin-videomixer.xml:
12331         * docs/plugins/inspect/plugin-wavenc.xml:
12332         * docs/plugins/inspect/plugin-wavparse.xml:
12333         * docs/plugins/inspect/plugin-ximagesrc.xml:
12334           Update to CVS.
12335
12336 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
12337
12338         Patch by: Sebastian Dröge <slomo circular-chaos org>
12339
12340         * gst/audiofx/audiopanorama.c:
12341           Fix doc section name (Fixes #397946)
12342
12343 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
12344
12345         * sys/v4l2/gstv4l2object.c:
12346         (gst_v4l2_object_install_properties_helper),
12347         (gst_v4l2_object_set_property_helper),
12348         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12349         * sys/v4l2/gstv4l2object.h:
12350         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12351         (gst_v4l2src_init), (gst_v4l2src_set_property),
12352         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12353         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12354         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12355         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12356         (gst_v4l2src_capture_deinit):
12357           Fix EIO handing when capturing. Add new property to specify the number of
12358           buffers to enque (and remove the borked num-buffers usage).
12359
12360 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
12361
12362         Patch by: Sebastian Dröge <slomo circular-chaos org>
12363
12364         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12365         (gst_audio_panorama_set_process_function):
12366           Use a function array for process methods, add more docs and define the
12367           startindex of enums.
12368
12369 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
12370
12371         Patch by: Mark Nauwelaerts <manauw at skynet be>
12372
12373         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12374         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12375         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12376         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12377         (gst_avi_mux_riff_get_avi_header),
12378         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12379         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12380         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12381         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12382         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12383         (gst_avi_mux_change_state):
12384         * gst/avi/gstavimux.h:
12385         * tests/check/elements/avimux.c: (teardown_src_pad):
12386           Add support for more than one audio stream; write better AVIX
12387           header; refactor code a bit; don't announce vorbis caps on our audio
12388           sink pads since we don't support it anyway. Closes #379298.
12389
12390 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
12391
12392         Patch by: Sebastian Dröge <slomo circular-chaos org>
12393
12394         * gst/audiofx/audiopanorama.c:
12395         (gst_audio_panorama_method_get_type),
12396         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12397         (gst_audio_panorama_set_process_function),
12398         (gst_audio_panorama_set_property),
12399         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12400         (gst_audio_panorama_transform_m2s_int_simple),
12401         (gst_audio_panorama_transform_s2s_int_simple),
12402         (gst_audio_panorama_transform_m2s_float_simple),
12403         (gst_audio_panorama_transform_s2s_float_simple):
12404         * gst/audiofx/audiopanorama.h:
12405           Add 'method' property and provide a simple (non-psychoacustic)
12406           processing method (#394859).
12407
12408         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12409         (panorama_suite):
12410           Tests for new method.
12411
12412 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
12413
12414         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12415         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12416           Set correct caps on outgoing pulled buffers, or things blow up
12417           after recent core changes.
12418
12419 2007-01-11  Wim Taymans  <wim@fluendo.com>
12420
12421         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12422
12423         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12424         (gst_multipart_mux_request_new_pad),
12425         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12426         (gst_multipart_mux_change_state):
12427         Return FLOW errors ASAP. Fixes #394977.
12428         Misc cleanups.
12429
12430 2007-01-11  Wim Taymans  <wim@fluendo.com>
12431
12432         Patch by: Lutz Mueller <lutz at topfrose dot de>
12433
12434         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12435         Check for stream pad before activating. 
12436
12437 2007-01-10  Wim Taymans  <wim@fluendo.com>
12438
12439         Patch by: Peter Kjellerstedt  <pkj at axis com>
12440
12441         * gst/rtsp/COPYING.MIT:
12442         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12443         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12444         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12445         (gst_rtspsrc_stream_configure_transport),
12446         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12447         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12448         (gst_rtspsrc_parse_methods),
12449         (gst_rtspsrc_create_transports_string),
12450         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12451         (gst_rtspsrc_open), (gst_rtspsrc_close):
12452         * gst/rtsp/gstrtspsrc.h:
12453         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12454         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12455         (parse_request_line), (parse_line), (rtsp_connection_read),
12456         (rtsp_connection_close):
12457         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12458         (rtsp_method_as_text), (rtsp_header_as_text),
12459         (rtsp_status_as_text), (rtsp_find_header_field),
12460         (rtsp_find_method):
12461         * gst/rtsp/rtspdefs.h:
12462         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12463         (rtsp_ext_wms_configure_stream):
12464         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12465         (rtsp_message_new_request), (rtsp_message_init_request),
12466         (rtsp_message_new_response), (rtsp_message_init_response),
12467         (rtsp_message_init_data), (rtsp_message_unset),
12468         (rtsp_message_free), (rtsp_message_add_header),
12469         (rtsp_message_get_header), (rtsp_message_set_body),
12470         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12471         * gst/rtsp/rtspmessage.h:
12472         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12473         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12474         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12475         (sdp_message_dump):
12476         Allow url to be NULL to be able to use it for server connections.
12477         Can now send responses as well as requests.
12478         No longer hangs in an endless loop if EOF is received.
12479         Can now convert a status code to a text string.
12480         Return RTSP_HDR_INVALID for unknown headers.
12481         Return RTSP_INVALID for unknown methods.
12482         Copy CSeq and Session headers from the request.
12483         Only free memory corresponding to the currently set message type.
12484         Added const to function arguments as appropriate.
12485         Avoid a compiler warning when initializing nmedia.
12486         Use guint rather than gint to avoid compiler warnings.
12487         Fix crasher in wms extension.
12488         Factor out stream setup from open_connection.
12489         Delay activation of streams when actual data is received from the
12490         server, this prepares us to do proper protocol switching.
12491         Added new license.
12492         Fixes #380895.
12493
12494
12495 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
12496
12497         Patch by: Sebastian Dröge <slomo ubuntu com>
12498
12499         * docs/plugins/Makefile.am:
12500         * gst/audiofx/audiopanorama.c:
12501           Some small docs fixes (#394851).
12502
12503 2007-01-09  Wim Taymans  <wim@fluendo.com>
12504
12505         * gst/avi/gstavidemux.c:
12506         Fix docs.
12507
12508 2007-01-09  Wim Taymans  <wim@fluendo.com>
12509
12510         * gst/rtp/Makefile.am:
12511         * gst/rtp/gstrtp.c: (plugin_init):
12512         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12513         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12514         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12515         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12516         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12517         * gst/rtp/gstrtpmpvdepay.h:
12518           Added RFC 2250 MPEG Video Depayloader.
12519
12520         * gst/rtp/gstrtpL16depay.h:
12521         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12522         (gst_rtp_h263p_depay_process):
12523         Fix Header file. Small cleanups.
12524
12525         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12526         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12527         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12528         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12529         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12530         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12531         (gst_rtp_mp4v_depay_change_state):
12532         Remove usused code. Remove Adapter from state Change. Added debug.
12533
12534         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12535         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12536         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12537         * gst/rtp/gstrtpmpadepay.h:
12538         Subclass base depayloader.
12539         Added debug.
12540         Support static payload type assignment as well.
12541
12542         * gst/rtp/gstrtpmpapay.c:
12543         Fix caps.
12544
12545 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
12546
12547         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12548
12549         * ext/jpeg/gstjpegdec.c:
12550         * ext/jpeg/gstjpegenc.c:
12551         * ext/jpeg/smokecodec.c:
12552           These libjpeg callbacks should return a 'boolean' (unsigned char
12553           apparently) and not a 'gboolean' (which maps to gint). Fixes
12554           warnings when compiling with MingW (#393427).
12555
12556         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12557           Use ioctlsocket on win32.
12558
12559         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12560           Some printf format fixes for win32.
12561
12562 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
12563
12564         * gst/cutter/gstcutter.c: (gst_cutter_chain):
12565           Use gst_guint64_to_gdouble for conversion.
12566         * win32/vs6/libgstmatroska.dsp:
12567           Add zlib to the link.
12568         * win32/vs6/libgstvideobox.dsp:
12569           Update liboil library name (project is linked to 
12570           liboil-0.3-0.lib now).
12571           
12572 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
12573
12574         * gst/matroska/Makefile.am:
12575           If zlib is available and used, we must link it explicitly for
12576           things to work on MingW (fixes #392855).
12577
12578 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
12579
12580         * ext/esd/esdsink.c: (gst_esdsink_delay):
12581           Don't return bogus values when esd_get_delay() fails for some
12582           reason (#392189).
12583
12584 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12585
12586         * sys/ximage/gstximagesrc.c: (composite_pixel):
12587           Fix presumably copy'n'pasto for 16bpp depth.
12588
12589 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12590
12591         * gst/matroska/matroska-mux.c:
12592         (gst_matroska_mux_audio_pad_setcaps):
12593           The "signed" field in audio caps is of boolean type, trying to use
12594           gst_structure_get_int() to extract it will fail. Fixing this makes
12595           matroskamux accept raw audio input (#387121) (use at your own risk
12596           though, due to the matroska spec being not entirely useful in this
12597           respect).
12598           Also fix up raw audio structures in template caps so that they
12599           represent what our setcaps function will actually accept, so that
12600           converters know what to convert to.
12601           Finally, don't fail if there isn't an "endianness" field in 8-bit
12602           PCM caps.
12603
12604 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
12605
12606         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12607         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12608         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12609         (teardown_cmmldec):
12610         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12611         (teardown_cmmlenc):
12612         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12613           reapply consistent pad (de)activation
12614
12615 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12616
12617         * configure.ac:
12618         Back to CVS
12619
12620         * gst-plugins-good.doap:
12621         Add 0.10.5 doap entry
12622
12623 === release 0.10.5 ===
12624
12625 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
12626
12627         * configure.ac:
12628           releasing 0.10.5, "The Path of Thorns"
12629
12630 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12631
12632         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12633         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12634         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12635         (teardown_cmmldec):
12636         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12637         (teardown_cmmlenc):
12638         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12639           revert my freeze breakage
12640
12641 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12642
12643         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12644         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12645         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12646         (teardown_cmmldec):
12647         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12648         (teardown_cmmlenc):
12649         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12650           consistent pad (de)activation
12651
12652 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12653
12654         * configure.ac:
12655         * ext/Makefile.am:
12656         Disable LADPSA, as it has moved to the -bad module for the duration.
12657
12658 2006-12-18  Wim Taymans  <wim@fluendo.com>
12659
12660         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12661         (gst_signal_processor_event):
12662         Reset flow_state back to _OK after a flush stop so that we exit our
12663         error state after the flush. Fixes #374213
12664
12665 2006-12-16  David Schleef  <ds@schleef.org>
12666
12667         * sys/osxvideo/osxvideosink.h:
12668         * sys/osxvideo/osxvideosink.m:
12669           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
12670
12671 2006-12-16  David Schleef  <ds@schleef.org>
12672
12673         Patch by: Vijay Santhanam <vijay santhanam gmail com>
12674
12675         * sys/osxvideo/Makefile.am:
12676         * sys/osxvideo/osxvideosink.h:
12677         * sys/osxvideo/osxvideosink.m:
12678           Preliminary patch for porting osxvideosink
12679
12680 2006-12-16  Wim Taymans  <wim@fluendo.com>
12681
12682         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12683
12684         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12685         (gst_videomixer_set_master_geometry),
12686         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12687         (gst_videomixer_reset), (gst_videomixer_init),
12688         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12689         (gst_videomixer_release_pad), (gst_videomixer_collected),
12690         (gst_videomixer_change_state):
12691         Introduce some locking around the videomixer state so that it does not
12692         crash when adding/removing pads. Fixes #383043.
12693
12694 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12695
12696         * configure.ac:
12697           Make sure libcaca can actually be used instead of just checking for
12698           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12699           cross-compiling (fixes #384587).
12700
12701 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12702
12703         * Makefile.am:
12704         * gst-plugins-good.doap:
12705         * gst-plugins-good.spec.in:
12706           adding doap file
12707
12708 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12709
12710         * configure.ac:
12711           libflac-1.1.3 changed API again, but we can't build against it yet,
12712           so make sure our check doesn't use libflac-1.1.3 and add a comment
12713           to this effect.
12714
12715 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12716
12717         * gst/effectv/gstquark.c: (gst_quarktv_transform),
12718         (gst_quarktv_planetable_clear):
12719           Add some NULL pointer checks (possibly related to #385623).
12720
12721 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12722
12723         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12724         (gst_tag_demux_chain):
12725         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12726           In streaming mode, if the first buffer we get doesn't have an
12727           offset, fix it up to be 0, otherwise trimming won't work later on
12728           and we'll be typefinding application/x-id3, which may result in
12729           decodebin plugging an endless number of id3demux elements as a
12730           consequence. Fixes #385031.
12731           
12732 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12733
12734         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12735           Ignore the buffer_time the sound device reports. Turns out it is 
12736           sometimes completely bogus and we're better off without it.
12737
12738 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12739
12740         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12741         (gst_matroska_demux_video_caps):
12742         * gst/matroska/matroska-ids.c:
12743         (gst_matroska_track_init_video_context):
12744         * gst/matroska/matroska-ids.h:
12745           Try harder to extract the framerate for video tracks correctly and
12746           save it directly instead of converting it back and forth a few
12747           times. Mostly makes a difference for very small framerates (<1).
12748           Fixes #380199.
12749
12750 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12751
12752         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12753         (gst_gconf_audio_src_dispose), (do_toggle_element):
12754         * ext/gconf/gstgconfaudiosrc.h:
12755           Remove gconf notify hook when the gconfaudiosrc element is
12756           destroyed, otherwise the callback may be called on an
12757           already-destroyed instance and bad things happen. Should fix
12758           #378184.
12759           Also ignore gconf key changes when the source is already running.
12760
12761 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
12762
12763         Patch by: Sebastian Dröge  <mail at slomosnail de>
12764
12765         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12766           We need to be able to read and parse any possible floating point string
12767           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12768           will parse the former only in certain locales though, so we really need
12769           to canonicalise the separator to '.' and then use g_ascii_strtod() to
12770           make sure we can parse either version at all times.
12771           Fixes #382982 for real.
12772
12773 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12774
12775         * sys/sunaudio/gstsunaudiomixerctrl.c:
12776         * sys/sunaudio/gstsunaudiosrc.c:
12777
12778         Use the sunaudio debug category.
12779
12780         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12781         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12782         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12783         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12784         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12785         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12786         (gst_sunaudiosink_reset):
12787         * sys/sunaudio/gstsunaudiosink.h:
12788
12789         Uses the sunaudio debug category for all debug output
12790         Implements the _delay() callback to synchronise video playback better
12791         Change the segtotal and segsize values back to the parent class 
12792           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
12793           respectively)
12794         Measure the samples written to the device vs. played.
12795         Keep track of segments in the device by writing empty eof frames, and
12796         sleep using a GCond when we get too far ahead and risk overrunning the
12797         sink's ringbuffer.
12798
12799         Fixes: #360673
12800
12801 2006-12-08  Wim Taymans  <wim@fluendo.com>
12802
12803         Patch by: Sebastian Dröge  <mail at slomosnail de >
12804
12805         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12806         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12807         * gst/audiofx/audiopanorama.h:
12808         Fix audiopanorame with float samples. Fixes #383726.
12809
12810 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12811
12812         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12813         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12814         (gst_sunaudiosrc_reset):
12815
12816         Implement reset functions to unblock the src/sink more quickly on 
12817         state change requests.
12818         Patch by: Brian Cameron <brian dot cameron at sun com>
12819
12820 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12821
12822         * sys/sunaudio/gstsunaudiomixer.c:
12823         (gst_sunaudiomixer_change_state):
12824         Construct the correct mixer device name when the AUDIODEV env var
12825         is set.
12826
12827         Patch by: Jerry Tan <jerry.tan at sun dot com>
12828         Fixes: #383596
12829
12830 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12831
12832         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12833         Apply patch to open the mixer control and set the MULTIPLE_OPEN
12834         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
12835         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
12836         Patch by: Jerry Tan <jerry.tan at sun dot com>
12837         Fixes: #349015
12838
12839 2006-12-07  Wim Taymans  <wim@fluendo.com>
12840
12841         * gst/smpte/gstmask.h:
12842         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12843         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12844         (gst_smpte_collected), (gst_smpte_set_property),
12845         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12846         * gst/smpte/gstsmpte.h:
12847         Port to 0.10 some more. 
12848         Added duration property to specify the duration of the transition.
12849         Make framerate a fraction.
12850         Deprecate fps property, we only use negotiated fps.
12851         Added docs.
12852         Fix collectpad usage.
12853         Reset state in READY.
12854         Send NEWSEGMENT event.
12855         Fix racy updates of object properties.
12856         Added debug category.
12857         Fixes #383323.
12858
12859 2006-12-06  Wim Taymans  <wim@fluendo.com>
12860
12861         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12862
12863         * gst/videomixer/videomixer.c:
12864         (gst_videomixer_set_master_geometry),
12865         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12866         Don't reset xpos and ypos in the setcaps function because causes
12867         unexpected behaviour.
12868         Fixes #382179.
12869
12870 2006-12-06  Wim Taymans  <wim@fluendo.com>
12871
12872         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12873         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12874         Keep track of the buffer timestamp in the collectdata member instead
12875         of modifying the buffer without making the metadata writable first.
12876         Fixes #382277.
12877
12878 2006-12-06  Wim Taymans  <wim@fluendo.com>
12879
12880         Patch by: Rob Taylor <robtaylor at floopily dot org>
12881
12882         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12883         If using multicast in udpsrc, bind to the multicast address rather than
12884         IN_ADDR_ANY.
12885         This allows the simultanous use of multiple udpsrcs listening on
12886         different multicat addresses. Without this all udpsrcs will receive all
12887         packets from all subscribed multicast addresses.
12888         Fixes #383001.
12889
12890 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12891
12892         * ext/taglib/gstid3v2mux.cc:
12893         Don't attempt to write a NULL frame into the ID3 tag set when the 
12894         createFrame method returned NULL.
12895         Fixes: #381857
12896         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12897
12898 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12899
12900         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12901         Use g_strtod() instead of sscanf to parse doubles, so that it will
12902         try parsing in the C locale if the current locale fails.
12903         Fixes: #382982
12904         Patch by: Sebastian Dröge  <mail at slomosnail de >
12905
12906 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
12907
12908         * win32/MANIFEST:
12909         Fix compilation on win32 under VS8
12910         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
12911         Partially fixes #381175
12912
12913 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12914
12915         * gst/avi/gstavimux.c:
12916           accept all mpegversions,fixes #380825
12917           spotted by: Jerome Alet  
12918
12919 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12920
12921         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12922         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
12923         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
12924         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
12925           cleanup the error message a bit more
12926
12927 2006-11-28  Wim Taymans  <wim@fluendo.com>
12928
12929         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
12930         Fix width and height properties.
12931
12932         * ext/libcaca/gstcacasink.h:
12933         Fix compilation on newer libcaca that require us to include a new
12934         header. Fixes #379918.
12935
12936 2006-11-28  Wim Taymans  <wim@fluendo.com>
12937
12938         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
12939         * gst/rtsp/gstrtspsrc.h:
12940         * gst/rtsp/rtspext.h:
12941         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
12942         (rtsp_ext_wms_get_context):
12943         Add method so that extensions can choose to disable the setup of
12944         a stream.
12945         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
12946
12947 2006-11-27  Wim Taymans  <wim@fluendo.com>
12948
12949         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12950
12951         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12952         Push header in a separate buffer instead of memcpy:ing all data.
12953         Change LF => CRLF in headers.
12954         Move trailing LF to header. Fixes #379792.
12955
12956 2006-11-27  Wim Taymans  <wim@fluendo.com>
12957
12958         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
12959         Small buffer overflow fix and improve debugging.
12960
12961 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12962
12963         * ext/esd/esdmon.h:
12964         * ext/esd/esdsink.h:
12965           remove obsolete _factory_init protos
12966
12967 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12968
12969         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
12970         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
12971         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
12972         (gst_avi_demux_read_subindexes_push),
12973         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
12974         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
12975         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
12976         (gst_avi_demux_massage_index),
12977         (gst_avi_demux_calculate_durations_from_index),
12978         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
12979         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
12980         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
12981           remove dead code, tweak debugs statements, add comments, use
12982           _uint64_scale instead _uint64_scale_int when using guint64 values,
12983           small optimizations, reflow some error handling
12984
12985 2006-11-22  Edward Hervey  <edward@fluendo.com>
12986
12987         * po/.cvsignore:
12988         We never put .pot files in cvs. Let's ignore them all.
12989
12990 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12991
12992         * po/POTFILES.in:
12993           ... but better exclude files that aren't disted.
12994
12995 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12996
12997         * po/POTFILES.in:
12998           Add v4l2 source files to list of files with translations, so the
12999           strings are actually extracted (however bad they still may be).
13000
13001 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
13002
13003         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13004           Minor clean-ups: const-ify static array, remove trailing comma from
13005           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
13006
13007 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
13008
13009         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13010         Make sure that g_free always gets called on the same pointer that was 
13011         returned by g_malloc.  Fixes #376594.
13012         Do not leak memory if decompressed size is wrong.
13013         Remove unneeded check of return value of g_malloc.
13014         Patch by: René Stadler <mail@renestadler.de>
13015
13016 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
13017
13018         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
13019           Add missing curly brackets.
13020
13021 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
13022
13023         * sys/v4l2/v4l2src_calls.c:
13024         Fix capture_deinit.
13025
13026 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13027
13028         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13029         (gst_matroska_mux_request_new_pad):
13030           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
13031
13032         * tests/check/elements/matroskamux.c: (setup_src_pad),
13033         (setup_sink_pad), (GST_START_TEST):
13034         Activate pads before using them.
13035
13036 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
13037
13038         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13039           Initialise variable to get rid of bogus compiler warning.
13040
13041 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
13042
13043         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
13044
13045         * gst/rtp/gstrtph263pay.c:
13046         * gst/rtp/gstrtph263pdepay.c:
13047         * gst/rtp/gstrtph263ppay.c:
13048           Specify H.263 variant and version in the caps (fixes #361637)
13049
13050 2006-11-15  Wim Taymans  <wim@fluendo.com>
13051
13052         * gst/rtsp/rtspconnection.c: (read_body):
13053         Don't set a data pointer to NULL and a size > 0 when we deal
13054         with empty packets.
13055
13056         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13057         (rtsp_message_init_response), (rtsp_message_init_data),
13058         (rtsp_message_unset), (rtsp_message_free),
13059         (rtsp_message_take_body):
13060         Check that we can't create invalid empty packets. 
13061
13062 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13063
13064         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13065
13066         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
13067         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
13068         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
13069         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
13070         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13071         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
13072         * gst/matroska/matroska-mux.h:
13073           Add basic tag writing support; implement releasing pads (#374658).
13074
13075 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13076
13077         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13078         (gst_matroska_demux_audio_caps):
13079           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
13080
13081 2006-11-14  David Schleef  <ds@schleef.org>
13082
13083         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
13084
13085 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
13086
13087         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13088
13089         * win32/vs8/gst-plugins-good.sln:
13090         * win32/vs8/libgst1394.vcproj:
13091         * win32/vs8/libgstaasink.vcproj:
13092         * win32/vs8/libgstalaw.vcproj:
13093         * win32/vs8/libgstalpha.vcproj:
13094         * win32/vs8/libgstalphacolor.vcproj:
13095         * win32/vs8/libgstannodex.vcproj:
13096         * win32/vs8/libgstapetag.vcproj:
13097         * win32/vs8/libgstaudiofx.vcproj:
13098         * win32/vs8/libgstauparse.vcproj:
13099         * win32/vs8/libgstautodetect.vcproj:
13100         * win32/vs8/libgstavi.vcproj:
13101         * win32/vs8/libgstcacasink.vcproj:
13102         * win32/vs8/libgstcdio.vcproj:
13103         * win32/vs8/libgstcutter.vcproj:
13104         * win32/vs8/libgstdv.vcproj:
13105         * win32/vs8/libgsteffectv.vcproj:
13106         * win32/vs8/libgstflac.vcproj:
13107         * win32/vs8/libgstflxdec.vcproj:
13108         * win32/vs8/libgstgoom.vcproj:
13109         * win32/vs8/libgsticydemux.vcproj:
13110         * win32/vs8/libgstid3demux.vcproj:
13111         * win32/vs8/libgstjpeg.vcproj:
13112         * win32/vs8/libgstladspa.vcproj:
13113         * win32/vs8/libgstlevel.vcproj:
13114         * win32/vs8/libgstmatroska.vcproj:
13115         * win32/vs8/libgstmikmod.vcproj:
13116         * win32/vs8/libgstmng.vcproj:
13117         * win32/vs8/libgstmonoscope.vcproj:
13118         * win32/vs8/libgstmulaw.vcproj:
13119         * win32/vs8/libgstmultipart.vcproj:
13120         * win32/vs8/libgstpng.vcproj:
13121         * win32/vs8/libgstrtp.vcproj:
13122         * win32/vs8/libgstrtsp.vcproj:
13123         * win32/vs8/libgstshout2.vcproj:
13124         * win32/vs8/libgstsmpte.vcproj:
13125         * win32/vs8/libgstspeex.vcproj:
13126         * win32/vs8/libgsttaglib.vcproj:
13127         * win32/vs8/libgstudp.vcproj:
13128         * win32/vs8/libgstvideobalance.vcproj:
13129         * win32/vs8/libgstvideobox.vcproj:
13130         * win32/vs8/libgstvideoflip.vcproj:
13131         * win32/vs8/libgstvideomixer.vcproj:
13132         * win32/vs8/libgstwavenc.vcproj:
13133         * win32/vs8/libgstwavparse.vcproj:
13134           Make end-of-line returns unixy, so that when the files are checked
13135           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13136           Hopefully fixes #366492.
13137
13138 2006-11-14  Wim Taymans  <wim@fluendo.com>
13139
13140         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13141         Disable init_frames delay timestamp adjustment, it does not
13142         seem to be needed at all. Fixes #369621.
13143
13144 2006-11-13  Wim Taymans  <wim@fluendo.com>
13145
13146         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13147
13148         * gst/videomixer/videomixer.c:
13149         (gst_videomixer_set_master_geometry),
13150         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13151         (gst_videomixer_collect_free), (gst_videomixer_reset),
13152         (gst_videomixer_init), (gst_videomixer_finalize),
13153         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13154         (gst_videomixer_collected), (gst_videomixer_change_state):
13155         Fix memleak by unref'ing collectpads instance (when finalizing)
13156         Implement releasing a request pad. Fixes #374479.
13157
13158 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
13159
13160         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13161
13162         * win32/vs8/gst-plugins-good.sln:
13163         * win32/vs8/libgst1394.vcproj:
13164         * win32/vs8/libgstaasink.vcproj:
13165         * win32/vs8/libgstalaw.vcproj:
13166         * win32/vs8/libgstalpha.vcproj:
13167         * win32/vs8/libgstalphacolor.vcproj:
13168         * win32/vs8/libgstannodex.vcproj:
13169         * win32/vs8/libgstapetag.vcproj:
13170         * win32/vs8/libgstaudiofx.vcproj:
13171         * win32/vs8/libgstauparse.vcproj:
13172         * win32/vs8/libgstautodetect.vcproj:
13173         * win32/vs8/libgstavi.vcproj:
13174         * win32/vs8/libgstcacasink.vcproj:
13175         * win32/vs8/libgstcdio.vcproj:
13176         * win32/vs8/libgstcutter.vcproj:
13177         * win32/vs8/libgstdv.vcproj:
13178         * win32/vs8/libgsteffectv.vcproj:
13179         * win32/vs8/libgstflac.vcproj:
13180         * win32/vs8/libgstflxdec.vcproj:
13181         * win32/vs8/libgstgoom.vcproj:
13182         * win32/vs8/libgsticydemux.vcproj:
13183         * win32/vs8/libgstid3demux.vcproj:
13184         * win32/vs8/libgstjpeg.vcproj:
13185         * win32/vs8/libgstladspa.vcproj:
13186         * win32/vs8/libgstlevel.vcproj:
13187         * win32/vs8/libgstmatroska.vcproj:
13188         * win32/vs8/libgstmikmod.vcproj:
13189         * win32/vs8/libgstmng.vcproj:
13190         * win32/vs8/libgstmonoscope.vcproj:
13191         * win32/vs8/libgstmulaw.vcproj:
13192         * win32/vs8/libgstmultipart.vcproj:
13193         * win32/vs8/libgstpng.vcproj:
13194         * win32/vs8/libgstrtp.vcproj:
13195         * win32/vs8/libgstrtsp.vcproj:
13196         * win32/vs8/libgstshout2.vcproj:
13197         * win32/vs8/libgstsmpte.vcproj:
13198         * win32/vs8/libgstspeex.vcproj:
13199         * win32/vs8/libgsttaglib.vcproj:
13200         * win32/vs8/libgstudp.vcproj:
13201         * win32/vs8/libgstvideobalance.vcproj:
13202         * win32/vs8/libgstvideobox.vcproj:
13203         * win32/vs8/libgstvideoflip.vcproj:
13204         * win32/vs8/libgstvideomixer.vcproj:
13205         * win32/vs8/libgstwavenc.vcproj:
13206         * win32/vs8/libgstwavparse.vcproj:
13207           Add VS8 project files (note that many of the plugins in ext are
13208           disabled by default). Fixes #366492.
13209
13210 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
13211
13212         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13213           we do not translate debug messages
13214
13215 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
13216
13217         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13218           fix categorisation, make short desc more explicit, remove unused code
13219           Fixes #372021
13220
13221 2006-11-08  Wim Taymans  <wim@fluendo.com>
13222
13223         * gst/rtp/gstrtpL16depay.c:
13224         * gst/rtp/gstrtpamrdepay.c:
13225         * gst/rtp/gstrtpamrpay.c:
13226         * gst/rtp/gstrtpgsmdepay.c:
13227         * gst/rtp/gstrtph263pay.c:
13228         * gst/rtp/gstrtph263pdepay.c:
13229         * gst/rtp/gstrtph263ppay.c:
13230         * gst/rtp/gstrtph264depay.c:
13231         * gst/rtp/gstrtpmp2tdepay.c:
13232         * gst/rtp/gstrtpmp4gdepay.c:
13233         * gst/rtp/gstrtpmp4gpay.c:
13234         * gst/rtp/gstrtpmp4vdepay.c:
13235         * gst/rtp/gstrtpmp4vpay.c:
13236         * gst/rtp/gstrtpmpadepay.c:
13237         * gst/rtp/gstrtpmpapay.c:
13238         * gst/rtp/gstrtppcmadepay.c:
13239         * gst/rtp/gstrtppcmapay.c:
13240         * gst/rtp/gstrtppcmudepay.c:
13241         * gst/rtp/gstrtppcmupay.c:
13242         * gst/rtp/gstrtpspeexdepay.c:
13243         * gst/rtp/gstrtpspeexpay.c:
13244         * gst/rtp/gstrtpsv3vdepay.c:
13245         Fix element descriptions.
13246
13247 2006-11-08  Wim Taymans  <wim@fluendo.com>
13248
13249         * gst/rtp/gstrtpvorbisdepay.c:
13250         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13251         Fix description.
13252         Small cleanup in the payloader.
13253
13254 2006-11-08  Wim Taymans  <wim@fluendo.com>
13255
13256         * gst/rtp/Makefile.am:
13257         * gst/rtp/gstrtp.c: (plugin_init):
13258         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13259         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13260         (gst_rtp_theora_depay_finalize),
13261         (gst_rtp_theora_depay_parse_configuration),
13262         (gst_rtp_theora_depay_setcaps),
13263         (gst_rtp_theora_depay_switch_codebook),
13264         (gst_rtp_theora_depay_process),
13265         (gst_rtp_theora_depay_set_property),
13266         (gst_rtp_theora_depay_get_property),
13267         (gst_rtp_theora_depay_change_state),
13268         (gst_rtp_theora_depay_plugin_init):
13269         * gst/rtp/gstrtptheoradepay.h:
13270         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13271         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13272         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13273         (gst_rtp_theora_pay_init_packet),
13274         (gst_rtp_theora_pay_flush_packet),
13275         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13276         (gst_rtp_theora_pay_handle_buffer),
13277         (gst_rtp_theora_pay_plugin_init):
13278         * gst/rtp/gstrtptheorapay.h:
13279         Add theora pay/depayloaders.
13280
13281 2006-11-06  Wim Taymans  <wim@fluendo.com>
13282
13283         * gst/rtp/Makefile.am:
13284         We depend on gsttag to generate the vorbis comments.
13285
13286         * gst/rtp/gstrtpvorbisdepay.c:
13287         (gst_rtp_vorbis_depay_parse_configuration),
13288         (gst_rtp_vorbis_depay_setcaps),
13289         (gst_rtp_vorbis_depay_switch_codebook),
13290         (gst_rtp_vorbis_depay_process):
13291         * gst/rtp/gstrtpvorbisdepay.h:
13292         Parse configuration string in the depayloader.
13293         Implement selecting and switching to a new codebook.
13294         Receiving vorbis over RTP now works.
13295
13296         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13297         (gst_rtp_vorbis_pay_init_packet),
13298         (gst_rtp_vorbis_pay_finish_headers),
13299         (gst_rtp_vorbis_pay_handle_buffer):
13300         * gst/rtp/gstrtpvorbispay.h:
13301         Set timestamps on outgoing buffers and RTP packets.
13302         Fix configuration string, prepend number of Packet headers.
13303         Fix encoding of ident string.
13304         Add delivery-method to caps.
13305         Streaming vorbis over RTP now works.
13306
13307 2006-11-06  Wim Taymans  <wim@fluendo.com>
13308
13309         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13310         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13311         (gst_rtp_vorbis_pay_handle_buffer):
13312         * gst/rtp/gstrtpvorbispay.h:
13313         Generate a valid configuration string in the caps based on the
13314         vorbis headers.
13315
13316 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13317
13318         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13319         * ext/cdio/gstcdio.h:
13320         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13321           Move CD-TEXT utility function into common file so it can also be
13322           used by a future cdioparanoiasrc.
13323
13324 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
13325         
13326         * sys/v4l2/Makefile.am:
13327         * sys/v4l2/gstv4l2object.c:
13328         * sys/v4l2/gstv4l2src.c:
13329         * sys/v4l2/gstv4l2xoverlay.c:
13330         * sys/v4l2/v4l2_calls.c:
13331         * sys/v4l2/v4l2src_calls.c:
13332         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13333         xoverlay code that is still not implemented.
13334
13335 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13336
13337         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13338           We require a -base more recent than 0.10.9, so it's safe to use
13339           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13340
13341         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13342         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13343           Use _newsegment_full() now that we depend on a recent enough core.
13344
13345         * gst/wavparse/gstwavparse.c:
13346           Remove cruft that we don't need any longer now that we depend on
13347           a recent enough -base.
13348
13349 2006-10-31  Wim Taymans  <wim@fluendo.com>
13350
13351         * gst/rtp/Makefile.am:
13352         * gst/rtp/gstrtp.c: (plugin_init):
13353         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13354         (gst_rtpilbcpay_setcaps):
13355         Fix and activate ILBC pay and depayloaders. Fixes #368162.
13356
13357 2006-10-31  Wim Taymans  <wim@fluendo.com>
13358
13359         * ext/speex/gstspeexdec.c: (speex_dec_convert),
13360         (speex_dec_sink_event), (speex_dec_chain_parse_header):
13361         Some small cleanups, use _scale.
13362
13363 2006-10-31  Wim Taymans  <wim@fluendo.com>
13364
13365         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13366         Use higher precision scale function.
13367
13368 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
13369
13370         Patch by: Michal Benes  <michal dot benes at itonis tv>
13371
13372         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13373         (gst_matroska_demux_read_track_encodings),
13374         (gst_matroska_decode_buffer):
13375           Fix several issues with encoded/compressed/encrypted/signed tracks;
13376           also, remove superfluous newline characters from some debug
13377           statements. (#366155)
13378
13379 2006-10-30  Wim Taymans  <wim@fluendo.com>
13380
13381         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13382         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13383         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13384         (gst_smokedec_change_state):
13385         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13386         (gst_smokeenc_init), (gst_smokeenc_finalize),
13387         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13388         (gst_smokeenc_resync), (gst_smokeenc_chain),
13389         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13390         (gst_smokeenc_change_state):
13391         Various cleanups, capsnego and leak fixes.
13392
13393 2006-10-30  Wim Taymans  <wim@fluendo.com>
13394
13395         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13396
13397         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13398         Fix videomixer so that it can handle any combination of framerates.
13399         Fixes #367221.
13400
13401 2006-10-28  Wim Taymans  <wim@fluendo.com>
13402
13403         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13404         (gst_avi_demux_parse_file_header),
13405         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13406         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13407         (gst_avi_demux_chain):
13408         Fix position query for audio. also fixes timestamps in streaming
13409         mode and bug #364958.
13410         Small cleanups.
13411
13412 2006-10-27  Wim Taymans  <wim@fluendo.com>
13413
13414         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13415         * ext/libpng/gstpngenc.h:
13416         Fix strides. Fixes #364856.
13417         Cleanup capsnego.
13418         Set caps on outgoing buffers.
13419
13420 2006-10-18  Wim Taymans  <wim@fluendo.com>
13421
13422         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13423
13424         * gst/rtp/gstrtpgsmpay.c:
13425         * gst/rtp/gstrtph263pay.c:
13426         * gst/rtp/gstrtpmpapay.c:
13427         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13428         (gst_rtp_pcma_pay_handle_buffer):
13429         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13430         Add static payload numbers in addition to the dynamic ones.
13431         Fixes #361639.
13432
13433 2006-10-18  Wim Taymans  <wim@fluendo.com>
13434
13435         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13436         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13437         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13438         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13439         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13440         * gst/rtsp/rtspdefs.h:
13441         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13442         * gst/rtsp/rtspurl.h:
13443         Reuse already existing enum for lower transport.
13444         Add rtspt and rtspu protocols.
13445         Send redirect to rtspt when udp times out.
13446
13447 2006-10-18  Wim Taymans  <wim@fluendo.com>
13448
13449         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13450         (gst_wavparse_stream_data):
13451         Fix seeking some more, mostly for speed changes.
13452
13453 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
13454
13455         Patch by: Fredrik Persson  <frepe at bredband net>
13456
13457         * sys/v4l2/gstv4l2tuner.c:
13458         * sys/v4l2/gstv4l2tuner.h:
13459           Fix _set_channel(): remove useless g_object_notify() for "channel"
13460           property that doesn't exist any longer and therefore now also
13461           useless redirect (#338818).
13462
13463 2006-10-17  Wim Taymans  <wim@fluendo.com>
13464
13465         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13466         Some drivers do not support unsetting the non-blocking flag once the
13467         device is opened. In those cases, close/open the device in
13468         non-blocking mode. Fixes #362673.
13469
13470 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13471
13472         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13473         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13474         (gst_v4l2src_get_fps):
13475           dear stefan, framespersecond is not frameperiod, reverting but adding
13476           comment
13477
13478 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13479
13480         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13481         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13482         (gst_v4l2src_get_fps):
13483           Numerator is numerator and denominator is denominator. Say that aloud
13484           5 times and retry after next beer.
13485
13486 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
13487
13488         Patch by: Josep Torra Valles  <josep at fluendo com>
13489
13490         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13491         * ext/esd/esdsink.c: (gst_esdsink_write):
13492         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13493         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13494         (gst_flac_dec_send_newsegment):
13495         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13496         (gst_flac_enc_tell_callback):
13497         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13498         (smokecodec_parse_header), (smokecodec_decode):
13499         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13500         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13501         * gst/goom/Makefile.am:
13502         * gst/goom/gstgoom.c:
13503         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13504         * gst/rtsp/gstrtspsrc.c:
13505         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13506         * gst/udp/gstudpsink.c:
13507         * gst/udp/gstudpsrc.c:
13508         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13509         * sys/sunaudio/gstsunaudiomixertrack.h:
13510           Fix a bunch of problems discovered by the Forte compiler, mostly type
13511           mixups and pointer arithmetics with void pointers. Fixes #362603.
13512
13513 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13514
13515         * ext/speex/gstspeex.c: (plugin_init):
13516         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13517         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13518         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13519         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13520         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13521         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13522         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13523         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13524         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13525         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13526         (gst_speex_enc_chain), (gst_speex_enc_get_property),
13527         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13528         * ext/speex/gstspeexenc.h:
13529           Miscellaneous clean-ups, among other things: speexenc => enc to
13530           enhance code readability; change speexenc => speex_enc; in chain
13531           function unref input buffer in case of error; take reference in
13532           event function; use boilerplate macro; use gst_pad_query_peer_*
13533           convenience functions.
13534
13535 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13536
13537         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13538         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13539         (gst_speexenc_set_header_on_caps):
13540           Fix some mem leaks.
13541
13542 2006-10-11  Wim Taymans  <wim@fluendo.com>
13543
13544         * gst/rtsp/URLS:
13545         Added some other URL.
13546
13547         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13548         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13549         (gst_rtspsrc_open), (gst_rtspsrc_play),
13550         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13551         * gst/rtsp/gstrtspsrc.h:
13552         Work on fallback to TCP connection when the UDP socket times out.
13553         Handler server requests, just reply with OK for now.
13554
13555         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13556         * gst/rtsp/rtspdefs.h:
13557         Added some more Real extension headers.
13558
13559         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13560         Fix parsing of urls with a ':' that is not part of the hostname:port
13561         part of the url.
13562
13563 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
13564
13565         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13566         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13567         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13568           Activate pad before adding it to the already-running element.
13569
13570         * tests/check/elements/icydemux.c: (icydemux_found_pad):
13571           Activate newly-created pad too.
13572
13573 2006-10-11  Wim Taymans  <wim@fluendo.com>
13574
13575         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13576
13577         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13578         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13579         (gst_udpsrc_start):
13580         Fix some leaks in caps and uris. Fixes #361252.
13581
13582 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
13583
13584         * gst/wavparse/Makefile.am:
13585           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13586
13587 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
13588
13589         * sys/v4l2/gstv4l2xoverlay.c:
13590         * sys/v4l2/gstv4l2xoverlay.h:
13591         Fix build as per the patch in #338818 comment 36.
13592
13593 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
13594
13595         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13596           Activate pads before adding them to the source.
13597
13598 2006-10-06  Wim Taymans  <wim@fluendo.com>
13599
13600         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13601         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13602         Activate pads before adding.
13603
13604 2006-10-06  Wim Taymans  <wim@fluendo.com>
13605
13606         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13607         (gst_multipart_find_pad_by_mime):
13608         Activate pads before adding.
13609
13610         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13611         BOILERPLATE sets parent_class for us.
13612
13613 2006-10-06  Wim Taymans  <wim@fluendo.com>
13614
13615         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13616         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13617         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13618         (gst_rtspsrc_alloc_udp_ports),
13619         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13620         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13621         (gst_rtspsrc_create_transports_string),
13622         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13623         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13624         * gst/rtsp/gstrtspsrc.h:
13625         Rework how the transport string is constructed, try to share channels
13626         and udp ports.
13627         Make most of the stuff less dependant on RTP as we are also going to use
13628         it for RDT.
13629         Add support for transport specific session managers.
13630
13631         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13632         Implement _flush().
13633
13634         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13635         * gst/rtsp/rtspdefs.h:
13636         Add generic error return code.
13637
13638         * gst/rtsp/rtspext.h:
13639         Add support for pluggable tranport strings.
13640
13641         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13642         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13643         (rtsp_ext_wms_get_context):
13644         Detect WMServer and activate the extension.
13645
13646         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13647         (rtsp_transport_get_manager), (rtsp_transport_parse):
13648         * gst/rtsp/rtsptransport.h:
13649         Added methods to get mime/manager for certain transports.
13650
13651 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
13652
13653         * ext/cairo/gsttimeoverlay.c:
13654         (gst_cairo_time_overlay_update_font_height):
13655         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13656         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13657         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13658         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13659         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13660         * ext/libpng/gstpngdec.c: (user_endrow_callback):
13661         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13662         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13663         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13664         (gst_avi_demux_stream_data):
13665         * gst/cutter/gstcutter.c: (gst_cutter_chain):
13666         * gst/debug/efence.c: (gst_efence_buffer_alloc),
13667         (gst_fenced_buffer_copy):
13668         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13669         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13670         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13671         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13672         (gst_rtspsrc_handle_message):
13673         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13674         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13675           Printf format fixes.
13676
13677 2006-10-04  Wim Taymans  <wim@fluendo.com>
13678
13679         * gst/rtsp/Makefile.am:
13680         Dist new .h file too.
13681
13682 2006-10-04  Wim Taymans  <wim@fluendo.com>
13683
13684         * gst/rtsp/Makefile.am:
13685         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13686         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13687         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13688         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13689         (gst_rtspsrc_parse_rtpmap),
13690         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13691         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13692         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13693         * gst/rtsp/gstrtspsrc.h:
13694         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13695         * gst/rtsp/rtspdefs.h:
13696         * gst/rtsp/rtspext.h:
13697         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13698         (rtsp_ext_wms_get_context):
13699         * gst/rtsp/rtspextwms.h:
13700         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13701         (rtsp_transport_parse):
13702         * gst/rtsp/rtsptransport.h:
13703         Factor out extension in separate module.
13704         Fix getcaps to filter against the padtemplate.
13705         Use Content-Base if the server gives one.
13706         Rework the transport parsing a bit for future extensions.
13707         Added some Real Header field definitions.
13708
13709 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13710
13711         * docs/plugins/Makefile.am:
13712         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13713         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13714           added v4l2 stubs
13715         * gst-plugins-good.spec.in:
13716           add v4l2
13717
13718 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
13719
13720         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13721           Extract disc/album/medium number and count and try harder
13722           to extract track number/count.
13723
13724 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13725
13726         * configure.ac:
13727         * sys/Makefile.am:
13728           add build stuff for v4l2, needs --enable-experimental until
13729           the last bits are resolved
13730
13731 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
13732
13733         * tests/check/Makefile.am:
13734           Disable autodetect test temporarily, so that the build bots
13735           update -bad and the ranks of unreliable video sinks in there.
13736
13737         * tests/check/elements/autodetect.c: (GST_START_TEST):
13738           Skip test if no usable videosink is found.
13739
13740 2006-09-29  Wim Taymans  <wim@fluendo.com>
13741
13742         * gst/rtsp/URLS:
13743         Add some more URLs.
13744
13745         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13746         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13747         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13748         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13749         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13750         (gst_rtspsrc_loop), (gst_rtspsrc_send),
13751         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13752         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13753         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13754         * gst/rtsp/gstrtspsrc.h:
13755         Add timeout property to control UDP timeouts.
13756         Fix error messages.
13757         Also start a loop function when operating in UDP mode so that we can
13758         do some more stuff async.
13759         Handle element messages from udpsrc to detect timeouts. If a timeout
13760         happens we currently generate an error.
13761         API: rtspsrc::timeout property.
13762
13763         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13764         (gst_udpsrc_create):
13765         Really implement the timeout in microseconds and not milliseconds.
13766
13767 2006-09-29  Wim Taymans  <wim@fluendo.com>
13768
13769         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13770         (gst_udpsrc_create), (gst_udpsrc_set_property),
13771         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13772         * gst/udp/gstudpsrc.h:
13773         Added property to post a message on timeout.
13774         Updated docs.
13775         When restarting the select, initialize the fdsets again.
13776         Init control sockets so we don't accidentally close a random socket.
13777         API: GstUDPSrc::timeout property
13778
13779 2006-09-29  Wim Taymans  <wim@fluendo.com>
13780
13781         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13782         Fix flag registration.
13783
13784         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13785         Reading 0 also means 'no more commands'
13786
13787 2006-09-29  Wim Taymans  <wim@fluendo.com>
13788
13789         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13790
13791         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13792         Fix possible infinite loop when shutting down, a read can also return
13793         0 to indicate no more messages are available. Fixes #358156.
13794
13795 2006-09-25  Wim Taymans  <wim@fluendo.com>
13796
13797         * gst/autodetect/gstautoaudiosink.c:
13798         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13799         (gst_auto_audio_sink_find_best):
13800         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13801         Small cleanups.
13802         don't try to set "sync" property when it is not available.
13803
13804 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13805
13806         Patch by: Peter Kjellerstedt  <pkj at axis com>
13807
13808         * gst/alpha/gstalpha.c:
13809         * gst/rtp/gstrtpamrdepay.c:
13810         * gst/rtsp/gstrtspsrc.c:
13811         * gst/udp/gstudpsrc.c:
13812         * gst/videomixer/videomixer.c:
13813           Include stdlib.h in some more places, makes things compile
13814           with uClibc and -Werror (#357592).
13815
13816 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13817
13818         * ext/jpeg/gstjpegdec.c:
13819           Set minimum height to 8 (from 16), our code should handle
13820           that fine. Some of the buttons on the apple trailer site
13821           are apparently only 15 pixels high (see #357470).
13822
13823 2006-09-23  Wim Taymans  <wim@fluendo.com>
13824
13825         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13826         (gst_rtspsrc_open):
13827         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13828         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13829         (rtsp_connection_receive):
13830         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13831         * gst/rtsp/rtspdefs.h:
13832         Improve error reporting.
13833
13834 2006-09-23  Wim Taymans  <wim@fluendo.com>
13835
13836         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13837         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13838         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13839         * gst/rtp/gstrtpdepay.c:
13840         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13841         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13842         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13843         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13844         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13845         (gst_rtp_mp2t_depay_plugin_init):
13846         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13847         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13848         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13849         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13850         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13851         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13852         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13853         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13854         Fix klass typos.
13855         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13856
13857 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13858
13859         * configure.ac:
13860           Need  -base CVS for gst_base_rtp_depayload_push_ts().
13861
13862 2006-09-22  Wim Taymans  <wim@fluendo.com>
13863
13864         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13865         Don't check for a tag that is never there and check if we read the
13866         correct tag. Fixes seeking again.
13867         We must post an error when all pads are unlinked.
13868
13869 2006-09-22  Wim Taymans  <wim@fluendo.com>
13870
13871         * gst/rtp/Makefile.am:
13872         * gst/rtp/gstrtp.c: (plugin_init):
13873         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13874         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13875         (gst_rtp_vorbis_pay_reset_packet),
13876         (gst_rtp_vorbis_pay_init_packet),
13877         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13878         (gst_rtp_vorbis_pay_handle_buffer):
13879         More fixage, set endoder-params correctly in the payloader.
13880
13881 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13882
13883         * gst/autodetect/gstautoaudiosink.c:
13884         (gst_auto_audio_sink_base_init):
13885         * gst/autodetect/gstautovideosink.c:
13886         (gst_auto_video_sink_base_init):
13887           Make static pad templates static to appease valgrind's leak
13888           detector.
13889
13890         * tests/check/Makefile.am:
13891         * tests/check/elements/.cvsignore:
13892         * tests/check/elements/autodetect.c: (GST_START_TEST),
13893         (autodetect_suite):
13894           Add simple test for the ghostpad lockup on shutdown fixed in core
13895           CVS (audio bit disabled because it would need dozens of alsa
13896           suppressions and I'm too lazy to add those now).
13897
13898 2006-09-22  Wim Taymans  <wim@fluendo.com>
13899
13900         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13901         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13902         Small cleanups.
13903
13904         * gst/rtp/Makefile.am:
13905         * gst/rtp/gstrtp.c: (plugin_init):
13906         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
13907         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
13908         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
13909         (gst_rtp_vorbis_depay_process),
13910         (gst_rtp_vorbis_depay_set_property),
13911         (gst_rtp_vorbis_depay_get_property),
13912         (gst_rtp_vorbis_depay_change_state),
13913         (gst_rtp_vorbis_depay_plugin_init):
13914         * gst/rtp/gstrtpvorbisdepay.h:
13915         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
13916         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
13917         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
13918         (gst_rtp_vorbis_pay_flush_packet),
13919         (gst_rtp_vorbis_pay_append_buffer),
13920         (gst_rtp_vorbis_pay_handle_buffer),
13921         (gst_rtp_vorbis_pay_plugin_init):
13922         * gst/rtp/gstrtpvorbispay.h:
13923         Add experimental vorbis pay and depayloaders.
13924
13925 2006-09-21  Wim Taymans  <wim@fluendo.com>
13926
13927         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
13928         Fix profile-level-id parsing and setup.
13929
13930 2006-09-21  Wim Taymans  <wim@fluendo.com>
13931
13932         * gst/udp/README:
13933         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
13934         Update README, simple cleanup.
13935
13936 2006-09-21  Wim Taymans  <wim@fluendo.com>
13937
13938         * gst/rtp/README:
13939         Update README with some examples.
13940
13941         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
13942         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
13943         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
13944         (gst_rtp_mp4g_pay_setcaps):
13945         * gst/rtp/gstrtpmp4gpay.h:
13946         Make optional RTP parameters of type STRING, as required by the
13947         application/x-rtp caps specification.
13948
13949 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
13950
13951         * gst/rtp/gstrtph263pdepay.c:
13952         * gst/rtp/gstrtph263ppay.c:
13953         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
13954         RTP header.
13955
13956 2006-09-20  Wim Taymans  <wim@fluendo.com>
13957
13958         * gst/rtp/Makefile.am:
13959         And makefile too.
13960
13961 2006-09-20  Wim Taymans  <wim@fluendo.com>
13962
13963         * gst/rtp/gstrtp.c: (plugin_init):
13964         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
13965         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
13966         (decode_base64), (gst_rtp_asf_depay_setcaps),
13967         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
13968         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
13969         (gst_rtp_asf_depay_plugin_init):
13970         * gst/rtp/gstrtpasfdepay.h:
13971         Added preliminary ASF depayloader.
13972
13973         * gst/rtp/gstrtph264depay.c: (decode_base64):
13974         Fix base64 decoding.
13975
13976 2006-09-20  Wim Taymans  <wim@fluendo.com>
13977
13978         * gst/rtsp/URLS:
13979         Added some test URLS.
13980
13981         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
13982         (gst_rtspsrc_loop), (gst_rtspsrc_open):
13983         * gst/rtsp/gstrtspsrc.h:
13984         When creating streams, give access to the complete SDP.
13985         Fix some leaks.
13986         Collect and merge global stream properties in stream caps.
13987         Preliminary support for WMServer.
13988
13989         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13990         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13991         (rtsp_connection_receive):
13992         * gst/rtsp/rtspconnection.h:
13993         Make connection interruptable.
13994         Refactor to make it reconnectable.
13995         Don't fail on short reads when reading data packets.
13996
13997         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
13998         (rtsp_url_get_port):
13999         * gst/rtsp/rtspurl.h:
14000         Add methods for getting/setting the port.
14001
14002         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
14003         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
14004         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
14005         (sdp_media_get_format), (sdp_parse_line),
14006         (sdp_message_parse_buffer):
14007         Fix headers. 
14008         Add methods for getting multiple attributes with the same name.
14009         Increase buffer size when parsing.
14010         Fix parsing of a=foo fields.
14011
14012         * gst/rtsp/test.c: (main):
14013         Update to new connection API.
14014
14015         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
14016         (rtsp_message_init_response), (rtsp_message_init_data),
14017         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
14018         * gst/rtsp/rtspmessage.h:
14019         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
14020         * gst/rtsp/rtsptransport.h:
14021         * gst/rtsp/sdp.h:
14022         * gst/rtsp/sdpmessage.h:
14023         * gst/rtsp/gstrtsp.c:
14024         * gst/rtsp/gstrtsp.h:
14025         * gst/rtsp/gstrtpdec.c:
14026         * gst/rtsp/gstrtpdec.h:
14027         * gst/rtsp/rtsp.h:
14028         * gst/rtsp/rtspdefs.c:
14029         * gst/rtsp/rtspdefs.h:
14030         Dual licensed under MIT and LGPL now.
14031
14032 2006-09-19  Wim Taymans  <wim@fluendo.com>
14033
14034         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
14035         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
14036         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14037         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
14038         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
14039         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
14040         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
14041         * gst/rtsp/gstrtspsrc.h:
14042         Reorganize stream parsing and creation.
14043         Detect container formats in interleaved mode.
14044         Keep more state about the streams.
14045         Assume a server also supports PLAY if it does not say.
14046         Add unicast and interleaved properties to TCP transport requests to make
14047         some servers happy (WMServer).
14048
14049         * gst/rtsp/sdpmessage.h:
14050         Add some defines for the standard Bandwidth types.
14051
14052 2006-09-19  Wim Taymans  <wim@fluendo.com>
14053
14054         * gst/rtsp/test.c: (main):
14055         Fix build.
14056
14057 2006-09-19  Wim Taymans  <wim@fluendo.com>
14058
14059         * gst/wavparse/gstwavparse.c:
14060         Add ms-gsm to the src template.
14061
14062 2006-09-18  Wim Taymans  <wim@fluendo.com>
14063
14064         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14065         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
14066         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14067         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
14068         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14069         * gst/rtsp/gstrtspsrc.h:
14070         Small cleanups, added documentation.
14071         Try to clean up the requests and responses.
14072         Refactor parsing the supported methods.
14073
14074         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
14075         (rtsp_connection_create), (rtsp_connection_send),
14076         (parse_response_status), (parse_request_line),
14077         (rtsp_connection_receive), (rtsp_connection_close),
14078         (rtsp_connection_free):
14079         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
14080         (rtsp_transport_init), (rtsp_transport_parse),
14081         (rtsp_transport_free):
14082         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
14083         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
14084         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
14085         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
14086         Use g_return_val some more.
14087
14088         * gst/rtsp/rtspdefs.h:
14089         Add more enum values to track initial states.
14090
14091         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
14092         (rtsp_message_init_request), (rtsp_message_new_response),
14093         (rtsp_message_init_response), (rtsp_message_init_data),
14094         (rtsp_message_unset), (rtsp_message_free),
14095         (rtsp_message_add_header), (rtsp_message_remove_header),
14096         (rtsp_message_get_header), (rtsp_message_set_body),
14097         (rtsp_message_take_body), (rtsp_message_get_body),
14098         (rtsp_message_steal_body), (rtsp_message_dump):
14099         * gst/rtsp/rtspmessage.h:
14100         Reorder arguments, object goes as the first one.
14101         Use g_return_val some more.
14102
14103 2006-09-18  Wim Taymans  <wim@fluendo.com>
14104
14105         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14106         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14107         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14108         * gst/rtsp/gstrtspsrc.h:
14109         Export sometimes source pad with correct caps on the template, create
14110         the ghostpad from the template.
14111         Remove RTCP template as we never expose RTCP.
14112         Protect against invalid body size.
14113         Avoid memcpy when creating the output buffer.
14114         Properly post an error and send EOS when the loop function is shut down.
14115
14116 2006-09-18  Wim Taymans  <wim@fluendo.com>
14117
14118         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14119
14120         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14121         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14122         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14123         * gst/rtsp/gstrtspsrc.h:
14124         Make sure we can never set an invalid location.
14125
14126         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14127         * gst/rtsp/rtspmessage.h:
14128         Added _steal_body method for future use.
14129
14130         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14131         Make freeing of NULL url return immediatly.
14132
14133 2006-09-18  Wim Taymans  <wim@fluendo.com>
14134
14135         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14136
14137         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14138         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14139         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14140         (gst_rtspsrc_change_state):
14141         * gst/rtsp/gstrtspsrc.h:
14142         Use boilerplate.
14143         Make rtspsrc subclass GstBin to make state changes easier.
14144         Add Range header field on the PLAY request.
14145
14146 2006-09-18  Wim Taymans  <wim@fluendo.com>
14147
14148         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14149
14150         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14151         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14152         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14153         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14154         * gst/rtsp/rtspconnection.c: (inet_aton):
14155         Small cleanups.
14156         when multicast is selected as the transport, create UDP sources and
14157         connect to the multicast group.
14158         Move parsing and setting of caps to a common place.
14159         Fixes #349894.
14160
14161 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
14162
14163         * ext/flac/gstflactag.c:
14164         * gst/alpha/gstalpha.c:
14165         * gst/debug/breakmydata.c:
14166         * gst/debug/negotiation.c:
14167         * gst/debug/testplugin.c:
14168         * gst/effectv/gstaging.c:
14169         * gst/effectv/gstdice.c:
14170         * gst/effectv/gstedge.c:
14171         * gst/effectv/gstquark.c:
14172         * gst/effectv/gstrev.c:
14173         * gst/effectv/gstshagadelic.c:
14174         * gst/effectv/gstvertigo.c:
14175         * gst/effectv/gstwarp.c:
14176         * gst/multipart/multipartdemux.c:
14177         * gst/multipart/multipartmux.c:
14178         * gst/videobox/gstvideobox.c:
14179         * gst/videofilter/gstgamma.c:
14180         * gst/videofilter/gstvideotemplate.c:
14181         * gst/videomixer/videomixer.c:
14182         * sys/sunaudio/gstsunaudiosrc.h:
14183         More G_OBJECT macro fixing.
14184
14185 2006-09-16  Wim Taymans  <wim@fluendo.com>
14186
14187         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14188
14189         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14190         Correctly set the dwLength in strh.
14191         With this patch, the file duration is now displayed correctly in window
14192         media player and the AVI plays completely. Fixes #356147
14193
14194 2006-09-15  Wim Taymans  <wim@fluendo.com>
14195
14196         Patch by: Darren Kenny <darren dot kenny at sun dot com>
14197
14198         * sys/sunaudio/gstsunaudiomixerctrl.c:
14199         (gst_sunaudiomixer_ctrl_build_list):
14200         Set the output track as the MASTER so that the gnome-settings-daemon
14201         keybindings for changing the volume using the keyboard works.
14202         Fixes #356142.
14203
14204 2006-09-15  Wim Taymans  <wim@fluendo.com>
14205
14206         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14207         Fix documentation, it is not possible to control the framerate of jpegdec
14208         using filtered caps yet. Fixes #355210.
14209         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14210         stop when there is an error.
14211
14212 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14213
14214         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14215         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14216           Don't interpret a first buffer with an offset of NONE as
14217           'from the middle of the stream', but only a first buffer
14218           that has a valid buffer offset that's non-zero (see #345449).
14219
14220 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14221
14222         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14223         (gst_icydemux_typefind_or_forward):
14224         * gst/icydemux/gsticydemux.h:
14225           When we merge/collect multiple incoming buffers for typefinding
14226           purposes, keep an initial 0 offset on the first outgoing buffer
14227           as well (otherwise id3demux won't work right). Fixes #345449.
14228           Also Make buffer metadata writable before setting buffer caps.
14229
14230         * tests/check/elements/icydemux.c: (typefind_succeed),
14231         (cleanup_icydemux), (push_data), (GST_START_TEST),
14232         (icydemux_suite):
14233           Small test case for the above.
14234
14235 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
14236
14237         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14238         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14239         (gst_avi_demux_stream_header_push),
14240         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14241         (gst_avi_demux_loop):
14242           More code reuse and better logging in _peek_chunk(). Reintroduce check
14243           for chunk sizes before reading them (avoid oom). Better handling for 
14244           invalid chunksizes when streaming.
14245
14246 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
14247
14248         * gst/level/gstlevel.c: (gst_level_set_property):
14249         * gst/level/gstlevel.h:
14250           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14251           René Stadler
14252
14253 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
14254
14255         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14256         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14257         (gst_avi_demux_stream_data):
14258           Revert one change to fix streaming avi (adapter size != data size).
14259
14260 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14261
14262         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
14263
14264         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14265         (gst_matroska_demux_reset),
14266         (gst_matroska_demux_read_track_encodings),
14267         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14268         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14269         (gst_matroska_demux_subtitle_caps):
14270         * gst/matroska/matroska-ids.h:
14271           Add support for VOBSUB subtitle tracks and zlib-compressed
14272           tracks. Make sure we start on a keyframe after a seek. (#343348)
14273
14274 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14275
14276         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14277         (gst_matroska_demux_push_flac_codec_priv_data),
14278         (gst_matroska_demux_push_xiph_codec_priv_data),
14279         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14280         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14281         * gst/matroska/matroska-ids.h:
14282           Add basic FLAC support (#311586), not perfect yet though, needs some
14283           tweaking in flacdec; also, seeking could be better.
14284           Do better bounds checking when deserialising vorbis stream headers
14285           to make sure we don't read beyond the end of the buffer on bad input.
14286
14287 2006-09-04  Wim Taymans  <wim@fluendo.com>
14288
14289         Patch by: Alessandro Decina <alessandro at nnva dot org>
14290
14291         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14292         Seeking back in a file containing a CMML stream errors out if the seek
14293         goes back up to the CMML headers. This is because after the seek the xml
14294         processing instruction <?xml ...?> is submitted to the xml parser again, 
14295         which results in an error. The attached patch fixes the problem. 
14296         Fixes #353908.
14297
14298         * ext/annodex/gstcmmlenc.h:
14299         Fix authors name.
14300
14301
14302 2006-08-28  Andy Wingo  <wingo@pobox.com>
14303
14304         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14305         New helper function to lessen the ifdefs.
14306         (GST_INFO_OBJECT): 
14307         (gst_dv1394src_iso_receive): Use it.
14308         (gst_dv1394src_create): Also use the control sockets in iec61883
14309         mode.
14310         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14311         handle for AVC operations; fixes #348233.
14312
14313 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14314
14315         * configure.ac:
14316         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14317         * docs/plugins/inspect/plugin-audiofx.xml:
14318         * docs/plugins/inspect/plugin-audiofxgood.xml:
14319         * gst/audiofx/Makefile.am:
14320         * gst/audiofx/audiofx.c:
14321         * gst/audiofxgood/.cvsignore:
14322         * gst/audiofxgood/Makefile.am:
14323         * gst/audiofxgood/audiofx.c:
14324         * gst/audiofxgood/audiopanorama.c:
14325         * gst/audiofxgood/audiopanorama.h:
14326           Rename again (audiofxgood -> audiofx).
14327
14328 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14329
14330         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14331         (gst_avi_demux_stream_scan):
14332           Initialze variables.
14333
14334 2006-08-25  Wim Taymans  <wim@fluendo.com>
14335
14336         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14337         (gst_avi_demux_init), (gst_avi_demux_finalize),
14338         (gst_avi_demux_reset), (gst_avi_demux_index_last),
14339         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14340         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14341         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14342         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14343         (gst_avi_demux_massage_index),
14344         (gst_avi_demux_calculate_durations_from_index),
14345         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14346         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14347         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14348         (gst_avi_demux_change_state):
14349         * gst/avi/gstavidemux.h:
14350         More attempts to turn this into readable code.
14351         Don't leak adapters.
14352         Calculate duration according to index more efficiently.
14353         Don't try to act like we drive the pipeline in chain mode.
14354
14355 2006-08-25  Wim Taymans  <wim@fluendo.com>
14356
14357         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14358         Fix build.
14359
14360 2006-08-25  Wim Taymans  <wim@fluendo.com>
14361
14362         Patch by: Alessandro Decina <alessandro at nnva dot org>
14363
14364         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14365         Do some extra sanity checks.
14366         Fixes #350340.
14367
14368         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14369         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14370         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14371         Check if clip->start_time is valid before adding the clip to the
14372         track list.
14373         Reset enc->preamble going from PAUSED to READY.
14374         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14375         only used for EOS.
14376         Only post an error message if we were the one that created the fatal
14377         GstFlowReturn value.
14378
14379         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14380         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14381         Parse the seconds field of the npt-sec time format using %llu rather than
14382         %d and check that the value scaled by GST_SECOND doesn't overflow.
14383         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14384         Lookup a clip's track with clip->track rather than clip->id which
14385         makes no sense.
14386         Identify a clip by its track and start time and not its xml id.
14387         do some more input checking and make sure we don't do undefined shifts.
14388
14389         * tests/check/elements/cmmldec.c: (setup_cmmldec),
14390         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14391         (cmml_tag_message_pop), (check_headers), (push_clip_full),
14392         (push_clip), (push_empty_clip), (check_output_clip),
14393         (GST_START_TEST), (cmmldec_suite):
14394         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14395         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14396         (check_headers), (push_clip), (check_clip_times), (check_clip),
14397         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14398         Added some more checks.
14399
14400 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14401
14402         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14403         (gst_audio_panorama_set_property),
14404         (gst_audio_panorama_get_property),
14405         (gst_audio_panorama_transform_m2s_int),
14406         (gst_audio_panorama_transform_s2s_int),
14407         (gst_audio_panorama_transform_m2s_float),
14408         (gst_audio_panorama_transform_s2s_float):
14409         * gst/audiofxgood/audiopanorama.h:
14410         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14411           Make also the pan-property float (saves scaling and yields better
14412           resolution)
14413
14414 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14415
14416         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14417         (gst_audio_panorama_transform_m2s_float),
14418         (gst_audio_panorama_transform_s2s_float):
14419           ChangeLog surgery to add cymax's real name
14420
14421
14422 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14423
14424         Patch by: René Stadler <mail@renestadler.de>
14425
14426         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14427         (gst_audio_panorama_transform_m2s_int),
14428         (gst_audio_panorama_transform_s2s_int),
14429         (gst_audio_panorama_transform_m2s_float),
14430         (gst_audio_panorama_transform_s2s_float),
14431         (gst_audio_panorama_transform):
14432         * gst/audiofxgood/audiopanorama.h:
14433           Added float support
14434
14435 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14436
14437         * gst/audiofxgood/audiopanorama.c:
14438         (gst_audio_panorama_transform_m2s):
14439           Fix docs & debug category. Add Fixme for volume pan levels.
14440
14441 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14442
14443         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14444         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14445         (gst_avi_demux_stream_header_pull),
14446         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14447         (gst_avi_demux_chain):
14448           unbreak AVI index handling, some more debug, remove an obsolete
14449           adapter_flush that caused streaming to wander off in the wild
14450
14451 2006-08-24  Wim Taymans  <wim@fluendo.com>
14452
14453         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14454         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14455         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14456         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14457         (gst_avi_demux_calculate_durations_from_index),
14458         (gst_avi_demux_stream_header_push),
14459         (gst_avi_demux_stream_header_pull):
14460         * gst/avi/gstavidemux.h:
14461         Some more cleanups. 
14462         Fix totalFrames parsing in ODML.
14463         Disable use of index for length calculation in case of ODML as this is
14464         broken now.
14465
14466 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
14467
14468         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14469           Use libgsttag helper function here too.
14470
14471 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
14472
14473         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14474         (gst_avi_demux_init), (gst_avi_demux_dispose),
14475         (gst_avi_demux_reset), (gst_avi_demux_index_next),
14476         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14477         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14478         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14479         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14480         (gst_avi_demux_parse_subindex),
14481         (gst_avi_demux_read_subindexes_push),
14482         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14483         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14484         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14485         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14486         (gst_avi_demux_stream_header_pull),
14487         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14488         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14489         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14490         (gst_avi_demux_change_state):
14491         * gst/avi/gstavidemux.h:
14492           Initial streaming support for avidemux (fixes #336465)
14493
14494 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14495
14496         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14497           There is no taglibmux element ...
14498
14499         * gst/rtsp/gstrtspsrc.c:
14500           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14501           was complaining about unknown entity here.
14502
14503 2006-08-22  Wim Taymans  <wim@fluendo.com>
14504
14505         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14506         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14507         (gst_avi_demux_process_next_entry):
14508         * gst/avi/gstavidemux.h:
14509         Mark DISCONT.
14510         Remove old unused fields and reorder the struct a bit.
14511
14512 2006-08-22  Wim Taymans  <wim@fluendo.com>
14513
14514         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14515         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14516         (gst_rtspsrc_pause):
14517         * gst/rtsp/gstrtspsrc.h:
14518         * sys/oss/gstosssink.c: (gst_oss_sink_open),
14519         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14520         Small documentation updates.
14521
14522 2006-08-22  Wim Taymans  <wim@fluendo.com>
14523
14524         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14525         (gst_avi_demux_index_entry_for_time),
14526         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14527         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14528         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14529         (gst_avi_demux_next_data_buffer),
14530         (gst_avi_demux_calculate_durations_from_index),
14531         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14532         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14533         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14534         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14535         * gst/avi/gstavidemux.h:
14536         Precalc most of the duration query for each stream.
14537         Make seeking more correct.
14538         Use GstSegment to track position and duration.
14539         Code cleanups and leak fixes.
14540         Calculate correct total duration based on index length.
14541
14542 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
14543
14544         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14545         (parse_insert_string_field):
14546           If strings in text fields are marked ISO8859-1, but contain
14547           valid UTF-8 already, then handle them as UTF-8 and ignore
14548           the encoding. (#351794)
14549
14550 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14551
14552         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14553         (gst_flac_dec_write), (gst_flac_dec_loop),
14554         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14555         (gst_flac_dec_src_query):
14556         * ext/flac/gstflacdec.h:
14557           Make flac-in-ogg work (#352100).
14558
14559 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14560
14561         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14562           Don't unref buffers of which we've already given away
14563           ownership to the adapter.
14564
14565 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14566
14567         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14568           Make metadata extraction actually work.
14569
14570         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14571         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14572         (gst_speexenc_chain):
14573           Fix metadata writing: replace old code which wrote completely
14574           broken tags with libgsttag-based code. Plus miscellaneous
14575           code cleanups (use static pad templates etc.) and a bunch
14576           of leak fixes.
14577
14578 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14579
14580         * gst/audiopanorama/.cvsignore:
14581         * gst/audiopanorama/Makefile.am:
14582         * gst/audiopanorama/audiofx.c:
14583         * gst/audiopanorama/audiopanorama.c:
14584         * gst/audiopanorama/audiopanorama.h:
14585           die! die! die! you should never have been there
14586
14587 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
14588
14589         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14590         Fix invalid memory access in audiopanorama test suite.
14591
14592 2006-08-21  Edward Hervey  <edward@fluendo.com>
14593
14594         * tests/check/elements/.cvsignore:
14595         ignore built file
14596
14597 2006-08-21  Wim Taymans  <wim@fluendo.com>
14598
14599         * gst/rtp/Makefile.am:
14600         Fix the build again.
14601
14602 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14603
14604         * gst/audiofxgood/.cvsignore:
14605         * gst/audiofxgood/Makefile.am:
14606         * gst/audiofxgood/audiofx.c: (plugin_init):
14607         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14608         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14609         (gst_audio_panorama_set_property),
14610         (gst_audio_panorama_get_property),
14611         (gst_audio_panorama_get_unit_size),
14612         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14613         (gst_audio_panorama_transform_m2s),
14614         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14615         * gst/audiofxgood/audiopanorama.h:
14616           resubmit with the desired name *again*
14617
14618 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14619
14620         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14621         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14622           use g_assert in _get_unit_size
14623
14624 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14625
14626         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14627         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14628         * docs/plugins/inspect/plugin-audiofxgood.xml:
14629           cleanup -unused.txt to make it useful, add previously missing docs
14630
14631         * ext/Makefile.am:
14632           Quietly (accidentally) enable LADSPA for building by default, 
14633           despite the fact that it doesn't meet the plugin checklist.
14634             -- Added by Jan Schmidt 18 Dec 2006
14635
14636         * ext/esd/esdmon.c:
14637         * ext/esd/esdsink.c:
14638         * ext/esd/gstesd.c: (plugin_init):
14639           reflow to get rid of two external symbols
14640
14641         * gst/audiofxgood/audiofx.c: (plugin_init):
14642           re-add
14643
14644 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14645
14646         * configure.ac:
14647         * gst/audiofxgood/.cvsignore:
14648         * gst/audiofxgood/Makefile.am:
14649         * gst/audiofxgood/audiofx.c
14650         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14651         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14652         (gst_audio_panorama_set_property),
14653         (gst_audio_panorama_get_property),
14654         (gst_audio_panorama_get_unit_size),
14655         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14656         (gst_audio_panorama_transform_m2s),
14657         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14658         * gst/audiofxgood/audiopanorama.h:
14659         * tests/check/Makefile.am:
14660         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14661         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14662         (panorama_suite), (main):
14663         Add audiofxgood plugin with audiopanorama element
14664
14665 2006-08-18  Wim Taymans  <wim@fluendo.com>
14666
14667         * docs/plugins/Makefile.am:
14668         More Oss docs fixage. 
14669
14670 2006-08-18  Wim Taymans  <wim@fluendo.com>
14671
14672         * gst/rtp/Makefile.am:
14673         * gst/rtp/gstrtp.c: (plugin_init):
14674         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14675         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14676         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14677         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14678         (gst_rtp_sv3v_depay_get_property),
14679         (gst_rtp_sv3v_depay_change_state),
14680         (gst_rtp_sv3v_depay_plugin_init):
14681         * gst/rtp/gstrtpsv3vdepay.h:
14682         Added experimental SVQ3 depayloader.
14683
14684 2006-08-18  Edward Hervey  <edward@fluendo.com>
14685
14686         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14687         (gst_dvdemux_loop), (gst_dvdemux_change_state):
14688         * ext/dv/gstdvdemux.h:
14689         When handling seek requests, don't send the newsegment event from the
14690         calling thread. Instead save it so it can be sent from the streaming
14691         thread.
14692
14693 2006-08-17  Wim Taymans  <wim@fluendo.com>
14694
14695         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14696
14697         * gst/multipart/multipartdemux.c: (multipart_parse_header):
14698         Accept leading whitespace before the boundary
14699         This patch makes the demuxer allow some whitespace before the actual
14700         boundary. This makes the demuxer work with the ``old'' gstreamer
14701         multipartmuxer again (which placed an extra \n before the start
14702         of the stream) Fixes #349068.
14703
14704 2006-08-17  Wim Taymans  <wim@fluendo.com>
14705
14706         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14707         Error out on non-implemented stuff.
14708
14709 2006-08-16  Wim Taymans  <wim@fluendo.com>
14710
14711         Patch by: Andy Wingo <wingo at pobox dot com>
14712
14713         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14714         (gst_signal_processor_start), (gst_signal_processor_stop),
14715         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14716         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14717         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14718         (gst_signal_processor_change_state):
14719         Make ladspa elements reusable. Fixes #350006.
14720
14721 2006-08-16  Wim Taymans  <wim@fluendo.com>
14722
14723         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14724         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14725         names as possible. Fixes #349901.
14726
14727 2006-08-16  Wim Taymans  <wim@fluendo.com>
14728
14729         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14730         (gst_signal_processor_do_pushes):
14731         A push() gives away our refcount so we should not use the buffer on the
14732         pen anymore.
14733
14734 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14735
14736         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14737         (gst_oss_mixer_element_finalize):
14738           Don't leak device string.
14739
14740 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14741
14742         * configure.ac:
14743           Require CVS of GStreamer core and -base (for
14744           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14745
14746         * ext/taglib/gstid3v2mux.cc:
14747           Write extended comment tags properly (#348762).
14748
14749         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14750         (parse_comment_frame):
14751           Extract COMM frames into extended comments, which makes it
14752           easier to properly retain the description bit of the tag
14753           and maintain this information when re-tagging (#348762).
14754
14755 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14756
14757         * tests/check/Makefile.am:
14758           Don't try to run annodex unit tests if the annodex
14759           plugin has not been built (Fixes #351116).
14760
14761 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14762
14763         * gst/autodetect/gstautoaudiosink.c:
14764         (gst_auto_audio_sink_find_best):
14765           When we can't find a usable audiosink, don't error out,
14766           but use a fake sink instead and post a warning message
14767           on the bus (#341278).
14768
14769 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14770
14771         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14772         * sys/oss/gstosssink.c:
14773         * sys/oss/gstosssrc.c:
14774           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14775           ossmixer's new device property.
14776
14777         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14778         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14779           Add docs for OSS elements.
14780
14781         * docs/plugins/inspect/plugin-aasink.xml:
14782         * docs/plugins/inspect/plugin-alaw.xml:
14783         * docs/plugins/inspect/plugin-alpha.xml:
14784         * docs/plugins/inspect/plugin-alphacolor.xml:
14785         * docs/plugins/inspect/plugin-annodex.xml:
14786         * docs/plugins/inspect/plugin-apetag.xml:
14787         * docs/plugins/inspect/plugin-auparse.xml:
14788         * docs/plugins/inspect/plugin-autodetect.xml:
14789         * docs/plugins/inspect/plugin-avi.xml:
14790         * docs/plugins/inspect/plugin-cacasink.xml:
14791         * docs/plugins/inspect/plugin-cairo.xml:
14792         * docs/plugins/inspect/plugin-cdio.xml:
14793         * docs/plugins/inspect/plugin-cutter.xml:
14794         * docs/plugins/inspect/plugin-debug.xml:
14795         * docs/plugins/inspect/plugin-dv.xml:
14796         * docs/plugins/inspect/plugin-efence.xml:
14797         * docs/plugins/inspect/plugin-effectv.xml:
14798         * docs/plugins/inspect/plugin-esdsink.xml:
14799         * docs/plugins/inspect/plugin-flac.xml:
14800         * docs/plugins/inspect/plugin-flxdec.xml:
14801         * docs/plugins/inspect/plugin-gconfelements.xml:
14802         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14803         * docs/plugins/inspect/plugin-goom.xml:
14804         * docs/plugins/inspect/plugin-halelements.xml:
14805         * docs/plugins/inspect/plugin-icydemux.xml:
14806         * docs/plugins/inspect/plugin-id3demux.xml:
14807         * docs/plugins/inspect/plugin-jpeg.xml:
14808         * docs/plugins/inspect/plugin-level.xml:
14809         * docs/plugins/inspect/plugin-matroska.xml:
14810         * docs/plugins/inspect/plugin-mulaw.xml:
14811         * docs/plugins/inspect/plugin-multipart.xml:
14812         * docs/plugins/inspect/plugin-navigationtest.xml:
14813         * docs/plugins/inspect/plugin-ossaudio.xml:
14814         * docs/plugins/inspect/plugin-png.xml:
14815         * docs/plugins/inspect/plugin-rtp.xml:
14816         * docs/plugins/inspect/plugin-rtsp.xml:
14817         * docs/plugins/inspect/plugin-shout2send.xml:
14818         * docs/plugins/inspect/plugin-smpte.xml:
14819         * docs/plugins/inspect/plugin-speex.xml:
14820         * docs/plugins/inspect/plugin-taglib.xml:
14821         * docs/plugins/inspect/plugin-udp.xml:
14822         * docs/plugins/inspect/plugin-videobalance.xml:
14823         * docs/plugins/inspect/plugin-videobox.xml:
14824         * docs/plugins/inspect/plugin-videoflip.xml:
14825         * docs/plugins/inspect/plugin-videomixer.xml:
14826         * docs/plugins/inspect/plugin-wavenc.xml:
14827         * docs/plugins/inspect/plugin-wavparse.xml:
14828         * docs/plugins/inspect/plugin-ximagesrc.xml:
14829           Update to CVS version.
14830           
14831 2006-08-16  Wim Taymans  <wim@fluendo.com>
14832
14833         * gst/rtp/gstrtpamrdepay.c:
14834         * gst/rtp/gstrtpmp4gdepay.c:
14835         Caps extra properties must be defined as strings for
14836         depayloaders because they are generated from an SDP.
14837
14838         * gst/rtp/Makefile.am:
14839         * gst/rtp/gstrtp.c: (plugin_init):
14840         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14841         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14842         (gst_rtp_h264_depay_finalize), (decode_base64),
14843         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14844         (gst_rtp_h264_depay_set_property),
14845         (gst_rtp_h264_depay_get_property),
14846         (gst_rtp_h264_depay_change_state),
14847         (gst_rtp_h264_depay_plugin_init):
14848         * gst/rtp/gstrtph264depay.h:
14849         Added basic, not completely functional RFC 3984 H264 depayloader.
14850
14851 2006-08-16  Wim Taymans  <wim@fluendo.com>
14852
14853         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14854         Add pads after setting them up.
14855
14856         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14857         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14858         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14859         (gst_rtspsrc_stream_setup_rtp),
14860         (gst_rtspsrc_stream_configure_transport),
14861         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14862         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14863         (gst_rtspsrc_pause):
14864         * gst/rtsp/gstrtspsrc.h:
14865         Fix interleaved mode.
14866          - Protect streaming with lock.
14867          - Combine flows
14868          - set caps on outgoing buffers.
14869          - strip trailing \0 from data packets.
14870          - Configure RTP/RTCP in stream.
14871         Use DEBUG_OBJECT more.
14872
14873 2006-08-16  Wim Taymans  <wim@fluendo.com>
14874
14875         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14876         Turn a g_print into a DEBUG line.
14877
14878 2006-08-13  Wim Taymans  <wim@fluendo.com>
14879
14880         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14881         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14882         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14883         (gst_oss_mixer_element_get_property),
14884         (gst_oss_mixer_element_change_state):
14885         * sys/oss/gstossmixerelement.h:
14886         Small cleanups. Better error reporting.
14887         Add device property for the mixer instead of the hardcoded
14888         /dev/mixer. Fixes #350785.
14889         API: GstOssMixerElement::device property
14890
14891 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
14892
14893         Patch by: Jens Granseuer <jensgr at gmx net>
14894
14895         * gconf/Makefile.am:
14896           Make --disable-schemas work right (they still need
14897           to be copied to the installation directory, just not
14898           applied). Fixes #351347 (also #344100).
14899           
14900 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14901
14902         * configure.ac: back to HEAD
14903
14904 === release 0.10.4 ===
14905
14906 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
14907
14908         * configure.ac:
14909           releasing 0.10.4, "Dear Leader"
14910
14911 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14912
14913         Patch by: Edward Hervey <edward@fluendo.com>
14914
14915         * configure.ac:
14916         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
14917         (gst_wavparse_stream_data):
14918         Send the newsegment event in the streaming thread.
14919         Fixes #347529
14920
14921 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
14922
14923         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
14924         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
14925         (gst_smokeenc_resync), (gst_smokeenc_chain):
14926           Refuse sink caps in the encoder if width or height is not a
14927           multiple of 16, the encoder does not support that yet (#349939);
14928           along the same lines, check the return value of the encoder
14929           setup function; also remove some debug log clutter.
14930
14931 2006-08-04  Andy Wingo  <wingo@pobox.com>
14932
14933         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
14934         whether a processor can work in place or not, and for keeping
14935         track of its state. Change the FlowReturn instance variable from
14936         "state" to "flow_state", all callers changed.
14937
14938         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
14939         (gst_signal_processor_start, gst_signal_processor_stop)
14940         (gst_signal_processor_cleanup): New functions to manage the
14941         processor's state.
14942         (gst_signal_processor_setcaps): start() as well as setup() here.
14943         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
14944         (gst_signal_processor_change_state): Stop and cleanup the
14945         processor as we go to NULL.
14946
14947         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
14948         INPLACE_BROKEN is not set.
14949
14950         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
14951         Do the alloc_buffer in bytes, not frames.
14952         
14953 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14954
14955         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
14956         Fix rgb masks when recording in < 24bpp.
14957
14958 2006-08-04  Andy Wingo  <wingo@pobox.com>
14959
14960         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
14961         (gst_signal_processor_prepare)
14962         (gst_signal_processor_update_inputs)
14963         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
14964         (gst_signal_processor_flush)
14965         (gst_signal_processor_sink_activate_push)
14966         (gst_signal_processor_src_activate_pull)
14967         (gst_signal_processor_change_state): Remove the last of the code
14968         that assumes that we process whole buffers at a time. Fix some
14969         debugging. Seems to work now in some cases.
14970         (gst_signal_processor_src_activate_pull): BPB
14971
14972 2006-08-01  Andy Wingo  <wingo@pobox.com>
14973
14974         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
14975         Fix nframes-choosing.
14976         (gst_signal_processor_init): Init pending_in and pending_out.
14977
14978         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
14979         more default sample rate, although we never check that the sample
14980         rate actually gets set. Something for the future.
14981         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
14982         (gst_signal_processor_event): Refcount fixen.
14983         (gst_signal_processor_process): Pull the number of frames to
14984         process from the sizes of the buffers in the input pens.
14985         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
14986         (gst_signal_processor_do_pulls): Add an nframes argument, and use
14987         it instead of buffer_frames.
14988         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
14989         to do_pulls.
14990         (gst_signal_processor_chain)
14991         (gst_signal_processor_sink_activate_push)
14992         (gst_signal_processor_src_activate_pull):  Refcount fixen.
14993
14994         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
14995
14996 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
14997
14998         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
14999         (gst_signal_processor_process):
15000           don't query buffer-frames from caps, add lots of debug-log,
15001           try fix for assert (#349189)
15002
15003 2006-07-31  Wim Taymans  <wim@fluendo.com>
15004
15005         * gst/udp/gstudpsrc.c:
15006         Fix docs.
15007
15008 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
15009
15010         * ext/ladspa/gstsignalprocessor.c:
15011         (gst_signal_processor_add_pad_from_template),
15012         (gst_signal_processor_init), (gst_signal_processor_setcaps),
15013         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
15014         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
15015         (gst_signal_processor_sink_activate_push),
15016         (gst_signal_processor_src_activate_pull),
15017         (gst_signal_processor_change_state):
15018          Add debugs logs here and there, add more error handling, add some
15019          FIXME comments, filed #349189
15020
15021 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15022
15023         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15024         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
15025         Set caps on buffer correctly.  Fixes bug #349155.
15026
15027 2006-07-28  Wim Taymans  <wim@fluendo.com>
15028
15029         Patch by: Sjoerd Simons <sjoerd at luon dot net>
15030
15031         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15032         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15033         (gst_multipart_demux_finalize), (get_line_end),
15034         (multipart_parse_header), (multipart_find_boundary),
15035         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15036         (gst_multipart_set_property), (gst_multipart_get_property):
15037         Uses GstAdapter instead of own buffering.
15038         Actually parses the mime-type correctly (In tests the mime-type was
15039         always "" with the old version).
15040         Uses the Content-length header if available to speed up things.
15041         Reliably autoscans the boundary name by default.
15042         Fixes #349068.
15043
15044         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
15045         Don't start the stream with a \n.
15046
15047 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
15048
15049         Patch by: Brian Cameron <brian dot cameron at sun com>
15050
15051         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
15052           Open source with O_NONBLOCK (#349015).
15053
15054 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
15055
15056         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15057         (gst_avi_demux_massage_index):
15058         * gst/avi/gstavidemux.h:
15059           Whitespace fixes and more debug
15060
15061 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15062
15063         * gst/autodetect/gstautoaudiosink.c:
15064         (gst_auto_audio_sink_create_element_with_pretty_name),
15065         (gst_auto_audio_sink_find_best),
15066         (gst_auto_audio_sink_change_state):
15067           Get rid of old and unused magic sound-server properties stuff.
15068           Add suffix to child sink's name that makes it easy to see from
15069           the name alone which type it actually is (alsa, oss, esd, etc.).
15070
15071 2006-07-27  Wim Taymans  <wim@fluendo.com>
15072
15073         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15074         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
15075         (gst_udpsrc_start):
15076         * gst/udp/gstudpsrc.h:
15077         Rename "buffer" to "buffer-size" to make clear it is a size we set and
15078         not some sort of feature we enable.
15079
15080 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
15081
15082         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
15083           Use CLOSE_SOCKET() here instead of close() to maintain
15084           win32 workiness.
15085
15086 2006-07-27  Wim Taymans  <wim@fluendo.com>
15087
15088         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
15089
15090         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15091         (gst_udpsrc_create), (gst_udpsrc_set_property),
15092         (gst_udpsrc_get_property), (gst_udpsrc_start):
15093         * gst/udp/gstudpsrc.h:
15094         Added "buffer-size" property to control the kernel receive buffer size.
15095         Update documentation.
15096         Small cleanups. Fixes #348752.
15097         API: buffer-size property
15098
15099 2006-07-26  Wim Taymans  <wim@fluendo.com>
15100
15101         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15102
15103         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15104         (gst_rtp_pcma_pay_handle_buffer):
15105         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15106         (gst_rtp_pcmu_pay_handle_buffer):
15107         Fix timestamp calculation on outgoing RTP packets.
15108         Fixes #348675.
15109
15110 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15111
15112         * ext/taglib/gstid3v2mux.cc:
15113           Fix writing of comment frames (should be COMM not TCOM),
15114           is still sub-optimal though, since we don't retain or
15115           extract the comment descriptions properly (#334375,
15116           also see #334375).
15117
15118 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15119
15120         * gst/wavparse/gstwavparse.c:
15121           #define 'fact' RIFF chunk if we are not compiling against
15122           -base CVS (we don't want to depend on -base CVS for this
15123           one define only, and also not for release order reasons).
15124
15125 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15126
15127         * ext/taglib/gstid3v2mux.cc:
15128           Handle multiple tags of the same type properly. Re-inject
15129           unparsed ID3v2 frames that we get as binary blobs from
15130           id3demux into the tag again so we don't lose information
15131           when retagging (#334375).
15132
15133 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15134
15135         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15136           Document newly-added properties properly, so that there is a
15137           'Since: 0.10.4' in the plugin docs. Convert some property
15138           names into canonical GObject style (GObject will do that
15139           internally anyway).
15140
15141 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15142
15143         * gst/id3demux/id3tags.c:
15144         (id3demux_add_id3v2_frame_blob_to_taglist):
15145           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15146           well, and add the version to the blob's buffer caps, since that
15147           information will be needed for deserialisation later on (#348644).
15148
15149 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
15150
15151         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15152         (gst_avi_demux_parse_stream):
15153          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15154          indentation and spacing.
15155
15156 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15157
15158         * docs/plugins/Makefile.am:
15159         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15160         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15161         * docs/plugins/gst-plugins-good-plugins.args:
15162         * docs/plugins/inspect/plugin-1394.xml:
15163         * docs/plugins/inspect/plugin-aasink.xml:
15164         * docs/plugins/inspect/plugin-alaw.xml:
15165         * docs/plugins/inspect/plugin-alpha.xml:
15166         * docs/plugins/inspect/plugin-alphacolor.xml:
15167         * docs/plugins/inspect/plugin-annodex.xml:
15168         * docs/plugins/inspect/plugin-apetag.xml:
15169         * docs/plugins/inspect/plugin-auparse.xml:
15170         * docs/plugins/inspect/plugin-autodetect.xml:
15171         * docs/plugins/inspect/plugin-avi.xml:
15172         * docs/plugins/inspect/plugin-cacasink.xml:
15173         * docs/plugins/inspect/plugin-cairo.xml:
15174         * docs/plugins/inspect/plugin-cdio.xml:
15175         * docs/plugins/inspect/plugin-cutter.xml:
15176         * docs/plugins/inspect/plugin-debug.xml:
15177         * docs/plugins/inspect/plugin-dv.xml:
15178         * docs/plugins/inspect/plugin-efence.xml:
15179         * docs/plugins/inspect/plugin-effectv.xml:
15180         * docs/plugins/inspect/plugin-esdsink.xml:
15181         * docs/plugins/inspect/plugin-flac.xml:
15182         * docs/plugins/inspect/plugin-flxdec.xml:
15183         * docs/plugins/inspect/plugin-gconfelements.xml:
15184         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15185         * docs/plugins/inspect/plugin-goom.xml:
15186         * docs/plugins/inspect/plugin-halelements.xml:
15187         * docs/plugins/inspect/plugin-icydemux.xml:
15188         * docs/plugins/inspect/plugin-id3demux.xml:
15189         * docs/plugins/inspect/plugin-jpeg.xml:
15190         * docs/plugins/inspect/plugin-level.xml:
15191         * docs/plugins/inspect/plugin-matroska.xml:
15192         * docs/plugins/inspect/plugin-mulaw.xml:
15193         * docs/plugins/inspect/plugin-multipart.xml:
15194         * docs/plugins/inspect/plugin-navigationtest.xml:
15195         * docs/plugins/inspect/plugin-ossaudio.xml:
15196         * docs/plugins/inspect/plugin-png.xml:
15197         * docs/plugins/inspect/plugin-rtp.xml:
15198         * docs/plugins/inspect/plugin-rtsp.xml:
15199         * docs/plugins/inspect/plugin-shout2send.xml:
15200         * docs/plugins/inspect/plugin-smpte.xml:
15201         * docs/plugins/inspect/plugin-speex.xml:
15202         * docs/plugins/inspect/plugin-udp.xml:
15203         * docs/plugins/inspect/plugin-videobalance.xml:
15204         * docs/plugins/inspect/plugin-videobox.xml:
15205         * docs/plugins/inspect/plugin-videoflip.xml:
15206         * docs/plugins/inspect/plugin-videomixer.xml:
15207         * docs/plugins/inspect/plugin-wavenc.xml:
15208         * docs/plugins/inspect/plugin-wavparse.xml:
15209         * docs/plugins/inspect/plugin-ximagesrc.xml:
15210           Update files to CVS/Prerelease version, add esdsink docs.
15211
15212         * ext/esd/esdsink.c:
15213           Add gtk-doc blurb.
15214
15215         * gst/rtp/gstrtpmp4vpay.c:
15216           Fix typo in element description.
15217
15218 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15219
15220         * ext/esd/esdsink.c: (gst_esdsink_open),
15221         (gst_esdsink_factory_init):
15222           Prevent libesd from auto-spawning a sound daemon if it
15223           is not already running. Now that we don't do evil stuff
15224           like that any longer we can give esdsink a rank so that
15225           autoaudiosink will try it as well if all other audio
15226           sinks fail (#343051).
15227
15228 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15229
15230         * ext/esd/Makefile.am:
15231           Oops, need to remove README from EXTRA_DIST as well.
15232
15233 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15234
15235         * ext/esd/README:
15236           Remove, it contains nothing useful anyway.
15237
15238         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15239         (gst_esdsink_delay):
15240           Some small clean-ups; use GST_BOILERPLATE etc.
15241
15242 2006-07-24  Wim Taymans  <wim@fluendo.com>
15243
15244         * gst/law/alaw-decode.c: (alawdec_getcaps):
15245         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15246         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15247         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15248         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15249
15250 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
15251
15252         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15253         (gst_wavparse_other), (gst_wavparse_perform_seek),
15254         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15255         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15256         (gst_wavparse_pad_query):
15257         * gst/wavparse/gstwavparse.h:
15258           Use information from 'fact' chunk for length calculation of compressed
15259           samples. Calculate bps if bogus value is found in wav header (embeded
15260           mp2/mp3).
15261           
15262
15263 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15264
15265         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
15266
15267         * configure.ac:
15268         * gst/udp/Makefile.am:
15269         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15270         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15271         * gst/udp/gstdynudpsink.h:
15272         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15273         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15274         * gst/udp/gstmultiudpsink.h:
15275         * gst/udp/gstudp.c: (plugin_init):
15276         * gst/udp/gstudpsink.h:
15277         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15278         (gst_udpsrc_start), (gst_udpsrc_stop):
15279         * gst/udp/gstudpsrc.h:
15280         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15281         (gst_udp_net_utils_win32_wsa_startup):
15282         * gst/udp/gstudpnetutils.h:
15283           Port udp plugin to win32 (#345288).
15284
15285 2006-07-24  Wim Taymans  <wim@fluendo.com>
15286
15287         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15288         Remove unwanted DEBUG line.
15289
15290 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15291
15292         * gst/id3demux/gstid3demux.c: (plugin_init):
15293         * gst/id3demux/id3tags.c:
15294         (id3demux_add_id3v2_frame_blob_to_taglist):
15295         * gst/id3demux/id3tags.h:
15296           On second thought, it might be wiser and more efficient
15297           not to do tag registration from a streaming thread.
15298
15299 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15300
15301         * gst/id3demux/id3tags.c:
15302         (id3demux_add_id3v2_frame_blob_to_taglist),
15303         (id3demux_id3v2_frames_to_tag_list):
15304           Put ID3v2 frames we can't parse as binary blobs into private
15305           tags, so that they are not lost when retagging, at least once
15306           id3v2mux has been taught to re-inject those frames again.
15307           See bug #334375.
15308
15309 2006-07-21  Wim Taymans  <wim@fluendo.com>
15310
15311         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15312         (gst_avi_demux_process_next_entry):
15313         Fix some leaks.
15314
15315         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15316         Don't use \n in debug lines.
15317
15318 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
15319
15320         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15321         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15322           Add annodex and icydemux, cleanup the sections a bit
15323
15324 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
15325
15326         Patch by: Alex Lancaster <alexl at users sourceforge net>
15327
15328         * ext/taglib/gstid3v2mux.cc:
15329           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15330           ID3v2 TSSE frames (#347898).
15331
15332 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
15333
15334         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15335           Respect mpegversion for "video/mpeg" and give message in case of
15336           unhandled versions.
15337
15338 2006-07-17  Wim Taymans  <wim@fluendo.com>
15339
15340         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15341         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15342         (gst_pngdec_chain), (gst_pngdec_sink_event),
15343         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15344         (gst_pngdec_sink_activate_push):
15345         * ext/libpng/gstpngdec.h:
15346         Use statically allocated segment instead of leaking.
15347         Various cleanups.
15348         Fix flush and seek handling.
15349
15350 2006-07-16  Wim Taymans  <wim@fluendo.com>
15351
15352         * gst/rtp/Makefile.am:
15353         * gst/rtp/gstrtp.c: (plugin_init):
15354         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15355         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15356         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15357         (gst_rtp_mp4g_depay_set_property),
15358         (gst_rtp_mp4g_depay_get_property),
15359         (gst_rtp_mp4g_depay_change_state),
15360         (gst_rtp_mp4g_depay_plugin_init):
15361         * gst/rtp/gstrtpmp4gdepay.h:
15362         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15363         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15364         (gst_rtp_mp4g_pay_flush):
15365         Added simple generic mpeg4 depayloader.
15366         Fix generic mpeg4 payloader.
15367
15368 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
15369
15370         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15371           Don't try doing state changes on a NULL pointer.
15372
15373 2006-07-14  Wim Taymans  <wim@fluendo.com>
15374
15375         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15376
15377         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15378         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15379         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15380         * gst/rtp/gstrtpamrdepay.h:
15381         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15382         Fixes #321191
15383
15384 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15385
15386         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15387         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15388         Fix segfault when moving mouse pointer to the bottom right corner.
15389
15390 2006-07-12  Wim Taymans  <wim@fluendo.com>
15391
15392         * gst/rtp/Makefile.am:
15393         * gst/rtp/gstrtp.c: (plugin_init):
15394         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15395         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15396         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15397         (gst_rtp_mp2t_depay_set_property),
15398         (gst_rtp_mp2t_depay_get_property),
15399         (gst_rtp_mp2t_depay_change_state),
15400         (gst_rtp_mp2t_depay_plugin_init):
15401         * gst/rtp/gstrtpmp2tdepay.h:
15402         Added mpeg2 TS depayloader. Closing #347234.
15403
15404 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
15405
15406         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15407           Remove g_assert that shouldn't be there and was triggered
15408           after trying to open a device that doesn't exist or can't
15409           be opened for some other reason (#347972).
15410
15411 2006-07-10  Edward Hervey  <edward@fluendo.com>
15412
15413         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15414         (gst_avi_demux_stream_header), (push_tag_lists):
15415         * gst/avi/gstavidemux.h:
15416         Don't push tag events found by gst_riff_parse_info() before outputting
15417         GST_EVENT_NEWSEGMENT.
15418
15419 2006-07-10  Wim Taymans  <wim@fluendo.com>
15420
15421         * gst/rtsp/Makefile.am:
15422         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15423         (rtsp_connection_close):
15424         * gst/rtsp/rtspdefs.h:
15425         replaced closesocket and close in code with one CLOSE_SOCKET. 
15426         Some more cleanups. Fixes #345301.
15427
15428 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
15429
15430         * gst/autodetect/gstautoaudiosink.c:
15431           Fix example pipeline in docs.
15432
15433 2006-07-10  Wim Taymans  <wim@fluendo.com>
15434
15435         Patch by: Rob Taylor <robtaylor at floopily dot org>
15436
15437         * gst/udp/gstmultiudpsink.c: (join_multicast),
15438         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15439         If a destination is added before the stream is set to PAUSED, the
15440         multicast group is not joined as the socket is not created yet. 
15441         Also TTL and LOOP should also be set. Fixes #346921.
15442
15443 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15444
15445         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15446         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15447         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15448         (gst_ximage_src_init):
15449         * sys/ximage/gstximagesrc.h:
15450         Fix use-damage property to actually work :)
15451         Add startx, starty, endx, endy properties so screencasts other than full
15452         screen ones can work.
15453
15454 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15455
15456         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15457         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15458         (gst_ximage_src_class_init), (gst_ximage_src_init):
15459         * sys/ximage/gstximagesrc.h:
15460         Add use_damage property to offer ability to choose whether to use
15461         XDamage or not.
15462
15463 2006-07-07  Wim Taymans  <wim@fluendo.com>
15464
15465         * gst/goom/filters.c: (zoomFilterSetResolution):
15466         Avoid goom coredumping by clearing memory. 
15467         Fixes 345679.
15468
15469 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
15470
15471         * win32/vs6/libgstid3demux.dsp:
15472         Add a link to libgsttag-0.10.lib.
15473
15474 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15475
15476         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15477         (gst_tag_demux_read_range):
15478         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15479         (gst_id3demux_read_range):
15480           Don't return FLOW_UNEXPECTED when a buffer is before
15481           the start of the stream (which might happen with
15482           large ID3v2 tags if the tag reading was done pullrange
15483           based and we then switched to push mode later on).
15484           Fixes regression introduced by commit from June 29th.
15485
15486 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15487
15488         * ext/taglib/gstid3v2mux.cc:
15489           Make UTF-8 the default encoding when writing string
15490           tags (before, our UTF-8 strings would automatically
15491           be converted to ISO-8859-1 by taglib and written as
15492           ISO-8859-1 fields if that was possible).
15493
15494         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15495         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15496         (test_taglib_id3mux_with_tags):
15497           Add test case that makes sure our UTF-8 strings have
15498           actually been written into the tag as UTF-8.
15499
15500 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15501
15502         * configure.ac:
15503           Let's try that again.
15504
15505 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15506
15507         * configure.ac:
15508           Disable monoscope plugin for now until it fulfills
15509           all the requirements.
15510
15511 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15512
15513         * configure.ac:
15514         * gst/monoscope/Makefile.am:
15515         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15516         (gst_monoscope_class_init), (gst_monoscope_init),
15517         (gst_monoscope_finalize), (gst_monoscope_reset),
15518         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15519         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15520         (gst_monoscope_sink_event), (gst_monoscope_src_event),
15521         (gst_monoscope_change_state), (plugin_init):
15522         * gst/monoscope/gstmonoscope.h:
15523           Port monoscope visualisation to 0.10.
15524
15525 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15526
15527         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15528         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15529           Return FLOW_UNEXPECTED when at the end of the file, not
15530           FLOW_ERROR. Fixes 'internal stream error' errors that
15531           would sometimes occur in totem when scrubbing to the
15532           end of an ID3v1 tagged mp3 file.
15533
15534 2006-07-03  Edward Hervey  <edward@fluendo.com>
15535
15536         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15537         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15538         (gst_pngdec_sink_event), (gst_pngdec_change_state):
15539         * ext/libpng/gstpngdec.h:
15540         Implement buffer clipping/dropping using GstSegment.
15541         This provides accurate seeking.
15542
15543 2006-07-03  Edward Hervey  <edward@fluendo.com>
15544
15545         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15546         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15547         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15548         (gst_avi_demux_process_next_entry), (push_tag_lists),
15549         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15550         * gst/avi/gstavidemux.h:
15551         Proper aggregation of each stream's GstFlowReturn in order to figure out
15552         whether the task should stop or not.
15553         Don't send inline events before pushing out a NEW_SEGMENT, more
15554         specifically for GST_TAG_EVENT.
15555         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15556         sub-indexes.
15557
15558 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
15559
15560         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15561
15562         * sys/sunaudio/gstsunaudiomixerctrl.c:
15563         (gst_sunaudiomixer_ctrl_build_list):
15564           Move "Monitor" slider to input tab so it works more like
15565           sdtaudiocontrol, which is what people on Solaris are used
15566           to using for their mixer program (#346259).
15567
15568 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15569
15570         * tests/check/elements/level.c: (GST_START_TEST):
15571           fix a leak, clean up at the end
15572
15573 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15574
15575         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15576         (gst_matroska_demux_send_event),
15577         (gst_matroska_demux_loop_stream_parse_id):
15578         * gst/matroska/matroska-ids.h:
15579           Send tag event after newsegment event.
15580
15581 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15582
15583         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15584         (gst_id3demux_read_range):
15585           Make sure we don't return GST_FLOW_OK with a NULL buffer in
15586           certain cases where a read beyond the end of the file is
15587           requested. Fixes #345930.
15588
15589         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15590         (gst_tag_demux_read_range):
15591           Fix same issue here as well.
15592
15593 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15594
15595         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15596         
15597         Fix hypothetical crash.
15598
15599 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
15600
15601         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15602
15603         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15604           Do not modify the ports value. If the user has turned off the
15605           built-in speakers, then we should not reset it in the prepare
15606           function, since this causes the built-in speakers to turn
15607           back on anytime the user changes a track in totem, rhythmbox,
15608           etc. (#346066).
15609
15610 2006-06-23  Wim Taymans  <wim@fluendo.com>
15611
15612         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15613         Fix double caps unref when negotiation fails.
15614
15615 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15616
15617         * ext/annodex/gstcmmldec.c:
15618         * ext/annodex/gstcmmlenc.c:
15619         * ext/annodex/gstcmmlparser.c:
15620         * ext/dv/gstdvdec.c:
15621         * ext/dv/gstdvdemux.c:
15622         * ext/gdk_pixbuf/pixbufscale.c:
15623         * ext/jpeg/gstjpegenc.c:
15624         * ext/jpeg/gstsmokedec.c:
15625         * ext/jpeg/gstsmokeenc.c:
15626         * ext/libpng/gstpngdec.c:
15627         * ext/libpng/gstpngenc.c:
15628         * ext/speex/gstspeexenc.c:
15629         * gst/alpha/gstalphacolor.c:
15630         * gst/cutter/gstcutter.c:
15631         * gst/debug/gstnavigationtest.c:
15632         * gst/icydemux/gsticydemux.c:
15633         * gst/level/gstlevel.c:
15634         * gst/multipart/multipart.c:
15635         * gst/rtp/gstrtpamrpay.c:
15636         * gst/rtp/gstrtpdepay.c:
15637         * gst/rtp/gstrtpilbcpay.c:
15638         * gst/rtp/gstrtpmp4gpay.c:
15639         * gst/rtp/gstrtpmp4vpay.c:
15640         * gst/rtsp/gstrtpdec.c:
15641         * gst/rtsp/gstrtspsrc.c:
15642         * gst/udp/gstdynudpsink.c:
15643         * gst/udp/gstmultiudpsink.c:
15644         * gst/udp/gstudpsrc.c:
15645         * gst/videobox/gstvideobox.c:
15646         * gst/videofilter/gstvideoflip.c:
15647           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15648           plus two minor macro fixes.
15649
15650 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15651
15652         * gst/matroska/matroska-demux.c:
15653         (gst_matroska_demux_check_subtitle_buffer),
15654         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15655         (gst_matroska_demux_subtitle_caps):
15656         * gst/matroska/matroska-ids.c:
15657         (gst_matroska_track_init_subtitle_context):
15658         * gst/matroska/matroska-ids.h:
15659           Try to fix up broken matroska files containing subtitle
15660           streams with non-UTF8 character encodings (courtesy of
15661           mkvmerge) using either the encoding specified in the
15662           GST_SUBTITLE_ENCODING environment variable or the
15663           current locale's character set if it is non-UTF8.
15664           Fixes #337076.
15665
15666 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15667
15668         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15669           Set image type from APIC frame as "image-type" field
15670           of GST_TAG_IMAGE buffer caps (#344605).
15671
15672 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
15673
15674         * ext/flac/Makefile.am:
15675         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15676         (gst_flac_dec_reset_decoders),
15677         (gst_flac_dec_setup_seekable_decoder),
15678         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15679         (gst_flac_dec_metadata_callback),
15680         (gst_flac_dec_metadata_callback_seekable),
15681         (gst_flac_dec_metadata_callback_stream),
15682         (gst_flac_dec_error_callback),
15683         (gst_flac_dec_error_callback_seekable),
15684         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15685         (gst_flac_dec_read_stream), (gst_flac_dec_write),
15686         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15687         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15688         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15689         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15690         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15691         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15692         (gst_flac_dec_sink_activate_push),
15693         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15694         * ext/flac/gstflacdec.h:
15695           Support chain-based operation, should make flac-over-DAAP
15696           work (#340492).
15697
15698 2006-06-20  Wim Taymans  <wim@fluendo.com>
15699
15700         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15701         Doc updates, merge some unused symbols.
15702
15703 2006-06-20  Wim Taymans  <wim@fluendo.com>
15704
15705         * docs/plugins/Makefile.am:
15706         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15707         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15708         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15709         * gst/rtsp/gstrtspsrc.c:
15710         * gst/rtsp/gstrtspsrc.h:
15711         Added documentation for the rtsp plugin. Fixes #345393.
15712
15713 2006-06-20  Wim Taymans  <wim@fluendo.com>
15714
15715         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15716         (rtsp_connection_close), (rtsp_connection_free):
15717         Use better G_OS_* macros. Fixes #345301 some more.
15718
15719 2006-06-20  Wim Taymans  <wim@fluendo.com>
15720
15721         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15722
15723         * sys/sunaudio/Makefile.am:
15724         * sys/sunaudio/gstsunaudio.c: (plugin_init):
15725         * sys/sunaudio/gstsunaudiomixerctrl.c:
15726         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15727         (gst_sunaudiomixer_ctrl_list_tracks),
15728         (gst_sunaudiomixer_ctrl_get_volume),
15729         (gst_sunaudiomixer_ctrl_set_volume),
15730         (gst_sunaudiomixer_ctrl_set_mute),
15731         (gst_sunaudiomixer_ctrl_set_record):
15732         * sys/sunaudio/gstsunaudiomixerctrl.h:
15733         * sys/sunaudio/gstsunaudiomixertrack.c:
15734         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15735         * sys/sunaudio/gstsunaudiomixertrack.h:
15736         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15737         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15738         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15739         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15740         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15741         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15742         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15743         (gst_sunaudiosrc_reset):
15744         * sys/sunaudio/gstsunaudiosrc.h:
15745         Add a SunAudio source plugin.
15746         Support stereo and right/left channel gain in the mixer plugin.
15747         Support the RECORD flag so that you can switch between line-input and
15748         microphone in gnome-volume-control.
15749         Code cleanups like using an enumerator for track number instead of an 
15750         integer. Fixes #344923.
15751
15752 2006-06-20  Wim Taymans  <wim@fluendo.com>
15753
15754         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15755
15756         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15757         (rtsp_connection_close):
15758         Make RTSP plugin compile on windows. Fixes #345301.
15759         Some changes to original patch to catch errors better.
15760         use ifdef WIN32 instead of ifndef.
15761
15762 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15763
15764         * configure.ac:
15765         If we have libraw1394 >= 1.2.1, then we need libiec61883.
15766
15767 2006-06-18  Edward Hervey  <edward@fluendo.com>
15768
15769         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
15770         After a failed buffer alloc, we need to abort the jpeg decoding (it
15771         started when parsing headers to figure out how many bytes we need
15772         to request downstream).
15773
15774 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
15775
15776         Patch by: Mark Nauwelaerts  <manauw at skynet be>
15777
15778         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15779           Make sure we don't read beyond the end of the file (#345232).
15780
15781 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
15782
15783         * configure.ac:
15784           Fix --disable-external (can't set conditionals conditionally,
15785           #343602).
15786
15787 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
15788
15789         * autogen.sh:
15790         * configure.ac:
15791         * docs/Makefile.am:
15792           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15793
15794         * docs/plugins/Makefile.am:
15795         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15796         * docs/plugins/inspect/plugin-taglib.xml:
15797           Add/fix apev2mux docs.
15798
15799 2006-06-14  Wim Taymans  <wim@fluendo.com>
15800
15801         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15802         (gst_dvdec_finalize), (gst_dvdec_sink_event),
15803         (gst_dvdec_change_state):
15804         Reset segment info on flush.
15805         Alloc segment in _init, free in _finalize.
15806
15807         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15808         Don't send segments twice.
15809
15810 2006-06-14  Wim Taymans  <wim@fluendo.com>
15811
15812         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15813         Respect segment.stop. Fixes #342592.
15814
15815 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15816
15817         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15818           No language specified means the implied language is English
15819           according to the matroska spec (partially fixes #344708);
15820           add some more debug output.
15821
15822 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15823
15824         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15825         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15826         (gst_wavparse_chain):
15827           When operating chain-based, don't make any assumptions about the
15828           chunking of the incoming data and make streaming work on days other
15829           than the second Thursday after a full moon. Also fix up debug
15830           messages here and there and make use of the most excellent new
15831           gst_pad_query_peer_duration() utility function.
15832           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15833
15834         * gst/wavparse/gstwavparse.h:
15835           Remove trailing comma after last enum value, some compilers don't
15836           like that.
15837
15838 2006-06-13  Wim Taymans  <wim@fluendo.com>
15839
15840         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15841         Handle premature EOS gracefully.
15842
15843 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
15844
15845         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15846           Prevent out of bounds array access when scrubbing towards
15847           the end of the file between the last index entry and the
15848           end. Fixes occasional 'start <= stop' newsegment event
15849           assertions when scrubbing in MJPEG files.
15850
15851 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
15852
15853         * tests/check/elements/.cvsignore:
15854           And another one.
15855
15856 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15857
15858         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15859         (scan_encoded_string), (parse_picture_frame):
15860           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15861
15862         * configure.ac:
15863           Require core >= 0.10.8 (for GST_TAG_IMAGE and
15864           GST_TAG_PPEVIEW_IMAGE used in the patch above).
15865
15866 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15867
15868         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15869           gratuitous comment changes
15870         * tests/check/elements/level.c: (GST_START_TEST):
15871           fix level test leaks
15872
15873 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15874
15875         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15876         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15877           Use gst_pad_query_peer_duration() utility function here.
15878
15879 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15880
15881         * autogen.sh:
15882           require am17
15883         * configure.ac:
15884         * ext/annodex/Makefile.am:
15885         * ext/cdio/Makefile.am:
15886         * ext/dv/Makefile.am:
15887         * ext/esd/Makefile.am:
15888         * ext/flac/Makefile.am:
15889         * ext/gdk_pixbuf/Makefile.am:
15890         * ext/ladspa/Makefile.am:
15891         * ext/libcaca/Makefile.am:
15892         * ext/speex/Makefile.am:
15893         * ext/taglib/Makefile.am:
15894         * sys/oss/Makefile.am:
15895         * sys/sunaudio/Makefile.am:
15896         * sys/ximage/Makefile.am:
15897           clean up build further
15898
15899 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15900
15901         * gconf/Makefile.am:
15902           Honour --disable-schemas-install configure option. Fixes #344100.
15903
15904 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15905
15906         * tests/examples/level/Makefile.am:
15907           Add -lm to LIBS for pow() function, don't assume one of our
15908           dependencies (such as libxml-2.0) drags it in automatically
15909           (#343603).
15910
15911 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15912
15913         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
15914
15915         * configure.ac:
15916           We should use $SED and not $(SED) in configure.ac (#343678).
15917
15918 2006-06-09  Wim Taymans  <wim@fluendo.com>
15919
15920         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15921
15922         * sys/sunaudio/gstsunaudiomixerctrl.c:
15923         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
15924         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
15925         (gst_sunaudiomixer_ctrl_set_mute):
15926         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
15927         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
15928         (gst_sunaudiosink_write):
15929         Attached find a patch that fixes a number of bugs with the SunAudio
15930         mixer plugin and fixes #344101:
15931         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
15932            tracks onto the tracklist causing gnome-volume-control's preferences
15933            dialog to be messed up and would core dump if you checked/unchecked
15934            any item.
15935         2. We weren't previously setting the MUTE flag properly.  Fixing this
15936            makes gnome-volume-control work better.
15937         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
15938            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
15939            gnome-volume-control look better.
15940         Also some minor cleanup in gstsunaudiosink.c.
15941
15942 2006-06-09  Wim Taymans  <wim@fluendo.com>
15943
15944         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
15945         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
15946         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
15947         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
15948         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
15949         * ext/jpeg/gstjpegdec.h:
15950         API: Added IDCT method property
15951         Small cleanups.
15952         Avoid dynamic allocation of trivial fixed structure.
15953         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
15954
15955 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15956
15957         * configure.ac:
15958         We now require libraw1394 >= 1.1.0 and that version onwards all
15959         have .pc files.
15960
15961 2006-06-02  Edward Hervey  <edward@fluendo.com>
15962
15963         * gst/law/alaw-decode.c: (alawdec_getcaps): 
15964         Trying to get items from an ANY or EMPTY caps is ... stupid.
15965
15966 2006-06-02  Edward Hervey  <edward@fluendo.com>
15967
15968         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
15969         (gst_dvdec_chain), (gst_dvdec_change_state):
15970         * ext/dv/gstdvdec.h:
15971         Added GstSegment handling, now implements dropping/clipping.
15972
15973 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15974
15975         * ext/aalib/gstaasink.h:
15976         * ext/annodex/gstcmmldec.h:
15977         * ext/cairo/gsttimeoverlay.h:
15978         * ext/dv/gstdvdec.h:
15979         * ext/dv/gstdvdemux.h:
15980         * ext/esd/esdmon.h:
15981         * ext/esd/esdsink.h:
15982         * ext/flac/gstflacenc.h:
15983         * ext/gconf/gstgconfaudiosink.h:
15984         * ext/gconf/gstgconfaudiosrc.h:
15985         * ext/gconf/gstgconfvideosink.h:
15986         * ext/gconf/gstgconfvideosrc.h:
15987         * ext/gdk_pixbuf/gstgdkanimation.h:
15988         * ext/gdk_pixbuf/pixbufscale.h:
15989         * ext/hal/gsthalaudiosink.h:
15990         * ext/hal/gsthalaudiosrc.h:
15991         * ext/jpeg/gstjpegenc.h:
15992         * ext/jpeg/gstsmokedec.h:
15993         * ext/jpeg/gstsmokeenc.h:
15994         * ext/libcaca/gstcacasink.h:
15995         * ext/libmng/gstmngdec.h:
15996         * ext/libmng/gstmngenc.h:
15997         * ext/libpng/gstpngdec.h:
15998         * ext/libpng/gstpngenc.h:
15999         * ext/raw1394/gstdv1394src.h:
16000         * ext/speex/gstspeexenc.h:
16001         * gst/autodetect/gstautoaudiosink.h:
16002         * gst/autodetect/gstautovideosink.h:
16003         * gst/avi/gstavidemux.h:
16004         * gst/cutter/gstcutter.h:
16005         * gst/debug/efence.h:
16006         * gst/debug/gstnavigationtest.h:
16007         * gst/debug/gstnavseek.h:
16008         * gst/flx/gstflxdec.h:
16009         * gst/goom/gstgoom.h:
16010         * gst/icydemux/gsticydemux.h:
16011         * gst/id3demux/gstid3demux.h:
16012         * gst/law/alaw-decode.h:
16013         * gst/law/alaw-encode.h:
16014         * gst/law/mulaw-decode.h:
16015         * gst/law/mulaw-encode.h:
16016         * gst/matroska/matroska-mux.h:
16017         * gst/median/gstmedian.h:
16018         * gst/oldcore/gstaggregator.h:
16019         * gst/oldcore/gstfdsink.h:
16020         * gst/oldcore/gstmd5sink.h:
16021         * gst/oldcore/gstmultifilesrc.h:
16022         * gst/oldcore/gstpipefilter.h:
16023         * gst/oldcore/gstshaper.h:
16024         * gst/oldcore/gststatistics.h:
16025         * gst/rtp/gstasteriskh263.h:
16026         * gst/rtp/gstrtpL16depay.h:
16027         * gst/rtp/gstrtpL16pay.h:
16028         * gst/rtp/gstrtpamrdepay.h:
16029         * gst/rtp/gstrtpamrpay.h:
16030         * gst/rtp/gstrtpdepay.h:
16031         * gst/rtp/gstrtpgsmdepay.h:
16032         * gst/rtp/gstrtpgsmpay.h:
16033         * gst/rtp/gstrtph263pay.h:
16034         * gst/rtp/gstrtph263pdepay.h:
16035         * gst/rtp/gstrtph263ppay.h:
16036         * gst/rtp/gstrtpmp4gpay.h:
16037         * gst/rtp/gstrtpmp4vdepay.h:
16038         * gst/rtp/gstrtpmp4vpay.h:
16039         * gst/rtp/gstrtpmpadepay.h:
16040         * gst/rtp/gstrtpmpapay.h:
16041         * gst/rtp/gstrtppcmadepay.h:
16042         * gst/rtp/gstrtppcmapay.h:
16043         * gst/rtp/gstrtppcmudepay.h:
16044         * gst/rtp/gstrtppcmupay.h:
16045         * gst/rtp/gstrtpspeexdepay.h:
16046         * gst/rtp/gstrtpspeexpay.h:
16047         * gst/rtsp/gstrtpdec.h:
16048         * gst/rtsp/gstrtspsrc.h:
16049         * gst/smpte/gstsmpte.h:
16050         * gst/udp/gstdynudpsink.h:
16051         * gst/udp/gstmultiudpsink.h:
16052         * gst/udp/gstudpsink.h:
16053         * gst/udp/gstudpsrc.h:
16054         * gst/videofilter/gstvideobalance.h:
16055         * gst/videofilter/gstvideoflip.h:
16056         * sys/oss/gstossdmabuffer.h:
16057         * sys/oss/gstossmixerelement.h:
16058         * sys/oss/gstosssink.h:
16059         * sys/oss/gstosssrc.h:
16060         * sys/osxvideo/osxvideosink.h:
16061         * sys/sunaudio/gstsunaudiomixer.h:
16062         * sys/sunaudio/gstsunaudiosink.h:
16063         * sys/ximage/gstximagesrc.h:
16064         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16065
16066 2006-05-31  Wim Taymans  <wim@fluendo.com>
16067
16068         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16069         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
16070         (gst_goom_src_setcaps), (gst_goom_src_event),
16071         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
16072         (gst_goom_change_state):
16073         * gst/goom/gstgoom.h:
16074         Handle QoS.
16075         Handle flushing, discont and events.
16076         Fix timestamps and various other cleanups.
16077
16078 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16079
16080         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
16081         Fix bus reset when using libiec61883
16082
16083 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16084
16085         * configure.ac:
16086         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
16087         * ext/raw1394/Makefile.am:
16088         Add CFLAGS.
16089         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
16090         New method, to receive using libiec61883.
16091         (gst_dv1394src_iso_receive),
16092         #ifdef'd out if libiec61883 is present.
16093         (gst_dv1394src_bus_reset),
16094         Get userdata correctly if using libiec61883. 
16095         (gst_dv1394src_create),
16096         When using libiec61883, only poll one fd and no need to read.
16097         (gst_dv1394src_discover_avc_node),
16098         Replace g_warnings.
16099         (gst_dv1394src_start),
16100         Create new handle when we know which dv port.  More reliable
16101         than setting port on an existing handle.  Initialise libiec61883.
16102         (gst_dv1394src_stop):
16103         If using libiec61883, then cleanup its handle properly.
16104         * ext/raw1394/gstdv1394src.h:
16105         Add libiec61883 handle.
16106
16107 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
16108
16109         * gst/avi/gstavidemux.c:
16110           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16111         * win32/MANIFEST:
16112           sort file listing
16113         * win32/vs6/libgstavi.dsp:
16114           add gstavimux.c to the project
16115         * win32/vs6/libgstid3demux.dsp:
16116           add link to zlib library
16117         * win32/vs6/libgstmatroska.dsp:
16118           add matroska-ids.c to the project
16119
16120 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
16121
16122         Patch by: Sebastian Dröge  <mail at slomosnail de >
16123
16124         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16125         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16126         * ext/taglib/Makefile.am:
16127         * ext/taglib/gstapev2mux.cc:
16128         * ext/taglib/gstapev2mux.h:
16129         * ext/taglib/gstid3v2mux.cc:
16130         * ext/taglib/gsttaglibmux.c: (plugin_init):
16131         * ext/taglib/gsttaglibmux.h:
16132           Add apev2mux element (#343122).
16133         
16134         * tests/check/Makefile.am:
16135         * tests/check/elements/apev2mux.c:
16136         (test_taglib_apev2mux_create_tags),
16137         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16138         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16139         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16140         (apev2mux_suite), (main):
16141           Add unit test for apev2mux element.
16142
16143 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16144
16145         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16146         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16147         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16148           GST_PTR_FORMAT should be used to print caps in debug statements.
16149
16150 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16151
16152         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
16153
16154         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16155         (ape_demux_parse_tags):
16156           Some clean-ups and additions: map APE 'file' tag to
16157           GST_TAG_LOCATION (#343123); add support for extracting
16158           the track count and clean up parsing a bit (#343127).
16159
16160 2006-05-28  Edward Hervey  <edward@fluendo.com>
16161
16162         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16163         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16164
16165 2006-05-28  Edward Hervey  <edward@fluendo.com>
16166
16167         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16168         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16169         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16170         * ext/jpeg/gstjpegdec.h:
16171         Clip outgoing buffers according to currently configured segment.
16172
16173 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16174
16175         * ext/taglib/gstid3v2mux.cc:
16176           Handle  writing of track-count or album-volume-count without
16177           track-number or albume-volume-number (in this case the number
16178           will just be set to 0).
16179
16180         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16181           It would be nice if we actually checked the values received for
16182           track/album-volume number/count in  _check_tags(), rather than
16183           setting them again ...
16184
16185 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16186
16187         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16188           A track/volume number or count of 0 does not make sense,
16189           just ignore it along with negative numbers (a tag might
16190           only contain a track count without a track number).
16191
16192 2006-05-27  Edward Hervey  <edward@fluendo.com>
16193
16194         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16195         (gst_jpeg_dec_sink_event):
16196         Abort decompression when receiving FLUSH_STOP. This should avoid
16197         issues when interrupting decoding with flushes.
16198
16199 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16200
16201         * ext/flac/gstflac.c:
16202           Don't #include file we don't dist any longer.
16203
16204 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16205
16206         * README:
16207           Replace current README (containing the release notes from
16208           some 0.9.x version) with a proper README taken from the core.
16209
16210 2006-05-24  Wim Taymans  <wim@fluendo.com>
16211
16212         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16213         Implement EOS correctly by either posting
16214         SEGMENT_DONE or pushing an EOS message depending
16215         on the seek type. Fixes #342592
16216
16217 2006-05-24  Wim Taymans  <wim@fluendo.com>
16218
16219         * gst/law/alaw-decode.c: (gst_alawdec_chain):
16220         * gst/law/alaw-decode.h:
16221         * gst/law/alaw-encode.c: (gst_alawenc_chain):
16222         * gst/law/alaw-encode.h:
16223         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16224         * gst/law/mulaw-decode.h:
16225         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16226         * gst/law/mulaw-encode.h:
16227         Some cleanups in the chain functions.
16228         Remove some GStreamer 0.0.2 bits.
16229
16230 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16231
16232         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16233
16234         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16235           gst_collect_pads_stop() needs to be called before chaining up
16236           to the parent class (#342734).
16237
16238 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16239
16240         * ext/flac/Makefile.am:
16241         * ext/flac/flac_compat.h:
16242         * ext/flac/gstflac.c:
16243         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16244         * ext/flac/gstflacenc.c:
16245           Remove backwards compatibility cruft for dealing with FLAC API
16246           changes in the 1.0.x series - we require 1.1.1 or newer these days.
16247
16248 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16249
16250         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16251         (gst_matroska_demux_push_xiph_codec_priv_data),
16252         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16253         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16254         * gst/matroska/matroska-ids.h:
16255         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16256         (gst_matroska_mux_video_pad_setcaps),
16257         (xiph3_streamheader_to_codecdata),
16258         (vorbis_streamheader_to_codecdata),
16259         (theora_streamheader_to_codecdata),
16260         (gst_matroska_mux_audio_pad_setcaps),
16261         (gst_matroska_mux_write_data):
16262           Add support for muxing/demuxing theora video (#342448; too bad
16263           none of the usual linux players can actually play this). Playback
16264           in GStreamer will require additional changes to theoradec in -base.
16265           Refactor streamheaders <=> CodecPrivateData code a bit; some small
16266           cleanups.
16267
16268 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16269
16270         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16271         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16272           Fix crashes when the horizontal subsampling is 1.
16273           Fixes #342097.
16274
16275 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16276
16277         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16278
16279         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16280         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16281         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16282         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16283         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16284         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16285         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16286         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16287         (gst_avi_mux_change_state):
16288         * gst/avi/gstavimux.h:
16289           Some enhancements for avimux (#342526):
16290            - add odml (large file) index support
16291            - store codec init data (e.g. huffyuv)
16292            - miscellaneous other fixes/cleanups
16293
16294 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
16295
16296         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16297         Don't output any tag when we encounter a negative track number - the
16298         tag type is uint, so we end up outputting huge positive numbers
16299         instead. (Fixes: #342029)
16300
16301 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16302
16303         * configure.ac:
16304           update for new GSTPB_PLUGINS_DIR
16305
16306 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
16307
16308         * rtp/gst/gstrtph263pay.c:
16309         Properly set static caps for H263 at 34.
16310
16311 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
16312
16313         Patch by: James "Doc" Livingston  <doclivingston gmail com>
16314
16315         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16316           Merge event tags and tag setter tags correctly (#339918). Also,
16317           don't leak taglist in case of an error.
16318           
16319 2006-05-17  Edward Hervey  <edward@fluendo.com>
16320
16321         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
16322         We can only do caps intersection if the othercaps are non-empty and not
16323         ANY. Else we return the pad template (base_caps).
16324
16325 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
16326
16327         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16328           Fix crash when outputting debugging information for certain
16329           pictures (always good to use the right struct member for
16330           the number of records in an array).
16331
16332 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
16333
16334         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
16335
16336         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16337         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16338         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16339         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16340         (gst_ebml_read_float), (gst_ebml_read_ascii),
16341         (gst_ebml_read_binary):
16342           Don't create unnecessary sub-buffers all the time. Dramatically
16343           improves performance with multiple concurrently running
16344           matroskademux instances (#341818) (and avoids doing
16345           unnecessarily inefficient things in the general case).
16346
16347 2006-05-16  Edward Hervey  <edward@fluendo.com>
16348
16349         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
16350         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16351         return value of gst_pad_push_event().
16352
16353 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
16354
16355         * gst/autodetect/gstautoaudiosink.c:
16356         (gst_auto_audio_sink_find_best):
16357         * gst/autodetect/gstautovideosink.c:
16358         (gst_auto_video_sink_find_best):
16359         Make the name of the child element be based on the name of the
16360         parent, so that debug output is more useful.
16361         
16362         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16363         (parse_insert_string_field), (parse_split_strings):
16364         Rework string parsing to always walk over BOM markers in UTF16
16365         strings, using the endianness indicated by the innermost one,
16366         then trying the opposite endianness if that fails to convert
16367         to valid UTF-8. Fixes #341774
16368
16369 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16370
16371         Patch from: Matthieu <matthieu at fluendo dot com>
16372
16373         * ext/libpng/Makefile.am:
16374         Add LIBPNG_CFLAGS.
16375
16376 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
16377
16378         * ext/taglib/gstid3v2mux.cc:
16379           Add support for writing images (APIC frames) into ID3v2
16380           tags (picture type always set to 'other' for now though).
16381
16382 2006-05-14  Michael Smith  <msmith@fluendo.com>
16383
16384         * gst/wavparse/gstwavparse.c:
16385           Update docs; wavparse implements push and pull modes.
16386
16387 2006-05-12  Wim Taymans  <wim@fluendo.com>
16388
16389         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16390         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16391         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16392         Ooops, bitten by the copy-and-paste design paradigm, fixes
16393         seek again.
16394
16395 2006-05-12  Wim Taymans  <wim@fluendo.com>
16396
16397         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16398         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16399         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16400         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16401         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16402         (gst_avi_demux_massage_index),
16403         (gst_avi_demux_calculate_durations_from_index),
16404         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16405         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16406         (gst_avi_demux_loop):
16407         * gst/avi/gstavidemux.h:
16408         Some cleanups, prepare to use GstSegment.
16409         Fix error in entry walking code.
16410         Fix VBR detection.
16411         Smarter timestamp calculation code.
16412         Uniform error/eos handling.
16413
16414 2006-05-12  Michael Smith  <msmith@fluendo.com>
16415
16416         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16417         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16418           Fix use of uninitialised values if we're NOT seeking in ready.
16419           Fix typos.
16420
16421 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
16422
16423         * gst/wavparse/Makefile.am:
16424           Add CFLAGS and LIBS for libgstbase, fixes build on
16425           Cygwin (#341489).
16426
16427 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16428
16429         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16430           Some more debug info. No need to check whether the string
16431           returned by g_convert() is really UTF-8 - either it is or
16432           we get NULL returned.
16433
16434 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
16435
16436         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16437           Fix parsing of numeric genre strings some more, by ensuring that
16438           we only try and parse strings that a) Start with '(' and b) Consist
16439           only of digits.
16440           Also, when finding an escaping '((' sequence, bust it back to '(' by
16441           swallowing the first parenthesis
16442
16443 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16444
16445         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16446         (gst_esdsink_open), (gst_esdsink_close):
16447         * ext/esd/esdsink.h:
16448           Move the esd_get_server_info() into gst_esdsink_open() and fail
16449           with a decent error message on errors.
16450
16451 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16452
16453         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16454         (gst_esdmon_channels_get_type):
16455         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16456         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16457         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16458         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16459         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16460         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16461         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16462         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16463         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16464         * gst/videomixer/videomixer.c:
16465         (gst_video_mixer_background_get_type):
16466           Const-ify GEnumValue arrays.
16467
16468 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16469
16470         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
16471
16472         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16473         (gst_avi_mux_do_video_buffer):
16474           Work around gst_buffer_make_metadata_writable() bug that
16475           results in avimux marking all frames in the index as
16476           keyframes (#340859).
16477           
16478 2006-05-08  Wim Taymans  <wim@fluendo.com>
16479
16480         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16481         Make parsing of urls suck slightly less.
16482
16483 2006-05-08  Edward Hervey  <edward@fluendo.com>
16484
16485         * autogen.sh: (CONFIGURE_DEF_OPT): 
16486         libtoolize on Darwin/MacOSX is called glibtoolize.
16487
16488 2006-05-08  Wim Taymans  <wim@fluendo.com>
16489
16490         Patch by: Jens Granseuer <jensgr at gmx dot net>
16491
16492         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16493         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16494         C89 compliance fixes. Fixes #340980
16495
16496 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
16497
16498         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16499         * ext/flac/gstflacdec.h:
16500           Handle segment seeks that include the end of the file as stop point
16501           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16502           message instead of an EOS event in case we're in segment seek
16503           mode (fixes #340699).
16504           
16505 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
16506
16507         * ext/cairo/gsttextoverlay.c:
16508         * ext/flac/gstflacdec.c:
16509         * ext/gdk_pixbuf/pixbufscale.c:
16510         * gst/apetag/gstapedemux.c:
16511         * gst/debug/breakmydata.c:
16512         * gst/debug/testplugin.c:
16513         * gst/matroska/ebml-write.c:
16514         * gst/multipart/multipartdemux.c:
16515         * sys/osxaudio/gstosxaudiosink.c:
16516         * sys/osxaudio/gstosxaudiosrc.c:
16517         Add semicolons after GST_BOILERPLATE[_FULL] so that
16518         indent doesn't mess up following lines.
16519
16520 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
16521
16522         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16523
16524         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16525           Don't leak caps when freeing the stream context (#340623).
16526
16527 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
16528
16529         * configure.ac:
16530           Back to CVS
16531
16532 === release 0.10.3 ===
16533
16534 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
16535
16536         * configure.ac:
16537           releasing 0.10.3, "Desplazado"
16538
16539 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16540
16541         * gst/matroska/matroska-mux.c:
16542         (gst_matroska_mux_stream_is_vorbis_header),
16543         (gst_matroska_mux_write_data):
16544           Don't strcmp() NULL strings.
16545           Only start new clusters on video keyframes, not on any
16546           random audio buffer that doesn't have the DELTA_UNIT
16547           flag set (fixes 'make check' again).
16548
16549 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16550
16551         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16552
16553         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16554         (gst_matroska_mux_stream_is_vorbis_header),
16555         (gst_matroska_mux_write_data):
16556           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16557           value and then dead-lock when muxing vorbis audio streams
16558           (the three vorbis header buffers carry no timestamp, and it
16559           would try to mux these after all video buffers). Fixes #340346.
16560
16561           Improve clustering: start a new cluster also whenever we get
16562           a keyframe.     
16563
16564 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16565
16566         * win32/common/config.h:
16567         * win32/MANIFEST
16568           add the generated file as well
16569
16570 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16571
16572         * Makefile.am:
16573         * configure.ac:
16574         * win32/common/config.h.in:
16575           add win32 stuff
16576
16577 2006-05-03  Michael Smith  <msmith@fluendo.com>
16578
16579         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16580           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16581           SUCKS.
16582
16583 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16584
16585         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16586         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16587         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16588           don't leak caps-string
16589
16590 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16591
16592         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16593         (gst_id3demux_sink_activate):
16594           Let core insert default error message for TYPE_NOT_FOUND
16595           errors, it's just as good as our own and has the added
16596           bonus of being translated.
16597
16598 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16599
16600         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16601         (gst_tag_demux_sink_event):
16602         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16603         (gst_id3demux_sink_event):
16604           Post an error message when we get an EOS event and were not
16605           able to find out the type of stream.
16606
16607         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16608         (test_taglib_id3mux_with_tags):
16609           Decrease num-buffers to 16 per iteration again, otherwise the
16610           many memcpy()s and reallocations in the test will hammer slow
16611           CPUs completely and make the test timeout.
16612
16613 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16614
16615         * configure.ac:
16616           figure out where plugins-base plugins are
16617         * tests/check/Makefile.am:
16618           use plugins-base plugins, so we have typefind functions
16619         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16620           increase num-buffers, this makes sure the test errors out instead
16621           of timing out when no typefind functions are present
16622
16623 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16624
16625         * docs/plugins/Makefile.am:
16626           also check .cc files for gtk-doc markup
16627         * configure.ac:
16628         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16629         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16630         * tests/check/Makefile.am:
16631         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16632         * ext/Makefile.am:
16633         * ext/taglib/Makefile.am:
16634         * ext/taglib/gstid3v2mux.h:
16635         * ext/taglib/gsttaglibmux.c:
16636         * ext/taglib/gsttaglibmux.h:
16637           move taglib-based id3v2muxer to -good.  Fixes #336110.
16638
16639 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16640
16641         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16642           ... and fix multichannel/WAVFORMATEX support again.
16643
16644 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
16645
16646         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16647         (gst_wavparse_class_init), (gst_wavparse_dispose),
16648         (gst_wavparse_reset), (gst_wavparse_init),
16649         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16650         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16651         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16652         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16653         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16654         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16655         (gst_wavparse_stream_data), (gst_wavparse_loop),
16656         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16657         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16658         (gst_wavparse_change_state), (plugin_init):
16659         * gst/wavparse/gstwavparse.h:
16660           Add push (streaming) mode to wavparse (fixes #337625)
16661
16662 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16663
16664         * configure.ac:
16665         * tests/Makefile.am:
16666           add ximagesrc icles test
16667
16668 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16669
16670         * configure.ac:
16671         * docs/plugins/Makefile.am:
16672         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16673         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16674         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16675         (gst_cmml_enc_push_clip):
16676         * sys/Makefile.am:
16677         * sys/ximage/Makefile.am:
16678         * sys/ximage/gstximagesrc.c:
16679           Move ximagesrc plug-in to good after review.  Fixes #336756.
16680
16681 2006-04-28  Michael Smith  <msmith@fluendo.com>
16682
16683         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16684         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16685         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16686         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16687         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16688         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16689         * gst/icydemux/gsticydemux.h:
16690           Fix event handling: cache events when typefinding and forward later.
16691
16692 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16693
16694         * sys/osxaudio/gstosxaudiosink.c:
16695         (plugin_init):
16696          Register osxaudiosrc to the plugin.
16697         * sys/osxaudio/gstosxaudiosrc.c:
16698         (gst_osx_audio_src_osxelement_do_init),
16699         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16700         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16701         (gst_osx_audio_src_get_property),
16702         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16703         (gst_osx_audio_src_osxelement_init):
16704         * sys/osxaudio/gstosxaudiosrc.h:
16705           Port of osxaudiosrc to 0.10.
16706         * sys/osxaudio/Makefile.am:
16707           Add osxaudiosrc
16708
16709 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16710
16711         * sys/osxaudio/gstosxringbuffer.c:
16712         * sys/osxaudio/gstosxringbuffer.h:
16713           Forgot to commit earlier, part of the OSX audio plugin port
16714
16715 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16716
16717         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16718         (parse_split_strings):
16719           Recognise and skip any byte order marker (BOM) in
16720           UTF-16 strings.
16721
16722 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16723
16724         * docs/plugins/Makefile.am:
16725         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16726         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16727         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16728         * docs/plugins/inspect/plugin-avi.xml:
16729         * gst/avi/gstavidemux.c:
16730         * gst/avi/gstavimux.c:
16731           Add docs for both avidemux and avimux.
16732
16733 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16734
16735         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16736
16737         * gst/avi/Makefile.am:
16738         * gst/avi/gstavi.c: (plugin_init):
16739         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16740         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16741         (gst_avi_mux_class_init), (gst_avi_mux_init),
16742         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16743         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16744         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16745         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16746         (gst_avi_mux_riff_get_avix_header),
16747         (gst_avi_mux_riff_get_video_header),
16748         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16749         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16750         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16751         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16752         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16753         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16754         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16755         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16756         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16757         (gst_avi_mux_change_state):
16758         * gst/avi/gstavimux.h:
16759           Port AVI muxer to GStreamer-0.10 (#332031).
16760
16761         * tests/check/Makefile.am:
16762         * tests/check/elements/avimux.c:
16763         * tests/check/elements/.cvsignore:
16764           Add unit test for AVI muxer.
16765
16766 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
16767
16768         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16769         (gst_wavparse_class_init), (gst_wavparse_reset),
16770         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16771         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16772         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16773         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16774         (gst_wavparse_stream_data), (gst_wavparse_loop),
16775         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16776         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16777         (plugin_init):
16778         * gst/wavparse/gstwavparse.h:
16779           reverted patch #337625 for the price of 1 hour sleep
16780
16781 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16782
16783         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16784         (gst_wavparse_class_init), (gst_wavparse_reset),
16785         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16786         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16787         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16788         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16789         (gst_wavparse_stream_data), (gst_wavparse_loop),
16790         (gst_wavparse_chain), (plugin_init):
16791         * gst/wavparse/gstwavparse.h:
16792           correct partial implementation of push mode
16793           (from my last commit)
16794
16795 2006-04-26  Wim Taymans  <wim@fluendo.com>
16796
16797         * ext/esd/esdsink.c:
16798         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16799         it is not in esd.h
16800
16801 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
16802
16803         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16804         (gst_au_parse_class_init), (gst_au_parse_init),
16805         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16806         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16807         (gst_au_parse_chain), (gst_au_parse_src_convert),
16808         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16809         (gst_au_parse_sink_event), (gst_au_parse_src_event),
16810         (gst_au_parse_change_state):
16811         * gst/auparse/gstauparse.h:
16812           Rewrite auparse to suck a little bit less: make source pad
16813           dynamic, so decodebin/playbin work with non-raw formats
16814           like alaw/mulaw; add query function for duration/position
16815           queries; check whether we have enough data before attempting
16816           to parse the header (instead of crashing when that is not the
16817           case); work around audioconvert sucking by swapping endianness
16818           to the native endianness ourselves for float formats; send
16819           initial newsegment event. Fixes #161712.
16820
16821 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16822
16823         * sys/osxaudio/Makefile.am:
16824         * sys/osxaudio/gstosxaudioelement.c:
16825         (gst_osx_audio_element_get_type),
16826         (gst_osx_audio_element_class_init):
16827         * sys/osxaudio/gstosxaudioelement.h:
16828         * sys/osxaudio/gstosxaudiosink.c:
16829         (gst_osx_audio_sink_osxelement_do_init),
16830         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16831         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16832         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16833         (gst_osx_audio_sink_create_ringbuffer),
16834         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16835         (plugin_init):
16836         * sys/osxaudio/gstosxaudiosink.h:
16837         Port of osxaudiosink to 0.10
16838
16839 2006-04-26  Wim Taymans  <wim@fluendo.com>
16840
16841         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16842         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16843         the size of the ringbuffer. This should fix hangs with older 
16844         esd sound servers.
16845
16846 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16847
16848         * ext/aalib/gstaasink.c:
16849         * ext/annodex/gstcmmldec.c:
16850         * ext/annodex/gstcmmlenc.c:
16851         * ext/cairo/gsttextoverlay.c:
16852         * ext/cairo/gsttimeoverlay.c:
16853         * ext/cdio/gstcdiocddasrc.c:
16854         * ext/dv/gstdvdec.c:
16855         * ext/dv/gstdvdemux.c:
16856         * ext/esd/esdmon.c:
16857         * ext/esd/esdsink.c:
16858         * ext/flac/gstflacenc.c:
16859         * ext/flac/gstflactag.c:
16860         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16861         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16862         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16863         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16864         * ext/gdk_pixbuf/pixbufscale.c:
16865         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16866         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16867         * ext/jpeg/gstjpegdec.c:
16868         * ext/jpeg/gstjpegenc.c:
16869         * ext/jpeg/gstsmokedec.c:
16870         * ext/jpeg/gstsmokeenc.c:
16871         * ext/libcaca/gstcacasink.c:
16872         * ext/libmng/gstmngdec.c:
16873         * ext/libmng/gstmngenc.c:
16874         * ext/libpng/gstpngdec.c:
16875         * ext/libpng/gstpngenc.c:
16876         * ext/mikmod/gstmikmod.c:
16877         * ext/raw1394/gstdv1394src.c:
16878         * ext/shout2/gstshout2.c: (gst_shout2send_init):
16879         * ext/shout2/gstshout2.h:
16880         * ext/speex/gstspeexdec.c:
16881         * ext/speex/gstspeexenc.c:
16882         * gst/alpha/gstalpha.c:
16883         * gst/alpha/gstalphacolor.c:
16884         * gst/apetag/gstapedemux.c:
16885         * gst/auparse/gstauparse.c:
16886         * gst/autodetect/gstautoaudiosink.c:
16887         (gst_auto_audio_sink_base_init):
16888         * gst/autodetect/gstautovideosink.c:
16889         (gst_auto_video_sink_base_init):
16890         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16891         * gst/avi/gstavimux.c: (gst_avimux_base_init):
16892         * gst/cutter/gstcutter.c:
16893         * gst/debug/breakmydata.c:
16894         * gst/debug/efence.c:
16895         * gst/debug/gstnavigationtest.c:
16896         * gst/debug/gstnavseek.c:
16897         * gst/debug/negotiation.c:
16898         * gst/debug/progressreport.c:
16899         * gst/debug/testplugin.c:
16900         * gst/effectv/gstaging.c:
16901         * gst/effectv/gstdice.c:
16902         * gst/effectv/gstedge.c:
16903         * gst/effectv/gstquark.c:
16904         * gst/effectv/gstrev.c:
16905         * gst/effectv/gstshagadelic.c:
16906         * gst/effectv/gstvertigo.c:
16907         * gst/effectv/gstwarp.c:
16908         * gst/flx/gstflxdec.c:
16909         * gst/goom/gstgoom.c:
16910         * gst/icydemux/gsticydemux.c:
16911         * gst/id3demux/gstid3demux.c:
16912         * gst/interleave/deinterleave.c:
16913         * gst/interleave/interleave.c:
16914         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
16915         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
16916         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
16917         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
16918         * gst/level/gstlevel.c:
16919         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
16920         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
16921         * gst/median/gstmedian.c:
16922         * gst/monoscope/gstmonoscope.c:
16923         * gst/multipart/multipartdemux.c:
16924         * gst/multipart/multipartmux.c:
16925         * gst/oldcore/gstaggregator.c:
16926         * gst/oldcore/gstfdsink.c:
16927         * gst/oldcore/gstmd5sink.c:
16928         * gst/oldcore/gstmultifilesrc.c:
16929         * gst/oldcore/gstpipefilter.c:
16930         * gst/oldcore/gstshaper.c:
16931         * gst/oldcore/gststatistics.c:
16932         * gst/rtp/gstasteriskh263.c:
16933         * gst/rtp/gstrtpL16depay.c:
16934         * gst/rtp/gstrtpL16pay.c:
16935         * gst/rtp/gstrtpamrdepay.c:
16936         * gst/rtp/gstrtpamrpay.c:
16937         * gst/rtp/gstrtpdepay.c:
16938         * gst/rtp/gstrtpgsmpay.c:
16939         * gst/rtp/gstrtph263pay.c:
16940         * gst/rtp/gstrtph263pdepay.c:
16941         * gst/rtp/gstrtph263ppay.c:
16942         * gst/rtp/gstrtpilbcdepay.c:
16943         * gst/rtp/gstrtpmp4gpay.c:
16944         * gst/rtp/gstrtpmp4vdepay.c:
16945         * gst/rtp/gstrtpmp4vpay.c:
16946         * gst/rtp/gstrtpmpadepay.c:
16947         * gst/rtp/gstrtpmpapay.c:
16948         * gst/rtp/gstrtppcmadepay.c:
16949         * gst/rtp/gstrtppcmapay.c:
16950         * gst/rtp/gstrtppcmudepay.c:
16951         * gst/rtp/gstrtppcmupay.c:
16952         * gst/rtp/gstrtpspeexdepay.c:
16953         * gst/rtp/gstrtpspeexpay.c:
16954         * gst/rtsp/gstrtpdec.c:
16955         * gst/rtsp/gstrtspsrc.c:
16956         * gst/smpte/gstsmpte.c:
16957         * gst/udp/gstdynudpsink.c:
16958         * gst/udp/gstmultiudpsink.c:
16959         * gst/udp/gstudpsink.c:
16960         * gst/udp/gstudpsrc.c:
16961         * gst/videobox/gstvideobox.c:
16962         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
16963         * gst/videofilter/gstvideobalance.c:
16964         * gst/videofilter/gstvideoflip.c:
16965         * gst/videofilter/gstvideotemplate.c:
16966         (gst_videotemplate_base_init):
16967         * gst/videomixer/videomixer.c:
16968         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16969         (gst_wavparse_class_init), (gst_wavparse_dispose),
16970         (gst_wavparse_reset), (gst_wavparse_init),
16971         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
16972         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
16973         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
16974         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
16975         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16976         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16977         (gst_wavparse_change_state):
16978         * gst/wavparse/gstwavparse.h:
16979         * sys/oss/gstossmixerelement.c:
16980         * sys/oss/gstosssink.c:
16981         * sys/oss/gstosssrc.c:
16982         * sys/osxaudio/gstosxaudioelement.c:
16983         * sys/osxaudio/gstosxaudiosink.c:
16984         * sys/osxaudio/gstosxaudiosrc.c:
16985         * sys/sunaudio/gstsunaudiomixer.c:
16986         * sys/sunaudio/gstsunaudiosink.c:
16987           Define GstElementDetails as const and also static (when defined as
16988           global)
16989
16990 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16991
16992         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16993           Source pad has fixed caps. If we don't set this, bad
16994           things happen when the window is resized.
16995
16996 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16997
16998         * gst/matroska/Makefile.am:
16999         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17000         (gst_matroska_demux_handle_src_event):
17001         * gst/matroska/matroska-ids.c:
17002         (gst_matroska_track_init_video_context),
17003         (gst_matroska_track_init_audio_context),
17004         (gst_matroska_track_init_subtitle_context),
17005         (gst_matroska_track_init_complex_context):
17006         * gst/matroska/matroska-ids.h:
17007           Handle case where the TrackType ebml chunk does not come before the
17008           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
17009           events.
17010
17011 2006-04-25  Wim Taymans  <wim@fluendo.com>
17012
17013         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
17014         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
17015         It's codec_data, not codec_info.
17016
17017 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17018
17019         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17020
17021         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17022           Handle codec_data for VfW compatibility codec IDs (#339451)
17023
17024         * gst/matroska/matroska-mux.c:
17025         (gst_matroska_mux_video_pad_setcaps):
17026           Same here, handle codec_data and add additional caps we can handle
17027           now to the pad template (huffyuv, dv and h263 video) (#339451)
17028
17029 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
17030
17031         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
17032
17033         * gst/matroska/matroska-mux.c:
17034         (gst_matroska_mux_create_buffer_header),
17035         (gst_matroska_mux_write_data):
17036           Fix timestamping of B-frames, use signed integers, do
17037           some rounding (#339678).
17038
17039 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
17040
17041         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
17042         just make it compile with --disable-gst-debug.
17043
17044 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
17045
17046         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17047         Fix a bad conversion using gst_guint64_to_gdouble.
17048         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
17049         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
17050         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
17051     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
17052         mistake.
17053
17054 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
17055
17056         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17057         Use gst_guint64_to_gdouble for conversions
17058         * win32/vs6/gst_plugins_good.dsw:
17059         * win32/vs6/libgsticydemux.dsp:
17060         Add a project file for icydemux
17061
17062 2006-04-21  Wim Taymans  <wim@fluendo.com>
17063
17064         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17065
17066         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
17067         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
17068         When splitting audio chunks, the block alignment is not taken in
17069         consideration, so the smaller chunks could be of size which is 
17070         not a multiple of the block alignment. Fixes #336904
17071
17072 2006-04-21  Wim Taymans  <wim@fluendo.com>
17073
17074         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
17075         Use scale functions
17076
17077 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17078
17079         * ext/dv/gstdv.c: (plugin_init):
17080           Fix build.
17081
17082 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
17083
17084         * gst/debug/progressreport.c: (gst_progress_report_finalize),
17085         (gst_progress_report_class_init), (gst_progress_report_init),
17086         (gst_progress_report_do_query), (gst_progress_report_report),
17087         (gst_progress_report_set_property),
17088         (gst_progress_report_get_property):
17089           Add 'format' property to force querying to a particular format.
17090
17091 2006-04-21  Andy Wingo  <wingo@pobox.com>
17092
17093         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
17094         best, on big endian systems. Drop its rank in that case. OTOH on
17095         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17096
17097 2006-04-21  Michael Smith  <msmith@fluendo.com>
17098
17099         * configure.ac:
17100         * gst/icydemux/Makefile.am:
17101         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17102         (gst_icydemux_base_init), (gst_icydemux_class_init),
17103         (gst_icydemux_reset), (gst_icydemux_init),
17104         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17105         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17106         (unicodify), (gst_icydemux_unicodify),
17107         (gst_icydemux_parse_and_send_tags),
17108         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17109         (gst_icydemux_chain), (gst_icydemux_change_state),
17110         (gst_icydemux_send_tag_event), (plugin_init):
17111         * gst/icydemux/gsticydemux.h:
17112         * tests/check/Makefile.am:
17113         * tests/check/elements/icydemux.c: (typefind_succeed),
17114         (plugin_init), (icydemux_found_pad), (create_icydemux),
17115         (cleanup_icydemux), (push_data), (GST_START_TEST),
17116         (icydemux_suite), (main):
17117           Add icydemux, and tests.
17118
17119 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17120
17121         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17122           Post SEGMENT_DONE message in TIME format.
17123
17124 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17125
17126         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17127
17128         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17129         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17130           Fix index creation when we have to scan the file to create
17131           an index. There may be other types of RIFF 'LIST' chunks than
17132           'movi' and we need to skip them properly as well or we'll end up
17133           reading garbage (#336889). Some other cosmetic changes.
17134           
17135 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17136
17137         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17138         (gst_flac_dec_handle_seek_event):
17139           Add support for segment seeks (fixes #338290). Also demote
17140           some recurring debug message from DEBUG to LOG level.
17141
17142 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17143
17144         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17145         (gst_matroskademux_do_index_seek),
17146         (gst_matroska_demux_handle_seek_event),
17147         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17148         * gst/matroska/matroska-ids.h:
17149           Set DISCONT flag on first buffer after a discontinuity.
17150           Fix newsegment events sent when seeking and honour KEY_UNIT
17151           seek flag. Create pad with bogus caps if we don't recognise
17152           the stream codec id.
17153
17154         * gst/matroska/matroska-demux.h:
17155           Fix GObject macros.
17156
17157 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17158
17159         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17160
17161         * gst/matroska/matroska-demux.c:
17162         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17163           Handle end of segment properly when set; don't dead-lock when
17164           posting start of segment message when doing a segment seek.
17165           Fixes #338810.
17166
17167 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17168
17169         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17170         (gst_matroska_demux_plugin_init):
17171           Make mpeg2 aac audio work: create artificial private codec data
17172           chunk which faad2 seems to require, just as we do for mpeg4 aac.
17173           Also call gst_riff_init(). Partially fixes #338767.
17174
17175 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
17176
17177         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17178         (gst_wavenc_class_init), (gst_wavenc_init),
17179         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17180         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17181         (gst_wavenc_chain), (gst_wavenc_change_state):
17182         * gst/wavenc/gstwavenc.h:
17183           Set caps on first outgoing buffer, so that it doesn't error out
17184           immediately with a non-negotiated error (#338716). Rewrite and
17185           clean up a bit; fix setcaps function to parse things properly;
17186           fix sink caps (8bit audio is unsigned and doesn't have depth);
17187           use boilerplate macros; remove unused properties stuff.
17188
17189 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17190
17191         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17192           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17193           handle MJPEG streams and might be autoplugged for those if the
17194           user doesn't have jpegdec installed (resulting in a cryptic error
17195           message about huffman tables). Better to disable JPEG decoding here
17196           and let the user figure out that she needs to install jpegdec.
17197
17198 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17199
17200         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17201         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17202         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17203         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17204           Make work with packetised/framed input (e.g. png-in-quicktime). Use
17205           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17206           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17207           debug messages. Fix boilerplate macros.
17208
17209 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17210
17211         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17212         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17213           No need to special-case for Gdk-2.0 any longer, we require
17214           Gdk 2.2 or newer; minor clean-ups.
17215
17216 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17217
17218         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17219         (gst_shout2send_class_init), (gst_shout2send_init),
17220         (set_shout_metadata), (gst_shout2send_set_metadata),
17221         (gst_shout2send_event), (gst_shout2send_start),
17222         (gst_shout2send_connect), (gst_shout2send_stop),
17223         (gst_shout2send_render), (gst_shout2send_set_property),
17224         (gst_shout2send_get_property), (gst_shout2send_setcaps),
17225         (plugin_init):
17226         * ext/shout2/gstshout2.h:
17227         * po/POTFILES.in:
17228           Rewrite a bit: use GstBaseSink::start and stop instead of a state
17229           change function; use GST_ELEMENT_ERROR for error reporting, not
17230           g_error() or GST_ERROR(); don't unref caps in setcaps function,
17231           will cause crashes or assertion failures; remove (unused) "sync"
17232           property, basesink already has such a property; misc. other
17233           minor fixes and cleanups.
17234
17235 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17236
17237         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17238         * ext/esd/gstesd.c: (plugin_init):
17239         * po/POTFILES.in:
17240           Add translatable error message for when we cannot
17241           connect to the sound server, as "Cannot open resource
17242           for writing" isn't really an acceptable message to show
17243           to the user in this case.
17244
17245 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17246
17247         * sys/oss/gst-i18n-plugin.h:
17248           Remove bogus file that doesn't belong here.
17249
17250 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17251
17252         Patch by: Philippe Valembois
17253
17254         * ext/shout2/gstshout2.c: (gst_shout2send_init),
17255         (gst_shout2send_set_metadata), (gst_shout2send_event),
17256         (gst_shout2send_render), (gst_shout2send_change_state):
17257         * ext/shout2/gstshout2.h:
17258           Handle tags being received before the connection to
17259           the server is established properly (see #338636).
17260
17261 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17262
17263         * ext/shout2/gstshout2.c: (gst_shout2send_render):
17264           Don't crash in case the connection to the server fails:
17265           don't set pointer to NULL by assigning FALSE; error out
17266           properly by using GST_ELEMENT_ERROR and returning
17267           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17268           before resetting the pointer.
17269
17270 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
17271
17272         * gst/id3demux/id3tags.c:
17273         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17274         (Fixes #338713)
17275
17276 2006-04-12  Wim Taymans  <wim@fluendo.com>
17277
17278         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17279         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17280         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17281         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17282         (gst_gdk_pixbuf_chain):
17283         Some cleanups.
17284         Added RGBA as a possible output format.
17285         Correctly free the supported mimetypes.
17286         deprecate silent arg, it's not used.
17287         Return result from _alloc_buffer to peer.
17288
17289 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17290
17291         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17292           Don't leak memory allocated by gst_buffer_new_and_alloc() by
17293           overwriting GST_BUFFER_MALLOCDATA.
17294
17295 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17296
17297         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17298         (user_endrow_callback), (user_end_callback),
17299         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17300         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17301         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17302         * ext/libpng/gstpngdec.h:
17303           Handle more than one frame if the content is framed,
17304           like with png-in-quicktime (#331917).
17305
17306 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17307
17308         * sys/oss/Makefile.am:
17309         * sys/oss/common.h:
17310         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17311         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17312         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17313         (gst_oss_src_unprepare):
17314           - the user-visible error strings were in the wrong category
17315           - and the messages were not marked for translation
17316           - which is actually a good thing, because they were exactly
17317             the kind of message you would never want anyone to see
17318           - the macros were using variables that didn't exist in the macro
17319             arguments
17320           - and they were obviously copied from each other and then modified
17321           - so a common header makes sense
17322
17323 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17324
17325         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17326           Don't try to modify read-only data.
17327
17328         * gst/matroska/matroska-demux.c:
17329         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17330           Fix comment (won't crash any longer now).
17331
17332 2006-04-10  Michael Smith  <msmith@fluendo.com>
17333
17334         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17335           Use copies of header buffers for caps to avoid circular refcounting
17336           problems (as in theoradec, vorbisdec).
17337
17338         * tests/check/elements/cmmldec.c: (GST_START_TEST):
17339           Fix a typo in test that meant it was testing the wrong thing.
17340
17341         * tests/check/elements/cmmlenc.c: (check_headers):
17342           Fix refcount checks now that we use buffer-copies for caps.
17343
17344 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17345
17346         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17347         (gst_matroska_demux_handle_seek_event),
17348         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17349         (gst_matroska_demux_subtitle_caps),
17350         (gst_matroska_demux_plugin_init):
17351           Use static pad templates with ANY caps for audio and video
17352           source pads and get rid of a lot of unnecessary (and partially
17353           broken) code for the template caps. Clean up caps finding
17354           functions. Fixes playback of audio files/streams that do not
17355           contain the sample rate and/or number of channels in the audio
17356           context (happens a lot with vorbis/mp3 .mka files it seems).
17357           Fixes #337183.
17358           Also add myself to copyright holders.
17359
17360 2006-04-10  Michael Smith  <msmith@fluendo.com>
17361
17362         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17363           Use g_list_delete_link () instead of g_list_remove_link () so that
17364           we free the link as well as the contained data.
17365
17366 2006-04-10  Wim Taymans  <wim@fluendo.com>
17367
17368         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17369
17370         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17371         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17372         (gst_avi_demux_stream_header):
17373         Fix some crashers with empty chunks. (Fixes #337749)
17374
17375 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17376
17377         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17378           use G_GINT64_CONSTANT for INT64 constants
17379         * gst/videofilter/gstvideobalance.c:
17380           define rint for WIN32 #define rint(x) (floor((x)+0.5))
17381         * win32/vs6/libgstavi.dsp:
17382          add missing libraries for the link and remove avimux.c from
17383          the project as it isn't ported to 0.10 yet
17384         
17385 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
17386
17387         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17388           Even better would be if we actually did the right thing
17389           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17390
17391 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17392
17393         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17394           Can't just replace 1LL with 1L here just because MSVC doesn't
17395           support it, as it might lead to incorrect results when doing the
17396           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17397           force a 64-bit constant in a way that all compilers are happy with.
17398
17399 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17400
17401         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17402         * ext/esd/esdsink.c: (gst_esdsink_class_init):
17403         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17404         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17405         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17406         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17407         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17408         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17409         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17410         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17411         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17412         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17413         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17414         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17415         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17416         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17417         * gst/avi/gstavimux.c: (gst_avimux_class_init):
17418         * gst/debug/efence.c: (gst_efence_class_init):
17419         * gst/debug/negotiation.c: (gst_negotiation_class_init):
17420         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17421         * gst/goom/gstgoom.c: (gst_goom_class_init):
17422         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17423         * gst/interleave/deinterleave.c: (deinterleave_class_init):
17424         * gst/interleave/interleave.c: (interleave_class_init):
17425         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17426         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17427         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17428         * gst/median/gstmedian.c: (gst_median_class_init):
17429         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17430         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17431         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17432         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17433         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17434         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17435         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17436         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17437         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17438         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17439         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17440         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17441         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17442         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17443         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17444         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17445         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17446         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17447         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17448         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17449         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17450         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17451         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17452         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17453         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17454         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17455         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17456         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17457         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17458         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17459         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17460         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17461         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17462         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17463         * sys/osxaudio/gstosxaudioelement.c:
17464         (gst_osxaudioelement_class_init):
17465         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17466         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17467         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17468         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17469
17470 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17471
17472         * ext/mikmod/gstmikmod.h:
17473         * gst/level/gstlevel.h:
17474         Fix more broken GObject macros
17475
17476 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17477
17478         * ext/annodex/gstcmmldec.h:
17479         * ext/annodex/gstcmmlenc.h:
17480         * ext/annodex/gstcmmltag.h:
17481         * ext/cairo/gsttextoverlay.h:
17482         * ext/ladspa/gstsignalprocessor.h:
17483         * gst/matroska/ebml-read.h:
17484         * gst/matroska/ebml-write.h:
17485         * sys/osxaudio/gstosxaudioelement.h:
17486         Fix broken GObject macros
17487
17488 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17489
17490         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17491           Don't try to seek beyond the end of the file (would
17492           occasionally display error dialogs in totem when seeking
17493           to the end) (#335869). Will still throw an error though
17494           if the file is truncated and the total_samples value in
17495           the stream header is wrong.
17496
17497 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
17498
17499         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17500         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17501         (gst_flac_dec_metadata_callback):
17502         * ext/flac/gstflacdec.h:
17503           If the stream header doesn't contain the total number of samples,
17504           search for the last flac frame at the end of the file and calculate
17505           the total duration from that frame's offset (fixes #337609).
17506
17507 2006-04-07  Edward Hervey  <edward@fluendo.com>
17508
17509         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17510         Don't unref the GstPadTemplate returned by
17511         gst_element_class_get_pad_template().
17512
17513 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17514
17515         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
17516
17517         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17518         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17519         * sys/sunaudio/gstsunaudiosink.h:
17520           Use spec->segsize and spec->segtotal in the prepare function
17521           to initialise the ring buffer instead of using the buffer-time
17522           property (#337421).
17523
17524 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17525
17526         * configure.ac:
17527           Bump core requirements to CVS for gst_pad_query_peer_duration()
17528           which is used by speexdec.
17529
17530 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
17531
17532         * ext/speex/gstspeex.c: (plugin_init):
17533         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17534         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17535         (speex_get_sink_query_types), (speex_dec_sink_query),
17536         (speex_get_src_query_types), (speex_dec_src_query),
17537         (speex_dec_src_event), (speex_dec_sink_event),
17538         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17539         (speex_dec_chain_parse_data), (speex_dec_chain),
17540         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17541         (speex_dec_change_state):
17542         * ext/speex/gstspeexdec.h:
17543           Fix seeking and duration queries (#337033); clean up and
17544           refactor a bit.
17545
17546 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17547
17548         * ext/raw1394/gstdv1394src.c:
17549           distinguish between device not found and could not open for
17550           reading
17551
17552 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17553
17554         * Makefile.am:
17555         * configure.ac:
17556         * pkgconfig/.cvsignore:
17557         * pkgconfig/Makefile.am:
17558         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17559           add a .pc file so other modules can use good plugins in tests
17560
17561 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17562
17563         * configure.ac:
17564           clean up, use AS_VERSION and AS_NANO
17565         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17566           use PACKAGE_VERSION define
17567         * po/af.po:
17568         * po/az.po:
17569         * po/cs.po:
17570         * po/en_GB.po:
17571         * po/hu.po:
17572         * po/it.po:
17573         * po/nb.po:
17574         * po/nl.po:
17575         * po/or.po:
17576         * po/sq.po:
17577         * po/sr.po:
17578         * po/sv.po:
17579         * po/uk.po:
17580         * po/vi.po:
17581           updated
17582
17583 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
17584
17585         * ext\jpeg\smokecodec.c:
17586           use of GST_DEBUG instead of DEBUG(a...) for WIN32
17587         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17588           move first instruction after all variables declarations
17589         * gst\alpha\gstalpha.c:
17590         * gst\effectv\gstshagadelic.c:
17591         * gst\smpte\paint.c:
17592         * gst\videofilter\gstvideobalance.c:
17593           define M_PI if it's not defined (it's not defined on WIN32)
17594         * gst\cutter\gstcutter.c: (gst_cutter_chain):
17595         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17596         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17597         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
17598         (gst_matroska_demux_video_caps):
17599         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17600         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17601           use gst_guint64_to_gdouble for conversions
17602         * gst\goom\filters.c: (setPixelRGB_):
17603           fix a debug which was using undefined variable
17604         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17605         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17606           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17607         * win32/vs6:
17608           add vs6 projects files for most of plugins-good
17609         
17610 2006-03-30  j^  <j@bootlab.org>
17611
17612         * ext/aalib/gstaasink.c:
17613         * ext/annodex/gstcmmldec.c:
17614         * ext/annodex/gstcmmlenc.c:
17615         * ext/cairo/gsttextoverlay.c:
17616         * ext/cairo/gsttimeoverlay.c:
17617         * ext/cdio/gstcdiocddasrc.c:
17618         * ext/dv/gstdvdec.c:
17619         * ext/esd/esdmon.c:
17620         * ext/esd/esdsink.c:
17621         * ext/flac/gstflacdec.c:
17622         * ext/flac/gstflacenc.c:
17623         * ext/flac/gstflactag.c:
17624         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17625         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17626         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17627         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17628         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17629         * ext/gdk_pixbuf/pixbufscale.c:
17630         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17631         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17632         * ext/jpeg/gstjpegdec.c:
17633         * ext/jpeg/gstjpegenc.c:
17634         * ext/jpeg/gstsmokedec.c:
17635         * ext/jpeg/gstsmokeenc.c:
17636         * ext/libcaca/gstcacasink.c:
17637         * ext/libmng/gstmngdec.c:
17638         * ext/libmng/gstmngenc.c:
17639         * ext/libpng/gstpngdec.c:
17640         * ext/libpng/gstpngenc.c:
17641         * ext/mikmod/gstmikmod.c:
17642         * ext/raw1394/gstdv1394src.c:
17643         * ext/shout2/gstshout2.c:
17644         * ext/speex/gstspeexdec.c:
17645         * ext/speex/gstspeexenc.c:
17646         * gst/alpha/gstalpha.c:
17647         * gst/alpha/gstalphacolor.c:
17648         * gst/auparse/gstauparse.c:
17649         * gst/autodetect/gstautoaudiosink.c:
17650         (gst_auto_audio_sink_base_init):
17651         * gst/autodetect/gstautovideosink.c:
17652         (gst_auto_video_sink_base_init):
17653         * gst/avi/gstavimux.c: (gst_avimux_base_init):
17654         * gst/cutter/gstcutter.c:
17655         * gst/debug/breakmydata.c:
17656         * gst/debug/efence.c:
17657         * gst/debug/gstnavigationtest.c:
17658         * gst/debug/negotiation.c:
17659         * gst/debug/progressreport.c:
17660         * gst/debug/testplugin.c:
17661         * gst/effectv/gstaging.c:
17662         * gst/effectv/gstdice.c:
17663         * gst/effectv/gstedge.c:
17664         * gst/effectv/gstquark.c:
17665         * gst/effectv/gstrev.c:
17666         * gst/effectv/gstvertigo.c:
17667         * gst/effectv/gstwarp.c:
17668         * gst/flx/gstflxdec.c:
17669         * gst/goom/gstgoom.c:
17670         * gst/interleave/deinterleave.c:
17671         * gst/interleave/interleave.c:
17672         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17673         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17674         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17675         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17676         * gst/level/gstlevel.c:
17677         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17678         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17679         * gst/median/gstmedian.c:
17680         * gst/monoscope/gstmonoscope.c:
17681         * gst/multipart/multipartdemux.c:
17682         * gst/multipart/multipartmux.c:
17683         * gst/oldcore/gstmd5sink.c:
17684         * gst/oldcore/gstmultifilesrc.c:
17685         * gst/oldcore/gstpipefilter.c:
17686         * gst/oldcore/gstshaper.c:
17687         * gst/oldcore/gststatistics.c:
17688         * gst/rtp/gstasteriskh263.c:
17689         * gst/rtp/gstrtpL16depay.c:
17690         * gst/rtp/gstrtpL16pay.c:
17691         * gst/rtp/gstrtpamrdepay.c:
17692         * gst/rtp/gstrtpamrpay.c:
17693         * gst/rtp/gstrtpdepay.c:
17694         * gst/rtp/gstrtpgsmpay.c:
17695         * gst/rtp/gstrtph263pay.c:
17696         * gst/rtp/gstrtph263pdepay.c:
17697         * gst/rtp/gstrtph263ppay.c:
17698         * gst/rtp/gstrtpmp4gpay.c:
17699         * gst/rtp/gstrtpmp4vdepay.c:
17700         * gst/rtp/gstrtpmp4vpay.c:
17701         * gst/rtp/gstrtpmpadepay.c:
17702         * gst/rtp/gstrtpmpapay.c:
17703         * gst/rtp/gstrtppcmadepay.c:
17704         * gst/rtp/gstrtppcmapay.c:
17705         * gst/rtp/gstrtppcmudepay.c:
17706         * gst/rtp/gstrtppcmupay.c:
17707         * gst/rtp/gstrtpspeexdepay.c:
17708         * gst/rtp/gstrtpspeexpay.c:
17709         * gst/rtsp/gstrtpdec.c:
17710         * gst/smpte/gstsmpte.c:
17711         * gst/videobox/gstvideobox.c:
17712         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17713         * gst/videofilter/gstvideobalance.c:
17714         * gst/videofilter/gstvideoflip.c:
17715         * gst/videofilter/gstvideotemplate.c:
17716         (gst_videotemplate_base_init):
17717         * gst/videomixer/videomixer.c:
17718         * gst/wavenc/gstwavenc.c:
17719         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17720          better/unified long descriptions
17721          Fixed #336602
17722          Some cleanups to auparse, don't send multiple newsegments.
17723
17724 2006-03-29  Wim Taymans  <wim@fluendo.com>
17725
17726         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17727
17728         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17729         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17730         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17731         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17732         * ext/dv/gstdvdemux.h:
17733         Seek in READY patch. Only works for pull based mode.
17734         Fixes #323880
17735
17736 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
17737
17738         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17739         (gst_gdk_pixbuf_event):
17740           Fix two crashers: don't unref the same caps twice, and
17741           set pixbuf loader to NULL after freeing it.
17742
17743 2006-03-27  Wim Taymans  <wim@fluendo.com>
17744
17745         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17746         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17747         (gst_speexenc_chain):
17748         * ext/speex/gstspeexenc.h:
17749         Don't leak adapter.
17750         A push *always* takes ownership of the buffer, even on
17751         errors.
17752         Small cleanups.
17753
17754 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
17755
17756         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17757           Create source pad without leaking.
17758
17759 2006-03-24  Wim Taymans  <wim@fluendo.com>
17760
17761         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17762         * ext/flac/gstflacdec.h:
17763         * ext/flac/gstflacenc.h:
17764         Spifify a bit.
17765         Fix deadly lock order error in seeking code, STREAM_LOCK
17766         cannot be taken within LOCK and the streaming variables are
17767         protected with the STREAM_LOCK anyway.
17768
17769 2006-03-24  Wim Taymans  <wim@fluendo.com>
17770
17771         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17772         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17773         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17774         this patch combines the global init_frames with the stream
17775         init_frames. Rationale being that the global delay should 
17776         be subtracted from any stream delay.
17777         Fixes #335858.
17778
17779 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
17780
17781         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17782         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17783         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17784         * gst/videomixer/videomixer.c: (gst_videomixer_init):
17785         use DEBUG_FUNCPTR for collectpads
17786
17787 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
17788
17789         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17790           Don't crash when encoding images where the number of rows isn't
17791           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17792
17793 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17794
17795         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17796         * gst/interleave/deinterleave.c: (deinterleave_change_state):
17797         * gst/interleave/interleave.c: (interleave_change_state):
17798         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17799           More state change function fixes.
17800
17801 2006-03-23  Wim Taymans  <wim@fluendo.com>
17802
17803         * ext/esd/esdsink.c: (gst_esdsink_class_init),
17804         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17805         (gst_esdsink_prepare), (gst_esdsink_unprepare),
17806         (gst_esdsink_delay), (gst_esdsink_reset):
17807         * ext/esd/esdsink.h:
17808         Fix esd choppy playback by configuring audiosink
17809         correctly. Fixes #325191
17810
17811 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17812
17813         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17814           Make state change function thread-safe.
17815
17816 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17817
17818         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17819         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17820           Don't try to read beyond the end of the file just because
17821           the header claims a bigger size (like with truncated files).
17822
17823 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17824
17825         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17826         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17827         (gst_wavparse_stream_data), (gst_wavparse_loop):
17828         * gst/wavparse/gstwavparse.h:
17829           Delay source pad creation until we have the first chunk of
17830           media data, so the we can examine the data and adjust the
17831           caps accordingly if required. This makes playback of .wav
17832           files with DTS-declared-as-PCM content work (#313266).
17833
17834 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
17835
17836         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17837         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17838         Don't attempt typefinding on too-short buffers that have been
17839         completely trimmed away. (Fixes #330239)
17840
17841         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17842         Improve the debug output
17843
17844 2006-03-21  Wim Taymans  <wim@fluendo.com>
17845
17846         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17847         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17848         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17849         (gst_esdsink_set_property), (gst_esdsink_get_property):
17850         Some cleanups.
17851         Reset fd to -1 when we close them.
17852
17853 2006-03-21  Wim Taymans  <wim@fluendo.com>
17854
17855         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17856         the OPTIONS request result is optional so don't
17857         fail on it.
17858
17859 2006-03-21  Edward Hervey  <edward@fluendo.com>
17860
17861         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17862         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17863         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17864         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17865         (gst_wavparse_change_state):
17866         gcc 4.1 unreferenced pointer fixes.
17867
17868 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
17869
17870         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17871
17872         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17873           Fix block alignment calculation. Alignment should be done before
17874           adding the byte offset where the data starts (#335231).
17875
17876 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17877
17878         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17879           Ensure that we set correct caps on buffers that are transferred
17880           direct from the input.
17881
17882 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17883
17884         * gst/goom/filters.c: (zoomFilterDestroy):
17885         * gst/goom/goom_core.c: (goom_close):
17886           Free filter data when cleaning up. (Fixes: #334995)
17887
17888 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
17889
17890         * configure.ac:
17891           Don't compile udp and rtsp plugins on win32 (mingw) or other
17892           systems that don't have <sys/socket.h> for some reason (#316203).
17893
17894 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17895
17896         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17897         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17898         * ext/raw1394/gstdv1394src.h:
17899           Change bus reset handler so it reports useful information such as
17900           whether the device being used connected or disconnected
17901
17902 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17903
17904         * gst/id3demux/id3v2frames.c:
17905         (parse_relative_volume_adjustment_two):
17906           We only care about gain and peak data for the master volume.
17907
17908 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17909
17910         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17911         (parse_id_string), (parse_unique_file_identifier),
17912         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
17913           Read replay gain tags (#323721).
17914
17915 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17916
17917         * configure.ac:
17918           Bump requirements to gst-plugins-base CVS because
17919           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
17920
17921 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
17922
17923         * rtp/gst/gstrtppcmadepay.c:
17924         Fixed one of the caps in the code from mulaw to alaw.
17925
17926 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
17927
17928         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17929           Ensure that we set caps on the buffers we pass.
17930
17931         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
17932         (gst_id3demux_sink_activate):
17933           Ensure that we set caps on the buffers we pass.
17934
17935           Use STREAM, TYPE_NOT_FOUND as the error class when
17936           typefinding fails.
17937
17938 2006-03-15  Edward Hervey  <edward@fluendo.com>
17939
17940         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
17941         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
17942         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
17943         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
17944         (gst_jpeg_dec_setcaps):
17945         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
17946         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
17947         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
17948         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
17949         (gst_mngdec_src_getcaps):
17950         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17951         (gst_pngdec_caps_create_and_set):
17952         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
17953         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
17954         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
17955         * gst/alpha/gstalpha.c: (gst_alpha_init):
17956         * gst/auparse/gstauparse.c: (gst_au_parse_init):
17957         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
17958         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
17959         * gst/cutter/gstcutter.c: (gst_cutter_init):
17960         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
17961         (gst_efence_checkgetrange):
17962         * gst/debug/negotiation.c: (gst_negotiation_init):
17963         * gst/flx/gstflxdec.c: (gst_flxdec_init):
17964         * gst/goom/gstgoom.c: (gst_goom_init):
17965         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
17966         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
17967         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
17968         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
17969         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
17970         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
17971         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
17972         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17973         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
17974         (gst_wavparse_create_sourcepad):
17975         Fix memleak with gst_static_pad_template_get().
17976         This uses gst_pad_new_from_static_template() instead.
17977         Fixes #333512
17978
17979 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17980
17981         * configure.ac:
17982           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
17983           used by id3demux.
17984
17985         * gst/id3demux/gstid3demux.c: (plugin_init):
17986         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17987         (parse_user_text_identification_frame),
17988         (parse_unique_file_identifier):
17989           Add support for UFID and TXXX frames and extract musicbrainz tags.
17990
17991 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17992
17993         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
17994           Catch short reads, like they might happen with truncated
17995           files (see #305279); remove unnecessary indentation.
17996
17997 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17998
17999         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18000           Fix DIB image inversion for pictures with a
18001           depth != 8 (#305279).
18002
18003 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
18004
18005         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
18006         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
18007         * ext/jpeg/gstjpegdec.h:
18008           Fix durations on outgoing buffers after seeking
18009           in MJPEG files (#334083); some minor clean-ups.
18010
18011 2006-03-13  Wim Taymans  <wim@fluendo.com>
18012
18013         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
18014         (gst_wavparse_change_state):
18015         Implement seek in READY (re-fixes #327658)
18016
18017 2006-03-13  Wim Taymans  <wim@fluendo.com>
18018
18019         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
18020         * ext/esd/esdmon.c: (gst_esdmon_get):
18021         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
18022         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
18023         (gst_gdk_pixbuf_sink_getcaps):
18024         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
18025         (gst_jpegenc_setcaps):
18026         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
18027         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
18028         (gst_smokeenc_setcaps):
18029         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
18030         (gst_mngdec_src_getcaps):
18031         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
18032         (gst_mngenc_chain):
18033         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
18034         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
18035         * ext/speex/gstspeexdec.c: (speex_dec_convert),
18036         (speex_dec_src_event), (speex_dec_chain):
18037         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
18038         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
18039         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
18040         (gst_negotiation_pad_link), (gst_negotiation_chain):
18041         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18042         (gst_flxdec_chain):
18043         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
18044         (deinterleave_chain):
18045         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
18046         * gst/median/gstmedian.c: (gst_median_link):
18047         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
18048         (gst_monoscope_chain):
18049         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
18050         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
18051         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
18052         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
18053         close #333784 unref the result of gst_pad_get_parent()
18054         by: Christophe Fergeau.
18055
18056 2006-03-09  Wim Taymans  <wim@fluendo.com>
18057
18058         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18059         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
18060         Handle events in push mode better, can now do non-flushing
18061         seeks in push mode as well.
18062
18063 2006-03-07  Wim Taymans  <wim@fluendo.com>
18064
18065         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
18066         Applied patch from Kai Vehmanen, fixes #333624.
18067
18068 2006-03-06  Julien MOUTTE  <julien@moutte.net>
18069
18070         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
18071         Implement paletted and grayscale png files handling.
18072         (#150363).
18073
18074 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18075
18076         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
18077         (gst_speexenc_chain):
18078           fix a tag list assert
18079           follow gst-plugins-base/ext/ogg/README; set OFFSET
18080           and OFFSET_END.  Muxes correctly with gst-plugins-base
18081           > 0.9.3
18082
18083 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18084
18085         * gst/id3demux/Makefile.am:
18086         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
18087         (gst_id3demux_chain), (gst_id3demux_sink_activate):
18088           Use new typefind helper functions here as well, and
18089           do typefinding in pull-mode if upstream supports that.
18090
18091 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18092
18093         * sys/sunaudio/gstsunaudiomixerctrl.c:
18094         (gst_sunaudiomixer_ctrl_get_volume),
18095         (gst_sunaudiomixer_ctrl_set_volume):
18096         * sys/sunaudio/gstsunaudiomixertrack.c:
18097         (gst_sunaudiomixer_track_new):
18098           Remove unused variables, breaks build from CVS
18099           with -Werror (#333392, patch by: Benjamin Pineau)
18100
18101 2006-03-03  Wim Taymans  <wim@fluendo.com>
18102
18103         * docs/plugins/Makefile.am:
18104         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18105         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18106         Added wavparse docs.
18107
18108         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18109         (gst_wavparse_reset), (gst_wavparse_init),
18110         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18111         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18112         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18113         (gst_wavparse_stream_data), (gst_wavparse_loop),
18114         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18115         (gst_wavparse_change_state):
18116         * gst/wavparse/gstwavparse.h:
18117         Implement seek in READY (fixes #327658)
18118         Added docs and did some cleanups.
18119
18120 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18121
18122         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18123         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18124         (gst_avi_demux_calculate_durations_from_index),
18125         (gst_avi_demux_stream_header):
18126         * gst/avi/gstavidemux.h:
18127           If we have an index, use a duration based on the index instead
18128           of blindly trusting the information in the stream headers
18129           (fixes #331817).
18130
18131 2006-03-03  Wim Taymans  <wim@fluendo.com>
18132
18133         * docs/plugins/Makefile.am:
18134         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18135         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18136         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18137         Added smoke and jpeg to the docs.
18138
18139         * ext/jpeg/Makefile.am:
18140         * ext/jpeg/gstjpeg.c: (plugin_init):
18141         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18142         * ext/jpeg/gstjpegenc.h:
18143         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18144         (gst_smokedec_chain):
18145         * ext/jpeg/gstsmokedec.h:
18146         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18147         * ext/jpeg/gstsmokeenc.h:
18148         * ext/jpeg/smokecodec.h:
18149         Port smokedec (fixes #331905).
18150         Added some docs.
18151         Some cleanups.
18152
18153 2006-03-03  Wim Taymans  <wim@fluendo.com>
18154
18155         * docs/plugins/Makefile.am:
18156         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18157         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18158         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18159         Added videobalance and videoflip to the docs.
18160
18161         * gst/videofilter/Makefile.am:
18162         * gst/videofilter/gstvideobalance.c:
18163         (gst_video_balance_update_tables_planar411),
18164         (gst_video_balance_is_passthrough),
18165         (gst_video_balance_update_properties), (oil_tablelookup_u8),
18166         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18167         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18168         (gst_video_balance_finalize), (gst_video_balance_class_init),
18169         (gst_video_balance_init), (gst_video_balance_interface_supported),
18170         (gst_video_balance_interface_init),
18171         (gst_video_balance_colorbalance_list_channels),
18172         (gst_video_balance_colorbalance_set_value),
18173         (gst_video_balance_colorbalance_get_value),
18174         (gst_video_balance_colorbalance_init),
18175         (gst_video_balance_set_property), (gst_video_balance_get_property),
18176         (gst_video_balance_get_type), (plugin_init):
18177         * gst/videofilter/gstvideobalance.h:
18178         Ported to 0.10. (Fixes #326160)
18179         Added docs.
18180
18181         * gst/videofilter/gstvideoflip.c:
18182         * gst/videofilter/gstvideoflip.h:
18183         Added docs.
18184
18185 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
18186
18187         * configure.ac:
18188           Bump requirements to current core and -base CVS
18189           (core for new typefind helper API, and -base for the
18190           WAVFORMATEX support that was added to libgstriff and
18191           is needed by wavparse).
18192         
18193         * gst/apetag/Makefile.am:
18194         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18195         (gst_tag_demux_sink_activate):
18196           Use new typefind helpers for typefinding instead of our
18197           home-grown stuff; also, do typefinding in pull-mode if
18198           upstream supports that.
18199
18200 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
18201
18202         Reviewed by: Christian Schaller <christian@fluendo.com>
18203
18204         This patch fixes bug: 329107
18205
18206         This Changelog entry is for a commit done on February 17
18207
18208         * ext/gconf/gconf.c
18209         * ext/gconf/gconf.h
18210         * ext/gconf/gstgconfaudiosink.c
18211         * ext/gconf/gstgconfaudiosink.h
18212         * gconf/gstreamer.schemas.in
18213
18214 2006-02-28  Wim Taymans  <wim@fluendo.com>
18215
18216         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18217         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18218         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18219         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18220         Use DEBUG_OBJECT more.
18221
18222 2006-02-28  Wim Taymans  <wim@fluendo.com>
18223
18224         * docs/plugins/Makefile.am:
18225         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18226         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18227         Added dvdec and dvdemux to docs.
18228
18229         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18230         Added docs.
18231         Check frame sizes so we don't crash when don't have enough
18232         data.
18233         Send nice error messages on error.
18234
18235         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18236         (gst_dvdemux_class_init), (gst_dvdemux_init),
18237         (gst_dvdemux_finalize), (gst_dvdemux_reset),
18238         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18239         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18240         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18241         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18242         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18243         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18244         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18245         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18246         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18247         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18248         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18249         * ext/dv/gstdvdemux.h:
18250         Added docs.
18251         Implement pull mode.
18252         Fix memleaks.
18253         Reduce memcpy for the video demuxing.
18254
18255 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
18256
18257         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18258         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18259         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18260         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18261           Add a little extra debug. Make the decoder not return NOT_LINKED,
18262           as we want to continue decoding all CMML and emitting tags.
18263
18264 2006-02-27  Michael Smith  <msmith@fluendo.com>
18265
18266         * ext/annodex/gstskeltag.c:
18267         * ext/annodex/gstskeltag.h:
18268           Deleted; these files aren't used any more either.
18269
18270 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18271
18272         * ext/Makefile.am: Fix dist-check.
18273
18274 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18275
18276         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18277         memleak.
18278
18279 2006-02-25  Alessandro Decina <alessandro@nnva.org>
18280
18281         * ext/annodex/Makefile.am:
18282         * ext/annodex/gstannodex.c:
18283         * ext/annodex/gstcmmldec.c:
18284         * ext/annodex/gstcmmlenc.c:
18285         * ext/annodex/gstcmmlparser.c:
18286         * ext/annodex/gstcmmlparser.h:
18287         * ext/annodex/gstcmmlutils.c:
18288         * tests/check/elements/cmmldec.c:
18289         * tests/check/elements/cmmlenc.c:
18290           Fix a memleak in gst_cmml_track_list_add_clip.
18291           Handle overflows in clip's start and end times.
18292           Add the "encoded" parameter to cmmldec and cmmlenc caps.
18293           Do not parse junk at the end of a CMML preamble buffer.
18294           Register a libxml error handler to not print stuff on stderr.
18295           Check for bad clip start and end times in the testsuites.
18296
18297 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18298
18299         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18300         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18301         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18302         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18303         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18304         possible memleaks.
18305
18306 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18307
18308         * tests/check/Makefile.am:
18309         * tests/check/elements/cmmldec.c:
18310         * tests/check/elements/cmmlenc.c: Fix tests so that they use
18311         the plugins-base tags.
18312
18313 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18314
18315         * ext/Makefile.am: Re-enable module.
18316
18317 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18318
18319         * tests/check/Makefile.am: Forgot to remove that test.
18320
18321 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18322
18323         * ext/annodex/Makefile.am:
18324         * ext/annodex/gstannodex.c: (plugin_init):
18325         * ext/annodex/gstcmmldec.c:
18326         * ext/annodex/gstskeldec.c:
18327         * ext/annodex/gstskeldec.h:
18328         * tests/check/Makefile.am:
18329         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18330
18331 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18332
18333         * tests/check/Makefile.am: Disable those checks as well.
18334
18335 2006-02-24  Julien MOUTTE  <julien@moutte.net>
18336
18337         * ext/Makefile.am: Disable annodex for now until we figure out
18338         how to make it build.
18339         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18340         Add a rule to your checklist : "please try to at least build 
18341         what you are going to commit into -good, or if you are too lazy
18342         to do that, please check that the buildbots are not crying because
18343         of your commit."
18344
18345 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18346
18347         * configure.ac:
18348         * ext/Makefile.am:
18349         * ext/gdk_pixbuf/Makefile.am:
18350         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18351         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18352         * ext/gdk_pixbuf/pixbufscale.c:
18353         * ext/gdk_pixbuf/pixbufscale.h:
18354           Gdkpixbuf ported from 0.8 to 0.10 by
18355           Renato Filho <renato.filho@indt.org.br>.
18356           gst_loader and gdkpixbufanimation still need port.
18357
18358 2006-02-24  Michael Smith  <msmith@fluendo.com>
18359
18360         * configure.ac:
18361         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18362         * ext/Makefile.am:
18363         * ext/annodex/Makefile.am:
18364         * ext/annodex/gstannodex.c:
18365         * ext/annodex/gstannodex.h:
18366         * ext/annodex/gstcmmldec.c:
18367         * ext/annodex/gstcmmldec.h:
18368         * ext/annodex/gstcmmlenc.c:
18369         * ext/annodex/gstcmmlenc.h:
18370         * ext/annodex/gstcmmlparser.c:
18371         * ext/annodex/gstcmmlparser.h:
18372         * ext/annodex/gstcmmltag.c:
18373         * ext/annodex/gstcmmltag.h:
18374         * ext/annodex/gstcmmlutils.c:
18375         * ext/annodex/gstcmmlutils.h:
18376         * ext/annodex/gstskeldec.c:
18377         * ext/annodex/gstskeldec.h:
18378         * ext/annodex/gstskeltag.c:
18379         * ext/annodex/gstskeltag.h:
18380         * tests/check/Makefile.am:
18381         * tests/check/elements/cmmldec.c:
18382         * tests/check/elements/cmmlenc.c:
18383         * tests/check/elements/skeldec.c:
18384           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
18385           Includes tests & docs, oh my! Passes Thomas's -good checklist
18386           entirely. Wow.
18387
18388 2006-02-24  Michael Smith  <msmith@fluendo.com>
18389
18390         * autogen.sh:
18391           Check for automake 1.9 as well.
18392
18393 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18394
18395         * ext/flac/gstflacenc.c:
18396           Change min. sample rate to 8kHz to match flacdec's.
18397           
18398 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
18399
18400         * ext/cdio/Makefile.am:
18401           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18402           required for Cygwin, see #317048)
18403
18404         * gst/rtp/gstasteriskh263.c:
18405           Cygwin has includes for both the unix network socket API
18406           and the windows API, but only one can be included, so fix
18407           includes to only use one or the other, prefering the unxi
18408           one (#317048).
18409
18410 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18411
18412         * rtp/gst/gstrtppcmadepay.c:
18413         * rtp/gst/gstrtppcmadepay.h:
18414         * rtp/gst/gstgstrtppcmapay.c:
18415         * rtp/gst/gstgstrtppcmapay.h:
18416         * rtp/gst/gstrtppcmudepay.c:
18417         * rtp/gst/gstrtppcmudepay.h:
18418         * rtp/gst/gstrtppcmupay.c:
18419         * rtp/gst/gstrtppcmupay.h:
18420         * rtp/gst/Makefile.am:
18421         * rtp/gst/gstrtp.c:
18422         * rtp/gst/README:
18423         Separated the G711 payloaders/depayloaders into separate elements for
18424         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18425
18426 2006-02-22  Wim Taymans  <wim@fluendo.com>
18427
18428         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18429         (gst_dvdec_change_state):
18430         * ext/dv/gstdvdec.h:
18431         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18432         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18433         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18434         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18435         (gst_dvdemux_flush), (gst_dvdemux_chain),
18436         (gst_dvdemux_change_state):
18437         * ext/dv/gstdvdemux.h:
18438         Ueber spiffify some more, added debug category.
18439         Use _scale.
18440         Use segments, respect playback rate from newsegment.
18441         Fix refcount issue.
18442
18443 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18444
18445         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18446         (gst_signal_processor_process):
18447         Fix compilation of LADPSA. It doesn't seem to work, and isn't
18448         enabled for the build, but it helps me win the feature-count
18449         competitions ooh yeah.
18450
18451 2006-02-19  Wim Taymans  <wim@fluendo.com>
18452
18453         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18454         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18455         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18456         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18457         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18458         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18459         Use scaling code for added precission and more correct stop
18460         position in case scale==0.
18461
18462 2006-02-19  Wim Taymans  <wim@fluendo.com>
18463
18464         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18465         (gst_flxdec_chain):
18466         * gst/flx/gstflxdec.h:
18467         Implement DURATION query.
18468
18469 2006-02-19  Wim Taymans  <wim@fluendo.com>
18470
18471         * gst/flx/flx_color.h:
18472         * gst/flx/flx_fmt.h:
18473         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18474         (gst_flxdec_src_query_handler), (flx_decode_color),
18475         (gst_flxdec_chain):
18476         * gst/flx/gstflxdec.h:
18477         Set MALLOCDATA for the temp buffers so we don't leak.
18478         Some debug cleanups.
18479         Consume all data in the adapter before leaving the chain
18480         function. Fixes #330678.
18481
18482 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
18483
18484         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18485         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18486          Handle 0 data size in otherwise valid frames.
18487          Handle numeric strings in 2.4.0 even when not in parentheses 
18488
18489 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
18490
18491         * gst/matroska/matroska-demux.c:
18492         (gst_matroska_demux_subtitle_caps),
18493         (gst_matroska_demux_plugin_init):
18494         * gst/matroska/matroska-ids.h:
18495           Recognise SSA/ASS and USF subtitle formats and
18496           set proper caps when they are found.
18497
18498 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18499
18500         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18501         (gst_jpeg_dec_chain):
18502           Fix invalid memory access for some odd-sized images
18503           (see image contained in quicktime stream in #327083);
18504           use g_malloc() instead of g_alloca().
18505
18506 2006-02-17  Wim Taymans  <wim@fluendo.com>
18507
18508         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18509         Patch from Sebastien Cote, fixes #319884
18510
18511 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18512
18513         * ext/cdio/gstcdio.c: (plugin_init):
18514           Init debug category (#331253).
18515
18516 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18517
18518         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18519           Pass extra_data to gst_riff_create_audio_caps(), so that
18520           WAVEFORMATEX stuff works. Post audio codec name and post
18521           it as taglist on the bus. Allow up to 8 channesl for raw
18522           PCM in the source pad template caps.
18523
18524 2006-02-16  Wim Taymans  <wim@fluendo.com>
18525
18526         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18527         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18528         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18529         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18530         (gst_multipart_set_property), (gst_multipart_get_property):
18531         Applied #318663. Gives quite a few false positives in
18532         autoscan mode, but it's better than nothing. Not closing yet.
18533
18534 2006-02-16  Wim Taymans  <wim@fluendo.com>
18535
18536         * docs/plugins/Makefile.am:
18537         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18538         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18539         * docs/plugins/gst-plugins-good-plugins.args:
18540         * docs/plugins/inspect/plugin-udp.xml:
18541         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18542         (gst_udpsrc_start):
18543         Update documentation.
18544         Fix args.
18545
18546 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
18547
18548         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18549         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18550         frame size. (Fixes #331368)
18551
18552 2006-02-16  Wim Taymans  <wim@fluendo.com>
18553
18554         * gst/rtsp/README:
18555         Updated README.
18556
18557         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18558         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18559         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18560         * gst/rtsp/gstrtspsrc.h:
18561         Make sure the RTP port is an even port an try to allocate 
18562         another if not.
18563         Added retry property to control max retries for port allocation.
18564         Make sure RTCP port is RTP port+1.
18565         Cleanup when port allocation fails.
18566         Fixes #319183.
18567         
18568 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18569
18570         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18571           Don't ignore return value of the parent class's state
18572           change function (#331385, patch by: Wouter Paesen).
18573
18574 2006-02-15  Wim Taymans  <wim@fluendo.com>
18575
18576         * configure.ac:
18577         * docs/plugins/Makefile.am:
18578         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18579         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18580         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18581         * ext/Makefile.am:
18582         * ext/hal/Makefile.am:
18583         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18584         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18585         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18586         (do_toggle_element), (gst_hal_audio_sink_set_property),
18587         (gst_hal_audio_sink_get_property),
18588         (gst_hal_audio_sink_change_state):
18589         * ext/hal/gsthalaudiosink.h:
18590         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18591         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18592         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18593         (do_toggle_element), (gst_hal_audio_src_set_property),
18594         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18595         * ext/hal/gsthalaudiosrc.h:
18596         * ext/hal/gsthalelements.c: (plugin_init):
18597         * ext/hal/gsthalelements.h:
18598         * ext/hal/hal.c: (gst_hal_get_string),
18599         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18600         (gst_hal_get_audio_src):
18601         * ext/hal/hal.h:
18602         Add HAL sound device wrapper plugins. Closes #329106
18603
18604 2006-02-15  Wim Taymans  <wim@fluendo.com>
18605
18606         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18607         Add comment in a fultile attempt to stop the copy-and-paste 
18608         paradigm leading to duplication of bad code.
18609
18610         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18611         Mime parameters have to be checked case insensitive
18612
18613 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18614
18615         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18616           Advance stream time for lagging subtitle streams by sending
18617           newsegment events with the update flag set.
18618
18619 2006-02-14  Edward Hervey  <edward@fluendo.com>
18620
18621         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18622         There can be bogus data before the hdrl LIST tag in the RIFF header.
18623         It's hard to say if it's not respecting the AVI specifications or not,
18624         but since Google Video is producing AVIs like that and the other player
18625         don't seem to complain, I guess we should do the same.
18626
18627 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
18628
18629         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18630         (parse_split_strings):
18631         Add more validation to ensure that a char encoding conversion
18632         produced a valid UTF-8 string.
18633
18634 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
18635
18636         Reviewed by: Edward Hervey  <edward@fluendo.com>
18637
18638         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18639         Properly handle end of segment. Closes #330885.
18640
18641 2006-02-13  Wim Taymans  <wim@fluendo.com>
18642
18643         * gst/rtp/gstrtpmp4gpay.h:
18644         For got to commit this one.
18645
18646 2006-02-12  Wim Taymans  <wim@fluendo.com>
18647
18648         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18649         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18650         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18651         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18652         * gst/rtp/gstrtpmp4gpay.h:
18653         Make more things work.
18654         Handle ACC config strings.
18655
18656 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18657
18658         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18659           set timestamps if no incoming timestamps set
18660
18661 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
18662
18663         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18664         (gst_tag_demux_do_typefind):
18665           ... and fix the very same leaks in GstTagDemux.
18666
18667 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
18668
18669         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18670         (gst_id3demux_do_typefind):
18671         Fix a couple of mem leaks. (Patch by Jonathan Matthew
18672         <jonathan at kaolin dot wh9 dot net>)
18673
18674 2006-02-10  Wim Taymans  <wim@fluendo.com>
18675
18676         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18677         First set options, then set caps or else the baseclass
18678         will not know about the options, duh.
18679
18680 2006-02-10  Wim Taymans  <wim@fluendo.com>
18681
18682         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18683         (gst_rtp_mp4v_pay_setcaps):
18684         Don't waste time looking for a config string if we have codec_info
18685         on the incomming caps.
18686
18687 2006-02-10  Wim Taymans  <wim@fluendo.com>
18688
18689         * gst/rtp/README:
18690         Say something about case-sensitivity of caps vs mime-attributes.
18691
18692         * gst/rtp/Makefile.am:
18693         * gst/rtp/gstrtp.c: (plugin_init):
18694         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18695         (gst_rtp_amr_pay_handle_buffer):
18696         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18697         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18698         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18699         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18700         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18701         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18702         (gst_rtp_mp4g_pay_plugin_init):
18703         * gst/rtp/gstrtpmp4gpay.h:
18704         Added beginnings of mpeg4-generic payloader (RFC 3640)
18705
18706 2006-02-09  Wim Taymans  <wim@fluendo.com>
18707
18708         * gst/rtsp/Makefile.am:
18709         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18710         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18711         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18712         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18713         (gst_rtpdec_change_state):
18714         * gst/rtsp/gstrtpdec.h:
18715         * gst/rtsp/gstrtsp.c: (plugin_init):
18716         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18717         * gst/rtsp/rtspconnection.c: (read_body),
18718         (rtsp_connection_receive):
18719         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18720         Resurected rtpdec to make rtspsrc happy again.
18721         Skip attributes from the session id.
18722         Don't crash when dumping a message with an empty body.
18723
18724
18725 2006-02-09  Wim Taymans  <wim@fluendo.com>
18726
18727         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18728         Added more meaningfull warnings when something goes wrong.
18729         Clear F bit on outgoing AMR packets.
18730
18731         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18732         (gst_rtp_amr_pay_handle_buffer):
18733         Added debugging category
18734         Support payloading of multiple AMR frames.
18735
18736         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18737         Added some debugging.
18738
18739 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18740
18741         * configure.ac:
18742           Back to CVS
18743
18744 === release 0.10.2 ===
18745
18746 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18747
18748         * configure.ac:
18749           releasing 0.10.2, "Papa was a rolling stone"
18750
18751 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18752
18753         * configure.ac:
18754           Bump core and plugins-base requirement to 0.10.2.2
18755           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18756
18757 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18758
18759         * ext/flac/gstflac.c: (plugin_init):
18760         * ext/speex/gstspeex.c: (plugin_init):
18761           Register musicbrainz tags.
18762
18763 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18764
18765         * ext/gconf/gconf.h:
18766           Remove declaration of function that no longer exists.
18767
18768 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18769
18770         * ext/shout2/gstshout2.c: (gst_shout2send_render),
18771         (gst_shout2send_setcaps), (gst_shout2send_change_state):
18772         Make shout2 work for non ogg streams
18773
18774 2006-02-06  Wim Taymans  <wim@fluendo.com>
18775
18776         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18777         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18778         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18779         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18780         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18781         * gst/udp/gstmultiudpsink.h:
18782         Updated docs.
18783         Added properties bytes-served, bytes_to_serve.
18784         Post proper error messages,
18785         Emit client added signal too.
18786
18787 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18788
18789         * docs/plugins/Makefile.am:
18790         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18791         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18792         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18793         (gst_multiudpsink_get_stats):
18794           adding docs for multiudpsink
18795
18796 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18797
18798         * gst/level/gstlevel.c: (gst_level_transform_ip):
18799           peak below decay is not necessarily an error, so don't ERROR log
18800
18801 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18802
18803         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18804         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18805         (gst_ebml_write_seek):
18806         * gst/matroska/ebml-write.h:
18807           Make sure we send a newsegment event in BYTES format
18808           before sending buffers (#328531).
18809
18810 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18811
18812         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18813         (gst_dvdemux_sink_query):
18814         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18815         * ext/speex/gstspeexdec.c: (speex_get_query_types),
18816         (speex_dec_src_query):
18817         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18818         (gst_speexenc_sink_query):
18819         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18820         * gst/matroska/matroska-demux.c:
18821         (gst_matroska_demux_get_src_query_types),
18822         (gst_matroska_demux_handle_src_query):
18823         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18824         (gst_wavparse_pad_query):
18825           Pass unhandled queries upstream instead of just dropping
18826           them (#326446). Update query type arrays here and there.
18827
18828 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18829
18830         * tests/check/elements/matroskamux.c: (setup_src_pad):
18831           Collectpads in core got changed and now also holds a
18832           reference to any pad that is part of it. Fix refcount
18833           checks in test case accordingly.
18834
18835 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18836
18837         * gst/apetag/gstapedemux.h:
18838           Fix include, for now GstTagDemux is in the apetag dir.
18839
18840 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18841
18842         * docs/plugins/Makefile.am:
18843         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18844         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18845         * docs/plugins/inspect/plugin-cdio.xml:
18846           Add cdio plugin to docs.
18847
18848         * ext/cdio/gstcdiocddasrc.c:
18849           Add gtk-doc blurb.
18850
18851         * ext/cdio/gstcdio.c:
18852           The plugin is called 'cdio' not 'cddio'.
18853
18854 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18855
18856         * configure.ac:
18857         * docs/plugins/Makefile.am:
18858         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18859         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18860         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18861         * docs/plugins/inspect/plugin-apetag.xml:
18862         * gst/apetag/Makefile.am:
18863         * gst/apetag/gstapedemux.c:
18864         * gst/apetag/gstapedemux.h:
18865         * gst/apetag/gsttagdemux.c:
18866         * gst/apetag/gsttagdemux.h:
18867           Add APE tag demuxer (#325649).
18868
18869 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18870
18871         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18872         (gst_gconf_get_default_video_sink),
18873         (gst_gconf_get_default_audio_src),
18874         (gst_gconf_get_default_video_src):
18875         * ext/gconf/gconf.h:
18876         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18877         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18878         (do_toggle_element):
18879         * ext/gconf/gstgconfaudiosink.h:
18880         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18881         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18882         (do_toggle_element):
18883         * ext/gconf/gstgconfaudiosrc.h:
18884         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18885         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18886         (do_toggle_element):
18887         * ext/gconf/gstgconfvideosink.h:
18888         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18889         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18890         (do_toggle_element):
18891         * ext/gconf/gstgconfvideosrc.h:
18892           Ignore changing the GConf key to "". Ignore GConf key updates
18893           that don't actually change the string.
18894           For now, ignore the GConf key when the state is > READY, as
18895           it breaks streaming. Sometime it will be nice to bring the
18896           new sink online even mid-stream, by sending NEWSEGMENT info
18897           and possibly prerolling.
18898           (Fixes #326736)
18899
18900 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18901
18902         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18903         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18904         (zoomFilterSetResolution), (zoomFilterDestroy),
18905         (zoomFilterFastRGB), (pointFilter):
18906         * gst/goom/filters.h:
18907         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
18908         (goom_update), (goom_close):
18909         * gst/goom/goom_core.h:
18910         * gst/goom/goom_tools.h:
18911         * gst/goom/graphic.c:
18912         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18913         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
18914         * gst/goom/gstgoom.h:
18915         * gst/goom/lines.c: (goom_lines):
18916         * gst/goom/lines.h:
18917           Make goom reentrant by moving all important static variables
18918           into instance structures.
18919           (Fixes #329181)
18920
18921 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
18922
18923         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
18924         (gst_avi_demux_all_source_pads_unlinked),
18925         (gst_avi_demux_process_next_entry):
18926         * gst/avi/gstavidemux.h:
18927           Third attempt, use gst_pad_is_linked() this time.
18928
18929 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
18930
18931         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18932         (parse_split_strings):
18933         Adjust for data length indicators when parsing (Fixes #329810)
18934         Fix stupid bug parsing UTF-8 tag text.
18935         Output tag strings with multiple fields as multiple tags, so the
18936         app gets all the data.
18937
18938 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18939
18940         * ext/flac/gstflacenc.c:
18941         Fixed a bug add in last commit, where no event is send. Thanks Tim to
18942         show me.
18943         
18944 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18945
18946         * ext/flac/gstflacenc.c:
18947         * gst/matroska/ebml-read.c:
18948         Just make it compile with --disable-gst-debug.
18949
18950 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
18951
18952         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
18953         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
18954         (id3v2_genre_fields_to_taglist):
18955           Never output a tag with a null contents string.
18956
18957 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18958
18959         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
18960           Only pause if all pads are unlinked AND we've tried to send data
18961           on all of them at least once.
18962
18963 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18964
18965         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
18966         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
18967           Make loop function/task pause itself when all source pads are
18968           unlinked.
18969
18970 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18971
18972         * configure.ac:
18973         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
18974           Use new functions from core to render a bin from a
18975           string. Fixes build. Up requirements to core CVS.
18976
18977 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18978
18979         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
18980           Don't push buffers into the adapter that we are going to
18981           push downstream again without framing anyway. Also, the
18982           adaptor takes ownership of buffers put into it (fixes
18983           auparse pushing invalid buffers for .au files with
18984           ADPCM contents). Finally, set caps on all outgoing buffers.
18985
18986 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
18987
18988         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
18989         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
18990         (gst_id3demux_send_tag_event):
18991         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
18992         Someone should kick my butt. Remove ID3v1 tags from the end of the
18993         file.
18994
18995         Improve error messages. Send the TAG message as soon as we complete
18996         typefinding, instead of waiting until we send the first buffer.
18997         Downstream tag event is still sent before the first buffer.
18998
18999 2006-01-27  Jan Gerber  <j@bootlab.org>
19000
19001         Reviewed by: Andy Wingo <wingo@pobox.com>
19002
19003         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
19004         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
19005         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
19006         to not have warings flooding stderr. this is the suggested way
19007         also used in dvgrab and kino. (#328336)
19008
19009 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
19010
19011         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
19012         (gst_oss_sink_init), (gst_oss_sink_finalise):
19013           Free the device name string when finalised.
19014
19015 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
19016
19017         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
19018           Don't put function calls in g_return_if_fail() statements,
19019           or they'll be replaced with NOOPs if someone compiles with
19020           G_DISABLE_CHECKS defined.
19021           
19022 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
19023
19024         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19025         Never trust ANY information encoded in a media file, especially
19026         when it's giving you sizes. (Fixes #328452)
19027
19028 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
19029
19030         * gst/rtp/gstrtpg711pay.c:
19031         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
19032         bug #325148.
19033
19034 2006-01-23  Edward Hervey  <edward@fluendo.com>
19035
19036         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
19037         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
19038         * gst/matroska/matroska-ids.h:
19039         Added recognition of Real Audio and Video streams in matroska demuxer.
19040
19041 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19042
19043         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
19044           Remove errant break statement, and fix compilation with
19045           older GCC.
19046
19047 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
19048
19049         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19050
19051         * sys/sunaudio/gstsunaudiomixerctrl.c:
19052         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
19053           Export functions that are needed in other parts of the code,
19054           makes the mixer actually work; adjust magic minimum buffer-time
19055           value from 3ms to 5ms to work around stuttering during mp3
19056           playback (#327765).
19057
19058 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
19059
19060         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19061
19062         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
19063         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
19064           Fix possible deadlock in matroska muxer (#327825).
19065
19066 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
19067
19068         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
19069         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
19070         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
19071         * gst/rtsp/sdpmessage.h:
19072         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
19073         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
19074           C89 fixes: declare variables at the beginning of a block and
19075           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
19076           <jensgr at gmx dot net>).
19077
19078 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
19079
19080         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19081         * gst/id3demux/id3tags.h:
19082         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19083         (parse_comment_frame), (parse_text_identification_frame),
19084         (id3v2_tag_to_taglist), (id3v2_are_digits),
19085         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
19086         (parse_split_strings), (free_tag_strings):
19087           Rewrite parsing of text tags to handle multiple NULL terminated
19088           strings. Parse numeric genre strings and ID3v2 type
19089           "(3)(6)Alternative" style genre strings.
19090           Parse dates that are only YYYY or YYYY-mm format.
19091           (Fixes #328241 and #322154)
19092
19093 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
19094
19095         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19096           Don't forget to initialize liboil, otherwise our oil functions
19097           will crash (fixes #327871; patch by: Christoph Burghardt
19098           <hawkes at web dot de>).
19099
19100 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19101
19102         * configure.ac:
19103           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19104           like in the core and gst-plugins-base. Fixes #324367 and #326683;
19105           patch by: Brian Cameron <brian dot cameron at sun dot com>
19106
19107 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19108
19109         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19110         * ext/cdio/gstcdio.h:
19111         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19112           Fix build for libcdio versions >= 76; give slightly lower rank
19113           than cdparanoia.
19114
19115 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19116
19117         * configure.ac:
19118         * ext/Makefile.am:
19119         * ext/cdio/Makefile.am:
19120         * ext/cdio/gstcdio.c:
19121         * ext/cdio/gstcdio.h:
19122         * ext/cdio/gstcdiocddasrc.c:
19123         * ext/cdio/gstcdiocddasrc.h:
19124           Port libcdio cdda source, formerly known as cddasrc, now known as
19125           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19126           but that's not tested (fixes #317658).
19127
19128 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19129
19130         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19131           Fix conversion from TIME to BYTES format (fixes #326864;
19132           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19133
19134 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
19135
19136         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19137           Fix compilation of id3demux when zlib is not present.
19138           (Fixes #326602; patch by: Sergey Scobich)
19139
19140 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
19141
19142         * ext/esd/Makefile.am:
19143           Add $(ESD_CFLAGS), otherwise build will fail for folks
19144           with libesd in a non-standard prefix (#327009).
19145
19146 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19147
19148         * configure.ac:
19149           back to HEAD
19150
19151 === release 0.10.1 ===
19152
19153 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
19154
19155         * configure.ac:
19156           releasing 0.10.1, "Li"
19157
19158 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19159
19160           patch by: Wim Taymans
19161
19162         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19163           fix memleak.  Fixes #326618
19164
19165 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19166
19167           patch by: Mike Smith
19168
19169         * gst/level/gstlevel.c: (gst_level_message_new),
19170         (gst_level_message_append_channel):
19171           Fix memleak.  Fixes #326612
19172
19173 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19174
19175         * configure.ac:
19176           prereleasing
19177         * po/af.po:
19178         * po/az.po:
19179         * po/cs.po:
19180         * po/en_GB.po:
19181         * po/hu.po:
19182         * po/it.po:
19183         * po/nb.po:
19184         * po/nl.po:
19185         * po/or.po:
19186         * po/sq.po:
19187         * po/sr.po:
19188         * po/sv.po:
19189         * po/uk.po:
19190         * po/vi.po:
19191           update translations
19192
19193 2006-01-10  Michael Smith  <msmith@fluendo.com>
19194
19195         * gst/level/gstlevel.c: (gst_level_class_init),
19196         (gst_level_dispose):
19197           Don't leak filter arrays.
19198
19199 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19200
19201         reviewed by: Christian Schaller <uraeus@gnome.org>
19202         
19203         * configure.ac:
19204         * gst-plugins-good.spec.in:
19205         * sys/Makefile.am:
19206         * sys/sunaudio/Makefile.am:
19207         * sys/sunaudio/gstsunaudio.c: (plugin_init):
19208         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19209         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19210         (gst_sunaudiomixer_change_state):
19211         * sys/sunaudio/gstsunaudiomixer.h:
19212         * sys/sunaudio/gstsunaudiomixerctrl.c:
19213         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19214         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19215         (gst_sunaudiomixer_ctrl_list_tracks),
19216         (gst_sunaudiomixer_ctrl_get_volume),
19217         (gst_sunaudiomixer_ctrl_set_volume),
19218         (gst_sunaudiomixer_ctrl_set_mute),
19219         (gst_sunaudiomixer_ctrl_set_record):
19220         * sys/sunaudio/gstsunaudiomixerctrl.h:
19221         * sys/sunaudio/gstsunaudiomixertrack.c:
19222         (gst_sunaudiomixer_track_class_init),
19223         (gst_sunaudiomixer_track_init), (fill_labels),
19224         (gst_sunaudiomixer_track_new):
19225         * sys/sunaudio/gstsunaudiomixertrack.h:
19226         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19227         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19228         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19229         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19230         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19231         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19232         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19233         * sys/sunaudio/gstsunaudiosink.h:
19234
19235         Add SunAudio plugin - tested to make sure it doesn't break
19236         the build under GNU/Linux.      
19237
19238 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
19239
19240         * gst-plugins-good/gst/udp/gstdynudpsink.c:
19241         * gst-plugins-good/gst/udp/gstudpsrc.c:
19242         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19243         overrides the port or multicast parameters. Fixes bugs #323021.
19244         API addition: adds GstUDPSrc::sockfd property   
19245
19246 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
19247
19248         * ext/gconf/Makefile.am:
19249         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19250         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19251         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19252         (do_toggle_element), (cb_toggle_element),
19253         (gst_gconf_audio_src_change_state):
19254         * ext/gconf/gstgconfaudiosrc.h:
19255         * ext/gconf/gstgconfelements.c: (plugin_init):
19256         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19257         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19258         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19259         (do_toggle_element), (cb_toggle_element),
19260         (gst_gconf_video_src_change_state):
19261         * ext/gconf/gstgconfvideosrc.h:
19262           Add new gconfaudiosrc and gconfvideosrc elements
19263           (needed for gnome-sound-recorder).
19264
19265 2006-01-06  Edward Hervey  <edward@fluendo.com>
19266
19267         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19268         Add gst_element_no_more_pads() for proper decodebin behaviour.
19269         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19270         (parse_text_identification_frame), (parse_split_strings):
19271         Failure to decode some tags is not a GST_ERROR() but a
19272         GST_WARNING()
19273         When iterating over a chunk of text, check that we haven't gone too
19274         far.
19275
19276 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19277
19278         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19279         (plugin_init):
19280           call oil_init() when using liboil
19281
19282 2006-01-04  Wim Taymans  <wim@fluendo.com>
19283
19284         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19285         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19286         Fix leaks.
19287
19288 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
19289
19290         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19291
19292         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19293         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19294         (gst_flac_dec_change_state):
19295           Don't g_assert() where we should just return FALSE; remove
19296           unnecessary g_assert(); initialize some fields properly in
19297           state change function (fixes #325504). Also, use
19298           GST_DEBUG_OBJECT in two more places.
19299
19300 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19301
19302         * configure.ac:
19303           also remove smoothwave's Makefile.am
19304         * docs/plugins/Makefile.am:
19305           fix plugin docs
19306
19307 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19308
19309         * tests/examples/Makefile.am:
19310           added missing Makefile.am
19311
19312 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19313
19314         * configure.ac:
19315         * gst/level/Makefile.am:
19316         * gst/level/level-example.c:
19317         * tests/Makefile.am:
19318         * tests/examples/level/Makefile.am:
19319         * tests/examples/level/level-example.c: (message_handler), (main):
19320           moved level-example to tests/examples/level-example
19321         * tests/old/examples/level/demo.c: (main):
19322         * tests/old/examples/level/plot.c: (main):
19323           some initial fixes
19324
19325 2005-12-29  Michael Smith  <msmith@fluendo.com>
19326
19327         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19328         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19329         * gst/udp/gstmultiudpsink.h:
19330           Track packets sent per client in addition to bytes sent; provide
19331           this info through get-stats signal
19332
19333 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19334
19335         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19336           Can't use gst_object_unref() on a GstAdapter (#325191).
19337
19338 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
19339
19340         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19341         If a broken tag has 0 bytes payload, at least still skip
19342         the 10 byte header
19343
19344 2005-12-22  Philippe Khalaf  <burger@speedy.org>
19345
19346         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19347         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19348         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19349         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19350           Making these depayloaders (H263+ and mpeg4 video) inherit from
19351           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19352
19353 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19354
19355         * docs/plugins/gst-plugins-good-plugins.args:
19356         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19357         Regenerate the plugin hiearchy.
19358
19359 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19360
19361         * docs/plugins/Makefile.am:
19362         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19363         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19364         * docs/plugins/gst-plugins-good-plugins.args:
19365         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19366         (gst_id3demux_base_init), (gst_id3demux_class_init),
19367         (gst_id3demux_chain):
19368         * gst/id3demux/gstid3demux.h:
19369           Add documentation for id3demux.
19370           Don't fail if the first buffer is not at offset 0, just
19371           attempt to typefind and do pass through
19372           Rename the gst_type function from gst_gst_id3demux..
19373
19374 2005-12-20  Michael Smith  <msmith@fluendo.com>
19375
19376         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19377         (gst_multiudpsink_add), (gst_multiudpsink_remove),
19378         (gst_multiudpsink_get_stats):
19379         * gst/udp/gstmultiudpsink.h:
19380           Collect statistics; return them from get_stats.
19381
19382 2005-12-19  Edward Hervey  <edward@fluendo.com>
19383
19384         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19385         Stupid signedness issue...
19386
19387 2005-12-19  Edward Hervey  <edward@fluendo.com>
19388
19389         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19390         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19391         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19392         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19393         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19394         Construct index for indexless files.
19395         Make sure pad/buffers are correctly reset to NULL once we don't need
19396         them anymore, else we get lovely segfaults/assertions.
19397         * gst/wavparse/gstwavparse.c:
19398         Yes, you can have 96KHz audio and wma in wav :(
19399
19400 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19401
19402         * configure.ac:
19403           Check for optional dependency on zlib for id3demux
19404
19405         * gst/id3demux/Makefile.am:
19406         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19407         (gst_id3demux_base_init), (gst_id3demux_class_init),
19408         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19409         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19410         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19411         (gst_id3demux_set_property), (gst_id3demux_get_property),
19412         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19413         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19414         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19415         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19416         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19417         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19418         (simple_find_peek), (simple_find_suggest),
19419         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19420         (plugin_init):
19421         * gst/id3demux/gstid3demux.h:
19422         * gst/id3demux/id3tags.c: (read_synch_uint),
19423         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19424         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19425         (id3demux_id3v2_frames_to_tag_list):
19426         * gst/id3demux/id3tags.h:
19427         * gst/id3demux/id3v2.4.0-frames.txt:
19428         * gst/id3demux/id3v2.4.0-structure.txt:
19429         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19430         (parse_comment_frame), (parse_text_identification_frame),
19431         (id3v2_tag_to_taglist), (parse_split_strings):
19432           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
19433           otherwise it discards them. Works on my test files. 
19434
19435         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19436           Don't send EOS to a non-existing srcpad
19437           The debug category can be static
19438
19439 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19440
19441         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19442         * ext/esd/esdsink.c: (gst_esdsink_prepare):
19443         * gst/multipart/multipartdemux.c:
19444           change some char* into char[]
19445
19446 2005-12-16  Wim Taymans  <wim@fluendo.com>
19447
19448         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19449         (gst_wavparse_other), (gst_wavparse_perform_seek),
19450         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19451         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19452         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19453         * gst/wavparse/gstwavparse.h:
19454         Use GstSegment to implement more seeking features.
19455
19456 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19457
19458         * gst/rtsp/rtspconnection.c:
19459           Add <netinet/in.h> include and move <arpa/inet.h> include
19460           to make things work on OpenBSD as well (fixes #323717;
19461           patch by: Benjamin Pineau)
19462
19463 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19464
19465         * gst/rtp/gstrtpspeexdepay.c:
19466         * gst/rtp/gstrtpspeexpay.c:
19467         Set clock rate to be fixed in 8000. It fixes bug #324012.
19468
19469 2005-12-14  Philippe Khalaf  <burger@speedy.org>
19470
19471         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19472         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19473         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19474         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19475         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19476         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19477         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19478         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19479         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19480         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19481         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19482         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19483         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19484         * gst-plugins-good/gst/rtp/README:
19485         Fixed payload range in payloder caps. Removed payload range completely
19486         from depayloaders as they don't require payload type in their caps.
19487         In effect, there isn't any specific payload type for any given codec,
19488         only suggestions.
19489         Fixes bug #324011.
19490
19491 2005-12-13  Julien MOUTTE  <julien@moutte.net>
19492
19493         * gst/videomixer/videomixer.c: (gst_videomixer_init),
19494         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19495         (gst_videomixer_collected): Code cleanup and re-enabling 
19496         queued time validity check for correct EOS handling.
19497
19498 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
19499
19500         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19501         (gst_oss_mixer_element_get_property),
19502         (gst_oss_mixer_element_change_state):
19503         Add 'device-name' property and fix state change function.
19504
19505 2005-12-13  Edward Hervey  <edward@fluendo.com>
19506
19507         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
19508         If the speed of the file is null in the header, set the frame_time to
19509         the default setting of GST_SECOND / 70. Which is the default
19510         frame_delay for .fli files as stated in this document :
19511         http://www.compuphase.com/flic.htm
19512         Would be nice to have the time conversion done properly too (duration =
19513         flxh->frames * flxdec->frame_time)
19514
19515 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19516
19517         * docs/plugins/Makefile.am:
19518         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19519         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19520         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19521         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19522         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19523         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19524         documentation for videomixer on my way with a funny sample
19525         pipeline.
19526
19527 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19528
19529         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19530         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19531         (gst_videomixer_update_queues), (gst_videomixer_collected):
19532         Fix caps negotiation. (#323896)
19533
19534 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
19535
19536         * gst/matroska/matroska-demux.c:
19537         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19538           Set correct timestamps on audio laces, fixes playback of mp3 from
19539                 matroska.
19540
19541 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19542
19543         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19544         (gst_au_parse_class_init), (gst_au_parse_init),
19545         (gst_au_parse_dispose), (gst_au_parse_chain),
19546         (gst_au_parse_change_state), (plugin_init):
19547         * gst/auparse/gstauparse.h:
19548           Use gst_object_unref() for GstObjects instead of
19549           g_object_unref() and fix a mem leak in a debug
19550           statement; while we're at it, also borgify, use
19551           boilerplate macros and clean up a little bit.
19552
19553 2005-12-11  Edward Hervey  <edward@fluendo.com>
19554
19555         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19556         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19557         Added pull mode.
19558
19559 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19560
19561         * gst/goom/gstgoom.c:
19562         * gst/level/level-example.c: (main):
19563         * gst/smoothwave/demo-osssrc.c: (main):
19564           Use audiotestsrc instead of sinesrc (#323798).
19565
19566 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
19567
19568         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19569           more debug-func-ptr usage
19570
19571 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
19572
19573         * gst/flx/flx_color.c: (flx_colorspace_convert):
19574         * gst/flx/flx_color.h:
19575         * gst/flx/flx_fmt.h:
19576         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19577         * gst/flx/gstflxdec.h:
19578           Now flxdec works on big-endian machines as well.
19579
19580 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19581
19582         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19583         (gst_fenced_buffer_copy):
19584           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19585           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19586           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19587           and use GST_DEBUG_FUNCPTR for pad functions.
19588
19589 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19590
19591         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19592         (gst_flac_dec_class_init), (gst_flac_dec_init),
19593         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19594         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19595         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19596         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19597         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19598         (gst_flac_dec_change_state):
19599         * ext/flac/gstflacdec.h:
19600           Rewrite flacdec a bit, so that even seeking might work now. Most
19601           importantly, don't act upon any flow return values we get, just tell
19602           the decoder everything's dandy and act on the flow return values
19603           later on in the loop function. We don't want to mess up the internal
19604           decoder state for non-fatal things like flushing pads etc. Other
19605           than that, use GstSegment (segment seeks don't work yet though, but
19606           should be easy to add), use boilerplate macros, drop the superfluous
19607           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19608           lots of other things.
19609
19610 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19611
19612         * configure.ac:
19613           Update comment in OSS includes check.
19614
19615         * sys/oss/gstossdmabuffer.c:
19616         * sys/oss/gstosshelper.c:
19617         * sys/oss/gstossmixer.c:
19618         * sys/oss/gstossmixertrack.c:
19619         * sys/oss/gstosssink.c:
19620         * sys/oss/gstosssrc.c:
19621         * sys/oss/oss_probe.c:
19622           Don't assume the OSS soundcard.h include is always in
19623           the sys/ directory. Instead, use the existing defines
19624           from config.h to include the right file. Fixes
19625           compilation on OpenBSD 3.8 (#323718).
19626
19627 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19628
19629         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19630         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19631         * docs/plugins/inspect/plugin-1394.xml:
19632         * docs/plugins/inspect/plugin-aasink.xml:
19633         * docs/plugins/inspect/plugin-alaw.xml:
19634         * docs/plugins/inspect/plugin-alpha.xml:
19635         * docs/plugins/inspect/plugin-alphacolor.xml:
19636         * docs/plugins/inspect/plugin-auparse.xml:
19637         * docs/plugins/inspect/plugin-autodetect.xml:
19638         * docs/plugins/inspect/plugin-avi.xml:
19639         * docs/plugins/inspect/plugin-cacasink.xml:
19640         * docs/plugins/inspect/plugin-cairo.xml:
19641         * docs/plugins/inspect/plugin-cutter.xml:
19642         * docs/plugins/inspect/plugin-debug.xml:
19643         * docs/plugins/inspect/plugin-dv.xml:
19644         * docs/plugins/inspect/plugin-efence.xml:
19645         * docs/plugins/inspect/plugin-effectv.xml:
19646         * docs/plugins/inspect/plugin-esdsink.xml:
19647         * docs/plugins/inspect/plugin-flac.xml:
19648         * docs/plugins/inspect/plugin-flxdec.xml:
19649         * docs/plugins/inspect/plugin-gconfelements.xml:
19650         * docs/plugins/inspect/plugin-goom.xml:
19651         * docs/plugins/inspect/plugin-jpeg.xml:
19652         * docs/plugins/inspect/plugin-level.xml:
19653         * docs/plugins/inspect/plugin-matroska.xml:
19654         * docs/plugins/inspect/plugin-mulaw.xml:
19655         * docs/plugins/inspect/plugin-multipart.xml:
19656         * docs/plugins/inspect/plugin-navigationtest.xml:
19657         * docs/plugins/inspect/plugin-ossaudio.xml:
19658         * docs/plugins/inspect/plugin-png.xml:
19659         * docs/plugins/inspect/plugin-rtp.xml:
19660         * docs/plugins/inspect/plugin-rtsp.xml:
19661         * docs/plugins/inspect/plugin-shout2send.xml:
19662         * docs/plugins/inspect/plugin-smpte.xml:
19663         * docs/plugins/inspect/plugin-speex.xml:
19664         * docs/plugins/inspect/plugin-udp.xml:
19665         * docs/plugins/inspect/plugin-videobox.xml:
19666         * docs/plugins/inspect/plugin-videoflip.xml:
19667         * docs/plugins/inspect/plugin-videomixer.xml:
19668         * docs/plugins/inspect/plugin-wavenc.xml:
19669         * docs/plugins/inspect/plugin-wavparse.xml:
19670         * ext/flac/gstflac.c: (plugin_init):
19671         * ext/flac/gstflacdec.c: (flacdec_get_type),
19672         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19673         (gst_flac_dec_init), (gst_flac_dec_finalize),
19674         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19675         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19676         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19677         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19678         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19679         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19680         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19681         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19682         * ext/flac/gstflacdec.h:
19683         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19684         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19685         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19686         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19687         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19688         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19689         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19690         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19691         (gst_flac_enc_change_state):
19692         * ext/flac/gstflacenc.h:
19693           borgify and fix up documentation
19694
19695 2005-12-09  Michael Smith  <msmith@fluendo.com>
19696
19697         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19698           Accept a wider range of flac files, more closely matching flac spec.
19699
19700 2005-12-08  Julien MOUTTE  <julien@moutte.net>
19701
19702         * docs/plugins/Makefile.am: Add multipart elements.
19703         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19704         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19705         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19706         * gst/multipart/multipartdemux.c:
19707         * gst/multipart/multipartmux.c: Add docs.
19708
19709 2005-12-07  Edward Hervey  <edward@fluendo.com>
19710
19711         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19712         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19713         (gst_avi_demux_invert):
19714         Memleak and crasher fixes.
19715         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19716         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19717         Memleak fixes
19718
19719 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19720
19721         * ext/aalib/gstaasink.h:
19722         * ext/cairo/gsttextoverlay.h:
19723         * ext/dv/gstdvdec.h:
19724         * ext/dv/gstdvdemux.c:
19725         * ext/dv/gstdvdemux.h:
19726         * ext/esd/esdsink.h:
19727         * ext/flac/flac_compat.h:
19728         * ext/flac/gstflacdec.h:
19729         * ext/flac/gstflacenc.h:
19730         * ext/gconf/gconf.h:
19731         * ext/gconf/gstgconfaudiosink.h:
19732         * ext/gconf/gstgconfvideosink.h:
19733         * ext/gdk_pixbuf/gstgdkanimation.h:
19734         * ext/jpeg/gstjpegdec.h:
19735         * ext/jpeg/smokecodec.h:
19736         * ext/jpeg/smokeformat.h:
19737         * ext/ladspa/gstsignalprocessor.h:
19738         * ext/ladspa/search.c: (LADSPAPluginSearch):
19739         * ext/ladspa/utils.h:
19740         * ext/libmng/gstmng.c:
19741         * ext/libmng/gstmngdec.h:
19742         * ext/libmng/gstmngenc.c:
19743         * ext/libmng/gstmngenc.h:
19744         * ext/libpng/gstpng.c:
19745         * ext/libpng/gstpngenc.c:
19746         * ext/libpng/gstpngenc.h:
19747         * ext/shout2/gstshout2.h:
19748         * ext/speex/gstspeexdec.h:
19749         * ext/speex/gstspeexenc.c:
19750         * ext/speex/gstspeexenc.h:
19751         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19752         * gst/autodetect/gstautoaudiosink.h:
19753         * gst/autodetect/gstautovideosink.h:
19754         * gst/avi/gstavidemux.h:
19755         * gst/cutter/gstcutter.c: (gst_cutter_chain),
19756         (gst_cutter_set_property), (gst_cutter_get_caps):
19757         * gst/cutter/gstcutter.h:
19758         * gst/debug/tests.c: (md5_process_block):
19759         * gst/debug/tests.h:
19760         * gst/effectv/gstwarp.c:
19761         * gst/flx/flx_fmt.h:
19762         * gst/flx/gstflxdec.h:
19763         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19764         (zoomFilterFastRGB):
19765         * gst/goom/filters.h:
19766         * gst/goom/goom_tools.h:
19767         * gst/law/alaw-encode.c:
19768         * gst/level/gstlevel.c:
19769         * gst/level/gstlevel.h:
19770         * gst/matroska/ebml-write.h:
19771         * gst/matroska/matroska-demux.h:
19772         * gst/matroska/matroska-ids.h:
19773         * gst/matroska/matroska-mux.h:
19774         * gst/monoscope/convolve.c: (convolve_match):
19775         * gst/monoscope/convolve.h:
19776         * gst/multipart/multipartmux.c:
19777         * gst/oldcore/gstaggregator.c:
19778         * gst/oldcore/gstaggregator.h:
19779         * gst/oldcore/gstmd5sink.c: (md5_process_block):
19780         * gst/oldcore/gstmd5sink.h:
19781         * gst/oldcore/gstmultifilesrc.c:
19782         * gst/oldcore/gstmultifilesrc.h:
19783         * gst/oldcore/gstpipefilter.h:
19784         * gst/oldcore/gstshaper.h:
19785         * gst/rtp/gstrtpL16depay.h:
19786         * gst/rtp/gstrtpL16pay.h:
19787         * gst/rtp/gstrtpdepay.h:
19788         * gst/rtp/gstrtpmp4vpay.c:
19789         * gst/rtp/gstrtpmp4vpay.h:
19790         * gst/rtsp/gstrtspsrc.c:
19791         * gst/rtsp/gstrtspsrc.h:
19792         * gst/rtsp/rtspconnection.h:
19793         * gst/rtsp/rtspdefs.h:
19794         * gst/rtsp/rtspmessage.h:
19795         * gst/rtsp/rtsptransport.h:
19796         * gst/rtsp/rtspurl.c:
19797         * gst/rtsp/rtspurl.h:
19798         * gst/rtsp/sdpmessage.c:
19799         * gst/rtsp/sdpmessage.h:
19800         * gst/smpte/barboxwipes.c:
19801         * gst/smpte/gstmask.h:
19802         * gst/smpte/gstsmpte.h:
19803         * gst/smpte/paint.c:
19804         * gst/smpte/paint.h:
19805         * gst/udp/gstdynudpsink.h:
19806         * gst/udp/gstmultiudpsink.h:
19807         * gst/udp/gstudpsink.c:
19808         * gst/udp/gstudpsink.h:
19809         * gst/udp/gstudpsrc.c:
19810         * gst/videomixer/videomixer.c:
19811         * gst/wavenc/riff.h:
19812         * gst/wavparse/gstwavparse.h:
19813         * sys/oss/gstossdmabuffer.h:
19814         * sys/oss/gstossmixer.h:
19815         * sys/oss/gstossmixerelement.h:
19816         * sys/oss/gstossmixertrack.h:
19817         * sys/oss/gstosssink.c:
19818         * sys/oss/gstosssink.h:
19819         * sys/oss/gstosssrc.c:
19820         * sys/oss/gstosssrc.h:
19821         * sys/osxaudio/gstosxaudioelement.h:
19822         * sys/osxaudio/gstosxaudiosink.h:
19823         * sys/osxaudio/gstosxaudiosrc.h:
19824           expand tabs
19825
19826 === release 0.10.0 ===
19827
19828 2005-12-05   <thomas (at) apestaart (dot) org>
19829
19830         * configure.ac:
19831           releasing 0.10.0, "Abondance"
19832
19833 2005-12-05  Andy Wingo  <wingo@pobox.com>
19834
19835         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19836         * ext/flac/gstflacdec.c: (gst_flacdec_write):
19837         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19838         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19839         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19840         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19841         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19842         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19843         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19844         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19845         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19846         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19847         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19848         * gst/goom/gstgoom.c: (gst_goom_chain):
19849         * gst/matroska/matroska-demux.c:
19850         (gst_matroska_demux_push_vorbis_codec_priv_data),
19851         (gst_matroska_demux_add_wvpk_header):
19852         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19853         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19854         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19855         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19856         alloc_buffer changes.
19857
19858 2005-12-05  Michael Smith  <msmith@fluendo.com>
19859
19860         * docs/plugins/gst-plugins-good-plugins.args:
19861           Remove args for plugins that aren't in -good.
19862
19863 === release 0.9.7 ===
19864
19865 2005-12-01   <thomas (at) apestaart (dot) org>
19866
19867         * configure.ac:
19868           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19869
19870 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19871
19872         * docs/plugins/.cvsignore:
19873         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19874         * docs/plugins/inspect/plugin-multipart.xml:
19875         * docs/plugins/inspect/plugin-rtp.xml:
19876           add multipart plugin to docs
19877
19878 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19879
19880         * configure.ac:
19881         * ext/Makefile.am:
19882         * ext/pango/Makefile.am:
19883         * ext/pango/gstclockoverlay.c:
19884         * ext/pango/gstclockoverlay.h:
19885         * ext/pango/gsttextoverlay.c:
19886         * ext/pango/gsttextoverlay.h:
19887         * ext/pango/gsttextrender.c:
19888         * ext/pango/gsttextrender.h:
19889         * ext/pango/gsttimeoverlay.c:
19890         * ext/pango/gsttimeoverlay.h:
19891           move pango to base
19892
19893 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19894
19895         * gst/rtp/Makefile.am:
19896         * gst/rtp/gstrtpL16depay.c:
19897         * gst/rtp/gstrtpL16depay.h:
19898         * gst/rtp/gstrtpL16parse.c:
19899         * gst/rtp/gstrtpL16parse.h:
19900         * gst/rtp/gstrtpgsmdepay.c:
19901         * gst/rtp/gstrtpgsmdepay.h:
19902         * gst/rtp/gstrtpgsmparse.c:
19903         * gst/rtp/gstrtpgsmparse.h:
19904           parsers are depayers
19905
19906 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19907
19908         * gst/rtp/Makefile.am:
19909         * gst/rtp/gstasteriskh263.c:
19910         * gst/rtp/gstrtp.c:
19911         * gst/rtp/gstrtpL16enc.c:
19912         * gst/rtp/gstrtpL16enc.h:
19913         * gst/rtp/gstrtpL16parse.c:
19914         * gst/rtp/gstrtpL16parse.h:
19915         * gst/rtp/gstrtpL16pay.c:
19916         * gst/rtp/gstrtpL16pay.h:
19917         * gst/rtp/gstrtpamrdec.c:
19918         * gst/rtp/gstrtpamrdec.h:
19919         * gst/rtp/gstrtpamrdepay.c:
19920         * gst/rtp/gstrtpamrdepay.h:
19921         * gst/rtp/gstrtpamrenc.c:
19922         * gst/rtp/gstrtpamrenc.h:
19923         * gst/rtp/gstrtpamrpay.c:
19924         * gst/rtp/gstrtpamrpay.h:
19925         * gst/rtp/gstrtpdec.c:
19926         * gst/rtp/gstrtpdec.h:
19927         * gst/rtp/gstrtpdepay.c:
19928         * gst/rtp/gstrtpdepay.h:
19929         * gst/rtp/gstrtpg711dec.c:
19930         * gst/rtp/gstrtpg711dec.h:
19931         * gst/rtp/gstrtpg711depay.c:
19932         * gst/rtp/gstrtpg711depay.h:
19933         * gst/rtp/gstrtpg711enc.c:
19934         * gst/rtp/gstrtpg711enc.h:
19935         * gst/rtp/gstrtpg711pay.c:
19936         * gst/rtp/gstrtpg711pay.h:
19937         * gst/rtp/gstrtpgsmenc.c:
19938         * gst/rtp/gstrtpgsmenc.h:
19939         * gst/rtp/gstrtpgsmparse.c:
19940         * gst/rtp/gstrtpgsmparse.h:
19941         * gst/rtp/gstrtpgsmpay.c:
19942         * gst/rtp/gstrtpgsmpay.h:
19943         * gst/rtp/gstrtph263enc.c:
19944         * gst/rtp/gstrtph263enc.h:
19945         * gst/rtp/gstrtph263pay.c:
19946         * gst/rtp/gstrtph263pay.h:
19947         * gst/rtp/gstrtph263pdec.c:
19948         * gst/rtp/gstrtph263pdec.h:
19949         * gst/rtp/gstrtph263pdepay.c:
19950         * gst/rtp/gstrtph263pdepay.h:
19951         * gst/rtp/gstrtph263penc.c:
19952         * gst/rtp/gstrtph263penc.h:
19953         * gst/rtp/gstrtph263ppay.c:
19954         * gst/rtp/gstrtph263ppay.h:
19955         * gst/rtp/gstrtpmp4vdec.c:
19956         * gst/rtp/gstrtpmp4vdec.h:
19957         * gst/rtp/gstrtpmp4vdepay.c:
19958         * gst/rtp/gstrtpmp4vdepay.h:
19959         * gst/rtp/gstrtpmp4venc.c:
19960         * gst/rtp/gstrtpmp4venc.h:
19961         * gst/rtp/gstrtpmp4vpay.c:
19962         * gst/rtp/gstrtpmp4vpay.h:
19963         * gst/rtp/gstrtpmpadec.c:
19964         * gst/rtp/gstrtpmpadec.h:
19965         * gst/rtp/gstrtpmpadepay.c:
19966         * gst/rtp/gstrtpmpadepay.h:
19967         * gst/rtp/gstrtpmpaenc.c:
19968         * gst/rtp/gstrtpmpaenc.h:
19969         * gst/rtp/gstrtpmpapay.c:
19970         * gst/rtp/gstrtpmpapay.h:
19971         * gst/rtp/gstrtpspeexdec.c:
19972         * gst/rtp/gstrtpspeexdec.h:
19973         * gst/rtp/gstrtpspeexdepay.c:
19974         * gst/rtp/gstrtpspeexdepay.h:
19975         * gst/rtp/gstrtpspeexenc.c:
19976         * gst/rtp/gstrtpspeexenc.h:
19977         * gst/rtp/gstrtpspeexpay.c:
19978         * gst/rtp/gstrtpspeexpay.h:
19979           Do burger's rename for rtp payloaders and depayloaders
19980
19981 2005-11-30  Wim Taymans  <wim@fluendo.com>
19982
19983         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19984         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
19985         * ext/dv/gstdvdemux.h:
19986         Fix seeking in dvdemux again, add some more debug info.
19987
19988 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19989
19990         * configure.ac:
19991           fix tests
19992
19993 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19994
19995         * PORTED_09:
19996         * docs/random/PORTED_09:
19997           move
19998         * tests/Makefile.am:
19999           add
20000         * win32/gst.sln:
20001           remove
20002
20003 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20004
20005         * Makefile.am:
20006         * check/.cvsignore:
20007         * check/Makefile.am:
20008         * check/elements/.cvsignore:
20009         * check/elements/level.c:
20010         * check/elements/matroskamux.c:
20011         * configure.ac:
20012         * examples/Makefile.am:
20013         * examples/capsfilter/Makefile.am:
20014         * examples/capsfilter/capsfilter1.c:
20015         * examples/gob/Makefile.am:
20016         * examples/gob/gst-identity2.gob:
20017         * examples/gstplay/.cvsignore:
20018         * examples/gstplay/Makefile.am:
20019         * examples/gstplay/player.c:
20020         * examples/indexing/.cvsignore:
20021         * examples/indexing/Makefile.am:
20022         * examples/indexing/indexmpeg.c:
20023         * examples/level/Makefile.am:
20024         * examples/level/README:
20025         * examples/level/demo.c:
20026         * examples/level/plot.c:
20027         * examples/stats/Makefile.am:
20028         * examples/stats/mp2ogg.c:
20029         * examples/switch/.cvsignore:
20030         * examples/switch/Makefile.am:
20031         * examples/switch/switcher.c:
20032           move under tests/
20033
20034 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20035
20036         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
20037         (gst_text_render_class_init), (resize_bitmap),
20038         (gst_text_render_render_text), (gst_text_render_setcaps),
20039         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
20040         (gst_text_render_chain), (gst_text_render_finalize),
20041         (gst_text_render_init), (gst_text_render_set_property):
20042         * ext/pango/gsttextrender.h:
20043           Add missing files.
20044
20045 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
20046
20047         * configure.ac:
20048         * ext/Makefile.am:
20049         * ext/pango/Makefile.am:
20050         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
20051         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
20052         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
20053         * ext/pango/gstclockoverlay.h:
20054         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
20055         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
20056         (gst_text_overlay_finalize), (gst_text_overlay_init),
20057         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
20058         (gst_text_overlay_text_pad_linked),
20059         (gst_text_overlay_text_pad_unlinked),
20060         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
20061         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
20062         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
20063         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20064         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20065         (gst_text_overlay_change_state), (plugin_init):
20066         * ext/pango/gsttextoverlay.h:
20067         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
20068         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
20069         (gst_time_overlay_class_init), (gst_time_overlay_init):
20070         * ext/pango/gsttimeoverlay.h:
20071           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
20072           and add background shading and text wrapping modes. Make 
20073           timoverlay derive from textoverlay. Also add new clockoverlay
20074           element.
20075
20076 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20077
20078         * gst/udp/Makefile.am: Moved to netbuffer.
20079
20080 2005-11-30  Julien MOUTTE  <julien@moutte.net>
20081
20082         * configure.ac:
20083         * PORTED_O9:
20084         * gst/multipart/Makefile.am:
20085         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
20086         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
20087         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
20088         (gst_multipart_demux_change_state),
20089         (gst_multipart_demux_plugin_init):
20090         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20091         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
20092         (gst_multipart_mux_sinkconnect),
20093         (gst_multipart_mux_request_new_pad),
20094         (gst_multipart_mux_handle_src_event),
20095         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20096         (gst_multipart_mux_change_state): Ported multipart mux/demux to
20097         0.9.
20098
20099 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20100
20101         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20102         * gst/debug/gstnavigationtest.h:
20103         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20104         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20105         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20106         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20107         * gst/effectv/gstrev.c: (gst_revtv_get_type):
20108         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20109         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20110         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20111         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20112         (gst_video_flip_get_type):
20113         * gst/videofilter/gstvideoflip.h:
20114           update for symbols change
20115
20116 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20117
20118         * gst/udp/gstdynudpsink.c:
20119         * gst/udp/gstudpsrc.c:
20120           the old gstnet lib was renamed gstnetbuffer (#322257)
20121
20122 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20123
20124         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20125         (gst_text_overlay_collected):
20126           Actually render the text from the text pad.
20127
20128 2005-11-29  Edward Hervey  <edward@fluendo.com>
20129
20130         * gst/debug/gstnavseek.c: (gst_navseek_event):
20131         * gst/debug/progressreport.c: (gst_progress_report_event):
20132         Update for GstBaseTransform event virtual method
20133
20134 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20135
20136         * ext/cairo/Makefile.am:
20137           no need to link to videofilter
20138
20139 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20140
20141         * gst/debug/Makefile.am:
20142         * gst/debug/gstnavigationtest.h:
20143         * gst/effectv/Makefile.am:
20144         * gst/effectv/gstaging.c:
20145         * gst/effectv/gstdice.c:
20146         * gst/effectv/gstedge.c:
20147         * gst/effectv/gstquark.c:
20148         * gst/effectv/gstrev.c:
20149         * gst/effectv/gstshagadelic.c:
20150         * gst/effectv/gstvertigo.c:
20151         * gst/effectv/gstwarp.c:
20152         * gst/videofilter/Makefile.am:
20153         * gst/videofilter/gstvideofilter.c:
20154         * gst/videofilter/gstvideofilter.h:
20155         * gst/videofilter/gstvideoflip.h:
20156           remove the videofilter library and link to the one in base
20157
20158 2005-11-28  Edward Hervey  <edward@fluendo.com>
20159
20160         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20161         Useless check now we're setting the current entry correctly.
20162
20163 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20164
20165         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20166         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20167         (gst_jpegenc_change_state):
20168           Don't leak input buffer in chain function (fixes #322667); make 
20169           state change function thread-safe; don't repeat the current function
20170           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20171           gst_pad_alloc_buffer(); misc. minor cleanups.
20172
20173 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20174
20175         * gst/matroska/matroska-mux.c:
20176         (gst_matroska_mux_video_pad_setcaps):
20177         Look for pixel-aspect-ratio in caps, not pixel_width and
20178         pixel_height (Fixes: #322645)
20179
20180 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20181
20182         * gst/matroska/matroska-mux.c:
20183         (gst_matroska_mux_video_pad_setcaps):
20184         From Michal Benes:
20185         frame duration should be GST_SECOND / framerate, not
20186         GST_SECOND * framerate. (Fixes: #322643)
20187
20188 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20189
20190         * configure.ac:
20191           fix up GST_PLUGIN_LDFLAGS
20192         * gst/rtsp/rtspconnection.c:
20193           fix includes (see #317043)
20194         * gst/videofilter/Makefile.am:
20195           stop installing this library
20196
20197 2005-11-26  Edward Hervey  <edward@fluendo.com>
20198
20199         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20200         Handle the case where the incoming Video dv stream doesn't have
20201         a pixel aspect ratio set.
20202
20203 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20204
20205         * docs/plugins/Makefile.am:
20206         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20207         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20208         * ext/flac/gstflacdec.c:
20209           document flacdec
20210
20211 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20212
20213         * docs/plugins/Makefile.am:
20214         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20215         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20216         * docs/plugins/inspect/plugin-autodetect.xml:
20217         * ext/cairo/gstcairo.c: (plugin_init):
20218         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20219         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20220         (gst_text_overlay_init), (gst_text_overlay_font_init),
20221         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20222         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20223         (gst_text_overlay_text_pad_linked),
20224         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20225         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20226         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20227         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20228         (gst_text_overlay_change_state):
20229         * ext/cairo/gsttextoverlay.h:
20230         * ext/cairo/gsttimeoverlay.c:
20231         (gst_cairo_time_overlay_update_font_height),
20232         (gst_cairo_time_overlay_set_caps),
20233         (gst_cairo_time_overlay_get_unit_size),
20234         (gst_cairo_time_overlay_print_smpte_time),
20235         (gst_cairo_time_overlay_transform),
20236         (gst_cairo_time_overlay_base_init),
20237         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20238         (gst_cairo_time_overlay_get_type):
20239         * ext/cairo/gsttimeoverlay.h:
20240           do some name borgifying
20241           document
20242
20243 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20244
20245         * docs/plugins/Makefile.am:
20246         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20247         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20248         * gst/autodetect/gstautoaudiosink.c:
20249         (gst_auto_audio_sink_base_init):
20250         * gst/autodetect/gstautovideosink.c:
20251         (gst_auto_video_sink_base_init),
20252         (gst_auto_video_sink_factory_filter):
20253           documenting auto*sink
20254           using strstr for the video sink lookup, class field is not ordered
20255         * docs/plugins/inspect/plugin-1394.xml:
20256         * docs/plugins/inspect/plugin-aasink.xml:
20257         * docs/plugins/inspect/plugin-alaw.xml:
20258         * docs/plugins/inspect/plugin-alpha.xml:
20259         * docs/plugins/inspect/plugin-alphacolor.xml:
20260         * docs/plugins/inspect/plugin-auparse.xml:
20261         * docs/plugins/inspect/plugin-autodetect.xml:
20262         * docs/plugins/inspect/plugin-avi.xml:
20263         * docs/plugins/inspect/plugin-cacasink.xml:
20264         * docs/plugins/inspect/plugin-cairo.xml:
20265         * docs/plugins/inspect/plugin-cutter.xml:
20266         * docs/plugins/inspect/plugin-debug.xml:
20267         * docs/plugins/inspect/plugin-dv.xml:
20268         * docs/plugins/inspect/plugin-efence.xml:
20269         * docs/plugins/inspect/plugin-effectv.xml:
20270         * docs/plugins/inspect/plugin-esdsink.xml:
20271         * docs/plugins/inspect/plugin-flac.xml:
20272         * docs/plugins/inspect/plugin-flxdec.xml:
20273         * docs/plugins/inspect/plugin-gconfelements.xml:
20274         * docs/plugins/inspect/plugin-goom.xml:
20275         * docs/plugins/inspect/plugin-jpeg.xml:
20276         * docs/plugins/inspect/plugin-level.xml:
20277         * docs/plugins/inspect/plugin-matroska.xml:
20278         * docs/plugins/inspect/plugin-mulaw.xml:
20279         * docs/plugins/inspect/plugin-navigationtest.xml:
20280         * docs/plugins/inspect/plugin-ossaudio.xml:
20281         * docs/plugins/inspect/plugin-png.xml:
20282         * docs/plugins/inspect/plugin-rtp.xml:
20283         * docs/plugins/inspect/plugin-rtsp.xml:
20284         * docs/plugins/inspect/plugin-shout2send.xml:
20285         * docs/plugins/inspect/plugin-smpte.xml:
20286         * docs/plugins/inspect/plugin-speex.xml:
20287         * docs/plugins/inspect/plugin-udp.xml:
20288         * docs/plugins/inspect/plugin-videobox.xml:
20289         * docs/plugins/inspect/plugin-videoflip.xml:
20290         * docs/plugins/inspect/plugin-videomixer.xml:
20291         * docs/plugins/inspect/plugin-wavenc.xml:
20292         * docs/plugins/inspect/plugin-wavparse.xml:
20293           update for HEAD version
20294
20295 2005-11-25  Michael Smith  <msmith@fluendo.com>
20296
20297         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20298           Patch from Sebastien Cote to close control sockets in udpsrc.
20299
20300 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20301
20302         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20303         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20304         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20305         (gst_quarktv_base_init), (gst_quarktv_class_init),
20306         (gst_quarktv_init): Flush the planes list on reverse caps
20307         negotiation. This was crashing because of differently sized
20308         buffers.
20309
20310 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20311
20312         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20313         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20314         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20315         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20316         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20317         (gst_videoflip_set_property), (gst_videoflip_base_init),
20318         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20319         correctly, fix identity flipping, convert navigation event 
20320         correctly again.
20321
20322 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20323
20324         * configure.ac: back to HEAD
20325
20326 === release 0.9.6 ===
20327
20328 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20329
20330         * configure.ac:
20331           releasing 0.9.6, "Everything's Not Lost"
20332
20333 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20334
20335         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20336         Oops, initialise the framerate GValue
20337
20338 2005-11-23  Julien MOUTTE  <julien@moutte.net>
20339
20340         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20341         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20342         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20343         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20344         (gst_timeoverlay_get_type):
20345         * ext/cairo/gsttimeoverlay.h:
20346         * gst/debug/Makefile.am:
20347         * gst/debug/gstnavigationtest.c:
20348         (gst_navigationtest_handle_src_event),
20349         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20350         (gst_navigationtest_transform), (gst_navigationtest_change_state),
20351         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20352         (gst_navigationtest_init), (gst_navigationtest_get_type),
20353         (plugin_init):
20354         * gst/debug/gstnavigationtest.h:
20355         * gst/effectv/Makefile.am:
20356         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20357         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20358         (gst_agingtv_base_init), (gst_agingtv_class_init),
20359         (gst_agingtv_init), (gst_agingtv_get_type):
20360         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20361         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20362         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20363         (gst_dicetv_get_type):
20364         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20365         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20366         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20367         (gst_edgetv_get_type):
20368         * gst/effectv/gsteffectv.c:
20369         * gst/effectv/gsteffectv.h:
20370         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20371         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20372         (gst_quarktv_change_state), (gst_quarktv_base_init),
20373         (gst_quarktv_class_init), (gst_quarktv_init),
20374         (gst_quarktv_get_type):
20375         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20376         (gst_revtv_get_unit_size), (gst_revtv_transform),
20377         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20378         (gst_revtv_get_type):
20379         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20380         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20381         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20382         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20383         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20384         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20385         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20386         (gst_vertigotv_init), (gst_vertigotv_get_type):
20387         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20388         (gst_warptv_get_unit_size), (gst_warptv_transform),
20389         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20390         (gst_warptv_get_type):
20391         * gst/videofilter/Makefile.am:
20392         * gst/videofilter/gstvideobalance.c:
20393         * gst/videofilter/gstvideobalance.h:
20394         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20395         (gst_videofilter_class_init), (gst_videofilter_init):
20396         * gst/videofilter/gstvideofilter.h:
20397         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20398         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20399         (gst_videoflip_flip), (gst_videoflip_transform),
20400         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20401         (gst_videoflip_base_init), (gst_videoflip_class_init),
20402         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20403         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20404         BaseTransform, it's just a place holder for now and every video
20405         effect plugin has been ported to use BaseTransform features 
20406         directly. QuarkTV was fixed too (was broken), navigationtest works
20407         and best for the end, videoflip converts navigation events depending
20408         on flip method ! Fixes #320953
20409
20410 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20411
20412         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20413         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20414         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20415         (gst_goom_src_negotiate), (gst_goom_chain):
20416         * gst/matroska/matroska-mux.c:
20417         (gst_matroska_mux_video_pad_setcaps):
20418         * sys/osxvideo/osxvideosink.m:
20419           Fixes for API changes
20420
20421 2005-11-23  Michael Smith <msmith@fluendo.com>
20422
20423         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20424         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20425         * ext/jpeg/gstjpegdec.h:
20426         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20427         * ext/jpeg/gstjpegenc.h:
20428         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20429         (gst_smokeenc_resync):
20430         * ext/jpeg/gstsmokeenc.h:
20431           JPEG fractiony goodness.
20432
20433 2005-11-22  Michael Smith <msmith@fluendo.com>
20434
20435         * gst/goom/filters.c:
20436         * gst/goom/graphic.h:
20437           Fix compilation by making some functions static inline instead of
20438           extern inline, matching the way they're used.
20439
20440 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20441
20442         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20443         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20444         * ext/cairo/gsttextoverlay.h:
20445         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20446         * ext/gdk_pixbuf/gstgdkpixbuf.h:
20447         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20448         (gst_pngdec_caps_create_and_set):
20449         * ext/libpng/gstpngdec.h:
20450         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20451         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20452         * gst/avi/gstavimux.c: (gst_avimux_init),
20453         (gst_avimux_vidsinkconnect):
20454         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20455         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20456         (gst_goom_src_negotiate), (gst_goom_chain):
20457         * gst/goom/gstgoom.h:
20458         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20459         * gst/matroska/matroska-mux.c:
20460         (gst_matroska_mux_video_pad_setcaps):
20461         * sys/osxvideo/osxvideosink.h:
20462         * sys/osxvideo/osxvideosink.m:
20463           More fractional framerate conversions 
20464
20465 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20466
20467         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20468         * gst/debug/gstnavigationtest.c:
20469         (gst_navigationtest_handle_src_event):
20470         * gst/videofilter/gstvideofilter.c:
20471         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20472         (gst_videofilter_init):
20473         * gst/videofilter/gstvideofilter.h:
20474           Convert to fractional framerates.
20475
20476 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20477
20478         * ext/aalib/gstaasink.c:
20479         * ext/dv/gstdvdec.c:
20480         * ext/esd/esdmon.c:
20481         * ext/flac/gstflacenc.c:
20482         * ext/gdk_pixbuf/pixbufscale.c:
20483         * ext/libcaca/gstcacasink.c:
20484         * ext/shout2/gstshout2.c:
20485         * gst/alpha/gstalpha.c:
20486         * gst/oldcore/gstaggregator.c:
20487         * gst/oldcore/gstshaper.c:
20488         * gst/smpte/barboxwipes.c:
20489         * gst/smpte/gstsmpte.c:
20490         * gst/videobox/gstvideobox.c:
20491         * gst/videofilter/gstvideoflip.c:
20492         * gst/videomixer/videomixer.c:
20493           fix up more enums
20494
20495 2005-11-22  Michael Smith <msmith@fluendo.com>
20496
20497         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20498         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20499         (gst_videomixer_update_queues):
20500           Fractional framerates, videomixer.
20501
20502 2005-11-22  Michael Smith <msmith@fluendo.com>
20503
20504         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20505         * ext/dv/gstdvdec.h:
20506         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20507         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20508         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20509         (gst_dvdemux_flush):
20510         * ext/dv/gstdvdemux.h:
20511           Fractional framerates for DV. 
20512
20513 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20514
20515         * gst/autodetect/gstautoaudiosink.c:
20516         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20517         * gst/autodetect/gstautovideosink.c:
20518         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20519           Use gst_plugin_feature_list_free() to free feature list and
20520           in the case of autovideosink free the list at all. Also
20521           miscellaneous cosmetic fixes.
20522
20523 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20524
20525         * gst/cutter/gstcutter.c: (gst_cutter_chain),
20526         (gst_cutter_set_property), (gst_cutter_get_caps):
20527           copy calculation code from level; remove use of some audio
20528           functions
20529
20530 2005-11-22  Andy Wingo  <wingo@pobox.com>
20531
20532         * Update for gst_tag_setter API changes.
20533
20534 2005-11-22  Andy Wingo  <wingo@pobox.com>
20535
20536         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20537         (gst_dvdemux_demux_frame)
20538         * ext/flac/gstflacdec.c (gst_flacdec_write)
20539         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20540         (gst_flacenc_sink_event)
20541         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20542         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20543         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20544         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20545         * gst/auparse/gstauparse.c (gst_auparse_chain)
20546         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20547         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20548         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20549         (gst_avi_demux_handle_seek)
20550         * gst/goom/gstgoom.c (gst_goom_event)
20551         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20552         * gst/matroska/matroska-demux.c
20553         (gst_matroska_demux_handle_seek_event)
20554         (gst_matroska_demux_loop_stream_parse_id)
20555         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20556         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20557         (gst_wavparse_stream_headers): Run update-funcnames.
20558
20559 2005-11-22  Edward Hervey  <edward@fluendo.com>
20560
20561         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20562         (gst_dv1394src_init), (gst_dv1394src_dispose),
20563         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20564         (gst_dv1394src_uri_set_uri):
20565         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20566         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20567         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20568         URIHandler interface and element properties are now properly
20569         synchronized for DV1394src and UDPSrc
20570
20571 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20572
20573         * ext/flac/Makefile.am:
20574         * ext/speex/Makefile.am:
20575           libgsttagedit has been renamed to libgsttag.
20576
20577 2005-11-21  Wim Taymans  <wim@fluendo.com>
20578
20579         * gst/rtsp/rtspconnection.c: (read_body):
20580         Apply patch from Sebastien Cote to fix #319184.
20581
20582 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20583
20584         * configure.ac:
20585         * gst/cutter/Makefile.am:
20586         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20587         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20588         (gst_cutter_set_property), (gst_cutter_get_property),
20589         (plugin_init), (gst_cutter_get_caps):
20590           port cutter
20591         * gst/level/gstlevel.c:
20592           fix up plugin details
20593
20594 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20595
20596         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20597         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20598         (gst_flacdec_src_event):
20599         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20600         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20601         (gst_signal_processor_getrange), (gst_signal_processor_chain):
20602         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20603         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20604         (gst_flxdec_sink_event_handler):
20605         * gst/matroska/matroska-demux.c:
20606         (gst_matroska_demux_handle_seek_event):
20607         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20608           Update for stream lock API changes: don't take stream log
20609           in sink event handlers any longer and change GST_STREAM_LOCK
20610           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20611           functions.
20612
20613 2005-11-21  Michael Smith <msmith@fluendo.com>
20614
20615         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20616           gst_object_unref, not g_object_unref
20617
20618 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20619
20620         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20621         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20622           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20623
20624 2005-11-21  Michael Smith <msmith@fluendo.com>
20625
20626         * gst/auparse/Makefile.am:
20627         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20628         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20629         (gst_auparse_change_state):
20630         * gst/auparse/gstauparse.h:
20631           Partially fix #161712. playbin still doesn't work on these files,
20632           (on the bug report, Andy says we aren't typefinding it for some
20633           reason?) but at least auparse isn't totally busted like it was before.
20634
20635 2005-11-21  Andy Wingo  <wingo@pobox.com>
20636
20637         * *.h:
20638         * *.c: Ran scripts/update-macros. Oh yes.
20639
20640 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20641
20642         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20643           Filler events are gone for now, comment out section generating
20644           them.
20645
20646 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20647
20648         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20649         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20650         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20651         * sys/osxvideo/osxvideosink.m:
20652           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20653           (#322027)
20654
20655 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20656
20657         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20658         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20659         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20660         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20661         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20662         (gst_avi_demux_stream_data):
20663         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20664         * gst/wavenc/gstwavenc.c: (write_metadata):
20665         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20666         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20667         Fixes for GST_FOURCC_FORMAT API change.
20668
20669 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20670
20671         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20672         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20673         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20674         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20675         (gst_text_overlay_change_state):
20676         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20677         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20678         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20679         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20680         * gst/videomixer/videomixer.c: (gst_videomixer_init),
20681         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20682         (gst_videomixer_change_state):
20683           Fix for collect pads API change. Also fix textoverlay state
20684           change function.
20685
20686 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20687
20688         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20689         GST_PAD_IS_USABLE by something approaching it.
20690
20691 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20692
20693         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20694         API changes.
20695         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20696         but also fix the code that was not checking return values from
20697         pad_push neither using pad_alloc_buffer.
20698
20699 2005-11-18  Edward Hervey  <edward@fluendo.com>
20700
20701         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20702         (gst_pngenc_chain):
20703         Added debug category
20704         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20705         goes to EOS.
20706
20707 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
20708
20709         * gst/rtp/Makefile.am
20710         * gst/rtp/gstrtp.c
20711         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20712         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20713         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20714         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20715         * gst/rtp/gstrtpg711enc.h:
20716         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20717         * gst/rtp/gstrtpspeexenc.c:
20718         * gst/rtp/gstrtpspeexenc.h:
20719         * gst/rtp/gstrtpspeexdec.c:
20720         * gst/rtp/gstrtpspeexdec.h:
20721         Created Speex payloader and depayloader; Optimize G711 payloader to
20722         use adapter and send packets until MTU size.
20723
20724 2005-11-16  Wim Taymans  <wim@fluendo.com>
20725
20726         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20727         Fix leak in check.
20728
20729 2005-11-16  Wim Taymans  <wim@fluendo.com>
20730
20731         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20732         Fix state change.
20733
20734 2005-11-16  Andy Wingo  <wingo@pobox.com>
20735
20736         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20737         (gst_udpsrc_create): Move comment.
20738
20739 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
20740
20741         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20742
20743         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20744           When seeking, seek to closest index entry at or before the requested
20745           seek position, not just the closest one (#321001).
20746
20747 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20748
20749         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20750         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20751           Invert DIB images again (see #132341).
20752
20753 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20754
20755         * configure.ac:
20756           rework configure.ac file
20757         * ext/aalib/gstaasink.c:
20758         * ext/cairo/gstcairo.c:
20759         * ext/dv/gstdv.c:
20760         * ext/esd/gstesd.c:
20761         * ext/flac/gstflac.c:
20762         * ext/gconf/gstgconfelements.c:
20763         * ext/gdk_pixbuf/gstgdkpixbuf.c:
20764         * ext/jpeg/gstjpeg.c:
20765         * ext/ladspa/gstladspa.c:
20766         * ext/libcaca/gstcacasink.c:
20767         * ext/libmng/gstmng.c:
20768         * ext/libpng/gstpng.c:
20769         * ext/mikmod/gstmikmod.c:
20770         * ext/pango/gsttextoverlay.c:
20771         * ext/pango/gsttimeoverlay.c:
20772         * ext/raw1394/gst1394.c:
20773         * ext/speex/gstspeex.c:
20774         * gst/alpha/Makefile.am:
20775         * gst/alpha/gstalpha.c:
20776         * gst/alpha/gstalphacolor.c:
20777         * gst/auparse/gstauparse.c:
20778         * gst/autodetect/gstautoaudiosink.c:
20779         (gst_auto_audio_sink_factory_filter),
20780         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20781         * gst/autodetect/gstautodetect.c:
20782         * gst/avi/gstavi.c:
20783         * gst/cutter/gstcutter.c:
20784         * gst/debug/efence.c:
20785         * gst/debug/gstdebug.c:
20786         * gst/debug/gstnavigationtest.c:
20787         * gst/effectv/gsteffectv.c:
20788         * gst/flx/gstflxdec.c:
20789         * gst/goom/gstgoom.c:
20790         * gst/interleave/plugin.c:
20791         * gst/law/alaw.c:
20792         * gst/law/mulaw.c:
20793         * gst/level/gstlevel.c:
20794         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20795         * gst/matroska/matroska.c:
20796         * gst/median/gstmedian.c:
20797         * gst/monoscope/gstmonoscope.c:
20798         * gst/multipart/multipart.c:
20799         * gst/oldcore/gstelements.c:
20800         * gst/rtp/gstrtp.c:
20801         * gst/rtsp/gstrtsp.c:
20802         * gst/smoothwave/gstsmoothwave.c:
20803         * gst/smpte/gstsmpte.c:
20804         * gst/udp/gstudp.c:
20805         * gst/videobox/gstvideobox.c:
20806         * gst/videofilter/gstgamma.c:
20807         * gst/videofilter/gstvideobalance.c:
20808         * gst/videofilter/gstvideoflip.c:
20809         * gst/videofilter/gstvideotemplate.c:
20810         * gst/videomixer/videomixer.c:
20811         * gst/wavenc/gstwavenc.c:
20812         * gst/wavparse/gstwavparse.c:
20813         * sys/oss/gstossaudio.c:
20814         * sys/osxaudio/gstosxaudio.c:
20815           update GST_PLUGIN_DEFINE
20816         * gst/rtp/Makefile.am:
20817         * gst/rtp/gstasteriskh263.c:
20818           check for htons/htonl headers and possibly link to winsock2 lib
20819
20820 2005-11-12  Edward Hervey  <edward@fluendo.com>
20821
20822         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
20823         Only GST_DEBUG() information on the valid components.
20824
20825 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20826
20827         * configure.ac: back to HEAD
20828
20829 === release 0.9.5 ===
20830
20831 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20832
20833         * configure.ac:
20834           releasing 0.9.5, "Phone Alarm"
20835
20836 2005-11-11  Edward Hervey  <edward@fluendo.com>
20837
20838         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20839         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20840         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20841         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20842         (gst_avi_demux_loop):
20843         * gst/avi/gstavidemux.h:
20844         Yeah, implement proper seeking. Exact seeking and segment seeking.
20845         Still need to do some checks for segment_stop.
20846
20847 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20848
20849         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20850
20851         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20852           Don't try to ready buffer duration from buffer that we don't
20853           own any  longer and that might already have been unreffed.
20854           (#321136)
20855
20856 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
20857
20858         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20859         (flx_decode_delta_flc), (gst_flxdec_chain):
20860         Attempting to optimize the code for embedded systems.
20861
20862 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
20863
20864         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20865
20866         * sys/oss/gstosssink.c: (gst_oss_sink_close):
20867           Don't re-use already closed file descriptor. (#320920)
20868
20869 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20870
20871         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20872         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20873         (gst_oss_sink_prepare):
20874         * sys/oss/gstosssink.h:
20875           Cache probed caps; fix debug output for SET_PARAM macros.
20876
20877 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20878
20879         * ext/cairo/Makefile.am:
20880         * ext/cairo/gstcairo.c: (plugin_init):
20881         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20882         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20883         (gst_text_overlay_init), (gst_text_overlay_font_init),
20884         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20885         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20886         (gst_text_overlay_text_pad_linked),
20887         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20888         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20889         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20890         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20891         (gst_text_overlay_change_state):
20892         * ext/cairo/gsttextoverlay.h:
20893           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20894           property and redo positioning. Doesn't handle upstream renegotiation
20895           yet though.
20896
20897 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20898
20899         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20900         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20901         (gst_avi_demux_loop):
20902           No need to take the STREAM_LOCK in the loop function. Improve
20903           some debug messages. Don't leak pad names in debug messages.
20904
20905 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20906
20907         * gst/matroska/matroska-demux.c:
20908         (gst_matroska_demux_push_vorbis_codec_priv_data),
20909         (gst_matroska_demux_add_wvpk_header):
20910           Don't error out when the source pad isn't linked.
20911
20912 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
20913
20914         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
20915         (gst_gconf_audio_sink_change_state):
20916         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
20917         (gst_gconf_video_sink_change_state):
20918           Fix state change functions here as well and set kid
20919           to NULL state before removing it.
20920
20921 2005-11-01  Edward Hervey  <edward@fluendo.com>
20922
20923         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
20924         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
20925         Added proper event handlind, 
20926         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
20927         ignored),
20928         and don't set a duration of 0 for buffers otherwise they are discarded
20929         by GstBaseSink.
20930
20931         GstWavEnc needs some serious loving, after going through the code I'm
20932         really wondering how this can stay in -good ...
20933
20934 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20935
20936         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
20937         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
20938         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
20939         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
20940         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
20941         (gst_matroska_mux_collected):
20942           Fix leaks and invalid memory access as reported by valgrind
20943
20944 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20945
20946         Patch by: Michal Benes <michal.benes@xeris.cz>
20947
20948         * check/Makefile.am:
20949         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20950         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
20951         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
20952           add a unit test for matroskamux
20953           fix the bugs that the unit test exposed
20954
20955 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
20956
20957         * gst/autodetect/gstautoaudiosink.c:
20958         (gst_auto_audio_sink_class_init),
20959         (gst_auto_audio_sink_change_state):
20960         * gst/autodetect/gstautovideosink.c:
20961         (gst_auto_video_sink_class_init),
20962         (gst_auto_video_sink_change_state):
20963           Fix state change function and use GST_DEBUG_FUNCPTR in
20964           class_init.
20965
20966 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20967
20968         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20969
20970         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
20971         (gst_ebml_write_reset), (gst_ebml_write_element_new):
20972         * gst/matroska/ebml-write.h:
20973         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20974           Set timestamps on outgoing ebml headers as well, so that the
20975           element after matroskamux can get the timestamp already when
20976           reading the first ebml element and doesn't have to wait for
20977           the actual data buffer for that (#320308).
20978           
20979 2005-10-31  Andy Wingo  <wingo@pobox.com>
20980
20981         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
20982         (gst_videomixer_pad_link): Kill some memleaks.
20983         (gst_videomixer_pad_get_property): Style fix.
20984         (gst_videomixer_pad_set_property): Style fix.
20985         (gst_videomixer_pad_init): Style fix.
20986         (gst_videomixer_update_queues): Kill memleak.
20987         (gst_videomixer_loop): Kill memleak.
20988         (gst_videomixer_collected): Kill memleak.
20989
20990 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
20991
20992         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
20993         gst_auparse_change_state:
20994         Just some cleanup.
20995
20996 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
20997
20998         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
20999         Add checks to GST_FLOW_NOT_LINKED for values returned
21000         from gst_pad_push.
21001         
21002 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21003
21004         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
21005         (gst_rtpg711dec_process):
21006         * gst/rtp/gstrtpgsmenc.c:
21007         Payloader now sets some default caps on the srcpad if caps on the sinkpad
21008         are never set. This is important for the g711 to work with burger's rtpbin
21009         element.
21010
21011 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
21012
21013         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
21014         (gst_speexenc_push_buffer):
21015         Add checks for return values from gst_pad_push and
21016         gst_pad_alloc_buffer.
21017
21018 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
21019
21020         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21021
21022         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21023         (gst_matroska_demux_parse_info),
21024         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
21025         (gst_matroska_demux_parse_cluster):
21026         * gst/matroska/matroska-ids.h:
21027         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
21028         (gst_matroska_mux_init), (gst_matroska_mux_start),
21029         (gst_matroska_mux_create_buffer_header),
21030         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
21031         (gst_matroska_mux_get_property):
21032         * gst/matroska/matroska-mux.h:
21033           Add SimpleBlock support to matroska demuxer and muxer (part of
21034           Matroska v2). (#319731)
21035
21036 2005-10-28  Wim Taymans  <wim@fluendo.com>
21037
21038         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
21039         (gst_jpeg_dec_change_state):
21040         * ext/jpeg/gstjpegdec.h:
21041         Cleanups. Don't create caps for every chain.
21042
21043 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
21044
21045         * gst/law/alaw-encode.c: (gst_alawenc_init),
21046         (alawenc_setcaps), (gst_alawenc_chain)
21047         * gst/law/alaw-encode.h:
21048         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
21049         (mulawenc_setcaps), (gst_mulawenc_chain)
21050         * gst/law/mulaw-encode.h:
21051         Set timestamp on buffer and it allows RTP G711 elements
21052         work properly.
21053
21054 2005-10-27  Wim Taymans  <wim@fluendo.com>
21055
21056         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21057         Set correct format on oss instead of a silly value. 
21058
21059 2005-10-27  Julien MOUTTE  <julien@moutte.net>
21060
21061         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21062         (gst_video_box_transform_caps), (gst_video_box_set_caps),
21063         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
21064         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
21065         I420 rendering as well, doesn't bring much for my platform.
21066         Might help on some other platforms.
21067
21068 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21069
21070         * gst/rtp/gstrtpgsmenc.c:
21071         * gst/rtp/gstrtpgsmparse.c:
21072         Declaring the padtemplate correctly.
21073
21074 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21075
21076         * gst/rtp/gstrtpg711dec.c:
21077         * gst/rtp/gstrtpg711enc.c:
21078         * gst/rtp/gstrtpgsmenc.c:
21079         * gst/rtp/gstrtpgsmparse.c:
21080         Setting the proper copyright notice.
21081
21082 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21083
21084         * gst/videobox/Makefile.am: Use liboil.
21085         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21086         (gst_video_box_set_property), (gst_video_box_transform_caps),
21087         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
21088         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
21089         using liboil. Will dot the same to I420 border generation
21090         tomorrow.
21091
21092 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21093
21094         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
21095         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21096         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21097         * gst/rtp/gstrtpg711dec.h:
21098         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21099         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21100         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21101         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21102         (gst_rtpgsmenc_handle_buffer):
21103         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21104         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21105         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21106         * gst/rtp/gstrtpgsmparse.h:
21107         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21108         inherits from the basertpdepayloader.
21109
21110 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21111
21112         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21113         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21114         (gst_video_box_ayuv): Removing this forgotten debug.
21115
21116 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21117
21118         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21119         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21120         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21121
21122 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21123
21124         * sys/oss/gstossaudio.c:
21125         * sys/oss/gstossdmabuffer.c:
21126         * sys/oss/gstosshelper.c:
21127         * sys/oss/gstossmixer.c:
21128         * sys/oss/gstossmixerelement.c:
21129         * sys/oss/gstossmixertrack.c:
21130         * sys/oss/gstosssink.c:
21131         * sys/oss/gstosssrc.c:
21132           Actually use the 'oss' debug category we register.
21133
21134 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21135
21136         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21137         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21138         Use gst_pad_get_parent and drop the ref that was added through
21139         that call.
21140
21141 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21142
21143         * gst/rtp/gstrtpgsmenc.c:
21144           Fix compilation
21145
21146 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21147
21148         * gst/rtp/gstrtpg711dec.c
21149         Just removed a couple of lines of weird code used during
21150         development/test time.
21151
21152 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21153
21154         * gst/rtp/Makefile.am
21155         * gst/rtp/gstrtp.c
21156         * gst/rtp/gstrtpg711enc.c
21157         * gst/rtp/gstrtpg711enc.h
21158         * gst/rtp/gstrtpg711dec.c
21159         * gst/rtp/gstrtpg711dec.h
21160         Created G711 payloader and depayloader (it supports mulaw and alaw
21161         (dec)encoders)
21162
21163 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21164
21165         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21166         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21167         Doh ! I introduced wingo's bug again ! Sorry...
21168
21169 2005-10-25  Christian Schaller <christian@fluendo.com> 
21170
21171         * gst/rtp/Makefile.am: add missing header files for disting
21172
21173 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21174
21175         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21176         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21177         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21178         (gst_rtpgsmenc_handle_buffer):
21179         * gst/rtp/gstrtpgsmenc.h:
21180         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21181         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21182         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21183         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21184         * gst/rtp/gstrtpgsmparse.h:
21185         Getting the GSM (de)payloader working and compatible with our plans for RTP.
21186
21187 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21188
21189         * ext/libpng/gstpngdec.c: (user_info_callback),
21190         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21191         a newsegment event, move some redundant code in a single place.
21192
21193 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21194
21195         * ext/libpng/gstpngdec.c: (user_info_callback),
21196         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21197         hack to get correct colors order when we have a png image with
21198         alpha channel.
21199
21200 2005-10-24  Edward Hervey  <edward@fluendo.com>
21201
21202         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
21203         Call gst_element_no_more_pads when there will be no more pads.
21204
21205 2005-10-24  Wim Taymans  <wim@fluendo.com>
21206
21207         * gst/rtp/Makefile.am:
21208         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21209         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21210         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21211         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21212         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21213         (gst_asteriskh263_plugin_init):
21214         * gst/rtp/gstasteriskh263.h:
21215         * gst/rtp/gstrtp.c: (plugin_init):
21216         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21217         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21218         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21219         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21220         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21221         (gst_rtph263enc_plugin_init):
21222         * gst/rtp/gstrtph263enc.h:
21223         Added two new payloaders, an RFC 2190 payloader for h263 and
21224         a payload convertor for an asterisk server.
21225
21226 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21227
21228         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21229           Set bytes_per_sample correctly (is not always 4, but 
21230           depends on width and number of channels).
21231
21232 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21233
21234         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21235         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21236         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21237         (gst_flacenc_sink_event), (gst_flacenc_chain),
21238         (gst_flacenc_set_property), (gst_flacenc_get_property),
21239         (gst_flacenc_change_state):
21240         * ext/flac/gstflacenc.h:
21241           Fix seeking, so that flacenc can rewrite the header with the
21242           correct duration and amount of samples and all that at EOS;
21243           also set timestamps and granulepos on outgoing buffers; add
21244           debug category; fix state change function.
21245           
21246 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21247
21248         * gst/videomixer/videomixer.c: Don't restrict video geometry
21249         from 16 to 4096.
21250
21251 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21252
21253         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21254         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21255         Fix caps negotiation correctly, add debugging category.
21256
21257 2005-10-24  Christian Schaller  <christian@fluendo.com>
21258
21259         * configure.ac: Port over Thomas's change from base listing all plugins
21260
21261 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21262
21263         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21264         a sink pad.
21265
21266 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21267
21268         * configure.ac:
21269         * docs/upload.mak:
21270           back to HEAD
21271
21272 === release 0.9.4 ===
21273
21274 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21275
21276         * configure.ac:
21277           Releasing 0.9.4, "Dromiceiomimus"
21278
21279 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
21280
21281         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21282         (gst_speexenc_src_query):
21283           Add position and duration query, fix query type function.
21284           
21285         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21286         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21287           Let's not set non-fixed caps on source pads.
21288
21289 2005-10-21  Wim Taymans  <wim@fluendo.com>
21290
21291         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21292         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21293         (gst_avi_demux_handle_seek):
21294         Set correct stream_time in newsegment event.
21295         avi can also handle a duration query now.
21296
21297 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21298
21299         * gst/matroska/matroska-demux.c:
21300         (gst_matroska_demux_handle_src_query),
21301         (gst_matroska_demux_handle_seek_event),
21302         (gst_matroska_demux_loop_stream_parse_id):
21303           Fix duration query; fix basetime in newsegment event after
21304           seek; fix duration in initial newsegment event.
21305
21306         * gst/matroska/matroska-mux.c:
21307         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21308           Extract number of channels and samplerate from vorbis headers;
21309           add some debug messages when querying the durations of the
21310           input streams.
21311
21312 2005-10-20  Wim Taymans  <wim@fluendo.com>
21313
21314         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21315         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21316         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21317         Set stream time correctly in newsegment.
21318
21319 2005-10-20  Wim Taymans  <wim@fluendo.com>
21320
21321         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21322         Correctly fill in the stream time.
21323
21324 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21325
21326         * check/elements/level.c: (GST_START_TEST):
21327         * gst/level/gstlevel.c: (gst_level_message_new):
21328         * gst/level/level-example.c: (message_handler):
21329           use ELEMENT messages instead
21330
21331 2005-10-19  Wim Taymans  <wim@fluendo.com>
21332
21333         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21334         (gst_dvdemux_src_query):
21335         * ext/flac/gstflacdec.c: (gst_flacdec_length),
21336         (gst_flacdec_src_query):
21337         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21338         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21339         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21340         * gst/debug/gstnavseek.c: (gst_navseek_seek):
21341         * gst/debug/progressreport.c: (gst_progress_report_report):
21342         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21343         * gst/matroska/matroska-demux.c:
21344         (gst_matroska_demux_handle_src_query):
21345         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21346         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21347         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21348         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21349         (gst_wavparse_srcpad_event):
21350         API change fix.
21351
21352 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21353
21354         * gst/goom/filters.c:
21355         * gst/goom/graphic.h:
21356         * gst/goom/lines.c:
21357           Make inline functions either 'static inline' or 'extern inline',
21358           otherwise the Forte compiler apparently won't inline them (#317300).
21359
21360 2005-10-19  Julien MOUTTE  <julien@moutte.net>
21361
21362         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21363         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21364         (user_info_callback), (user_endrow_callback), (user_end_callback),
21365         (user_read_data), (gst_pngdec_caps_create_and_set),
21366         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21367         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21368         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21369         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21370         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21371         very nice and handle push/pull based model. if you have filesrc
21372         connected to it, it will do random access to load the png file.
21373         If you have a network source that can't do _getrange, it does 
21374         progressive loading through the chain function.
21375         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21376         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21377         thanks to Master Wim Taymans ;-)
21378
21379 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
21380
21381         * gst/matroska/Makefile.am:
21382         * gst/matroska/ebml-read.c:
21383         * gst/matroska/ebml-read.h:
21384         * gst/matroska/matroska-demux.c:
21385         * gst/matroska/matroska-demux.h:
21386         * gst/matroska/matroska.c: (plugin_init):
21387           Ported matroska demuxer to 0.9.
21388
21389 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
21390
21391         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21392
21393         * gst/matroska/matroska-mux.c:
21394         (gst_matroska_mux_video_pad_setcaps),
21395         (gst_matroska_mux_audio_pad_setcaps):
21396           Fix mpeg4 input handling (#318847); also, while we're at it,
21397           fix media type for Motion-JPEG: should be image/jpeg.
21398
21399 2005-10-18  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         Fix for segment-start/stop API change.
21405
21406 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21407
21408         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21409         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21410         way.
21411
21412 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21413
21414         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21415         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21416         output declared in transform_caps.
21417
21418 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21419
21420         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21421
21422 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21423
21424         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21425         (gst_video_box_get_unit_size): Fix wrong size calculations and
21426         implement get_unit_size correctly.
21427
21428 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
21429
21430         * configure.ac:
21431           Enable flx plugin.
21432
21433         * gst/flx/gstflxdec.c: (flx_decode_chunks):
21434           Fix gcc4 signedness issue.
21435
21436 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21437
21438         * configure.ac: Adding videomixer.
21439         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21440         (user_read_data), (gst_pngdec_chain): More debugging.
21441         * gst/alpha/Makefile.am: Adding alphacolor
21442         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21443         (gst_alpha_color_class_init), (gst_alpha_color_init),
21444         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21445         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21446         (plugin_init): Ported to 0.9 using in place base tranform.
21447         * gst/videomixer/Makefile.am:
21448         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21449         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21450         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21451         (gst_videomixer_pad_init), (gst_videomixer_class_init),
21452         (gst_videomixer_init), (gst_videomixer_getcaps),
21453         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21454         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21455         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21456         to 0.9 using collectpads.
21457
21458 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
21459
21460         * configure.ac:
21461         * gst/flx/Makefile.am:
21462         * gst/flx/gstflxdec.c: (gst_flxdec_init),
21463         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21464         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21465         * gst/flx/gstflxdec.h:
21466         flx plugin ported to 0.9
21467
21468 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21469
21470         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21471           use new gst_version_string()
21472
21473 2005-10-16  Andy Wingo  <wingo@pobox.com>
21474
21475         * configure.ac: GLIB_CHECK.
21476
21477 2005-10-15  Julien MOUTTE  <julien@moutte.net>
21478
21479         * ext/libpng/Makefile.am:
21480         * ext/libpng/gstpng.c: (plugin_init):
21481         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21482         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21483         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21484
21485 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
21486
21487         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21488
21489         * configure.ac:
21490         * gst/matroska/Makefile.am:
21491         * gst/matroska/ebml-ids.h:
21492         * gst/matroska/ebml-write.c:
21493         * gst/matroska/ebml-write.h:
21494         * gst/matroska/matroska-ids.h:
21495         * gst/matroska/matroska-mux.c:
21496         * gst/matroska/matroska-mux.h:
21497         * gst/matroska/matroska.c: (plugin_init):
21498           Port matroska muxer to 0.9 (#318847).
21499
21500 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21501
21502         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21503         (comment_init), (comment_add):
21504           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21505           use GST_READ_UINT32_LE() and friends rather than the private
21506           implementation of those same macros.
21507
21508 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21509
21510         * examples/stats/mp2ogg.c:
21511           more typo fixes
21512
21513 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21514
21515         * examples/indexing/indexmpeg.c: (main):
21516         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21517         (gst_esdmon_close_audio), (gst_esdmon_change_state):
21518         * ext/esd/esdmon.h:
21519         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21520         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21521         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21522         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21523         * gst/avi/gstavimux.c: (gst_avimux_init):
21524         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21525         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21526         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21527         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21528         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21529         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21530         * gst/oldcore/gstmultifilesrc.h:
21531         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21532         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21533         (gst_pipefilter_change_state):
21534         * gst/oldcore/gstpipefilter.h:
21535         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21536         * gst/videomixer/videomixer.c: (gst_videomixer_init):
21537         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21538         * sys/osxaudio/gstosxaudiosink.h:
21539         * sys/osxaudio/gstosxaudiosrc.h:
21540           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21541           moved bitshift from macro to enum definition
21542
21543 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21544
21545         * ext/Makefile.am:
21546         * ext/cairo/Makefile.am:
21547         * ext/cairo/gstcairo.c: (plugin_init):
21548         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21549         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21550         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21551         * ext/cairo/gsttimeoverlay.h:
21552           update of cairo-based timeoverlay to 1.0 Cairo API
21553           doesn't work yet for resizing of output sink
21554
21555 2005-10-11  Wim Taymans  <wim@fluendo.com>
21556
21557         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21558         newsegment API fix.
21559
21560 2005-10-11  Wim Taymans  <wim@fluendo.com>
21561
21562         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21563         (gst_dvdemux_demux_frame):
21564         * ext/flac/gstflacdec.c: (gst_flacdec_write):
21565         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21566         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21567         (gst_avi_demux_handle_seek):
21568         * gst/goom/gstgoom.c: (gst_goom_event):
21569         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21570         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21571         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21572         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21573         (gst_wavparse_srcpad_event):
21574         newsegment API update.
21575
21576 2005-10-11  Andy Wingo  <wingo@pobox.com>
21577
21578         * ext/speex/gstspeexenc.c: Signedness cleanups.
21579
21580 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
21581
21582         * PORTED_09:
21583         * ext/speex/Makefile.am:
21584         * ext/speex/gstspeex.c:
21585         * ext/speex/gstspeexenc.c:
21586         Speexenc ported to 0.9
21587
21588 2005-10-10  Wim Taymans  <wim@fluendo.com>
21589
21590         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21591         (gst_oss_sink_init), (gst_oss_sink_set_property),
21592         (gst_oss_sink_get_property), (gst_oss_sink_open),
21593         (gst_oss_sink_prepare), (gst_oss_sink_reset):
21594         * sys/oss/gstosssink.h:
21595         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21596         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21597         (gst_oss_src_prepare):
21598         Cleanups, make device configurable in the sink, handle and report
21599         errors.
21600
21601 2005-10-10  Wim Taymans  <wim@fluendo.com>
21602
21603         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21604         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21605         Make sure element is NULL before removing from the bin.
21606
21607 2005-10-07  Andy Wingo  <wingo@pobox.com>
21608
21609         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21610         block forever in a read().
21611         (gst_dv1394src_bus_reset): Post a message when the cable is
21612         unplugged.
21613         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21614         (gst_dv1394src_bus_reset): Don't unref the message.
21615
21616         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21617         hacking. The only change should be that the state change stuff was
21618         put into basesrc's start() and stop() routines, which coalesces
21619         some steps.
21620
21621 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
21622
21623         * configure.ac:
21624           Add check for mmap
21625           
21626         * gst/debug/Makefile.am:
21627           Only compile efence plugin on systems that have mmap.
21628
21629 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
21630
21631         * gst/debug/Makefile.am:
21632         * gst/debug/breakmydata.c:
21633         * gst/debug/gstdebug.c:
21634         * gst/debug/gstnavigationtest.c:
21635         * gst/debug/gstnavseek.c: 
21636         * gst/debug/gstnavseek.h:
21637         * gst/debug/progressreport.c: 
21638         * gst/debug/testplugin.c:
21639           Port progressreport, navseek, navigationtest, testsink and
21640           breakmydata.
21641
21642 2005-10-05  Edward Hervey  <edward@fluendo.com>
21643
21644         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21645         (gst_dvdemux_src_query):
21646         Fixes for better conversion
21647
21648 2005-10-04  Michael Smith <msmith@fluendo.com>
21649
21650         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21651         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21652         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21653         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21654           Set state of elements to NULL before removing from bins.
21655           Set state of test element to NULL if we failed to move it to READY
21656
21657 2005-10-04  Edward Hervey  <edward@fluendo.com>
21658
21659         * ext/dv/Makefile.am:
21660         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
21661         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21662         Corrected the query function for position so it doesn't forget what
21663         format was asked, and calls the conversion functions on the correct pad.
21664
21665 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21666
21667         * configure.ac:
21668           back to development
21669
21670 === release 0.9.3 ===
21671
21672 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21673
21674         * configure.ac:
21675           Releasing 0.9.3, "Aramis"
21676
21677 2005-10-03  Andy Wingo  <wingo@pobox.com>
21678
21679         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21680         error returns.
21681
21682 2005-10-02  Andy Wingo  <wingo@pobox.com>
21683
21684         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21685
21686         * ext/flac/gstflacenc.c: Ported to 0.9.
21687
21688         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21689
21690         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21691         and link to gsttagedit. Enable flacenc.
21692
21693         * ext/flac/gstflacdec.c: Re-enable tag reading.
21694
21695 2005-09-30  Wim Taymans  <wim@fluendo.com>
21696
21697         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21698         * gst/rtp/gstrtpgsmparse.c:
21699         * gst/rtp/gstrtph263penc.c:
21700         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21701         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21702         (gst_rtpmp4venc_set_property):
21703         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21704         Various class and caps fixes from Andre Magalhaes (andrunko)
21705
21706 2005-09-29  Wim Taymans  <wim@fluendo.com>
21707
21708         * gst/level/level-example.c: (main):
21709         Update for new bus API.
21710
21711 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
21712
21713         * configure.ac:
21714           Fix unexpanded autoconf macro GST_DOC, which has been renamed
21715           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21716
21717 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
21718
21719         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21720           Fix playback of mono streams (bytes_per_sample should be set
21721           from the sample width and the number of channels negotiated,
21722           and not just be set to 4) (#317338)
21723
21724 2005-09-26  Wim Taymans  <wim@fluendo.com>
21725
21726         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21727         (gst_rtpmpaenc_handle_buffer):
21728         Set buffer duration correctly.
21729
21730 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
21731
21732         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21733         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21734         (gst_avi_demux_change_state):
21735           Don't crash when encountering a stream with an unknown fourcc or
21736           codec id. Instead, create a pad of type video/x-avi-unknown or
21737           audio/x-avi-unknown, which as a side-effect also results in less
21738           confusing error messages in players ('no decoder' vs. 'no streams');
21739           minor fixes to state change function and class_init function.
21740
21741 2005-09-24  Wim Taymans  <wim@fluendo.com>
21742
21743         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21744         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21745         These are sinks.
21746
21747 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21748
21749         * check/elements/level.c: (GST_START_TEST):
21750           fix test for new GstClockTime use
21751         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21752         (gst_level_transform_ip):
21753         * gst/level/gstlevel.h:
21754           fix up the decay peak, ensuring the decay peak is never lower
21755           than the peak for that interval
21756
21757 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21758
21759         * docs/plugins/gst-plugins-good-plugins.args:
21760         * docs/plugins/inspect/plugin-alpha.xml:
21761         * docs/plugins/inspect/plugin-rtp.xml:
21762         * gst/level/gstlevel.c: (gst_level_set_caps),
21763         (gst_level_transform_ip):
21764           updating docs
21765
21766 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21767
21768         * Makefile.am:
21769         * check/elements/level.c: (GST_START_TEST):
21770         * gst/level/Makefile.am:
21771         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21772         (gst_level_set_property), (gst_level_get_property),
21773         (gst_level_set_caps), (gst_level_message_new),
21774         (gst_level_transform_ip):
21775         * gst/level/gstlevel.h:
21776         * gst/level/level-example.c: (message_handler), (main):
21777           convert to using GstClockTime for all time values, finally.
21778
21779 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21780
21781         * gst/auparse/Makefile.am:
21782         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21783           fix up build
21784         * configure.ac:
21785         * ext/cairo/Makefile.am:
21786         * ext/dv/Makefile.am:
21787         * ext/esd/Makefile.am:
21788         * ext/flac/Makefile.am:
21789         * ext/gconf/Makefile.am:
21790         * ext/gdk_pixbuf/Makefile.am:
21791         * ext/jpeg/Makefile.am:
21792         * ext/ladspa/Makefile.am:
21793         * ext/libcaca/Makefile.am:
21794         * ext/libmng/Makefile.am:
21795         * ext/libpng/Makefile.am:
21796         * ext/mikmod/Makefile.am:
21797         * ext/pango/Makefile.am:
21798         * ext/raw1394/Makefile.am:
21799         * ext/shout2/Makefile.am:
21800         * ext/speex/Makefile.am:
21801         * gst/alpha/Makefile.am:
21802         * gst/autodetect/Makefile.am:
21803         * gst/avi/Makefile.am:
21804         * gst/cutter/Makefile.am:
21805         * gst/debug/Makefile.am:
21806         * gst/effectv/Makefile.am:
21807         * gst/flx/Makefile.am:
21808         * gst/goom/Makefile.am:
21809         * gst/interleave/Makefile.am:
21810         * gst/law/Makefile.am:
21811         * gst/matroska/Makefile.am:
21812         * gst/median/Makefile.am:
21813         * gst/monoscope/Makefile.am:
21814         * gst/multipart/Makefile.am:
21815         * gst/oldcore/Makefile.am:
21816         * gst/rtp/Makefile.am:
21817         * gst/rtsp/Makefile.am:
21818         * gst/smoothwave/Makefile.am:
21819         * gst/smpte/Makefile.am:
21820         * gst/videobox/Makefile.am:
21821         * gst/videofilter/Makefile.am:
21822         * gst/videomixer/Makefile.am:
21823         * gst/wavenc/Makefile.am:
21824         * gst/wavparse/Makefile.am:
21825         * sys/oss/Makefile.am:
21826         * sys/osxaudio/Makefile.am:
21827         * sys/osxvideo/Makefile.am:
21828           fix up GST_LIBS use
21829
21830 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21831
21832         * gst/auparse/Makefile.am:
21833         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21834           fix build of auparse
21835
21836 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21837
21838         * configure.ac:
21839         * PORTED_09:
21840         * gst/auparse/gstauparse.c:
21841         * gst/auparse/gstauparse.h:
21842         Auparse ported to 0.9.
21843
21844 2005-09-22  Wim Taymans  <wim@fluendo.com>
21845
21846         * gst/rtp/TODO:
21847         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21848         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21849         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21850         (gst_rtpmp4venc_set_property):
21851         * gst/rtp/gstrtpmp4venc.h:
21852         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21853         * gst/rtp/gstrtpmpaenc.h:
21854         Use is_filled to both check MTU and max-ptime of base class.
21855
21856 2005-09-22  Wim Taymans  <wim@fluendo.com>
21857
21858         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21859         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21860         (gst_rtpmp4venc_set_property):
21861         Don't fragment packets with multiple frames.
21862
21863 2005-09-22  Wim Taymans  <wim@fluendo.com>
21864
21865         * gst/rtp/TODO:
21866         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21867         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21868         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21869         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21870         (gst_rtpmp4venc_get_property):
21871         * gst/rtp/gstrtpmp4venc.h:
21872         Remove g_print.
21873         Update TODO
21874         Make payload encoder a bit smarter and more correct with
21875         timestamps.
21876         Added option in payloader to include config string in-band.
21877
21878 2005-09-21  Wim Taymans  <wim@fluendo.com>
21879
21880         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21881         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21882         (gst_rtspsrc_send):
21883         Strip spaces for key/value pairs.
21884
21885 2005-09-21  Wim Taymans  <wim@fluendo.com>
21886
21887         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21888         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21889         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21890         (gst_rtspsrc_change_state):
21891         More SDP parsing and caps setting.
21892         Do NO_PREROLL differently.
21893         add pads only after negotiated.
21894
21895         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21896         (gst_udpsrc_getcaps):
21897         Implement the getcaps function.
21898
21899 2005-09-21  Wim Taymans  <wim@fluendo.com>
21900
21901         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21902         (gst_rtpamrdec_chain):
21903         Handle multiple AMr packets per payload. Handle CRC and
21904         parse ILL/ILP.
21905
21906         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21907         Make caps params strings for easy SDP mapping.
21908         
21909         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
21910         Handle capsnego better.
21911
21912         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21913         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
21914         Generate and parse config string in the caps.
21915
21916 2005-09-21  Wim Taymans  <wim@fluendo.com>
21917
21918         * gst/rtp/README:
21919         Update README
21920
21921         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
21922         Make extra params as strings.
21923
21924         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
21925         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21926         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
21927         Make state change return NO_PREROLL as this is a live
21928         source.
21929
21930         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21931         Don't unref old caps when NULL.
21932
21933 2005-09-20  Wim Taymans  <wim@fluendo.com>
21934
21935         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
21936         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21937         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
21938         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
21939         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
21940         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
21941         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
21942         * gst/rtsp/sdpmessage.h:
21943         Add URI handler.
21944         Parse SDP and create caps.
21945
21946 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
21947
21948         * gst/alpha/gstalpha.c:
21949           fix element description
21950
21951 2005-09-19  Wim Taymans  <wim@fluendo.com>
21952
21953         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
21954         Don't check payload for now.
21955
21956 2005-09-19  Wim Taymans  <wim@fluendo.com>
21957
21958         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
21959         (gst_wavparse_init), (gst_wavparse_parse_file_header),
21960         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
21961         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21962         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21963         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
21964         (gst_wavparse_change_state):
21965         * gst/wavparse/gstwavparse.h:
21966         Fix wavparse some more.
21967
21968 2005-09-19  Wim Taymans  <wim@fluendo.com>
21969
21970         * check/elements/level.c: (GST_START_TEST):
21971         Fix for bus API change.
21972
21973 2005-09-19  Wim Taymans  <wim@fluendo.com>
21974
21975         * gst/level/level-example.c: (main):
21976         Fix for new bus API.
21977
21978         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21979         Set caps on pads.
21980
21981 2005-09-15  Wim Taymans  <wim@fluendo.com>
21982
21983         * gst/rtp/Makefile.am:
21984         * gst/rtp/README:
21985         * gst/rtp/gstrtp.c: (plugin_init):
21986         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
21987         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
21988         (gst_rtpamrdec_change_state):
21989         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
21990         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
21991         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
21992         * gst/rtp/gstrtpamrenc.h:
21993         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21994         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
21995         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
21996         * gst/rtp/gstrtpgsmenc.h:
21997         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
21998         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
21999         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
22000         (gst_rtpgsmparse_change_state):
22001         * gst/rtp/gstrtpgsmparse.h:
22002         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
22003         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
22004         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
22005         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
22006         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
22007         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
22008         * gst/rtp/gstrtph263penc.h:
22009         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
22010         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
22011         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22012         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
22013         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
22014         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
22015         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
22016         * gst/rtp/gstrtpmp4venc.h:
22017         * gst/rtp/gstrtpmpadec.c:
22018         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
22019         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
22020         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
22021         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
22022         * gst/rtp/gstrtpmpaenc.h:
22023         Updates to payloader/depayloaders, make payloaders use
22024         the base classes.
22025         Updated README with suggested RTP caps and how to convert
22026         to/from SDP.
22027         Added config descriptor in mp4v payloader.
22028
22029 2005-09-15  Andy Wingo  <wingo@pobox.com>
22030
22031         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
22032         * gst/autodetect/gstautovideosink.c
22033         (gst_auto_video_sink_find_best): Update for new registry API.
22034
22035 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22036
22037         * common/c-to-xml.py:
22038         * common/gtk-doc-plugins.mak:
22039           a simple py script to generate valid xml from a C example
22040           probably also need to strip an MIT license when we decide
22041         * docs/plugins/Makefile.am:
22042         * gst/level/Makefile.am:
22043         * gst/level/gstlevel.c: (gst_level_init):
22044         * gst/level/level-example.c: (message_handler), (main):
22045           add an example to level that will show up in the docs
22046         * gst/rtp/TODO:
22047           add a note for the future
22048
22049 2005-09-14  Michael Smith <msmith@fluendo.com>
22050
22051         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
22052           Actually define the debug object being used in wavenc. Fixes #316205
22053
22054 2005-09-14  Michael Smith <msmith@fluendo.com>
22055
22056         * gst/smpte/Makefile.am:
22057           Link against GST_BASE_LIBS, to get it linked against libgstbase;
22058           needed to build on windows (bug 316204)
22059
22060 2005-09-12  Andy Wingo  <wingo@pobox.com>
22061
22062         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
22063
22064 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22065
22066         * configure.ac:
22067         * gst/fdsrc/Makefile.am:
22068         * gst/fdsrc/gstfdsrc.c:
22069         * gst/fdsrc/gstfdsrc.h:
22070           Move fdsrc back into gstreamer core elements.
22071
22072         * gst/level/gstlevel.c: (gst_level_class_init),
22073         (gst_level_transform_ip):
22074         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
22075           Basetransform changes.
22076
22077 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22078
22079         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
22080         * ext/jpeg/smokecodec.c: (find_best_size):
22081           fix compiler warnings
22082
22083 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22084
22085         * gst-plugins-good.spec.in:
22086           spec file fixes
22087         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
22088         (gst_multiudpsink_render), (gst_multiudpsink_add),
22089         (gst_multiudpsink_clear):
22090           it actually helps to actually stream if we hook up the
22091           "add" signal to an actual implementation
22092         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
22093           some debugging
22094
22095 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
22096
22097         * ext/jpeg/Makefile.am:
22098         * ext/jpeg/gstjpeg.c
22099         * ext/jpeg/gstjpegenc.c:
22100         * ext/jpeg/gstsmokeenc.c:
22101
22102 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22103
22104         * ext/flac/gstflacdec.c:
22105         * ext/flac/gstflacenc.c:
22106         * ext/flac/gstflactag.c:
22107         * ext/speex/gstspeexenc.c:
22108           gsttaginterface.h -> gsttagsetter.h
22109
22110 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22111
22112         * configure.ac:
22113         * gst/debug/Makefile.am:
22114         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22115         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22116         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22117         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22118         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22119           Port to 0.9 and re-enable efence plugin.
22120
22121 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
22122
22123         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22124         (gst_flacdec_write), (gst_flacdec_convert_src):
22125         * ext/flac/gstflacdec.h:
22126           Add support for flac files with 24/32 bits per sample; and misc.
22127           minor clean-ups. Seeking is still partly broken (for me at least).
22128
22129 2005-09-06  Wim Taymans  <wim@fluendo.com>
22130
22131         * gst/rtp/Makefile.am:
22132         * gst/rtp/gstrtp.c: (plugin_init):
22133         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22134         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22135         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22136         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22137         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22138         (gst_rtpmp4vdec_plugin_init):
22139         * gst/rtp/gstrtpmp4vdec.h:
22140         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22141         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22142         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22143         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22144         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22145         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22146         * gst/rtp/gstrtpmp4venc.h:
22147         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22148         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22149         Added mpeg4 video payload encoder/decoder.
22150         Added some docs in mpa payloader.
22151
22152 === release 0.9.1 ===
22153
22154 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22155
22156         * NEWS:
22157         * README:
22158         * RELEASE:
22159         * autogen.sh:
22160         * configure.ac:
22161           releasing 0.9.1, "Blondie"
22162
22163 2005-09-05  Andy Wingo  <wingo@pobox.com>
22164
22165         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22166         here from the state change handler, so we fire signals without
22167         holding the state lock.
22168
22169 2005-09-02  Andy Wingo  <wingo@pobox.com>
22170
22171         * All plugins updated for element state changes.
22172
22173 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22174
22175         * Makefile.am:
22176         * check/.cvsignore:
22177         * check/Makefile.am:
22178         * check/elements/.cvsignore:
22179         * check/elements/level.c: (setup_level), (cleanup_level),
22180         (GST_START_TEST), (level_suite), (main):
22181           add a test for level
22182         * common/release.mak:
22183           move the enum checking to release.mak
22184         * configure.ac:
22185           add valgrind and check checking
22186         * gst/level/gstlevel.c: (gst_level_transform):
22187         * gst/level/gstlevel.h:
22188           fix Andy's cast bug
22189           convert a field to int
22190           fix the arithmetic to int when checking for emit so that a
22191           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22192
22193 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22194
22195         * Makefile.am:
22196         * configure.ac:
22197           add docs to build
22198         * common/plugins.xsl:
22199           wrap Description into a refsect2
22200         * docs/Makefile.am:
22201         * docs/plugins/Makefile.am:
22202         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22203         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22204         * gst/goom/Makefile.am:
22205         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22206         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22207         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22208         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22209         (gst_goom_change_state):
22210         * gst/goom/gstgoom.h:
22211           GstGOOM -> GstGoom
22212           add an example launch line
22213         * gst/level/gstlevel.h:
22214         * gst/monoscope/gstmonoscope.c:
22215           cleanups
22216
22217 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22218
22219         * configure.ac:
22220         * docs/plugins/Makefile.am:
22221         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22222         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22223         * docs/plugins/gst-plugins-good-plugins.types:
22224           document elements and plugins.  Shazam !
22225
22226 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22227
22228         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
22229           be found under doc/random/ChangeLog-0.8