gst/audiofx/: Implement a base class for generic audio FIR filters.
[platform/upstream/gstreamer.git] / ChangeLog
1 2009-01-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/audiofx/Makefile.am:
4         * gst/audiofx/audiofxbasefirfilter.c:
5         (gst_audio_fx_base_fir_filter_dispose),
6         (gst_audio_fx_base_fir_filter_base_init),
7         (gst_audio_fx_base_fir_filter_class_init),
8         (gst_audio_fx_base_fir_filter_init),
9         (gst_audio_fx_base_fir_filter_push_residue),
10         (gst_audio_fx_base_fir_filter_setup),
11         (gst_audio_fx_base_fir_filter_transform),
12         (gst_audio_fx_base_fir_filter_start),
13         (gst_audio_fx_base_fir_filter_stop),
14         (gst_audio_fx_base_fir_filter_query),
15         (gst_audio_fx_base_fir_filter_query_type),
16         (gst_audio_fx_base_fir_filter_event),
17         (gst_audio_fx_base_fir_filter_set_kernel):
18         * gst/audiofx/audiofxbasefirfilter.h:
19         * gst/audiofx/audiofxbaseiirfilter.c:
20         Implement a base class for generic audio FIR filters.
21
22         * gst/audiofx/audiowsincband.c:
23         (gst_gst_audio_wsincband_mode_get_type),
24         (gst_gst_audio_wsincband_window_get_type),
25         (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
26         (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
27         (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
28         (gst_audio_wsincband_get_property):
29         * gst/audiofx/audiowsincband.h:
30         * gst/audiofx/audiowsinclimit.c:
31         (gst_audio_wsinclimit_mode_get_type),
32         (gst_audio_wsinclimit_window_get_type),
33         (gst_audio_wsinclimit_base_init),
34         (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
35         (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
36         (gst_audio_wsinclimit_set_property),
37         (gst_audio_wsinclimit_get_property):
38         * gst/audiofx/audiowsinclimit.h:
39         * tests/check/elements/audiowsincband.c: (GST_START_TEST):
40         * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
41         Use this new base class for audiowsincband and audiowsinclimit.
42         Also cleanup both elements.
43
44 2009-01-08  Michael Smith <msmith@songbirdnest.com>
45
46         * gst/qtdemux/qtdemux.c:
47           In push mode, error out if we get EOS before we've created any srcpads.
48           Handle (in pull mode) some files that have a truncated moov atom where
49           the final sub-atom is a 'free' atom and the contents of that are not
50           present in the file.
51
52 2009-01-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
53
54         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
55         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
56         Some cleanups, refactoring and minor enhancements in caps handling.
57
58         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
59         (gst_matroska_mux_init), (gst_matroska_pad_reset),
60         (gst_matroska_pad_free), (gst_matroska_mux_reset),
61         (gst_matroska_mux_video_pad_setcaps),
62         (gst_matroska_mux_request_new_pad):
63         * tests/check/elements/matroskamux.c: (teardown_src_pad):
64         Only remove, release or reset what is appropriate upon state change.
65
66 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
67
68         * ext/pulse/pulsesink.c:
69         * ext/pulse/pulsesink.h:
70         Use a mutex to protect the current stream pointer, and ignore
71         callbacks for stream objects that have been destroyed already.
72         Fixes problems with unprepare/prepare cycles caused by the input
73         caps changing, without reintroducing bug #556986.
74
75 2009-01-07  Jan Schmidt  <jan.schmidt@sun.com>
76
77         * sys/v4l2/gstv4l2src.c:
78         Remove () from translateable string, so that it makes more sense.
79
80 2009-01-07  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
81
82         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
83         Minor fix/cleanup in header field calculation.
84
85 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
86
87         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
88         (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
89         * gst/matroska/matroska-mux.h:
90         Remove internal taglist and fully use tagsetter interface.
91
92 2009-01-06  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
93
94         * gst/avi/gstavimux.c: (gst_avi_mux_reset),
95         (gst_avi_mux_riff_get_avi_header):
96         * gst/avi/gstavimux.h:
97         Ensure header size invariance during subsequent rewrite by using
98         tags snapshot.
99
100 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
101
102         * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
103         Don't wait for the pulse mainloop when destroying the stream.
104         Fixes a deadlock when the pulsedaemon goes away while pulsesink
105         is PLAYING. Fixes bug #556986.
106
107 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
108
109         Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
110                   Luotao Fu <l dot fu at pengutronix dot de>
111
112         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
113         (gst_v4l2_get_caps_info):
114         Add support for grayscale v4l2 devices. Fixes bug #566616.
115
116 2009-01-05  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
117
118         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
119         (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
120         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
121         (qtdemux_tag_add_blob), (qtdemux_parse_udta):
122         * gst/qtdemux/qtdemux.h:
123         * gst/qtdemux/quicktime.c: (plugin_init):
124         Streamline tag handling and pass unparsed tags as binary blob
125         in private tag.
126
127 2009-01-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
128
129         * gst/audiofx/Makefile.am:
130         * gst/audiofx/audiofxbaseiirfilter.c:
131         (gst_audio_fx_base_iir_filter_base_init),
132         (gst_audio_fx_base_iir_filter_dispose),
133         (gst_audio_fx_base_iir_filter_class_init),
134         (gst_audio_fx_base_iir_filter_init),
135         (gst_audio_fx_base_iir_filter_calculate_gain),
136         (gst_audio_fx_base_iir_filter_set_coefficients),
137         (gst_audio_fx_base_iir_filter_setup), (process),
138         (gst_audio_fx_base_iir_filter_transform_ip),
139         (gst_audio_fx_base_iir_filter_stop):
140         * gst/audiofx/audiofxbaseiirfilter.h:
141         Implement a base class for IIR filters.
142
143         * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
144         (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
145         (generate_coefficients), (gst_audio_cheb_band_set_property),
146         (gst_audio_cheb_band_setup):
147         * gst/audiofx/audiochebband.h:
148         * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
149         (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
150         (generate_coefficients), (gst_audio_cheb_limit_set_property),
151         (gst_audio_cheb_limit_setup):
152         * gst/audiofx/audiocheblimit.h:
153         Use the IIR filter base class for the chebyshev filters.
154
155 2009-01-02  Michael Smith <msmith@songbirdnest.com>
156
157           Patch by: Justin Karnegas <justin@affinix.com> and
158                     Michael Smith <msmith@songbirdnest.com>
159         * sys/osxaudio/gstosxaudio.c:
160         * sys/osxaudio/gstosxaudioelement.c:
161         * sys/osxaudio/gstosxaudioelement.h:
162         * sys/osxaudio/gstosxaudiosink.c:
163         * sys/osxaudio/gstosxaudiosink.h:
164         * sys/osxaudio/gstosxaudiosrc.c:
165         * sys/osxaudio/gstosxaudiosrc.h:
166         * sys/osxaudio/gstosxringbuffer.c:
167         * sys/osxaudio/gstosxringbuffer.h:
168           Rewrite osxaudio to work more flexibly and more reliably, using a
169           different abstraction layer of coreaudio that is the recommended way of
170           doing low-level audio I/O on OSX.
171           Fixes byg #564948.
172
173 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
174
175         * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
176         Add example RTP transcoding pipeline from any file decodedable with
177         uridecodebin.
178
179 2009-01-02  Wim Taymans  <wim.taymans@collabora.co.uk>
180
181         * tests/examples/rtp/.cvsignore:
182         * tests/examples/rtp/Makefile.am:
183         * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
184         * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
185         Add two C examples of using gstrtpbin as a sender and a receiver.
186
187 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
188
189         * ChangeLog:
190         Remove conflict marker from ChangeLog
191
192 2008-12-28  Edward Hervey  <edward.hervey@collabora.co.uk>
193
194         Patch by: j^ <j at oil21.org>
195
196         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
197         (qtdemux_audio_caps):
198         Add codec mapping for xvid, fmp4 and ac3 tracks.
199         Fixes #565850
200
201 2008-12-23  Wim Taymans  <wim.taymans@collabora.co.uk>
202
203         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
204         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
205         (gst_smokeenc_chain), (gst_smokeenc_change_state):
206         * ext/jpeg/gstsmokeenc.h:
207         Implement getcaps function.
208         Set caps on the pad and on all outgoing buffers.
209         Fixes #565441.
210
211 2008-12-19  Stefan Kost  <ensonic@users.sf.net>
212
213         * ext/pulse/pulsemixerctrl.c:
214           And remove temporary comment pointing to the bug ticket.
215
216         * gst/avi/gstavimux.c:
217           Move reoccuring logging to LOG and log instance too.
218
219 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
220
221         * ext/pulse/pulsemixerctrl.c:
222           Don't leak the pa_operation.
223
224 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
225
226         * configure.ac:
227           Require core cvs.
228
229 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
230
231         * gst/avi/gstavimux.c:
232           Rename api from _flush to _reset_tags. 
233
234 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
235
236         * gst/avi/gstavimux.c:
237           Use new tagsetter api to flush tags.
238
239 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
240
241         * tests/check/elements/deinterleave.c: (deinterleave_suite):
242         Increase timeout to 3 minutes to prevent timeouts.
243
244 2008-12-16  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
245
246         * tests/check/elements/interleave.c: (interleave_suite):
247         Increase timeout to 3 minutes to prevent timeouts.
248
249 2008-12-16  Stefan Kost  <ensonic@users.sf.net>
250
251         * gst/avi/gstavimux.c:
252         * gst/avi/gstavimux.h:
253           Totally remove the internal taglists and fully use tagsetter.
254
255 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
256
257         * gst/avi/gstavimux.c:
258           Instead of filtering wrongly just use the mergemode. Applications is
259           use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
260           avi for real (I hope). Everyone chime in, before I fix the others.
261
262 2008-12-15  Stefan Kost  <ensonic@users.sf.net>
263
264         * ext/pulse/pulsemixerctrl.c:
265           Add note about memleak.
266
267 2008-12-13  Edward Hervey  <bilboed@gmail.com>
268
269         * m4/Makefile.am:
270         A couple more .m4 that aren't shipped anymore with gettext 0.17.
271
272 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
273
274         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
275         (gst_flac_dec_init):
276         * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
277         (gst_alaw_dec_init):
278         * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
279         (gst_alaw_enc_init):
280         * gst/law/alaw.c: (plugin_init):
281         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
282         (gst_mulawdec_init):
283         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
284         (gst_mulawenc_init):
285         * gst/law/mulaw.c: (plugin_init):
286         Switch to using GstStaticPadTemplate.
287         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
288         Don't forget to free the addrinfo structure.
289         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
290         (gst_wavparse_sink_activate):
291         Don't forget to unref the GstAdapter.
292
293 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
294
295         * m4/Makefile.am:
296         inttypes.m4 hasn't been available since gettext-0.15, and since we now
297         require gettext >= 0.17 ... we can remove it from the list of files to
298         dist.
299
300 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
301
302         * gst/avi/gstavidemux.c:
303           More logging.
304
305         * gst/avi/gstavimux.c:
306           Handle more metadata fields. Better estimate of metadata size. Don't
307           merge received tags, if application has specified tags using
308           GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
309
310 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
311
312         * tests/check/Makefile.am:
313         Also ignore pulsemixer for the states unit test.
314
315 2008-12-09  Wim Taymans  <wim.taymans@collabora.co.uk>
316
317         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
318         Add an EOI marker at the end of the jpeg frame when it's missing.
319         Fixes #563056.
320
321 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
322
323         * tests/check/elements/videocrop.c: (check_1x1_buffer):
324         Update the unit test for the new color values for BT.601 red.
325         Fixes bug #563510.
326
327 2008-12-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
328
329         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
330           Restore previous behaviour of not passing QoS and navigation
331           events upstream, which presumably wasn't meant to be changed.
332
333 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
334
335         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
336         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
337         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
338         (gst_dvdemux_chain), (gst_dvdemux_loop),
339         (gst_dvdemux_change_state):
340         Add srcpads only when needed and remove them again when going
341         back to READY. This prevents stalled pipelines if there's no
342         audio inside the DV stream, which happens for many MXF files.
343
344 2008-12-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
345
346         * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
347         (run_server):
348         The ports in libsoup are unsigned integers and not signed
349         integers.
350
351 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
352
353         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
354         (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
355         (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
356         (gst_dvdemux_chain), (gst_dvdemux_loop),
357         (gst_dvdemux_change_state):
358         Add srcpads only when they're needed. If we add all pads in any
359         case we will get a stalling audio pad if the stream contains
360         no audio, which is the case for many MXF files.
361
362 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
363
364         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
365         Forward all events upstream unless it's something we really
366         don't handle. This fixes latency configuration of pipelines.
367
368 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
369
370         * ext/dv/gstdv.c: (plugin_init):
371         * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
372         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
373         Really call dv_init() exactly one time, not one time for
374         the demuxer and one time for the decoder.
375
376 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
377
378         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
379         Copy incomming timestamp to outgoing packets.
380
381 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
382
383         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
384         (gst_rtp_mp4v_pay_event):
385         Don't try to push packets before we could find a valid config
386         startcode. Fixes #563509.
387
388 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
389
390         Patch by: Brian Cameron <brian.cameron at sun dot com>
391
392         * sys/sunaudio/gstsunaudiomixerctrl.c:
393         (gst_sunaudiomixer_ctrl_open):
394         Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
395
396 2008-12-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
397
398         Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
399
400         * configure.ac:
401         Make usage of libv4l optional by a configure parameter.
402         Fixes bug #563504.
403
404 2008-12-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
405
406         * docs/plugins/Makefile.am:
407         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
408         * docs/plugins/gst-plugins-good-plugins-sections.txt:
409         * docs/plugins/gst-plugins-good-plugins.args:
410         * docs/plugins/gst-plugins-good-plugins.hierarchy:
411         * docs/plugins/gst-plugins-good-plugins.interfaces:
412         * docs/plugins/inspect/plugin-1394.xml:
413         * docs/plugins/inspect/plugin-aasink.xml:
414         * docs/plugins/inspect/plugin-alaw.xml:
415         * docs/plugins/inspect/plugin-alpha.xml:
416         * docs/plugins/inspect/plugin-alphacolor.xml:
417         * docs/plugins/inspect/plugin-annodex.xml:
418         * docs/plugins/inspect/plugin-apetag.xml:
419         * docs/plugins/inspect/plugin-audiofx.xml:
420         * docs/plugins/inspect/plugin-auparse.xml:
421         * docs/plugins/inspect/plugin-autodetect.xml:
422         * docs/plugins/inspect/plugin-avi.xml:
423         * docs/plugins/inspect/plugin-cacasink.xml:
424         * docs/plugins/inspect/plugin-cairo.xml:
425         * docs/plugins/inspect/plugin-cutter.xml:
426         * docs/plugins/inspect/plugin-debug.xml:
427         * docs/plugins/inspect/plugin-dv.xml:
428         * docs/plugins/inspect/plugin-efence.xml:
429         * docs/plugins/inspect/plugin-effectv.xml:
430         * docs/plugins/inspect/plugin-equalizer.xml:
431         * docs/plugins/inspect/plugin-esdsink.xml:
432         * docs/plugins/inspect/plugin-flac.xml:
433         * docs/plugins/inspect/plugin-flxdec.xml:
434         * docs/plugins/inspect/plugin-gamma.xml:
435         * docs/plugins/inspect/plugin-gconfelements.xml:
436         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
437         * docs/plugins/inspect/plugin-goom.xml:
438         * docs/plugins/inspect/plugin-goom2k1.xml:
439         * docs/plugins/inspect/plugin-halelements.xml:
440         * docs/plugins/inspect/plugin-icydemux.xml:
441         * docs/plugins/inspect/plugin-id3demux.xml:
442         * docs/plugins/inspect/plugin-interleave.xml:
443         * docs/plugins/inspect/plugin-jpeg.xml:
444         * docs/plugins/inspect/plugin-level.xml:
445         * docs/plugins/inspect/plugin-matroska.xml:
446         * docs/plugins/inspect/plugin-monoscope.xml:
447         * docs/plugins/inspect/plugin-mulaw.xml:
448         * docs/plugins/inspect/plugin-multifile.xml:
449         * docs/plugins/inspect/plugin-multipart.xml:
450         * docs/plugins/inspect/plugin-navigationtest.xml:
451         * docs/plugins/inspect/plugin-ossaudio.xml:
452         * docs/plugins/inspect/plugin-png.xml:
453         * docs/plugins/inspect/plugin-pulseaudio.xml:
454         * docs/plugins/inspect/plugin-quicktime.xml:
455         * docs/plugins/inspect/plugin-replaygain.xml:
456         * docs/plugins/inspect/plugin-rtp.xml:
457         * docs/plugins/inspect/plugin-rtsp.xml:
458         * docs/plugins/inspect/plugin-shout2send.xml:
459         * docs/plugins/inspect/plugin-smpte.xml:
460         * docs/plugins/inspect/plugin-soup.xml:
461         * docs/plugins/inspect/plugin-spectrum.xml:
462         * docs/plugins/inspect/plugin-speex.xml:
463         * docs/plugins/inspect/plugin-taglib.xml:
464         * docs/plugins/inspect/plugin-udp.xml:
465         * docs/plugins/inspect/plugin-video4linux2.xml:
466         * docs/plugins/inspect/plugin-videobalance.xml:
467         * docs/plugins/inspect/plugin-videobox.xml:
468         * docs/plugins/inspect/plugin-videocrop.xml:
469         * docs/plugins/inspect/plugin-videoflip.xml:
470         * docs/plugins/inspect/plugin-videomixer.xml:
471         * docs/plugins/inspect/plugin-wavenc.xml:
472         * docs/plugins/inspect/plugin-wavpack.xml:
473         * docs/plugins/inspect/plugin-wavparse.xml:
474         * docs/plugins/inspect/plugin-ximagesrc.xml:
475         * gst/matroska/matroska-demux.c:
476         * gst/matroska/matroska-demux.h:
477         * gst/matroska/matroska-mux.c:
478         * gst/matroska/matroska-mux.h:
479         Add documentation for matroskamux and matroskademux and
480         update the inspection xml files.
481
482 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
483
484         * configure.ac:
485         Apparently AC_CONFIG_MACRO_DIR breaks when using more
486         than one macro directory, reverting last change.
487
488 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
489
490         * configure.ac:
491         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
492         our M4 macros.
493
494 2008-11-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
495
496         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
497         Provide the parameters that are required for the format string
498         to fix a compiler warning.
499
500 2008-11-29  Stefan Kost  <ensonic@users.sf.net>
501
502         * gst/autodetect/gstautoaudiosrc.c:
503           Fix classification.
504
505 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
506
507         Patch by: Cygwin Ports maintainer
508                   <yselkowitz at users dot sourceforge dot net>
509
510         * autogen.sh:
511         * configure.ac:
512         Require gettext 0.17 because older versions don't mix with libtool
513         2.2. At build time an older gettext version will still work.
514         Fixes bug #556091.
515
516 2008-11-28  Wim Taymans  <wim.taymans@collabora.co.uk>
517
518         Patch by: Peter Kjellerstedt <pkj at axis com>
519
520         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
521         Make gst_multiudpsink_render() ignore errors from sendto() instead of
522         breaking streaming. Emit a warning instead. Fixes #562572.
523
524 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
525
526         Patch by: Ron McOuat <rmcouat at smartt dot com>
527
528         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
529         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
530         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
531         (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
532         * ext/soup/gstsouphttpsrc.h:
533         * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
534         (digest_auth_cb), (run_test), (GST_START_TEST),
535         (souphttpsrc_suite), (run_server):
536         Add support for basic and digest authentication in souphttpsrc.
537         Fixes bug #561775.
538
539 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
540
541         Patch by: Pepijn Van Eeckhoudt
542                       <pepijn dot vaneeckhoudt at luciad dot com>
543
544         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
545         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
546         * gst/wavenc/gstwavenc.h:
547         * gst/wavenc/riff.h:
548         Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
549
550 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
551
552         Patch by: 이문형 <iwings at gmail dot com>
553
554         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
555         Prevent further read/write actions taken to the connect-failed socket by
556         erroring out quickly. See #562258.
557
558 2008-11-26  Stefan Kost  <ensonic@users.sf.net>
559
560         * tests/examples/level/level-example.c:
561           Set fakesink to sync. Otherwise people might question the message
562           interval. Nevertheless the timestamp in the message is what matters.
563
564 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
565
566         * tests/icles/.cvsignore:
567         cvsignore newly generated file.
568
569 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
570
571         * gst/rtp/gstasteriskh263.c:
572         * gst/rtp/gstasteriskh263.h:
573         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
574         * gst/rtp/gstrtpL16depay.h:
575         * gst/rtp/gstrtpL16pay.c:
576         * gst/rtp/gstrtpL16pay.h:
577         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
578         * gst/rtp/gstrtpac3depay.h:
579         * gst/rtp/gstrtpamrdepay.c:
580         * gst/rtp/gstrtpamrdepay.h:
581         * gst/rtp/gstrtpamrpay.c:
582         * gst/rtp/gstrtpamrpay.h:
583         * gst/rtp/gstrtpdepay.c:
584         * gst/rtp/gstrtpdepay.h:
585         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
586         * gst/rtp/gstrtpg726depay.c:
587         * gst/rtp/gstrtpg726pay.c:
588         * gst/rtp/gstrtpg729depay.c:
589         * gst/rtp/gstrtpg729pay.c:
590         * gst/rtp/gstrtpgsmdepay.c:
591         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
592         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
593         * gst/rtp/gstrtph263depay.h:
594         * gst/rtp/gstrtph263pay.c:
595         * gst/rtp/gstrtph263pay.h:
596         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
597         * gst/rtp/gstrtph263pdepay.h:
598         * gst/rtp/gstrtph263ppay.c:
599         * gst/rtp/gstrtph263ppay.h:
600         * gst/rtp/gstrtph264depay.c:
601         * gst/rtp/gstrtph264depay.h:
602         * gst/rtp/gstrtph264pay.c:
603         * gst/rtp/gstrtph264pay.h:
604         * gst/rtp/gstrtpilbcdepay.c:
605         * gst/rtp/gstrtpilbcpay.c:
606         * gst/rtp/gstrtpjpegdepay.h:
607         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
608         * gst/rtp/gstrtpmp1sdepay.h:
609         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
610         * gst/rtp/gstrtpmp2tdepay.h:
611         * gst/rtp/gstrtpmp2tpay.c:
612         * gst/rtp/gstrtpmp2tpay.h:
613         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
614         * gst/rtp/gstrtpmp4apay.c:
615         * gst/rtp/gstrtpmp4apay.h:
616         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
617         * gst/rtp/gstrtpmp4gdepay.h:
618         * gst/rtp/gstrtpmp4gpay.c:
619         * gst/rtp/gstrtpmp4gpay.h:
620         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
621         * gst/rtp/gstrtpmp4vdepay.h:
622         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
623         * gst/rtp/gstrtpmp4vpay.h:
624         * gst/rtp/gstrtpmpadepay.c:
625         * gst/rtp/gstrtpmpadepay.h:
626         * gst/rtp/gstrtpmpapay.c:
627         * gst/rtp/gstrtpmpapay.h:
628         * gst/rtp/gstrtpmpvdepay.c:
629         * gst/rtp/gstrtpmpvdepay.h:
630         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
631         * gst/rtp/gstrtppcmapay.c:
632         * gst/rtp/gstrtppcmudepay.c:
633         * gst/rtp/gstrtppcmupay.c:
634         * gst/rtp/gstrtpspeexdepay.c:
635         * gst/rtp/gstrtpspeexpay.c:
636         * gst/rtp/gstrtpsv3vdepay.c:
637         * gst/rtp/gstrtpsv3vdepay.h:
638         * gst/rtp/gstrtptheoradepay.c:
639         * gst/rtp/gstrtptheoradepay.h:
640         * gst/rtp/gstrtptheorapay.c:
641         * gst/rtp/gstrtptheorapay.h:
642         * gst/rtp/gstrtpvorbisdepay.c:
643         * gst/rtp/gstrtpvorbisdepay.h:
644         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
645         * gst/rtp/gstrtpvorbispay.h:
646         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
647         * gst/rtp/gstrtpvrawpay.c:
648         Fix the descriptions and fix some email addresses.
649
650 2008-11-25  Julien Moutte  <julien@fluendo.com>
651
652         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
653         to supported qtdemux video codecs as I found some video clips using 
654         those.
655
656 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
657
658         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
659         * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
660         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
661         (gst_auto_video_sink_detect):
662         * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
663         Post an error when we can't set the internal ghostpad target.
664
665 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
666
667         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
668         (gst_video_crop_transform), (gst_video_crop_transform_caps),
669         (gst_video_crop_set_caps), (gst_video_crop_set_property):
670         * gst/videocrop/gstvideocrop.h:
671         Fix renegotiation when changing properties using the new basetransform
672         features. Fixes #561502.
673
674         * tests/icles/Makefile.am:
675         * tests/icles/videocrop2-test.c: (make_pipeline), (main):
676         Add crazy interactive test unit for dynamically changing properties.
677
678 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
679
680         * gst/rtsp/gstrtspsrc.c: (new_session_pad),
681         (gst_rtspsrc_parse_range):
682         Add some more debugging.
683         Use the reanges received from the server unconditionally.
684         Fixes #561625.
685
686 2008-11-23  Stefan Kost  <ensonic@users.sf.net>
687
688         * ext/pulse/pulsesink.c:
689           Change #if 0 to something more expresive and add pointer to related
690           bug ticket.
691
692 2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
693
694         Patch by: Tal Shalif <tshalif at nargila dot org>
695
696         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
697         Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
698         the latter don't exist on some systems (mingw). Fixes bug #561990.
699
700 2008-11-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
701
702         Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
703
704         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
705         Add transferMode.dnla.org header to HTTP requests as this is
706         required by the DLNA specs and doesn't hurt in other situations.
707         Fixes bug #561802.
708
709 2008-11-20  Michael Smith <msmith@songbirdnest.com>
710
711         * sys/osxvideo/osxvideosink.h:
712         * sys/osxvideo/osxvideosink.m:
713           Handle video window resizing more correctly, avoiding crashes when
714           embedding the window and resizing it.
715
716 2008-11-20  Michael Smith <msmith@songbirdnest.com>
717
718         * gst/udp/gstmultiudpsink.c:
719         * gst/udp/gstudpnetutils.c:
720         * gst/udp/gstudpnetutils.h:
721         * gst/udp/gstudpsrc.c:
722           Fix multiudpsink on OSX by passing the specific length of the socket,
723           refactor that into a function shared with the same thing in udpsrc.
724
725 2008-11-20  Wim Taymans  <wim.taymans@collabora.co.uk>
726
727         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
728         (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
729         (gst_wavparse_stream_headers):
730         Fix the scaling code.
731         Fix parsing of the INFO chunks, we were reading the wrong number of
732         bytes.  Fixes #561580.
733
734 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
735
736         * gst/matroska/matroska-mux.c:
737         Fix NULL pointer dereference of an unset codec_id in the recently 
738         added Dirac paths
739
740 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
741
742         * tests/check/Makefile.am:
743         Just keep disabling elements that hang the states test until it
744         works.
745
746 2008-11-20  Jan Schmidt  <jan.schmidt@sun.com>
747
748         * ext/libpng/gstpngenc.c:
749         Don't flush downstream after every buffer - that's not what
750         this libpng callback is for at all!
751
752 2008-11-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
753
754         * sys/v4l2/v4l2src_calls.c:
755           (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
756           (gst_v4l2src_probe_caps_for_format):
757           Turns out we don't always get the frame sizes in a predefined
758           order from lowest to highest resolution, so let's just sort the
759           list by frame size once we've queried the possible resolutions
760           rather than assume any particular order. Fixes probed caps for
761           the camera in my HP2133 mini notebook and makes v4l2src default
762           to a decent size.
763
764 2008-11-16  Edward Hervey  <edward.hervey@collabora.co.uk>
765
766         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
767         * gst/matroska/matroska-ids.h:
768         Make mkvdemux aware of E-AC3.
769
770 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
771
772         * gst/rtp/Makefile.am:
773         * gst/rtp/gstrtp.c: (plugin_init):
774         * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
775         (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
776         (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
777         (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
778         (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
779         (gst_rtp_jpeg_depay_change_state),
780         (gst_rtp_jpeg_depay_plugin_init):
781         * gst/rtp/gstrtpjpegdepay.h:
782         Add a jpeg depayloader.
783
784         * gst/rtp/gstrtpjpegpay.c:
785         Set the default properties on the payloader to better defaults.
786
787 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
788
789         * sys/v4l2/gstv4l2.c:
790           Give it a primary rank for autovideosrc.
791
792 2008-11-14  Wim Taymans  <wim.taymans@collabora.co.uk>
793
794         Patch by: Bjorn Ostby <bjornos at axis dot com>
795
796         * gst/rtp/Makefile.am:
797         * gst/rtp/gstrtp.c: (plugin_init):
798         * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
799         (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
800         (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
801         (gst_rtp_jpeg_pay_read_quant_table),
802         (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
803         (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
804         (gst_rtp_jpeg_pay_plugin_init):
805         * gst/rtp/gstrtpjpegpay.h:
806         Add JPEG payloader. Fixes #560756.
807
808 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
809
810         Patch by: Fabricio Godoy <skarllot at gmail dot com>
811
812         * sys/oss/gstosssink.c: (gst_oss_sink_open):
813         * sys/oss/gstosssrc.c: (gst_oss_src_open):
814         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
815         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
816         Fix some spelling mistakes. Fixes #556802.
817
818 2008-11-13  Stefan Kost  <ensonic@users.sf.net>
819
820         * gst/equalizer/GstIirEqualizer10Bands.prs:
821         * gst/equalizer/GstIirEqualizer3Bands.prs:
822         * gst/equalizer/Makefile.am:
823         * gst/equalizer/gstiirequalizer10bands.c:
824         * gst/equalizer/gstiirequalizer3bands.c:
825           Add presets for equalizer. Fixes #522183.
826
827 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
828
829         * gst/rtsp/Makefile.am:
830         * gst/rtsp/gstrtsp.c: (plugin_init):
831         * gst/rtsp/gstrtspgoogle.c:
832         * gst/rtsp/gstrtspgoogle.h:
833         Remove google extension again, it's not needed anymore because we never
834         send multiple transports anymore.
835
836 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
837
838         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
839
840         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
841         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
842         (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
843         (gst_rtspsrc_stream_free),
844         (gst_rtspsrc_stream_configure_udp_sinks),
845         (gst_rtspsrc_stream_configure_transport),
846         (gst_rtspsrc_send_dummy_packets),
847         (gst_rtspsrc_create_transports_string),
848         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
849         * gst/rtsp/gstrtspsrc.h:
850         Add property to configure NAT traversal method.
851         Ignore EOS from the internal sinks.
852         Implement sending dummy packets as a (simple) method to open up
853         some firewalls.
854         Send PLAY request to the server after we started the udp sources.
855         Fixes #559545.
856
857 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
858
859         Patch by: Yotam <sh dot yotam at gmail dot com>
860
861         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
862         Flush the remaining frames on EOS. Fixes #560641.
863
864 2008-11-12  Jan Schmidt  <jan.schmidt@sun.com>
865
866         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
867         Fix compiler warning about printf formatting.
868
869 2008-11-12  Andy Wingo  <wingo@pobox.com>
870
871         * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
872         * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
873         segment events instead of sending them from the seeking thread.
874         Fixes #559288.
875         (gst_qtdemux_push_pending_newsegment): New helper, sends out
876         queued newsegment events.
877         (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
878         call it here, as we only seek when looping, and only push in the
879         movie state.
880
881 2008-11-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
882
883         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
884         (qtdemux_tag_add_covr), (qtdemux_parse_udta):
885         * gst/qtdemux/qtdemux_fourcc.h:
886         * gst/qtdemux/qtdemux_types.c:
887         Add cover and alternative copyright tag, and enhance some existing
888         ones by marking them as container atoms.
889
890 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
891
892         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
893         Don't ignore the return value of setcaps.
894
895 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
896
897         Patch by: Olivier Crete <tester at tester dot ca>
898
899         * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
900         (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
901         (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
902         * gst/rtp/gstrtpg729pay.h:
903         Replace G729 payloader with an improved version. Fixes #532409.
904
905 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
906
907         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
908         (gst_rtspsrc_change_state):
909         Only send one transport at a time for improved compatibility with some
910         broken servers. See #537832.
911
912 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
913
914         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
915         (gst_rtspsrc_perform_seek):
916         Only pause/play in the seek handler when the source was playing.
917         Fixes #529379.
918
919 2008-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
920
921         * gst/matroska/matroska-mux.c:
922         (gst_matroska_mux_handle_dirac_packet):
923         Fix muxing of Dirac streams if the input already has the format
924         we need, i.e. is the output of matroskademux.
925
926 2008-11-11  Stefan Kost  <ensonic@users.sf.net>
927
928         * gst/avi/gstavimux.c:
929           Don't segfault on string typed tags being NULL. Fixes #560155.
930
931 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
932
933         * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
934         (gst_matroska_mux_audio_pad_setcaps):
935         Fix mapping AAC profile to Matroska codec id.
936
937 2008-11-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
938
939         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
940         (qtdemux_video_caps), (qtdemux_audio_caps):
941         Refactor some raw audio caps building, and handle >16-bit cases.
942         Fix/replace building caps from a string description.
943
944 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
945
946         * gst/audiofx/audiowsincband.c:
947         * gst/audiofx/audiowsinclimit.c:
948         * gst/cutter/gstcutter.c:
949           Make author name consistent with others.
950
951 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
952
953         Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
954
955         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
956         (gst_rtspsrc_stream_configure_udp_sink):
957         Pause the RTSP stream before doing a new play request.
958         Make sure that adding the udpsinks does not cause the rtspsrc to become
959         a sink. Fixes #559547.
960
961 2008-11-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
962
963         * gst/matroska/matroska-ids.h:
964         * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
965         (gst_matroska_mux_handle_dirac_packet),
966         (gst_matroska_mux_write_data):
967         Implement Dirac muxing into Matroska comforming to the spec, i.e.
968         put all Dirac packages up to a picture into a Matroska block.
969
970         TODO: Implement writing of the ReferenceBlock Matroska elements,
971         currently the Dirac muxing is only 100% correct if Matroska version 2
972         is selected for muxing.
973
974 2008-11-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
975
976         Patch by: Bastien Nocera <hadess at hadess dot net>,
977                   Hans de Goede <jwrdegoede at fedoraproject dot org>
978
979         * configure.ac:
980         * sys/v4l2/Makefile.am:
981         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
982         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
983         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
984         (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
985         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
986         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
987         (gst_v4l2_get_input), (gst_v4l2_set_input):
988         * sys/v4l2/v4l2_calls.h:
989         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
990         (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
991         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
992         (gst_v4l2src_fill_format_list),
993         (gst_v4l2src_probe_caps_for_format_and_size),
994         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
995         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
996         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
997         (gst_v4l2src_get_nearest_size):
998         Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
999
1000 2008-11-04  Stefan Kost  <ensonic@users.sf.net>
1001
1002         * ext/aalib/Makefile.am:
1003         * ext/annodex/Makefile.am:
1004         * ext/cairo/Makefile.am:
1005         * ext/dv/Makefile.am:
1006         * ext/esd/Makefile.am:
1007         * ext/flac/Makefile.am:
1008         * ext/gconf/Makefile.am:
1009         * ext/gdk_pixbuf/Makefile.am:
1010         * ext/hal/Makefile.am:
1011         * ext/jpeg/Makefile.am:
1012         * ext/ladspa/Makefile.am:
1013         * ext/libcaca/Makefile.am:
1014         * ext/libmng/Makefile.am:
1015         * ext/libpng/Makefile.am:
1016         * ext/mikmod/Makefile.am:
1017         * ext/pulse/Makefile.am:
1018         * ext/raw1394/Makefile.am:
1019         * ext/shout2/Makefile.am:
1020         * ext/soup/Makefile.am:
1021         * ext/speex/Makefile.am:
1022         * ext/taglib/Makefile.am:
1023         * ext/wavpack/Makefile.am:
1024         * gst/alpha/Makefile.am:
1025         * gst/apetag/Makefile.am:
1026         * gst/audiofx/Makefile.am:
1027         * gst/auparse/Makefile.am:
1028         * gst/autodetect/Makefile.am:
1029         * gst/avi/Makefile.am:
1030         * gst/cutter/Makefile.am:
1031         * gst/debug/Makefile.am:
1032         * gst/effectv/Makefile.am:
1033         * gst/equalizer/Makefile.am:
1034         * gst/flx/Makefile.am:
1035         * gst/goom/Makefile.am:
1036         * gst/goom2k1/Makefile.am:
1037         * gst/icydemux/Makefile.am:
1038         * gst/id3demux/Makefile.am:
1039         * gst/interleave/Makefile.am:
1040         * gst/law/Makefile.am:
1041         * gst/level/Makefile.am:
1042         * gst/matroska/Makefile.am:
1043         * gst/median/Makefile.am:
1044         * gst/monoscope/Makefile.am:
1045         * gst/multifile/Makefile.am:
1046         * gst/multipart/Makefile.am:
1047         * gst/oldcore/Makefile.am:
1048         * gst/qtdemux/Makefile.am:
1049         * gst/replaygain/Makefile.am:
1050         * gst/rtp/Makefile.am:
1051         * gst/rtsp/Makefile.am:
1052         * gst/smpte/Makefile.am:
1053         * gst/spectrum/Makefile.am:
1054         * gst/udp/Makefile.am:
1055         * gst/videobox/Makefile.am:
1056         * gst/videocrop/Makefile.am:
1057         * gst/videofilter/Makefile.am:
1058         * gst/videomixer/Makefile.am:
1059         * gst/wavenc/Makefile.am:
1060         * gst/wavparse/Makefile.am:
1061         * sys/directdraw/Makefile.am:
1062         * sys/directsound/Makefile.am:
1063         * sys/oss/Makefile.am:
1064         * sys/osxaudio/Makefile.am:
1065         * sys/osxvideo/Makefile.am:
1066         * sys/sunaudio/Makefile.am:
1067         * sys/v4l2/Makefile.am:
1068         * sys/waveform/Makefile.am:
1069         * sys/ximage/Makefile.am:
1070           Don't install static libs for plugins. Fixes #550851 for -good.
1071
1072 2008-10-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1073
1074         * ext/flac/Makefile.am:
1075         Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1076         This fixes compilation if FLAC is installed in an uncommon location
1077         that is not already handled by other CFLAGS. Fixes bug #558711.
1078
1079 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1080
1081         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1082         Guard more uncommon formats with ifdefs so that we can compile on older
1083         versions.
1084
1085 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1086
1087         Patch by: Nick Haddad <nick at haddads dot net>
1088
1089         * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1090         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1091         (gst_avi_demux_stream_data):
1092         Invert other uncompressed RGB formats. Fixes #558554.
1093
1094 2008-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
1095
1096         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1097         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1098         * gst/wavenc/gstwavenc.h:
1099         Add support for float/double as input and remove the (nowadays)
1100         useless parsing of the depth as we require width==depth.
1101
1102 2008-10-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1103
1104         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1105         * gst/rtp/gstrtpmpapay.c:
1106         Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1107         mpeg version 1. Fixes #558427.
1108
1109 2008-10-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1110
1111         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1112         (gst_rtp_L16_pay_getcaps):
1113         Only put an integral amount of samples in the RTP packet.
1114         Fixes #556641.
1115
1116 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1117
1118         * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1119         * gst/rtp/gstrtpchannels.h:
1120         Add method to get possible channel positions.
1121
1122 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1123
1124         * gst/rtp/Makefile.am:
1125         Also commit updated makefile
1126
1127 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
1128
1129         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1130         Don't allow width=32,depth=24 as input. WAV requires that the width
1131         is the next integer multiply of 8 from the depth.
1132
1133 2008-10-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1134
1135         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1136         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1137         (gst_rtp_L16_pay_getcaps):
1138         * gst/rtp/gstrtpchannels.c: (check_channels),
1139         (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1140         (gst_rtp_channels_create_default):
1141         * gst/rtp/gstrtpchannels.h:
1142         Add mappings for multichannel support. Does not completely just work
1143         because the getcaps function does not yet return the allowed channel
1144         mappings. See #556641.
1145
1146 2008-10-28  Stefan Kost  <ensonic@users.sf.net>
1147
1148         * gst/goom/Makefile.am:
1149         * gst/goom/README:
1150         * gst/goom/config_param.c:
1151         * gst/goom/convolve_fx.c:
1152         * gst/goom/drawmethods.c:
1153         * gst/goom/drawmethods.h:
1154         * gst/goom/filters.c:
1155         * gst/goom/filters_mmx.s:
1156         * gst/goom/flying_stars_fx.c:
1157         * gst/goom/goom.h:
1158         * gst/goom/goom_config.h:
1159         * gst/goom/goom_config_param.h:
1160         * gst/goom/goom_core.c:
1161         * gst/goom/goom_filters.h:
1162         * gst/goom/goom_fx.h:
1163         * gst/goom/goom_graphic.h:
1164         * gst/goom/goom_plugin_info.h:
1165         * gst/goom/goom_tools.c:
1166         * gst/goom/goom_tools.h:
1167         * gst/goom/goom_typedefs.h:
1168         * gst/goom/goom_visual_fx.h:
1169         * gst/goom/graphic.c:
1170         * gst/goom/ifs.c:
1171         * gst/goom/ifs.h:
1172         * gst/goom/lines.c:
1173         * gst/goom/lines.h:
1174         * gst/goom/mathtools.c:
1175         * gst/goom/mathtools.h:
1176         * gst/goom/mmx.c:
1177         * gst/goom/motif_goom1.h:
1178         * gst/goom/motif_goom2.h:
1179         * gst/goom/plugin_info.c:
1180         * gst/goom/ppc_drawings.h:
1181         * gst/goom/ppc_zoom_ultimate.h:
1182         * gst/goom/sound_tester.c:
1183         * gst/goom/sound_tester.h:
1184         * gst/goom/surf3d.c:
1185         * gst/goom/surf3d.h:
1186         * gst/goom/tentacle3d.c:
1187         * gst/goom/tentacle3d.h:
1188         * gst/goom/v3d.c:
1189         * gst/goom/v3d.h:
1190         * gst/goom/xmmx.c:
1191           Add license headers in all source files. Remove filter.c from
1192           EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1193           which are not used right now. Fixes #557709.
1194
1195 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1196
1197         Patch by: Olivier Crete <tester at tester dot ca>
1198
1199         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1200         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1201         Implement getcaps in rtpL16pay. Fixes #556484.
1202
1203 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1204
1205         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1206         (gst_rtp_L16_depay_process):
1207         Check if clock-rate and channels are valid.
1208         Don't ignore the return value of setcaps.
1209         No need to validate the buffer, the base class does that for us.
1210         Use the marker bit to set the DISCONT flag on outgoing buffers.
1211
1212         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1213         Don't ignore the return value of set_outcaps.
1214
1215         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1216         (gst_rtp_ac3_depay_process):
1217         Don't ignore the return value of set_caps.
1218         No need to validate the buffer, the base class does that for us.
1219
1220         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1221         (gst_rtp_amr_depay_process):
1222         * gst/rtp/gstrtpamrdepay.h:
1223         Don't ignore the return value of setcaps.
1224         No need to validate the buffer, the base class does that for us.
1225         No need to set output caps on the buffers, the base class does that for
1226         us.
1227         The subclass will make sure we are negotiated.
1228         
1229         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1230         (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1231         * gst/rtp/gstrtpdvdepay.h:
1232         Clean up caps negotiation.
1233         The subclass will make sure we are negotiated.
1234
1235         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1236         (gst_rtp_g726_depay_process):
1237         Clean up caps negotiation.
1238         Use the marker bit to set the DISCONT flag on outgoing buffers.
1239
1240         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1241         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1242         * gst/rtp/gstrtpg729depay.h:
1243         The subclass will make sure we are negotiated.
1244         Use the marker bit to set the DISCONT flag on outgoing buffers.
1245
1246         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1247         (gst_rtp_gsm_depay_process):
1248         Clean up caps negotiation.
1249         Use the marker bit to set the DISCONT flag on outgoing buffers.
1250
1251         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1252         Clean up caps negotiation.
1253         Don't ignore the return value of set_outcaps.
1254
1255         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1256         (gst_rtp_h263_depay_process):
1257         Clean up caps negotiation.
1258         No need to validate the buffer, the base class does that for us.
1259
1260         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1261         (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1262         * gst/rtp/gstrtph263pay.h:
1263         Don't ignore the return value of set_outcaps.
1264         Do some more timestamps.
1265
1266         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1267         (gst_rtp_h263p_depay_process):
1268         Clean up caps negotiation.
1269         Don't ignore the return value of setcaps.
1270         No need to validate the buffer, the base class does that for us.
1271
1272         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1273         (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1274         (gst_rtp_h263p_pay_handle_buffer):
1275         * gst/rtp/gstrtph263ppay.h:
1276         Don't ignore the return value of set_outcaps.
1277         Do some more timestamps.
1278
1279         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1280         (gst_rtp_h264_depay_process):
1281         Clean up caps negotiation.
1282         Don't ignore the return value of setcaps.
1283         Fix possible caps leak.
1284         No need to validate the buffer, the base class does that for us.
1285
1286         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1287         Add some more debug info.
1288
1289         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1290         (gst_rtp_ilbc_depay_process):
1291         Clean up caps negotiation.
1292         Use the marker bit to set the DISCONT flag on outgoing buffers.
1293
1294         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1295         Clean up caps negotiation.
1296
1297         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1298         (gst_rtp_mp1s_depay_process):
1299         Clean up caps negotiation.
1300         Don't ignore the return value of setcaps.
1301         No need to validate the buffer, the base class does that for us.
1302         No need to set caps on buffers, subclass does that for us.
1303
1304         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1305         (gst_rtp_mp2t_depay_process):
1306         Clean up caps negotiation.
1307         Don't ignore the return value of setcaps.
1308         No need to validate the buffer, the base class does that for us.
1309         No need to set caps on buffers, subclass does that for us.
1310
1311         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1312         (gst_rtp_mp4a_depay_process):
1313         Clean up caps negotiation.
1314         Don't ignore the return value of setcaps.
1315         No need to validate the buffer, the base class does that for us.
1316
1317         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1318         (gst_rtp_mp4a_pay_setcaps):
1319         Don't ignore the return value of set_outcaps.
1320
1321         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1322         (gst_rtp_mp4g_depay_process):
1323         Clean up caps negotiation.
1324         Don't ignore the return value of setcaps.
1325         No need to validate the buffer, the base class does that for us.
1326         No need to set caps on buffers, subclass does that for us.
1327
1328         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1329         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1330         Don't ignore the return value of set_outcaps.
1331
1332         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1333         (gst_rtp_mp4v_depay_process):
1334         Clean up caps negotiation.
1335         Don't ignore the return value of setcaps.
1336         No need to validate the buffer, the base class does that for us.
1337         No need to set caps on buffers, subclass does that for us.
1338
1339         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1340         (gst_rtp_mp4v_pay_setcaps):
1341         Don't ignore the return value of set_outcaps.
1342
1343         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1344         (gst_rtp_mpa_depay_process):
1345         Clean up caps negotiation.
1346         Don't ignore the return value of setcaps.
1347         No need to validate the buffer, the base class does that for us.
1348         Use the marker bit to set the DISCONT flag on outgoing buffers.
1349
1350         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1351         Don't ignore the return value of set_outcaps.
1352
1353         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1354         (gst_rtp_mpv_depay_process):
1355         Clean up caps negotiation.
1356         Actually set output caps.
1357         No need to validate the buffer, the base class does that for us.
1358
1359         * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1360         Don't ignore the return value of set_outcaps.
1361
1362         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1363         (gst_rtp_pcma_depay_process):
1364         Clean up caps negotiation.
1365         Set output buffer duration because we can.
1366         Use the marker bit to set the DISCONT flag on outgoing buffers.
1367
1368         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1369         Don't ignore the return value of set_outcaps.
1370
1371         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1372         (gst_rtp_pcmu_depay_process):
1373         Clean up caps negotiation.
1374         Use the marker bit to set the DISCONT flag on outgoing buffers.
1375
1376         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1377         Don't ignore the return value of set_outcaps.
1378
1379         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1380         (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1381         Clean up caps negotiation.
1382         Set output caps on the pad and header buffers.
1383         Set duration on output buffers because we can.
1384
1385         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1386         Don't ignore the return value of set_outcaps.
1387
1388         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1389         (gst_rtp_sv3v_depay_process):
1390         Clean up caps negotiation.
1391         No need to validate the buffer, the base class does that for us.
1392         No need to set caps out output buffers, subclass does that.
1393
1394         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1395         (gst_rtp_theora_depay_process):
1396         Don't ignore the return value of setcaps.
1397         No need to validate the buffer, the base class does that for us.
1398
1399         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1400         (gst_rtp_theora_pay_flush_packet), (encode_base64),
1401         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1402         (gst_rtp_theora_pay_handle_buffer):
1403         Don't ignore the return value of set_outcaps.
1404
1405         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1406         (gst_rtp_vorbis_depay_process):
1407         Don't ignore the return value of setcaps.
1408         No need to validate the buffer, the base class does that for us.
1409
1410         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1411         Don't ignore the return value of set_outcaps.
1412
1413         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1414         Clean up caps negotiation, don't ignore setcaps return.
1415
1416         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1417         Don't ignore the return value of set_outcaps.
1418
1419 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1420
1421         * gst/matroska/matroska-demux.c:
1422         (gst_matroska_demux_handle_src_event):
1423         Forward unknown events upstream.
1424
1425 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1426
1427         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1428         Add some refcount check
1429
1430         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1431         Don't ignore the result of write(), fixes a  compiler warning for me.
1432
1433         * tests/icles/videobox-test.c: (main):
1434         Make the output a little more pretty.
1435
1436 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1437
1438         * ext/esd/esdmon.c:
1439           Add doc blob.
1440
1441 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1442
1443         * docs/plugins/Makefile.am:
1444         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1445         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1446         * docs/plugins/gst-plugins-good-plugins.args:
1447         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1448         * docs/plugins/gst-plugins-good-plugins.interfaces:
1449         * docs/plugins/inspect/plugin-autodetect.xml:
1450           Add the docs of the new elements.
1451
1452 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1453
1454         * gst/autodetect/gstautoaudiosrc.c:
1455         (gst_auto_audio_src_class_init):
1456         * gst/autodetect/gstautovideosrc.c:
1457         (gst_auto_video_src_class_init):
1458         Fix "Since" tags in the documentation.
1459
1460 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1461
1462         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1463
1464         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1465         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1466         Add support for souphttpsrc to act as a live source. This makes it
1467         possible to get timestamped buffers in combination with the
1468         "do-timestamp" property. Fixes bug #556019.
1469
1470 2008-10-27  Stefan Kost  <ensonic@users.sf.net>
1471
1472         * gst/autodetect/Makefile.am:
1473         * gst/autodetect/gstautoaudiosink.c:
1474         * gst/autodetect/gstautoaudiosrc.c:
1475         * gst/autodetect/gstautoaudiosrc.h:
1476         * gst/autodetect/gstautodetect.c:
1477         * gst/autodetect/gstautovideosink.c:
1478         * gst/autodetect/gstautovideosrc.c:
1479         * gst/autodetect/gstautovideosrc.h:
1480           Implement src plugins. Little code/string cleanup in the sinks.
1481           Fixes #523813.
1482
1483 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1484
1485         Patch by: Peter Kjellerstedt <pkj at axis com>
1486
1487         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1488         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1489         Fix a memory leak when pads are requested but the pipeline never
1490         goes into PLAYING.
1491
1492         Correctly remove request pads, no matter if they have collected
1493         data or not.
1494
1495         Fixes bug #557710.
1496
1497 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1498
1499         Patch by: <lrn1986 at gmail dot com>
1500
1501         * gst/udp/gstudpnetutils.h:
1502         Define the correct WINVER so getaddinfo() can be used when using
1503         mingw32. Fixes bug #557294.
1504
1505 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1506
1507         Patch by: <lrn1986 at gmail dot com>
1508
1509         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1510         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1511         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1512         Fix "argument type mismatch" compiler warnings on Windows.
1513         Fixes bug #557293.
1514
1515 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1516
1517         * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1518         Don't calculate the filter coefficients for every single buffer
1519         but only when it's needed. Fixes bug #557260.
1520
1521 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
1522
1523         * configure.ac:
1524         Back to development -> 0.10.11.1
1525
1526 2008-10-25  Jan Schmidt  <jan.schmidt@sun.com>
1527
1528         * gst-plugins-good.doap:
1529         Fix version number of 0.10.11 release in doap file
1530
1531 === release 0.10.11 ===
1532
1533 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
1534
1535         * configure.ac:
1536           releasing 0.10.11, "Secondary Consideration"
1537
1538 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
1539
1540         * configure.ac:
1541         Commit 0.10.10.4 pre-release
1542
1543 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1544
1545         * gst/avi/gstavimux.c:
1546         Fix VPRP chunk setup in avimux.
1547         Fixes: #556010
1548         Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1549
1550 2008-10-21  Jan Schmidt  <jan.schmidt@sun.com>
1551
1552         * gst/videobox/gstvideobox.c:
1553         support dynamically changing properties in videobox
1554         Fixed: #557085
1555         Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1556
1557 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1558
1559         * configure.ac:
1560         0.10.10.3 pre-release
1561
1562 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1563
1564         * tests/check/Makefile.am:
1565         Don't run the states test on pulsesrc and pulsesink
1566
1567 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
1568
1569         * configure.ac:
1570         Commit 0.10.10.2 pre-release bump that actually went
1571         out on 2008-10-11
1572
1573 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1574
1575         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1576         Skip entries for streams that don't have a output pad yet, thereby
1577         avoiding calling pad functions with a NULL pad.
1578         Fixes #556424
1579
1580 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1581
1582         * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1583         * tests/check/elements/icydemux.c: (icydemux_found_pad):
1584         Remove problematic and useless refcount check.
1585         Fixes #556381
1586
1587 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1588
1589         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1590         Remove problematic and useless refcount check.
1591         Fixes #556381
1592
1593 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
1594
1595         * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1596         * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1597         Cast some size_t arguments to guint to avoid compiler
1598         warnings on 64-bit systems.
1599
1600 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
1601
1602         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1603         Return TRUE instead of FALSE from the event handler when we swallowed the
1604         event.
1605
1606 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1607
1608         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1609         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1610         Reset header state. Fixes #555321.
1611
1612 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1613
1614         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1615         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1616         * gst/avi/gstavidemux.h:
1617         For timestamping audio packets we need to take into account the
1618         amount of blocks in one entry using the blockalign. Fixes some sync
1619         issues with zero-padded audio blocks in the beginning of avi files.
1620
1621 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1622
1623         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1624         (gst_multi_file_src_query):
1625         Implement DEFAULT and BUFFER position queries. See #555260.
1626
1627 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1628
1629         * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1630         Fix build for systems that don't have XDamage.
1631
1632 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
1633
1634         * tests/examples/rtp/client-H263p.sdp:
1635         * tests/examples/rtp/client-H263p.sh:
1636         * tests/examples/rtp/server-VTS-H263p.sh:
1637         Add some more H263p server and client examples.
1638
1639 2008-10-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1640
1641         * configure.ac::
1642           Depend on released versions of core and base.
1643
1644 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1645
1646         * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1647         * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1648         Return -1 instead of 0 in error cases. Fixes #554771.
1649
1650 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1651
1652         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1653         (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1654         Stop leaking the cursor image.
1655         Unref the last_ximage and the cached cursor image on shutdown.
1656         Fixes #551570.
1657
1658 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1659
1660         * sys/v4l2/gstv4l2object.h:
1661         Getting the Class from an instance is not just a matter of casting it to
1662         the class struct but it involves calling G_OBJECT_GET_CLASS on the
1663         instance. Fixes #549784.
1664
1665 2008-10-01  Michael Smith <msmith@songbirdnest.com>
1666
1667         * configure.ac:
1668           Fix libs for linking directsound.
1669         * sys/directsound/gstdirectsoundsink.c:
1670           Fix buffer sizing to prevent racing the ringbuffer at startup.
1671           Add volume property.
1672
1673 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
1674
1675         * ext/pulse/pulsesink.c:
1676         Fix problems with pulsesink randomly erroring with code 'OK' after a
1677         format change on the stream by waiting when disconnecting the stream.
1678
1679 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1680
1681         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1682         (gst_rtp_amr_depay_process):
1683         Mark DISCONT on output buffers when the marker bit signals a new talk
1684         spurt.
1685
1686         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1687         Set the marker bit for buffers with a DISCONT flag to signal a talk
1688         spurt.
1689
1690 2008-09-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1691
1692         * gst/rtp/Makefile.am:
1693         * gst/rtp/gstrtp.c: (plugin_init):
1694         * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1695         (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1696         (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1697         (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1698         (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1699         (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1700         * gst/rtp/gstrtpmp4apay.h:
1701         Added MP4A-LATM payloader to match the depayloader.
1702
1703 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1704
1705         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1706         (gst_videomixer_sink_event):
1707         Handle segments a little better. Fixes #537361.
1708
1709 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1710
1711         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1712         Don't assume the server supports PAUSE by default. Fixes #551048.
1713
1714 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1715
1716         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1717         (gst_udpsrc_set_uri), (gst_udpsrc_start):
1718         Switch on the socket family to get the addrlen size right.
1719
1720 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1721
1722         Patch by: Daniel Franke <df at dfranke dot us>
1723
1724         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1725         OS X's bind() implementation is picky about its addrlen parameter and
1726         fails with EINVAL if it is larger than expected for the socket's address
1727         family. Set the length to the expected length instead. Fixes #553191.
1728
1729 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1730
1731         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1732         Handle the case where we cannot do desribe or when the describe result
1733         does not contain a valid SDP message.
1734
1735 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1736
1737         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1738         Fix setting the qos.
1739
1740 2008-09-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1741
1742         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1743         (gst_qtdemux_chain):
1744         Some 'broken' files out there have atom lengths of zero...
1745         which basically results in qtdemux consuming that atom again and again
1746         until the *end of night* !
1747         Detect that and emits an adequate element error message.
1748
1749 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
1750
1751         * gst/interleave/Makefile.am:
1752         * gst/matroska/Makefile.am:
1753         Fix build flags order.
1754
1755         * tests/check/elements/audioamplify.c: (GST_START_TEST):
1756         * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1757         * tests/check/elements/audioinvert.c: (GST_START_TEST):
1758         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1759         Format fixes.
1760
1761         * tests/check/elements/multifile.c:
1762         Pull in unistd.h
1763
1764 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1765
1766         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1767         (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1768         (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1769         (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1770         (gst_rtp_mp4g_depay_change_state):
1771         * gst/rtp/gstrtpmp4gdepay.h:
1772         Handle interleaved streams by reordering AU in a queue.
1773
1774 2008-09-15  Wim Taymans  <wim.taymans@collabora.co.uk>
1775
1776         * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1777         (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1778         Change some of the ranges in the caps, mostly for the amount of bits we
1779         can use.
1780         Added a little bitstream parse and use it to parse the AU header fields.
1781         Check for malformed and wrongly sized packets better.
1782         Implement more header field parsing.
1783         Handle the size of fragmented packets correctly.
1784
1785 2008-09-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1786
1787         Patch by: Jonathan Matthew <notverysmart@gmail.com>
1788         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1789         Add mapping for 'tiff' => image/tiff
1790         Fixes #552213
1791
1792 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
1793
1794
1795         * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1796         * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1797           Pretend to care about the result of write() which works around
1798           compiler warnings.
1799
1800 2008-09-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1801
1802         * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1803           Make sure the desired default values are actually set, not only
1804           registered as defaults (actual problem is that the stereo-specific
1805           values are only updated if channels==2, which is not the case yet
1806           when the object is created, so the default values for the
1807           mid-side-stereo and loose-mid-side-stereo settings are never
1808           set in _update_quality()). Makes flacenc create smaller files by
1809           default (for stereo input), and fixes #550791.
1810
1811 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1812
1813         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1814         (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
1815         (qtdemux_parse_trak), (qtdemux_video_caps):
1816         * gst/qtdemux/qtdemux.h:
1817         * gst/qtdemux/qtdemux_fourcc.h:
1818         * gst/qtdemux/qtdemux_types.c:
1819         Add support for video/mj2 mime-type and its additional atoms/boxes.
1820         Fixes #550646.
1821
1822 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1823
1824         * gst/debug/gsttaginject.c:
1825           Add warning when tags parameter is unparsable and give example for
1826           quoting in the docs.
1827
1828 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1829
1830         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
1831         Add mapping for IMA Loki SDL MJPEG ADPCM codec.
1832         Add some alternative byteswapped mappings that seem to pop up sometimes.
1833         Fixes #550288.
1834
1835 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1836
1837         * po/LINGUAS:
1838         * po/POTFILES.in:
1839         * po/POTFILES.skip:
1840           Add 'ca' to LINGUAS; add some more files with translations and some
1841           files which should be ignored by translation tools.
1842
1843 2008-09-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1844
1845         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1846         * ext/speex/gstspeexdec.h:
1847         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1848         * ext/speex/gstspeexenc.h:
1849         Use integer encoding and decoding functions instead of converting
1850         the integer input to float in the element. The libspeex integer
1851         functions are doing this for us already or, if libspeex was compiled
1852         in integer mode, they're doing everything using integer arithmetics.
1853         Also saves some copying around.
1854
1855 2008-09-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
1856
1857         * configure.ac:
1858           Fix --disable-external
1859
1860 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1861
1862         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
1863         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
1864         * ext/wavpack/gstwavpackenc.h:
1865         Handle non-zero start timestamps and stream discontinuities
1866         correctly. This only has an effect if we're muxing into
1867         a container format as the raw WavPack stream must contain
1868         continous sample numbers.
1869
1870 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1871
1872         * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
1873         Correct the timestamp and granulepos calculation by one Speex
1874         frame.
1875
1876 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1877
1878         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
1879         Correctly take the granulepos from upstream if possible and
1880         correctly handle the granulepos in various calculations: the
1881         granulepos is the sample number of the _last_ sample in a frame, not
1882         the first.
1883
1884         * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
1885         (gst_speex_enc_encode), (gst_speex_enc_chain),
1886         (gst_speex_enc_change_state):
1887         * ext/speex/gstspeexenc.h:
1888         Handle non-zero start timestamps in the encoder and detect/handle
1889         stream discontinuities. Fixes bug #547075.
1890
1891 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1892
1893         Patch by: Craig Keogh <cskeogh at adam dot com dot au>
1894
1895         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
1896         Fix compiler warnings caused by passing a string as format string
1897         instead of "%s" and then the string. This is only exposed by -Wformat=2
1898         as used by default on Ubuntu. Fixes bug #550015.
1899
1900 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1901
1902         * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
1903         * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
1904         * gst/audiofx/audiocheblimit.c: (generate_coefficients):
1905         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
1906         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
1907           (gst_ebml_read_element_length):
1908         * gst/matroska/matroska-demux.c:
1909           (gst_matroska_demux_check_subtitle_buffer):
1910           Make stuff compile with GST_DISABLE_GST_DEBUG.
1911
1912 2008-08-28  Michael Smith <msmith@songbirdnest.com>
1913
1914         * gst/law/alaw.c:
1915         * gst/law/mulaw.c:
1916           Ref caps before passing to gst_pad_template_new(), since that takes
1917           ownership.
1918
1919 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1920
1921         Patch by: Mersad Jelacic <mersad at axis dot com>
1922
1923         * gst/multipart/multipartdemux.c:
1924         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
1925         Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
1926         demuxer. Fixes #549551.
1927
1928 2008-08-27  Edward Hervey  <edward.hervey@collabora.co.uk>
1929
1930         * sys/osxaudio/gstosxaudiosink.c:
1931         (gst_osx_audio_sink_select_device):
1932         * sys/osxaudio/gstosxaudiosrc.c:
1933         (gst_osx_audio_src_create_ringbuffer),
1934         (gst_osx_audio_src_select_device):
1935         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
1936         Fix the build on macosx.
1937
1938 2008-08-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1939
1940         * gst/icydemux/gsticydemux.c:
1941           Small docs fix: in the example pipeline, we need to pass
1942           iradio-mode=true to the source, so the server actually sends
1943           an ICY stream.
1944
1945 2008-08-26  Michael Smith <msmith@songbirdnest.com>
1946
1947         * sys/osxaudio/gstosxaudio.c:
1948           Oops. Revert more completely.
1949
1950 2008-08-26  Michael Smith <msmith@songbirdnest.com>
1951
1952         * sys/osxaudio/gstosxaudio.c:
1953           Revert accidental element rename from testing.
1954
1955 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
1956
1957         * gst-plugins-good.doap:
1958         Pull in 0.10.10 doap entry from release branch
1959
1960 2008-08-27  Jan Schmidt  <jan.schmidt@sun.com>
1961
1962         * configure.ac:
1963         Update version number to reflect 0.10.10 release from
1964         branch.
1965
1966 2008-08-26  Michael Smith <msmith@songbirdnest.com>
1967
1968         * sys/osxaudio/Makefile.am:
1969         * sys/osxaudio/gstosxaudio.c:
1970         * sys/osxaudio/gstosxaudiosink.c:
1971         * sys/osxaudio/gstosxaudiosink.h:
1972         * sys/osxaudio/gstosxaudiosrc.c:
1973         * sys/osxaudio/gstosxaudiosrc.h:
1974         * sys/osxaudio/gstosxringbuffer.c:
1975         * sys/osxaudio/gstosxringbuffer.h:
1976           Rewrite caps setting and ring buffer initialisation.
1977           Previously we never told CoreAudio what format we were going to send it,
1978           so it only worked due to luck, and not at all on some hardware.
1979           Now we explicitly advertise what formats the hardware supports, and then
1980           configure the selected one correctly.
1981
1982 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
1983
1984         * sys/v4l2/gstv4l2object.c:
1985         * sys/v4l2/gstv4l2src.c:
1986         * sys/v4l2/gstv4l2src.h:
1987         * sys/v4l2/v4l2_calls.c:
1988         * sys/v4l2/v4l2src_calls.c:
1989           Fix memory leaks. Small code cleanups : No need for empty _init(). No
1990           need to memset instance structures. Some more FIXME's and comments.
1991
1992 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
1993
1994         * tests/icles/.cvsignore:
1995           Ignore more.
1996
1997 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
1998
1999         * gst/goom/.cvsignore:
2000         * gst/goom2k1/.cvsignore:
2001           Ignore files.
2002
2003 2008-08-26  Stefan Kost  <ensonic@users.sf.net>
2004
2005         * ext/cairo/gsttextoverlay.c:
2006           Fix compiler warning.
2007
2008 2008-08-25  David Schleef  <ds@schleef.org>
2009
2010         * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2011
2012 2008-08-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2013
2014         * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2015         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2016         * gst/matroska/matroska-mux.c:
2017         (gst_matroska_mux_video_pad_setcaps),
2018         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2019         Add Real[Audio|Video] support to Matroska containers.
2020         It works fine for:
2021         * decoding real audio/video streams contained in mkv
2022         * 'transmuxing' real (.rm) files into .mkv files
2023         It will not work though for encoding real[audio/video] streams that
2024         don't contain the 'mdpr_data' extra data on the caps.
2025         The reason why this will not work is because I never intended to
2026         duplicate virtually all the 'mdpr' block creation into mkvmux.
2027         Fixes #536067
2028
2029 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2030
2031         * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2032         * gst/law/mulaw-conversion.c:
2033         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2034         (gst_mulawenc_chain):
2035         The encoder can't really renegotiate at the time they perform a
2036         pad-alloc so make the srcpads use fixed caps.
2037         Check the buffer size after a pad-alloc because the returned size might
2038         not be right when the downstream element does not know the size of the
2039         new buffer (capsfilter). Fixes #549073.
2040
2041 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2042
2043         Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2044
2045         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2046         v4l2src doesn't have a property named "norm" so don't try to notify
2047         about changes to that property. The "norm" property and related
2048         code are commented out currently. Fixes bug #549090.
2049
2050 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2051
2052         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2053
2054         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2055         Reprobe devices again instead of taking a cached list as new
2056         devices could've been plugged in. Fixes bug #549062.
2057
2058 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2059
2060         * gst/autodetect/Makefile.am:
2061         Don't link the autodetect plugin with GConf as it doesn't
2062         use GConf. Fixes bug #545463.
2063
2064 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2065
2066         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2067         (gst_ebml_read_element_length), (gst_ebml_read_uint),
2068         (gst_ebml_read_sint), (gst_ebml_read_float),
2069         (gst_ebml_read_header):
2070         Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2071         possible to ignore errors and not post any ERROR messages on
2072         the bus.
2073
2074         * gst/matroska/matroska-demux.c:
2075         (gst_matroska_demux_parse_contents):
2076         Ignore any errors and not just EOS when parsing the contents of
2077         a SeekHead. Errors here are usually caused by truncated files
2078         and playback of the file works fine. Fixes playback of the
2079         audio_only_chapter_seekbroken.mka file from the MPlayer samples
2080         archive.
2081
2082 2008-08-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2083
2084         * gst/multipart/multipartdemux.c:
2085         * gst/multipart/multipartmux.c:
2086         Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2087
2088 2008-08-21  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
2089
2090         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2091           gst_directdraw_sink_bufferpool_clear):
2092           Fix two more buffer ref leaks.
2093
2094 2008-08-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
2095
2096         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2097
2098         * sys/directdraw/gstdirectdrawsink.c:
2099           (gst_directdraw_sink_show_frame):
2100           Fix buffer ref leak.
2101
2102 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2103
2104         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2105         Revert the last commit. wavenc still supports width!=depth for 32 bit
2106         width. Thanks Tim.
2107
2108 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2109
2110         * gst/matroska/matroska-demux.c:
2111         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2112         If the duration of a block is unknown only use the timestamp for the
2113         first lace and use GST_CLOCK_TIME_NONE as duration for the following
2114         laces. Otherwise every lace has the same timestamp which leads to
2115         various problems. Really fixes bug #548831.
2116
2117 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2118
2119         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2120         If we're not allowing width!=depth in wavenc we should also disable
2121         the code that was added to support width!=depth.
2122
2123 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2124
2125         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2126         Don't calculate the default duration of a frame from the audio sampling
2127         rate. This only works for raw audio if every frame contains a single
2128         sample and results in broken buffer durations for other formats
2129         if no specified default duration is given or the blocks have no
2130         duration. Fixes bug #548831.
2131
2132 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2133
2134         * gst/matroska/matroska-demux.c:
2135         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2136         Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2137         are used for text/plain subtitles as a gap-filler in some files.
2138
2139 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2140
2141         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2142         (gst_v4l2_get_caps_info):
2143         Add S910 and PWC formats with a low priority.
2144
2145         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2146         (gst_v4l2src_probe_caps_for_format):
2147         Add more debugging.
2148
2149 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
2150
2151         * ext/flac/gstflacenc.c:
2152           Fix compilation against older libflac versions.
2153
2154 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2155
2156         * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2157         (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2158         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2159         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2160         (gst_pulsemixer_ctrl_set_volume):
2161         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2162         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2163         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2164         (gst_pulsesink_init), (gst_pulsesink_open),
2165         (gst_pulsesink_prepare), (gst_pulsesink_write),
2166         (gst_pulsesink_delay), (gst_pulsesink_reset):
2167         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2168         (gst_pulsesrc_init):
2169         Use GST_BOILERPLATE everywhere and fix coding style at some places.
2170         Fix a locking issue in pulsesink's prepare function.
2171
2172         * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2173         Check if the created channel layout is valid for GStreamer.
2174
2175 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2176
2177         * gst/rtsp/gstrtspgoogle.c:
2178         Things that can happen when your brain is in google mode trying to
2179         deal with their google rtsp server extensions and trying to type your
2180         google mail account.
2181
2182 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2183
2184         * gst/rtsp/Makefile.am:
2185         * gst/rtsp/gstrtsp.c: (plugin_init):
2186         * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2187         (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2188         (_do_init), (gst_rtsp_google_base_init),
2189         (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2190         (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2191         (gst_rtsp_google_extension_init):
2192         * gst/rtsp/gstrtspgoogle.h:
2193         Add google RTSP extension, it can only handle udp and responds with
2194         unsupported if we do anything else. Fixes #546465.
2195
2196         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2197         (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2198         (gst_rtspsrc_create_transports_string),
2199         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2200         (gst_rtspsrc_close), (gst_rtspsrc_pause):
2201         Make transport setup code a bit better using GString.
2202         Add some more debug.
2203         Check for closed connections before doing anything on them.
2204
2205 2008-08-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2206
2207         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2208         (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2209         (gst_pulsesrc_prepare):
2210         * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2211         (gst_pulse_channel_map_to_gst):
2212         * ext/pulse/pulseutil.h:
2213         If downstream provides no channel layout and >2 channels should be
2214         used use the default layout that pulseaudio chooses and also
2215         add this layout to the caps. Fixes bug #547258.
2216
2217 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2218
2219         Patch by: Peter Kjellerstedt <pkj at axis com>
2220
2221         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2222         (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2223         (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2224         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2225         (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2226         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2227         (gst_udpsrc_set_property):
2228         Avoid leaking internally allocated file descriptors when setting
2229         custom file descriptors. Fixes #543101.
2230
2231 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2232
2233         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2234         Don't try to configure RTCP back to the server when the server did not
2235         give us a valid port number.
2236
2237 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2238
2239         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2240         Use new basetransform method to renegotiate. Fixes #544956.
2241
2242         * tests/icles/Makefile.am:
2243         * tests/icles/videobox-test.c: (make_pipeline), (main):
2244         Add videobox renegotiation example.
2245
2246 2008-08-19  David Schleef  <ds@schleef.org>
2247
2248         * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2249         with sane values.  Fixes #548530.
2250
2251 2008-08-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2252
2253         * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2254         * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2255         The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2256         are already filled with the correct values by
2257         gst_ring_buffer_parse_caps() so there's no need to set them again
2258         with wrong values.
2259
2260 2008-08-16  Edward Hervey  <edward.hervey@collabora.co.uk>
2261
2262         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2263         (gst_avi_demux_read_subindexes_push):
2264         Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2265         and instead of using the 'ix##' nomenclature, use '##ix'.
2266         They're still valid though, this fixes the duration and indexes for
2267         virtually all the ODML files I have.
2268
2269 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
2270
2271         Patch by: Olivier Crete <tester at tester dot ca>
2272
2273         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2274         (gst_rtp_vorbis_depay_process):
2275         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2276         Update the vorbis RTP pay/depay to RFC 5215.
2277         Fixes #547842.
2278
2279 2008-08-14  David Schleef  <ds@schleef.org>
2280
2281         * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2282           with 3:2 pulldown, i.e., 24p.
2283
2284 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2285
2286         * tests/check/elements/level.c: (GST_START_TEST):
2287         Fix compilation some more.
2288
2289 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2290
2291         * configure.ac::
2292           Require -base CVS for wavparse acid chunk parsing.
2293
2294 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2295
2296         * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2297         (gst_pulsesink_init), (gst_pulsesink_finalize),
2298         (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2299         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2300         (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2301         * ext/pulse/pulsesink.h:
2302         Add "device-name" property to pulsesink too and currently commented
2303         out and not working support for a "volume" property.
2304
2305 2008-08-13  Thijs Vermeir  <thijsvermeir@gmail.com>
2306
2307         * configure.ac:
2308         Remove more cdio stuff (moved to ugly)
2309
2310 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2311
2312         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2313
2314         * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2315         (gst_pulsesrc_get_property):
2316         Add "device-name" property, which provides a human readable string
2317         for the audio device, to make it more consisten with other audio
2318         sources. Fixes bug #547519.
2319
2320 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2321
2322         * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2323         * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2324         (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2325         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2326         * ext/pulse/pulsemixerctrl.h:
2327         * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2328         (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2329         (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2330         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2331         * ext/pulse/pulseprobe.h:
2332         * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2333         * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2334         (gst_pulsesrc_change_state):
2335         Improve debugging a bit by including the parent object in pulsemixerctrl
2336         and pulseprobe objects and using GST_WARNING_OBJECT instead of
2337         GST_WARNING.
2338
2339         Use the parent GObject subclass instead of a random struct as GObject
2340         parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2341         when probing for another property than "device".
2342
2343 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2344
2345         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2346
2347         * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2348         Fix property probing after the device property is set by calling
2349         set_server when the server property changes. Fixes bug #547518.
2350
2351 2008-08-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2352
2353         Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2354
2355         * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2356         (gst_pulsesink_implements_interface_init),
2357         (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2358         (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2359         (gst_pulsesink_get_type):
2360         * ext/pulse/pulsesink.h:
2361         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2362         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2363         (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2364         * ext/pulse/pulsesrc.h:
2365         Implement GstPropertyProbe interface on pulsesink for detecting
2366         sink devices and on pulsesrc for detecting source devices.
2367         Fixes bugs #547227 and #547217.
2368
2369 2008-08-13  Stefan Kost  <ensonic@users.sf.net>
2370
2371         * gst/spectrum/gstspectrum.c:
2372           Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2373
2374 2008-08-13  Edward Hervey  <edward.hervey@collabora.co.uk>
2375
2376         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2377         Properly set the maximum latency value, in the same way it is done in
2378         v4lsrc.
2379         * sys/v4l2/v4l2src_calls.c:
2380         Simplify fraction equality check, no need to use GValues for this.
2381
2382 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2383
2384         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2385         Add warning messages stating exactly why the latency query failed.
2386         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2387         In some cases, the negotiated framerate might be the default one which
2388         is already set internally. But we still need to mark it down in fps_n
2389         and fps_d so that the latency query can happen properly.
2390
2391 2008-08-12  Edward Hervey  <edward.hervey@collabora.co.uk>
2392
2393         * docs/plugins/inspect/plugin-1394.xml:
2394         Whoops, forgot one doc file for people who can't/don't build the
2395         raw1394 plugin.
2396
2397 2008-08-12  Jan Schmidt  <jan.schmidt@sun.com>
2398
2399         * docs/plugins/Makefile.am:
2400         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2401         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2402         * docs/plugins/inspect/plugin-cdio.xml:
2403         * ext/Makefile.am:
2404         * ext/cdio/Makefile.am:
2405         * ext/cdio/gstcdio.c:
2406         * ext/cdio/gstcdio.h:
2407         * ext/cdio/gstcdiocddasrc.c:
2408         * ext/cdio/gstcdiocddasrc.h:
2409
2410         Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2411         CDDA source to -ugly.
2412
2413         * po/LINGUAS:
2414         * po/POTFILES.in:
2415         * po/id.po:
2416         Pull in new translation from 0.10.9.2 release branch.
2417
2418 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2419
2420         * docs/plugins/Makefile.am:
2421         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2422         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2423         * docs/plugins/gst-plugins-good-plugins.args:
2424         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2425         * docs/plugins/gst-plugins-good-plugins.interfaces:
2426         Integrate documentation for new hdv1394src element.
2427
2428 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2429
2430         * ext/raw1394/Makefile.am:
2431         * ext/raw1394/gst1394.c: (plugin_init):
2432         * ext/raw1394/gsthdv1394src.c: (_do_init),
2433         (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2434         (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2435         (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2436         (gst_hdv1394src_from_raw1394handle),
2437         (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2438         (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2439         (gst_hdv1394src_start), (gst_hdv1394src_stop),
2440         (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2441         (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2442         (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2443         (gst_hdv1394src_uri_handler_init):
2444         * ext/raw1394/gsthdv1394src.h:
2445         mpeg2-ts (HDV) variant of firewire capture element.
2446         Fixes #350830
2447
2448 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
2449
2450         * gst/level/gstlevel.c: (gst_level_message_new):
2451          Fix compilation (also known as the classic 'fix code that someone
2452          committed without compiling it first').
2453
2454 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2455
2456         * tests/check/elements/level.c:
2457           Add a test for level in stereo mode.
2458
2459 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2460
2461         * tests/examples/spectrum/demo-audiotest.c:
2462         * tests/examples/spectrum/demo-osssrc.c:
2463           Demo how to draw analyzer results synced to the clock.
2464
2465 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2466
2467         * gst/level/gstlevel.c:
2468           Little renaming (l -> level).
2469
2470         * gst/spectrum/gstspectrum.c:
2471         * gst/spectrum/gstspectrum.h:
2472           Also send full timestamp/duration details here.
2473
2474 2008-08-10  Stefan Kost  <ensonic@users.sf.net>
2475
2476         * gst/level/gstlevel.c:
2477         * gst/level/gstlevel.h:
2478           Send same timestamp/duration details as videoanalysis. This gives
2479           applications better chance to sync analysis results with playback.
2480
2481 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2482
2483         * gst/matroska/matroska-mux.c:
2484         (gst_matroska_mux_handle_sink_event),
2485         (flac_streamheader_to_codecdata):
2486         We need to drop one additional buffer for FLAC as the fLaC
2487         marker and STREAMINFO block are merged into one buffer in the caps.
2488
2489         Also don't pretend to support NEWSEGMENT events, otherwise we
2490         will most probably write some invalid data.
2491
2492 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2493
2494         * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2495         (gst_matroska_mux_audio_pad_setcaps):
2496         Add support for muxing FLAC into Matroska containers.
2497         Fixes bug #311586.
2498
2499 2008-08-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2500
2501         * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2502         Actually provide the variables required for the format string.
2503
2504 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2505
2506         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2507         (gst_matroska_demux_element_send_event),
2508         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2509         * gst/matroska/matroska-demux.h:
2510         Close the current segment if we're doing a non-flushing seek and send
2511         the close-segment and the new segment of the seek from the streaming
2512         thread.
2513
2514 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2515
2516         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2517         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2518         (gst_flac_enc_change_state):
2519         * ext/flac/gstflacenc.h:
2520         Handle non-zero start timestamps correctly, mark header packets as
2521         IN_CAPS and print a warning and suggest using audiorate if stream
2522         discontinuities are detected. When FLAC supports flushing the encoder
2523         somehow this should be done for discontinuities instead.
2524
2525         Remove some unused variables from the instance struct.
2526
2527 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2528
2529         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2530         If seeking failed return the appropiate return value to FLAC.
2531         Otherwise it thinks seeking was successfull and tries to rewrite
2532         parts of the headers which then get appended to the output.
2533
2534 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2535
2536         Patch by: Frederic Crozat <fcrozat@mandriva.org>
2537
2538         * ext/esd/gstesd.c: (plugin_init):
2539         * ext/flac/gstflac.c: (plugin_init):
2540         * ext/shout2/gstshout2.c: (plugin_init):
2541         * ext/wavpack/gstwavpack.c: (plugin_init):
2542         * sys/oss/gstossaudio.c: (plugin_init):
2543         * sys/v4l2/gstv4l2.c: (plugin_init):
2544         Make sure gettext returns translations in UTF-8 encoding rather
2545         than in the current locale encoding (#546822).
2546
2547 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2548
2549         * ext/flac/gstflacdec.c:
2550         Add FIXME for 0.11 to simply output everything with width=32 as given
2551         by FLAC and let audioconvert handle the conversions instead of doing
2552         them in flacdec.
2553
2554 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
2555
2556         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2557         When outputting a pad template range for the size, include a framerate
2558         range too, to avoid 'not a real subset of template caps' errors.
2559
2560 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2561
2562         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2563
2564         * ext/flac/Makefile.am:
2565         * ext/flac/gstflac.c: (plugin_init):
2566         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2567         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2568         (gst_flac_tag_dispose), (gst_flac_tag_init),
2569         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2570         (gst_flac_tag_change_state):
2571         * ext/flac/gstflactag.h:
2572         Port flactag to 0.10, add documentation for it and clean it up a bit.
2573         Fixes bug #413841.
2574
2575         * docs/plugins/Makefile.am:
2576         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2577         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2578         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2579         * docs/plugins/gst-plugins-good-plugins.interfaces:
2580         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2581         * docs/plugins/inspect/plugin-flac.xml:
2582         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2583         * ext/flac/gstflacdec.h:
2584         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2585         * ext/flac/gstflacenc.h:
2586         Add flactag and flacenc to the documentation and mark
2587         the private parts of the flacdec instance structure as private.
2588
2589         Also use gst_element_class_set_details_simple() in flacdec and
2590         flacenc.
2591
2592 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
2593
2594         * gst/qtdemux/qtdemux.c:
2595           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2596           for it but ffmpeg does not.
2597
2598 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2599
2600         * gst/wavparse/gstwavparse.c:
2601           Handle the list chunk and use gst_riff_parse_info() to parse the info
2602           sub-chunk.
2603
2604 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2605
2606         * gst/wavparse/gstwavparse.c:
2607           Handle the acid chunk and send tempo as part of tags. Other fields are
2608           interesting too, but need more tag-definitions. Fixes #545433.
2609
2610 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
2611
2612         * gst/wavparse/gstwavparse.c:
2613           Refactor wavparse. Call _reset() from dispose() and move old code from
2614           dispose into reset. This way we don't leak taglists when we abort
2615           parsing. Fix some comments. Move code for skipping a chunk into extra
2616           function. Replace chunk sizes with a const to ease readability.         
2617
2618 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2619
2620         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2621
2622         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2623         Improve udp port setup. Fixes #545710.
2624
2625 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2626
2627         * gst/rtp/Makefile.am:
2628         * gst/rtp/gstrtp.c: (plugin_init):
2629         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2630         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2631         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2632         (gst_rtp_mp1s_depay_set_property),
2633         (gst_rtp_mp1s_depay_get_property),
2634         (gst_rtp_mp1s_depay_change_state),
2635         (gst_rtp_mp1s_depay_plugin_init):
2636         * gst/rtp/gstrtpmp1sdepay.h:
2637         Add MP1S depayloader.
2638
2639         * gst/rtsp/URLS:
2640         Some more sample rtsp streams.
2641
2642 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2643
2644         * gst/rtsp/URLS:
2645         Add another URL.
2646
2647         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2648         * tests/check/elements/rglimiter.c: (GST_START_TEST):
2649         Add some more debug info.
2650
2651 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2652
2653         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2654         Provide cbSize field for audio extra_data size, and take care to
2655         pad extra_data.
2656
2657 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2658
2659         * gst/qtdemux/qtdemux.c:
2660           Return the result of gst_pad_{start,stop}_task instead of hard-coded
2661           TRUE.
2662
2663 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2664
2665         * gst/qtdemux/qtdemux.c:
2666         * gst/qtdemux/qtdemux_fourcc.h:
2667           Add keyword tag support. Fixes #520694 for qtdemux.
2668
2669 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
2670
2671         * gst/qtdemux/qtdemux.c:
2672           Add support for tmpo tag (BPM).
2673
2674 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2675
2676         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2677         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2678         Set an estimate for the total number of samples that will be encoded
2679         if possible to help decoders if the streaminfo can't be rewritten
2680         later (like when muxing into Ogg containers).
2681
2682         Add a warning if we get header packets after data packets as those
2683         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2684         work.
2685
2686 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2687
2688         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2689         (gst_flac_dec_write):
2690         Support decoding of all depths between 4 and 32 bits and read the
2691         depth from the streaminfo header if needed. Also support all sampling
2692         rates between 1 and 655350 Hz.
2693
2694         * ext/flac/gstflacenc.c:
2695         (gst_flac_enc_caps_append_structure_with_widths),
2696         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2697         (gst_flac_enc_chain):
2698         * ext/flac/gstflacenc.h:
2699         Support encoding in all bit depths supported by the streamable
2700         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2701         between 1 Hz and 655350 Hz.
2702
2703 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2704
2705         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2706         (gst_flac_enc_sink_getcaps):
2707         Support encoding of up to 8 channels.
2708
2709 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2710
2711         * ext/soup/gstsouphttpsrc.c:
2712         * ext/soup/gstsouphttpsrc.h:
2713         Fix seeking race condition in #540300
2714         Patch By: Wouter Cloetens  <wouter at mind be>
2715
2716 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2717
2718         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2719         (gst_matroska_demux_element_send_event),
2720         (gst_matroska_demux_handle_seek_event),
2721         (gst_matroska_demux_handle_src_event):
2722         When receiving a SEEK event on a specific pad first search for a seek
2723         table entry for the stream of the pad and then fall back to an entry
2724         for a different stream.
2725
2726 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2727
2728         * configure.ac:
2729         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2730         * gst/matroska/matroska-ids.h:
2731         Build depend on core CVS for the attachment tag.
2732
2733 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2734
2735         * configure.ac:
2736         * gst/matroska/Makefile.am:
2737         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2738         (copy_backptr), (lzo1x_decode), (main):
2739         * gst/matroska/lzo.h:
2740         * gst/matroska/matroska-demux.c:
2741         (gst_matroska_demux_read_track_encoding),
2742         (gst_matroska_decompress_data), (gst_matroska_decode_data),
2743         (gst_matroska_decode_buffer),
2744         (gst_matroska_decode_content_encodings),
2745         (gst_matroska_demux_read_track_encodings),
2746         (gst_matroska_demux_add_stream),
2747         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2748         * gst/matroska/matroska-ids.h:
2749         Decode the codec private data and following ContentEncoding if
2750         necessary.
2751
2752         Support bzip2, lzo and header stripped compression. For lzo use the
2753         ffmpeg lzo implementation as liblzo is GPL licensed.
2754         
2755         Fix zlib decompression.
2756
2757 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2758
2759         * gst/matroska/matroska-mux.c:
2760         (gst_matroska_mux_audio_pad_setcaps):
2761         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2762         duration of a frame with the new mpegaudioversion caps field.
2763
2764 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2765
2766         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2767         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2768         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2769         (gst_matroska_demux_stream_from_num),
2770         (gst_matroska_demux_tracknumber_unique),
2771         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2772         (gst_matroska_demux_handle_seek_event),
2773         (gst_matroska_demux_sync_streams),
2774         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2775         (gst_matroska_demux_loop):
2776         * gst/matroska/matroska-demux.h:
2777         Allow an infinite number of stream inside Matroska containers and use
2778         a GPtrArray for storing them instead of allowing "only" 127 streams.
2779
2780 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2781
2782         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2783         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2784         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2785         (gst_ebml_read_element_length), (gst_ebml_peek_id),
2786         (gst_ebml_read_get_length), (gst_ebml_read_skip),
2787         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2788         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2789         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2790         (gst_ebml_read_master), (gst_ebml_read_binary),
2791         (gst_ebml_read_header):
2792         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2793         (gst_ebml_write_element_size), (gst_ebml_write_uint),
2794         (gst_ebml_write_sint), (gst_ebml_write_ascii),
2795         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2796         (gst_ebml_replace_uint):
2797         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2798         (gst_matroska_demux_read_track_encoding),
2799         (gst_matroska_demux_read_track_encodings),
2800         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2801         (gst_matroska_demux_send_event),
2802         (gst_matroska_demux_element_send_event),
2803         (gst_matroska_demux_handle_seek_event),
2804         (gst_matroska_demux_handle_src_event),
2805         (gst_matroska_demux_init_stream),
2806         (gst_matroska_demux_parse_tracks),
2807         (gst_matroska_demux_parse_index_cuetrack),
2808         (gst_matroska_demux_parse_index_pointentry),
2809         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
2810         (gst_matroska_demux_parse_metadata_id_simple_tag),
2811         (gst_matroska_demux_parse_metadata_id_tag),
2812         (gst_matroska_demux_parse_metadata),
2813         (gst_matroska_demux_parse_attached_file),
2814         (gst_matroska_demux_parse_attachments),
2815         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
2816         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
2817         (gst_matroska_demux_push_flac_codec_priv_data),
2818         (gst_matroska_demux_push_xiph_codec_priv_data),
2819         (gst_matroska_demux_push_dvd_clut_change_event),
2820         (gst_matroska_demux_add_mpeg_seq_header),
2821         (gst_matroska_demux_add_wvpk_header),
2822         (gst_matroska_demux_check_subtitle_buffer),
2823         (gst_matroska_decode_buffer),
2824         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2825         (gst_matroska_demux_parse_cluster),
2826         (gst_matroska_demux_parse_contents_seekentry),
2827         (gst_matroska_demux_parse_contents),
2828         (gst_matroska_demux_loop_stream_parse_id),
2829         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
2830         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
2831         (gst_matroska_demux_subtitle_caps),
2832         (gst_matroska_demux_change_state):
2833         * gst/matroska/matroska-ids.c:
2834         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
2835         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
2836         (gst_matroska_mux_video_pad_setcaps),
2837         (xiph3_streamheader_to_codecdata),
2838         (vorbis_streamheader_to_codecdata),
2839         (theora_streamheader_to_codecdata),
2840         (gst_matroska_mux_audio_pad_setcaps),
2841         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
2842         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
2843         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
2844         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
2845         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
2846         Fix indention everywhere. A broken indent version has added newlines
2847         after every single declaration some time ago.
2848
2849 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2850
2851         * gst/matroska/matroska-demux.c:
2852         (gst_matroska_demux_loop_stream_parse_id):
2853         If no Tracks are found error out instead of trying it again until the
2854         end of time.
2855
2856 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2857
2858         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
2859         Fix demuxing of raw integer audio. The samples are unsigned only for 8
2860         bit and signed otherwise, not the other way around.
2861
2862 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2863
2864         * gst/matroska/matroska-mux.c:
2865         Add more raw YUV formats to the list of supported formats.
2866
2867 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2868
2869         * gst/matroska/matroska-mux.c:
2870         (gst_matroska_mux_audio_pad_setcaps):
2871         Add support for muxing raw float audio now that the spec defines the
2872         endianness and add support for muxing raw integer audio with 24 and
2873         32 bits.
2874
2875         Allow muxing of more than 8 audio channels.
2876
2877 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2878
2879         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
2880         (gst_matroska_mux_reset), (gst_matroska_mux_start):
2881         Add locking to the global array of used track UIDs to prevent random
2882         crashes if more than a single matrosmux instance is used.
2883
2884         Use 64 bit values for the track UIDs.
2885
2886         Use the global GRandom of GLib instead of creating our own one
2887         for the few random numbers we need every single time.
2888
2889 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2890
2891         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
2892         (gst_flac_dec_setup_stream_decoder),
2893         (gst_flac_dec_update_metadata):
2894         Always post the audio-codec tag, not only if other tags are present.
2895
2896 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2897
2898         * configure.ac:
2899         Back to development -> 0.10.9.1
2900
2901 === release 0.10.9 ===
2902
2903 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
2904
2905         * configure.ac:
2906           releasing 0.10.9, "Steam Train Rolling"
2907
2908 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
2909
2910         * ext/soup/gstsouphttpsrc.c:
2911         Don't throw an error when soup completes a msg with status
2912         'cancelled', as that indicates we cancelled a request while
2913         shutting down or seeking, and it's not an error.
2914         Fixes: #540300 again.
2915
2916 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
2917
2918         * configure.ac:
2919         0.10.8.4 pre-release
2920
2921 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2922
2923         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
2924         Fix segment-stop regression.
2925         Add documentation regarding segments in quicktime files by Wim Taymans.
2926         Fixes #544509
2927
2928 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
2929
2930         * configure.ac:
2931         0.10.8.3 pre-release
2932
2933         * po/LINGUAS:
2934         * po/pt_BR.po:
2935         Add pt_BR translation
2936
2937 2008-07-23  Michael Smith <msmith@songbirdnest.com>
2938
2939         * gst/goom/convolve_fx.c:
2940         * gst/goom/filters.c:
2941         * gst/goom/goom_config.h:
2942         * gst/goom/goom_core.c:
2943         * gst/goom/goom_tools.h:
2944           Fix build with MSVC: include glib.h to define inline appropriately,
2945           use header guards where needed.
2946         * gst/udp/gstudpnetutils.c:
2947         * gst/udp/gstudpsrc.c:
2948           Fix build with MSVC: use WSA* constants/functions where appropriate, use
2949           g_snprintf rather than snprintf.
2950           Fixes #544433.
2951
2952 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
2953
2954         * gst/debug/gsttaginject.c:
2955         * gst/debug/gsttaginject.h:
2956           Sent tags in _transform_ip() instead of _start(). Fixes #543404
2957           partially.
2958
2959 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2960
2961         * configure.ac:
2962         0.10.8.2 pre-release
2963
2964 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2965
2966         * ext/Makefile.am:
2967         Finish hooking up pulseaudio plugin to the build.
2968
2969         * ext/pulse/pulsemixerctrl.c:
2970         Fix compilation error.
2971
2972 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2973
2974         * po/LINGUAS:
2975         * po/lt.po:
2976         Add new lithunian translation, and add french to the LINGUAS
2977         file.
2978
2979 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2980
2981         * ext/soup/gstsouphttpsrc.c:
2982         Fix Soup HTTP source seeking.
2983         Patch By: Wouter Cloetens  <wouter at mind be>
2984         Fixes: #540300
2985
2986         * tests/check/elements/.cvsignore:
2987         Ignore new check programs.
2988
2989 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2990
2991         * configure.ac:
2992         * docs/plugins/Makefile.am:
2993         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2994         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2995         * docs/plugins/gst-plugins-good-plugins.args:
2996         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2997         * docs/plugins/gst-plugins-good-plugins.interfaces:
2998         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2999         * docs/plugins/inspect/plugin-interleave.xml:
3000         * docs/plugins/inspect/plugin-replaygain.xml:
3001         * tests/check/Makefile.am:
3002
3003         Move replaygain and interleave plugins from -bad.
3004         Fixes: #543406
3005         Fixes: #536228
3006
3007 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3008
3009         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3010         (qtdemux_parse_trak):
3011         Revert ISO base media spec based pixel-aspect-ratio calculation.
3012         Fixes #543300.
3013
3014 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
3015
3016         * sys/osxvideo/osxvideosink.m:
3017         Fix minor build issues on macosx.
3018         Fixes #543054
3019
3020 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3021
3022         * configure.ac::
3023         * ext/taglib/Makefile.am::
3024           Only use -Wno-attributes (which is there to work around a
3025           bug in the taglib 1.5 headers) if the c++ compiler actually
3026           supports it (#543255).
3027
3028 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
3029
3030         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3031
3032         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3033           Avoid compiler warning by initialising variable to NULL (#543259).
3034
3035 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3036
3037         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3038         Don't pass NULL taglists to gst_tag_list_is_empty().
3039
3040 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
3041
3042         * tests/check/elements/cmmldec.c: (GST_START_TEST):
3043         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3044         (rtp_pipeline_run):
3045         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3046         Don't use declarations after statements.
3047
3048 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3049
3050         * ext/jpeg/gstjpegdec.c:
3051         Align documentation with reality.
3052
3053 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3054
3055         * gst/udp/gstudpnetutils.c:
3056         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3057         old value (1) if it's not defined which should not cause any problems
3058         as we're using it internal only anyway.
3059
3060 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3061
3062         Patch by: Alessandro Decina <alessandro at nnva dot org>
3063
3064         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3065         Fix build of avidemux on big endian architectures.
3066
3067 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3068
3069         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3070
3071         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3072         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
3073
3074 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3075
3076         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3077         (qtdemux_parse_trak):
3078         Set pixel-aspect-ratio in caps using display width and height
3079         provided in track.
3080
3081 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3082
3083         * configure.ac:
3084         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3085         flags that are invalid for C++. Fixes bug #516509.
3086
3087 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3088
3089         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3090         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3091         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3092         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3093         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3094         * tests/examples/equalizer/demo.c: (message_handler):
3095         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3096         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3097         Don't use declarations after statements and variable length arrays.
3098
3099 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3100
3101         Patch by: Daniel Drake <dsd at gentoo dot org>
3102
3103         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3104         (gst_v4l2src_get_nearest_size):
3105         Try progressive video if interlaced fails. Fixes bug #541956
3106         and the usage of v4l2src on OLPC.
3107
3108 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3109
3110         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3111         (gst_rtp_speex_depay_process):
3112         * gst/rtp/gstrtpspeexdepay.h:
3113         Revert last change: Only the jitterbuffer is able to convert RTP to
3114         Gstreamer timestamps and normal (de)payloaders should simply copy it.
3115         Reopens bug #541787.
3116
3117 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
3118
3119         * gst/rtp/gstrtpvrawdepay.c:
3120           Include stdlib.h for atoi().
3121
3122         * gst/rtsp/gstrtspsrc.c:
3123           Use floating point math for latencies < 0 sec in log output.
3124
3125 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3126
3127         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3128
3129         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3130         (gst_rtp_speex_depay_process):
3131         * gst/rtp/gstrtpspeexdepay.h:
3132         Take timestamp from the RTP packet as a first step to fix problems
3133         with transmission over RTP when the network is not reliable.
3134         Fixes bug #541787.
3135
3136 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3137
3138         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3139
3140         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3141         Fix parsing of udp:// URIs containing IPv6 addresses.
3142         Fixes bug #541650.
3143
3144 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3145
3146         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3147         Do not leak incoming buffers.
3148
3149 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3150
3151         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3152
3153         * configure.ac:
3154         Fix build of the RTP plugin with mingw32 by linking to ws2_32
3155         for htons() and htonl(). Fixes bug #541412.
3156
3157 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3158
3159         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3160         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3161         (gst_matroska_demux_element_query),
3162         (gst_matroska_demux_handle_src_query),
3163         (gst_matroska_demux_handle_seek_event):
3164         Handle position and duration query in DEFAULT format if the
3165         pad's track has a default frame duration set.
3166
3167         Fix seeking now that the segment's duration doesn't contain the
3168         (possibly wrong or inaccurate) duration of the Matroska file.
3169
3170 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3171
3172         * gst/matroska/ebml-read.c: (_ext2dbl):
3173         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3174         in math.h except on MSVC where it is defined in xmath.h.
3175         Fixes compilation with MSVC.
3176
3177 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3178
3179         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3180         (gst_matroska_demux_handle_src_query),
3181         (gst_matroska_demux_parse_info),
3182         (gst_matroska_demux_loop_stream_parse_id):
3183         * gst/matroska/matroska-demux.h:
3184         Don't set the segment duration to the duration from the Matroska
3185         header as this value could be wrong and is just informational.
3186
3187 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3188
3189         * gst/matroska/matroska-demux.c:
3190         (gst_matroska_demux_loop_stream_parse_id):
3191         If no Tracks element is found until the first Cluster is found
3192         search it and error out if none is found in the complete file.
3193
3194 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3195
3196         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3197         Resync non-subtitle tracks too if a too large gap compared to other
3198         tracks is detected.
3199
3200 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3201
3202         * gst/rtp/Makefile.am:
3203         * gst/rtp/gstrtp.c: (plugin_init):
3204         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3205         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3206         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3207         (gst_rtp_vraw_depay_change_state),
3208         (gst_rtp_vraw_depay_plugin_init):
3209         * gst/rtp/gstrtpvrawdepay.h:
3210         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3211         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3212         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3213         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3214         (gst_rtp_vraw_pay_plugin_init):
3215         * gst/rtp/gstrtpvrawpay.h:
3216         Add raw video pay and depayloaders, see RFC4175.
3217
3218 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
3219
3220         * ext/libpng/gstpngdec.c:
3221         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3222         whatever it returned.
3223
3224 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3225
3226         * gst/avi/avi-ids.h:
3227         Add vprp chunk related structures.
3228         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3229         (gst_avi_demux_parse_stream):
3230         Parse optional vprp chunk and add calculated pixel-aspect-ratio
3231         to caps.  Fixes #539482.
3232         * gst/avi/gstavimux.h:
3233         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3234         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3235         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3236
3237 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3238
3239         * tests/check/elements/avimux.c: (check_avimux_pad):
3240         Adjust avimux unit test according to increased streamheader size.
3241
3242 2008-06-27  David Schleef  <ds@schleef.org>
3243
3244         * gst/qtdemux/qtdemux.c: Add Dirac stream type
3245
3246 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
3247
3248         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3249         * gst/avi/gstavimux.h:
3250         Add 8 bytes to current streamheader to make for a complete one
3251         and to make more players happy.  Fixes #519460.
3252
3253 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
3254
3255         * sys/v4l2/v4l2_calls.c::
3256           Don't include unused gstv4l2xoverlay.h. Fixes build
3257           in case where X11 headers are not installed.
3258
3259 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3260
3261         * ext/dv/gstdv.c: (plugin_init):
3262         Fix compilation.
3263
3264 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
3265
3266         * ext/dv/gstdv.c: (plugin_init):
3267         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3268         DV decoder available.
3269         Fixes #532393
3270
3271 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3272
3273         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3274         Call getsockname() after the call to bind() to get updated values
3275         for the port, etc. This fixes the usage of udpsrc on anonymous
3276         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3277         Thanks to Aurelien Grimaud for pointing out the obvious fix.
3278
3279 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3280
3281         * tests/check/pipelines/wavpack.c: (bus_handler):
3282         Remove workaround for a bug in identity that is fixed in 0.10.20.
3283
3284 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
3285
3286         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3287
3288         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3289         Fix HTTP auth support with user/password passed via the URI.
3290         Fixes bug #540067.
3291
3292 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
3293
3294         * configure.ac:
3295           Depend on released versions of core and -base.
3296
3297 2008-06-23  Julien Moutte  <julien@fluendo.com>
3298
3299         * gst/matroska/matroska-demux.c:
3300         (gst_matroska_demux_read_track_encoding),
3301         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3302         format strings in macros. (makes it build on OS X again...)
3303
3304 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3305
3306         * gst/rtp/gstrtptheorapay.c:
3307         * gst/udp/gstmultiudpsink.c:
3308           Added debug.
3309
3310 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
3311
3312         * configure.ac: switch v4l2src over to the normal build instead of
3313         being 'experimental'. Fixes bug #536831.
3314
3315 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3316
3317         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3318         Remove unused variable so that we can compile again.
3319
3320 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
3321
3322         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3323         No need to check for audio/G723 and audio/32KADPCM here as they are
3324         no longer supported.
3325
3326 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3327
3328         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3329         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3330         Use G_GINT64_CONSTANT, this fixes the duration query on files without
3331         known length.
3332
3333 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3334
3335         * gst/matroska/matroska-demux.c:
3336         (gst_matroska_demux_add_wvpk_header),
3337         (gst_matroska_demux_audio_caps):
3338         * gst/matroska/matroska-ids.h:
3339         Fix demuxing of WavPack files. Muxing is still broken.
3340
3341 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3342
3343         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3344         (gst_matroska_demux_add_mpeg_seq_header),
3345         (gst_matroska_demux_add_wvpk_header),
3346         (gst_matroska_demux_check_subtitle_buffer),
3347         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3348         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3349         (gst_matroska_demux_subtitle_caps):
3350         * gst/matroska/matroska-ids.h:
3351         Add a "vfunc" to the track context for postprocessing frames and
3352         convert the wavpack and subtitle postprocessing to this vfunc.
3353         Copy buffer flags in those functions to the new buffers too.
3354
3355         Parse CodecState elements of Blocks.
3356
3357         Add a postprocessing function for MPEG video that adds the sequence
3358         header from the codec private data or codec state to the frames if
3359         it's not already there.
3360
3361 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
3362
3363         * gst/matroska/matroska-demux.c:
3364         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3365         If a gap of more than 1/2 second is found in one stream send a
3366         NEWSEGMENT event to not stall the pipeline if the gap is too large.
3367         This also fixes Matroska files where the first buffer doesn't start
3368         at timestamp 0. Fixes bug #429322.
3369
3370         The duration of a block is the default duration multiplied with the
3371         number of laces. Every lace is one frame and the default duration
3372         is the duration of one frame. This fixes playback of files that use
3373         lacing for some tracks.
3374
3375 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3376
3377         * gst/matroska/matroska-demux.c:
3378         (gst_matroska_demux_parse_contents_seekentry):
3379         Update FIXME/TODOs and only ignore EOS at the central, important place
3380         instead of several places.
3381
3382 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3383
3384         * gst/rtp/gstrtpg726pay.c:
3385         Fix caps, See #538891.
3386
3387 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
3388
3389         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3390         (gst_matroska_demux_stream_from_num),
3391         (gst_matroska_demux_encoding_cmp),
3392         (gst_matroska_demux_encoding_order_unique),
3393         (gst_matroska_demux_read_track_encoding),
3394         (gst_matroska_demux_read_track_encodings),
3395         (gst_matroska_demux_tracknumber_unique),
3396         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3397         (gst_matroska_demux_parse_tracks),
3398         (gst_matroska_demux_parse_index_cuetrack),
3399         (gst_matroska_demux_parse_index_pointentry),
3400         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3401         (gst_matroska_demux_parse_metadata_id_simple_tag),
3402         (gst_matroska_demux_parse_metadata_id_tag),
3403         (gst_matroska_demux_parse_metadata),
3404         (gst_matroska_demux_parse_attached_file),
3405         (gst_matroska_demux_parse_attachments),
3406         (gst_matroska_demux_parse_chapters),
3407         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3408         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3409         (gst_matroska_demux_parse_cluster),
3410         (gst_matroska_demux_parse_contents_seekentry),
3411         (gst_matroska_demux_parse_contents),
3412         (gst_matroska_demux_loop_stream_parse_id),
3413         (gst_matroska_demux_loop):
3414         Improve debug output everywhere and fix the EOS logic.
3415
3416         Check the values of the ContentEncoding elements more strictly and
3417         don't use tracks for which it's invalid.
3418
3419         Check that the track number is unique for this stream.
3420
3421         Check that seek positions are below G_MAXINT64 as our seeks are
3422         int64-based and overflows will fail badly.
3423
3424         After seeks also don't push SimpleBlocks until the first one
3425         containing a keyframe is found. Before this was done only for normal
3426         Blocks.
3427
3428         Update some FIXME/TODOs.
3429         
3430         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3431         (gst_ebml_read_utf8), (gst_ebml_read_header):
3432         Improve debug output.
3433
3434         * gst/matroska/matroska-ids.c:
3435         (gst_matroska_track_init_video_context):
3436         * gst/matroska/matroska-ids.h:
3437         * gst/matroska/matroska-mux.c:
3438         (gst_matroska_mux_video_pad_setcaps):
3439         Remove eye mode and don't parse it anymore. We can't use that
3440         information in GStreamer yet so it's useless.
3441
3442
3443 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3444
3445         Patch by: Mersad Jelacic <mersad at axis dot com>
3446
3447         * gst/rtp/Makefile.am:
3448         * gst/rtp/gstrtp.c: (plugin_init):
3449         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3450         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3451         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3452         (gst_rtp_g726_depay_plugin_init):
3453         * gst/rtp/gstrtpg726depay.h:
3454         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3455         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3456         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3457         * gst/rtp/gstrtpg726pay.h:
3458         Added G726 pay/depayloaders. Fixes #538891.
3459
3460 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3461
3462         * gst/rtsp/URLS:
3463         Some more urls.
3464
3465         * gst/smpte/barboxwipes.c:
3466         Add a comment
3467
3468         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3469         Fix typo, add audioresample to the pipeline.
3470
3471 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3472
3473         * ext/libmng/Makefile.am:
3474         * ext/libmng/gstmng.c: (plugin_init):
3475         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3476         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3477         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3478         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3479         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3480         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3481         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3482         (gst_mng_dec_change_state):
3483         * ext/libmng/gstmngdec.h:
3484         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3485         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3486         (gst_mng_enc_init), (gst_mng_enc_chain),
3487         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3488         * ext/libmng/gstmngenc.h:
3489         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3490         bits ifdeffed out still.
3491
3492 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3493
3494         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3495         When comparing index elements with the same time compare their
3496         block number.
3497
3498 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
3499
3500         * gst/matroska/matroska-demux.c:
3501           (gst_matroska_demux_parse_attached_file)
3502           Init variable to NULL to avoid compiler warning.
3503
3504 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3505
3506         * gst/matroska/Makefile.am:
3507         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3508         (gst_matroska_demux_parse_attached_file),
3509         (gst_matroska_demux_parse_attachments),
3510         (gst_matroska_demux_parse_contents_seekentry),
3511         (gst_matroska_demux_loop_stream_parse_id):
3512         * gst/matroska/matroska-demux.h:
3513         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3514         * gst/matroska/matroska-ids.h:
3515         * gst/matroska/matroska.c: (plugin_init):
3516         Parse Attachments and post them as GST_TAG_IMAGE if we detect
3517         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3518         and description of the attachments in the caps. Fixes bug #537622.
3519
3520 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
3521
3522         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3523         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3524         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3525         (gst_speex_enc_src_query), (gst_speex_enc_init),
3526         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3527         (gst_speex_enc_chain), (gst_speex_enc_get_property),
3528         (gst_speex_enc_set_property):
3529         Add mode property.
3530         Some cleanups, add more debug info.
3531         Add latency query.
3532
3533 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
3534
3535         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3536         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3537         If we get less bytes than requested we can't do anything except doing
3538         our EOS logic.
3539
3540 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3541
3542         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3543         (gst_matroskademux_do_index_seek),
3544         (gst_matroska_demux_parse_index_cuetrack),
3545         (gst_matroska_demux_parse_index_pointentry),
3546         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3547         (gst_matroska_demux_parse_metadata):
3548         * gst/matroska/matroska-demux.h:
3549         * gst/matroska/matroska-ids.h:
3550         Use a GArray for storing the Cue (i.e. seek) information, store
3551         the CueTrackPositions for every track, store the block number
3552         and optimize searching in the array by sorting it after the last
3553         element was added.
3554
3555         Fix a small memory leak when trying to parse a tags element that was
3556         already parsed.
3557
3558 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3559
3560         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3561         (gst_matroska_mux_start), (gst_matroska_mux_finish),
3562         (gst_matroska_mux_write_data):
3563         * gst/matroska/matroska-mux.h:
3564         Don't write another SeekHead which indexes all Clusters to the end of
3565         the file. This isn't useful for anything and just increases filesize.
3566
3567 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3568
3569         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3570         Prevent unaligned memory access when reading floats.
3571
3572 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3573
3574         * gst/matroska/ebml-read.c:
3575         * gst/matroska/ebml-read.h:
3576         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3577         (gst_matroska_demux_parse_metadata):
3578         * gst/matroska/matroska-demux.h:
3579         Make sure that every Tags element is only parsed once and it's
3580         containing tags are only posted once.
3581
3582 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
3583
3584         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3585         (gst_ebml_read_header):
3586         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3587         (gst_matroska_demux_parse_tracks),
3588         (gst_matroska_demux_parse_index_cuetrack),
3589         (gst_matroska_demux_parse_index_pointentry),
3590         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3591         (gst_matroska_demux_parse_metadata_id_simple_tag),
3592         (gst_matroska_demux_parse_metadata_id_tag),
3593         (gst_matroska_demux_parse_metadata),
3594         (gst_matroska_demux_parse_attachments),
3595         (gst_matroska_demux_parse_chapters),
3596         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3597         (gst_matroska_demux_parse_cluster),
3598         (gst_matroska_demux_parse_contents_seekentry),
3599         (gst_matroska_demux_parse_contents),
3600         (gst_matroska_demux_loop_stream_parse_id):
3601         Handle EBML elements like Void or CRC32 in the EbmlRead base class
3602         already. They're not useful in the matroska parser and only cause
3603         additional code.
3604
3605 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
3606
3607         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3608         (gst_ebml_finalize), (gst_ebml_read_change_state),
3609         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3610         * gst/matroska/matroska-demux.c:
3611         (gst_matroska_demux_parse_contents_seekentry):
3612         Reverse the level list as we usually are only interested in the
3613         first element or want to add a new first element. Having the
3614         first element stored at the end and calling g_list_last() and
3615         g_list_append() is more expensive.
3616
3617         Also use GSlice for allocating the GstEbmlLevel structs.
3618
3619 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
3620
3621         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3622           (gst_tag_inject_class_init), (gst_tag_inject_init):
3623           Don't unref NULL taglist in finalize. Don't use c++ style
3624           comments.
3625
3626 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3627
3628         * gst/matroska/matroska-demux.c:
3629         (gst_matroska_demux_parse_metadata_id_simple_tag):
3630         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3631         (gst_matroska_mux_write_data):
3632         Use gst_value_serialize() and gst_value_deserialize() for transforming
3633         tags from some GType to a string and the other way around. The default
3634         transformations in GLib don't include transformations from string to
3635         number types.
3636
3637 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
3638
3639         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3640         (gst_matroska_demux_parse_tracks),
3641         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3642         (gst_matroska_demux_parse_attachments),
3643         (gst_matroska_demux_parse_chapters),
3644         (gst_matroska_demux_parse_contents_seekentry),
3645         (gst_matroska_demux_loop_stream_parse_id):
3646         * gst/matroska/matroska-demux.h:
3647         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3648         Tags multiple times. The first ones can appear more than once but must
3649         contain the same content as the first for backup purposes so we ignore
3650         all but the first one. Tags can appear multiple times with different
3651         content.
3652
3653         Jump to all elements except Clusters that are available from a
3654         SeekHead to make it more likely to have all required informations
3655         before getting to the first Clusters.
3656
3657         Add dummy functions for parsing Attachments and Chapters.
3658
3659 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3660
3661         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3662         (gst_udpsrc_create), (gst_udpsrc_set_property),
3663         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3664         * gst/udp/gstudpsrc.h:
3665         Add property to control automatic join/leave of multicast groups.
3666         Add G_LIKELY.
3667         Remove setting caps on buffers explicitly, basesrc does that for us now.
3668         Improve debug info.
3669         Convert some non-fatal error into warnings.
3670         Use g_ntohs for better portability.
3671         Leave multicast groups when stopping.
3672         When using external sockets, use getsockname() on them to fill up the
3673         addr structure before calling methods that use the structure.
3674         Should all fix #536903.
3675         API: GstUDPSrc::auto-multicast property
3676
3677 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3678
3679         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3680         Use g_ntohl for better portability.
3681
3682 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3683
3684         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3685         (gst_multiudpsink_remove):
3686         Fix a typo and do some small cleanups.
3687
3688 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3689
3690         Patch by: Olivier Crete <tester at tester dot ca>
3691
3692         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3693         Make the delivery-method mandatory on the caps and only accept inline
3694         for now.
3695         Reverse strcmp checks for delivery-method.
3696
3697         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3698         Make delivery method optional when parsing caps and note this in the
3699         caps.
3700         Reverse strcmp checks for delivery-method.
3701
3702         * gst/rtp/gstrtpvorbispay.c:
3703         Update a comment to note that the delivery-method is optional, 
3704         Fixes #537675.
3705
3706 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3707
3708         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3709         Set udpsrc for receiving data from multicast groups to PAUSED instead of
3710         leaving them in READY. Fixes #537832.
3711
3712 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3713
3714         * gst/avi/gstavimux.c:
3715           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3716           for a random constant in tagmuxing code.
3717
3718 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3719
3720         * gst/debug/gsttaginject.c:
3721         * gst/debug/gsttaginject.h:
3722           Now actually adding the new element.
3723
3724 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
3725
3726         * docs/plugins/Makefile.am:
3727         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3728         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3729         * docs/plugins/gst-plugins-good-plugins.args:
3730         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3731         * docs/plugins/gst-plugins-good-plugins.interfaces:
3732         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3733         * docs/plugins/inspect/plugin-aasink.xml:
3734         * docs/plugins/inspect/plugin-alaw.xml:
3735         * docs/plugins/inspect/plugin-alpha.xml:
3736         * docs/plugins/inspect/plugin-alphacolor.xml:
3737         * docs/plugins/inspect/plugin-annodex.xml:
3738         * docs/plugins/inspect/plugin-apetag.xml:
3739         * docs/plugins/inspect/plugin-audiofx.xml:
3740         * docs/plugins/inspect/plugin-auparse.xml:
3741         * docs/plugins/inspect/plugin-autodetect.xml:
3742         * docs/plugins/inspect/plugin-avi.xml:
3743         * docs/plugins/inspect/plugin-cacasink.xml:
3744         * docs/plugins/inspect/plugin-cairo.xml:
3745         * docs/plugins/inspect/plugin-cdio.xml:
3746         * docs/plugins/inspect/plugin-cutter.xml:
3747         * docs/plugins/inspect/plugin-debug.xml:
3748         * docs/plugins/inspect/plugin-dv.xml:
3749         * docs/plugins/inspect/plugin-efence.xml:
3750         * docs/plugins/inspect/plugin-effectv.xml:
3751         * docs/plugins/inspect/plugin-equalizer.xml:
3752         * docs/plugins/inspect/plugin-esdsink.xml:
3753         * docs/plugins/inspect/plugin-flac.xml:
3754         * docs/plugins/inspect/plugin-flxdec.xml:
3755         * docs/plugins/inspect/plugin-gamma.xml:
3756         * docs/plugins/inspect/plugin-gconfelements.xml:
3757         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3758         * docs/plugins/inspect/plugin-goom.xml:
3759         * docs/plugins/inspect/plugin-goom2k1.xml:
3760         * docs/plugins/inspect/plugin-halelements.xml:
3761         * docs/plugins/inspect/plugin-icydemux.xml:
3762         * docs/plugins/inspect/plugin-id3demux.xml:
3763         * docs/plugins/inspect/plugin-jpeg.xml:
3764         * docs/plugins/inspect/plugin-level.xml:
3765         * docs/plugins/inspect/plugin-matroska.xml:
3766         * docs/plugins/inspect/plugin-monoscope.xml:
3767         * docs/plugins/inspect/plugin-mulaw.xml:
3768         * docs/plugins/inspect/plugin-multifile.xml:
3769         * docs/plugins/inspect/plugin-multipart.xml:
3770         * docs/plugins/inspect/plugin-navigationtest.xml:
3771         * docs/plugins/inspect/plugin-ossaudio.xml:
3772         * docs/plugins/inspect/plugin-png.xml:
3773         * docs/plugins/inspect/plugin-quicktime.xml:
3774         * docs/plugins/inspect/plugin-rtp.xml:
3775         * docs/plugins/inspect/plugin-rtsp.xml:
3776         * docs/plugins/inspect/plugin-smpte.xml:
3777         * docs/plugins/inspect/plugin-soup.xml:
3778         * docs/plugins/inspect/plugin-spectrum.xml:
3779         * docs/plugins/inspect/plugin-speex.xml:
3780         * docs/plugins/inspect/plugin-taglib.xml:
3781         * docs/plugins/inspect/plugin-udp.xml:
3782         * docs/plugins/inspect/plugin-video4linux2.xml:
3783         * docs/plugins/inspect/plugin-videobalance.xml:
3784         * docs/plugins/inspect/plugin-videobox.xml:
3785         * docs/plugins/inspect/plugin-videocrop.xml:
3786         * docs/plugins/inspect/plugin-videoflip.xml:
3787         * docs/plugins/inspect/plugin-videomixer.xml:
3788         * docs/plugins/inspect/plugin-wavenc.xml:
3789         * docs/plugins/inspect/plugin-wavpack.xml:
3790         * docs/plugins/inspect/plugin-wavparse.xml:
3791         * docs/plugins/inspect/plugin-ximagesrc.xml:
3792         * gst/debug/Makefile.am:
3793         * gst/debug/breakmydata.c:
3794         * gst/debug/efence.c:
3795         * gst/debug/gstdebug.c:
3796         * gst/debug/gstnavseek.c:
3797         * gst/debug/gstpushfilesrc.c:
3798         * gst/debug/gstpushfilesrc.h:
3799         * gst/debug/negotiation.c:
3800         * gst/debug/progressreport.c:
3801         * gst/debug/progressreport.h:
3802         * gst/debug/rndbuffersize.c:
3803         * gst/debug/testplugin.c:
3804           Remove dummy plugin_init. Remove some undefined entries from doc-
3805           section file. Add taginject element and rebuild docs for it.
3806
3807 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3808
3809         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
3810         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
3811         Update the counter for the number of streams when pads are added or
3812         removed. This will make sure that a seek table is generated for
3813         files with just one audio stream.
3814
3815 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3816
3817         * gst/matroska/matroska-demux.c:
3818         (gst_matroska_demux_parse_metadata_id_simple_tag):
3819         * gst/matroska/matroska-ids.h:
3820         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
3821         Add some more tags, improve debugging a bit and make sure that
3822         GValue transformation has succeeded before using the result
3823         as a tag.
3824
3825 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3826
3827         Patch by: Olivier Crete <tester at tester dot ca>
3828
3829         * gst/rtp/gstrtptheorapay.c:
3830         The Theora RTP payloader only supports the "inline" delievery method
3831         so let's declare this on the caps of the static pad template.
3832         Fixes bug #537675.
3833
3834 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3835
3836         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3837         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
3838         Remove bogus check.
3839
3840 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3841
3842         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
3843         (gst_videomixer_blend_buffers):
3844         Use stream_time to synchronize the object properties.
3845         Use running_time of the master pad to timestamp outgoing buffers.
3846         Fix the initial segment event to extend an unknown amount of time.
3847         Fixes #537361.
3848
3849 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3850
3851         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
3852         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
3853         (gst_avi_demux_calculate_durations_from_index),
3854         (gst_avi_demux_stream_header_push),
3855         (gst_avi_demux_stream_header_pull):
3856         Try to ignore unparsable/unknown streams and give a warning instead of
3857         erroring out. Fixes #537377.
3858
3859 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3860
3861         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
3862         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
3863
3864         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
3865         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
3866         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
3867         (gst_matroska_demux_read_track_encodings),
3868         (gst_matroska_demux_add_stream),
3869         (gst_matroska_demux_handle_src_query),
3870         (gst_matroska_demux_init_stream),
3871         (gst_matroska_demux_parse_index_cuetrack),
3872         (gst_matroska_demux_parse_index_pointentry),
3873         (gst_matroska_demux_parse_info),
3874         (gst_matroska_demux_parse_metadata_id_simple_tag),
3875         (gst_matroska_demux_parse_metadata),
3876         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
3877         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3878         (gst_matroska_demux_parse_cluster),
3879         (gst_matroska_demux_parse_contents_seekentry),
3880         (gst_matroska_demux_loop_stream_parse_id),
3881         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
3882         (gst_matroska_demux_audio_caps),
3883         (gst_matroska_demux_subtitle_caps):
3884         * gst/matroska/matroska-demux.h:
3885         * gst/matroska/matroska-ids.c:
3886         (gst_matroska_track_init_subtitle_context):
3887         * gst/matroska/matroska-ids.h:
3888         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
3889         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
3890         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
3891         (gst_matroska_mux_video_pad_setcaps),
3892         (gst_matroska_mux_audio_pad_setcaps),
3893         (gst_matroska_mux_subtitle_pad_setcaps),
3894         (gst_matroska_mux_request_new_pad),
3895         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
3896         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
3897         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
3898         (gst_matroska_mux_set_property):
3899         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
3900         elements, do some checks for valid values in the demuxer, handle
3901         tracktimecodescale in the demuxer, set correct default values for all
3902         settings in the demuxer, review and add all missing matroska
3903         IDs and some more raw YUV formats, and some trivial cleanup.
3904
3905 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3906
3907         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
3908         (gst_pulsemixer_class_init):
3909         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
3910         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
3911         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
3912         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
3913         (gst_pulsesrc_prepare):
3914         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
3915         gst_element_class_set_details_simple() and fix coding style a bit
3916         more.
3917
3918 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3919
3920         * docs/plugins/Makefile.am:
3921         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3922         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3923         * docs/plugins/gst-plugins-good-plugins.args:
3924         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3925         * docs/plugins/gst-plugins-good-plugins.interfaces:
3926         * docs/plugins/gst-plugins-good-plugins.prerequisites:
3927         * docs/plugins/inspect/plugin-aasink.xml:
3928         * docs/plugins/inspect/plugin-alaw.xml:
3929         * docs/plugins/inspect/plugin-alpha.xml:
3930         * docs/plugins/inspect/plugin-alphacolor.xml:
3931         * docs/plugins/inspect/plugin-annodex.xml:
3932         * docs/plugins/inspect/plugin-apetag.xml:
3933         * docs/plugins/inspect/plugin-audiofx.xml:
3934         * docs/plugins/inspect/plugin-auparse.xml:
3935         * docs/plugins/inspect/plugin-autodetect.xml:
3936         * docs/plugins/inspect/plugin-avi.xml:
3937         * docs/plugins/inspect/plugin-cacasink.xml:
3938         * docs/plugins/inspect/plugin-cairo.xml:
3939         * docs/plugins/inspect/plugin-cdio.xml:
3940         * docs/plugins/inspect/plugin-cutter.xml:
3941         * docs/plugins/inspect/plugin-debug.xml:
3942         * docs/plugins/inspect/plugin-dv.xml:
3943         * docs/plugins/inspect/plugin-efence.xml:
3944         * docs/plugins/inspect/plugin-effectv.xml:
3945         * docs/plugins/inspect/plugin-equalizer.xml:
3946         * docs/plugins/inspect/plugin-esdsink.xml:
3947         * docs/plugins/inspect/plugin-flac.xml:
3948         * docs/plugins/inspect/plugin-flxdec.xml:
3949         * docs/plugins/inspect/plugin-gamma.xml:
3950         * docs/plugins/inspect/plugin-gconfelements.xml:
3951         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3952         * docs/plugins/inspect/plugin-goom.xml:
3953         * docs/plugins/inspect/plugin-goom2k1.xml:
3954         * docs/plugins/inspect/plugin-halelements.xml:
3955         * docs/plugins/inspect/plugin-icydemux.xml:
3956         * docs/plugins/inspect/plugin-id3demux.xml:
3957         * docs/plugins/inspect/plugin-jpeg.xml:
3958         * docs/plugins/inspect/plugin-level.xml:
3959         * docs/plugins/inspect/plugin-matroska.xml:
3960         * docs/plugins/inspect/plugin-monoscope.xml:
3961         * docs/plugins/inspect/plugin-mulaw.xml:
3962         * docs/plugins/inspect/plugin-multifile.xml:
3963         * docs/plugins/inspect/plugin-multipart.xml:
3964         * docs/plugins/inspect/plugin-navigationtest.xml:
3965         * docs/plugins/inspect/plugin-ossaudio.xml:
3966         * docs/plugins/inspect/plugin-png.xml:
3967         * docs/plugins/inspect/plugin-pulseaudio.xml:
3968         * docs/plugins/inspect/plugin-quicktime.xml:
3969         * docs/plugins/inspect/plugin-rtp.xml:
3970         * docs/plugins/inspect/plugin-rtsp.xml:
3971         * docs/plugins/inspect/plugin-smpte.xml:
3972         * docs/plugins/inspect/plugin-soup.xml:
3973         * docs/plugins/inspect/plugin-spectrum.xml:
3974         * docs/plugins/inspect/plugin-speex.xml:
3975         * docs/plugins/inspect/plugin-taglib.xml:
3976         * docs/plugins/inspect/plugin-udp.xml:
3977         * docs/plugins/inspect/plugin-video4linux2.xml:
3978         * docs/plugins/inspect/plugin-videobalance.xml:
3979         * docs/plugins/inspect/plugin-videobox.xml:
3980         * docs/plugins/inspect/plugin-videocrop.xml:
3981         * docs/plugins/inspect/plugin-videoflip.xml:
3982         * docs/plugins/inspect/plugin-videomixer.xml:
3983         * docs/plugins/inspect/plugin-wavenc.xml:
3984         * docs/plugins/inspect/plugin-wavpack.xml:
3985         * docs/plugins/inspect/plugin-wavparse.xml:
3986         * docs/plugins/inspect/plugin-ximagesrc.xml:
3987         * ext/pulse/plugin.c:
3988         * ext/pulse/pulsemixer.c:
3989         * ext/pulse/pulsesink.c:
3990         * ext/pulse/pulsesrc.c:
3991         Add documentation to the pulseaudio plugin and run make update
3992         in docs/plugins.
3993
3994 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3995
3996         Patch by: Brian Cameron <brian.cameron at sun dot com>
3997
3998         * sys/sunaudio/gstsunaudiomixerctrl.c:
3999         (gst_sunaudiomixer_ctrl_get_volume),
4000         (gst_sunaudiomixer_ctrl_set_volume):
4001         Improvements for the SunAudio mixer by handling mute as no gain
4002         for tracks that have a gain property but no mute property.
4003         Fixes bug #536067.
4004
4005 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
4006
4007         * configure.ac:
4008         * ext/pulse/Makefile.am:
4009         * ext/pulse/plugin.c: (plugin_init):
4010         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4011         (gst_pulsemixer_implements_interface_init),
4012         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4013         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4014         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4015         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4016         * ext/pulse/pulsemixer.h:
4017         * ext/pulse/pulsemixerctrl.c:
4018         (gst_pulsemixer_ctrl_context_state_cb),
4019         (gst_pulsemixer_ctrl_sink_info_cb),
4020         (gst_pulsemixer_ctrl_source_info_cb),
4021         (gst_pulsemixer_ctrl_subscribe_cb),
4022         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4023         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4024         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4025         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4026         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4027         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4028         * ext/pulse/pulsemixerctrl.h:
4029         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4030         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4031         * ext/pulse/pulsemixertrack.h:
4032         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4033         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4034         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4035         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4036         (gst_pulseprobe_new), (gst_pulseprobe_free),
4037         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4038         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4039         (gst_pulseprobe_set_server):
4040         * ext/pulse/pulseprobe.h:
4041         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4042         (gst_pulsesink_class_init), (gst_pulsesink_init),
4043         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4044         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4045         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4046         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4047         (gst_pulsesink_stream_request_cb),
4048         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4049         (gst_pulsesink_close), (gst_pulsesink_prepare),
4050         (gst_pulsesink_unprepare), (gst_pulsesink_write),
4051         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4052         (gst_pulsesink_reset), (gst_pulsesink_change_title),
4053         (gst_pulsesink_event), (gst_pulsesink_get_type):
4054         * ext/pulse/pulsesink.h:
4055         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4056         (gst_pulsesrc_implements_interface_init),
4057         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4058         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4059         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4060         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4061         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4062         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4063         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4064         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4065         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4066         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4067         (gst_pulsesrc_get_type):
4068         * ext/pulse/pulsesrc.h:
4069         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4070         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4071         * ext/pulse/pulseutil.h:
4072         Add pulseaudio GStreamer element from gst-pulse. Development will
4073         continue here instead of pulseaudio SVN. Fixes bug #400679.
4074         Only changes over gst-pulse SVN are added copyright to the top of
4075         files and coding style changes.
4076
4077 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
4078
4079         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
4080
4081         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4082           (gst_cdio_add_cdtext_album_tags):
4083         * ext/cdio/gstcdio.h:
4084         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4085           Also extract album title and album genre from CD-TEXT if
4086           available (#537021).
4087
4088 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4089
4090         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4091
4092         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4093         Improve negotiation a bit more by picking the smallest possible
4094         resolution that is larger than the resolution specified in the
4095         first caps entry of the peer caps. Fixes bug #536994.
4096
4097 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
4098
4099         Patch by: Bastien Nocera <hadess at hadess dot net>
4100
4101         * sys/v4l2/gstv4l2vidorient.c:
4102         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4103         Fix compilation with newer GIT kernels that deprecated
4104         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4105
4106 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4107
4108         * configure.ac:
4109         * ext/cdio/gstcdio.c:
4110         * ext/cdio/gstcdio.h:
4111         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4112           Require libcdio >= 0.76.
4113
4114 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
4115
4116         * gst/avi/gstavidemux.c:
4117         Catch UNEXPECTED when downstream has reached end of
4118         segment in reverse mode.
4119
4120 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4121
4122         * gst/avi/gstavidemux.c:
4123         Fix typo in comment
4124
4125 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4126
4127         * gst/avi/gstavidemux.c:
4128         Because we don't know the frame order we need to push till
4129         the next keyframe
4130
4131 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4132
4133         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4134
4135         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4136         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4137         Provide a custom negotiation function to make sure to pick the highest
4138         possible framerate and resolution. Fixes bug #536646.
4139
4140 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
4141
4142         * gst/avi/gstavidemux.c:
4143         Set EOS when going out of the segment in reverse playback
4144
4145 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4146
4147         * ext/taglib/Makefile.am::
4148           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4149           taglib headers (with gcc 4.3.1).
4150
4151 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
4152
4153         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4154         Use the new gst_rtsp_connection_get_ip() to access the IP address
4155         of a GstRTSPConnection since it is a private member.
4156
4157 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
4158
4159         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4160         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4161           Use new utility functions in libgsttag to process coverart (#512333).
4162
4163 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4164
4165         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4166         We actually support left/side, right/side and mid/side files. The
4167         conversion to normal, interleaved stereo is done by libflac.
4168
4169 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
4170
4171         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4172         (gst_ebml_write_set_cache):
4173         Unref the write cache in finalize if it was set and add add "FIXME"
4174         to a comment that needs it.
4175
4176 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4177
4178         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4179
4180         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4181         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4182         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4183         (gst_avi_demux_process_next_entry):
4184         * gst/avi/gstavidemux.h:
4185         Implement reverse playback. Fixes #535300.
4186         Small cleanups.
4187
4188 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
4189
4190         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4191         (gst_videomixer_query_latency):
4192         When using gst_element_iterate_pads() one has to unref every pad
4193         after usage.
4194
4195 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
4196
4197         Patch by: Bastien Nocera <hadess at hadess dot net>
4198         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4199         (qtdemux_parse_udta):
4200         * gst/qtdemux/qtdemux_fourcc.h:
4201         Improve meta-data handling, add 'comment', 'description' and
4202         'copyright' tag handling.
4203         Fixes #535935
4204
4205 2008-05-31  Julien Moutte  <julien@fluendo.com>
4206
4207         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4208         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4209         (gst_qtdemux_seek_to_previous_keyframe),
4210         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4211         we don't clip the segment's stop using the main segment duration as
4212         that could crop quite some video frames. Make reverse playback support
4213         more robust and support edit lists. Support seeking to the last frame,
4214         and fix reverse looping playback. Add some debugging.
4215         * win32/common/config.h: Updated.
4216
4217 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
4218
4219         * gst/equalizer/gstiirequalizer.c:
4220         (gst_iir_equalizer_transform_ip):
4221         Don't clip float/double samples, correctly unset passthrough mode
4222         and use better rounding for integer samples.
4223
4224 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
4225
4226         * gst/equalizer/gstiirequalizer.c:
4227         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4228         (setup_filter), (set_passthrough), (update_coefficients),
4229         (gst_iir_equalizer_compute_frequencies),
4230         (gst_iir_equalizer_transform_ip):
4231         * gst/equalizer/gstiirequalizer.h:
4232         Update the filter coefficients only when needed in the transform_ip
4233         function and correctly set the element into passthrough mode if the
4234         gain of all bands is 0.
4235
4236 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4237
4238         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4239
4240         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4241         (gst_alpha_set_property), (gst_alpha_get_property),
4242         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4243         Try to skip pixels or areas that are too dark or too bright for us to do
4244         meaningfull color detection.
4245         Added properties to control the sensitivity to light and darkness.
4246         Added some small cleanups. Fixes #512345.
4247
4248 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
4249
4250         * docs/plugins/.cvsignore:
4251         * tests/check/elements/.cvsignore:
4252         Ignore some more generated things
4253
4254         * tests/check/Makefile.am:
4255         Ignore OSS elements in the state changes test too.
4256
4257 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4258
4259         * docs/plugins/Makefile.am:
4260         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4261         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4262         Add SMPTE effect elements to docs.
4263
4264 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4265
4266         * docs/plugins/Makefile.am:
4267         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4268         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4269         * ext/raw1394/gstdv1394src.c:
4270           Document whats first shown on the fdo plugin docs page :)
4271
4272 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4273
4274         * docs/plugins/Makefile.am:
4275         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4276         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4277         * docs/plugins/gst-plugins-good-plugins.args:
4278         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4279         * docs/plugins/inspect/plugin-audiofx.xml:
4280         * gst/audiofx/Makefile.am:
4281         * gst/audiofx/audiofx.c:
4282         * gst/audiofx/audiokaraoke.c:
4283         * gst/audiofx/audiokaraoke.h:
4284         * gst/audiofx/audiovoice.c:
4285         * gst/audiofx/audiovoice.h:
4286           Rename audiovoice to audiokaraoke and add it to the docs.
4287
4288 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
4289
4290         * REQUIREMENTS:
4291         * docs/plugins/Makefile.am:
4292         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4293         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4294         * docs/plugins/gst-plugins-good-plugins.args:
4295         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4296         * docs/plugins/gst-plugins-good-plugins.interfaces:
4297         * docs/plugins/gst-plugins-good-plugins.prerequisites:
4298         * docs/plugins/inspect/plugin-aasink.xml:
4299         * docs/plugins/inspect/plugin-alaw.xml:
4300         * docs/plugins/inspect/plugin-alpha.xml:
4301         * docs/plugins/inspect/plugin-alphacolor.xml:
4302         * docs/plugins/inspect/plugin-annodex.xml:
4303         * docs/plugins/inspect/plugin-apetag.xml:
4304         * docs/plugins/inspect/plugin-audiofx.xml:
4305         * docs/plugins/inspect/plugin-auparse.xml:
4306         * docs/plugins/inspect/plugin-autodetect.xml:
4307         * docs/plugins/inspect/plugin-avi.xml:
4308         * docs/plugins/inspect/plugin-cacasink.xml:
4309         * docs/plugins/inspect/plugin-cairo.xml:
4310         * docs/plugins/inspect/plugin-cdio.xml:
4311         * docs/plugins/inspect/plugin-cutter.xml:
4312         * docs/plugins/inspect/plugin-debug.xml:
4313         * docs/plugins/inspect/plugin-dv.xml:
4314         * docs/plugins/inspect/plugin-efence.xml:
4315         * docs/plugins/inspect/plugin-effectv.xml:
4316         * docs/plugins/inspect/plugin-equalizer.xml:
4317         * docs/plugins/inspect/plugin-esdsink.xml:
4318         * docs/plugins/inspect/plugin-flac.xml:
4319         * docs/plugins/inspect/plugin-flxdec.xml:
4320         * docs/plugins/inspect/plugin-gamma.xml:
4321         * docs/plugins/inspect/plugin-gconfelements.xml:
4322         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4323         * docs/plugins/inspect/plugin-goom.xml:
4324         * docs/plugins/inspect/plugin-goom2k1.xml:
4325         * docs/plugins/inspect/plugin-halelements.xml:
4326         * docs/plugins/inspect/plugin-icydemux.xml:
4327         * docs/plugins/inspect/plugin-id3demux.xml:
4328         * docs/plugins/inspect/plugin-jpeg.xml:
4329         * docs/plugins/inspect/plugin-level.xml:
4330         * docs/plugins/inspect/plugin-matroska.xml:
4331         * docs/plugins/inspect/plugin-monoscope.xml:
4332         * docs/plugins/inspect/plugin-mulaw.xml:
4333         * docs/plugins/inspect/plugin-multifile.xml:
4334         * docs/plugins/inspect/plugin-multipart.xml:
4335         * docs/plugins/inspect/plugin-navigationtest.xml:
4336         * docs/plugins/inspect/plugin-ossaudio.xml:
4337         * docs/plugins/inspect/plugin-png.xml:
4338         * docs/plugins/inspect/plugin-quicktime.xml:
4339         * docs/plugins/inspect/plugin-rtp.xml:
4340         * docs/plugins/inspect/plugin-rtsp.xml:
4341         * docs/plugins/inspect/plugin-smpte.xml:
4342         * docs/plugins/inspect/plugin-soup.xml:
4343         * docs/plugins/inspect/plugin-spectrum.xml:
4344         * docs/plugins/inspect/plugin-speex.xml:
4345         * docs/plugins/inspect/plugin-taglib.xml:
4346         * docs/plugins/inspect/plugin-udp.xml:
4347         * docs/plugins/inspect/plugin-video4linux2.xml:
4348         * docs/plugins/inspect/plugin-videobalance.xml:
4349         * docs/plugins/inspect/plugin-videobox.xml:
4350         * docs/plugins/inspect/plugin-videocrop.xml:
4351         * docs/plugins/inspect/plugin-videoflip.xml:
4352         * docs/plugins/inspect/plugin-videomixer.xml:
4353         * docs/plugins/inspect/plugin-wavenc.xml:
4354         * docs/plugins/inspect/plugin-wavpack.xml:
4355         * docs/plugins/inspect/plugin-wavparse.xml:
4356         * docs/plugins/inspect/plugin-ximagesrc.xml:
4357         * ext/aalib/gstaasink.c:
4358         * ext/libcaca/gstcacasink.c:
4359           Document aasink and cacasink.
4360
4361 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
4362
4363         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4364         (gst_videomixer_init), (gst_videomixer_query_duration),
4365         (gst_videomixer_query_latency), (gst_videomixer_query),
4366         (gst_videomixer_blend_buffers):
4367         * gst/videomixer/videomixer.h:
4368         Implement position (in time), duration and latency queries.
4369
4370 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
4371
4372         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4373         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4374         (gst_videomixer_fill_queues), (forward_event_func),
4375         (forward_event), (gst_videomixer_src_event),
4376         (gst_videomixer_sink_event):
4377         * gst/videomixer/videomixer.h:
4378         Implement proper seek/newsegment handling.
4379         Based on adder's implementation.
4380         Fixes #535121
4381
4382 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4383
4384         Patch by: Jan Gerber <j at oil21 dot org>
4385
4386         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4387         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4388
4389 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4390
4391         * gst/audiofx/Makefile.am:
4392         * gst/audiofx/audiofx.c: (plugin_init):
4393         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4394         (gst_audio_voice_class_init), (gst_audio_voice_init),
4395         (update_filter), (gst_audio_voice_set_property),
4396         (gst_audio_voice_get_property), (gst_audio_voice_setup),
4397         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4398         (gst_audio_voice_transform_ip):
4399         * gst/audiofx/audiovoice.h:
4400         Add simple voice removal element. Yay karaoke.
4401
4402 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4403
4404         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4405
4406         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4407         Fix potential caps leak.
4408         If we can't get the framerate with an ioctl, try to get it with the
4409         current norm. Fixes #520092.
4410
4411 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4412
4413         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4414
4415         * sys/v4l2/v4l2src_calls.c:
4416         (gst_v4l2src_probe_caps_for_format_and_size):
4417         If we fail to get the frame intervals, simply don't touch the framerates
4418         on the template caps instead of discarding the format. See #520092.
4419
4420 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4421
4422         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4423
4424         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4425         (gst_v4l2_get_caps_info):
4426         Add NV12, NV21 and bayer support. See #520092.
4427
4428 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
4429
4430         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4431         (gst_qtdemux_activate_segment):
4432         Unbreak segment activation again. Fixes #531672.
4433
4434 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
4435
4436         * ext/flac/Makefile.am:
4437         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4438         Set the channel layout when decoding FLAC files with more than 2
4439         channels as defined by the FLAC spec. Fixes bug #534570.
4440
4441         Also don't try to decode left/side, right/side and mid/side files
4442         as we don't support this at all.
4443
4444 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
4445
4446         * configure.ac:
4447           We need -base CVS (rtsp).
4448
4449 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
4450
4451         * gst/udp/Makefile.am:
4452           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4453           when including netdb.h when building against glibc >= 2.8.
4454
4455 2008-05-22  Julien Moutte  <julien@fluendo.com>
4456
4457         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4458         debug statement arguments.
4459         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4460         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4461         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4462         on more platforms.
4463
4464 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4465
4466         * tests/check/elements/avimux.c: (setup_src_pad),
4467         (teardown_src_pad):
4468         * tests/check/elements/icydemux.c: (icydemux_found_pad),
4469         (GST_START_TEST):
4470         * tests/check/elements/matroskamux.c: (setup_src_pad),
4471         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4472         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4473         (GST_START_TEST):
4474         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4475         (setup_wavpackparse), (cleanup_wavpackparse):
4476         Don't use gst_element_get_pad(), it's a bad, bad method.
4477
4478 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4479
4480         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4481         (do_toggle_element):
4482         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4483         (do_toggle_element):
4484         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4485         (do_toggle_element):
4486         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4487         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4488         (do_toggle_element):
4489         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4490         (do_toggle_element):
4491         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4492         (gst_auto_audio_sink_detect):
4493         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4494         (gst_auto_video_sink_detect):
4495         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4496         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4497         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4498         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4499         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4500         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4501         * tests/icles/videocrop-test.c: (test_with_caps),
4502         (video_crop_get_test_caps):
4503         Don't use gst_element_get_pad(), it's a bad method.
4504
4505 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4506
4507         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4508         (gst_multiudpsink_add_internal):
4509         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4510         (gst_udp_join_group):
4511         * gst/udp/gstudpnetutils.h:
4512         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4513         Joining a multicast group and setting the loop/ttl properties are
4514         totally unrelated tasks are must be separated.
4515
4516 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
4517
4518         * gst/avi/gstavimux.c:
4519           Also support alaw/mulaw.
4520
4521 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4522
4523         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4524         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4525         * gst/udp/gstmultiudpsink.h:
4526         Add a fixme for the auto-multicast property.
4527         Fix some confusing debug messages.
4528         Disable setting a qos value by default.
4529
4530 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4531
4532         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4533
4534         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4535         Ignore EPERM errors from sendto. Fixes #533619.
4536
4537 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4538
4539         Patch by: Henrik Eriksson <henriken at axis dot com>
4540
4541         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4542         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4543         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4544         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4545         * gst/udp/gstmultiudpsink.h:
4546         Add qos-dscp property to manage the Quality of service. Fixes #469917.
4547
4548 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4549
4550         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4551         Improve debugging of the ident.
4552
4553 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4554
4555         Patch by: Bruno Santos <brunof at ua dot pt>
4556
4557         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4558         (gst_udp_join_group), (gst_udp_leave_group),
4559         (gst_udp_is_multicast):
4560         * gst/udp/gstudpnetutils.h:
4561         Provide a bunch of helper methods to deal with IPv4 and IPv6
4562         transparently.
4563
4564         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4565         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4566         (gst_multiudpsink_get_property), (join_multicast),
4567         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4568         (gst_multiudpsink_remove):
4569         * gst/udp/gstmultiudpsink.h:
4570         Add multicast TTL and loopback properties.
4571         Use the helper methods to implement ip4 and ip6.
4572
4573         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4574         * gst/udp/gstudpsrc.h:
4575         Use the helper methods to implement ip4 and ip6.
4576         Fixes #515962.
4577
4578 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4579
4580         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4581
4582         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4583         (gst_multipart_demux_get_gstname),
4584         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4585         * gst/multipart/multipartdemux.h:
4586         Don't blindly copy the mime-type as the caps name because they not
4587         always map directly. Instead use a hashtable with common mappings.
4588         Fixes #533287.
4589
4590 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4591
4592         * ext/esd/esdsink.c: (gst_esdsink_write):
4593         When we post an error, we must return -1 to let the parent know that we
4594         cannot write the segment else it will loop and continue to call us again
4595         forever. Patch by Michael Meeks.
4596
4597 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
4598
4599         * gst/videomixer/videomixer.c:
4600           Add missing incudes.
4601
4602 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
4603
4604         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4605         (gst_rtp_h264_pay_handle_buffer):
4606         * gst/rtp/gstrtph264pay.h:
4607         Correct a typo (sinle -> single).
4608
4609 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4610
4611         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4612         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4613         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4614         (gst_rtp_h264_depay_process):
4615         * gst/rtp/gstrtph264depay.h:
4616         Add experimental support for outputting quicktime-like AVC output in
4617         addition to the existing bytestream output.
4618
4619         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4620         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4621         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4622         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4623         (gst_rtp_h264_pay_get_property):
4624         * gst/rtp/gstrtph264pay.h:
4625         Make the parsing mode configurable, for some inputs we don't need to
4626         scan every byte for start codes.
4627         Only set the marker bit on ACCESS units.
4628
4629 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
4630
4631         * gst/equalizer/gstiirequalizer.c:
4632         Use a bigger type in integer mode for the intermediate results to
4633         prevent overflows. This fixes the crippled sound when using the
4634         equalizer in integer mode. Fixes bug #510865.
4635
4636 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
4637
4638         * gst/videomixer/videomixer.c:
4639         * gst/videomixer/videomixer.h:
4640         Instead of a random number for the request pad id's,
4641         use a counter.
4642
4643         Register the videomixerpad class from the element's class_init
4644         where it's safer, and allows the docs generator to scan it.
4645
4646 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4647
4648         * gst/smpte/Makefile.am:
4649         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4650         * gst/smpte/gstsmpte.h:
4651         * gst/smpte/gstsmptealpha.c:
4652         (gst_smpte_alpha_transition_type_get_type),
4653         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4654         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4655         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4656         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4657         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4658         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4659         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4660         * gst/smpte/gstsmptealpha.h:
4661         * gst/smpte/plugin.c: (plugin_init):
4662         Add new plugin that adds the SMPTE transition in the alpha channel of
4663         I420 and AYUV frames so that they can be blended with videomixer later
4664         on. Uses all niceties such as using base transform for efficient alloc
4665         and negotiation. It currently requires GstController to control the
4666         position in the transition effect.
4667
4668 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
4669
4670         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4671         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4672         * docs/plugins/gst-plugins-good-plugins.args:
4673         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4674         * docs/plugins/gst-plugins-good-plugins.interfaces:
4675         * docs/plugins/gst-plugins-good-plugins.types:
4676         * gst/videomixer/videomixer.c:
4677           Try using thaytans new mechanism to get extra classes into plugin
4678           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4679           missing still.
4680
4681 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
4682
4683         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4684         Set proper rate in avi stream header for PCM audio, and also do some
4685         more sanity checks on caps in this case.  Fixes #511489.
4686
4687 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4688
4689         * sys/v4l2/gstv4l2src.c:
4690         Don't include the gstv4l2xoverlay.h header as the XOverlay support
4691         isn't implemented at all yet and this requires X headers to be
4692         installed. Fixes bug #533264.
4693
4694 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
4695
4696         reviewed by: <delete if not using a buddy>
4697
4698         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4699         (gst_ebml_write_set_cache):
4700         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4701         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4702         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4703         (gst_matroska_demux_read_track_encodings),
4704         (gst_matroska_demux_add_stream),
4705         (gst_matroska_demux_handle_src_query),
4706         (gst_matroska_demux_init_stream),
4707         (gst_matroska_demux_parse_index_cuetrack),
4708         (gst_matroska_demux_parse_index_pointentry),
4709         (gst_matroska_demux_parse_info),
4710         (gst_matroska_demux_parse_metadata_id_simple_tag),
4711         (gst_matroska_demux_parse_metadata),
4712         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4713         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4714         (gst_matroska_demux_parse_cluster),
4715         (gst_matroska_demux_parse_contents_seekentry),
4716         (gst_matroska_demux_loop_stream_parse_id),
4717         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4718         (gst_matroska_demux_audio_caps),
4719         (gst_matroska_demux_subtitle_caps):
4720         * gst/matroska/matroska-demux.h:
4721         * gst/matroska/matroska-ids.c:
4722         (gst_matroska_track_init_subtitle_context):
4723         * gst/matroska/matroska-ids.h:
4724         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4725         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4726         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4727         * sys/v4l2/gstv4l2src.c:
4728         * tests/check/pipelines/wavpack.c: (bus_handler):
4729         * win32/common/config.h:
4730
4731 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
4732
4733         * ext/wavpack/gstwavpackstreamreader.c:
4734         * tests/examples/spectrum/demo-audiotest.c:
4735         * tests/examples/spectrum/demo-osssrc.c:
4736         Fix some compiler warnings.
4737
4738 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4739
4740         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4741         Small comment added.
4742
4743         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4744         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4745         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4746         Debug string cleanups (remove trailing \n)
4747         Refactor and clean up the payloader a bit and make sure that we only
4748         put one NAL unit in an RTP packet even if the input buffer contains
4749         multiple NAL units.
4750         Add suport for AVC format input.
4751
4752 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
4753
4754         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4755         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4756         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4757         * gst/rtp/gstrtph264pay.h:
4758         Make it possible to specify profile-level-id and sprop-parameter-sets
4759         using properties in case they are not available in-stream.
4760
4761 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
4762
4763         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4764         * docs/plugins/gst-plugins-good-plugins.args:
4765         * docs/plugins/inspect/plugin-ladspa.xml:
4766           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4767
4768 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
4769
4770         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4771         Send an initial BYTE segment to inform downstream of later seeking,
4772         and to forego sync attempts.
4773
4774 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4775
4776         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4777         Fix wrong caps string.
4778
4779 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4780
4781         Based on patch by: Olivier Crete <tester at tester dot ca>
4782
4783         * gst/rtp/Makefile.am:
4784         * gst/rtp/gstrtp.c: (plugin_init):
4785         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4786         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4787         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4788         (gst_rtp_g729_depay_plugin_init):
4789         * gst/rtp/gstrtpg729depay.h:
4790         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4791         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4792         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4793         * gst/rtp/gstrtpg729pay.h:
4794         Added G729 pay and depayloaders. Fixes #532409.
4795
4796 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4797
4798         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4799         Fix the calculation of the duration of the concealment packets.
4800
4801 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4802
4803         Based on patch by: Olivier Crete <tester at tester dot ca>
4804
4805         * gst/rtp/Makefile.am:
4806         * gst/rtp/gstrtp.c: (plugin_init):
4807         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4808         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
4809         (parse_encode), (gst_rtp_dv_depay_setcaps),
4810         (calculate_difblock_location), (gst_rtp_dv_depay_process),
4811         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
4812         (gst_rtp_dv_depay_plugin_init):
4813         * gst/rtp/gstrtpdvdepay.h:
4814         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
4815         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
4816         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
4817         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
4818         (gst_dv_pay_negotiate), (include_dif),
4819         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
4820         * gst/rtp/gstrtpdvpay.h:
4821         Add DV pay and depayloaders. Fixes #532423.
4822
4823 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4824
4825         * gst/matroska/matroska-demux.c:
4826         (gst_matroska_demux_push_dvd_clut_change_event):
4827         Convert subtitle palette info in VobSub private data from VobSub's
4828         (buggy) RGB to YUV.
4829
4830 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
4831
4832         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
4833         Do not leave fourcc stream header field empty upon reset.
4834         Fixes #519301.
4835
4836 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4837
4838         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4839         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4840         * docs/plugins/inspect/plugin-goom.xml:
4841         * docs/plugins/inspect/plugin-goom2k1.xml:
4842         * gst/goom/gstgoom.c:
4843         * gst/goom2k1/gstgoom.c:
4844         Add goom2k1 into the docs.
4845
4846 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4847
4848         Based on patch by: Wouter Cloetens  <wouter at mind be>
4849
4850         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4851         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
4852         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
4853         (gst_rtsp_decode_quoted_string),
4854         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
4855         (gst_rtspsrc_setup_auth):
4856         Support Digest authentication. Fixes #532065.
4857
4858 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
4859
4860         * gst/level/gstlevel.c:
4861           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
4862           about whats needed for liboil acceleration. Simplify docs a bit.
4863
4864 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4865
4866         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4867
4868         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
4869         Update the track duration if the old one was invalid.
4870         Fixes bug #532117.
4871
4872 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4873
4874         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
4875           Use GST_STR_NULL when trying to print sps and pps strings that could
4876           be NULL, as this might crash on some platforms.
4877
4878 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4879
4880         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4881
4882         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
4883           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
4884           set after creating the clipper.
4885
4886 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4887
4888         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4889
4890         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
4891           Added checking of surface lost case after an unsuccessful
4892           IDirectDrawSurface7_Lock() call.
4893           If surface is lost, return GST_FLOW_OK.
4894
4895 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4896
4897         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4898
4899         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
4900           WndProc, gst_directdraw_sink_window_thread):
4901           Improved Windows message loop and fixed window destruction issue.
4902           When the window which DirectDraw is rendering to is destroyed, the
4903           render/show_frame function will return GST_FLOW_ERROR.
4904           Partially fixes #520885.
4905
4906 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4907
4908         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
4909
4910         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
4911           Fixed mid stream resolution change bug, the offscreen surface is now
4912           released when set_caps is called.
4913           Partially fixes #520885.
4914
4915 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4916
4917         * sys/directdraw/gstdirectdrawsink.c
4918           (gst_directdraw_sink_buffer_alloc):
4919           Make it so that gst_directdraw_sink_buffer_alloc uses the right
4920           width/height.
4921
4922           Especially when looking through the pool of buffers, make sure that
4923           the width/height of caps is used instead of the already negotiated
4924           dimensions.
4925           For example if a buffer with different caps is requested, i.e.
4926           higher resolution, the caller would get a buffer with the old
4927           dimensions and thus corrupt the heap.
4928
4929 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4930
4931         * sys/directdraw/gstdirectdrawsink.c
4932           (gst_directdraw_sink_buffer_alloc):
4933           Clear the flags on recycled buffers from buffer_alloc.
4934           Partially fixes #520885.
4935
4936 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4937
4938         * gst/rtp/gstrtpilbcpay.c:
4939           Added missing stdlib.h include for strtol(), and made include ordering and
4940           style consistent with the corresponding depayloader.
4941
4942 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4943
4944         * configure.ac:
4945           Error out if we don't have the required core/base versions.
4946
4947 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
4948
4949         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4950
4951         * sys/osxvideo/cocoawindow.m:
4952         Fix compiler warnings on PPC64. Fixes bug #499318.
4953
4954 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
4955
4956         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4957
4958         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
4959         Don't leak file descriptors on error. Fixes #531532.
4960
4961 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
4962
4963         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4964         (gst_gconf_audio_src_change_state):
4965         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4966         (gst_gconf_video_sink_change_state):
4967         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4968         (gst_gconf_video_src_change_state):
4969         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
4970         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
4971         When we can't create a fakesink/fakesrc complain instead of unreffing
4972         NULL pointers and crashing later. See bug #530535.
4973
4974 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4975
4976         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
4977         Add some more debug info and guard against small payloads.
4978
4979         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
4980         Set duration on outgoing buffers because we can.
4981
4982 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4983
4984         Patch by: Olivier Crete <tester at tester dot ca>
4985
4986         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
4987         (gst_speex_enc_init), (gst_speex_enc_chain):
4988         Add negotiation for the speex channels and rate. Fixes #465146.
4989
4990 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4991
4992         Patch by: Olivier Crete <tester at tester dot ca>
4993
4994         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
4995         (gst_rtp_speex_pay_getcaps):
4996         Add negotiation for the speex channels and rate. See #465146.
4997
4998 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
4999
5000         Patch by: Olivier Crete <tester at tester dot ca>
5001
5002         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5003         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5004         Add negotiation for the ILBC mode. See #465146.
5005
5006 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
5007
5008         * ext/soup/gstsouphttpsrc.c:
5009           Include stdlib to fix the build. Use g_free instead of free, libsoup
5010           uses glib.
5011
5012 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
5013
5014         Patch by: j^ <j@bootlab.org>
5015
5016         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5017         Add more mpeg2 variants. Fixes #530886.
5018
5019 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
5020
5021         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5022
5023         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5024           Don't error out if we get an ICMP destination-unreachable
5025           message when trying to read packets on win32 (#529454).
5026
5027 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5028
5029         * configure.ac:
5030         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5031           Use new error code for encrypted streams (which requires core CVS).
5032
5033 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
5034
5035         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5036           (gst_qtdemux_audiosrc_template):
5037           Fix swapped pad template names, spotted by Thiago Sousa Santos.
5038
5039 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5040
5041         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5042         (speex_dec_chain_parse_data):
5043         Produce concealment data when time progresses in a segment update.
5044
5045 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
5046
5047         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5048         (speex_dec_chain):
5049         Try to preserve input timestamps when we can.
5050         Do beginnings of error concealment.
5051
5052 2008-04-28  Michael Smith <msmith@songbirdnest.com>
5053
5054         * gst/debug/gstnavigationtest.c:
5055           MSVC doesn't provide rint(), define an adequate replacement locally as
5056           elsewhere.
5057
5058 2008-04-28  Julien Moutte  <julien@fluendo.com>
5059
5060         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5061         format to pacify Mac OSX's gcc.
5062
5063 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5064
5065         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5066           (DEFAULT_MAX), (src_template), (sink_template),
5067           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5068           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5069           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5070           Bring rndbuffersize element into a state that doesn't require us
5071           to move it to -bad immediately. For one, fix up default min/max
5072           values so that the element actuall works using the default values.
5073           Also, don't ignore flow return values and do some kind of minimal
5074           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5075           other gratuitious clean-ups.
5076
5077 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5078
5079         * docs/plugins/Makefile.am:
5080         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5081         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5082         * docs/plugins/gst-plugins-good-plugins.args:
5083         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5084         * docs/plugins/gst-plugins-good-plugins.interfaces:
5085         * docs/plugins/gst-plugins-good-plugins.prerequisites:
5086         * docs/plugins/inspect/plugin-1394.xml:
5087         * docs/plugins/inspect/plugin-aasink.xml:
5088         * docs/plugins/inspect/plugin-alaw.xml:
5089         * docs/plugins/inspect/plugin-alpha.xml:
5090         * docs/plugins/inspect/plugin-alphacolor.xml:
5091         * docs/plugins/inspect/plugin-annodex.xml:
5092         * docs/plugins/inspect/plugin-apetag.xml:
5093         * docs/plugins/inspect/plugin-audiofx.xml:
5094         * docs/plugins/inspect/plugin-auparse.xml:
5095         * docs/plugins/inspect/plugin-autodetect.xml:
5096         * docs/plugins/inspect/plugin-avi.xml:
5097         * docs/plugins/inspect/plugin-cacasink.xml:
5098         * docs/plugins/inspect/plugin-cairo.xml:
5099         * docs/plugins/inspect/plugin-cdio.xml:
5100         * docs/plugins/inspect/plugin-cutter.xml:
5101         * docs/plugins/inspect/plugin-debug.xml:
5102         * docs/plugins/inspect/plugin-dv.xml:
5103         * docs/plugins/inspect/plugin-efence.xml:
5104         * docs/plugins/inspect/plugin-effectv.xml:
5105         * docs/plugins/inspect/plugin-equalizer.xml:
5106         * docs/plugins/inspect/plugin-esdsink.xml:
5107         * docs/plugins/inspect/plugin-flac.xml:
5108         * docs/plugins/inspect/plugin-flxdec.xml:
5109         * docs/plugins/inspect/plugin-gamma.xml:
5110         * docs/plugins/inspect/plugin-gconfelements.xml:
5111         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5112         * docs/plugins/inspect/plugin-goom.xml:
5113         * docs/plugins/inspect/plugin-halelements.xml:
5114         * docs/plugins/inspect/plugin-icydemux.xml:
5115         * docs/plugins/inspect/plugin-id3demux.xml:
5116         * docs/plugins/inspect/plugin-jpeg.xml:
5117         * docs/plugins/inspect/plugin-level.xml:
5118         * docs/plugins/inspect/plugin-matroska.xml:
5119         * docs/plugins/inspect/plugin-monoscope.xml:
5120         * docs/plugins/inspect/plugin-mulaw.xml:
5121         * docs/plugins/inspect/plugin-multifile.xml:
5122         * docs/plugins/inspect/plugin-multipart.xml:
5123         * docs/plugins/inspect/plugin-navigationtest.xml:
5124         * docs/plugins/inspect/plugin-ossaudio.xml:
5125         * docs/plugins/inspect/plugin-png.xml:
5126         * docs/plugins/inspect/plugin-quicktime.xml:
5127         * docs/plugins/inspect/plugin-rtp.xml:
5128         * docs/plugins/inspect/plugin-rtsp.xml:
5129         * docs/plugins/inspect/plugin-shout2send.xml:
5130         * docs/plugins/inspect/plugin-smpte.xml:
5131         * docs/plugins/inspect/plugin-spectrum.xml:
5132         * docs/plugins/inspect/plugin-speex.xml:
5133         * docs/plugins/inspect/plugin-taglib.xml:
5134         * docs/plugins/inspect/plugin-udp.xml:
5135         * docs/plugins/inspect/plugin-video4linux2.xml:
5136         * docs/plugins/inspect/plugin-videobalance.xml:
5137         * docs/plugins/inspect/plugin-videobox.xml:
5138         * docs/plugins/inspect/plugin-videocrop.xml:
5139         * docs/plugins/inspect/plugin-videoflip.xml:
5140         * docs/plugins/inspect/plugin-videomixer.xml:
5141         * docs/plugins/inspect/plugin-wavenc.xml:
5142         * docs/plugins/inspect/plugin-wavpack.xml:
5143         * docs/plugins/inspect/plugin-wavparse.xml:
5144         * docs/plugins/inspect/plugin-ximagesrc.xml:
5145           Add docs for gdkpixbufsink; update docs to CVS version.
5146
5147 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5148
5149         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5150         Remove test sync-offset by default.
5151
5152 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5153
5154         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5155         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5156         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5157           Use GLib versions of htonl, htons, ntohl and ntohs in order
5158           to avoid problems on win32 (#529707).
5159
5160 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
5161
5162         Patch by: Jesús Corrius <jesus at softcatala org>
5163
5164         * gst/goom/filters.c: (zoomVector):
5165         * gst/goom/goom_core.c: (init_buffers):
5166           Fix build with mingw32: use rand() instead of random() and
5167           replace bzero() with memset(). Fixes #529692.
5168
5169 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5170
5171         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5172         Fix typo in comments.
5173
5174         * tests/examples/rtp/client-H263p-PCMA.sdp:
5175         * tests/examples/rtp/client-H263p-PCMA.sh:
5176         * tests/examples/rtp/client-H264-PCMA.sdp:
5177         * tests/examples/rtp/client-H264-PCMA.sh:
5178         * tests/examples/rtp/client-H264.sdp:
5179         * tests/examples/rtp/client-H264.sh:
5180         * tests/examples/rtp/client-PCMA.sdp:
5181         * tests/examples/rtp/client-PCMA.sh:
5182         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5183         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5184         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5185         Add some more docs and fix examples.
5186
5187 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
5188
5189         * tests/check/elements/multifile.c:
5190         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5191         declared in the former, some have it declared in the latter.
5192
5193 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
5194
5195         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5196         * gst/debug/tests.c: (md5_get_value):
5197         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5198         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5199         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5200         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5201         Stop using deprecated GLib functions.
5202
5203 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
5204
5205         * configure.ac:
5206         Back to development -> 0.10.8.1
5207
5208 === release 0.10.8 ===
5209
5210 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
5211
5212         * configure.ac:
5213           releasing 0.10.8, "One For The Money"
5214
5215 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5216
5217         * configure.ac:
5218         0.10.7.4 pre-release
5219
5220 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
5221
5222         * gst/goom/config_param.c: (goom_plugin_parameters_free):
5223         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5224         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5225         * gst/goom/flying_stars_fx.c: (fs_free):
5226         * gst/goom/goom_config_param.h:
5227         * gst/goom/goom_core.c: (goom_init), (goom_close):
5228         * gst/goom/goom_plugin_info.h:
5229         * gst/goom/gstgoom.c: (gst_goom_finalize):
5230         * gst/goom/lines.c: (goom_lines_free):
5231         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5232         * gst/goom/surf3d.c: (grid3d_free):
5233         * gst/goom/surf3d.h:
5234         * gst/goom/tentacle3d.c: (tentacle_free):
5235         Free a bunch of stuff, and initialise things to fix leaks
5236         and valgrind warnings in the testsuite.
5237
5238         Fixes: #529268
5239
5240 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
5241
5242         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5243         (gst_rtspsrc_configure_caps):
5244         Ref caps as the return value for the request_pt_map signal.
5245         Remove some caps weirdness when configuring a stream. See #528245.
5246
5247 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
5248
5249         * tests/icles/gdkpixbufsink-test.c:
5250           Add cast to placate gcc 4.1.2.
5251
5252 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5253
5254         * configure.ac:
5255         0.10.7.3 pre-release
5256
5257 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
5258
5259         * tests/check/Makefile.am:
5260         Disable some more elements in the state test.
5261         Add a define so the soup test can find the test files
5262         it needs at runtime.
5263
5264         * tests/check/elements/souphttpsrc.c: (run_server):
5265
5266         Add a define so the soup test can find the test files
5267         it needs at runtime.
5268
5269 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5270
5271         * gst/goom/convolve_fx.c: (convolve_apply):
5272         Don't ever draw the GOOM logo.
5273         Fixes: #528615
5274
5275 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5276
5277         * ext/cdio/gstcdiocddasrc.c:
5278         * ext/dv/gstdvdemux.c: 
5279         gst_atomic_int_set ==> g_atomic_int_set
5280
5281 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
5282
5283         * configure.ac:
5284         * gst/goom/Makefile.am:
5285         * gst/goom/convolve_fx.c:
5286         * gst/goom/default_scripts.h:
5287         * gst/goom/goom.h:
5288         * gst/goom/goom_core.c: (choose_a_goom_line):
5289         * gst/goom/goom_plugin_info.h:
5290         * gst/goom/goomsl.c:
5291         * gst/goom/goomsl.h:
5292         * gst/goom/goomsl_hash.c:
5293         * gst/goom/goomsl_hash.h:
5294         * gst/goom/goomsl_heap.c:
5295         * gst/goom/goomsl_heap.h:
5296         * gst/goom/goomsl_private.h:
5297         * gst/goom/plugin_info.c:
5298           Strip out the config/script parsing stuff, we don't need it.
5299           Fixes #527999.
5300
5301 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
5302
5303         * gst/goom/plugin_info.c: (setOptimizedMethods):
5304           Disable altivec optimisations for 32-bit PPC as well to make
5305           things build properly on all PPC systems. Fixes #528143
5306
5307 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
5308
5309         * gst-plugins-good.spec.in:
5310           Update for souphttpsrc plugin which has moved to -good.
5311
5312 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
5313
5314         * gst/matroska/matroska-demux.c:
5315         (gst_matroska_demux_handle_seek_event):
5316         Fix open-ended seeks in matroskademux
5317         Patch by: Mark Nauwelaerts <manauw skynet be>
5318         Fixes: #526557
5319
5320 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
5321
5322         * tests/check/Makefile.am:
5323         Add soup test certificates to the dist.
5324
5325 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5326
5327         * ext/Makefile.am:
5328         Remove LADSPA reference I missed.
5329
5330 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
5331
5332         * ext/soup/gstsouphttpsrc.c: (plugin_init):
5333         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5334         over gnome-vfs and everything else. Fixes bug #527848.
5335
5336 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5337
5338         * configure.ac:
5339         * ext/Makefile.am:
5340         Remove LADSPA plugin. Fixes: #515978
5341
5342 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
5343
5344         * configure.ac:
5345         * docs/plugins/Makefile.am:
5346         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5347         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5348         * docs/plugins/gst-plugins-good-plugins.args:
5349         * docs/plugins/inspect/plugin-soup.xml:
5350         * ext/Makefile.am:
5351         * tests/check/Makefile.am:
5352         Move soup plugin from -bad (Fixes: #523124)
5353
5354 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
5355
5356         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5357         Fix bounds checking of mode in Speex header, which may
5358         produce negative numbers in speex <= 1.1.12
5359
5360 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5361
5362         * gst/goom/Makefile.am:
5363         * gst/goom/gfontlib.c:
5364         * gst/goom/gfontlib.h:
5365         * gst/goom/gfontrle.c:
5366         * gst/goom/gfontrle.h:
5367         * gst/goom/goom.h:
5368         * gst/goom/goom_core.c: (goom_update):
5369         * gst/goom/goom_plugin_info.h:
5370         * gst/goom/gstgoom.c: (gst_goom_chain):
5371         * gst/goom/plugin_info.c:
5372           Remove a bunch of font/text related code that we don't need.
5373
5374 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
5375
5376         * gst/goom/ppc_drawings.s:
5377         * gst/goom/ppc_zoom_ultimate.s:
5378           Change license of these files to LGPL, as permitted by the
5379           author, Guillaume Borios. See #515073.
5380
5381 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
5382
5383         * gst/goom/convolve_fx.c:
5384         * gst/goom/motif_goom1.h:
5385         * gst/goom/motif_goom2.h:
5386           As hinted in Bug #518213, revert one change and fix warnings properly.
5387           This fixes both #518213 and #520073 for me.     
5388
5389 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
5390
5391         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5392         * gst/matroska/matroska-demux.c:
5393         (gst_matroska_demux_handle_seek_event),
5394         (gst_matroska_demux_parse_contents_seekentry),
5395         (gst_matroska_demux_loop):
5396         Fix the Forte build by making function declaration signatures
5397         match the implementations.
5398
5399 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
5400
5401         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5402         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5403         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5404           More logging when probing (see #518474), some comments in _reset().
5405
5406 2008-04-07  Julien Moutte  <julien@fluendo.com>
5407
5408         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5409         because of a bad argument number.
5410
5411 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
5412
5413         * tests/icles/.cvsignore:
5414         * tests/icles/Makefile.am:
5415         * tests/icles/gdkpixbufsink-test.c:
5416           Interactive test app for gdkpixbufsink.
5417
5418 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
5419
5420         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5421
5422         * configure.ac:
5423         Actually build dlls when cross-compiling with mingw32.
5424         Fixes bug #526247.
5425
5426 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
5427
5428         * ext/hal/hal.c: (gst_hal_get_alsa_element):
5429           Don't munge device string to 'default:x' for capture devices.
5430           Fixes #525833.
5431
5432 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
5433
5434         * ext/wavpack/gstwavpackparse.c:
5435         (gst_wavpack_parse_index_entry_free):
5436         Always use GSlice as we actually depend on GLib 2.12 already.
5437
5438 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5439
5440         * configure.ac:
5441           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5442           Also bump the GLib requirement to the current de-facto requirement
5443           (ie. 2.12).
5444
5445 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5446
5447         * gst/rtp/gstrtph264pay.c: (encode_base64),
5448         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5449         * gst/rtp/gstrtph264pay.h:
5450         Parse codec_data for future AVC compatibility.
5451         Fail when we encounter AVC data for now.
5452
5453 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
5454
5455         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5456           (gst_spectrum_init), (gst_spectrum_set_property),
5457           (gst_spectrum_get_property), (gst_spectrum_message_new):
5458           Rename property enums and default defines for the properties to match
5459           the property names and rephrase property descriptions to make them a
5460           bit clearer (hopefully). See #518188.
5461
5462 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5463
5464         * tests/check/Makefile.am:
5465         * tests/check/elements/.cvsignore:
5466         * tests/check/elements/gdkpixbufsink.c:
5467           Add unit test for gdkpixbufsink element.
5468
5469 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
5470
5471         * ext/gdk_pixbuf/Makefile.am:
5472         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5473         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5474           (gst_gdk_pixbuf_sink_base_init),
5475           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5476           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5477           (gst_gdk_pixbuf_sink_set_caps),
5478           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5479           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5480           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5481           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5482           (gst_gdk_pixbuf_sink_get_property):
5483         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5484           Add gdkpixbufsink element for easy snapshotting (#525946).
5485
5486 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5487
5488         * tests/check/pipelines/wavpack.c: (wavpack_suite):
5489         Bump timeout from 3 to 60 seconds.
5490
5491 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5492
5493         * tests/check/pipelines/.cvignore:
5494         Remove useless file.
5495
5496         * tests/check/pipelines/.cvsignore:
5497         Add new test to .cvsignore.
5498
5499 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5500
5501         * tests/check/Makefile.am:
5502         * tests/check/pipelines/wavpack.c: (bus_handler),
5503         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5504         (wavpack_suite), (main):
5505         Add unit test that encodes and decodes some data, checks that it
5506         is still the same and that all timestamps/offsets are perfect.
5507
5508 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
5509
5510         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5511         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5512         * ext/wavpack/gstwavpackparse.c:
5513         (gst_wavpack_parse_index_entry_new),
5514         (gst_wavpack_parse_index_entry_free),
5515         (gst_wavpack_parse_base_init),
5516         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5517         Use GSlice for allocating index entries and use
5518         gst_element_class_set_details_simple().
5519
5520 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5521
5522         Patch by: Brian Cameron <brian.cameron at sun dot com>
5523
5524         * sys/sunaudio/gstsunaudio.c:
5525         * sys/sunaudio/gstsunaudiomixer.c:
5526         * sys/sunaudio/gstsunaudiomixer.h:
5527         * sys/sunaudio/gstsunaudiomixerctrl.c:
5528         * sys/sunaudio/gstsunaudiomixerctrl.h:
5529         * sys/sunaudio/gstsunaudiomixertrack.c:
5530         * sys/sunaudio/gstsunaudiomixertrack.h:
5531         * sys/sunaudio/gstsunaudiosink.c:
5532         * sys/sunaudio/gstsunaudiosink.h:
5533         * sys/sunaudio/gstsunaudiosrc.c:
5534         * sys/sunaudio/gstsunaudiosrc.h:
5535           Fix up copyrights (#525860).
5536
5537 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
5538
5539         * gst/goom/goomsl.c: (gsl_read_file):
5540           Check return value of fread() to avoid compiler warnings.
5541
5542 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5543
5544         Based on patch by: Mersad Jelacic <mersad at axis dot com>
5545
5546         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5547         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5548         * gst/law/alaw-decode.h:
5549         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5550         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5551         (gst_mulawdec_chain), (gst_mulawdec_change_state):
5552         * gst/law/mulaw-decode.h:
5553         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5554         Make negotiation a bit modern.
5555         Use pad_alloc. Fixes #525359.
5556
5557 2008-03-31  David Schleef  <ds@schleef.org>
5558
5559         * gst/goom/xmmx.c: Fix constraints on asm code so that it
5560           compiles consistently.  Fixes #522278.
5561
5562 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
5563
5564         Patch by: Brian Cameron <brian.cameron at sun dot com>
5565
5566         * sys/sunaudio/gstsunaudiomixerctrl.c:
5567           (gst_sunaudiomixer_ctrl_get_volume),
5568           (gst_sunaudiomixer_ctrl_set_volume):
5569         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5570           Fix up the mixer tracks to use a volume range of 0-255, which is what
5571           the sun audio API uses. This simplifies the code and avoids rounding
5572           errors. Fixes #524593.
5573
5574 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
5575
5576         * sys/v4l2/gstv4l2object.c:
5577         * sys/v4l2/gstv4l2object.h:
5578         Add device-fd property to make it possible to apps to call ioctl's.
5579
5580 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
5581
5582         * gst/qtdemux/qtdemux.c: (next_entry_size):
5583         Unbreak streaming mode again.
5584
5585 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5586
5587         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5588           Remove superfluous DEBUG macro.
5589
5590 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
5591
5592         Based on patch by: William M. Brack <wbrack at mmm com hk>
5593
5594         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5595           (gst_v4l2src_set_capture):
5596           Check whether the device supports setting the framerate before
5597           trying to set it and then posting a warning or error if it doesn't
5598           work (#516649, #520092). Also compare fractions more correctly.
5599
5600 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5601
5602         * gst/goom/Makefile.am:
5603           Remove ppc assembler optimisations from the build until they
5604           actually build (they also seem to have GPL headers).
5605
5606 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
5607
5608         * m4/Makefile.am:
5609           Better not dist files that don't exist any longer (lrint*m4).
5610
5611 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
5612
5613         * configure.ac:
5614         * m4/lrint.m4:
5615         * m4/lrintf.m4:
5616         Remove lrint/lrintf checks. We don't use it anywhere.
5617
5618 2008-03-18  Andy Wingo  <wingo@pobox.com>
5619
5620         * sys/osxvideo/osxvideosink.m
5621         (gst_osx_video_sink_osxwindow_destroy)
5622         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5623         task, whoopdee.
5624         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5625         2 ms.
5626
5627 2008-03-18  Andy Wingo  <wingo@pobox.com>
5628
5629         * sys/osxvideo/osxvideosink.m
5630         (gst_osx_video_sink_osxwindow_destroy)
5631         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5632         task, whoopdee.
5633         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5634         2 ms.
5635         
5636 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
5637
5638         Patch by: William M. Brack <wbrack at mmm com hk>
5639
5640         * sys/v4l2/v4l2src_calls.c:
5641           (gst_v4l2src_probe_caps_for_format_and_size),
5642           (gst_v4l2src_probe_caps_for_format):
5643           Make sure the probed frame sizes are reversed in the resulting
5644           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5645           highest resolution first); also remove unused variable.
5646           (Partly fixes #520092)
5647
5648 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5649
5650         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5651
5652         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5653         (gst_rtspsrc_finalize):
5654         Call WSAStartup() and WSACleanup before using the Winsock API.
5655         See #520808.
5656
5657 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5658
5659         * gst/avi/gstavidemux.c:
5660           Erm, the buffer-size is just guint, no need for the special format
5661           specifier.
5662
5663 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
5664
5665         * gst/goom/plugin_info.c:
5666         * gst/goom/ppc_zoom_ultimate.h:
5667           Small fixes to build more on PPC: ifdef out code that uses unknown
5668           define; add newline at end of header file to avoid compiler warning.
5669           Assembler code still doesn't build though.
5670
5671 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5672
5673         * gst/avi/gstavidemux.c:
5674           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5675           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5676
5677 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
5678
5679         * gst/avi/gstavidemux.c:
5680           Chunksize is uint32. Fix format specifier.
5681
5682 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
5683
5684         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5685         mistake. Return file to pure MIT text.
5686
5687 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5688
5689         * gst/audiofx/audiofx.c:
5690         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5691         of hardcoding values.
5692
5693 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5694
5695         Patch by: Mark Nauwelaerts <manauw skynet be>
5696
5697         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5698           (gst_oss_src_close):
5699         * sys/oss/gstosssrc.h:
5700           Cache probed caps, so _get_caps() during recording doesn't cause
5701           ioctl calls which may disrupt the recording (fixes #521875).
5702
5703 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5704
5705         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5706         (gst_qtdemux_activate_segment),
5707         (gst_qtdemux_prepare_current_sample),
5708         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5709         Make sure we always send a DISCONT after a seek by setting the sample
5710         index to an undefined value after a seek.
5711
5712 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
5713
5714         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5715           (GST_IS_AVI_SUBTITLE_CLASS):
5716           Fix up IS_FOO macros, which makes gtk-doc much happier.
5717
5718 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
5719
5720         * tests/icles/Makefile.am:
5721           Move the -lgstfoo where it belongs.
5722
5723 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5724
5725         * gst/matroska/ebml-ids.h:
5726         Add ID for EBML CRC32 elements.
5727
5728         * gst/matroska/Makefile.am:
5729         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5730         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5731         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5732         (gst_ebml_read_header):
5733         Support reading 80bit floats, add finalize method to clean up
5734         in any case, support reading length/id elements with any length
5735         as long as it's smaller than our supported maximum, don't leak
5736         buffers if reading as much data as we wanted failed and some
5737         smaller cleanup.
5738
5739 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5740
5741         Patch by: Olivier Crete <tester at tester dot ca>
5742
5743         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5744         Check that a buffer is large enough before reading from it.
5745         Fixes bug #521102.
5746         
5747 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5748
5749         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5750         Fix compilation after removing the GstPollMode from the
5751         constructor.
5752
5753 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5754
5755         * configure.ac:
5756         * gst/audiofx/Makefile.am:
5757         * gst/audiofx/audiochebband.c:
5758         * gst/audiofx/audiocheblimit.c:
5759         * gst/audiofx/math_compat.h:
5760         Check for sinh(), cosh() and asinh() and define our own
5761         implementations if they're not available. Fixes bug #520880.
5762
5763 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5764
5765         Patch by: Olivier Crete <tester at tester dot ca>
5766
5767         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5768         Unref the buffers only once when handling not-negotiated errors.
5769         Fixes bug #520764.
5770
5771 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5772
5773         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5774
5775         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5776         (gst_udpsrc_stop):
5777         Properly balance WSA_Cleanup with WSA_Startup.
5778         Also make the poll controllable on windows. Fixes #520888.
5779
5780 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5781
5782         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5783         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5784         (gst_ebml_read_element_length), (gst_ebml_peek_id),
5785         (gst_ebml_read_skip), (gst_ebml_read_buffer),
5786         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5787         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5788         (gst_ebml_read_date), (gst_ebml_read_master),
5789         (gst_ebml_read_binary), (gst_ebml_read_header):
5790         * gst/matroska/ebml-read.h:
5791         * gst/matroska/matroska-demux.c:
5792         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5793         (gst_matroska_demux_read_track_encodings),
5794         (gst_matroska_demux_add_stream),
5795         (gst_matroska_demux_handle_src_query),
5796         (gst_matroska_demux_handle_seek_event),
5797         (gst_matroska_demux_init_stream),
5798         (gst_matroska_demux_parse_tracks),
5799         (gst_matroska_demux_parse_index_cuetrack),
5800         (gst_matroska_demux_parse_index_pointentry),
5801         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5802         (gst_matroska_demux_parse_metadata_id_simple_tag),
5803         (gst_matroska_demux_parse_metadata_id_tag),
5804         (gst_matroska_demux_parse_metadata),
5805         (gst_matroska_demux_sync_streams),
5806         (gst_matroska_demux_push_hdr_buf),
5807         (gst_matroska_demux_push_flac_codec_priv_data),
5808         (gst_matroska_demux_push_xiph_codec_priv_data),
5809         (gst_matroska_demux_add_wvpk_header),
5810         (gst_matroska_demux_check_subtitle_buffer),
5811         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5812         (gst_matroska_demux_parse_cluster),
5813         (gst_matroska_demux_parse_contents_seekentry),
5814         (gst_matroska_demux_parse_contents),
5815         (gst_matroska_demux_loop_stream_parse_id),
5816         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
5817         * gst/matroska/matroska-demux.h:
5818         * gst/matroska/matroska-ids.h:
5819         Handle return values from pull_range in a more granular way to properly
5820         shut down on seeks.
5821         Combine return values from push.
5822         Implement proper error handling.
5823         Prepare for handling seeking correctly.
5824
5825 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
5826
5827         * gst/matroska/ebml-read.c:
5828         Use GINT64 formatting constants from GLIB.
5829
5830         * gst/matroska/matroska-demux.c:
5831         Add some guards to avoid a possible division by 0 and crashing
5832         with NULL events on some systems.
5833         Use gst_gdouble_to_guint64 somewhere instead of an implicit
5834         conversion. 
5835
5836         * gst/matroska/matroska-mux.c:
5837         Check for invalid timestamps in a bunch of places to avoid
5838         writing bogus durations into the output file.
5839         Fix some double<->gint64 conversions that weren't using
5840         gst_guint64_to_gdouble
5841
5842 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5843
5844         * configure.ac:
5845         Move the checks for bison, flex and as to the program section and the
5846         check for gcc inline asm to the compiler characteristics section.
5847
5848 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5849
5850         * configure.ac:
5851         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5852         plug-ins are included/excluded. (#498222)
5853
5854 2008-02-29  Michael Smith <msmith@fluendo.com>
5855
5856         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
5857           Don't call gst_object_sync_values() unless we have a valid timestamp.
5858
5859 2008-02-28  David Schleef  <ds@schleef.org>
5860
5861         * gst/matroska/matroska-demux.c:
5862         * gst/matroska/matroska-ids.h:
5863         * gst/matroska/matroska-mux.c:
5864           Fix Dirac mapping.  I had previously added a VfW-type
5865           mapping, but it looks like Dirac will get a native Matroska
5866           mapping, and this is the most likely method.
5867
5868 2008-02-28  David Schleef  <ds@schleef.org>
5869
5870         * gst/avi/gstavimux.c: Add Dirac encoding
5871
5872 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5873
5874         Patch by: Peter Kjellerstedt <pkj at axis com>
5875
5876         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
5877         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
5878         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
5879         * gst/udp/gstudpsrc.h:
5880         Port to GstPoll. See #505417.
5881
5882 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
5883
5884         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
5885         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
5886         yet on the srcpad. We need rate and channels before we
5887         can do any processing. Fixes bug #519088.
5888
5889 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
5890
5891         * configure.ac:
5892         Detect and indicate if GCC inline assembly syntax is
5893         available.
5894
5895         * gst/goom/Makefile.am:
5896         * gst/goom/convolve_fx.c:
5897         * gst/goom/flying_stars_fx.c:
5898         * gst/goom/goom_config.h:
5899         * gst/goom/goom_core.c:
5900         * gst/goom/goomsl.c:
5901         * gst/goom/ifs.c:
5902         * gst/goom/mmx.c:
5903         * gst/goom/plugin_info.c:
5904         * gst/goom/xmmx.c:
5905         Fix various GCC-isms, and only build the inline assembly
5906         with compilers that support GCC inline assembly.
5907
5908         Fix a couple of other warnings shown with Forte.
5909
5910 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
5911
5912         * gst/goom/xmmx.c:
5913           Use 'emms' instead of 'femms' to not crash on cpus that do not
5914           implement this 3dnow specific instruction.
5915
5916 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
5917
5918         * gst/goom/plugin_info.c: (setOptimizedMethods):
5919         Use extended MMX for draw_line() too if available, not only
5920         normal MMX.
5921
5922 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
5923
5924         * ext/jpeg/gstjpeg.c: (plugin_init):
5925         Remove (commented out) smoke typefinder. This is in base now.
5926
5927 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
5928
5929         * gst/goom2k1/Makefile.am:
5930         * gst/goom2k1/gstgoom.c:
5931
5932         Rename the installed library, and don't register the same 
5933         GType name as the new goom.
5934
5935 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5936
5937         * configure.ac:
5938         * ext/taglib/Makefile.am:
5939           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
5940           when building C++ code (#516509).
5941
5942 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5943
5944         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
5945         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
5946           (setOptimizedMethods):
5947           Call oil_init(), otherwise oil_get_cpu_flags() won't return
5948           anything useful. Export goom debug category so we can get
5949           rid of the VERBOSE define and the printfs.
5950
5951 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5952
5953         * gst/goom/goomsl_heap.c: (align_it):
5954         * gst/goom/plugin_info.c: (setOptimizedMethods):
5955           Compile fixes for x86-64.
5956
5957 2008-02-23  Bastien Nocera  <hadess@hadess.net>
5958
5959         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
5960         with warnings, but add other CFLAGS
5961
5962         * gst/goom/goomsl.c (gsl_instr_set_namespace),
5963         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
5964         (calculate_labels), (gsl_read_file):
5965         * gst/goom/goomsl_lex.l:
5966         * gst/goom/goomsl_yacc.y:
5967         * gst/goom/plugin_info.c: Remove a few live printf, and
5968         fprintf, replace exit() calls with g_assert_not_reached()
5969         if it not optimal for a library
5970
5971 2008-02-23  Bastien Nocera  <hadess@hadess.net>
5972
5973         * gst/goom/Makefile.am: Remove the warnings being disabled,
5974         fix linkage on x86, spotted by Sebastian Dröge
5975         <slomo@circular-chaos.org>
5976
5977         * gst/goom/convolve_fx.c (convolve_init),
5978         (create_output_with_brightness), (convolve_apply):
5979         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
5980         * gst/goom/goomsl.c:
5981         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
5982         * gst/goom/plugin_info.c:
5983         * gst/goom/tentacle3d.c (tentacle_fx_create):
5984         Fix warnings, and disable the motifs in the convolve_fx
5985         plugin (they were causing warnings, and they were just
5986         "Goom" in funny letterring)
5987
5988 2008-02-23  Bastien Nocera  <hadess@hadess.net>
5989
5990         * configure.ac: Add checks for Flex/Yacc/Bison and other
5991         furry animals, for the new goom 2k4 based plugin
5992
5993         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
5994         CPU optimisations (not working yet), move the old plugin to...
5995
5996         * gst/goom2k1/*: ... here, in case somebody is sick enough
5997
5998         Fixes #515073
5999
6000 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
6001
6002         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6003         Post the server response code in an error message instead of a generic
6004         'error' message. Fixes #517237.
6005
6006 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6007
6008         * tests/check/Makefile.am:
6009         Ignore gconfaudiosrc for the states unit test too. It will fallback
6010         to alsasrc if the gconf settings can't be read and not everybody has
6011         alsa.
6012
6013 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6014
6015         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6016         (gst_wavpack_parse_create_src_pad):
6017         * ext/wavpack/gstwavpackparse.h:
6018         Always report the duration if we know it in push mode and don't
6019         return 0 just to make totem believe we can't seek in push mode.
6020         Newer totem version use the SEEKING query which properly reports
6021         if we can seek or not.
6022
6023 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
6024
6025         Patch by: Jens Granseuer <jensgr at gmx dot net>
6026
6027         * tests/examples/equalizer/demo.c: (main):
6028         C89 fix, moving variable declarations to the beginning of
6029         the block. Fixes bug #517933.
6030
6031 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
6032
6033         * configure.ac:
6034         Back to development...
6035
6036 === release 0.10.7 ===
6037
6038 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
6039
6040         * configure.ac:
6041           releasing 0.10.7, "Red Door Black"
6042
6043 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
6044
6045         * gst/alpha/Makefile.am:
6046         Link alpha plugin with libgstbase. Fixes bug #517386.
6047
6048 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6049
6050         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6051         Init values to -1 instead of the default 0 value.
6052         Fixes #516524.
6053
6054 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
6055
6056         * tests/examples/spectrum/spectrum-example.c:
6057         Add missing include to fix compilation when libxml usage is disabled.
6058         Fixes: #516371
6059
6060 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6061
6062         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
6063         fixes: #514889
6064
6065         * gst/rtp/gstrtph264pay.c:
6066         * gst/rtp/gstrtpmp4gdepay.c:
6067         * gst/rtp/gstrtpmp4gpay.c:
6068         * gst/rtp/gstrtpmp4gpay.h:
6069         * gst/rtp/gstrtptheorapay.c:
6070         * gst/rtp/gstrtpvorbispay.c:
6071
6072         Fix various leaks shown up in valgrind
6073         - free sprops and buffer in error cases in H264 payloader
6074         - fix leak in mp4g depayloader when construction the caps
6075         - don't leak config string in the mp4g payloader
6076         - don't leak buffers and headers in theora and vorbis payloaders
6077
6078         * tests/check/elements/rtp-payloading.c:
6079
6080         Fix the RTP data test
6081         - Actually send valid amr data to the payloader instead of 20
6082         zero-bytes
6083         - The mp4g payloader expects codec_data on the caps
6084
6085 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
6086
6087         * win32/MANIFEST:
6088         Add libgstpng.dsp to MANIFEST.
6089         * win32/vs6/libgstaudiofx.dsp:
6090         Add new source files to VS project file.
6091
6092 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6093
6094         * sys/ximage/gstximagesrc.c:
6095         Initialise variables when opening the X display rather
6096         than in _start(), as the display can be opened before that.
6097
6098         Fixes: #515985
6099
6100 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6101
6102         * sys/directdraw/gstdirectdrawsink.c:
6103         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6104         (gst_directdraw_sink_finalize):
6105         Properly chain up finalize functions. Fixes bug #515980.
6106
6107 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6108
6109         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6110         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6111         (gst_v4l2_buffer_pool_class_init):
6112         Chain up the finalize functions. Fixes bug #515984.
6113
6114 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6115
6116         * sys/ximage/ximageutil.c:
6117         Chain up in the finalize function for our custom
6118         buffer sub-class.
6119         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
6120         Fixes: #515706
6121
6122 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6123
6124         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6125         (gst_fenced_buffer_class_init):
6126         Properly chain up finalize method. Fixes bug #515979.
6127
6128 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
6129
6130         * sys/ximage/gstximagesrc.c:
6131         Free allocated Damage memory before closing our connection to the
6132         X server. Partially fixes: #515706
6133
6134 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
6135
6136         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6137         * tests/check/Makefile.am:
6138         * tests/check/gst-plugins-good.supp:
6139         Add a few libjpeg suppressions and initialize a variable to
6140         make smokeenc valgrind clean. Fixes bug #515701.
6141
6142 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
6143
6144         * gst/avi/gstavidemux.c:
6145         Revert patch which sends timestamps only on keyframes, as it
6146         breaks playback with current gst-ffmpeg.
6147
6148         Fixes: #515562
6149
6150 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6151
6152         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6153         * tests/check/elements/multifile.c: (GST_START_TEST):
6154         Close some memory leaks spotted by the unit test. Fixes bug #515697.
6155
6156 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
6157
6158         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6159         Use and unset the GError when pipeline creation fails instead of
6160         simply leaking it. Fixes bug #515704.
6161
6162 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
6163
6164         * gst/audiofx/audioamplify.c:
6165         * gst/audiofx/audiochebband.c:
6166         * gst/audiofx/audiocheblimit.c:
6167         * gst/audiofx/audiodynamic.c:
6168         * gst/audiofx/audioinvert.c:
6169         * gst/audiofx/audiopanorama.c:
6170         * gst/audiofx/audiowsincband.c:
6171         * gst/audiofx/audiowsinclimit.c:
6172         Fix long description of audiofx elements. Fixes bug #515457.
6173
6174 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
6175
6176         * docs/plugins/Makefile.am:
6177         * gst/spectrum/gstspectrum.c:
6178         * tests/examples/spectrum/.cvsignore:
6179         * tests/examples/spectrum/Makefile.am:
6180         * tests/examples/spectrum/spectrum-example.c:
6181
6182         Add a simple example application for the spectrum element, include it
6183         in the docs, and fix some documentation ambiguities.
6184
6185         Fixes: #348085
6186
6187 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6188
6189         * gst/equalizer/Makefile.am:
6190         * gst/spectrum/Makefile.am:
6191         Fix includes order
6192
6193         * tests/check/Makefile.am:
6194         Exclude v4l2src from the states test - it takes too long to start.
6195
6196         * tests/check/elements/spectrum.c:
6197         Make the test run properly with CK_FORK=no
6198
6199 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6200
6201         * gst/audiofix/Makefile.am: add missing header files 
6202
6203 2008-02-08  Julien Moutte  <julien@fluendo.com>
6204
6205         * gst/matroska/matroska-demux.c:
6206         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6207         keyframe and delta units correctly when dealign with a BlockGroup.
6208         Fixes: #514397
6209
6210 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6211
6212         * tests/check/elements/.cvsignore:
6213         Spell the new tests correctly in .cvsignore
6214
6215 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6216
6217         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6218           Need to use gsize here for the size, fixes compiler warning.
6219
6220         * tests/examples/equalizer/.cvsignore:
6221         * tests/examples/equalizer/Makefile.am:
6222         * tests/examples/spectrum/.cvsignore:
6223         * tests/examples/spectrum/Makefile.am:
6224           Add missing files to fix the build.
6225
6226 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6227
6228         * configure.ac:
6229         * docs/plugins/Makefile.am:
6230         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6231         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6232         * docs/plugins/gst-plugins-good-plugins.args:
6233         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6234         * docs/plugins/inspect/plugin-multifile.xml:
6235         * tests/check/Makefile.am:
6236         * tests/check/elements/.cvsignore:
6237
6238         Move multifile plugin from -bad.
6239         Fixes: #490283
6240
6241 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6242
6243         * configure.ac:
6244         * docs/plugins/Makefile.am:
6245         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6246         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6247         * docs/plugins/gst-plugins-good-plugins.args:
6248         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6249         * docs/plugins/inspect/plugin-spectrum.xml:
6250         * gst/spectrum/Makefile.am:
6251         * tests/check/Makefile.am:
6252         * tests/check/elements/.cvsignore:
6253         * tests/examples/Makefile.am:
6254
6255         Move spectrum plugin from -bad.
6256         Move examples into tests/examples/spectrum.
6257
6258 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
6259
6260         * configure.ac:
6261         * docs/plugins/Makefile.am:
6262         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6263         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6264         * docs/plugins/gst-plugins-good-plugins.args:
6265         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6266         * docs/plugins/gst-plugins-good-plugins.interfaces:
6267         * docs/plugins/inspect/plugin-equalizer.xml:
6268         * gst/equalizer/Makefile.am:
6269         * tests/check/Makefile.am:
6270         * tests/examples/Makefile.am:
6271         Move the equalizer plugin across from -bad
6272
6273         * tests/check/elements/.cvsignore:
6274         Add equalizer, audiosincwband and audiosincwlimit
6275
6276         * tests/check/elements/equalizer.c:
6277         Fix compiler warnings
6278
6279         Fixes: #415627
6280
6281 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6282
6283         * configure.ac:
6284         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6285         are treated like releases and build without it.
6286
6287 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
6288
6289         * docs/plugins/Makefile.am:
6290         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6291         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6292         * docs/plugins/gst-plugins-good-plugins.args:
6293         * docs/plugins/inspect/plugin-audiofx.xml:
6294         * gst/audiofx/Makefile.am:
6295         * gst/audiofx/audiofx.c:
6296         * gst/audiofx/audiowsincband.c:
6297         * gst/audiofx/audiowsincband.h:
6298         * gst/audiofx/audiowsinclimit.c:
6299         * gst/audiofx/audiowsinclimit.h:
6300         * tests/check/Makefile.am:
6301         * tests/check/elements/audiowsincband.c:
6302         * tests/check/elements/audiowsinclimit.c:
6303
6304         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6305         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6306         respectively.
6307
6308         Fixes: #467666
6309
6310 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6311
6312         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6313         * tests/check/elements/icydemux.c:
6314           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6315           caps, and add a somewhat useful debug message. Plus test.
6316
6317 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
6318
6319         * gst/rtsp/gstrtspsrc.c:
6320         Include unistd.h only if HAVE_UNISTD_H is defined
6321         * win32/common/config.h.in:
6322         * win32/common/config.h:
6323         Define socklen_t as it seems it's not defined in default 
6324         Visual Studio headers.
6325         * win32/vs6/libgstalpha.dsp:
6326         * win32/vs6/libgstapetag.dsp:
6327         * win32/vs6/libgstavi.dsp:
6328         * win32/vs6/libgstrtp.dsp:
6329         * win32/vs6/libgstrtsp.dsp:
6330         * win32/vs6/libgstvideomixer.dsp:
6331         Update project file dependencies and add new source files       
6332
6333 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
6334
6335         Patch by: Bjarne Rosengren <bjarne at axis dot com>
6336
6337         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6338         Don't leak buffers when we don't push them downstream.
6339         Fixes bug #514965.
6340
6341 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6342
6343         * configure.ac:
6344           Bump requirements to (good) released versions to avoid
6345           confusion and make implicit core requirement explicit.
6346
6347 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
6348
6349         * docs/plugins/Makefile.am:
6350         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6351         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6352         * docs/plugins/gst-plugins-good-plugins.args:
6353         * docs/plugins/inspect/plugin-audiofx.xml:
6354         * gst/audiofx/Makefile.am:
6355         * gst/audiofx/audiochebband.c:
6356         * gst/audiofx/audiochebband.h:
6357         * gst/audiofx/audiocheblimit.c:
6358         * gst/audiofx/audiocheblimit.h:
6359         * gst/audiofx/audiochebyshevfreqband.c:
6360         * gst/audiofx/audiochebyshevfreqband.h:
6361         * gst/audiofx/audiochebyshevfreqlimit.c:
6362         * gst/audiofx/audiochebyshevfreqlimit.h:
6363         * gst/audiofx/audiofx.c:
6364         * tests/check/Makefile.am:
6365         * tests/check/elements/.cvsignore:
6366         * tests/check/elements/audiochebband.c:
6367         * tests/check/elements/audiocheblimit.c:
6368         * tests/check/elements/audiochebyshevfreqband.c:
6369         * tests/check/elements/audiochebyshevfreqlimit.c:
6370
6371         Rename audiochebyshevfreqband -> audiochebband and
6372         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6373         surgery.
6374
6375         Closes: #491811
6376
6377 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
6378
6379         Patch by: Orjan Friberg <orjanf at axis dot com>
6380
6381         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6382         Fix caps memory leak. Fixes #514573.
6383
6384 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6385
6386         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6387         If there's no entries in the subindex, don't try to do anything stupid,
6388         just return.
6389
6390 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6391
6392         Patch by: John Millikin <jmillikin at gmail dot com>
6393
6394         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6395           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6396           Fix extraction of picture blocks with newer libflac versions again:
6397           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6398
6399 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6400
6401         * tests/check/Makefile.am:
6402           Add rtp-payloading test to VALGRIND_TO_FIX.
6403
6404         * tests/check/elements/rtp-payloading.c:
6405           Add semicolons after GST_TEST_END so gst-indent gets the
6406           formatting right; make test less verbose in general, but
6407           more verbose in the error case (which should probably
6408           make the test fail anyway).
6409
6410 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
6411
6412         * docs/plugins/Makefile.am:
6413         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6414         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6415         * gst/avi/gstavisubtitle.c:
6416         Add documentation for avisubtitle and change class to
6417         Codec/Parser/Subtitle
6418
6419 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6420
6421         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6422         Treat ENOTTY (driver does not implement ioctl) the same as
6423         EINVAL since it implies there are no available standards.
6424
6425         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6426         (gst_v4l2src_get_nearest_size):
6427         Replace gst_v4l2src_get_size_limits with 2 calls to new function
6428         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6429         probe if the driver does not support VIDIOC_TRY_FMT for whatever
6430         reason, and if we aren't yet actively capturing.
6431
6432         * sys/v4l2/v4l2src_calls.h:
6433         Remove replaced function declaration.
6434
6435 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6436
6437         * configure.ac:
6438         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6439         API.
6440
6441 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
6442
6443         * configure.ac:
6444         Fix typo.
6445
6446 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
6447
6448         * gst/alpha/Makefile.am:
6449         * gst/alpha/gstalpha.c:
6450
6451         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6452         some stuff, and making buffer-alloc and resizing work automatically.
6453         No longer crashes on odd frame widths and heights, although there
6454         seems to be a disagreement with ffmpegcolorspace about what size
6455         an AYUV frame with odd height should be.
6456
6457 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6458
6459         Patch by: Alessandro Decina <alessandro at nnva dot org>
6460
6461         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6462         * ext/libpng/gstpngenc.h:
6463         Preallocate the output buffer so that g_memdup() and
6464         gst_buffer_merge() aren't needed anymore. This greatly improves
6465         performances and fixes #512544.
6466
6467 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6468
6469         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6470         (gst_avi_demux_stream_data):
6471         GStreamer timestamps are PTS values while AVI only knows about DTS
6472         timestamps. Make sure we only copy the DTS as the buffer timestamp when
6473         we are dealing with a key frame.
6474
6475 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6476
6477         * tests/check/Makefile.am:
6478         * tests/check/elements/.cvsignore:
6479         * tests/check/elements/rtp-payloading.c:
6480           Add add testsuite for the rtp-payloader that tries simulating
6481           dataflow. Needs more test data.
6482
6483 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6484
6485         * tests/check/elements/alphacolor.c:
6486           Remove two unused variables.
6487
6488 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6489
6490         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6491           Use g_ascii_strtoll() instead of atoll, which is only
6492           available in C99.
6493
6494 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
6495
6496         * gst/rtp/Makefile.am:
6497         * gst/rtp/gstrtp.c:
6498         * gst/rtp/gstrtpmpvpay.c:
6499         * gst/rtp/gstrtpmpvpay.h:
6500         Add MPEG2 video payloader
6501
6502 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6503
6504         * gst/level/gstlevel.c:
6505         Use #include <math.h> instead of #include "math.h".
6506
6507 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6508
6509         * tests/check/Makefile.am:
6510         Fix up some CFLAGS sets.
6511         Don't include gconfvideosrc in the states test.
6512
6513         * tests/check/elements/autodetect.c: (GST_START_TEST):
6514         Add some error strings to fail_unless arguments to fix some weird
6515         compiler errors on Solaris.
6516
6517 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
6518
6519         * configure.ac:
6520         Detect video4linux headers on Solaris too.
6521         * sys/v4l2/gstv4l2colorbalance.h:
6522         * sys/v4l2/gstv4l2object.h:
6523         * sys/v4l2/v4l2_calls.c:
6524         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6525         (gst_v4l2_buffer_new):
6526
6527         Make v4l2 build on Solaris.
6528         Patch by: Brian Cameron  <brian.cameron at sun dot com>
6529         Fixes: #510505
6530
6531 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6532
6533         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6534           Update list from (still local) scanning script.
6535
6536 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6537
6538         Based on a patch by:
6539             Victor STINNER <victor dot stinner at haypocalc dot com>
6540
6541         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6542         Set variable to NULL after freeing it to prevent double frees
6543         or make failures by another use of it afterwards more obvious
6544         and fix use of it after the freeing. Fixes bug #510592.
6545
6546 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6547
6548         * gst/udp/gstmultiudpsink.c:
6549         use GST_WARNING for logging
6550
6551 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6552
6553         * gst/udp/gstmultiudpsink.c:
6554         Don't try to leave a multicast group with an invalid socket
6555
6556 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
6557
6558         * ext/flac/gstflacdec.c:
6559           Fix compilation against flac 1.1.2 (as on debian stable), where
6560           the picture metadata defines and structs don't exist yet.
6561           Fixes #509301.
6562
6563 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
6564
6565         Patch by: Olivier Crete <tester at tester dot ca>
6566
6567         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6568         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6569         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6570         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6571         * gst/udp/gstmultiudpsink.h:
6572         Add property to automatically join a multicast group or not. This can be
6573         useful when sharing a socket between multiple elements.
6574         Fixes #509531.
6575
6576 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6577
6578         * gst/videomixer/Makefile.am:
6579           Add controller flags.
6580
6581 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6582
6583         * gst/videomixer/videomixer.c:
6584           Also commit the missing gst_object_sync_values().
6585
6586 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
6587
6588         * docs/plugins/Makefile.am:
6589           Remove duplicate entry.
6590
6591 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6592
6593         * docs/plugins/Makefile.am:
6594         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6595         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6596         * docs/plugins/inspect/plugin-gamma.xml:
6597         * docs/plugins/inspect/plugin-monoscope.xml:
6598         * docs/plugins/inspect/plugin-video4linux2.xml:
6599           Add 3 more plugins to docs.
6600
6601 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6602
6603         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6604         * sys/osxvideo/osxvideosink.h:
6605           Revert previous change caused by a file that got stuck on an old
6606           revision.
6607
6608 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6609
6610         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6611         * gst/multipart/Makefile.am:
6612         * gst/multipart/multipartdemux.c:
6613         * gst/multipart/multipartdemux.h:
6614         * gst/multipart/multipartmux.c:
6615         * gst/multipart/multipartmux.h:
6616           Re-add multipartdemux to the docs. Last round of section cleanup.
6617
6618 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6619
6620         * docs/plugins/Makefile.am:
6621         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6622         * sys/osxaudio/gstosxaudiosink.h:
6623         * sys/osxvideo/osxvideosink.h:
6624           Managed to resolve most unused declarations. Filed a bug for one left.          
6625
6626 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6627
6628         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6629           Cleanup section file.
6630
6631 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
6632
6633         * docs/plugins/Makefile.am:
6634         * docs/plugins/gst-plugins-good-plugins.args:
6635         * docs/plugins/gst-plugins-good-plugins.signals:
6636         * docs/plugins/inspect/plugin-alaw.xml:
6637         * docs/plugins/inspect/plugin-alpha.xml:
6638         * docs/plugins/inspect/plugin-alphacolor.xml:
6639         * docs/plugins/inspect/plugin-annodex.xml:
6640         * docs/plugins/inspect/plugin-apetag.xml:
6641         * docs/plugins/inspect/plugin-audiofx.xml:
6642         * docs/plugins/inspect/plugin-auparse.xml:
6643         * docs/plugins/inspect/plugin-autodetect.xml:
6644         * docs/plugins/inspect/plugin-avi.xml:
6645         * docs/plugins/inspect/plugin-cairo.xml:
6646         * docs/plugins/inspect/plugin-cdio.xml:
6647         * docs/plugins/inspect/plugin-cutter.xml:
6648         * docs/plugins/inspect/plugin-debug.xml:
6649         * docs/plugins/inspect/plugin-dv.xml:
6650         * docs/plugins/inspect/plugin-efence.xml:
6651         * docs/plugins/inspect/plugin-effectv.xml:
6652         * docs/plugins/inspect/plugin-flac.xml:
6653         * docs/plugins/inspect/plugin-flxdec.xml:
6654         * docs/plugins/inspect/plugin-gconfelements.xml:
6655         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6656         * docs/plugins/inspect/plugin-goom.xml:
6657         * docs/plugins/inspect/plugin-halelements.xml:
6658         * docs/plugins/inspect/plugin-icydemux.xml:
6659         * docs/plugins/inspect/plugin-id3demux.xml:
6660         * docs/plugins/inspect/plugin-jpeg.xml:
6661         * docs/plugins/inspect/plugin-ladspa.xml:
6662         * docs/plugins/inspect/plugin-level.xml:
6663         * docs/plugins/inspect/plugin-matroska.xml:
6664         * docs/plugins/inspect/plugin-mulaw.xml:
6665         * docs/plugins/inspect/plugin-multipart.xml:
6666         * docs/plugins/inspect/plugin-navigationtest.xml:
6667         * docs/plugins/inspect/plugin-png.xml:
6668         * docs/plugins/inspect/plugin-quicktime.xml:
6669         * docs/plugins/inspect/plugin-rtp.xml:
6670         * docs/plugins/inspect/plugin-rtsp.xml:
6671         * docs/plugins/inspect/plugin-shout2send.xml:
6672         * docs/plugins/inspect/plugin-smpte.xml:
6673         * docs/plugins/inspect/plugin-speex.xml:
6674         * docs/plugins/inspect/plugin-taglib.xml:
6675         * docs/plugins/inspect/plugin-udp.xml:
6676         * docs/plugins/inspect/plugin-videobalance.xml:
6677         * docs/plugins/inspect/plugin-videobox.xml:
6678         * docs/plugins/inspect/plugin-videocrop.xml:
6679         * docs/plugins/inspect/plugin-videoflip.xml:
6680         * docs/plugins/inspect/plugin-videomixer.xml:
6681         * docs/plugins/inspect/plugin-wavenc.xml:
6682         * docs/plugins/inspect/plugin-wavpack.xml:
6683         * docs/plugins/inspect/plugin-wavparse.xml:
6684           Update plugin docs.
6685
6686         * gst/videomixer/Makefile.am:
6687         * gst/videomixer/videomixer.c:
6688         * gst/videomixer/videomixer.h:
6689         * gst/videomixer/videomixerpad.h:
6690           Split out header to fix warnings from the doc-build.
6691
6692 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6693
6694         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6695
6696         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6697         Use atoll to parse the rtptime with enough precision. Fixes #509329.
6698
6699 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6700
6701         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6702         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6703           Initialise variables to work around (false) 'foo might be used
6704           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6705
6706 2008-01-11  David Schleef  <ds@schleef.org>
6707
6708         * docs/plugins/.cvsignore:
6709         * tests/check/pipelines/.cvsignore:
6710           Ignore more files for the buildbot.
6711
6712 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
6713
6714         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6715         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6716         Generate the image-type values correctly. Leave them out of the caps
6717         when outputting a "preview image" tag, since it only makes sense
6718         to have one of those - the type is irrelevant.
6719
6720         * sys/sunaudio/gstsunaudiomixerctrl.c:
6721         (gst_sunaudiomixer_ctrl_open):
6722         If we can, mark the mixer multiple open when we use it, in case
6723         (for some reason) the process wants to open it again elsewhere.
6724
6725 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
6726
6727         Patch by: Olivier Crete <tester at tester dot ca>
6728
6729         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6730         * gst/rtp/gstrtptheorapay.c:
6731         Fix the clock rate to 90000 as required by the RFC.
6732         Fixes #508644.
6733
6734 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6735
6736         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6737           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6738
6739 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
6740
6741         * autogen.sh:
6742           Add -Wno-portability to the automake parameters to stop warnings
6743           about GNU make extensions being used. We require GNU make in almost
6744           every Makefile anyway.
6745           
6746         * configure.ac:
6747           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6748           at the same time is required for per target flags.
6749
6750 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6751
6752         * gst/videomixer/videomixer.c: (gst_videomixer_init):
6753         Fix error from my last commit.
6754
6755 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
6756
6757         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6758
6759         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6760           Make sure the ISO 639-X language code in ID3v2 COMM frames
6761           is actually valid UTF-8 (or rather: ASCII), so we don't end
6762           up with non-UTF8 strings in tags if there's garbage in the
6763           language field. Also make sure the language code is always
6764           lower case. Fixes: #508291.
6765
6766 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6767
6768         * ChangeLog:
6769           Fix ChangeLog typo.
6770
6771 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6772
6773         * Makefile.am:
6774           Include lcov.mak to allow building coverage reports. Guard
6775           check-torture target like in the other packages.
6776
6777 2008-01-09  Sameer Naik  <sameer@damagehead.com>
6778
6779         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
6780
6781         * gst/videomixer/videomixer.c:
6782         (gst_videomixer_set_master_geometry), (_do_init),
6783         (gst_videomixer_child_proxy_get_child_by_index),
6784         (gst_videomixer_child_proxy_get_children_count),
6785         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6786         (gst_videomixer_init), (gst_videomixer_request_new_pad),
6787         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6788         Implement GstChildProxy interface.
6789         Send newsegment at the right moment
6790         Fixes #488879
6791
6792 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
6793
6794         * gst/alpha/Makefile.am:
6795         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6796         (gst_alpha_sink_event), (gst_alpha_chain),
6797         (gst_alpha_change_state), (plugin_init):
6798         Make the various properties of 'alpha' controllable. This allows doing
6799         niceties like fade-in/fade-out.
6800
6801 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
6802
6803         * gst/rtp/gstasteriskh263.c:
6804         * gst/rtp/gstrtpL16depay.c:
6805         * gst/rtp/gstrtpac3depay.c:
6806         * gst/rtp/gstrtpamrpay.c:
6807         * gst/rtp/gstrtpdepay.c:
6808         * gst/rtp/gstrtpgsmdepay.c:
6809         * gst/rtp/gstrtph263depay.c:
6810         * gst/rtp/gstrtph263pdepay.c:
6811         * gst/rtp/gstrtph263ppay.c:
6812         * gst/rtp/gstrtph264depay.c:
6813         * gst/rtp/gstrtph264pay.c:
6814         * gst/rtp/gstrtpmp2tdepay.c:
6815         * gst/rtp/gstrtpmp4adepay.c:
6816         * gst/rtp/gstrtpmp4gdepay.c:
6817         * gst/rtp/gstrtpmp4gpay.c:
6818         * gst/rtp/gstrtpmp4vdepay.c:
6819         * gst/rtp/gstrtpmpadepay.c:
6820         * gst/rtp/gstrtpmpvdepay.c:
6821         * gst/rtp/gstrtpsv3vdepay.c:
6822         * gst/rtp/gstrtptheoradepay.c:
6823         * gst/rtp/gstrtptheorapay.c:
6824         * gst/rtp/gstrtpvorbisdepay.c:
6825         * gst/rtp/gstrtpvorbispay.c:
6826           Remove copy/paste unused code (property setters and getter) found by
6827           the coverage suite (yay, saves ~20k on disk).
6828
6829 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6830
6831         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
6832           (videosink_templ):
6833           Also fix up pad templates to indicate that image/jpeg doesn't
6834           absolutely require the framerate property to be set (#504081).
6835
6836 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6837
6838         Based on patch by: Wouter Cloetens  <wouter at mind be>
6839
6840         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
6841           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
6842           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
6843         * gst/matroska/matroska-mux.h:
6844           Keep track of first and last timestamps for each incoming stream,
6845           so we can calculate the total duration for live sources and other
6846           input where we can't query the duration from the start or where
6847           there's no constant framerate from which we can deduce the
6848           duration; also use calculated/observed duration if it is bigger
6849           than the previously queried duration. Furthermore, use
6850           gst_pad_query_peer_duration() and take into account that it may
6851           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
6852           screws up comparisons when using unsigned integers. Fixes #504081.
6853
6854 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
6855
6856         * configure.ac:
6857         * gst/audiofx/audioamplify.c:
6858         (gst_audio_amplify_clipping_method_get_type),
6859         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
6860         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
6861         (gst_audio_dynamic_transform_ip):
6862         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
6863         (gst_audio_invert_transform_ip):
6864         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
6865         (gst_audio_panorama_transform):
6866         * gst/level/gstlevel.c: (gst_level_init):
6867         Make elements GST_BUFFER_FLAG_GAP aware and call
6868         gst_base_transform_set_gap_aware for this.
6869         Bump core requirement to CVS.
6870         
6871         * gst/audiofx/audiochebyshevfreqband.c:
6872         (gst_audio_chebyshev_freq_band_transform_ip):
6873         * gst/audiofx/audiochebyshevfreqlimit.c:
6874         (gst_audio_chebyshev_freq_limit_transform_ip):
6875         Also sync GObject properties to the controller if operating
6876         in passthrough mode.
6877
6878 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
6879
6880         * sys/directdraw/gstdirectdrawsink.c:
6881           (gst_directdraw_sink_window_thread):
6882           FALSE is not a gpointer.
6883
6884 2008-01-05  Julien Moutte  <julien@fluendo.com>
6885
6886         * sys/directdraw/gstdirectdrawsink.c:
6887         (gst_directdraw_sink_set_window_id),
6888         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
6889         (gst_directdraw_sink_buffer_alloc),
6890         (gst_directdraw_sink_draw_borders),
6891         (gst_directdraw_sink_show_frame),
6892         (gst_directdraw_sink_setup_ddraw),
6893         (gst_directdraw_sink_window_thread),
6894         (gst_directdraw_sink_get_ddrawcaps),
6895         (gst_directdraw_sink_surface_create): Make sure we create our
6896         internal window only when we need it. That will give a chance to
6897         the application to get the prepare-xwindow-id bus message. Draw
6898         black borders when keeping aspect ratio. Handle the case where our
6899         rendering window disappears (closed or errors) like other sinks
6900         do. Various 80 columns fixes, improve state change order. That
6901         element could need some more love.
6902
6903 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
6904
6905         * ext/taglib/gstapev2mux.h:
6906         * ext/taglib/gstid3v2mux.h:
6907         Remove useless typedefs without new type name. Fixes a warning with
6908         gcc 4.3.
6909
6910 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
6911
6912         Patch by: John Millikin <jmillikin at gmail dot com>
6913
6914         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
6915         (gst_flac_dec_setup_stream_decoder),
6916         (gst_flac_normalize_picture_mime_type),
6917         (gst_flac_extract_picture_buffer),
6918         (gst_flac_dec_metadata_callback):
6919         Emit metadata messages when a PICTURE block is encountered.
6920         Fixes #506715.
6921
6922 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
6923
6924         * gst/avi/gstavi.c:
6925         increase rank because no known issues anymore ...
6926         * gst/avi/gstavisubtitle.c:
6927         send subtitle name to the srcpad
6928
6929 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6930
6931         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
6932         * gst/rtsp/gstrtspsrc.h:
6933         Implement redirect for the DESCRIBE reply. Fixes #506025.
6934
6935 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
6936
6937         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
6938         Fix 'xyz may be used uninitialized' compiler warnings caused
6939         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
6940         abort() in any case but properly report the error.
6941
6942 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
6943
6944         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
6945         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
6946         * sys/ximage/gstximagesrc.c: (composite_pixel):
6947           Fix 'xyz may be used uninitialized' compiler warnings caused
6948           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
6949           not really nice to abort in any case). Fixes #505745.
6950
6951 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
6952
6953         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
6954           Small unit test fix (has no practical impact at the moment,
6955           since we're only feeding utf8 and hence just create a sub-
6956           buffer for the output).
6957
6958 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
6959
6960         * gst/avi/gstavisubtitle.c:
6961         * tests/check/elements/avisubtitle.c:
6962         Add seeking support for avi subtitle
6963
6964 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6965
6966         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
6967         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
6968         (gst_flac_dec_write):
6969         * ext/flac/gstflacdec.h:
6970         Remove some unused vars.
6971         Do more cleanup of leftover events and tags.
6972         Output tags after the segment event. Fixes #504018.
6973
6974 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
6975
6976         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
6977           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
6978           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
6979           Detect other UTF byte order markers and convert to UTF-8 as
6980           appropriate.
6981
6982 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
6983
6984         * gst/avi/gstavisubtitle.c: (src_template),
6985           (gst_avi_subtitle_extract_utf8_file),
6986           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
6987           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
6988           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
6989         * gst/avi/gstavisubtitle.h:
6990           Refactor a bit; fix name extraction; don't assume all the data
6991           in the chunk is actually subtitle data, there may be padding at
6992           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
6993           file so it's there to send again after a seek (for future use).
6994
6995 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
6996
6997         * gst/avi/Makefile.am:
6998         * gst/avi/gstavi.c:
6999         * gst/avi/gstavisubtitle.c:
7000         * gst/avi/gstavisubtitle.h:
7001         * tests/check/Makefile.am:
7002         * tests/check/elements/avisubtitle.c:
7003         * win32/common/config.h:
7004                 Add avi subtitle element for bug #442034. Need seeking support
7005                 and more support for character conversion.
7006
7007 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7008
7009         * Makefile.am:
7010           Include common/win32.mak for CRLF check of win32 project
7011           files (see #393626).
7012
7013         * win32/vs6/libgstpng.dsp:
7014           Fix line endings and do cvs admin -kb.
7015
7016 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
7017
7018         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7019         Actually drop the buffers which are outside the currently configured
7020         segment instead of just emitting a WARNING.
7021
7022 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
7023
7024         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7025         (gst_flac_dec_write):
7026         * ext/flac/gstflacdec.h:
7027         Send segments from the streaming thread. Fixes #502187.
7028         Fix segment seeking and a bunch of other seeking cases.
7029
7030 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
7031
7032         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7033           Parse WOAF frames and put the result into GST_TAG_CONTACT,
7034           which is where it would end up if the same information was
7035           put in a vorbis comment (don't think it's worth adding a
7036           new URI tag for this). Fixes #488112.
7037
7038 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7039
7040         * configure.ac:
7041           We need core/base 0.10.15 or later.
7042
7043 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7044
7045         Patch by: Mark Nauwelaerts <manauw skynet be>
7046
7047         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7048         Fix regression in stream numbering. Fixes #502655.
7049
7050 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7051
7052         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7053
7054         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7055         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7056         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7057         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7058         (gst_rtp_h264_pay_handle_buffer):
7059         * gst/rtp/gstrtph264pay.h:
7060         Use higher performance start-code searching.
7061         Parse NALs and store SPS, PPS and profile in the caps so that they can
7062         be used in the SDP. Fixes #502814.
7063
7064 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7065
7066         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7067         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7068           Init some structs to zero before we pass them to ioctl, which
7069           avoids valgrind warnings.  Also fix a small memory leak.
7070
7071 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7072
7073         Patch by: Wouter Cloetens <wouter at mind dot be>
7074
7075         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7076         Copy timestamp from input to output. Not very perfect yet but better
7077         than nothing. Fixes #503023.
7078
7079 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7080
7081         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7082           Also print a useful error message with the old Wavpack API
7083           if possible.
7084
7085 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
7086
7087         * ext/wavpack/gstwavpackdec.c:
7088           More build fixes for old libwavpack versions: include config.h so
7089           that WAVPACK_OLD_API is actually defined as detected; only use
7090           WavpackGetErrorMessage if it is available. This fixes the build
7091           on debian stable for me.
7092
7093 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7094
7095         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7096         * ext/wavpack/gstwavpackparse.c:
7097           (gst_wavpack_parse_create_src_pad):
7098           Workaround the non-existance of WavpackGetChannelMask in Wavpack
7099           versions below 4.40.0.
7100
7101 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7102
7103         * configure.ac:
7104           And now do it right for real...
7105
7106 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7107
7108         * configure.ac:
7109           Correctly reset $LIBS to not contain -lm.
7110
7111 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7112
7113         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7114
7115         * configure.ac:
7116         * ext/cairo/gsttimeoverlay.c:
7117           (gst_cairo_time_overlay_print_smpte_time):
7118           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7119           and checking for rint() and implementing it ourself if it doesn't
7120           exist. Fixes #497293.
7121
7122 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
7123
7124         * configure.ac:
7125           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7126
7127 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
7128
7129         * sys/oss/gstosshelper.c:
7130         Verify that the format returned after the ioctl is the one
7131         we requested. It is valid for the ioctl to succeed while
7132         substituting an alternate 'supported' sample format.
7133
7134 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
7135
7136         * sys/oss/gstossaudio.c: (plugin_init):
7137         * sys/oss/gstosssink.c: (gst_oss_sink_open):
7138         * sys/oss/gstosssrc.c: (gst_oss_src_open):
7139           Post decent (and translated) error message when we can't
7140           open the audio device for some reason.
7141
7142 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
7143
7144         * sys/oss/gstosssink.c:
7145         * sys/oss/gstosssrc.c:
7146         Allow the AUDIODEV environment variable to redirect us
7147         to a different default OSS device, like sunaudiosink does
7148         on Solaris (makes audio play automatically on SunRays).
7149
7150 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
7151
7152         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7153         * gst/audiofx/audiochebyshevfreqband.c:
7154         (gst_audio_chebyshev_freq_band_transform_ip):
7155         * gst/audiofx/audiochebyshevfreqlimit.c:
7156         (gst_audio_chebyshev_freq_limit_transform_ip):
7157         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7158         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7159         The transform_ip() methods should do nothing if in passthrough mode.
7160         It might get non-writable buffers in that case but the buffer might
7161         as well be writable.
7162
7163         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7164         The transform() methods won't be called in passthrough mode and
7165         otherwise the buffer is always writable so don't check here.
7166
7167 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
7168
7169         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7170           Fix seeking in .wav files again (#501775).  Some people seem to think
7171           they don't need to test their changes when they're just 'reflowing'
7172           some code.
7173
7174 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7175
7176         * gst/autodetect/gstautovideosink.c:
7177         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7178         (gst_auto_video_sink_init),
7179         (gst_auto_video_sink_create_element_with_pretty_name),
7180         (gst_auto_video_sink_find_best),
7181         (gst_auto_video_sink_set_property),
7182         (gst_auto_video_sink_get_property):
7183         * gst/autodetect/gstautovideosink.h:
7184         Fix docs.
7185         Use same error reporting code as autoaudiosink.
7186         Add property to filter sinks based on caps. Only select raw video sinks
7187         by default for backwards compat.
7188         API: GstAutoVideoSink::filter-caps
7189
7190 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
7191
7192         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7193
7194         * gst/autodetect/gstautoaudiosink.c:
7195         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7196         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7197         (gst_auto_audio_sink_set_property),
7198         (gst_auto_audio_sink_get_property):
7199         * gst/autodetect/gstautoaudiosink.h:
7200         Add property to filter sinks based on caps. Only select raw audio sinks
7201         by default for backwards compat.  Fixes #417420.
7202         API: GstAutoAudioSink::filter-caps
7203
7204 2007-11-29  Michael Smith <msmith@fluendo.com>
7205
7206         Patch by: Arek Korbik <arkadini@gmail.com>
7207
7208         * gst/videobox/gstvideobox.c: (plugin_init):
7209           Initialise liboil in plugin_init()
7210
7211 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
7212
7213         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7214         Post error before sending EOS. Fixes #499178.
7215
7216 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
7217
7218         * win32/vs6/gst_plugins_good.dsw:
7219         * win32/vs6/libgstpng.dsp:
7220         Add a project file for libgstpng
7221
7222 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
7223
7224         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7225         (gst_rtp_h263_depay_process):
7226         Code beautification.
7227         Added debug statements.
7228         Don't bit-shift everything, just do operations on last/first byte
7229         instead.
7230
7231 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
7232
7233         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7234
7235         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7236         Fix wrong comparison in overrun check. Fixes #499239 some more.
7237
7238 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
7239
7240         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7241         (gst_rtp_h263_depay_process):
7242         * gst/rtp/gstrtph263depay.h:
7243         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7244         stream.
7245
7246 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
7247
7248         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7249
7250         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7251         (gst_rtp_mp4a_depay_process):
7252         * gst/rtp/gstrtpmp4adepay.h:
7253         Fix depayloading when multiple frames are inside one RTP packet.
7254         Fixes #499239.
7255
7256 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7257
7258         * gst/level/gstlevel.c:
7259           Add GAP-flag support.
7260
7261 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
7262
7263         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7264         Read the I flag for Mode A h263 rtp stream and set the
7265         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7266         Fixes #499383
7267
7268 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7269
7270         * gst/level/gstlevel.c:
7271           Remove some dead code and do cleanups.
7272
7273 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
7274
7275         * tests/check/pipelines/simple-launch-lines.c:
7276           Improve the tests by allowing to set a target state.
7277
7278 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
7279
7280         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7281         Don't check the caps of the output buffer if they're equal some
7282         other caps. The caps can change in a backward compatible way
7283         and did at this point.
7284
7285 2007-11-24  Julien MOUTTE  <julien@moutte.net>
7286
7287         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7288         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7289         (gst_qtdemux_seek_to_previous_keyframe),
7290         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7291         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7292         reverse playback support.
7293
7294 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7295
7296         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7297         Also set the channel layout on the Wavpack caps if we're having
7298         a mono layout. Of course only do it for "audio/x-wavpack".
7299
7300 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
7301
7302         * ext/wavpack/gstwavpackcommon.c:
7303         (gst_wavpack_get_default_channel_mask),
7304         (gst_wavpack_set_channel_layout),
7305         (gst_wavpack_get_default_channel_positions),
7306         (gst_wavpack_get_channel_mask_from_positions),
7307         (gst_wavpack_set_channel_mapping):
7308         * ext/wavpack/gstwavpackcommon.h:
7309         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7310         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7311         * ext/wavpack/gstwavpackdec.h:
7312         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7313         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7314         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7315         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7316         (gst_wavpack_enc_rewrite_first_block),
7317         (gst_wavpack_enc_sink_event):
7318         * ext/wavpack/gstwavpackenc.h:
7319         * ext/wavpack/gstwavpackparse.c:
7320         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7321         (gst_wavpack_parse_scan_to_find_sample),
7322         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7323         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7324         * ext/wavpack/gstwavpackparse.h:
7325         Add support for encoding, parsing and decoding multichannel
7326         files with up to 8 channels. This also improves the robustness
7327         of parsing quite a bit.
7328
7329         * ext/wavpack/gstwavpackstreamreader.c:
7330         (gst_wavpack_stream_reader_read_bytes),
7331         (gst_wavpack_stream_reader_get_pos),
7332         (gst_wavpack_stream_reader_set_pos_abs),
7333         (gst_wavpack_stream_reader_set_pos_rel),
7334         (gst_wavpack_stream_reader_push_back_byte),
7335         (gst_wavpack_stream_reader_get_length),
7336         (gst_wavpack_stream_reader_can_seek),
7337         (gst_wavpack_stream_reader_write_bytes):
7338         Improve debugging.
7339
7340 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7341
7342         * ext/libpng/gstpngdec.c:
7343         * ext/libpng/gstpngdec.h:
7344           Don't release the png-memory from within the callback.
7345
7346 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7347
7348         Patch by: René Stadler <mail at renestadler dot de>
7349
7350         * ext/libpng/gstpngenc.c:
7351           Don't leak buffer data memory. Fixes #498395.
7352
7353 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
7354
7355         Patch by: René Stadler <mail at renestadler dot de>
7356
7357         * tests/check/pipelines/simple-launch-lines.c:
7358           Tests for #498395.
7359
7360 2007-11-20  Julien MOUTTE  <julien@moutte.net>
7361
7362         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7363         (gst_tag_lib_mux_adjust_event_offsets):
7364         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7365         * sys/osxaudio/Makefile.am:
7366         * sys/osxvideo/cocoawindow.h:
7367         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7368
7369 2007-11-15  David Schleef  <ds@schleef.org>
7370
7371         * ext/cairo/gsttextoverlay.c:
7372           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
7373
7374 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7375
7376         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7377
7378         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7379         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7380         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7381         * gst/rtp/gstrtpmp2tpay.h:
7382         Fill the MTU with as many packets as possible. Fixes #491323.
7383
7384 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7385
7386         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7387
7388         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7389         Fix some more leaks. Fixes #497007.
7390
7391 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7392
7393         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7394
7395         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7396         (gst_rtspsrc_stream_configure_tcp):
7397         Fix 3 pad leaks. Fixes #496983.
7398
7399 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7400
7401         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7402
7403         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7404         Fix small leak. Fixes #497017.
7405
7406 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
7407
7408         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7409         (gst_qtdemux_prepare_current_sample),
7410         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7411         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7412         * gst/qtdemux/qtdemux_fourcc.h:
7413         * gst/qtdemux/qtdemux_types.c:
7414         Add suppport for theora in quicktime according to XiphQT.
7415
7416 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
7417
7418         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7419         (gst_v4l2src_init), (gst_v4l2src_set_property),
7420         (gst_v4l2src_get_property):
7421         * sys/v4l2/gstv4l2src.h:
7422         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7423           Always copy buffers by default (handle safer with bugged drivers)
7424           and added a property to make it possible to use mmap effectively (no
7425           copy if possible) when application wants to. Fixes: #480557.
7426
7427 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7428
7429         * gst/id3demux/id3tags.c:
7430         * gst/id3demux/id3tags.h:
7431         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7432           We don't want the same string multiple times in a tag list for the
7433           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7434           this doesn't happen and remove special-case code for GST_TAG_GENRE.
7435
7436 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7437
7438         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7439           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7440           into ID3v2 TXXX frames (fixes #347848).
7441
7442 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7443
7444         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7445           Don't leak sdp message contents (fixes #496773).
7446
7447         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7448           Don't leak URI string.
7449
7450 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7451
7452         Patch by: Julien Puydt <julien dot puydt at laposte net>
7453
7454         * ext/raw1394/Makefile.am:
7455         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7456           (gst_1394_property_probe_get_properties),
7457           (gst_1394_property_probe_probe_property),
7458           (gst_1394_property_probe_needs_probe),
7459           (gst_1394_property_probe_get_values),
7460           (gst_1394_property_probe_interface_init),
7461           (gst_1394_type_add_property_probe_interface):
7462         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7463         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7464           (gst_dv1394src_init), (gst_dv1394src_dispose),
7465           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7466           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7467           (gst_dv1394src_update_device_name):
7468         * ext/raw1394/gstdv1394src.h:
7469           Implement GstPropertyProbe interface and add "device-name" property,
7470           so applications can use this to probe for available devices in the
7471           same way they can already with v4lsrc and v4l2src (however horrible
7472           this property probe interface may be). Fixes #358841.
7473
7474 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7475
7476         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7477
7478         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7479           (gst_rtspsrc_parse_range):
7480           Don't leak event, don't leak range (fixes #496752).
7481
7482 2007-11-14  Michael Smith <msmith@fluendo.com>
7483
7484         Patch by: Arek Korbik <arkadini@gmail.com>
7485
7486         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7487           Detect RGBA/BGRA correctly on little endian systems.
7488
7489 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7490
7491         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7492           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7493           corresponding ioctl() call fails even though the driver claims to
7494           support this format, just fall back to the pre-2.6.19 kernel
7495           routine that creates caps with suitable height and width ranges
7496           (see #448278).
7497
7498 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7499
7500         Patch by: Mark Nauwelaerts <manauw skynet be>
7501
7502         * gst/matroska/matroska-demux.c:
7503           (gst_matroska_demux_push_dvd_clut_change_event),
7504           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7505           (gst_matroska_demux_subtitle_caps):
7506         * gst/matroska/matroska-ids.h:
7507           Extract palette data for dvd subpicture streams and send it
7508           downstream as custom gstreamer dvd event (fixes #453417).
7509
7510 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
7511
7512         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7513           Implement minimal parsing of the passed pango font description
7514           string, so passing a font size works the same as with the
7515           pango textoverlay plugin; fixes #455086.
7516           (Maybe we could just use pangocairo here at some point).
7517
7518 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7519
7520         * gst/avi/gstavidemux.c:
7521         * gst/wavparse/gstwavparse.c:
7522           Return the result in _activate_pull(). Don't ref element there.
7523
7524 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
7525
7526         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7527         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7528         (gst_wavparse_srcpad_event):
7529           Ref the element when we should, but not when we its not needed. Reflow
7530           the event_handling to not leak the event.       
7531
7532 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
7533
7534         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7535         (qtdemux_parse_samples):
7536         Properly free QTDemuxSamples array.
7537         Protect table write with a sensible check, some files apparently DO contain
7538         stts values starting with 0 :(
7539
7540 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7541
7542         * gst/avi/gstavidemux.c:
7543         * gst/qtdemux/qtdemux.c:
7544           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7545           previous commit messed up.
7546
7547 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
7548
7549         * gst/avi/gstavidemux.c:
7550         * gst/qtdemux/qtdemux.c:
7551           Sync _handle_src_event() with oggdemux. In avidemux also ref the
7552           element when we should, but not when we its not needed.
7553
7554 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
7555
7556         * gst/wavparse/gstwavparse.c:
7557           Return FALSE if we can't handle a query instead of changing the
7558           format. Ignore fact when dealing with mpeg audio.
7559
7560 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7561
7562         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
7563
7564         * configure.ac:
7565         * gst/udp/gstdynudpsink.c:
7566         * gst/udp/gstdynudpsink.h:
7567         * gst/udp/gstmultiudpsink.c:
7568         * gst/udp/gstmultiudpsink.h:
7569         * gst/udp/gstudpsink.c:
7570         * gst/udp/gstudpsink.h:
7571           Fix includes for MSVC and GLib-2.14.0 (#492388).
7572
7573         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7574           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7575
7576 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
7577
7578         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7579         (gst_mulawdec_chain):
7580         * gst/law/mulaw-decode.h:
7581         Calculate outgoing buffer duration if incoming buffer didn't have a
7582         valid duration.
7583
7584 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
7585
7586         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7587         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7588         Smarter combine_flow code that also deals with downstream elements
7589         returning UNEXPECTED when they receive data out of the segment
7590         boundaries. Fixes #491305.
7591
7592 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
7593
7594         * sys/v4l2/v4l2src_calls.c:
7595           Fix 'unused variable' compiler warning when compiling against
7596           older kernel headers.
7597
7598 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
7599
7600         * ext/taglib/gstid3v2mux.cc (add_funcs):
7601           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7602
7603 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
7604
7605         * tests/check/pipelines/simple-launch-lines.c:
7606            Improve the tests a little more.
7607
7608 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
7609
7610         patch by: Yun Zheng Hu
7611
7612         * sys/osxaudio/gstosxaudiosrc.c:
7613         Use default input device instead of default output device and
7614         only memcpy actual available bytes.
7615
7616 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
7617
7618         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7619           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7620           early. It is temporary until we find something better.
7621
7622 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7623
7624         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
7625
7626         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7627         Fix race when pausing a RTSP stream in interleaved.
7628         Fixes #475784.
7629
7630 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
7631
7632         Patch by: Peter Kjellerstedt <pkj at axis com>
7633
7634         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7635         Use correct unref function for buffers. #488844.
7636
7637 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
7638
7639         * gst/avi/gstavimux.c:
7640         * tests/check/elements/avimux.c:
7641           Add some debug and sync tests with the fix.     
7642
7643 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7644
7645         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7646
7647         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7648         When the socket is used by the app for other purposes, don't generate an
7649         error if there is activaty on the socket that is not data related.
7650         Fixes #487488.
7651
7652 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7653
7654         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7655         (gst_v4l2src_grab_frame):
7656         Add some more debug info. Generate an error when we run out of buffers
7657         for some reason. See #480557.
7658
7659 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
7660
7661         Patch by: Anders Skargren <anders dot skargren at axis dot com>
7662
7663         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7664         Set marker bit correctly.
7665
7666 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
7667
7668         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7669         Use allowed name for the GstStructure.
7670
7671 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
7672
7673         * ext/gconf/gstswitchsink.c:
7674         * gst/autodetect/gstautoaudiosink.c:
7675           Use new gst_bus_pop_filtered().
7676
7677 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
7678
7679         * sys/v4l2/gstv4l2src.c:
7680         * sys/v4l2/v4l2src_calls.c:
7681           When probing the formats and sizes a camera supports, make
7682           sure the best ones (highest resolution, prefered format)
7683           end up at the beginning of the probed caps and the less
7684           desirable ones at the end.  This is important because the
7685           order within the caps matters for things like fixation and
7686           negotiation, ie. what format is chosen in the end.
7687           With recent kernels, the current probing code will end up
7688           querying the supported sizes from lowest resolution to
7689           highest resolution, adding them to the probed caps in that
7690           order, resulting to v4l2src fixating to the lowest possible
7691           resolution if downstream does not express a size preference.
7692           Also make up a somewhat random ranking of prefered output
7693           formats for the same reason. Fixes #485828.
7694         
7695 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7696
7697         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
7698
7699         * gst/id3demux/id3v2frames.c:
7700           Extract license/copyright URIs from ID3v2 WCOP frames
7701           (Fixes #447000).
7702
7703         * tests/check/elements/id3demux.c:
7704         * tests/files/Makefile.am:
7705         * tests/files/id3-447000-wcop.tag:
7706           Add simple unit test.
7707
7708 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7709
7710         * ext/taglib/gstid3v2mux.cc:
7711           Add support for license/copyright URI tags (ID3v2 WCOP frame).
7712           Prerequisite for #447000.
7713
7714 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
7715
7716         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7717         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7718         a GstClockTime.
7719
7720 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7721
7722         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7723         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7724         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7725         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7726         (gst_rtspsrc_change_state):
7727         More seeking fixes, mostly passing around the new playback segment in
7728         order to configure it properly.
7729         Also reset base_time of udp sources when setting them back to PLAYING as
7730         a temporary hack until core supports seek in live sources properly.
7731
7732 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
7733
7734         * gst/rtp/gstrtpmp4adepay.c:
7735         Fix caps as to not confuse autopluggers.
7736
7737 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7738
7739         * gst/id3demux/gstid3demux.c:
7740         * gst/id3demux/gstid3demux.h:
7741         * gst/id3demux/id3tags.c:
7742         * gst/id3demux/id3tags.h:
7743         * gst/id3demux/id3v2frames.c:
7744           Port ID3 tag demuxer over to the new GstTagDemux in -base
7745           (now would be a good time to test re-importing your music
7746           collection).
7747
7748 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
7749
7750         * gst/apetag/Makefile.am:
7751         * gst/apetag/gstapedemux.c:
7752         * gst/apetag/gstapedemux.h:
7753         * gst/apetag/gsttagdemux.c:
7754         * gst/apetag/gsttagdemux.h:
7755           Port APE tag demuxer over to the new GstTagDemux in -base.
7756
7757 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
7758
7759         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7760         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7761         (gst_rtspsrc_handle_internal_src_query),
7762         (gst_rtspsrc_handle_src_query), (new_session_pad),
7763         (gst_rtspsrc_stream_configure_tcp),
7764         (gst_rtspsrc_stream_configure_transport),
7765         (gst_rtspsrc_loop_send_cmd):
7766         Improve flushing behaviour.
7767         Set state of the udp sources to PAUSE/PLAYING correctly.
7768         Handle events and queries for UDP and TCP transport now.
7769
7770 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7771
7772         * gst/rtp/gstrtpgsmdepay.c:
7773         * gst/rtp/gstrtpgsmpay.c:
7774           Add log category.
7775
7776 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
7777
7778         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7779
7780         * tests/check/Makefile.am:
7781         * tests/check/pipelines/simple-launch-lines.c:
7782           Add unit tests for payloaders/depayloaders.
7783
7784 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7785
7786         * gst/avi/gstavimux.c:
7787         * gst/avi/gstavimux.h:
7788           Also save codec data for audio streams. Fixes #482495.
7789
7790 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
7791
7792         * gst/avi/gstavimux.c:
7793           Fix "Index entry has invalid stream nr 1".
7794           Add support for muxing aac - work in progress (see #482495).
7795
7796 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7797
7798         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7799         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7800         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7801         * gst/rtsp/gstrtspsrc.h:
7802         Parse bandwidth modifiers, they are not yet configured in the session
7803         manager because we don't have an API for that yet.
7804
7805 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
7806
7807         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7808         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7809         Use shiny new function in -base to get the default clock-rate.
7810         Update some docs.
7811
7812 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
7813
7814         * win32/MANIFEST:
7815         Add files to win32 manifest.
7816         * win32/vs6/libgstaudiofx.dsp:
7817         * win32/vs6/libgstqtdemux.dsp:
7818         * win32/vs6/libgstrtp.dsp:
7819         * win32/vs6/libgstrtsp.dsp:
7820         Update project files.
7821
7822 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
7823
7824         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
7825         (gst_rtspsrc_play):
7826         * gst/rtsp/gstrtspsrc.h:
7827         In TCP mode, only timestamp the first buffer. TCP is not real time and
7828         it does not make sense to try to skew compensate, also some servers send
7829         the first batch of data in a burst.
7830
7831 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
7832
7833         * gst/matroska/matroska-demux.c:
7834           Fix setting the discont flag on the first buffer
7835           pushed downstream for formats with private codec
7836           data that needs to be deserialised into buffers
7837           (such as vorbis and FLAC when in a matroska container).
7838
7839 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
7840
7841         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
7842
7843         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
7844         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
7845         (gst_rtp_mp4v_pay_handle_buffer):
7846         * gst/rtp/gstrtpmp4vpay.h:
7847         Free the config string. Fixes #480707.
7848         Clean up the timestamp code a little.
7849
7850 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7851
7852         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
7853         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
7854         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
7855         * gst/rtsp/gstrtspsrc.h:
7856         Set timestamps on RTP buffers in interleaved mode.
7857         Mark first buffers with a DISCONT.
7858         Remove flush hack now that sync for live sources has been figured out.
7859
7860 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7861
7862         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7863         Update documentation.
7864
7865 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7866
7867         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
7868         (gst_rtp_xqt_depay_change_state):
7869         * gst/qtdemux/gstrtpxqtdepay.h:
7870         Fail if we don't know the quicktime format.
7871
7872 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
7873
7874         * ext/flac/gstflacenc.c:
7875         * ext/flac/gstflacenc.h:
7876           Save the flow return from the last gst_pad_push() and
7877           make sure we pass the right flow return value upstream
7878           in the case of failure; minor clean-ups.
7879
7880 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7881
7882         * ext/taglib/gstapev2mux.cc:
7883         * ext/taglib/gstid3v2mux.cc:
7884         * gst/apetag/gstapedemux.c:
7885           Add support for the new GST_TAG_COMPOSER (#459809).
7886
7887 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7888
7889         * gst/law/alaw-decode.c:
7890         * gst/law/alaw-decode.h:
7891         * gst/law/alaw-encode.c:
7892         * gst/law/alaw-encode.h:
7893         * gst/law/alaw.c:
7894         * gst/law/mulaw-conversion.h:
7895           Compulsive clean-ups: use boilerplate macros, add debug
7896           categories, fix up things to conform to symbol nomenklatura,
7897           etc.
7898
7899 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7900
7901         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
7902
7903         * gst/law/alaw-decode.c:
7904         * gst/law/alaw-encode.c:
7905           Use static tables for A-Law decoding and encoding; this makes
7906           A-Law decoding and encoding less CPU-intensive, but increases
7907           the binary size a bit. Leaving old code around for now,
7908           selectable by a define in the code. Fixes #435435.
7909
7910 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
7911
7912         * configure.ac:
7913         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
7914         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
7915         in configure.ac.
7916
7917 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
7918
7919         Patch by: Jan Gerber <j at bootlab dot org>
7920
7921         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
7922         Add fourccs for MPEG2 HDV streams. Fixes #479960.
7923
7924 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
7925
7926         * sys/oss/gstosshelper.c:
7927           Use GST_WARNING instead of a g_critical. This situation is not caused
7928           by the application.
7929
7930 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7931
7932         * po/LINGUAS:
7933         * po/nl.po:
7934           Updated translations.
7935
7936 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7937
7938         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
7939
7940         * po/eu.po:
7941           Added Basque translation.
7942
7943 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7944
7945         translated by: Abel Cheung <abelcheung@gmail.com>
7946
7947         * po/zh_HK.po:
7948         * po/zh_TW.po:
7949           Added Chinese (traditional and Hong Kong) translation.
7950
7951 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7952
7953         translated by: Jakub Bogusz <qboosh@pld-linux.org>
7954
7955         * po/pl.po:
7956           Added Polish translation.
7957
7958 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7959
7960         translated by: Ilkka Tuohela <hile@iki.fi>
7961
7962         * po/fi.po:
7963           Added Finnish translation.
7964
7965 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7966
7967         translated by: Jorge González González <aloriel@gmail.com>
7968
7969         * po/es.po:
7970           Added Spanish translation.
7971
7972 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7973
7974         translated by: Mogens Jaeger <mogens@jaeger.tf>
7975
7976         * po/da.po:
7977           Added Danish translation.
7978
7979 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7980
7981         translated by: Funda Wang <fundawang@linux.net.cn>
7982
7983         * po/zh_CN.po:
7984           Added Chinese (simplified) translation.
7985
7986 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7987
7988         translated by: Alexander Shopov <ash@contact.bg>
7989
7990         * po/bg.po:
7991           Added Bulgarian translation.
7992
7993 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
7994
7995         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
7996         Set outgoing packet duration because we can. Fixes #478244 some more.
7997
7998 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
7999
8000         * ext/cairo/gsttextoverlay.c:
8001           Add info about static leak.
8002         
8003         * tests/check/Makefile.am:
8004         * tests/check/generic/states.c:
8005           Improved state change unit test.
8006
8007 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
8008
8009         * docs/plugins/.cvsignore:
8010         * tests/check/.cvsignore:
8011           Ignore registries in any format.
8012
8013 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
8014
8015         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8016         Removed some unused code.
8017
8018         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8019         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8020         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8021         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8022         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8023         (gst_rtp_theora_pay_flush_packet):
8024         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8025         Try to preserve the incomming buffer duration on the outgoing
8026         packets. Fixes #478244.
8027
8028 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8029
8030         * ext/taglib/gstapev2mux.cc:
8031         * ext/taglib/gstid3v2mux.cc:
8032           Work around compiler warnings with g++-4.2 when assigning a
8033           string constant to a gchar * (partially fixes #478092).
8034
8035 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
8036
8037         * configure.ac:
8038           We require core CVS now for gst_base_src_set_do_timestamp().
8039
8040 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
8041
8042         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8043         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8044         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8045         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8046         (gst_rtspsrc_handle_message):
8047         Fix compiler warnings shown with Forte.
8048
8049 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8050
8051         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8052         (gst_rtspsrc_dup_printf):
8053         Give meaningfull error when all streams failed to configure for some
8054         reason.
8055
8056 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
8057
8058         * gst/rtp/README:
8059         Update README with the design for synchronisation rules of RTP on
8060         sender and receiver.
8061
8062 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
8063
8064         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8065         (gst_wavparse_chain):
8066         Don't push EOS from the chain function, the element
8067         driving the pipeline is responsible for this. The bug
8068         this was meant to fix seems to be queue not forwarding
8069         EOS in all cases (see #476514).
8070
8071 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
8072
8073         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8074         (gst_level_transform_ip):
8075         * gst/level/gstlevel.h:
8076         Use basetransform segment so that it is correctly managed on flushes and
8077         start/stop.
8078         Report message timestamp as stream time, which is what an application
8079         can understand.
8080
8081 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8082
8083         * ext/taglib/gstapev2mux.cc:
8084         * ext/taglib/gstapev2mux.h:
8085         * ext/taglib/gsttaglibmux.c:
8086         * tests/check/elements/apev2mux.c:
8087         Update my mail address.
8088
8089 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
8090
8091         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8092         (gst_wavparse_loop), (gst_wavparse_chain):
8093         Add EOS logic for the push-based mode too. Fixes #476514.
8094
8095 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
8096
8097         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8098         * gst/law/alaw-encode.h:
8099         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8100         (gst_mulawenc_chain):
8101         * gst/law/mulaw-encode.h:
8102         Fix law encoder timestamps.
8103
8104 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
8105
8106         * ext/gconf/gstgconfaudiosink.c:
8107           Fix warning when building without debug.
8108
8109         * sys/oss/gstossmixertrack.c:
8110           Use const like in alsamixertrack.c (fixes warnings).
8111
8112 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
8113
8114         * sys/v4l2/v4l2src_calls.c:
8115         (gst_v4l2src_probe_caps_for_format_and_size):
8116         Fix framerate detection code some more.
8117         Handle the case where there is a weird step in the stepwise framerates.
8118         Don't overwrite the min interval with the framerate, use a temp variable
8119         instead.
8120         Use max in the Continuous framerate intervals instead of step, which is
8121         1 according to the docs. Fixes #475424.
8122
8123 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
8124
8125         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8126         Make udpsrc timestamp outgoing buffers based on when they were received.
8127         Also make it output a segment in time.
8128
8129 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
8130
8131         * gst/avi/gstavidemux.c:
8132           Plug a little leak. Little code cleanups.
8133
8134 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
8135
8136         * configure.ac:
8137           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8138           flac versions, 's good for cross-compilation karma.
8139
8140 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
8141
8142         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
8143
8144         * gst/rtp/gstrtph263pay.c:
8145           Fix up header structure so that compilers don't add padding
8146           between the structure fields, since that would lead to us
8147           sending RTP packets with broken headers (as is currently the
8148           case when compiling with MSVC). Also see similar fixes in
8149           libgstrtp in gst-plugins-base. (#474616; #471194)
8150
8151 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
8152
8153         * sys/v4l2/v4l2src_calls.c:
8154         (gst_v4l2src_probe_caps_for_format_and_size):
8155         Don't overwrite our GValue with 0 but instead use the previously
8156         computed value. Fixes #471823 some more.
8157
8158 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8159
8160         * docs/plugins/gst-plugins-good-plugins.hierarchy:
8161           No tabs in this file please, or gtk-doc will end up documenting
8162           rather absurd class hierarchies.
8163
8164 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
8165
8166         * ext/gconf/gstswitchsink.c:
8167           If the new kid element fails to change state for some reason
8168           (e.g. esdsink not being able to connect to the sound server),
8169           forward the error message it posted on the bus instead of just
8170           posting a generic 'Internal state change error: please file a
8171           bug' error message. Fixes #471364.
8172
8173 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8174
8175         * gst/qtdemux/Makefile.am:
8176         * gst/qtdemux/qtdemux.c:
8177           Don't assume tags are encoded as UTF-8 (#473670).
8178
8179 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8180
8181         * sys/v4l2/gstv4l2src.c:
8182         * sys/v4l2/gstv4l2src.h:
8183         * sys/v4l2/v4l2src_calls.c:
8184           Implement LATENCY queries in the crudest way possible so I don't
8185           have to use sync=false any longer when testing with videosinks.
8186
8187 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
8188
8189         * configure.ac:
8190           Fix build.
8191
8192 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8193
8194         * sys/v4l2/v4l2src_calls.c:
8195         (gst_v4l2src_probe_caps_for_format_and_size):
8196         Add some more debugging in the framerate function.
8197         Iterate stepwise framerate up to and _including_ the max and if nothing
8198         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8199         don't end up with an empty list. Fixes #471823
8200
8201 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8202
8203         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8204         (gst_multiudpsink_set_clients_string),
8205         (gst_multiudpsink_get_clients_string),
8206         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8207         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8208         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8209         (gst_multiudpsink_clear):
8210         Add property do configure destination address/port pairs
8211         API:GstMultiUDPSink::clients
8212
8213 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8214
8215         * tests/examples/Makefile.am:
8216         * tests/examples/rtp/Makefile.am:
8217         * tests/examples/rtp/client-H263p-AMR.sh:
8218         * tests/examples/rtp/client-H263p-PCMA.sdp:
8219         * tests/examples/rtp/client-H263p-PCMA.sh:
8220         * tests/examples/rtp/client-H264-PCMA.sdp:
8221         * tests/examples/rtp/client-H264-PCMA.sh:
8222         * tests/examples/rtp/client-PCMA.sh:
8223         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8224         * tests/examples/rtp/server-alsasrc-PCMA.sh:
8225         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8226         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8227         Added some RTP example scripts for sending and receiving RTP streams.
8228
8229 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
8230
8231         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8232         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8233         Restructure the setcaps function so that we can also compute the
8234         expected GStreamer output size of the video frames.
8235         Set frame_byte_size correctly so that read-based devices have a chance
8236         of working correctly.
8237         When grabbing a frame, discard frames that are not of the expected size.
8238         Some cameras don't output the right framesize for the first buffer.
8239         Try only a couple of times to get a valid frame, else error out.
8240
8241         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8242         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8243         Add some more debug info when scanning the device.
8244
8245         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8246         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8247         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8248         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8249         Add some more debug info when dequeing a frame.
8250
8251 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8252
8253         * gst/wavparse/gstwavparse.c:
8254           More code cleanups. Add some more comment and improve debugs logs.
8255
8256 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
8257
8258         * gst/wavparse/gstwavparse.c:
8259         * gst/wavparse/gstwavparse.h:
8260           Implement seek-query. Refactor duration calculations. Appropriate use
8261           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8262           out of loops.
8263
8264 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
8265
8266         * gst/avi/gstavidemux.c:
8267           Implement seek-query.
8268
8269 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
8270
8271         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8272         (gst_rtspsrc_dup_printf):
8273         Use new basesink async property to make sparse RTCP packet not wait for
8274         preroll.
8275
8276 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
8277
8278         * gst/audiofx/Makefile.am:
8279         Dist the right file.
8280
8281 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
8282
8283         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8284         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8285         Make sure we generate and parse floating point values in the POSIX
8286         locale instead of the current locale. 
8287
8288 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
8289
8290         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8291         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8292         (gst_rtspsrc_play):
8293         * gst/rtsp/gstrtspsrc.h:
8294         Fix method detection again.
8295         Keep track of when we must send a Range header.
8296         Use segment values for Range, Speed and Scale headers.
8297         Parse Speed and Scale headers to update the segment values.
8298
8299 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
8300
8301         patch by: Mark Nauwelaerts <manauw@skynet.be>
8302
8303         * sys/v4l2/v4l2src_calls.c:
8304           Handle optional v4l2 ioctls gracefully.
8305
8306 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
8307
8308         * gst/rtp/Makefile.am:
8309         * gst/rtp/gstrtp.c: (plugin_init):
8310         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8311         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8312         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8313         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8314         (gst_rtp_h263_depay_get_property),
8315         (gst_rtp_h263_depay_change_state),
8316         (gst_rtp_h263_depay_plugin_init):
8317         * gst/rtp/gstrtph263depay.h:
8318         Added an H263 depayloader. Fixes #369392.
8319
8320         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8321         (gst_rtp_h263p_depay_process):
8322         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8323         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8324         Make the H263+ pay/depayloader support H263-1998 and H263-2000
8325         payloads.
8326         Also alow plain H263 on the h263p payloaders. Fixes #465040.
8327
8328 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8329
8330         * gst/audiofx/audiochebyshevfreqband.c:
8331         * gst/audiofx/audiochebyshevfreqlimit.c:
8332         Add small comparision with the windowed sinc filters in the docs.
8333
8334 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
8335
8336         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8337         (audiochebyshevfreqband_suite):
8338         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8339         (audiochebyshevfreqlimit_suite):
8340         Also test 32 bit float mode and the type 2 variants of the filters.
8341
8342 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
8343
8344         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8345         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8346         (gst_rtspsrc_loop):
8347         Refactor the udp and interleaved loop function a bit.
8348
8349 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8350
8351         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8352         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8353         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8354         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8355         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8356         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8357         * gst/rtsp/gstrtspsrc.h:
8358         Protect connection activity with a new lock, avoids deadlocks when going
8359         to PAUSED. Fixes #455808.
8360
8361 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8362
8363         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8364         Fix debug statement.
8365
8366 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8367
8368         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8369         Fix stray %u in debug line as spotted by Saur on IRC.
8370
8371 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
8372
8373         * gst/audiofx/audiochebyshevfreqband.c:
8374         (gst_audio_chebyshev_freq_band_class_init):
8375         * gst/audiofx/audiochebyshevfreqlimit.c:
8376         (gst_audio_chebyshev_freq_limit_class_init):
8377         Use generator macros for the process functions for the different
8378         sample types, add lower upper boundaries for the GObject properties
8379         so automatically generated UIs can use sliders and add a note about
8380         the number of poles as a too high number of poles combined with
8381         very low or very high frequencies will produce only noise.
8382         * docs/plugins/gst-plugins-good-plugins.args:
8383         Regenerated for the property changes.
8384
8385 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8386
8387         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8388         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8389         (gst_rtspsrc_stream_configure_udp_sink),
8390         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8391         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8392         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8393         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8394         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8395         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8396         * gst/rtsp/gstrtspsrc.h:
8397         Improve timeout handling.
8398         Use the same socket for sending and receiving RTCP packets so that some
8399         servers can track clients better.
8400         Improve connection closed handling. Try to reconnect.
8401         Don't overwrite our content base with NULL.
8402         Improve debugging.
8403         Improve range parsing and handling.
8404         Remove flushing hack now that core does the right thing.
8405
8406 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
8407
8408         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8409         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8410         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8411         (gst_multiudpsink_close), (gst_multiudpsink_add):
8412         * gst/udp/gstmultiudpsink.h:
8413         Add support for getting and setting the socket to use.
8414
8415         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8416         (gst_udpsrc_create), (gst_udpsrc_get_property):
8417         Add support for getting the currently used socket.
8418
8419 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
8420
8421         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8422
8423         * gst/audiofx/Makefile.am:
8424         * gst/audiofx/audiochebyshevfreqband.c:
8425         (gst_audio_chebyshev_freq_band_mode_get_type),
8426         (gst_audio_chebyshev_freq_band_base_init),
8427         (gst_audio_chebyshev_freq_band_dispose),
8428         (gst_audio_chebyshev_freq_band_class_init),
8429         (gst_audio_chebyshev_freq_band_init),
8430         (generate_biquad_coefficients), (calculate_gain),
8431         (generate_coefficients),
8432         (gst_audio_chebyshev_freq_band_set_property),
8433         (gst_audio_chebyshev_freq_band_get_property),
8434         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8435         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8436         (gst_audio_chebyshev_freq_band_start):
8437         * gst/audiofx/audiochebyshevfreqband.h:
8438         * gst/audiofx/audiochebyshevfreqlimit.c:
8439         (gst_audio_chebyshev_freq_limit_mode_get_type),
8440         (gst_audio_chebyshev_freq_limit_base_init),
8441         (gst_audio_chebyshev_freq_limit_dispose),
8442         (gst_audio_chebyshev_freq_limit_class_init),
8443         (gst_audio_chebyshev_freq_limit_init),
8444         (generate_biquad_coefficients), (calculate_gain),
8445         (generate_coefficients),
8446         (gst_audio_chebyshev_freq_limit_set_property),
8447         (gst_audio_chebyshev_freq_limit_get_property),
8448         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8449         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8450         (gst_audio_chebyshev_freq_limit_start):
8451         * gst/audiofx/audiochebyshevfreqlimit.h:
8452         * gst/audiofx/audiofx.c: (plugin_init):
8453         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8454         Fixes #464800.
8455
8456         * tests/check/Makefile.am:
8457         * tests/check/elements/.cvsignore:
8458         * tests/check/elements/audiochebyshevfreqband.c:
8459         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8460         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8461         * tests/check/elements/audiochebyshevfreqlimit.c:
8462         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8463         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8464         Add unit tests for the chebyshev filters.
8465
8466         * docs/plugins/Makefile.am:
8467         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8468         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8469         * docs/plugins/gst-plugins-good-plugins.args:
8470         * docs/plugins/inspect/plugin-1394.xml:
8471         * docs/plugins/inspect/plugin-audiofx.xml:
8472         * docs/plugins/inspect/plugin-dv.xml:
8473         * docs/plugins/inspect/plugin-flac.xml:
8474         * docs/plugins/inspect/plugin-jpeg.xml:
8475         * docs/plugins/inspect/plugin-png.xml:
8476         * docs/plugins/inspect/plugin-rtp.xml:
8477         * docs/plugins/inspect/plugin-shout2send.xml:
8478         * docs/plugins/inspect/plugin-wavpack.xml:
8479         And add docs for the chebyshev filters. While doing
8480         that also run make update in docs/plugins.
8481
8482 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8483
8484         * ext/annodex/gstcmmltag.c:
8485         * gst/rtp/gstrtpvorbispay.c:
8486           Make ro memory to share.
8487
8488 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8489
8490         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8491         Improve UDP performance by avoiding a select() when we have data
8492         available immediatly.
8493
8494 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
8495
8496         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8497         (gst_rtp_dec_class_init):
8498         * gst/rtsp/gstrtpdec.h:
8499         Add (dummy) SSRC management signals.
8500
8501         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8502         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8503         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8504         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8505         (on_timeout), (gst_rtspsrc_stream_configure_manager),
8506         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8507         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8508         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8509         * gst/rtsp/gstrtspsrc.h:
8510         Add connection-speed property.
8511         Add find_stream helper functions.
8512         Handle stream EOS based on BYE messages or SSRC timeout.
8513         Returns SUCCESS from the state change function as we hide our async
8514         elements from the parent.
8515
8516 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
8517
8518         * gst/debug/rndbuffersize.c:
8519           Fix da leak.
8520
8521 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
8522
8523         * gst/debug/Makefile.am:
8524         * gst/debug/breakmydata.c:
8525         * gst/debug/gstdebug.c:
8526         * gst/debug/negotiation.c:
8527         * gst/debug/progressreport.c:
8528         * gst/debug/rndbuffersize.c:
8529         * gst/debug/testplugin.c:
8530           Add new test element and clean-up the others a little.
8531
8532 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
8533
8534         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8535         Fix parsing of mp4a version 0 atoms. Fixes #465774.
8536
8537 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
8538
8539         * gst/rtp/gstrtpilbcdepay.c:
8540           Include stdlib.
8541
8542 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
8543
8544         * gst/rtp/gstrtpmpvdepay.c:
8545         Set the mpegversion in the caps so that autoplugging does not get
8546         confused.
8547
8548 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8549
8550         * po/hu.po:
8551         * po/uk.po:
8552         * po/vi.po:
8553           Updated translations.
8554
8555 2007-08-08  Michael Smith <msmith@fluendo.com>
8556
8557         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8558           Render right border in the correct location.
8559
8560 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
8561
8562         Patch by: Olivier Crete <tester at tester dot ca>
8563
8564         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8565         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8566         Make mode property a string. Fixes #464475.
8567
8568 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8569
8570         * ext/flac/gstflacenc.c:
8571           Widen caps to match decoder a bit and add more FIXMEs.
8572
8573 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
8574
8575         patch by: Mark Nauwelaerts <manauw@skynet.be>
8576
8577         * gst/avi/gstavimux.c:
8578           Fix ODML index tag numbering. Fixes #463624.
8579
8580 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
8581
8582         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8583         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8584         (gst_rtspsrc_stream_configure_tcp),
8585         (gst_rtspsrc_stream_configure_udp_sink):
8586         Fix default clock-rate for realmedia.
8587         Fix parsing of transport.
8588         Don't try to link NULL pads.
8589
8590 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
8591
8592         * po/POTFILES.skip:
8593           Add POTFILES.skip with list of source files that aren't disted at the
8594           moment but contain translatable strings. Should hopefully pacify
8595           broken tools and make it clearer that these files are left out
8596           intentionally (#461600).
8597
8598 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
8599
8600         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8601         If the buffer was entirely clipped ... don't try sending it :)
8602
8603 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8604
8605         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8606         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8607         (gst_rtspsrc_create_transports_string),
8608         (gst_rtspsrc_prepare_transports):
8609         If we don't hav a session manager, set the caps on outgoing buffers
8610         ourselves.
8611         Force PAUSE/PLAY methods for now until the extensions can overwrite.
8612         Append final bit of the transport string even when it does not contain a
8613         placeholder.
8614
8615 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8616
8617         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8618         (gst_rtsp_ext_list_connect):
8619         * gst/rtsp/gstrtspext.h:
8620         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8621         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8622         Clean up the interface list.
8623         Allow connecting to interface signals for the extensions.
8624         Remove old extension code.
8625         Free list on cleanup.
8626         Allow extensions to send additional RTSP messages.
8627
8628 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8629
8630         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8631         Handle a NULL gconf key gracefully by rendering the default element.
8632
8633 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8634
8635         * gst/rtsp/gstrtspext.h:
8636         Fix include path for extension interface.
8637
8638 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8639
8640         * gst/audiofx/audioamplify.h:
8641         Also remove a now unecessary variable here.
8642
8643 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
8644
8645         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8646         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8647         * gst/audiofx/audiodynamic.c:
8648         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8649         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8650         * gst/audiofx/audiodynamic.h:
8651         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8652         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8653         * gst/audiofx/audioinvert.h:
8654         Don't save format information ourselves, this is already saved in
8655         GstAudioFilter.
8656
8657 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8658
8659         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8660         (gst_rtsp_ext_list_stream_select):
8661         * gst/rtsp/gstrtspext.h:
8662         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8663         Use rank to filter out extensions.
8664         Add url to stream_select interface call.
8665
8666 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8667
8668         * gst/rtsp/Makefile.am:
8669         * gst/rtsp/base64.c:
8670         * gst/rtsp/base64.h:
8671         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8672         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8673         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8674         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8675         (gst_rtsp_ext_list_setup_media),
8676         (gst_rtsp_ext_list_configure_stream),
8677         (gst_rtsp_ext_list_get_transports),
8678         (gst_rtsp_ext_list_stream_select):
8679         * gst/rtsp/gstrtspext.h:
8680         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8681         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8682         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8683         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8684         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8685         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8686         (gst_rtspsrc_stream_configure_tcp),
8687         (gst_rtspsrc_stream_configure_mcast),
8688         (gst_rtspsrc_stream_configure_udp),
8689         (gst_rtspsrc_stream_configure_udp_sink),
8690         (gst_rtspsrc_stream_configure_transport),
8691         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8692         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8693         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8694         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8695         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8696         (gst_rtspsrc_parse_methods),
8697         (gst_rtspsrc_create_transports_string),
8698         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8699         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8700         (gst_rtspsrc_play), (gst_rtspsrc_pause),
8701         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8702         * gst/rtsp/gstrtspsrc.h:
8703         * gst/rtsp/rtsp.h:
8704         * gst/rtsp/rtspconnection.c:
8705         * gst/rtsp/rtspconnection.h:
8706         * gst/rtsp/rtspdefs.c:
8707         * gst/rtsp/rtspdefs.h:
8708         * gst/rtsp/rtspext.h:
8709         * gst/rtsp/rtspextwms.c:
8710         * gst/rtsp/rtspextwms.h:
8711         * gst/rtsp/rtspmessage.c:
8712         * gst/rtsp/rtspmessage.h:
8713         * gst/rtsp/rtsprange.c:
8714         * gst/rtsp/rtsprange.h:
8715         * gst/rtsp/rtsptransport.c:
8716         * gst/rtsp/rtsptransport.h:
8717         * gst/rtsp/rtspurl.c:
8718         * gst/rtsp/rtspurl.h:
8719         * gst/rtsp/sdp.h:
8720         * gst/rtsp/sdpmessage.c:
8721         * gst/rtsp/sdpmessage.h:
8722         * gst/rtsp/test.c:
8723         Use shiny new RTSP and SDP library.
8724         Implement RTSP extensions using the new interface.
8725         Remove a lot of old code.
8726
8727 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
8728
8729         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8730         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8731
8732 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8733
8734         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8735         Don't unref the outgoing buffer twice when dropping it because it's
8736         outside of the segment.
8737
8738 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
8739
8740         * configure.ac:
8741         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8742         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8743         Use the new buffer clipping function from gstaudio here and
8744         require gst-plugins-base CVS.
8745         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8746         For framed Wavpack buffers we require a valid timestamp.
8747
8748 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8749
8750         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8751         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8752         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8753         Clip raw audio and video when we can, keep track of current output
8754         segment.
8755         Don't leak buffers and events when there is no output pad.
8756         Improve debugging here and there.
8757
8758 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8759
8760         * configure.ac:
8761           Sync liboil check with plugins-base.
8762
8763 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8764
8765         * ext/annodex/Makefile.am:
8766           Fix CFLAGS/LIBS.
8767
8768         * ext/cdio/gstcdiocddasrc.c:
8769         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8770           Include stdlib
8771
8772         * ext/cairo/Makefile.am:
8773         * gst/videofilter/Makefile.am:
8774         * tests/examples/level/Makefile.am:
8775           Use $(LIBM) instead of -lm
8776
8777 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8778
8779         * sys/v4l2/gstv4l2src.c:
8780           Add another example pipeline.
8781
8782 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8783
8784         Patch by: Alexander Eichner <alexeichi@yahoo.de>
8785
8786         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8787           Use define here.
8788
8789         * sys/v4l2/gstv4l2tuner.c:
8790         (gst_v4l2_tuner_set_frequency_and_notify):
8791           Don't touch the property - its still disabled.
8792
8793         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8794         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8795         * sys/v4l2/v4l2src_calls.h:
8796           Improve fallback format negotionation. Fixes #451388
8797
8798 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8799
8800         * tests/check/elements/videocrop.c: (GST_START_TEST):
8801           Fix the test.
8802
8803 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
8804
8805         * docs/plugins/Makefile.am:
8806         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8807         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8808         * docs/plugins/inspect/plugin-jpeg.xml:
8809         * docs/plugins/inspect/plugin-png.xml:
8810         * ext/jpeg/gstjpegdec.c:
8811         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
8812         (gst_pngdec_sink_setcaps):
8813           More docs. More logs in pngdec.
8814
8815 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
8816
8817         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8818           Initialize num_buffers with minimum value.
8819
8820         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
8821         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
8822           Handle frame-size query failure gracefully.
8823
8824 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8825
8826         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8827         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
8828         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
8829         of qt/aac files.
8830
8831 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
8832
8833         * ext/wavpack/gstwavpackdec.c:
8834         (gst_wavpack_dec_clip_outgoing_buffer):
8835         Fix buffer clipping to correctly clip to the segment stop.
8836
8837 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8838
8839         * configure.ac:
8840         * tests/Makefile.am:
8841         Remove bogus check for libcheck, since we check for
8842         gstreamer-check and it pulls in the required info from there,
8843         and we weren't actually _using_ the information for libcheck
8844         ourselves anyway.
8845
8846 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8847
8848         * configure.ac:
8849           Use pkg-config to locate check.
8850
8851 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
8852
8853         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
8854         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
8855         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
8856         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8857         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
8858         * gst/effectv/gstaging.c: (gst_agingtv_transform):
8859         * gst/effectv/gstdice.c: (gst_dicetv_transform):
8860         * gst/effectv/gstedge.c: (gst_edgetv_transform):
8861         * gst/effectv/gstquark.c: (gst_quarktv_transform):
8862         * gst/effectv/gstrev.c: (gst_revtv_transform):
8863         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
8864         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
8865         * gst/effectv/gstwarp.c: (gst_warptv_transform):
8866         * gst/matroska/matroska-demux.c:
8867         (gst_matroska_demux_add_wvpk_header),
8868         (gst_matroska_demux_check_subtitle_buffer),
8869         (gst_matroska_decode_buffer):
8870         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
8871           Fix build against core CVS.
8872
8873 2007-07-10  Edward Hervey  <bilboed@gmail.com>
8874
8875         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
8876         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
8877         don't have enough granularity to convert that boolean into a
8878         GstFlowReturn.
8879
8880 2007-07-06  Michael Smith <msmith@fluendo.com>
8881
8882         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
8883         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
8884         (gst_alawdec_change_state):
8885         * gst/law/alaw-decode.h:
8886         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
8887         (gst_mulawdec_class_init), (gst_mulawdec_init),
8888         (gst_mulawdec_chain), (gst_mulawdec_change_state):
8889         * gst/law/mulaw-decode.h:
8890           Fix capsnego bogosity in *law decoders. 
8891
8892 2007-07-06  Michael Smith <msmith@fluendo.com>
8893
8894         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
8895         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
8896         (gst_smokeenc_change_state):
8897         * ext/jpeg/gstsmokeenc.h:
8898           Remove stupidity in get/set caps functions.
8899           Fix some refcounting problems.
8900
8901 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
8902
8903         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
8904         Remove endianness-flipping hack that seems to have been required
8905         only because of a bug in ffmpegcolorspace.
8906         Partially Fixes: #451908
8907
8908 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
8909
8910         * docs/plugins/Makefile.am:
8911           Simplify --extra-dir as gtkdoc scans recursively.
8912
8913 2007-07-03  Wim Taymans  <wim@fluendo.com>
8914
8915         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
8916
8917         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8918         Set the encoding-name in the rtp caps to all uppercase, as required by
8919         the caps spec.
8920         Some small cleanups in the error paths. Fixes #453037.
8921
8922 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
8923
8924         * ext/wavpack/gstwavpackparse.c:
8925         (gst_wavpack_parse_index_get_last_entry),
8926         (gst_wavpack_parse_index_get_entry_from_sample),
8927         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
8928         (gst_wavpack_parse_scan_to_find_sample):
8929         * ext/wavpack/gstwavpackparse.h:
8930         Use a GSList for the GArray that is used like a list anyway.
8931
8932 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
8933
8934         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
8935         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
8936         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
8937           Add state change function where we set 0/1 as default framerate in
8938           case our setcaps function isn't called, like it might not in a
8939           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
8940           gdkpixbufdec trying to create caps with a 0/0 framerate.
8941           Also post an error message on the bus if gst_pad_push() fails when
8942           called from our sink event handler (+1 for flow returns for event
8943           functions in 0.11) instead of failing silently.
8944
8945 2007-06-27  Wim Taymans  <wim@fluendo.com>
8946
8947         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
8948         Cast stack args to the proper types. Fixes #451249.
8949
8950 2007-06-27  Wim Taymans  <wim@fluendo.com>
8951
8952         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8953         (new_session_pad), (gst_rtspsrc_setup_streams):
8954         * gst/rtsp/gstrtspsrc.h:
8955         For container formats we only need to activate one of the streams so
8956         that we correctly signal no-more-pads. Fixes #451015.
8957
8958 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
8959
8960         * docs/plugins/gst-plugins-good-plugins.args:
8961         * docs/plugins/inspect/plugin-aasink.xml:
8962         * docs/plugins/inspect/plugin-alaw.xml:
8963         * docs/plugins/inspect/plugin-alpha.xml:
8964         * docs/plugins/inspect/plugin-alphacolor.xml:
8965         * docs/plugins/inspect/plugin-annodex.xml:
8966         * docs/plugins/inspect/plugin-apetag.xml:
8967         * docs/plugins/inspect/plugin-audiofx.xml:
8968         * docs/plugins/inspect/plugin-auparse.xml:
8969         * docs/plugins/inspect/plugin-autodetect.xml:
8970         * docs/plugins/inspect/plugin-avi.xml:
8971         * docs/plugins/inspect/plugin-cacasink.xml:
8972         * docs/plugins/inspect/plugin-cairo.xml:
8973         * docs/plugins/inspect/plugin-cdio.xml:
8974         * docs/plugins/inspect/plugin-cutter.xml:
8975         * docs/plugins/inspect/plugin-debug.xml:
8976         * docs/plugins/inspect/plugin-efence.xml:
8977         * docs/plugins/inspect/plugin-effectv.xml:
8978         * docs/plugins/inspect/plugin-esdsink.xml:
8979         * docs/plugins/inspect/plugin-flac.xml:
8980         * docs/plugins/inspect/plugin-flxdec.xml:
8981         * docs/plugins/inspect/plugin-gconfelements.xml:
8982         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
8983         * docs/plugins/inspect/plugin-goom.xml:
8984         * docs/plugins/inspect/plugin-halelements.xml:
8985         * docs/plugins/inspect/plugin-icydemux.xml:
8986         * docs/plugins/inspect/plugin-id3demux.xml:
8987         * docs/plugins/inspect/plugin-jpeg.xml:
8988         * docs/plugins/inspect/plugin-ladspa.xml:
8989         * docs/plugins/inspect/plugin-level.xml:
8990         * docs/plugins/inspect/plugin-matroska.xml:
8991         * docs/plugins/inspect/plugin-mulaw.xml:
8992         * docs/plugins/inspect/plugin-multipart.xml:
8993         * docs/plugins/inspect/plugin-navigationtest.xml:
8994         * docs/plugins/inspect/plugin-ossaudio.xml:
8995         * docs/plugins/inspect/plugin-png.xml:
8996         * docs/plugins/inspect/plugin-quicktime.xml:
8997         * docs/plugins/inspect/plugin-rtp.xml:
8998         * docs/plugins/inspect/plugin-rtsp.xml:
8999         * docs/plugins/inspect/plugin-smpte.xml:
9000         * docs/plugins/inspect/plugin-speex.xml:
9001         * docs/plugins/inspect/plugin-taglib.xml:
9002         * docs/plugins/inspect/plugin-udp.xml:
9003         * docs/plugins/inspect/plugin-videobalance.xml:
9004         * docs/plugins/inspect/plugin-videobox.xml:
9005         * docs/plugins/inspect/plugin-videocrop.xml:
9006         * docs/plugins/inspect/plugin-videoflip.xml:
9007         * docs/plugins/inspect/plugin-videomixer.xml:
9008         * docs/plugins/inspect/plugin-wavenc.xml:
9009         * docs/plugins/inspect/plugin-wavparse.xml:
9010         * docs/plugins/inspect/plugin-ximagesrc.xml:
9011           Update docs with caps info.
9012
9013 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
9014
9015         * po/POTFILES.in:
9016           Add more files with translatable strings (#450878).
9017
9018 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
9019
9020         * MAINTAINERS:
9021         Updating all the maintainers files
9022
9023 2007-06-22  Edward Hervey  <edward@fluendo.com>
9024
9025         * ext/flac/gstflactag.c: (gst_flac_tag_init):
9026         * gst/interleave/deinterleave.c: (deinterleave_init),
9027         (deinterleave_sink_link):
9028         * gst/interleave/interleave.c: (interleave_init):
9029         * gst/median/gstmedian.c: (gst_median_init):
9030         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9031         Fix memory leaks.
9032         * tests/check/elements/id3demux.c: (pad_added_cb):
9033         Remove unused variable.
9034
9035 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
9036
9037         * ext/gconf/gconf.h:
9038         Make the prototype of gst_gconf_get_key_for_sink_profile
9039         match the implementation.
9040         Patch by: Damien Carbery <damien dot carbery at sun dot com>
9041         Fixes: #449747
9042
9043 2007-06-20  Michael Smith <msmith@fluendo.com>
9044
9045         * gst/rtp/gstrtpdepay.c:
9046           Fix description - rtpdepay is not a payloader.
9047
9048 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
9049
9050         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9051         (qtdemux_video_caps):
9052         * gst/qtdemux/qtdemux_fourcc.h:
9053           Add MJPG to the variants of motion jpeg.
9054
9055 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
9056
9057         * tests/check/Makefile.am:
9058         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9059         * tests/check/elements/videocrop.c: (GST_START_TEST):
9060         * tests/check/elements/videofilter.c:
9061         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9062         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9063           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9064           error flags are included and it errors out on compiler warnings
9065           for CVS builds; remove unused variables in various unit tests.
9066
9067 2007-06-19  Wim Taymans  <wim@fluendo.com>
9068
9069         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9070         (rtsp_connection_close), (rtsp_connection_free):
9071         Use threadsafe inet_ntop to convert an ip number to a string. 
9072         Fixes #447961.
9073         Don't leak fd (and ip) when freeing a connection without first closing
9074         it.
9075
9076 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
9077
9078         * configure.ac:
9079         Back to CVS
9080
9081         * gst-plugins-good.doap:
9082         Add 0.10.6 to the doap file.
9083
9084 === release 0.10.6 ===
9085
9086 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
9087
9088         * configure.ac:
9089           releasing 0.10.6, "Wobble Board"
9090
9091 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9092
9093         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9094         (rtsp_connection_free):
9095           Revert previous commit again, since we are frozen (sorry).
9096
9097 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9098
9099         Patch by: Peter Kjellerstedt <pkj at axis com>
9100
9101         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9102         (rtsp_connection_free):
9103           inet_ntoa() uses a static buffer internally, so we need to copy the
9104           returned string if we want to store it for later (#447961).
9105
9106 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9107
9108         * win32/vs6/autogen.dsp:
9109         * win32/vs6/gst_plugins_good.dsw:
9110         * win32/vs6/libgstalaw.dsp:
9111         * win32/vs6/libgstalpha.dsp:
9112         * win32/vs6/libgstalphacolor.dsp:
9113         * win32/vs6/libgstapetag.dsp:
9114         * win32/vs6/libgstaudiofx.dsp:
9115         * win32/vs6/libgstauparse.dsp:
9116         * win32/vs6/libgstautodetect.dsp:
9117         * win32/vs6/libgstavi.dsp:
9118         * win32/vs6/libgstcutter.dsp:
9119         * win32/vs6/libgstdirectdraw.dsp:
9120         * win32/vs6/libgstdirectsound.dsp:
9121         * win32/vs6/libgsteffectv.dsp:
9122         * win32/vs6/libgstflx.dsp:
9123         * win32/vs6/libgstgoom.dsp:
9124         * win32/vs6/libgsticydemux.dsp:
9125         * win32/vs6/libgstid3demux.dsp:
9126         * win32/vs6/libgstinterleave.dsp:
9127         * win32/vs6/libgstjpeg.dsp:
9128         * win32/vs6/libgstlevel.dsp:
9129         * win32/vs6/libgstmatroska.dsp:
9130         * win32/vs6/libgstmedian.dsp:
9131         * win32/vs6/libgstmonoscope.dsp:
9132         * win32/vs6/libgstmulaw.dsp:
9133         * win32/vs6/libgstmultipart.dsp:
9134         * win32/vs6/libgstqtdemux.dsp:
9135         * win32/vs6/libgstrtp.dsp:
9136         * win32/vs6/libgstrtsp.dsp:
9137         * win32/vs6/libgstsmpte.dsp:
9138         * win32/vs6/libgstspeex.dsp:
9139         * win32/vs6/libgstudp.dsp:
9140         * win32/vs6/libgstvideobalance.dsp:
9141         * win32/vs6/libgstvideobox.dsp:
9142         * win32/vs6/libgstvideocrop.dsp:
9143         * win32/vs6/libgstvideoflip.dsp:
9144         * win32/vs6/libgstvideomixer.dsp:
9145         * win32/vs6/libgstwaveform.dsp:
9146         * win32/vs6/libgstwavenc.dsp:
9147         * win32/vs6/libgstwavparse.dsp:
9148         Mark *.dsp & *.dsw as binary files and convert to DOS line
9149         endings, as they don't load into VS6 correctly otherwise.
9150
9151 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
9152
9153         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9154         (rtsp_connection_connect):
9155         Fix the MingW build. 
9156         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9157         Fixes: #446981
9158
9159 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9160
9161         * tests/check/elements/.cvsignore:
9162         * tests/icles/.cvsignore:
9163         Hush the buildbots up
9164
9165 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
9166
9167         * configure.ac:
9168         * sys/Makefile.am:
9169         * sys/directdraw/Makefile.am:
9170         * sys/directsound/Makefile.am:
9171         * sys/waveform/Makefile.am:
9172         Make sure to dist everything needed for win32 builds.
9173
9174 2007-06-14  Edward Hervey  <edward@fluendo.com>
9175
9176         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9177         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9178         caps.
9179         Fixes #447458
9180
9181 2007-06-13  Wim Taymans  <wim@fluendo.com>
9182
9183         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9184         Make sure we allocate enough memory for the codec_data.
9185         Fixes #447210.
9186
9187 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
9188
9189         * win32/MANIFEST:
9190         Add videocrop project file to the win32 manifest.
9191         * win32/vs6/gst_plugins_good.dsw:
9192         Add qtdemux,videocrop and waveform projects to the workspace.
9193         * win32/vs6/libgstqtdemux.dsp:
9194         Add zlib to the link list of qtdemux.
9195         * win32/vs6/libgstvideocrop.dsp:
9196         Add a project file for videocrop.
9197
9198 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9199
9200         * po/POTFILES.in:
9201         Add qtdemux for translation
9202
9203 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9204
9205         * configure.ac:
9206         * docs/plugins/Makefile.am:
9207         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9208         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9209         * docs/plugins/inspect/plugin-videocrop.xml:
9210         * gst-plugins-good.spec.in:
9211         * sys/Makefile.am:
9212         * tests/check/Makefile.am:
9213         * tests/icles/Makefile.am:
9214         * tests/icles/videocrop-test.c:
9215         Move videocrop and osxvideo from -bad.
9216
9217 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9218
9219         * configure.ac:
9220         * docs/plugins/Makefile.am:
9221         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9222         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9223         * docs/plugins/gst-plugins-good-plugins.args:
9224         * docs/plugins/inspect/plugin-qtdemux.xml:
9225         * docs/plugins/inspect/plugin-quicktime.xml:
9226         * win32/MANIFEST:
9227         Move qtdemux from -bad.
9228
9229         * gst-plugins-good.spec.in:
9230         Update spec file to reflect moving of qtdemux and wavpack
9231
9232 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
9233         
9234         * win32/MANIFEST:
9235         * docs/plugins/Makefile.am:
9236         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9237         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9238         * docs/plugins/inspect/plugin-directdraw.xml:
9239         * docs/plugins/inspect/plugin-directsound.xml:
9240         * docs/plugins/inspect/plugin-waveform.xml:
9241         Move the waveform plugin from -bad too. Update the inspect xml
9242         files to mention Plugins Good instead of Plugins Bad.
9243
9244 2007-06-12  Andy Wingo  <wingo@pobox.com>
9245
9246         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9247         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9248         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9249         finalization and resuscitation. No longer public.
9250         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9251         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9252         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9253         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9254         miniobject semantics, and be threadsafe.
9255         (gst_v4l2src_queue_frame): Remove this function, as we just call
9256         the ioctls directly in the two places where we queue buffers.
9257         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9258         directly.
9259         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9260         to allocate the pool, which also preallocates the GstBuffers.
9261         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9262         queueing the frames directly.
9263         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9264         mmap buffers have been dequeued.
9265
9266         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9267         real MiniObject instead of rolling our own refcounting and
9268         finalizing. Give it a lock.
9269         (struct _GstV4l2Buffer): Remove one intermediary object, having
9270         the buffers hold the struct v4l2_buffer directly.
9271
9272         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9273         capture_init so that it can set them on the buffers that it will
9274         create.
9275         (gst_v4l2src_get_read): For better or for worse, include the
9276         timestamping and offsetting code here; really we should be using
9277         bufferalloc though.
9278         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9279         preallocated, mmap'd buffers.
9280
9281 2007-06-11  Wim Taymans  <wim@fluendo.com>
9282
9283         Patch by: daniel fischer <dan at f3c dot com>
9284
9285         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9286         (gst_ximage_src_get_caps):
9287         Actually use the display_name property so that we can dump any
9288         available X display. Fixes #445905.
9289
9290 2007-06-11  Wim Taymans  <wim@fluendo.com>
9291
9292         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
9293
9294         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9295         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9296         Add missing rate fields to caps. Fixes #441118.
9297
9298 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
9299
9300         * win32/vs6/gst_plugins_good.dsw:
9301         * win32/vs8/gst-plugins-good.sln:
9302         Add DirectSound and DirectDraw sinks project files to
9303         workspace and solution files.
9304
9305 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
9306
9307         Patch by: Josh Coalson <xflac at yahoo dot com>,
9308         updated by Alexis Ballier <aballier at gentoo dot org>:
9309
9310         * configure.ac:
9311         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9312         (gst_flac_dec_setup_seekable_decoder),
9313         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9314         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9315         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9316         * ext/flac/gstflacdec.h:
9317         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9318         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9319         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9320         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9321         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9322         (gst_flac_enc_chain), (gst_flac_enc_set_property),
9323         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9324         * ext/flac/gstflacenc.h:
9325         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9326         
9327 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9328
9329         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9330         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9331         not necessary anymore as we need at least that core version. 
9332
9333 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
9334
9335         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9336         (gst_wavpack_dec_chain):
9337         * ext/wavpack/gstwavpackdec.h:
9338         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9339         (gst_wavpack_parse_push_buffer):
9340         * ext/wavpack/gstwavpackparse.h:
9341         Improve discont handling by checking if the next Wavpack block has
9342         the expected, following block index.
9343
9344 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9345
9346         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9347           Fix element description.
9348
9349 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9350
9351         * configure.ac:
9352         * docs/plugins/Makefile.am:
9353         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9354         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9355         * docs/plugins/gst-plugins-good-plugins.args:
9356         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9357         * docs/plugins/gst-plugins-good-plugins.signals:
9358         * docs/plugins/inspect/plugin-autodetect.xml:
9359         * docs/plugins/inspect/plugin-gconfelements.xml:
9360         * docs/plugins/inspect/plugin-ladspa.xml:
9361         * docs/plugins/inspect/plugin-rtp.xml:
9362         * docs/plugins/inspect/plugin-wavpack.xml:
9363         * ext/Makefile.am:
9364         * tests/check/Makefile.am:
9365           move wavpack plugin.  See #352605.
9366
9367 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
9368
9369         * configure.ac:
9370         * docs/plugins/Makefile.am:
9371         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9372         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9373         * docs/plugins/gst-plugins-good-plugins.args:
9374         * sys/Makefile.am:
9375         * win32/MANIFEST:
9376         Add DirectDraw & DirectSound plugins to the build and docs.
9377
9378 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
9379
9380         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9381         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9382           When operating in pull mode, error out correct on not-linked.
9383
9384 2007-06-06  Andy Wingo  <wingo@pobox.com>
9385
9386         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9387         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9388         format and size if the ioctls are defined; should fix compilation
9389         on Linux < 2.16.19.
9390
9391 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
9392
9393         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9394           Printf fixes in debug statements; use LOG level for debug statements
9395           that are printed for each and every frame; convert c++ comments to
9396           C-style comments; not much point using g_try_malloc() if we then not
9397           even check the return value.
9398
9399 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
9400
9401         * configure.ac:
9402           Bump requirements to released versions (core and base 0.10.13).
9403
9404         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9405           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9406           own implementation.
9407
9408 2007-06-05  Andy Wingo  <wingo@pobox.com>
9409
9410         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9411         some useless comments.
9412
9413         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9414         frames before calling STREAMON, that might leave them in a state
9415         where they can't be dequeued if we go back to NULL without calling
9416         STREAMON, according to the docs.
9417         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9418         before we call STREAMON.
9419         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9420         failures. (For me this code hung.) The pool refcounting is still
9421         crack; added a note to that effect.
9422
9423 2007-06-05  Wim Taymans  <wim@fluendo.com>
9424
9425         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9426         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9427         Add support for mapping gst structure names to the MIME type equivalent.
9428         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9429
9430 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
9431
9432         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9433         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9434         (gst_wavenc_chain), (gst_wavenc_change_state):
9435         * gst/wavenc/gstwavenc.h:
9436         Properly write wav files with width!=depth by having the depth most
9437         significant bytes set and all others zero. Fixes #442535.
9438
9439 2007-06-01  Wim Taymans  <wim@fluendo.com>
9440
9441         * gst/rtsp/rtspconnection.c:
9442         Add include to make buildbot happy.
9443
9444 2007-06-01  Wim Taymans  <wim@fluendo.com>
9445
9446         Patch by: Peter Kjellerstedt  <pkj at axis com>
9447
9448         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9449         (rtsp_connection_connect), (add_date_header),
9450         (rtsp_connection_send), (parse_response_status),
9451         (parse_request_line), (parse_line), (rtsp_connection_receive):
9452         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9453         * gst/rtsp/rtspdefs.h:
9454         * gst/rtsp/rtspmessage.c: (key_value_foreach),
9455         (rtsp_message_init_request), (rtsp_message_init_response),
9456         (rtsp_message_remove_header), (rtsp_message_append_headers),
9457         (rtsp_message_dump):
9458         * gst/rtsp/rtspmessage.h:
9459         Improves version checking, allowing an RTSP server to reply with "505
9460         RTSP Version not supported.
9461         Adds a Date header to all messages.
9462         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9463         want to be able to send a response even if something in the request was
9464         invalid. EINVAL is only used when passing wrong arguments to functions.
9465         Do not handle an invalid method in parse_request_line(). Defer this to
9466         the caller so it can respond with "405 Method Not Allowed".
9467         Improves parsing of the timeout parameter to the Session header,
9468         allowing whitespace after the semicolon. 
9469         Avoids a compiler warning due to variables shadowing a function argument.
9470
9471 2007-06-01  Wim Taymans  <wim@fluendo.com>
9472
9473         Based on Patch by: Daniel Charles <dcharles at ti dot com>
9474
9475         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9476         (gst_rtp_amr_depay_process):
9477         * gst/rtp/gstrtpamrdepay.h:
9478         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9479         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9480         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9481         * gst/rtp/gstrtpamrpay.h:
9482         Add support for AMR-WB.
9483         Small cleanups such as using BOILERPLATE.
9484
9485 2007-05-31  Wim Taymans  <wim@fluendo.com>
9486
9487         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9488         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9489
9490 2007-05-30  Andy Wingo  <wingo@pobox.com>
9491
9492         * sys/v4l2/gstv4l2object.h: 
9493         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9494         unintended changes.
9495
9496         * sys/v4l2/v4l2src_calls.h: 
9497         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9498         the format list in the order that the driver gives it to us.
9499         (gst_v4l2src_probe_caps_for_format_and_size)
9500         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9501         based on the capabilities of the device.
9502         (gst_v4l2src_grab_frame): Update for object variable renaming.
9503         (gst_v4l2src_set_capture): Update to be strict in its parameters,
9504         as in the set_caps below.
9505         (gst_v4l2src_capture_init): Update for object variable renaming,
9506         and reflow.
9507         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9508         (gst_v4l2src_capture_deinit): Update for object variable renaming.
9509         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9510         (gst_v4l2src_get_fps): Remove; these functions don't have much
9511         meaning outside of an atomic set_caps method.
9512         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9513         known.
9514
9515         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9516         call to update_fps; not sure about this change.
9517         (gst_v4l2_tuner_set_norm): Work around the fact that for the
9518         moment we don't have an update_fps_func.
9519
9520         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9521         structures in the object, just store what we need. Do store the
9522         probed caps of the device. Don't store the current frame rate.
9523
9524         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9525         update_fps_function, for now. Update for new object variable
9526         naming.
9527         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9528         new object variable naming.
9529         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9530         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9531         (gst_v4l2src_get_caps): Rework to probe the device for supported
9532         frame sizes and frame rates.
9533         (gst_v4l2src_set_caps): Rework to be strict in the given
9534         parameters: if someone asks us to have a certain size and rate,
9535         that is what we configure.
9536         (gst_v4l2src_get_read): Update for object variable naming. Don't
9537         leak buffers on short reads.
9538         (gst_v4l2src_get_mmap): Update for object variable naming, and add
9539         comments.
9540         (gst_v4l2src_create): Update for object variable naming.
9541
9542 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9543
9544         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9545         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9546         * gst/avi/gstavidemux.h:
9547           Parse subtitle text streams instead of erroring out (#442034). Still
9548           needs a parser for the subtitles to actually show up.
9549
9550 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
9551
9552         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9553         (gst_avi_demux_loop):
9554           Make _push_event() return TRUE if the event could be pushed on at
9555           least one pad and not only if it could be pushed on all pads,
9556           otherwise we'll end up posting an error message on EOS if one or
9557           more source pads are not connected.
9558
9559 2007-05-28  Wim Taymans  <wim@fluendo.com>
9560
9561         * gst/rtsp/rtsptransport.c:
9562         Use renamed RTP bin.
9563
9564 2007-05-28  Wim Taymans  <wim@fluendo.com>
9565
9566         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9567
9568         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9569         (gst_video_box_set_property), (gst_video_box_transform_caps),
9570         (video_box_recalc_transform), (gst_video_box_set_caps),
9571         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9572         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9573         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9574         (gst_video_box_i420_i420), (gst_video_box_transform),
9575         (plugin_init):
9576         Add AYUV->AYUV and AYUV->I420 formats. 
9577         Fix negotiation and I420->AYUV conversion.
9578         Fixes #429329.
9579
9580 2007-05-26  Wim Taymans  <wim@fluendo.com>
9581
9582         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9583         Use different variables for nested for loops so that the outer loop
9584         functions properly and speex files with multiple frames per buffer work
9585         properly.
9586         Fixes #441408.
9587
9588 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9589
9590         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9591           Don't leak newsegment events.
9592
9593 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9594
9595         * gst/wavparse/Makefile.am:
9596           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9597           drags it in.
9598
9599 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
9600
9601         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9602         (notgst_value_array_append_buffer),
9603         (gst_flac_enc_process_stream_headers),
9604         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9605         (gst_flac_enc_change_state):
9606         * ext/flac/gstflacenc.h:
9607           Collect headers, add "streamheader" field to output caps and set
9608           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9609           produces output according to the official FLAC-to-Ogg mapping
9610           instead of completely broken files. Fixes #426044.
9611
9612 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9613
9614         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9615         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9616         (gst_id3demux_sink_event):
9617         * gst/id3demux/gstid3demux.h:
9618         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9619         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9620         (gst_tag_demux_send_new_segment):
9621         Handle and adjust new-segment events so that downstream really
9622         sees a stream with the tag pieces stripped off the front and back.
9623         Fixes strangeness in seeking when mp3 decoders use the new-segment
9624         byte position to estimate their current playback position timestamp
9625         and then the arriving buffers don't match up.
9626
9627 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
9628
9629         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9630           Don't unnecessarily perform a READY->NULL->READY transition on the
9631           detected audio sink when starting up. Fixes: #440127
9632
9633 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
9634
9635         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9636         (gst_flac_enc_chain):
9637           Don't crash in chain function if setcaps hasn't been called.
9638
9639 2007-05-24  Wim Taymans  <wim@fluendo.com>
9640
9641         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9642         Init value to avoid infinte loops.
9643
9644 2007-05-24  Wim Taymans  <wim@fluendo.com>
9645
9646         Patch by: Peter Kjellerstedt  <pkj at axis com>
9647
9648         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9649         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9650         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9651         (gst_rtspsrc_play):
9652         (rtsp_connection_send), (rtsp_connection_receive):
9653         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9654         Fix for new API.
9655
9656         * gst/rtsp/rtspconnection.c: (add_auth_header),
9657         Only add authorisation and session headers when sending messages.
9658
9659         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9660         (rtsp_message_init_request), (rtsp_message_init_response),
9661         (rtsp_message_unset), (rtsp_message_add_header),
9662         (rtsp_message_remove_header), (rtsp_message_get_header),
9663         (rtsp_message_append_headers), (dump_key_value),
9664         (rtsp_message_dump):
9665         * gst/rtsp/rtspmessage.h:
9666         Add support for multiple headers of the same type by storing the parsed
9667         headers in a GArray instaed of a hashtable.
9668
9669 2007-05-21  Wim Taymans  <wim@fluendo.com>
9670
9671         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9672         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9673         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9674         safer shutdown.
9675
9676 2007-05-21  Wim Taymans  <wim@fluendo.com>
9677
9678         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9679         * gst/rtsp/gstrtpdec.h:
9680         Added signal for backwards compat.
9681
9682 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
9683         
9684         Patch by: René Stadler <mail at renestadler dot de>
9685
9686         * configure.ac:
9687         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9688         (gst_au_parse_parse_header), (gst_au_parse_chain):
9689         * gst/auparse/gstauparse.h:
9690         Use audioconvert for converting from non-native endianness floats
9691         in auparse instead of doing it ourself. Fixes #424527.
9692         This needs the audioconvert from plugins-base CVS.
9693         
9694 2007-05-21  Wim Taymans  <wim@fluendo.com>
9695
9696         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9697         (gst_rtp_h263p_pay_flush):
9698         Fix enum registration.
9699
9700 2007-05-21  Wim Taymans  <wim@fluendo.com>
9701
9702         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9703
9704         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9705         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9706         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9707         (gst_rtp_h263p_pay_flush):
9708         * gst/rtp/gstrtph263ppay.h:
9709         Add new fragmentation mode base on GOB headers. Fixes #438940.
9710
9711 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
9712
9713         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9714           Printf format fix.
9715
9716 2007-05-18  Wim Taymans  <wim@fluendo.com>
9717
9718         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9719         Don't crash when an unsupported transport error was returned by the
9720         server, just try to configure the next stream. Fixes #439255.
9721
9722 2007-05-18  Wim Taymans  <wim@fluendo.com>
9723
9724         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9725         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9726         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9727         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9728         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9729         * gst/rtsp/gstrtspsrc.h:
9730         Add TCP timeout property and use it for all TCP connection.
9731
9732         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9733         (rtsp_connection_write), (rtsp_connection_next_timeout),
9734         (rtsp_connection_reset_timeout):
9735         Make connect and writes cancelable and make them use the timeout.
9736
9737 2007-05-18  Wim Taymans  <wim@fluendo.com>
9738
9739         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9740         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9741         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9742         (gst_rtspsrc_setup_streams):
9743         Refactor timeout handling.
9744         Also send keep-alive when dealing with TCP transport.
9745
9746         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9747         (rtsp_connection_free), (rtsp_connection_next_timeout),
9748         (rtsp_connection_reset_timeout):
9749         * gst/rtsp/rtspconnection.h:
9750         Use a timer to handle the session timeouts, add some methods to deal
9751         with timeouts.
9752
9753 2007-05-17  Wim Taymans  <wim@fluendo.com>
9754
9755         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9756         (gst_rtspsrc_setup_streams):
9757         Ignore streams that fail the setup command, we will retry with a
9758         different transport later on.
9759
9760         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9761         (rtsp_ext_wms_configure_stream):
9762         Fix encoding name case.
9763
9764 2007-05-16  Edward Hervey  <edward@fluendo.com>
9765
9766         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9767         Fix build on macosx.
9768
9769 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
9770
9771         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9772         Replace direct comparison of a string with the string literal "" with
9773         a comparison of the first character with '\0'. Fixes #438926.
9774
9775 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9776
9777         * gst/debug/breakmydata.c (gst_break_my_data_init):
9778           One more try. This should be the proper fix now.
9779
9780 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9781
9782         * gst/debug/breakmydata.c:
9783           Ooops, no // comments please.
9784
9785 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9786
9787         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9788         (gst_break_my_data_init):
9789           Fix gst_buffer_is_writable() assertion.
9790
9791 2007-05-14  David Schleef  <ds@schleef.org>
9792
9793         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9794           video/x-raw-bayer.  Fixes #314160.
9795
9796 2007-05-14  Wim Taymans  <wim@fluendo.com>
9797
9798         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9799         (gst_rtp_theora_depay_parse_configuration):
9800         * gst/rtp/gstrtptheorapay.c: (encode_base64),
9801         (gst_rtp_theora_pay_finish_headers),
9802         (gst_rtp_theora_pay_handle_buffer):
9803         Update theora pay/depayloader in a similar to vorbis.
9804
9805         * gst/rtp/gstrtpvorbisdepay.c:
9806         (gst_rtp_vorbis_depay_parse_configuration):
9807         Update docs.
9808
9809 2007-05-14  Wim Taymans  <wim@fluendo.com>
9810
9811         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
9812         When we try to execute a method that is not supported by the server,
9813         don't error out but remove the method from the accepted methods so that
9814         we never try to perform this method again.
9815
9816 2007-05-14  Wim Taymans  <wim@fluendo.com>
9817
9818         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
9819         Remove annoying _dump_mem.
9820
9821 2007-05-14  Wim Taymans  <wim@fluendo.com>
9822
9823         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
9824         Parse range correctly.
9825
9826         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
9827         The baseurl now always has a '/' at the start.
9828
9829 2007-05-14  Wim Taymans  <wim@fluendo.com>
9830
9831         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
9832         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
9833         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
9834         Factor out caps configuration and configure more stuff such as the time
9835         ranges and speed/scale values.
9836
9837         * gst/rtsp/rtsptransport.c:
9838         Add Copyright after non-trival fixes.
9839
9840 2007-05-12  Wim Taymans  <wim@fluendo.com>
9841
9842         Patch by: Peter Kjellerstedt  <pkj at axis com>
9843
9844         * gst/rtsp/gstrtspsrc.h:
9845         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
9846         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
9847         (rtsp_message_get_header):
9848         * gst/rtsp/rtspmessage.h:
9849         Make channel guint8 where possible.
9850         Make rtsp_message_init_data() take the channel as a guint8.
9851
9852         * gst/rtsp/rtspdefs.c:
9853         Fixed a typo: Timout -> Timeout
9854
9855         * gst/rtsp/rtspdefs.h:
9856         Make RTSP_CHECK() behave as a statement.
9857
9858         * gst/rtsp/sdpmessage.c:
9859         Avoid a compiler warning in INIT_ARRAY().
9860         Fixes #437692.
9861
9862 2007-05-12  Wim Taymans  <wim@fluendo.com>
9863
9864         Patch by: Peter Kjellerstedt  <pkj at axis com>
9865
9866         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
9867         (rtsp_url_get_request_uri):
9868         * gst/rtsp/rtspurl.h:
9869         Add support for query parameters to RTSP URLs.
9870
9871 2007-05-12  Wim Taymans  <wim@fluendo.com>
9872
9873         Patch by: Peter Kjellerstedt  <pkj at axis com>
9874
9875         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
9876         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
9877         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
9878         (rtsp_transport_parse), (rtsp_transport_as_text):
9879         * gst/rtsp/rtsptransport.h:
9880         Add validation to rtsp_transport_parse().
9881         Add rtsp_transport_as_text() to generate an RTSP header from an
9882         RTSPTransport.
9883         Change ssrc to guint (was a string) since that is what it is, even
9884         though it is sent as a hex string.
9885         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
9886         incorrect, which can be seen when looking at the examples in the RFC).
9887         Fixes #437670.
9888
9889 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
9890
9891         Patch by: Eric Anholt
9892
9893         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
9894           gst_ximage_src_ximage_get):
9895         Use union of all damage between frames to make it faster.
9896         Fixes bug #342463.
9897         Also fix crasher when cursor is at bottom right of window.
9898
9899 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
9900
9901         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
9902           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
9903           streaming mode regression for file from #343837 with 'bext' chunk
9904           before the 'fmt' chunk.
9905
9906 2007-05-11  Wim Taymans  <wim@fluendo.com>
9907
9908         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
9909         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
9910         (gst_rtspsrc_handle_src_event),
9911         (gst_rtspsrc_stream_configure_manager),
9912         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
9913         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
9914         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
9915         * gst/rtsp/gstrtspsrc.h:
9916         * gst/rtsp/rtspdefs.h:
9917         Preliminary seek support.
9918         Activate internal pads so that we can receive events on them.
9919         Don't try to parse a range string when it's NULL.
9920
9921 2007-05-11  Wim Taymans  <wim@fluendo.com>
9922
9923         * gst/rtp/README:
9924         Update README with new RTP variables that will be used for
9925         synchronisation.
9926
9927         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
9928         (gst_rtp_vorbis_depay_parse_configuration),
9929         (gst_rtp_vorbis_depay_process):
9930         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
9931         (gst_rtp_vorbis_pay_finish_headers),
9932         (gst_rtp_vorbis_pay_handle_buffer):
9933         Update vorbis pay and depayloader to draft-04.
9934
9935 2007-05-11  Wim Taymans  <wim@fluendo.com>
9936
9937         * gst/rtsp/rtsptransport.c:
9938         UDP MCAST is actually the default for RTP/AVP.
9939 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
9940
9941         * gst/level/gstlevel.c: (gst_level_transform_ip):
9942         Use guint8 * instead of gpointer then vs6 can build 
9943         in_data += (filter->width / 8).
9944
9945 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
9946
9947         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
9948           gst_ximage_src_ximage_get):
9949         * sys/ximage/gstximagesrc.h (last_ximage):
9950         When using Damage actually keep the last frame, and not assume
9951         that the buffer we get already has the last frame on it.
9952         Copy the cursor over if we specify a non-zero start x and
9953         start y.
9954
9955 2007-05-11  Wim Taymans  <wim@fluendo.com>
9956
9957         * gst/rtsp/rtsptransport.c:
9958         Make UDP the default transport when not specified.
9959
9960 2007-05-09  David Schleef  <ds@schleef.org>
9961
9962         * gst/level/gstlevel.c:
9963           Revert last change.
9964
9965 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
9966
9967         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
9968         (gst_level_transform_ip):
9969         Use guint8 * instead of gpointer then vs6 know the size of data
9970         pointed when moving the pointer.
9971         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
9972         Move instructions after variables declaration.
9973         * win32/vs6/autogen.dsp:
9974         * win32/vs6/libgstrtp.dsp:
9975         * win32/vs6/libgstrtsp.dsp:
9976         Update vs6 project files.
9977
9978 2007-05-09  Wim Taymans  <wim@fluendo.com>
9979
9980         * gst/rtsp/Makefile.am:
9981         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
9982         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
9983         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
9984         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
9985         (rtsp_range_free):
9986         * gst/rtsp/rtsprange.h:
9987         Add code to parse time ranges.
9988         Report DURATION on the stream when possible.
9989
9990 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
9991
9992         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
9993         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
9994         (gst_videomixer_collected):
9995           Fix strides calculation for AYUV (it's just width*4) (#436910).
9996
9997 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
9998
9999         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10000         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10001         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10002         Sync the GObject properties before each processing step to properly
10003         work with the controller.
10004
10005 2007-05-04  Wim Taymans  <wim@fluendo.com>
10006
10007         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10008         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10009         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10010         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10011         (gst_rtspsrc_change_state):
10012         Let more error state trickle down so that we can catch more error
10013         cases.
10014         Handle keep-alive a little smarter by selecting a method the server
10015         actually supports.
10016         Fix a race in UDP streaming shutdown.
10017
10018 2007-05-04  Wim Taymans  <wim@fluendo.com>
10019
10020         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10021         Ignore errors when trying to use the keep-alive messages.
10022
10023 2007-05-04  Wim Taymans  <wim@fluendo.com>
10024
10025         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10026         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10027         (gst_rtspsrc_stream_configure_manager),
10028         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10029         (gst_rtspsrc_stream_configure_mcast),
10030         (gst_rtspsrc_stream_configure_udp),
10031         (gst_rtspsrc_stream_configure_udp_sink),
10032         (gst_rtspsrc_stream_configure_transport):
10033         Send RTCP messages back to the server over the TCP connection.
10034
10035         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10036         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10037         (rtsp_connection_receive):
10038         * gst/rtsp/rtspconnection.h:
10039         Factor out and expose lowlevel _write and _read methods.
10040         Implement sending data messages to the server.
10041
10042 2007-05-03  Wim Taymans  <wim@fluendo.com>
10043
10044         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10045         (gst_multipart_mux_collected):
10046         Fix timestamps on outgoing buffers.
10047
10048 2007-05-03  Wim Taymans  <wim@fluendo.com>
10049
10050         * gst/multipart/multipartmux.c:
10051         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10052         (gst_multipart_mux_change_state):
10053         Emit NEWSEGMENT events before pushing the first buffer.
10054
10055 2007-05-03  Wim Taymans  <wim@fluendo.com>
10056
10057         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10058         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10059         (gst_rtspsrc_handle_src_query),
10060         (gst_rtspsrc_stream_configure_manager),
10061         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10062         (gst_rtspsrc_stream_configure_mcast),
10063         (gst_rtspsrc_stream_configure_udp),
10064         (gst_rtspsrc_stream_configure_udp_sink),
10065         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10066         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10067         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10068         (gst_rtspsrc_pause):
10069         Refactor transport configuration code.
10070         Create internal pads for TCP transport so that we can implement events
10071         and queries.
10072         Handle events and queries.
10073         Parse range from the SDP.
10074         Fix race in pause handler where the connection could still be flushing.
10075
10076 2007-05-02  Wim Taymans  <wim@fluendo.com>
10077
10078         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10079         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10080         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10081         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10082         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10083         (gst_rtspsrc_change_state):
10084         * gst/rtsp/gstrtspsrc.h:
10085         Fix race when multiple udp sources post timeouts, just act on the first
10086         received timeout.
10087         Protect stream list with a recursive lock to fix some races.
10088         Flush connection when we need to do a reconnect or stop.
10089         Make state lock recursive.
10090
10091         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10092         (rtsp_connection_close):
10093         Some small cleanups.
10094
10095 2007-05-02  Wim Taymans  <wim@fluendo.com>
10096
10097         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10098         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10099         Only set DISCONT when there actually is a discont or when we just
10100         started.
10101
10102 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10103
10104         * ext/flac/gstflac.c: (plugin_init):
10105         Call bindtextdomain() to get localized strings.
10106
10107 2007-05-02  Wim Taymans  <wim@fluendo.com>
10108
10109         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10110         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10111         (gst_wavparse_stream_data):
10112         * gst/wavparse/gstwavparse.h:
10113         Be a bit more clever when dealing with VBR files with FACT tags, we
10114         don't want to timestamp buffers in that case but the estimated BPS can
10115         be used for seeking.
10116         Only send close segment in the streaming thread.
10117
10118 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
10119
10120         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10121         Correctly post an error on the bus if something went wrong in the loop
10122         function. This fixes a few cases where the task was paused and nothing
10123         happened anymore.
10124
10125 2007-05-02  Wim Taymans  <wim@fluendo.com>
10126
10127         * gst/rtsp/test.c: (main):
10128         Fix compilation of deprecated test just because I'm too lazy to delete
10129         it.
10130
10131 2007-05-02  Wim Taymans  <wim@fluendo.com>
10132
10133         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10134         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10135         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10136         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10137         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10138         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10139         * gst/rtsp/gstrtspsrc.h:
10140         Fix sending RTCP to the right place.
10141         Fix bug in reffing the wrong UDP element.
10142         Use new pad names for the session manager.
10143         Implement handling server requests in interleaved and UDP modes.
10144         Handle session keep-alive in UDP modes.
10145         Remove GCond for handling UDP timeouts.
10146
10147         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10148         (rtsp_connection_send), (rtsp_connection_read), (read_body),
10149         (rtsp_connection_receive), (rtsp_connection_close):
10150         * gst/rtsp/rtspconnection.h:
10151         Store connection IP address for later.
10152         Add timeout args to all operations that might block forever.
10153         Parse session timeout.
10154         Only close sockets when not already closed.
10155
10156         * gst/rtsp/rtspdefs.c:
10157         * gst/rtsp/rtspdefs.h:
10158         Add timeout return value and error string.
10159
10160         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10161         Add small comment.
10162
10163 2007-05-01  Wim Taymans  <wim@fluendo.com>
10164
10165         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10166
10167         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10168         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10169         * gst/rtp/gstrtpmp4vpay.h:
10170         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10171
10172 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
10173
10174         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10175           Remove v4l2src from docs, since it breaks the docs build, and the
10176           plugin is only built if --enable-experimental is used anyway.
10177
10178         * docs/plugins/Makefile.am:
10179           Spaces => tab.
10180
10181 2007-04-29  Wim Taymans  <wim@fluendo.com>
10182
10183         * gst/udp/gstmultiudpsink.c: (leave_multicast),
10184         (gst_multiudpsink_add), (gst_multiudpsink_remove):
10185         Add code to drop membership of a multicast group.
10186
10187         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10188         (gst_udpsink_set_uri):
10189         Implement URI handler.
10190
10191         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10192         (gst_rtspsrc_parse_rtpinfo):
10193         Use URI handler to make udpsink instace.
10194         Improve code to configure port and destination.
10195
10196 2007-04-29  Wim Taymans  <wim@fluendo.com>
10197
10198         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10199         Fix multicast detection.
10200         Don't try to join a multicast group if the address is not multicast.
10201
10202         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10203         Small debug improvement.
10204
10205 2007-04-27  Wim Taymans  <wim@fluendo.com>
10206
10207         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10208         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10209         (gst_rtspsrc_handle_message):
10210         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10211         parent.
10212
10213 2007-04-27  Wim Taymans  <wim@fluendo.com>
10214
10215         * gst/rtp/gstrtpilbcdepay.h:
10216         Fix mode property when specified as an arg.
10217
10218 2007-04-26  Edward Hervey  <edward@fluendo.com>
10219
10220         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10221         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10222         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10223         * docs/plugins/inspect/plugin-osxaudio.xml:
10224         Add documentation for osxaudio plugin.
10225
10226 2007-04-26  Wim Taymans  <wim@fluendo.com>
10227
10228         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10229         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10230         (gst_rtspsrc_open), (gst_rtspsrc_close),
10231         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10232         (gst_rtspsrc_pause):
10233         * gst/rtsp/gstrtspsrc.h:
10234         Protect state changes with a lock.
10235
10236         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10237         (parse_line):
10238         * gst/rtsp/rtspconnection.h:
10239         Remove some unused stuff.
10240
10241 2007-04-26  Wim Taymans  <wim@fluendo.com>
10242
10243         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10244         Handle the case where there are exactly 0 bytes to read and the ioctl
10245         did not report an error. Fixes #433530.
10246
10247 2007-04-26  Wim Taymans  <wim@fluendo.com>
10248
10249         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10250         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10251         * gst/wavparse/gstwavparse.h:
10252         Apply DISCONT to buffers.
10253         Only apply timestamp to the first sample after a DISCONT, too many VBR
10254         files cause random jitter in the timestamps. Fixes #433119.
10255
10256 2007-04-25  Wim Taymans  <wim@fluendo.com>
10257
10258         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10259         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10260         (gst_rtp_dec_get_property):
10261         * gst/rtsp/gstrtpdec.h:
10262         Add dummy latency property to be backwards compat with rtpbin.
10263
10264         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10265         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10266         (gst_rtspsrc_stream_configure_transport),
10267         (gst_rtspsrc_parse_rtpinfo):
10268         * gst/rtsp/gstrtspsrc.h:
10269         Add latency property and configure in the session manager.
10270         Don't set invalid clock-base and seqnum-base on caps, some servers
10271         sometimes don't send them.
10272
10273 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10274
10275         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10276         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10277           Double-check that RGB input caps are really RGBA caps (apparently
10278           the core doesn't always catch it if those caps aren't a subset of
10279           our template caps, also see #421543). Fixes #429319 in a way.
10280           Also, don't leak the pad template in the transform_caps function.
10281
10282         * tests/check/Makefile.am:
10283         * tests/check/elements/.cvsignore:
10284         * tests/check/elements/alphacolor.c: (setup_alphacolor),
10285         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10286         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10287         (GST_START_TEST), (alphacolor_suite):
10288           Add some basic unit tests for alphacolor.
10289
10290 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
10291
10292         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10293           If we get a fatal flow return in the loop function, first post the
10294           error message and only then send the EOS event downstream, otherwise
10295           applications might get an eos message before the error message and
10296           think everything was ok (related to #429319).
10297
10298 2007-04-25  Wim Taymans  <wim@fluendo.com>
10299
10300         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10301         Read the channel byte as an unsigned byte.
10302
10303 2007-04-25  Wim Taymans  <wim@fluendo.com>
10304
10305         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10306         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10307         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10308         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10309         (gst_rtp_gsm_depay_setcaps):
10310         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10311         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10312         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10313         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10314         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10315         (gst_ilbc_depay_get_property):
10316         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10317         * gst/rtp/gstrtpmp4adepay.c:
10318         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10319         (gst_rtp_pcma_depay_setcaps):
10320         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10321         (gst_rtp_pcmu_depay_setcaps):
10322         Make sure we configure the clock_rate in the baseclass in the setcaps
10323         function. Fixes #431282.
10324
10325 2007-04-25  Wim Taymans  <wim@fluendo.com>
10326
10327         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10328         (gst_rtspsrc_stream_free), (request_pt_map),
10329         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10330         * gst/rtsp/gstrtspsrc.h:
10331         Parse server address from SDP.
10332         Hook up a udpsink to send RTCP back to the server.
10333
10334         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10335         * gst/rtsp/rtsptransport.h:
10336         Add some docs.
10337
10338 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
10339
10340         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10341           Make header field check conditional. Fixes #433135
10342
10343 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
10344
10345         * docs/plugins/Makefile.am:
10346         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10347         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10348         * docs/plugins/inspect/plugin-alphacolor.xml:
10349         * gst/alpha/Makefile.am:
10350         * gst/alpha/gstalphacolor.c:
10351         * gst/alpha/gstalphacolor.h:
10352           Add minimal docs blurb to alphacolor; split out headers into
10353           separate header file for gtk-doc.
10354
10355 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
10356
10357         * gst/debug/progressreport.c: (gst_progress_report_report):
10358           Don't try to post NULL message (in case we can't query upstream
10359           position or duration).
10360
10361 2007-04-18  Michael Smith  <msmith@fluendo.com>
10362
10363         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10364         (gst_cutter_get_caps):
10365         * gst/cutter/gstcutter.h:
10366           Fix some of the most obvious bugs in cutter. Now doesn't leak
10367           everything if input is silent.
10368
10369 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
10370
10371         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10372         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10373         * gst/wavenc/gstwavenc.h:
10374         Wav apparently only supports width==GST_ROUND_UP(depth), everything
10375         else results in a invalid block align and invalid files.
10376
10377 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10378
10379         Patch by: Snaik <snaik32 gmail com>
10380
10381         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10382           Add missing break statement for BOX_HORIZONTAL case.
10383
10384 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10385
10386         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10387
10388         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10389         Use correct format strings for integer types.
10390
10391 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
10392
10393         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10394         (gst_wavparse_create_sourcepad):
10395         Use gst_riff_create_audio_template_caps () instead of the local caps.
10396         This makes updates of the local caps unecessary whenever libgstriff
10397         gets support for new formats.
10398
10399 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
10400
10401         Patch by: Brian Cameron  <brian.cameron at sun dot com>
10402
10403         * sys/sunaudio/gstsunaudio.c:
10404         * sys/sunaudio/gstsunaudiomixer.c:
10405         * sys/sunaudio/gstsunaudiomixer.h:
10406         * sys/sunaudio/gstsunaudiomixerctrl.c:
10407         * sys/sunaudio/gstsunaudiomixerctrl.h:
10408         * sys/sunaudio/gstsunaudiomixertrack.h:
10409         * sys/sunaudio/gstsunaudiosink.c:
10410         * sys/sunaudio/gstsunaudiosink.h:
10411         * sys/sunaudio/gstsunaudiosrc.c:
10412         * sys/sunaudio/gstsunaudiosrc.h:
10413           Fix and/or update copyright attributions (#430228).
10414
10415 2007-04-13  Wim Taymans  <wim@fluendo.com>
10416
10417         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10418         Fix docs.
10419
10420         * gst/rtsp/URLS:
10421         Add some more example urls.
10422
10423         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10424         (gst_rtp_dec_chain_rtp):
10425         Better debugging.
10426
10427         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10428         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10429         (gst_rtspsrc_parse_rtpinfo):
10430         Remove unused code.
10431
10432 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10433
10434         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10435         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10436         (gst_wavparse_stream_data):
10437           Relax the audio/mpeg caps again and add FIXME: comment.
10438
10439 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
10440
10441         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10442         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10443         (gst_wavparse_stream_data):
10444         * gst/wavparse/gstwavparse.h:
10445           More sanity check for the header fields. Fix type for 'rate' header
10446           field.
10447
10448 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
10449
10450         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10451         (gst_icydemux_unicodify):
10452           If the metadata strings we get in the stream are not UTF-8, try to
10453           interpret them according to the character encodings specified in the
10454           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10455           only fall back to locale/ISO-8859-1 if those aren't set or don't
10456           work. Should fix #428901.
10457
10458 2007-04-12  Wim Taymans  <wim@fluendo.com>
10459
10460         * gst/rtp/gstrtph264depay.c:
10461         Use the proper sync word for SPS and PPS.
10462
10463 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10464
10465         * gst/rtp/Makefile.am:
10466         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10467           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10468         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10469           Add a simple hashing implementation that we can use to generate
10470           a 24-bit ident value based on the codebooks for vorbis and theora.
10471         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10472           gst_rtp_theora_pay_handle_buffer):
10473         * gst/rtp/gstrtpvorbisdepay.c
10474           (gst_rtp_vorbis_depay_parse_configuration,
10475           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10476         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10477           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10478           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10479           Use the hashing function, ensuring that the same codebooks result
10480           in the same ident and thus the same SDP description.
10481           Various log fixes/changes.
10482
10483 2007-04-12  Wim Taymans  <wim@fluendo.com>
10484
10485         Patch by: jerry tan <jerry dot tan at sun dot com>
10486
10487         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10488         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10489         application's responsibility to make sure it open the device once.
10490         Remove a careless error if AUDIODEV is set. Fixes #392620.
10491
10492 2007-04-12  Wim Taymans  <wim@fluendo.com>
10493
10494         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10495         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10496         * gst/rtsp/gstrtpdec.h:
10497         Make backward compat with rtpbin by adding the request-pt-map signals.
10498
10499         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10500         (new_session_pad), (request_pt_map),
10501         (gst_rtspsrc_stream_configure_transport),
10502         (gst_rtspsrc_stream_configure_caps),
10503         (gst_rtspsrc_activate_streams):
10504         * gst/rtsp/gstrtspsrc.h:
10505         Implement request-pt-map signals instead of setting caps on the buffers
10506         for the session manager.
10507
10508 2007-04-11  Wim Taymans  <wim@fluendo.com>
10509
10510         * gst/udp/gstudp.c: (plugin_init):
10511         Register GstNetBuffer in plugin_init so that the type can be used from
10512         multiple threads without races.
10513
10514 2007-04-10  Wim Taymans  <wim@fluendo.com>
10515
10516         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10517         (gst_rtp_amr_depay_process):
10518         Fix depayloader clock_rate and some cleanups.
10519
10520         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10521         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10522         * gst/rtp/gstrtph264depay.h:
10523         Don't push codec_data in the adapter because it might get flushed when
10524         we get a discont.
10525
10526         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10527         Handle multiple AU per packet.
10528
10529         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10530         (gst_rtp_sv3v_depay_plugin_init):
10531         Disable rank, this one does not work.
10532         Remove timestamping, base class does that.
10533
10534 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
10535
10536         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10537           limit caps to the formats we announce in the template
10538
10539         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10540         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10541         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10542           fix some crashers/asserts when dealing with broken files
10543
10544 2007-04-10  Wim Taymans  <wim@fluendo.com>
10545
10546         Patch by: Peter Kjellerstedt  <pkj at axis com>
10547
10548         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10549         * gst/rtp/gstrtpL16depay.c:
10550         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10551         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10552         (gst_rtp_speex_depay_setcaps):
10553         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10554         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10555         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10556         Fix some compiler warnings. Fixes #428182.
10557
10558 2007-04-06  Wim Taymans  <wim@fluendo.com>
10559
10560         * gst/rtsp/Makefile.am:
10561         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10562         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10563         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10564         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10565         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10566         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10567         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10568         (create_rtcp), (gst_rtp_dec_request_new_pad),
10569         (gst_rtp_dec_release_pad):
10570         * gst/rtsp/gstrtpdec.h:
10571         * gst/rtsp/gstrtsp.c: (plugin_init):
10572         Morph RTPDec into something compatible with RTPBin as a fallback.
10573         Various other style fixes.
10574
10575         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10576         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10577         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10578         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10579         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10580         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10581         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10582         * gst/rtsp/gstrtspsrc.h:
10583         Implement RTPBin session manager handling.
10584         Don't try to add empty properties to caps.
10585         Implement fallback session manager, handling.
10586         Don't combine errors from RTCP streams, just ignore them.
10587
10588         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10589         * gst/rtsp/rtsptransport.h:
10590         Implement fallback session manager.
10591         Make RTPBin the default one when available.
10592
10593 2007-04-05  Wim Taymans  <wim@fluendo.com>
10594
10595         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10596         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10597         This element is ready to be autoplugged.
10598
10599 2007-04-05  Julien MOUTTE  <julien@moutte.net>
10600
10601         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10602         Don't leave the offsets defined by upstream element on the
10603         compressed data buffer we are pushing downstream. Make them
10604         GST_BUFFER_OFFSET_NONE.
10605
10606 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
10607
10608         * gst/avi/README:
10609         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10610         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10611         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10612         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10613         (gst_avi_demux_calculate_durations_from_index),
10614         (gst_avi_demux_stream_header_push),
10615         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10616         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10617           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10618
10619 2007-04-03  Wim Taymans  <wim@fluendo.com>
10620
10621         * gst/smpte/barboxwipes.c:
10622         Fix error as spotted by Snaik <snaik32 at gmail dot com>
10623
10624 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10625
10626         * gst/wavparse/gstwavparse.c:
10627         Support audio/x-raw-float in wav files. This only works with
10628         plugins-base CVS, using an older version doesn't have any
10629         disadvantages though.
10630
10631 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
10632
10633         * configure.ac:
10634         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10635         (gst_au_parse_parse_header), (gst_au_parse_chain):
10636         * gst/auparse/gstauparse.h:
10637         Revert last change as we don't want plugins-good to depend on
10638         plugins-base CVS now.
10639
10640 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10641
10642         * configure.ac:
10643         Require gst-plugins-base CVS for audioconvert with non-native
10644         float support and width/depth fix in libgstriff.
10645
10646         Patch by: René Stadler <mail at renestadler dot de>
10647
10648         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10649         (gst_au_parse_parse_header), (gst_au_parse_chain):
10650         * gst/auparse/gstauparse.h:
10651         Don't swap the floats ourself if they're not in native endianness.
10652         Instead let audioconvert handle this. Fixes #339838.
10653
10654 2007-03-29  Wim Taymans  <wim@fluendo.com>
10655
10656         * gst/rtp/gstasteriskh263.h:
10657         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10658         (gst_rtp_h263p_depay_change_state):
10659         * gst/rtp/gstrtph263pdepay.h:
10660         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10661         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10662         (gst_rtp_h264_depay_change_state):
10663         * gst/rtp/gstrtph264depay.h:
10664         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10665         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10666         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10667         Flush adapter on disconts.
10668
10669 2007-03-29  Wim Taymans  <wim@fluendo.com>
10670
10671         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10672         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10673         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10674         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10675         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10676         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10677         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10678         (gst_rtp_mp4v_depay_process):
10679         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10680         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10681         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10682         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10683         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10684         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10685         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10686         Use more efficient adapter and rtpbuffer methods when possible.
10687
10688 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10689
10690         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10691         (gst_wavenc_sink_setcaps):
10692         Correctly handle width!=depth input.
10693         * gst/wavparse/gstwavparse.c:
10694         Already export in the caps that width==8 uses unsigned samples and
10695         everything else uses signed samples.
10696
10697 2007-03-29  Wim Taymans  <wim@fluendo.com>
10698
10699         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10700
10701         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10702         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10703         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10704         (gst_dynudpsink_close):
10705         * gst/udp/gstdynudpsink.h:
10706         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10707         (gst_udpsrc_create), (gst_udpsrc_set_property),
10708         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10709         * gst/udp/gstudpsrc.h:
10710         Rework the socket allocation a bit based on the sockfd argument so that
10711         it becomes usable.
10712         Add a closefd property to instruct the udp elements to close the custom
10713         file descriptors when going to READY. Fixes #423304.
10714         API:GstUDPSrc::closefd property
10715         API:GstDynUDPSink::closefd property
10716
10717 2007-03-29  Wim Taymans  <wim@fluendo.com>
10718
10719         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10720
10721         * gst/rtp/Makefile.am:
10722         * gst/rtp/gstrtp.c: (plugin_init):
10723         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10724         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10725         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10726         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10727         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10728         (gst_rtp_h264_pay_plugin_init):
10729         * gst/rtp/gstrtph264pay.h:
10730         Added H264 payloader. Fixes #423782.
10731
10732         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10733         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10734         Small fixes.
10735
10736 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10737
10738         * gst/wavparse/gstwavparse.c:
10739         Actually support depths from 1 to 32, not only 8 to 32.
10740
10741 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
10742
10743         * gst/wavparse/gstwavparse.c:
10744         Add support for wav files containing audio/x-raw-int with random
10745         depths between 1 and 32 bits.
10746
10747 2007-03-28  Wim Taymans  <wim@fluendo.com>
10748
10749         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
10750
10751         * gst/rtp/Makefile.am:
10752         * gst/rtp/gstrtp.c: (plugin_init):
10753         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10754         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10755         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10756         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10757         (gst_rtp_mp4a_depay_get_property),
10758         (gst_rtp_mp4a_depay_change_state),
10759         (gst_rtp_mp4a_depay_plugin_init):
10760         * gst/rtp/gstrtpmp4adepay.h:
10761         Added MP4A-LATM depayloader. Fixes #417792.
10762
10763         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10764         (gst_rtp_mp4v_depay_process):
10765         Fixup depayloader, setting codec_data, using more efficient adaptor and
10766         rtpbuffer handling.
10767
10768         * gst/rtsp/URLS:
10769         Add url to test above.
10770
10771 2007-03-25  Wim Taymans  <wim@fluendo.com>
10772
10773         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10774         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10775         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10776         (gst_rtspsrc_media_to_caps),
10777         (gst_rtspsrc_stream_configure_transport),
10778         (gst_rtspsrc_stream_configure_caps),
10779         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10780         * gst/rtsp/gstrtspsrc.h:
10781         Handle default clock-rates for static payload types, rearrange stuff so
10782         that the rtpmap field in the sdp can override the defaults.
10783         Parse RTP-Info field to get the seqnum and timebase fields that should
10784         go in the caps.
10785         Delay configuring caps after we got the RTP-Info from the PLAY reply from
10786         the server. 
10787
10788 2007-03-22  Wim Taymans  <wim@fluendo.com>
10789
10790         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10791
10792         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10793         Accept complex pipeline descriptions as an audio profile instead of just
10794         a single element. Fixes #420658.
10795
10796 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10797
10798         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10799           Rename registered type in preparation of GstTagDemux moving to
10800           -base at some point in the future.
10801
10802 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
10803
10804         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10805           Streaming mode fixes: don't unref buffer we don't own any longer;
10806           remove bogus adapter flush. Fixes #419338.
10807
10808 2007-03-17  David Schleef  <ds@schleef.org>
10809
10810         * REQUIREMENTS: Change the format to key/value, add a bunch of
10811           information, remove a bunch of requirements that are for
10812           other GStreamer packages.
10813
10814 2007-03-17  David Schleef  <ds@schleef.org>
10815
10816         * REQUIREMENTS: Fix a few things.  This file really needs a
10817         good once-over.
10818
10819 2007-03-15  Edward Hervey  <edward@fluendo.com>
10820
10821         * sys/Makefile.am:
10822         Don't forget to distribute the sys/osxaudio/ directory.
10823
10824 2007-03-15  Edward Hervey  <edward@fluendo.com>
10825
10826         * configure.ac:
10827         * sys/Makefile.am:
10828         * sys/osxaudio/Makefile.am:
10829         * sys/osxaudio/gstosxaudio.c:
10830         * sys/osxaudio/gstosxaudiosink.c:
10831         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
10832         (gst_osx_audio_sink_getcaps),
10833         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
10834         * sys/osxaudio/gstosxaudiosrc.c:
10835         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
10836         (gst_osx_audio_src_create_ringbuffer):
10837         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
10838         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
10839         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
10840         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
10841         * sys/osxaudio/gstosxringbuffer.h:
10842         Activate osxaudio in gst-plugins-good with proper build setup.
10843         Add inlined documentation.
10844         Fix debug statements
10845         Fix ringbuffer when pausing.
10846         Fixes #323471
10847
10848 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10849         * gst/rtp/gstrtppcmapay.c:
10850         * gst/rtp/gstrtppcmapay.h:
10851         * gst/rtp/gstrtppcmupay.c:
10852         * gst/rtp/gstrtppcmupay.h:
10853         Ported mulaw and alaw payloaders to use new base class
10854
10855 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10856
10857         * po/af.po:
10858         * po/az.po:
10859         * po/cs.po:
10860         * po/en_GB.po:
10861         * po/it.po:
10862         * po/nl.po:
10863         * po/or.po:
10864         * po/sq.po:
10865         * po/sr.po:
10866         * po/sv.po:
10867         * po/uk.po:
10868         * po/vi.po:
10869           Update translations.
10870
10871 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10872
10873         * configure.ac:
10874           Fix string replace error (AG_AG_GST_* => AG_GST_*).
10875
10876 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
10877
10878         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
10879           Fix handling of -1 values for start and stop values when seeking,
10880           and SEEK_CUR+SEEK_END here as well.
10881
10882 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
10883
10884         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
10885           Fix handling of -1 values for start and stop values when seeking, 
10886           and SEEK_CUR+SEEK_END.
10887
10888 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
10889
10890         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
10891           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
10892           the image format a variable-length NUL-terminated string; in
10893           versions before that the image format is a fixed-length string of
10894           3 characters (see #348644 for a sample tag).
10895           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
10896
10897 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
10898
10899         * win32/MANIFEST:
10900         Add new project files to MANIFEST.
10901         * win32/vs6/libgstaudiofx.dsp:
10902         * win32/vs6/libgstrtp.dsp:
10903         * win32/vs6/libgstrtsp.dsp:
10904         Update project files.
10905         
10906 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10907
10908         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
10909         (gst_avi_demux_parse_index):
10910         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
10911         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
10912           Printf format fixes; also add some missing quotes in translated
10913           strings. Fixes #416728 and #416727.
10914
10915 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
10916
10917         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
10918           Tim and I can't think of any reason the child audio sink needs to 
10919           be set back to NULL after successfully determining that it can 
10920           reach READY - it gets immediately set back to READY by the caller
10921           anyway, causing an unnecessary close/open of any audio devices
10922           involved.
10923
10924 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10925
10926         * po/LINGUAS:
10927         * po/ja.po:
10928           Add ja.po file from #377306.
10929
10930 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10931
10932         * sys/sunaudio/gstsunaudio.c: (plugin_init):
10933         * sys/sunaudio/gstsunaudiomixertrack.c:
10934         (gst_sunaudiomixer_track_new):
10935           Actually translate sunaudio mixer track labels instead of just
10936           marking the strings as translatable (#377306); clean up weird
10937           label string mapping code that serves no apparent purpose. Also
10938           set the 'untranslated-label' property when creating mixer tracks
10939           if the GstMixerTrack base class supports this.
10940
10941         * tests/check/Makefile.am:
10942         * tests/check/elements/.cvsignore:
10943         * tests/check/elements/sunaudio.c: (GST_START_TEST),
10944         (sunaudio_suite):
10945           Very minimalistic unit test for sunaudiomixer element (compiles, but not
10946           actually tested on a system where sunaudiomixer is available).
10947
10948 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
10949
10950         * tests/check/Makefile.am:
10951         Re-enable the states test and see if it works on the buildbots.
10952
10953 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
10954
10955         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
10956         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
10957         (gst_dvdec_change_state):
10958         * ext/dv/gstdvdec.h:
10959         Infer pixel-aspect-ratio from the video frame format if it isn't
10960         provided by the container, as happens when playing DV from AVI
10961         or Quicktime containers.
10962
10963         Patch by: Wim Taymans <wim@fluendo.com>
10964         Fixes #380944
10965
10966 2007-03-09  Wim Taymans  <wim@fluendo.com>
10967
10968         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
10969         When activated, remove the udpsrc timeout, we have dataflow and timeouts
10970         will later be handled by the jitterbuffer.
10971
10972 2007-03-09  Wim Taymans  <wim@fluendo.com>
10973
10974         * ext/taglib/gstid3v2mux.cc:
10975         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
10976         Fixes #414496.
10977         
10978         Patch by: Alex Lancaster <alexl at users sourceforge net>
10979
10980 2007-03-09  Wim Taymans  <wim@fluendo.com>
10981
10982         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
10983         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
10984         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
10985         (gst_avi_demux_chain):
10986         Fix stream position reporting after a seek. Fixes #416445.
10987
10988 2007-03-08  Wim Taymans  <wim@fluendo.com>
10989
10990         Patch by: René Stadler <mail at renestadler dot de>
10991
10992         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
10993         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
10994         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
10995         Make avidemux accept optional header chunks in any order.
10996         Fixes #415446.
10997
10998 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10999
11000         * tests/check/Makefile.am:
11001         Disable the states check until the remaining Valgrind errors
11002         are fixed or suppressed.
11003
11004 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11005
11006         * tests/check/elements/.cvsignore:
11007           Add audiodynamic check to .cvsignore
11008
11009 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
11010
11011         reviewed by: Stefan Kost  <ensonic@users.sf.net>
11012
11013         * gst/audiofx/Makefile.am:
11014         * gst/audiofx/audiodynamic.c:
11015         (gst_audio_dynamic_characteristics_get_type),
11016         (gst_audio_dynamic_mode_get_type),
11017         (gst_audio_dynamic_set_process_function),
11018         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11019         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11020         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11021         (gst_audio_dynamic_transform_hard_knee_compressor_int),
11022         (gst_audio_dynamic_transform_hard_knee_compressor_float),
11023         (gst_audio_dynamic_transform_soft_knee_compressor_int),
11024         (gst_audio_dynamic_transform_soft_knee_compressor_float),
11025         (gst_audio_dynamic_transform_hard_knee_expander_int),
11026         (gst_audio_dynamic_transform_hard_knee_expander_float),
11027         (gst_audio_dynamic_transform_soft_knee_expander_int),
11028         (gst_audio_dynamic_transform_soft_knee_expander_float),
11029         (gst_audio_dynamic_transform_ip):
11030         * gst/audiofx/audiodynamic.h:
11031         * gst/audiofx/audiofx.c: (plugin_init):
11032         Add new audiodynamic element which can act as a compressor or
11033         expander. Supported are hard-knee and soft-knee operation modes with
11034         user-specified ratio and threshold.
11035         Attack and release parameters are not yet implemented but will follow.
11036         * docs/plugins/Makefile.am:
11037         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11038         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11039         * docs/plugins/gst-plugins-good-plugins.args:
11040         * docs/plugins/inspect/plugin-audiofx.xml:
11041         Integrate audiodynamic into the docs.
11042         * tests/check/Makefile.am:
11043         * tests/check/elements/audiodynamic.c: (setup_dynamic),
11044         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11045         Add unit test for audiodynamic.
11046
11047 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
11048
11049         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11050         Free handles that we allocated when exiting via the error paths.
11051
11052 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
11053
11054         * gst/level/gstlevel.c: (gst_level_class_init),
11055         (gst_level_set_caps), (gst_level_start), (gst_level_event),
11056         (gst_level_transform_ip):
11057         * gst/level/gstlevel.h:
11058           Resolve message timestamps against the playback segment.
11059
11060 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11061
11062         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11063         (gst_id3demux_sink_activate):
11064           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11065           caps passed to it (previously one code path assumed it took ownership
11066           while another one assumed it didn't, while in fact it sometimes did and
11067           sometimes didn't ...).
11068
11069         * configure.ac:
11070         * tests/files/Makefile.am:
11071         * tests/files/id3-407349-1.tag:
11072         * tests/files/id3-407349-2.tag:
11073           Add directory where data for unit tests can be stored.
11074
11075         * tests/Makefile.am:
11076         * tests/check/Makefile.am:
11077         * tests/check/elements/.cvsignore:
11078         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11079         (read_tags_from_file), (run_check_for_file),
11080         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11081           Add unit test for id3demux, and in particular for bug #407349. Only
11082           testing pull-mode for now; push mode doesn't work yet because the test
11083           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11084
11085 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11086
11087         * tests/check/Makefile.am:
11088           Add missing backslash at end of line.
11089
11090 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11091
11092         Trigger rebuild.
11093
11094 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
11095
11096         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11097         * gst/id3demux/id3tags.h:
11098         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11099         (parse_obsolete_tdat_frame):
11100           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11101           the four-digit number will be interpreted as a year, whereas it is
11102           month and day in DDMM format. Instead, parse TDAT frames and fix up
11103           the date in the GST_TAG_DATE tag later if we also extracted a year.
11104           Fixes #407349.
11105
11106 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
11107
11108         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11109         (gst_switch_commit_new_kid):
11110         Fix up the dispose logic so it doesn't leak, and fix setting of 
11111         the child state so that we don't set a child to our current state 
11112         just as we are changing it to something else.
11113
11114 2007-03-06  Wim Taymans  <wim@fluendo.com>
11115
11116         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11117         (gst_goom_chain):
11118         * gst/goom/gstgoom.h:
11119         Document, fix and improve goom adapter behaviour.
11120         Fixes #407006.
11121
11122 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11123
11124         * ext/esd/esdsink.c: (gst_esdsink_open):
11125         Unref static pad template after using it.
11126
11127 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11128
11129         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11130         (gst_switch_commit_new_kid):
11131         Fix up the reference counting of the child elements.
11132
11133 2007-03-05  Wim Taymans  <wim@fluendo.com>
11134
11135         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11136         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11137         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11138         Fix encoding-name case.
11139
11140 2007-03-05  Wim Taymans  <wim@fluendo.com>
11141
11142         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11143         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11144         (gst_rtp_speex_depay_process):
11145         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11146         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11147         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11148         (gst_rtp_speex_pay_change_state):
11149         * gst/rtp/gstrtpspeexpay.h:
11150         Fix speex (de)payloader. Fixes #358040.
11151
11152 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
11153
11154         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11155         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11156         Install fakesink in NULL by fixing some broken logic. This obviates
11157         the need to manually set _IS_SINK.
11158         Add some comments and remove a little cruft while I'm at it.
11159
11160 2007-03-05  Wim Taymans  <wim@fluendo.com>
11161
11162         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11163         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11164
11165 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
11166
11167         * po/POTFILES.in:
11168           Update.
11169
11170 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11171
11172         * tests/check/Makefile.am:
11173         Gah! Also disable gconfvideosink from the tests, otherwise
11174         it will instantiate autovideosink, and dfbvideosink and
11175         leak on the buildbots.
11176
11177 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11178
11179         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11180         (gst_cdio_cdda_src_finalize):
11181         Make sure we always destroy our libcdio handle.
11182
11183 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11184
11185         * tests/check/Makefile.am:
11186         Disable autovideosink so the buildbots don't barf over memory
11187         leaked in the directfb sink.
11188
11189 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11190
11191         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11192         Chain up in dispose
11193
11194 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11195
11196         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11197         (gst_multipart_find_pad_by_mime):
11198         Use gst_pad_new_from_static_template instead of
11199         static_pad_template_get+pad_new.
11200
11201 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11202
11203         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11204         Catch the case where no clock has been set.
11205
11206 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11207
11208         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11209         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11210         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11211         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11212         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11213         (gst_gconf_audio_src_finalize), (do_toggle_element):
11214         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11215         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11216         (do_toggle_element):
11217         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11218         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11219         (gst_gconf_video_src_finalize), (do_toggle_element):
11220         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11221         (gst_switch_sink_reset), (gst_switch_sink_set_child):
11222         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11223         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11224         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11225         (gst_shout2send_init), (gst_shout2send_finalize):
11226         * gst/debug/testplugin.c: (gst_test_class_init),
11227         (gst_test_finalize):
11228         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11229         (gst_flxdec_dispose):
11230         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11231         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11232         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11233         (gst_rtspsrc_finalize):
11234         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11235         * gst/rtsp/rtspextwms.h:
11236         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11237         (gst_smpte_finalize):
11238         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11239         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11240         (gst_udpsink_finalize):
11241         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11242         (gst_wavparse_sink_activate):
11243         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11244         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11245         (gst_oss_src_finalize):
11246         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11247         * sys/v4l2/gstv4l2object.h:
11248         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11249         (gst_v4l2src_finalize):
11250         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11251
11252         Fix a bunch of leaks shown by the newly-added states test.
11253
11254 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
11255
11256         * ext/dv/gstdvdec.c: (gst_dvdec_init):
11257         Use gst_pad_new_from_static_template instead of 
11258         static_pad_template_get+pad_new.
11259
11260 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
11261
11262         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11263
11264         * ext/libcaca/Makefile.am:
11265         * gst/debug/Makefile.am:
11266           Don't mix tabs and spaces (#414168).
11267
11268 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11269
11270         * tests/check/generic/.cvsignore:
11271           Ignore files to please buildbot.
11272
11273 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11274
11275         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11276         (gst_wavparse_stream_data):
11277           Unbreak my previous commit (swapped nominator & denominator). Tim,
11278           thanks for spotting.
11279
11280 2007-03-02  Wim Taymans  <wim@fluendo.com>
11281
11282         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11283         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11284         (gst_cdio_cdda_src_finalize):
11285         Small code cleanups.
11286         Don't use pad_alloc as the base class cannot deal with the error codes.
11287
11288 2007-03-02  Wim Taymans  <wim@fluendo.com>
11289
11290         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11291         (gst_udpsrc_create):
11292         Fix doc.
11293
11294 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
11295
11296         Patch by: René Stadler <mail@renestadler.de>
11297
11298         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11299         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11300         (gst_wavparse_stream_data):
11301           Handle rounding better to not drop last sample frame. Fixes #356692
11302
11303 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
11304
11305         * tests/check/Makefile.am:
11306         Disable cacasink from the states check too - it also calls exit(1)
11307         on us when it can't find a terminal to talk to.
11308
11309 2007-03-02  Wim Taymans  <wim@fluendo.com>
11310
11311         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11312
11313         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11314         (gst_udpsrc_create), (gst_udpsrc_set_property),
11315         (gst_udpsrc_get_property):
11316         * gst/udp/gstudpsrc.h:
11317         Add support to strip proprietary headers. Fixes #350296.
11318
11319 2007-03-02  Wim Taymans  <wim@fluendo.com>
11320
11321         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11322         Fix compilation.
11323
11324 2007-03-02  Wim Taymans  <wim@fluendo.com>
11325
11326         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11327
11328         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11329         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11330         (gst_rtp_mp2t_depay_set_property),
11331         (gst_rtp_mp2t_depay_get_property):
11332         * gst/rtp/gstrtpmp2tdepay.h:
11333         Add support to strip off proprietary headers. Fixes #350278.
11334
11335 2007-03-02  Wim Taymans  <wim@fluendo.com>
11336
11337         * ext/hal/hal.c:
11338         Fix compilation.
11339
11340 2007-03-02  Wim Taymans  <wim@fluendo.com>
11341
11342         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11343         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11344         (gst_sunaudiosrc_open):
11345         * sys/sunaudio/gstsunaudiosrc.h:
11346         Remove device-name from GstSunAudioSrc. Fixes #412597.
11347
11348 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11349
11350         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11351         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11352         Having NULL as UDI previously selected the default sink/src. Change
11353         this back but mention it in the debug output.
11354         * ext/hal/hal.c: (gst_hal_get_alsa_element),
11355         (gst_hal_get_oss_element), (gst_hal_get_string),
11356         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11357         (gst_hal_get_audio_src):
11358         * ext/hal/hal.h:
11359         Refactor a bit, check all error conditions, greatly improve debugging
11360         and fix some possible memory leaks. Also implement OSS support
11361         and allow specifying an UDI that points to a real device. For this the
11362         child device which supports ALSA (preferred) or OSS is used.
11363         As a side effect this makes it impossible now to get a alsasink in
11364         halaudiosrc and a alsasrc in halaudiosink.
11365
11366 2007-03-01  Wim Taymans  <wim@fluendo.com>
11367
11368         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11369         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11370         Errors from the udp sources are not fatal unless all of them are in
11371         error.
11372
11373 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11374
11375         * tests/check/Makefile.am:
11376         Disable aasink in the states test. I suspect this is the element that
11377         is calling exit(1) when it can't proceed.
11378
11379 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
11380
11381         * tests/check/Makefile.am:
11382         Draw plugins in from the build tree sys/ dir, rather than picking
11383         up the already installed versions.
11384
11385 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11386
11387         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11388         Error out correctly when getting xcontext fails.
11389
11390 2007-03-01  Wim Taymans  <wim@fluendo.com>
11391
11392         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11393         Make state change to PAUSED NO_PREROLL because that's what it will be in
11394         the future and rtspsrc relies on it.
11395
11396         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11397         (gst_rtspsrc_change_state):
11398         Don't error out when we don't get an error from the state change
11399         function.
11400
11401 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
11402
11403         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11404         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11405           Check if the device UDI is set before trying to query HAL
11406           about it and give a useful error message if it wasn't set.
11407         * ext/hal/hal.c: (gst_hal_get_string):
11408           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11409           gives an assertion failure in D-Bus when running with
11410           DBUS_FATAL_WARNINGS=1.
11411
11412 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11413
11414         * configure.ac:
11415           Convert to new AG_GST style.
11416
11417 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
11418
11419         * tests/check/Makefile.am:
11420         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11421           add test for states
11422
11423 2007-02-28  Wim Taymans  <wim@fluendo.com>
11424
11425         * tests/check/elements/.cvsignore:
11426         Add new videofilter check to .cvsignore.
11427
11428 2007-02-28  Wim Taymans  <wim@fluendo.com>
11429
11430         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11431         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11432         (gst_avi_demux_loop), (gst_avi_demux_chain):
11433         Fix combined flow return. Fixes #412608.
11434
11435 2007-02-28  Wim Taymans  <wim@fluendo.com>
11436
11437         * gst/videofilter/Makefile.am:
11438         Dist header..
11439
11440 2007-02-28  Wim Taymans  <wim@fluendo.com>
11441
11442         * gst/videofilter/gstgamma.h:
11443         Add header too.
11444
11445 2007-02-28  Wim Taymans  <wim@fluendo.com>
11446
11447         Patch by: Mark Nauwelaerts <manauw at skynet be>
11448
11449         * gst/videofilter/Makefile.am:
11450         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11451         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11452         (gst_gamma_get_property), (gst_gamma_calculate_tables),
11453         (oil_tablelookup_u8), (gst_gamma_set_caps),
11454         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11455         Port gamma filter to 0.10. Fixes #412704.
11456
11457         * tests/check/Makefile.am:
11458         * tests/check/elements/videofilter.c: (setup_filter),
11459         (cleanup_filter), (check_filter), (GST_START_TEST),
11460         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11461         Add unit tests for videofilters.
11462
11463 2007-02-28  Wim Taymans  <wim@fluendo.com>
11464
11465         * gst/rtsp/URLS:
11466         Add another interesting test url.
11467
11468         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11469         Don't allow getting header fields from data packets.
11470
11471 2007-02-28  Michael Smith  <msmith@fluendo.com>
11472
11473         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11474         (gst_shout2send_init), (gst_shout2send_start),
11475         (gst_shout2send_set_property), (gst_shout2send_get_property):
11476         * ext/shout2/gstshout2.h:
11477           Add a property for username.
11478
11479 2007-02-27  Christian Schallerr <christian@fluendo.com>
11480
11481         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11482
11483 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11484
11485         * gst/rtsp/Makefile.am:
11486         Fix make check too.
11487
11488 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
11489
11490         * gst/rtsp/base64.c: (util_base64_encode):
11491         * gst/rtsp/base64.h:
11492         Commit missing files for base64 encoding.
11493
11494 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11495
11496         Patch by: Loïc Minier <lool+gnome at via ecp fr>
11497
11498         * configure.ac:
11499         * ext/annodex/Makefile.am:
11500         * ext/jpeg/Makefile.am:
11501         * ext/speex/Makefile.am:
11502         * gst/alpha/Makefile.am:
11503         * gst/cutter/Makefile.am:
11504         * gst/debug/Makefile.am:
11505         * gst/effectv/Makefile.am:
11506         * gst/goom/Makefile.am:
11507         * gst/level/Makefile.am:
11508         * gst/smpte/Makefile.am:
11509         * gst/videofilter/Makefile.am:
11510           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11511
11512 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11513
11514         * gst/rtsp/Makefile.am:
11515         * gst/rtsp/rtspconnection.c: (append_auth_header),
11516         (rtsp_connection_send), (rtsp_connection_set_auth):
11517         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11518         from icecast to replace it. Relicensed from GPL courtesy of Mike
11519         Smith.
11520
11521 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
11522
11523         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11524         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11525         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11526         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11527         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11528         (gst_rtspsrc_uri_set_uri):
11529         * gst/rtsp/gstrtspsrc.h:
11530         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11531         (append_auth_header), (rtsp_connection_send),
11532         (rtsp_connection_free), (rtsp_connection_set_auth):
11533         * gst/rtsp/rtspconnection.h:
11534         * gst/rtsp/rtspdefs.h:
11535         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11536         * gst/rtsp/rtspurl.h:
11537
11538         Implement simple Basic Authentication support so that urls like
11539         rtsp://user:pass@hostname/rtspstream work on hosts that require
11540         authentication.
11541
11542 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
11543
11544         * sys/v4l2/gstv4l2object.c:
11545         * sys/v4l2/gstv4l2tuner.c:
11546         * sys/v4l2/v4l2_calls.c:
11547         Fix segfault when oppening a radio device.
11548         
11549 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
11550
11551         * gst/level/gstlevel.c: (gst_level_set_caps),
11552         (gst_level_transform_ip):
11553         * sys/v4l2/README:
11554         * tests/check/elements/level.c: (GST_START_TEST):
11555           Fix level for multi-channel case.
11556
11557 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
11558
11559         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11560         (gst_level_transform_ip):
11561         * gst/level/gstlevel.h:
11562           Use function pointer for process function and add process functions
11563           for float audio.
11564
11565 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
11566
11567         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11568         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11569         (gst_v4l2src_capture_init):
11570           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11571           fixes #407369
11572
11573 2007-02-18  Wim Taymans  <wim@fluendo.com>
11574
11575         * gst/rtp/Makefile.am:
11576         * gst/rtp/gstrtp.c: (plugin_init):
11577         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11578         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11579         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11580         (gst_rtp_mp2t_pay_plugin_init):
11581         * gst/rtp/gstrtpmp2tpay.h:
11582         Added simple mpeg transport stream payloader.
11583
11584 2007-02-16  Wim Taymans  <wim@fluendo.com>
11585
11586         * gst/rtsp/URLS:
11587         Add example H264 rtsp url.
11588
11589         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11590         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11591         Don't convert values to lowercase or we might mess up base64 encoded
11592         properties.
11593
11594 2007-02-16  Wim Taymans  <wim@fluendo.com>
11595
11596         * gst/rtp/README:
11597         Fix case of string params.
11598
11599         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11600         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11601         Fix depayloader, support more packet types.
11602         Add sync codes to make sure the packetizer can do its job.
11603
11604         * gst/rtp/gstrtpmp4gdepay.c:
11605         * gst/rtp/gstrtpmp4gpay.c:
11606         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11607         Fix caps case again.
11608
11609 2007-02-15  Wim Taymans  <wim@fluendo.com>
11610
11611         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11612         Set right caps on output buffers.
11613
11614 2007-02-14  Wim Taymans  <wim@fluendo.com>
11615
11616         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11617         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
11618         Clear stack allocated SDPMedia struct before calling _init() on it.
11619         Clarify this in the docs as well.
11620
11621 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
11622
11623         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11624         (do_change_child):
11625         Don't reset the profile when going switching states, as it makes
11626         the element non-reusable.
11627
11628 2007-02-14  Wim Taymans  <wim@fluendo.com>
11629
11630         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11631         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11632         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11633         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11634         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11635         (sdp_parse_line):
11636         * gst/rtsp/sdpmessage.h:
11637         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11638         Fix memory management of SDP messages. Fixes #407793.
11639
11640 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
11641
11642         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11643
11644         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11645         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11646
11647 2007-02-14  Wim Taymans  <wim@fluendo.com>
11648
11649         Patch by: jp.liu <jp_liu at astrocom dot cn>
11650
11651         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11652         Fix parsing of password field in url. Fixes #407797.
11653
11654 2007-02-14  Wim Taymans  <wim@fluendo.com>
11655
11656         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11657         (gst_wavparse_reset), (gst_wavparse_init),
11658         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11659         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11660         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11661         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11662         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11663         (gst_wavparse_loop), (gst_wavparse_chain),
11664         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11665         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11666         (plugin_init):
11667         * gst/wavparse/gstwavparse.h:
11668         Update docs.
11669         Use boilerplate.
11670         Various code cleanups.
11671         When the bitrate is not known (bps == 0 or compressed formats) let
11672         downstream element guestimate the duration and position and don't
11673         generate timestamps or durations. Fixes #405213.
11674         Fix EOS and ERROR conditions in chain mode, we just need to forward the
11675         error flowreturn upstream.
11676
11677 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11678
11679         * ext/gconf/Makefile.am:
11680         * ext/gconf/gconf.c: (gst_gconf_get_string),
11681         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11682         (gst_gconf_render_bin_with_default):
11683         * ext/gconf/gconf.h:
11684         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11685         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11686         (gst_gconf_audio_sink_dispose), (do_change_child),
11687         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11688         (cb_change_child), (gst_gconf_audio_sink_change_state):
11689         * ext/gconf/gstgconfaudiosink.h:
11690         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11691         (gst_switch_sink_class_init), (gst_switch_sink_reset),
11692         (gst_switch_sink_init), (gst_switch_sink_dispose),
11693         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11694         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11695         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11696         * ext/gconf/gstswitchsink.h:
11697         * gst/autodetect/gstautoaudiosink.c:
11698         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11699         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11700         (gst_auto_audio_sink_detect):
11701         * gst/autodetect/gstautovideosink.c:
11702         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11703         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11704         (gst_auto_video_sink_detect):
11705         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11706         and a child that implements the GConf key monitoring. The end goal of
11707         this is an audio sink that can be changed on the fly, but at the 
11708         moment it still only changes on the next READY transition.
11709
11710 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11711
11712         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11713         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11714         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11715         (gst_avi_demux_calculate_durations_from_index),
11716         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11717         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11718         (gst_avi_demux_loop):
11719           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11720
11721 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
11722
11723         * configure.ac:
11724         * docs/plugins/Makefile.am:
11725           Add crossreferences to glib/gobject/gstream docs.
11726
11727 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11728
11729         * gst/monoscope/Makefile.am:
11730         * gst/monoscope/gstmonoscope.c:
11731           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11732           (but no LIBS, since we only use defines from the headers).
11733
11734 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11735
11736         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
11737
11738         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11739         (gst_wavparse_stream_data):
11740           Fix massive memory leak when operating in streaming mode due to
11741           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11742           Fixes #407057.
11743
11744 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11745
11746         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11747         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11748         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11749         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11750         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11751         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11752         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11753         (gst_avi_demux_calculate_durations_from_index),
11754         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11755         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11756         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11757         * gst/avi/gstavidemux.h:
11758           Save some memory (8%) by repacking the index entry structure (more to
11759           come). Add more FIXMEs to questionable parts.
11760
11761 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11762
11763         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11764         (gst_v4l2src_get_caps):
11765         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11766         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11767         (gst_v4l2src_capture_init):
11768           More FIXME comments and messaging changes.
11769
11770 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
11771
11772         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11773         (gst_goom_change_state):
11774         * gst/goom/gstgoom.h:
11775           Improved docs and use GST_DEBUG_FUNCPTR.
11776
11777         * gst/level/gstlevel.c: (gst_level_class_init):
11778           Use GST_DEBUG_FUNCPTR.
11779
11780         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11781         (gst_monoscope_chain), (gst_monoscope_change_state):
11782           Improved docs source cleanups.
11783
11784 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
11785
11786         * gst/debug/Makefile.am:
11787         * gst/debug/gstdebug.c: (plugin_init):
11788         * gst/debug/gstpushfilesrc.c:
11789         * gst/debug/gstpushfilesrc.h:
11790           Add code for a pushfilesrc element that implements a pushfile:// URI
11791           handler, to make debugging push-mode operation of demuxer/decoders
11792           that support both easier in connection with seek/playbin/etc.
11793           The element isn't registered at the moment.
11794
11795 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
11796
11797         * gst/avi/gstavimux.c:
11798           Comment a #if 0 in caps template definition as VS6 seems to 
11799         do not support it.
11800         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11801           Use gst_guint64_to_gdouble for conversion.
11802         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11803           Move variables declaration before the first instruction.
11804         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11805           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11806           And don't include netdb.h for G_OS_WIN32
11807         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11808           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
11809           by VS6 then use an other way to initialize SDPMedia structure.
11810         * gst/udp/gstdynudpsink.h:
11811         * gst/udp/gstdynudpnetutils.h:
11812           Do not include <sys/time.h> for G_OS_WIN32
11813         * gst/udp/gstudpsrc.c:
11814           Define socklen_t as int for G_OS_WIN32
11815         * win/common/config.h.in:
11816           Undef HAVE_NETINET_IN_H
11817         * win32/vs6/gst_plugins_good.dsw:
11818         * win32/vs6/libgstrtp.dsp:
11819         * win32/vs6/libgstrtsp.dsp:
11820         * win32/vs6/libgstautogen.dsp:
11821         * win32/vs6/libgstaudiofx.dsp:
11822         * win32/vs6/libgstudp.dsp:
11823           Add and update project files.
11824         * win32/common/gstudp-enumtypes.c:
11825         * win32/common/gstudp-enumtypes.h:
11826           Add a copy of udp enumtypes to win32/common as in core 
11827           and base.
11828         
11829 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
11830
11831         * configure.ac:
11832           Activate monoscope when building with --enable-experimental. Fix
11833           --enable-external configure switch description.
11834
11835         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
11836         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
11837           Help gst-indent.
11838
11839 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
11840
11841         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
11842           Explicitly cast result of pointer arithmetic to integer in order to
11843           avoid compiler warnings on some 64-bit systems. Should fix #406018.
11844
11845 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
11846
11847         * gst/debug/progressreport.c:
11848           Some more docs.
11849
11850 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11851
11852         * docs/plugins/inspect/plugin-rtp.xml:
11853           Update for new elements.
11854
11855         * gst/debug/progressreport.h:
11856           Commit newly-created header file as well.
11857
11858 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11859
11860         * docs/plugins/Makefile.am:
11861         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11862         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11863         * docs/plugins/gst-plugins-good-plugins.hierarchy:
11864         * gst/debug/Makefile.am:
11865         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
11866         (gst_progress_report_do_query), (gst_progress_report_report):
11867           Make progressreport element post messages with the current progress
11868           on the bus. Also add some basic docs for it.
11869
11870 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
11871
11872         * ext/hal/hal.c: (gst_hal_get_string):
11873         * ext/hal/hal.h:
11874           Some small cleanups; deal with errors when parsing the HAL ALSA
11875           capabilities a bit better.
11876
11877 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11878
11879         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11880           Let's try this again and use the right cast this time.
11881
11882 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11883
11884         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
11885           Add cast to avoid compiler warnings with older GLib versions
11886           where the nick/name members in GEnumValue are not declared as
11887           constant strings.
11888
11889 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11890
11891         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
11892         (gst_gconf_render_bin_from_key),
11893         (gst_gconf_get_default_audio_sink):
11894         * ext/gconf/gconf.h:
11895         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
11896         (do_toggle_element), (gst_gconf_audio_sink_set_property),
11897         (gst_gconf_audio_sink_get_property):
11898           In gconfaudiosink, get the right key as the old key in do_toggle
11899           (ie. one dependent on the profile selected). Log some more stuff so
11900           we can see what's actually going on.
11901
11902 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
11903
11904         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
11905         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
11906         (gst_audio_amplify_set_process_function),
11907         (gst_audio_amplify_setup):
11908         * gst/audiofx/audioamplify.h:
11909         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
11910         (gst_audio_invert_class_init), (gst_audio_invert_setup):
11911         * gst/audiofx/audioinvert.h:
11912         Some small cleanups and port both elements to the new GstAudioFilter
11913         base class to save a few lines of common code.
11914         * gst/audiofx/Makefile.am:
11915         Link against libgstaudio for the above changes
11916
11917 2007-01-29  Wim Taymans  <wim@fluendo.com>
11918
11919         * tests/check/elements/.cvsignore:
11920         Some more ignores.
11921
11922 2007-01-26  Wim Taymans  <wim@fluendo.com>
11923
11924         Patch by: charles <charlesg3 at gmail dot com>
11925
11926         * ext/shout2/gstshout2.c: (gst_shout2send_init),
11927         (set_shout_metadata), (gst_shout2send_event):
11928         * ext/shout2/gstshout2.h:
11929         Properly handle tags in shout2send. Fixes #399825.
11930
11931 2007-01-25  Wim Taymans  <wim@fluendo.com>
11932
11933         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11934         (gst_rtspsrc_activate_streams):
11935         Convert SDP fields to upper/lowercase following the rules in the SDP to
11936         caps document. 
11937
11938 2007-01-25  Wim Taymans  <wim@fluendo.com>
11939
11940         * gst/rtp/README:
11941         * gst/rtp/gstrtpilbcdepay.c:
11942         * gst/rtp/gstrtpilbcpay.c:
11943         * gst/rtp/gstrtpmp4gdepay.c:
11944         * gst/rtp/gstrtpmp4gpay.c:
11945         * gst/rtp/gstrtpspeexdepay.c:
11946         * gst/rtp/gstrtpspeexpay.c:
11947         * gst/rtp/gstrtpsv3vdepay.c:
11948         * gst/rtp/gstrtptheoradepay.c:
11949         * gst/rtp/gstrtptheorapay.c:
11950         * gst/rtp/gstrtpvorbisdepay.c:
11951         * gst/rtp/gstrtpvorbispay.c:
11952         Fix case of encoding-name and key/value pairs to match the document.
11953         This is to make interoperation with SDP case-insensitive as required by
11954         the relevant RFCs.
11955
11956 2007-01-25  Wim Taymans  <wim@fluendo.com>
11957
11958         * configure.ac:
11959         Bump required -core/-base to CVS
11960
11961 2007-01-25  Wim Taymans  <wim@fluendo.com>
11962
11963         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
11964         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
11965         * gst/rtp/gstrtpL16pay.h:
11966         Fill up to MTU using adapter.
11967         Timestamp rtp packets.
11968
11969 2007-01-25  Edward Hervey  <edward@fluendo.com>
11970
11971         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
11972         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
11973         Use G_GSIZE_FORMAT in print statements for portability.
11974         Fixes build on macosx.
11975
11976 2007-01-24  Wim Taymans  <wim@fluendo.com>
11977
11978         * gst/rtp/Makefile.am:
11979         * gst/rtp/gstrtp.c: (plugin_init):
11980         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
11981         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
11982         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
11983         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
11984         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
11985         (gst_rtp_L16_depay_plugin_init):
11986         * gst/rtp/gstrtpL16depay.h:
11987         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
11988         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
11989         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
11990         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
11991         (gst_rtp_L16_pay_plugin_init):
11992         * gst/rtp/gstrtpL16pay.h:
11993         Port and enable raw audio payloader/depayloader. Needs a bit more work
11994         on the payloader side.
11995
11996 2007-01-24  Wim Taymans  <wim@fluendo.com>
11997
11998         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
11999         (gst_rtspsrc_stream_configure_transport),
12000         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12001         * gst/rtsp/gstrtspsrc.h:
12002         Only unblock the udp pads when we linked and activated them all.
12003         Fixes #395688.
12004
12005 2007-01-24  Wim Taymans  <wim@fluendo.com>
12006
12007         * gst/rtp/Makefile.am:
12008         * gst/rtp/gstrtp.c: (plugin_init):
12009         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12010         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12011         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12012         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12013         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12014         * gst/rtp/gstrtpac3depay.h:
12015         Added simple AC3 depayloader (RFC 4184).
12016
12017         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12018         Fix a leak.
12019
12020 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
12021
12022         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12023
12024         * gst/audiofx/Makefile.am:
12025         * gst/audiofx/audioamplify.c:
12026         (gst_audio_amplify_clipping_method_get_type),
12027         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12028         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12029         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12030         (gst_audio_amplify_set_caps),
12031         (gst_audio_amplify_transform_int_clip),
12032         (gst_audio_amplify_transform_int_wrap_negative),
12033         (gst_audio_amplify_transform_int_wrap_positive),
12034         (gst_audio_amplify_transform_float_clip),
12035         (gst_audio_amplify_transform_float_wrap_negative),
12036         (gst_audio_amplify_transform_float_wrap_positive),
12037         (gst_audio_amplify_transform_ip):
12038         * gst/audiofx/audioamplify.h:
12039         * gst/audiofx/audiofx.c: (plugin_init):
12040         Add new element "audioamplify". This allows scaling of raw audio
12041         samples, similar to the "volume" element, but provides different modes
12042         for clipping and allows unlimited amplification. It's mainly targeted
12043         for creative sound design and not as a replacement of the "volume"
12044         element. Fixes #397162
12045         * docs/plugins/Makefile.am:
12046         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12047         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12048         * docs/plugins/gst-plugins-good-plugins.args:
12049         * docs/plugins/inspect/plugin-audiofx.xml:
12050         Add docs for audioamplify and integrate them into the build system
12051         * tests/check/Makefile.am:
12052         * tests/check/elements/audioamplify.c: (setup_amplify),
12053         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12054         Add fairly extensive unit test suite for audioamplify
12055
12056 2007-01-24  Wim Taymans  <wim@fluendo.com>
12057
12058         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12059         Unblock pads after adding the pads to the element so that autopluggers
12060         get a change to link something. Possibly fixes #395688.
12061
12062 2007-01-24  Wim Taymans  <wim@fluendo.com>
12063
12064         * gst/rtp/gstrtpamrdepay.c:
12065         * gst/rtp/gstrtpgsmdepay.c:
12066         * gst/rtp/gstrtph263pdepay.c:
12067         * gst/rtp/gstrtph263ppay.c:
12068         * gst/rtp/gstrtph264depay.c:
12069         * gst/rtp/gstrtpilbcdepay.c:
12070         * gst/rtp/gstrtpmp2tdepay.c:
12071         * gst/rtp/gstrtpmp4gdepay.c:
12072         * gst/rtp/gstrtpmp4gpay.c:
12073         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12074         * gst/rtp/gstrtpmp4vpay.c:
12075         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12076         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12077         (gst_rtp_mpa_depay_process):
12078         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12079         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12080         * gst/rtp/gstrtppcmadepay.c:
12081         * gst/rtp/gstrtppcmudepay.c:
12082         * gst/rtp/gstrtpspeexdepay.c:
12083         * gst/rtp/gstrtpspeexpay.c:
12084         * gst/rtp/gstrtpsv3vdepay.c:
12085         * gst/rtp/gstrtptheoradepay.c:
12086         * gst/rtp/gstrtptheorapay.c:
12087         * gst/rtp/gstrtpvorbisdepay.c:
12088         * gst/rtp/gstrtpvorbispay.c:
12089         Fix caps with payload numbers.
12090         Add some fixed payload numbers to caps when possible.
12091
12092 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
12093
12094         reviewed by: Stefan Kost  <ensonic@users.sf.net>
12095
12096         * gst/audiofx/Makefile.am:
12097         * gst/audiofx/audiofx.c: (plugin_init):
12098         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12099         (gst_audio_invert_class_init), (gst_audio_invert_init),
12100         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12101         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12102         (gst_audio_invert_transform_float),
12103         (gst_audio_invert_transform_ip):
12104         * gst/audiofx/audioinvert.h:
12105         Add new audiofx element "audioinvert". This element swaps the upper
12106         and lower half of samples and can be used for example for a
12107         wide-stereo effect. Fixes #396057
12108         * docs/plugins/Makefile.am:
12109         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12110         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12111         * docs/plugins/gst-plugins-good-plugins.args:
12112         * docs/plugins/inspect/plugin-audiofx.xml:
12113         Add docs for the audioinvert element and add them to the build system.
12114         * tests/check/Makefile.am:
12115         * tests/check/elements/audioinvert.c: (setup_invert),
12116         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12117         Add unit test suite for the audioinvert element.
12118
12119 2007-01-23  Wim Taymans  <wim@fluendo.com>
12120
12121         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12122         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12123         Parse config params as string and int.
12124         Parse and use AU header length
12125
12126 2007-01-23  Wim Taymans  <wim@fluendo.com>
12127
12128         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12129         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12130         * gst/smpte/gstmask.c: (_gst_mask_register):
12131         * gst/smpte/gstmask.h:
12132         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12133         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12134         (gst_smpte_paint_triangle_clock):
12135         constify some static structs.
12136         Don't update the mask if nothing changed to the params.
12137         Make sure we never draw outside of the picture. Fixes #398325.
12138
12139 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
12140
12141         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12142           Error out properly when pull_range fails while we're reading the
12143           headers, instead of just pausing the task silently. Fixes #399338.
12144
12145 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
12146
12147         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12148           Some more sanity checks to make sure the input formats match and the
12149           input pads are actually negotiated, in case someone tries to feed
12150           buffers from fakesrc or filesrc. Fixes #398299.
12151           Also const-ify an array, just because we can.
12152
12153 2007-01-19  Edward Hervey  <edward@fluendo.com>
12154
12155         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12156         Ignore previous commit, that was only valid for widths and heights
12157         that are multiples of 4.
12158         Copy over size/stride macros from jpegdec. This allows the element
12159         to work with any width,height...
12160         ... but puts in evidence that the actual transformations only work
12161         with width/height that are multiples of 4.
12162
12163 2007-01-19  Edward Hervey  <edward@fluendo.com>
12164
12165         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12166         Allocate buffers of the right size.
12167         The proper size of a I420 buffer in bytes is:
12168         
12169             width * height * 3
12170             ------------------
12171                     2
12172
12173 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12174
12175         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12176           Proxy getcaps on sink pads too, so that we either end up with the
12177           same dimensions on all pads or error out if that's not possible
12178           (seems to work even!). Fixes #398086, I think.
12179
12180 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
12181
12182         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12183         * docs/plugins/gst-plugins-good-plugins.args:
12184         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12185           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12186           fix integer properties with -1 as minimum value.
12187
12188         * docs/plugins/inspect/plugin-1394.xml:
12189         * docs/plugins/inspect/plugin-aasink.xml:
12190         * docs/plugins/inspect/plugin-alaw.xml:
12191         * docs/plugins/inspect/plugin-alpha.xml:
12192         * docs/plugins/inspect/plugin-alphacolor.xml:
12193         * docs/plugins/inspect/plugin-annodex.xml:
12194         * docs/plugins/inspect/plugin-apetag.xml:
12195         * docs/plugins/inspect/plugin-audiofx.xml:
12196         * docs/plugins/inspect/plugin-auparse.xml:
12197         * docs/plugins/inspect/plugin-autodetect.xml:
12198         * docs/plugins/inspect/plugin-avi.xml:
12199         * docs/plugins/inspect/plugin-cacasink.xml:
12200         * docs/plugins/inspect/plugin-cairo.xml:
12201         * docs/plugins/inspect/plugin-cdio.xml:
12202         * docs/plugins/inspect/plugin-cutter.xml:
12203         * docs/plugins/inspect/plugin-debug.xml:
12204         * docs/plugins/inspect/plugin-dv.xml:
12205         * docs/plugins/inspect/plugin-efence.xml:
12206         * docs/plugins/inspect/plugin-effectv.xml:
12207         * docs/plugins/inspect/plugin-esdsink.xml:
12208         * docs/plugins/inspect/plugin-flac.xml:
12209         * docs/plugins/inspect/plugin-flxdec.xml:
12210         * docs/plugins/inspect/plugin-gconfelements.xml:
12211         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12212         * docs/plugins/inspect/plugin-goom.xml:
12213         * docs/plugins/inspect/plugin-halelements.xml:
12214         * docs/plugins/inspect/plugin-icydemux.xml:
12215         * docs/plugins/inspect/plugin-id3demux.xml:
12216         * docs/plugins/inspect/plugin-jpeg.xml:
12217         * docs/plugins/inspect/plugin-level.xml:
12218         * docs/plugins/inspect/plugin-matroska.xml:
12219         * docs/plugins/inspect/plugin-mulaw.xml:
12220         * docs/plugins/inspect/plugin-multipart.xml:
12221         * docs/plugins/inspect/plugin-navigationtest.xml:
12222         * docs/plugins/inspect/plugin-ossaudio.xml:
12223         * docs/plugins/inspect/plugin-png.xml:
12224         * docs/plugins/inspect/plugin-rtp.xml:
12225         * docs/plugins/inspect/plugin-rtsp.xml:
12226         * docs/plugins/inspect/plugin-shout2send.xml:
12227         * docs/plugins/inspect/plugin-smpte.xml:
12228         * docs/plugins/inspect/plugin-speex.xml:
12229         * docs/plugins/inspect/plugin-taglib.xml:
12230         * docs/plugins/inspect/plugin-udp.xml:
12231         * docs/plugins/inspect/plugin-videobalance.xml:
12232         * docs/plugins/inspect/plugin-videobox.xml:
12233         * docs/plugins/inspect/plugin-videoflip.xml:
12234         * docs/plugins/inspect/plugin-videomixer.xml:
12235         * docs/plugins/inspect/plugin-wavenc.xml:
12236         * docs/plugins/inspect/plugin-wavparse.xml:
12237         * docs/plugins/inspect/plugin-ximagesrc.xml:
12238           Update to CVS.
12239
12240 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
12241
12242         Patch by: Sebastian Dröge <slomo circular-chaos org>
12243
12244         * gst/audiofx/audiopanorama.c:
12245           Fix doc section name (Fixes #397946)
12246
12247 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
12248
12249         * sys/v4l2/gstv4l2object.c:
12250         (gst_v4l2_object_install_properties_helper),
12251         (gst_v4l2_object_set_property_helper),
12252         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12253         * sys/v4l2/gstv4l2object.h:
12254         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12255         (gst_v4l2src_init), (gst_v4l2src_set_property),
12256         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12257         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12258         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12259         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12260         (gst_v4l2src_capture_deinit):
12261           Fix EIO handing when capturing. Add new property to specify the number of
12262           buffers to enque (and remove the borked num-buffers usage).
12263
12264 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
12265
12266         Patch by: Sebastian Dröge <slomo circular-chaos org>
12267
12268         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12269         (gst_audio_panorama_set_process_function):
12270           Use a function array for process methods, add more docs and define the
12271           startindex of enums.
12272
12273 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
12274
12275         Patch by: Mark Nauwelaerts <manauw at skynet be>
12276
12277         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12278         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12279         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12280         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12281         (gst_avi_mux_riff_get_avi_header),
12282         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12283         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12284         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12285         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12286         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12287         (gst_avi_mux_change_state):
12288         * gst/avi/gstavimux.h:
12289         * tests/check/elements/avimux.c: (teardown_src_pad):
12290           Add support for more than one audio stream; write better AVIX
12291           header; refactor code a bit; don't announce vorbis caps on our audio
12292           sink pads since we don't support it anyway. Closes #379298.
12293
12294 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
12295
12296         Patch by: Sebastian Dröge <slomo circular-chaos org>
12297
12298         * gst/audiofx/audiopanorama.c:
12299         (gst_audio_panorama_method_get_type),
12300         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12301         (gst_audio_panorama_set_process_function),
12302         (gst_audio_panorama_set_property),
12303         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12304         (gst_audio_panorama_transform_m2s_int_simple),
12305         (gst_audio_panorama_transform_s2s_int_simple),
12306         (gst_audio_panorama_transform_m2s_float_simple),
12307         (gst_audio_panorama_transform_s2s_float_simple):
12308         * gst/audiofx/audiopanorama.h:
12309           Add 'method' property and provide a simple (non-psychoacustic)
12310           processing method (#394859).
12311
12312         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12313         (panorama_suite):
12314           Tests for new method.
12315
12316 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
12317
12318         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12319         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12320           Set correct caps on outgoing pulled buffers, or things blow up
12321           after recent core changes.
12322
12323 2007-01-11  Wim Taymans  <wim@fluendo.com>
12324
12325         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12326
12327         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12328         (gst_multipart_mux_request_new_pad),
12329         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12330         (gst_multipart_mux_change_state):
12331         Return FLOW errors ASAP. Fixes #394977.
12332         Misc cleanups.
12333
12334 2007-01-11  Wim Taymans  <wim@fluendo.com>
12335
12336         Patch by: Lutz Mueller <lutz at topfrose dot de>
12337
12338         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12339         Check for stream pad before activating. 
12340
12341 2007-01-10  Wim Taymans  <wim@fluendo.com>
12342
12343         Patch by: Peter Kjellerstedt  <pkj at axis com>
12344
12345         * gst/rtsp/COPYING.MIT:
12346         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12347         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12348         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12349         (gst_rtspsrc_stream_configure_transport),
12350         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12351         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12352         (gst_rtspsrc_parse_methods),
12353         (gst_rtspsrc_create_transports_string),
12354         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12355         (gst_rtspsrc_open), (gst_rtspsrc_close):
12356         * gst/rtsp/gstrtspsrc.h:
12357         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12358         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12359         (parse_request_line), (parse_line), (rtsp_connection_read),
12360         (rtsp_connection_close):
12361         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12362         (rtsp_method_as_text), (rtsp_header_as_text),
12363         (rtsp_status_as_text), (rtsp_find_header_field),
12364         (rtsp_find_method):
12365         * gst/rtsp/rtspdefs.h:
12366         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12367         (rtsp_ext_wms_configure_stream):
12368         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12369         (rtsp_message_new_request), (rtsp_message_init_request),
12370         (rtsp_message_new_response), (rtsp_message_init_response),
12371         (rtsp_message_init_data), (rtsp_message_unset),
12372         (rtsp_message_free), (rtsp_message_add_header),
12373         (rtsp_message_get_header), (rtsp_message_set_body),
12374         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12375         * gst/rtsp/rtspmessage.h:
12376         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12377         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12378         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12379         (sdp_message_dump):
12380         Allow url to be NULL to be able to use it for server connections.
12381         Can now send responses as well as requests.
12382         No longer hangs in an endless loop if EOF is received.
12383         Can now convert a status code to a text string.
12384         Return RTSP_HDR_INVALID for unknown headers.
12385         Return RTSP_INVALID for unknown methods.
12386         Copy CSeq and Session headers from the request.
12387         Only free memory corresponding to the currently set message type.
12388         Added const to function arguments as appropriate.
12389         Avoid a compiler warning when initializing nmedia.
12390         Use guint rather than gint to avoid compiler warnings.
12391         Fix crasher in wms extension.
12392         Factor out stream setup from open_connection.
12393         Delay activation of streams when actual data is received from the
12394         server, this prepares us to do proper protocol switching.
12395         Added new license.
12396         Fixes #380895.
12397
12398
12399 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
12400
12401         Patch by: Sebastian Dröge <slomo ubuntu com>
12402
12403         * docs/plugins/Makefile.am:
12404         * gst/audiofx/audiopanorama.c:
12405           Some small docs fixes (#394851).
12406
12407 2007-01-09  Wim Taymans  <wim@fluendo.com>
12408
12409         * gst/avi/gstavidemux.c:
12410         Fix docs.
12411
12412 2007-01-09  Wim Taymans  <wim@fluendo.com>
12413
12414         * gst/rtp/Makefile.am:
12415         * gst/rtp/gstrtp.c: (plugin_init):
12416         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12417         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12418         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12419         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12420         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12421         * gst/rtp/gstrtpmpvdepay.h:
12422           Added RFC 2250 MPEG Video Depayloader.
12423
12424         * gst/rtp/gstrtpL16depay.h:
12425         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12426         (gst_rtp_h263p_depay_process):
12427         Fix Header file. Small cleanups.
12428
12429         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12430         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12431         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12432         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12433         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12434         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12435         (gst_rtp_mp4v_depay_change_state):
12436         Remove usused code. Remove Adapter from state Change. Added debug.
12437
12438         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12439         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12440         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12441         * gst/rtp/gstrtpmpadepay.h:
12442         Subclass base depayloader.
12443         Added debug.
12444         Support static payload type assignment as well.
12445
12446         * gst/rtp/gstrtpmpapay.c:
12447         Fix caps.
12448
12449 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
12450
12451         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12452
12453         * ext/jpeg/gstjpegdec.c:
12454         * ext/jpeg/gstjpegenc.c:
12455         * ext/jpeg/smokecodec.c:
12456           These libjpeg callbacks should return a 'boolean' (unsigned char
12457           apparently) and not a 'gboolean' (which maps to gint). Fixes
12458           warnings when compiling with MingW (#393427).
12459
12460         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12461           Use ioctlsocket on win32.
12462
12463         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12464           Some printf format fixes for win32.
12465
12466 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
12467
12468         * gst/cutter/gstcutter.c: (gst_cutter_chain):
12469           Use gst_guint64_to_gdouble for conversion.
12470         * win32/vs6/libgstmatroska.dsp:
12471           Add zlib to the link.
12472         * win32/vs6/libgstvideobox.dsp:
12473           Update liboil library name (project is linked to 
12474           liboil-0.3-0.lib now).
12475           
12476 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
12477
12478         * gst/matroska/Makefile.am:
12479           If zlib is available and used, we must link it explicitly for
12480           things to work on MingW (fixes #392855).
12481
12482 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
12483
12484         * ext/esd/esdsink.c: (gst_esdsink_delay):
12485           Don't return bogus values when esd_get_delay() fails for some
12486           reason (#392189).
12487
12488 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12489
12490         * sys/ximage/gstximagesrc.c: (composite_pixel):
12491           Fix presumably copy'n'pasto for 16bpp depth.
12492
12493 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
12494
12495         * gst/matroska/matroska-mux.c:
12496         (gst_matroska_mux_audio_pad_setcaps):
12497           The "signed" field in audio caps is of boolean type, trying to use
12498           gst_structure_get_int() to extract it will fail. Fixing this makes
12499           matroskamux accept raw audio input (#387121) (use at your own risk
12500           though, due to the matroska spec being not entirely useful in this
12501           respect).
12502           Also fix up raw audio structures in template caps so that they
12503           represent what our setcaps function will actually accept, so that
12504           converters know what to convert to.
12505           Finally, don't fail if there isn't an "endianness" field in 8-bit
12506           PCM caps.
12507
12508 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
12509
12510         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12511         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12512         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12513         (teardown_cmmldec):
12514         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12515         (teardown_cmmlenc):
12516         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12517           reapply consistent pad (de)activation
12518
12519 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12520
12521         * configure.ac:
12522         Back to CVS
12523
12524         * gst-plugins-good.doap:
12525         Add 0.10.5 doap entry
12526
12527 === release 0.10.5 ===
12528
12529 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
12530
12531         * configure.ac:
12532           releasing 0.10.5, "The Path of Thorns"
12533
12534 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12535
12536         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12537         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12538         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12539         (teardown_cmmldec):
12540         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12541         (teardown_cmmlenc):
12542         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12543           revert my freeze breakage
12544
12545 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
12546
12547         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12548         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12549         * tests/check/elements/cmmldec.c: (setup_cmmldec),
12550         (teardown_cmmldec):
12551         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12552         (teardown_cmmlenc):
12553         * tests/check/elements/level.c: (setup_level), (cleanup_level):
12554           consistent pad (de)activation
12555
12556 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12557
12558         * configure.ac:
12559         * ext/Makefile.am:
12560         Disable LADPSA, as it has moved to the -bad module for the duration.
12561
12562 2006-12-18  Wim Taymans  <wim@fluendo.com>
12563
12564         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12565         (gst_signal_processor_event):
12566         Reset flow_state back to _OK after a flush stop so that we exit our
12567         error state after the flush. Fixes #374213
12568
12569 2006-12-16  David Schleef  <ds@schleef.org>
12570
12571         * sys/osxvideo/osxvideosink.h:
12572         * sys/osxvideo/osxvideosink.m:
12573           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
12574
12575 2006-12-16  David Schleef  <ds@schleef.org>
12576
12577         Patch by: Vijay Santhanam <vijay santhanam gmail com>
12578
12579         * sys/osxvideo/Makefile.am:
12580         * sys/osxvideo/osxvideosink.h:
12581         * sys/osxvideo/osxvideosink.m:
12582           Preliminary patch for porting osxvideosink
12583
12584 2006-12-16  Wim Taymans  <wim@fluendo.com>
12585
12586         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12587
12588         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12589         (gst_videomixer_set_master_geometry),
12590         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12591         (gst_videomixer_reset), (gst_videomixer_init),
12592         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12593         (gst_videomixer_release_pad), (gst_videomixer_collected),
12594         (gst_videomixer_change_state):
12595         Introduce some locking around the videomixer state so that it does not
12596         crash when adding/removing pads. Fixes #383043.
12597
12598 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12599
12600         * configure.ac:
12601           Make sure libcaca can actually be used instead of just checking for
12602           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12603           cross-compiling (fixes #384587).
12604
12605 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
12606
12607         * Makefile.am:
12608         * gst-plugins-good.doap:
12609         * gst-plugins-good.spec.in:
12610           adding doap file
12611
12612 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12613
12614         * configure.ac:
12615           libflac-1.1.3 changed API again, but we can't build against it yet,
12616           so make sure our check doesn't use libflac-1.1.3 and add a comment
12617           to this effect.
12618
12619 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
12620
12621         * gst/effectv/gstquark.c: (gst_quarktv_transform),
12622         (gst_quarktv_planetable_clear):
12623           Add some NULL pointer checks (possibly related to #385623).
12624
12625 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12626
12627         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12628         (gst_tag_demux_chain):
12629         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12630           In streaming mode, if the first buffer we get doesn't have an
12631           offset, fix it up to be 0, otherwise trimming won't work later on
12632           and we'll be typefinding application/x-id3, which may result in
12633           decodebin plugging an endless number of id3demux elements as a
12634           consequence. Fixes #385031.
12635           
12636 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12637
12638         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12639           Ignore the buffer_time the sound device reports. Turns out it is 
12640           sometimes completely bogus and we're better off without it.
12641
12642 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12643
12644         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12645         (gst_matroska_demux_video_caps):
12646         * gst/matroska/matroska-ids.c:
12647         (gst_matroska_track_init_video_context):
12648         * gst/matroska/matroska-ids.h:
12649           Try harder to extract the framerate for video tracks correctly and
12650           save it directly instead of converting it back and forth a few
12651           times. Mostly makes a difference for very small framerates (<1).
12652           Fixes #380199.
12653
12654 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12655
12656         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12657         (gst_gconf_audio_src_dispose), (do_toggle_element):
12658         * ext/gconf/gstgconfaudiosrc.h:
12659           Remove gconf notify hook when the gconfaudiosrc element is
12660           destroyed, otherwise the callback may be called on an
12661           already-destroyed instance and bad things happen. Should fix
12662           #378184.
12663           Also ignore gconf key changes when the source is already running.
12664
12665 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
12666
12667         Patch by: Sebastian Dröge  <mail at slomosnail de>
12668
12669         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12670           We need to be able to read and parse any possible floating point string
12671           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12672           will parse the former only in certain locales though, so we really need
12673           to canonicalise the separator to '.' and then use g_ascii_strtod() to
12674           make sure we can parse either version at all times.
12675           Fixes #382982 for real.
12676
12677 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12678
12679         * sys/sunaudio/gstsunaudiomixerctrl.c:
12680         * sys/sunaudio/gstsunaudiosrc.c:
12681
12682         Use the sunaudio debug category.
12683
12684         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12685         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12686         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12687         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12688         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12689         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12690         (gst_sunaudiosink_reset):
12691         * sys/sunaudio/gstsunaudiosink.h:
12692
12693         Uses the sunaudio debug category for all debug output
12694         Implements the _delay() callback to synchronise video playback better
12695         Change the segtotal and segsize values back to the parent class 
12696           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
12697           respectively)
12698         Measure the samples written to the device vs. played.
12699         Keep track of segments in the device by writing empty eof frames, and
12700         sleep using a GCond when we get too far ahead and risk overrunning the
12701         sink's ringbuffer.
12702
12703         Fixes: #360673
12704
12705 2006-12-08  Wim Taymans  <wim@fluendo.com>
12706
12707         Patch by: Sebastian Dröge  <mail at slomosnail de >
12708
12709         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12710         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12711         * gst/audiofx/audiopanorama.h:
12712         Fix audiopanorame with float samples. Fixes #383726.
12713
12714 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12715
12716         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12717         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12718         (gst_sunaudiosrc_reset):
12719
12720         Implement reset functions to unblock the src/sink more quickly on 
12721         state change requests.
12722         Patch by: Brian Cameron <brian dot cameron at sun com>
12723
12724 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12725
12726         * sys/sunaudio/gstsunaudiomixer.c:
12727         (gst_sunaudiomixer_change_state):
12728         Construct the correct mixer device name when the AUDIODEV env var
12729         is set.
12730
12731         Patch by: Jerry Tan <jerry.tan at sun dot com>
12732         Fixes: #383596
12733
12734 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
12735
12736         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12737         Apply patch to open the mixer control and set the MULTIPLE_OPEN
12738         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
12739         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
12740         Patch by: Jerry Tan <jerry.tan at sun dot com>
12741         Fixes: #349015
12742
12743 2006-12-07  Wim Taymans  <wim@fluendo.com>
12744
12745         * gst/smpte/gstmask.h:
12746         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12747         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12748         (gst_smpte_collected), (gst_smpte_set_property),
12749         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12750         * gst/smpte/gstsmpte.h:
12751         Port to 0.10 some more. 
12752         Added duration property to specify the duration of the transition.
12753         Make framerate a fraction.
12754         Deprecate fps property, we only use negotiated fps.
12755         Added docs.
12756         Fix collectpad usage.
12757         Reset state in READY.
12758         Send NEWSEGMENT event.
12759         Fix racy updates of object properties.
12760         Added debug category.
12761         Fixes #383323.
12762
12763 2006-12-06  Wim Taymans  <wim@fluendo.com>
12764
12765         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12766
12767         * gst/videomixer/videomixer.c:
12768         (gst_videomixer_set_master_geometry),
12769         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12770         Don't reset xpos and ypos in the setcaps function because causes
12771         unexpected behaviour.
12772         Fixes #382179.
12773
12774 2006-12-06  Wim Taymans  <wim@fluendo.com>
12775
12776         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12777         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12778         Keep track of the buffer timestamp in the collectdata member instead
12779         of modifying the buffer without making the metadata writable first.
12780         Fixes #382277.
12781
12782 2006-12-06  Wim Taymans  <wim@fluendo.com>
12783
12784         Patch by: Rob Taylor <robtaylor at floopily dot org>
12785
12786         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12787         If using multicast in udpsrc, bind to the multicast address rather than
12788         IN_ADDR_ANY.
12789         This allows the simultanous use of multiple udpsrcs listening on
12790         different multicat addresses. Without this all udpsrcs will receive all
12791         packets from all subscribed multicast addresses.
12792         Fixes #383001.
12793
12794 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12795
12796         * ext/taglib/gstid3v2mux.cc:
12797         Don't attempt to write a NULL frame into the ID3 tag set when the 
12798         createFrame method returned NULL.
12799         Fixes: #381857
12800         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12801
12802 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
12803
12804         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12805         Use g_strtod() instead of sscanf to parse doubles, so that it will
12806         try parsing in the C locale if the current locale fails.
12807         Fixes: #382982
12808         Patch by: Sebastian Dröge  <mail at slomosnail de >
12809
12810 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
12811
12812         * win32/MANIFEST:
12813         Fix compilation on win32 under VS8
12814         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
12815         Partially fixes #381175
12816
12817 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12818
12819         * gst/avi/gstavimux.c:
12820           accept all mpegversions,fixes #380825
12821           spotted by: Jerome Alet  
12822
12823 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
12824
12825         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12826         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
12827         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
12828         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
12829           cleanup the error message a bit more
12830
12831 2006-11-28  Wim Taymans  <wim@fluendo.com>
12832
12833         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
12834         Fix width and height properties.
12835
12836         * ext/libcaca/gstcacasink.h:
12837         Fix compilation on newer libcaca that require us to include a new
12838         header. Fixes #379918.
12839
12840 2006-11-28  Wim Taymans  <wim@fluendo.com>
12841
12842         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
12843         * gst/rtsp/gstrtspsrc.h:
12844         * gst/rtsp/rtspext.h:
12845         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
12846         (rtsp_ext_wms_get_context):
12847         Add method so that extensions can choose to disable the setup of
12848         a stream.
12849         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
12850
12851 2006-11-27  Wim Taymans  <wim@fluendo.com>
12852
12853         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12854
12855         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12856         Push header in a separate buffer instead of memcpy:ing all data.
12857         Change LF => CRLF in headers.
12858         Move trailing LF to header. Fixes #379792.
12859
12860 2006-11-27  Wim Taymans  <wim@fluendo.com>
12861
12862         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
12863         Small buffer overflow fix and improve debugging.
12864
12865 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12866
12867         * ext/esd/esdmon.h:
12868         * ext/esd/esdsink.h:
12869           remove obsolete _factory_init protos
12870
12871 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
12872
12873         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
12874         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
12875         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
12876         (gst_avi_demux_read_subindexes_push),
12877         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
12878         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
12879         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
12880         (gst_avi_demux_massage_index),
12881         (gst_avi_demux_calculate_durations_from_index),
12882         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
12883         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
12884         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
12885           remove dead code, tweak debugs statements, add comments, use
12886           _uint64_scale instead _uint64_scale_int when using guint64 values,
12887           small optimizations, reflow some error handling
12888
12889 2006-11-22  Edward Hervey  <edward@fluendo.com>
12890
12891         * po/.cvsignore:
12892         We never put .pot files in cvs. Let's ignore them all.
12893
12894 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12895
12896         * po/POTFILES.in:
12897           ... but better exclude files that aren't disted.
12898
12899 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12900
12901         * po/POTFILES.in:
12902           Add v4l2 source files to list of files with translations, so the
12903           strings are actually extracted (however bad they still may be).
12904
12905 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12906
12907         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
12908           Minor clean-ups: const-ify static array, remove trailing comma from
12909           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
12910
12911 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
12912
12913         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
12914         Make sure that g_free always gets called on the same pointer that was 
12915         returned by g_malloc.  Fixes #376594.
12916         Do not leak memory if decompressed size is wrong.
12917         Remove unneeded check of return value of g_malloc.
12918         Patch by: René Stadler <mail@renestadler.de>
12919
12920 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
12921
12922         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
12923           Add missing curly brackets.
12924
12925 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
12926
12927         * sys/v4l2/v4l2src_calls.c:
12928         Fix capture_deinit.
12929
12930 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
12931
12932         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
12933         (gst_matroska_mux_request_new_pad):
12934           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
12935
12936         * tests/check/elements/matroskamux.c: (setup_src_pad),
12937         (setup_sink_pad), (GST_START_TEST):
12938         Activate pads before using them.
12939
12940 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
12941
12942         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
12943           Initialise variable to get rid of bogus compiler warning.
12944
12945 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
12946
12947         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
12948
12949         * gst/rtp/gstrtph263pay.c:
12950         * gst/rtp/gstrtph263pdepay.c:
12951         * gst/rtp/gstrtph263ppay.c:
12952           Specify H.263 variant and version in the caps (fixes #361637)
12953
12954 2006-11-15  Wim Taymans  <wim@fluendo.com>
12955
12956         * gst/rtsp/rtspconnection.c: (read_body):
12957         Don't set a data pointer to NULL and a size > 0 when we deal
12958         with empty packets.
12959
12960         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
12961         (rtsp_message_init_response), (rtsp_message_init_data),
12962         (rtsp_message_unset), (rtsp_message_free),
12963         (rtsp_message_take_body):
12964         Check that we can't create invalid empty packets. 
12965
12966 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
12967
12968         Patch by: Mark Nauwelaerts  <manauw at skynet be>
12969
12970         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
12971         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
12972         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
12973         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
12974         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
12975         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
12976         * gst/matroska/matroska-mux.h:
12977           Add basic tag writing support; implement releasing pads (#374658).
12978
12979 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
12980
12981         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12982         (gst_matroska_demux_audio_caps):
12983           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
12984
12985 2006-11-14  David Schleef  <ds@schleef.org>
12986
12987         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
12988
12989 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
12990
12991         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
12992
12993         * win32/vs8/gst-plugins-good.sln:
12994         * win32/vs8/libgst1394.vcproj:
12995         * win32/vs8/libgstaasink.vcproj:
12996         * win32/vs8/libgstalaw.vcproj:
12997         * win32/vs8/libgstalpha.vcproj:
12998         * win32/vs8/libgstalphacolor.vcproj:
12999         * win32/vs8/libgstannodex.vcproj:
13000         * win32/vs8/libgstapetag.vcproj:
13001         * win32/vs8/libgstaudiofx.vcproj:
13002         * win32/vs8/libgstauparse.vcproj:
13003         * win32/vs8/libgstautodetect.vcproj:
13004         * win32/vs8/libgstavi.vcproj:
13005         * win32/vs8/libgstcacasink.vcproj:
13006         * win32/vs8/libgstcdio.vcproj:
13007         * win32/vs8/libgstcutter.vcproj:
13008         * win32/vs8/libgstdv.vcproj:
13009         * win32/vs8/libgsteffectv.vcproj:
13010         * win32/vs8/libgstflac.vcproj:
13011         * win32/vs8/libgstflxdec.vcproj:
13012         * win32/vs8/libgstgoom.vcproj:
13013         * win32/vs8/libgsticydemux.vcproj:
13014         * win32/vs8/libgstid3demux.vcproj:
13015         * win32/vs8/libgstjpeg.vcproj:
13016         * win32/vs8/libgstladspa.vcproj:
13017         * win32/vs8/libgstlevel.vcproj:
13018         * win32/vs8/libgstmatroska.vcproj:
13019         * win32/vs8/libgstmikmod.vcproj:
13020         * win32/vs8/libgstmng.vcproj:
13021         * win32/vs8/libgstmonoscope.vcproj:
13022         * win32/vs8/libgstmulaw.vcproj:
13023         * win32/vs8/libgstmultipart.vcproj:
13024         * win32/vs8/libgstpng.vcproj:
13025         * win32/vs8/libgstrtp.vcproj:
13026         * win32/vs8/libgstrtsp.vcproj:
13027         * win32/vs8/libgstshout2.vcproj:
13028         * win32/vs8/libgstsmpte.vcproj:
13029         * win32/vs8/libgstspeex.vcproj:
13030         * win32/vs8/libgsttaglib.vcproj:
13031         * win32/vs8/libgstudp.vcproj:
13032         * win32/vs8/libgstvideobalance.vcproj:
13033         * win32/vs8/libgstvideobox.vcproj:
13034         * win32/vs8/libgstvideoflip.vcproj:
13035         * win32/vs8/libgstvideomixer.vcproj:
13036         * win32/vs8/libgstwavenc.vcproj:
13037         * win32/vs8/libgstwavparse.vcproj:
13038           Make end-of-line returns unixy, so that when the files are checked
13039           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13040           Hopefully fixes #366492.
13041
13042 2006-11-14  Wim Taymans  <wim@fluendo.com>
13043
13044         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13045         Disable init_frames delay timestamp adjustment, it does not
13046         seem to be needed at all. Fixes #369621.
13047
13048 2006-11-13  Wim Taymans  <wim@fluendo.com>
13049
13050         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13051
13052         * gst/videomixer/videomixer.c:
13053         (gst_videomixer_set_master_geometry),
13054         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13055         (gst_videomixer_collect_free), (gst_videomixer_reset),
13056         (gst_videomixer_init), (gst_videomixer_finalize),
13057         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13058         (gst_videomixer_collected), (gst_videomixer_change_state):
13059         Fix memleak by unref'ing collectpads instance (when finalizing)
13060         Implement releasing a request pad. Fixes #374479.
13061
13062 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
13063
13064         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
13065
13066         * win32/vs8/gst-plugins-good.sln:
13067         * win32/vs8/libgst1394.vcproj:
13068         * win32/vs8/libgstaasink.vcproj:
13069         * win32/vs8/libgstalaw.vcproj:
13070         * win32/vs8/libgstalpha.vcproj:
13071         * win32/vs8/libgstalphacolor.vcproj:
13072         * win32/vs8/libgstannodex.vcproj:
13073         * win32/vs8/libgstapetag.vcproj:
13074         * win32/vs8/libgstaudiofx.vcproj:
13075         * win32/vs8/libgstauparse.vcproj:
13076         * win32/vs8/libgstautodetect.vcproj:
13077         * win32/vs8/libgstavi.vcproj:
13078         * win32/vs8/libgstcacasink.vcproj:
13079         * win32/vs8/libgstcdio.vcproj:
13080         * win32/vs8/libgstcutter.vcproj:
13081         * win32/vs8/libgstdv.vcproj:
13082         * win32/vs8/libgsteffectv.vcproj:
13083         * win32/vs8/libgstflac.vcproj:
13084         * win32/vs8/libgstflxdec.vcproj:
13085         * win32/vs8/libgstgoom.vcproj:
13086         * win32/vs8/libgsticydemux.vcproj:
13087         * win32/vs8/libgstid3demux.vcproj:
13088         * win32/vs8/libgstjpeg.vcproj:
13089         * win32/vs8/libgstladspa.vcproj:
13090         * win32/vs8/libgstlevel.vcproj:
13091         * win32/vs8/libgstmatroska.vcproj:
13092         * win32/vs8/libgstmikmod.vcproj:
13093         * win32/vs8/libgstmng.vcproj:
13094         * win32/vs8/libgstmonoscope.vcproj:
13095         * win32/vs8/libgstmulaw.vcproj:
13096         * win32/vs8/libgstmultipart.vcproj:
13097         * win32/vs8/libgstpng.vcproj:
13098         * win32/vs8/libgstrtp.vcproj:
13099         * win32/vs8/libgstrtsp.vcproj:
13100         * win32/vs8/libgstshout2.vcproj:
13101         * win32/vs8/libgstsmpte.vcproj:
13102         * win32/vs8/libgstspeex.vcproj:
13103         * win32/vs8/libgsttaglib.vcproj:
13104         * win32/vs8/libgstudp.vcproj:
13105         * win32/vs8/libgstvideobalance.vcproj:
13106         * win32/vs8/libgstvideobox.vcproj:
13107         * win32/vs8/libgstvideoflip.vcproj:
13108         * win32/vs8/libgstvideomixer.vcproj:
13109         * win32/vs8/libgstwavenc.vcproj:
13110         * win32/vs8/libgstwavparse.vcproj:
13111           Add VS8 project files (note that many of the plugins in ext are
13112           disabled by default). Fixes #366492.
13113
13114 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
13115
13116         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13117           we do not translate debug messages
13118
13119 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
13120
13121         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13122           fix categorisation, make short desc more explicit, remove unused code
13123           Fixes #372021
13124
13125 2006-11-08  Wim Taymans  <wim@fluendo.com>
13126
13127         * gst/rtp/gstrtpL16depay.c:
13128         * gst/rtp/gstrtpamrdepay.c:
13129         * gst/rtp/gstrtpamrpay.c:
13130         * gst/rtp/gstrtpgsmdepay.c:
13131         * gst/rtp/gstrtph263pay.c:
13132         * gst/rtp/gstrtph263pdepay.c:
13133         * gst/rtp/gstrtph263ppay.c:
13134         * gst/rtp/gstrtph264depay.c:
13135         * gst/rtp/gstrtpmp2tdepay.c:
13136         * gst/rtp/gstrtpmp4gdepay.c:
13137         * gst/rtp/gstrtpmp4gpay.c:
13138         * gst/rtp/gstrtpmp4vdepay.c:
13139         * gst/rtp/gstrtpmp4vpay.c:
13140         * gst/rtp/gstrtpmpadepay.c:
13141         * gst/rtp/gstrtpmpapay.c:
13142         * gst/rtp/gstrtppcmadepay.c:
13143         * gst/rtp/gstrtppcmapay.c:
13144         * gst/rtp/gstrtppcmudepay.c:
13145         * gst/rtp/gstrtppcmupay.c:
13146         * gst/rtp/gstrtpspeexdepay.c:
13147         * gst/rtp/gstrtpspeexpay.c:
13148         * gst/rtp/gstrtpsv3vdepay.c:
13149         Fix element descriptions.
13150
13151 2006-11-08  Wim Taymans  <wim@fluendo.com>
13152
13153         * gst/rtp/gstrtpvorbisdepay.c:
13154         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13155         Fix description.
13156         Small cleanup in the payloader.
13157
13158 2006-11-08  Wim Taymans  <wim@fluendo.com>
13159
13160         * gst/rtp/Makefile.am:
13161         * gst/rtp/gstrtp.c: (plugin_init):
13162         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13163         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13164         (gst_rtp_theora_depay_finalize),
13165         (gst_rtp_theora_depay_parse_configuration),
13166         (gst_rtp_theora_depay_setcaps),
13167         (gst_rtp_theora_depay_switch_codebook),
13168         (gst_rtp_theora_depay_process),
13169         (gst_rtp_theora_depay_set_property),
13170         (gst_rtp_theora_depay_get_property),
13171         (gst_rtp_theora_depay_change_state),
13172         (gst_rtp_theora_depay_plugin_init):
13173         * gst/rtp/gstrtptheoradepay.h:
13174         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13175         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13176         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13177         (gst_rtp_theora_pay_init_packet),
13178         (gst_rtp_theora_pay_flush_packet),
13179         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13180         (gst_rtp_theora_pay_handle_buffer),
13181         (gst_rtp_theora_pay_plugin_init):
13182         * gst/rtp/gstrtptheorapay.h:
13183         Add theora pay/depayloaders.
13184
13185 2006-11-06  Wim Taymans  <wim@fluendo.com>
13186
13187         * gst/rtp/Makefile.am:
13188         We depend on gsttag to generate the vorbis comments.
13189
13190         * gst/rtp/gstrtpvorbisdepay.c:
13191         (gst_rtp_vorbis_depay_parse_configuration),
13192         (gst_rtp_vorbis_depay_setcaps),
13193         (gst_rtp_vorbis_depay_switch_codebook),
13194         (gst_rtp_vorbis_depay_process):
13195         * gst/rtp/gstrtpvorbisdepay.h:
13196         Parse configuration string in the depayloader.
13197         Implement selecting and switching to a new codebook.
13198         Receiving vorbis over RTP now works.
13199
13200         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13201         (gst_rtp_vorbis_pay_init_packet),
13202         (gst_rtp_vorbis_pay_finish_headers),
13203         (gst_rtp_vorbis_pay_handle_buffer):
13204         * gst/rtp/gstrtpvorbispay.h:
13205         Set timestamps on outgoing buffers and RTP packets.
13206         Fix configuration string, prepend number of Packet headers.
13207         Fix encoding of ident string.
13208         Add delivery-method to caps.
13209         Streaming vorbis over RTP now works.
13210
13211 2006-11-06  Wim Taymans  <wim@fluendo.com>
13212
13213         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13214         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13215         (gst_rtp_vorbis_pay_handle_buffer):
13216         * gst/rtp/gstrtpvorbispay.h:
13217         Generate a valid configuration string in the caps based on the
13218         vorbis headers.
13219
13220 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13221
13222         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13223         * ext/cdio/gstcdio.h:
13224         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13225           Move CD-TEXT utility function into common file so it can also be
13226           used by a future cdioparanoiasrc.
13227
13228 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
13229         
13230         * sys/v4l2/Makefile.am:
13231         * sys/v4l2/gstv4l2object.c:
13232         * sys/v4l2/gstv4l2src.c:
13233         * sys/v4l2/gstv4l2xoverlay.c:
13234         * sys/v4l2/v4l2_calls.c:
13235         * sys/v4l2/v4l2src_calls.c:
13236         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13237         xoverlay code that is still not implemented.
13238
13239 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13240
13241         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13242           We require a -base more recent than 0.10.9, so it's safe to use
13243           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13244
13245         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13246         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13247           Use _newsegment_full() now that we depend on a recent enough core.
13248
13249         * gst/wavparse/gstwavparse.c:
13250           Remove cruft that we don't need any longer now that we depend on
13251           a recent enough -base.
13252
13253 2006-10-31  Wim Taymans  <wim@fluendo.com>
13254
13255         * gst/rtp/Makefile.am:
13256         * gst/rtp/gstrtp.c: (plugin_init):
13257         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13258         (gst_rtpilbcpay_setcaps):
13259         Fix and activate ILBC pay and depayloaders. Fixes #368162.
13260
13261 2006-10-31  Wim Taymans  <wim@fluendo.com>
13262
13263         * ext/speex/gstspeexdec.c: (speex_dec_convert),
13264         (speex_dec_sink_event), (speex_dec_chain_parse_header):
13265         Some small cleanups, use _scale.
13266
13267 2006-10-31  Wim Taymans  <wim@fluendo.com>
13268
13269         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13270         Use higher precision scale function.
13271
13272 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
13273
13274         Patch by: Michal Benes  <michal dot benes at itonis tv>
13275
13276         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13277         (gst_matroska_demux_read_track_encodings),
13278         (gst_matroska_decode_buffer):
13279           Fix several issues with encoded/compressed/encrypted/signed tracks;
13280           also, remove superfluous newline characters from some debug
13281           statements. (#366155)
13282
13283 2006-10-30  Wim Taymans  <wim@fluendo.com>
13284
13285         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13286         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13287         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13288         (gst_smokedec_change_state):
13289         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13290         (gst_smokeenc_init), (gst_smokeenc_finalize),
13291         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13292         (gst_smokeenc_resync), (gst_smokeenc_chain),
13293         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13294         (gst_smokeenc_change_state):
13295         Various cleanups, capsnego and leak fixes.
13296
13297 2006-10-30  Wim Taymans  <wim@fluendo.com>
13298
13299         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13300
13301         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13302         Fix videomixer so that it can handle any combination of framerates.
13303         Fixes #367221.
13304
13305 2006-10-28  Wim Taymans  <wim@fluendo.com>
13306
13307         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13308         (gst_avi_demux_parse_file_header),
13309         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13310         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13311         (gst_avi_demux_chain):
13312         Fix position query for audio. also fixes timestamps in streaming
13313         mode and bug #364958.
13314         Small cleanups.
13315
13316 2006-10-27  Wim Taymans  <wim@fluendo.com>
13317
13318         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13319         * ext/libpng/gstpngenc.h:
13320         Fix strides. Fixes #364856.
13321         Cleanup capsnego.
13322         Set caps on outgoing buffers.
13323
13324 2006-10-18  Wim Taymans  <wim@fluendo.com>
13325
13326         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13327
13328         * gst/rtp/gstrtpgsmpay.c:
13329         * gst/rtp/gstrtph263pay.c:
13330         * gst/rtp/gstrtpmpapay.c:
13331         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13332         (gst_rtp_pcma_pay_handle_buffer):
13333         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13334         Add static payload numbers in addition to the dynamic ones.
13335         Fixes #361639.
13336
13337 2006-10-18  Wim Taymans  <wim@fluendo.com>
13338
13339         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13340         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13341         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13342         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13343         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13344         * gst/rtsp/rtspdefs.h:
13345         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13346         * gst/rtsp/rtspurl.h:
13347         Reuse already existing enum for lower transport.
13348         Add rtspt and rtspu protocols.
13349         Send redirect to rtspt when udp times out.
13350
13351 2006-10-18  Wim Taymans  <wim@fluendo.com>
13352
13353         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13354         (gst_wavparse_stream_data):
13355         Fix seeking some more, mostly for speed changes.
13356
13357 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
13358
13359         Patch by: Fredrik Persson  <frepe at bredband net>
13360
13361         * sys/v4l2/gstv4l2tuner.c:
13362         * sys/v4l2/gstv4l2tuner.h:
13363           Fix _set_channel(): remove useless g_object_notify() for "channel"
13364           property that doesn't exist any longer and therefore now also
13365           useless redirect (#338818).
13366
13367 2006-10-17  Wim Taymans  <wim@fluendo.com>
13368
13369         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13370         Some drivers do not support unsetting the non-blocking flag once the
13371         device is opened. In those cases, close/open the device in
13372         non-blocking mode. Fixes #362673.
13373
13374 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13375
13376         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13377         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13378         (gst_v4l2src_get_fps):
13379           dear stefan, framespersecond is not frameperiod, reverting but adding
13380           comment
13381
13382 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
13383
13384         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13385         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13386         (gst_v4l2src_get_fps):
13387           Numerator is numerator and denominator is denominator. Say that aloud
13388           5 times and retry after next beer.
13389
13390 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
13391
13392         Patch by: Josep Torra Valles  <josep at fluendo com>
13393
13394         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13395         * ext/esd/esdsink.c: (gst_esdsink_write):
13396         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13397         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13398         (gst_flac_dec_send_newsegment):
13399         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13400         (gst_flac_enc_tell_callback):
13401         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13402         (smokecodec_parse_header), (smokecodec_decode):
13403         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13404         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13405         * gst/goom/Makefile.am:
13406         * gst/goom/gstgoom.c:
13407         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13408         * gst/rtsp/gstrtspsrc.c:
13409         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13410         * gst/udp/gstudpsink.c:
13411         * gst/udp/gstudpsrc.c:
13412         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13413         * sys/sunaudio/gstsunaudiomixertrack.h:
13414           Fix a bunch of problems discovered by the Forte compiler, mostly type
13415           mixups and pointer arithmetics with void pointers. Fixes #362603.
13416
13417 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13418
13419         * ext/speex/gstspeex.c: (plugin_init):
13420         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13421         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13422         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13423         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13424         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13425         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13426         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13427         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13428         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13429         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13430         (gst_speex_enc_chain), (gst_speex_enc_get_property),
13431         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13432         * ext/speex/gstspeexenc.h:
13433           Miscellaneous clean-ups, among other things: speexenc => enc to
13434           enhance code readability; change speexenc => speex_enc; in chain
13435           function unref input buffer in case of error; take reference in
13436           event function; use boilerplate macro; use gst_pad_query_peer_*
13437           convenience functions.
13438
13439 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
13440
13441         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13442         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13443         (gst_speexenc_set_header_on_caps):
13444           Fix some mem leaks.
13445
13446 2006-10-11  Wim Taymans  <wim@fluendo.com>
13447
13448         * gst/rtsp/URLS:
13449         Added some other URL.
13450
13451         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13452         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13453         (gst_rtspsrc_open), (gst_rtspsrc_play),
13454         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13455         * gst/rtsp/gstrtspsrc.h:
13456         Work on fallback to TCP connection when the UDP socket times out.
13457         Handler server requests, just reply with OK for now.
13458
13459         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13460         * gst/rtsp/rtspdefs.h:
13461         Added some more Real extension headers.
13462
13463         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13464         Fix parsing of urls with a ':' that is not part of the hostname:port
13465         part of the url.
13466
13467 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
13468
13469         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13470         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13471         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13472           Activate pad before adding it to the already-running element.
13473
13474         * tests/check/elements/icydemux.c: (icydemux_found_pad):
13475           Activate newly-created pad too.
13476
13477 2006-10-11  Wim Taymans  <wim@fluendo.com>
13478
13479         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13480
13481         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13482         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13483         (gst_udpsrc_start):
13484         Fix some leaks in caps and uris. Fixes #361252.
13485
13486 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
13487
13488         * gst/wavparse/Makefile.am:
13489           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13490
13491 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
13492
13493         * sys/v4l2/gstv4l2xoverlay.c:
13494         * sys/v4l2/gstv4l2xoverlay.h:
13495         Fix build as per the patch in #338818 comment 36.
13496
13497 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
13498
13499         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13500           Activate pads before adding them to the source.
13501
13502 2006-10-06  Wim Taymans  <wim@fluendo.com>
13503
13504         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13505         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13506         Activate pads before adding.
13507
13508 2006-10-06  Wim Taymans  <wim@fluendo.com>
13509
13510         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13511         (gst_multipart_find_pad_by_mime):
13512         Activate pads before adding.
13513
13514         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13515         BOILERPLATE sets parent_class for us.
13516
13517 2006-10-06  Wim Taymans  <wim@fluendo.com>
13518
13519         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13520         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13521         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13522         (gst_rtspsrc_alloc_udp_ports),
13523         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13524         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13525         (gst_rtspsrc_create_transports_string),
13526         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13527         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13528         * gst/rtsp/gstrtspsrc.h:
13529         Rework how the transport string is constructed, try to share channels
13530         and udp ports.
13531         Make most of the stuff less dependant on RTP as we are also going to use
13532         it for RDT.
13533         Add support for transport specific session managers.
13534
13535         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13536         Implement _flush().
13537
13538         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13539         * gst/rtsp/rtspdefs.h:
13540         Add generic error return code.
13541
13542         * gst/rtsp/rtspext.h:
13543         Add support for pluggable tranport strings.
13544
13545         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13546         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13547         (rtsp_ext_wms_get_context):
13548         Detect WMServer and activate the extension.
13549
13550         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13551         (rtsp_transport_get_manager), (rtsp_transport_parse):
13552         * gst/rtsp/rtsptransport.h:
13553         Added methods to get mime/manager for certain transports.
13554
13555 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
13556
13557         * ext/cairo/gsttimeoverlay.c:
13558         (gst_cairo_time_overlay_update_font_height):
13559         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13560         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13561         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13562         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13563         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13564         * ext/libpng/gstpngdec.c: (user_endrow_callback):
13565         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13566         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13567         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13568         (gst_avi_demux_stream_data):
13569         * gst/cutter/gstcutter.c: (gst_cutter_chain):
13570         * gst/debug/efence.c: (gst_efence_buffer_alloc),
13571         (gst_fenced_buffer_copy):
13572         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13573         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13574         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13575         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13576         (gst_rtspsrc_handle_message):
13577         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13578         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13579           Printf format fixes.
13580
13581 2006-10-04  Wim Taymans  <wim@fluendo.com>
13582
13583         * gst/rtsp/Makefile.am:
13584         Dist new .h file too.
13585
13586 2006-10-04  Wim Taymans  <wim@fluendo.com>
13587
13588         * gst/rtsp/Makefile.am:
13589         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13590         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13591         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13592         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13593         (gst_rtspsrc_parse_rtpmap),
13594         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13595         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13596         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13597         * gst/rtsp/gstrtspsrc.h:
13598         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13599         * gst/rtsp/rtspdefs.h:
13600         * gst/rtsp/rtspext.h:
13601         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13602         (rtsp_ext_wms_get_context):
13603         * gst/rtsp/rtspextwms.h:
13604         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13605         (rtsp_transport_parse):
13606         * gst/rtsp/rtsptransport.h:
13607         Factor out extension in separate module.
13608         Fix getcaps to filter against the padtemplate.
13609         Use Content-Base if the server gives one.
13610         Rework the transport parsing a bit for future extensions.
13611         Added some Real Header field definitions.
13612
13613 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
13614
13615         * docs/plugins/Makefile.am:
13616         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13617         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13618           added v4l2 stubs
13619         * gst-plugins-good.spec.in:
13620           add v4l2
13621
13622 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
13623
13624         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13625           Extract disc/album/medium number and count and try harder
13626           to extract track number/count.
13627
13628 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13629
13630         * configure.ac:
13631         * sys/Makefile.am:
13632           add build stuff for v4l2, needs --enable-experimental until
13633           the last bits are resolved
13634
13635 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
13636
13637         * tests/check/Makefile.am:
13638           Disable autodetect test temporarily, so that the build bots
13639           update -bad and the ranks of unreliable video sinks in there.
13640
13641         * tests/check/elements/autodetect.c: (GST_START_TEST):
13642           Skip test if no usable videosink is found.
13643
13644 2006-09-29  Wim Taymans  <wim@fluendo.com>
13645
13646         * gst/rtsp/URLS:
13647         Add some more URLs.
13648
13649         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13650         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13651         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13652         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13653         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13654         (gst_rtspsrc_loop), (gst_rtspsrc_send),
13655         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13656         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13657         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13658         * gst/rtsp/gstrtspsrc.h:
13659         Add timeout property to control UDP timeouts.
13660         Fix error messages.
13661         Also start a loop function when operating in UDP mode so that we can
13662         do some more stuff async.
13663         Handle element messages from udpsrc to detect timeouts. If a timeout
13664         happens we currently generate an error.
13665         API: rtspsrc::timeout property.
13666
13667         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13668         (gst_udpsrc_create):
13669         Really implement the timeout in microseconds and not milliseconds.
13670
13671 2006-09-29  Wim Taymans  <wim@fluendo.com>
13672
13673         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13674         (gst_udpsrc_create), (gst_udpsrc_set_property),
13675         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13676         * gst/udp/gstudpsrc.h:
13677         Added property to post a message on timeout.
13678         Updated docs.
13679         When restarting the select, initialize the fdsets again.
13680         Init control sockets so we don't accidentally close a random socket.
13681         API: GstUDPSrc::timeout property
13682
13683 2006-09-29  Wim Taymans  <wim@fluendo.com>
13684
13685         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13686         Fix flag registration.
13687
13688         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13689         Reading 0 also means 'no more commands'
13690
13691 2006-09-29  Wim Taymans  <wim@fluendo.com>
13692
13693         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13694
13695         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13696         Fix possible infinite loop when shutting down, a read can also return
13697         0 to indicate no more messages are available. Fixes #358156.
13698
13699 2006-09-25  Wim Taymans  <wim@fluendo.com>
13700
13701         * gst/autodetect/gstautoaudiosink.c:
13702         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13703         (gst_auto_audio_sink_find_best):
13704         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13705         Small cleanups.
13706         don't try to set "sync" property when it is not available.
13707
13708 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13709
13710         Patch by: Peter Kjellerstedt  <pkj at axis com>
13711
13712         * gst/alpha/gstalpha.c:
13713         * gst/rtp/gstrtpamrdepay.c:
13714         * gst/rtsp/gstrtspsrc.c:
13715         * gst/udp/gstudpsrc.c:
13716         * gst/videomixer/videomixer.c:
13717           Include stdlib.h in some more places, makes things compile
13718           with uClibc and -Werror (#357592).
13719
13720 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13721
13722         * ext/jpeg/gstjpegdec.c:
13723           Set minimum height to 8 (from 16), our code should handle
13724           that fine. Some of the buttons on the apple trailer site
13725           are apparently only 15 pixels high (see #357470).
13726
13727 2006-09-23  Wim Taymans  <wim@fluendo.com>
13728
13729         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13730         (gst_rtspsrc_open):
13731         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13732         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13733         (rtsp_connection_receive):
13734         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13735         * gst/rtsp/rtspdefs.h:
13736         Improve error reporting.
13737
13738 2006-09-23  Wim Taymans  <wim@fluendo.com>
13739
13740         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13741         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13742         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13743         * gst/rtp/gstrtpdepay.c:
13744         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13745         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13746         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13747         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13748         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13749         (gst_rtp_mp2t_depay_plugin_init):
13750         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13751         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13752         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13753         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13754         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13755         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13756         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13757         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13758         Fix klass typos.
13759         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13760
13761 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13762
13763         * configure.ac:
13764           Need  -base CVS for gst_base_rtp_depayload_push_ts().
13765
13766 2006-09-22  Wim Taymans  <wim@fluendo.com>
13767
13768         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13769         Don't check for a tag that is never there and check if we read the
13770         correct tag. Fixes seeking again.
13771         We must post an error when all pads are unlinked.
13772
13773 2006-09-22  Wim Taymans  <wim@fluendo.com>
13774
13775         * gst/rtp/Makefile.am:
13776         * gst/rtp/gstrtp.c: (plugin_init):
13777         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13778         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13779         (gst_rtp_vorbis_pay_reset_packet),
13780         (gst_rtp_vorbis_pay_init_packet),
13781         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13782         (gst_rtp_vorbis_pay_handle_buffer):
13783         More fixage, set endoder-params correctly in the payloader.
13784
13785 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13786
13787         * gst/autodetect/gstautoaudiosink.c:
13788         (gst_auto_audio_sink_base_init):
13789         * gst/autodetect/gstautovideosink.c:
13790         (gst_auto_video_sink_base_init):
13791           Make static pad templates static to appease valgrind's leak
13792           detector.
13793
13794         * tests/check/Makefile.am:
13795         * tests/check/elements/.cvsignore:
13796         * tests/check/elements/autodetect.c: (GST_START_TEST),
13797         (autodetect_suite):
13798           Add simple test for the ghostpad lockup on shutdown fixed in core
13799           CVS (audio bit disabled because it would need dozens of alsa
13800           suppressions and I'm too lazy to add those now).
13801
13802 2006-09-22  Wim Taymans  <wim@fluendo.com>
13803
13804         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13805         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13806         Small cleanups.
13807
13808         * gst/rtp/Makefile.am:
13809         * gst/rtp/gstrtp.c: (plugin_init):
13810         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
13811         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
13812         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
13813         (gst_rtp_vorbis_depay_process),
13814         (gst_rtp_vorbis_depay_set_property),
13815         (gst_rtp_vorbis_depay_get_property),
13816         (gst_rtp_vorbis_depay_change_state),
13817         (gst_rtp_vorbis_depay_plugin_init):
13818         * gst/rtp/gstrtpvorbisdepay.h:
13819         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
13820         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
13821         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
13822         (gst_rtp_vorbis_pay_flush_packet),
13823         (gst_rtp_vorbis_pay_append_buffer),
13824         (gst_rtp_vorbis_pay_handle_buffer),
13825         (gst_rtp_vorbis_pay_plugin_init):
13826         * gst/rtp/gstrtpvorbispay.h:
13827         Add experimental vorbis pay and depayloaders.
13828
13829 2006-09-21  Wim Taymans  <wim@fluendo.com>
13830
13831         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
13832         Fix profile-level-id parsing and setup.
13833
13834 2006-09-21  Wim Taymans  <wim@fluendo.com>
13835
13836         * gst/udp/README:
13837         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
13838         Update README, simple cleanup.
13839
13840 2006-09-21  Wim Taymans  <wim@fluendo.com>
13841
13842         * gst/rtp/README:
13843         Update README with some examples.
13844
13845         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
13846         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
13847         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
13848         (gst_rtp_mp4g_pay_setcaps):
13849         * gst/rtp/gstrtpmp4gpay.h:
13850         Make optional RTP parameters of type STRING, as required by the
13851         application/x-rtp caps specification.
13852
13853 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
13854
13855         * gst/rtp/gstrtph263pdepay.c:
13856         * gst/rtp/gstrtph263ppay.c:
13857         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
13858         RTP header.
13859
13860 2006-09-20  Wim Taymans  <wim@fluendo.com>
13861
13862         * gst/rtp/Makefile.am:
13863         And makefile too.
13864
13865 2006-09-20  Wim Taymans  <wim@fluendo.com>
13866
13867         * gst/rtp/gstrtp.c: (plugin_init):
13868         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
13869         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
13870         (decode_base64), (gst_rtp_asf_depay_setcaps),
13871         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
13872         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
13873         (gst_rtp_asf_depay_plugin_init):
13874         * gst/rtp/gstrtpasfdepay.h:
13875         Added preliminary ASF depayloader.
13876
13877         * gst/rtp/gstrtph264depay.c: (decode_base64):
13878         Fix base64 decoding.
13879
13880 2006-09-20  Wim Taymans  <wim@fluendo.com>
13881
13882         * gst/rtsp/URLS:
13883         Added some test URLS.
13884
13885         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
13886         (gst_rtspsrc_loop), (gst_rtspsrc_open):
13887         * gst/rtsp/gstrtspsrc.h:
13888         When creating streams, give access to the complete SDP.
13889         Fix some leaks.
13890         Collect and merge global stream properties in stream caps.
13891         Preliminary support for WMServer.
13892
13893         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13894         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13895         (rtsp_connection_receive):
13896         * gst/rtsp/rtspconnection.h:
13897         Make connection interruptable.
13898         Refactor to make it reconnectable.
13899         Don't fail on short reads when reading data packets.
13900
13901         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
13902         (rtsp_url_get_port):
13903         * gst/rtsp/rtspurl.h:
13904         Add methods for getting/setting the port.
13905
13906         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
13907         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
13908         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
13909         (sdp_media_get_format), (sdp_parse_line),
13910         (sdp_message_parse_buffer):
13911         Fix headers. 
13912         Add methods for getting multiple attributes with the same name.
13913         Increase buffer size when parsing.
13914         Fix parsing of a=foo fields.
13915
13916         * gst/rtsp/test.c: (main):
13917         Update to new connection API.
13918
13919         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13920         (rtsp_message_init_response), (rtsp_message_init_data),
13921         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
13922         * gst/rtsp/rtspmessage.h:
13923         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
13924         * gst/rtsp/rtsptransport.h:
13925         * gst/rtsp/sdp.h:
13926         * gst/rtsp/sdpmessage.h:
13927         * gst/rtsp/gstrtsp.c:
13928         * gst/rtsp/gstrtsp.h:
13929         * gst/rtsp/gstrtpdec.c:
13930         * gst/rtsp/gstrtpdec.h:
13931         * gst/rtsp/rtsp.h:
13932         * gst/rtsp/rtspdefs.c:
13933         * gst/rtsp/rtspdefs.h:
13934         Dual licensed under MIT and LGPL now.
13935
13936 2006-09-19  Wim Taymans  <wim@fluendo.com>
13937
13938         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
13939         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
13940         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
13941         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13942         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
13943         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13944         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
13945         * gst/rtsp/gstrtspsrc.h:
13946         Reorganize stream parsing and creation.
13947         Detect container formats in interleaved mode.
13948         Keep more state about the streams.
13949         Assume a server also supports PLAY if it does not say.
13950         Add unicast and interleaved properties to TCP transport requests to make
13951         some servers happy (WMServer).
13952
13953         * gst/rtsp/sdpmessage.h:
13954         Add some defines for the standard Bandwidth types.
13955
13956 2006-09-19  Wim Taymans  <wim@fluendo.com>
13957
13958         * gst/rtsp/test.c: (main):
13959         Fix build.
13960
13961 2006-09-19  Wim Taymans  <wim@fluendo.com>
13962
13963         * gst/wavparse/gstwavparse.c:
13964         Add ms-gsm to the src template.
13965
13966 2006-09-18  Wim Taymans  <wim@fluendo.com>
13967
13968         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
13969         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
13970         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
13971         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
13972         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
13973         * gst/rtsp/gstrtspsrc.h:
13974         Small cleanups, added documentation.
13975         Try to clean up the requests and responses.
13976         Refactor parsing the supported methods.
13977
13978         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
13979         (rtsp_connection_create), (rtsp_connection_send),
13980         (parse_response_status), (parse_request_line),
13981         (rtsp_connection_receive), (rtsp_connection_close),
13982         (rtsp_connection_free):
13983         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
13984         (rtsp_transport_init), (rtsp_transport_parse),
13985         (rtsp_transport_free):
13986         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13987         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
13988         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
13989         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
13990         Use g_return_val some more.
13991
13992         * gst/rtsp/rtspdefs.h:
13993         Add more enum values to track initial states.
13994
13995         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
13996         (rtsp_message_init_request), (rtsp_message_new_response),
13997         (rtsp_message_init_response), (rtsp_message_init_data),
13998         (rtsp_message_unset), (rtsp_message_free),
13999         (rtsp_message_add_header), (rtsp_message_remove_header),
14000         (rtsp_message_get_header), (rtsp_message_set_body),
14001         (rtsp_message_take_body), (rtsp_message_get_body),
14002         (rtsp_message_steal_body), (rtsp_message_dump):
14003         * gst/rtsp/rtspmessage.h:
14004         Reorder arguments, object goes as the first one.
14005         Use g_return_val some more.
14006
14007 2006-09-18  Wim Taymans  <wim@fluendo.com>
14008
14009         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14010         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14011         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14012         * gst/rtsp/gstrtspsrc.h:
14013         Export sometimes source pad with correct caps on the template, create
14014         the ghostpad from the template.
14015         Remove RTCP template as we never expose RTCP.
14016         Protect against invalid body size.
14017         Avoid memcpy when creating the output buffer.
14018         Properly post an error and send EOS when the loop function is shut down.
14019
14020 2006-09-18  Wim Taymans  <wim@fluendo.com>
14021
14022         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14023
14024         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14025         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14026         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14027         * gst/rtsp/gstrtspsrc.h:
14028         Make sure we can never set an invalid location.
14029
14030         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14031         * gst/rtsp/rtspmessage.h:
14032         Added _steal_body method for future use.
14033
14034         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14035         Make freeing of NULL url return immediatly.
14036
14037 2006-09-18  Wim Taymans  <wim@fluendo.com>
14038
14039         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14040
14041         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14042         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14043         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14044         (gst_rtspsrc_change_state):
14045         * gst/rtsp/gstrtspsrc.h:
14046         Use boilerplate.
14047         Make rtspsrc subclass GstBin to make state changes easier.
14048         Add Range header field on the PLAY request.
14049
14050 2006-09-18  Wim Taymans  <wim@fluendo.com>
14051
14052         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14053
14054         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14055         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14056         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14057         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14058         * gst/rtsp/rtspconnection.c: (inet_aton):
14059         Small cleanups.
14060         when multicast is selected as the transport, create UDP sources and
14061         connect to the multicast group.
14062         Move parsing and setting of caps to a common place.
14063         Fixes #349894.
14064
14065 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
14066
14067         * ext/flac/gstflactag.c:
14068         * gst/alpha/gstalpha.c:
14069         * gst/debug/breakmydata.c:
14070         * gst/debug/negotiation.c:
14071         * gst/debug/testplugin.c:
14072         * gst/effectv/gstaging.c:
14073         * gst/effectv/gstdice.c:
14074         * gst/effectv/gstedge.c:
14075         * gst/effectv/gstquark.c:
14076         * gst/effectv/gstrev.c:
14077         * gst/effectv/gstshagadelic.c:
14078         * gst/effectv/gstvertigo.c:
14079         * gst/effectv/gstwarp.c:
14080         * gst/multipart/multipartdemux.c:
14081         * gst/multipart/multipartmux.c:
14082         * gst/videobox/gstvideobox.c:
14083         * gst/videofilter/gstgamma.c:
14084         * gst/videofilter/gstvideotemplate.c:
14085         * gst/videomixer/videomixer.c:
14086         * sys/sunaudio/gstsunaudiosrc.h:
14087         More G_OBJECT macro fixing.
14088
14089 2006-09-16  Wim Taymans  <wim@fluendo.com>
14090
14091         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14092
14093         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14094         Correctly set the dwLength in strh.
14095         With this patch, the file duration is now displayed correctly in window
14096         media player and the AVI plays completely. Fixes #356147
14097
14098 2006-09-15  Wim Taymans  <wim@fluendo.com>
14099
14100         Patch by: Darren Kenny <darren dot kenny at sun dot com>
14101
14102         * sys/sunaudio/gstsunaudiomixerctrl.c:
14103         (gst_sunaudiomixer_ctrl_build_list):
14104         Set the output track as the MASTER so that the gnome-settings-daemon
14105         keybindings for changing the volume using the keyboard works.
14106         Fixes #356142.
14107
14108 2006-09-15  Wim Taymans  <wim@fluendo.com>
14109
14110         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14111         Fix documentation, it is not possible to control the framerate of jpegdec
14112         using filtered caps yet. Fixes #355210.
14113         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14114         stop when there is an error.
14115
14116 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14117
14118         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14119         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14120           Don't interpret a first buffer with an offset of NONE as
14121           'from the middle of the stream', but only a first buffer
14122           that has a valid buffer offset that's non-zero (see #345449).
14123
14124 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
14125
14126         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14127         (gst_icydemux_typefind_or_forward):
14128         * gst/icydemux/gsticydemux.h:
14129           When we merge/collect multiple incoming buffers for typefinding
14130           purposes, keep an initial 0 offset on the first outgoing buffer
14131           as well (otherwise id3demux won't work right). Fixes #345449.
14132           Also Make buffer metadata writable before setting buffer caps.
14133
14134         * tests/check/elements/icydemux.c: (typefind_succeed),
14135         (cleanup_icydemux), (push_data), (GST_START_TEST),
14136         (icydemux_suite):
14137           Small test case for the above.
14138
14139 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
14140
14141         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14142         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14143         (gst_avi_demux_stream_header_push),
14144         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14145         (gst_avi_demux_loop):
14146           More code reuse and better logging in _peek_chunk(). Reintroduce check
14147           for chunk sizes before reading them (avoid oom). Better handling for 
14148           invalid chunksizes when streaming.
14149
14150 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
14151
14152         * gst/level/gstlevel.c: (gst_level_set_property):
14153         * gst/level/gstlevel.h:
14154           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14155           René Stadler
14156
14157 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
14158
14159         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14160         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14161         (gst_avi_demux_stream_data):
14162           Revert one change to fix streaming avi (adapter size != data size).
14163
14164 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14165
14166         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
14167
14168         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14169         (gst_matroska_demux_reset),
14170         (gst_matroska_demux_read_track_encodings),
14171         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14172         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14173         (gst_matroska_demux_subtitle_caps):
14174         * gst/matroska/matroska-ids.h:
14175           Add support for VOBSUB subtitle tracks and zlib-compressed
14176           tracks. Make sure we start on a keyframe after a seek. (#343348)
14177
14178 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
14179
14180         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14181         (gst_matroska_demux_push_flac_codec_priv_data),
14182         (gst_matroska_demux_push_xiph_codec_priv_data),
14183         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14184         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14185         * gst/matroska/matroska-ids.h:
14186           Add basic FLAC support (#311586), not perfect yet though, needs some
14187           tweaking in flacdec; also, seeking could be better.
14188           Do better bounds checking when deserialising vorbis stream headers
14189           to make sure we don't read beyond the end of the buffer on bad input.
14190
14191 2006-09-04  Wim Taymans  <wim@fluendo.com>
14192
14193         Patch by: Alessandro Decina <alessandro at nnva dot org>
14194
14195         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14196         Seeking back in a file containing a CMML stream errors out if the seek
14197         goes back up to the CMML headers. This is because after the seek the xml
14198         processing instruction <?xml ...?> is submitted to the xml parser again, 
14199         which results in an error. The attached patch fixes the problem. 
14200         Fixes #353908.
14201
14202         * ext/annodex/gstcmmlenc.h:
14203         Fix authors name.
14204
14205
14206 2006-08-28  Andy Wingo  <wingo@pobox.com>
14207
14208         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14209         New helper function to lessen the ifdefs.
14210         (GST_INFO_OBJECT): 
14211         (gst_dv1394src_iso_receive): Use it.
14212         (gst_dv1394src_create): Also use the control sockets in iec61883
14213         mode.
14214         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14215         handle for AVC operations; fixes #348233.
14216
14217 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14218
14219         * configure.ac:
14220         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14221         * docs/plugins/inspect/plugin-audiofx.xml:
14222         * docs/plugins/inspect/plugin-audiofxgood.xml:
14223         * gst/audiofx/Makefile.am:
14224         * gst/audiofx/audiofx.c:
14225         * gst/audiofxgood/.cvsignore:
14226         * gst/audiofxgood/Makefile.am:
14227         * gst/audiofxgood/audiofx.c:
14228         * gst/audiofxgood/audiopanorama.c:
14229         * gst/audiofxgood/audiopanorama.h:
14230           Rename again (audiofxgood -> audiofx).
14231
14232 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
14233
14234         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14235         (gst_avi_demux_stream_scan):
14236           Initialze variables.
14237
14238 2006-08-25  Wim Taymans  <wim@fluendo.com>
14239
14240         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14241         (gst_avi_demux_init), (gst_avi_demux_finalize),
14242         (gst_avi_demux_reset), (gst_avi_demux_index_last),
14243         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14244         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14245         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14246         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14247         (gst_avi_demux_massage_index),
14248         (gst_avi_demux_calculate_durations_from_index),
14249         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14250         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14251         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14252         (gst_avi_demux_change_state):
14253         * gst/avi/gstavidemux.h:
14254         More attempts to turn this into readable code.
14255         Don't leak adapters.
14256         Calculate duration according to index more efficiently.
14257         Don't try to act like we drive the pipeline in chain mode.
14258
14259 2006-08-25  Wim Taymans  <wim@fluendo.com>
14260
14261         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14262         Fix build.
14263
14264 2006-08-25  Wim Taymans  <wim@fluendo.com>
14265
14266         Patch by: Alessandro Decina <alessandro at nnva dot org>
14267
14268         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14269         Do some extra sanity checks.
14270         Fixes #350340.
14271
14272         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14273         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14274         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14275         Check if clip->start_time is valid before adding the clip to the
14276         track list.
14277         Reset enc->preamble going from PAUSED to READY.
14278         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14279         only used for EOS.
14280         Only post an error message if we were the one that created the fatal
14281         GstFlowReturn value.
14282
14283         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14284         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14285         Parse the seconds field of the npt-sec time format using %llu rather than
14286         %d and check that the value scaled by GST_SECOND doesn't overflow.
14287         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14288         Lookup a clip's track with clip->track rather than clip->id which
14289         makes no sense.
14290         Identify a clip by its track and start time and not its xml id.
14291         do some more input checking and make sure we don't do undefined shifts.
14292
14293         * tests/check/elements/cmmldec.c: (setup_cmmldec),
14294         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14295         (cmml_tag_message_pop), (check_headers), (push_clip_full),
14296         (push_clip), (push_empty_clip), (check_output_clip),
14297         (GST_START_TEST), (cmmldec_suite):
14298         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14299         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14300         (check_headers), (push_clip), (check_clip_times), (check_clip),
14301         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14302         Added some more checks.
14303
14304 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14305
14306         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14307         (gst_audio_panorama_set_property),
14308         (gst_audio_panorama_get_property),
14309         (gst_audio_panorama_transform_m2s_int),
14310         (gst_audio_panorama_transform_s2s_int),
14311         (gst_audio_panorama_transform_m2s_float),
14312         (gst_audio_panorama_transform_s2s_float):
14313         * gst/audiofxgood/audiopanorama.h:
14314         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14315           Make also the pan-property float (saves scaling and yields better
14316           resolution)
14317
14318 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14319
14320         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14321         (gst_audio_panorama_transform_m2s_float),
14322         (gst_audio_panorama_transform_s2s_float):
14323           ChangeLog surgery to add cymax's real name
14324
14325
14326 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14327
14328         Patch by: René Stadler <mail@renestadler.de>
14329
14330         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14331         (gst_audio_panorama_transform_m2s_int),
14332         (gst_audio_panorama_transform_s2s_int),
14333         (gst_audio_panorama_transform_m2s_float),
14334         (gst_audio_panorama_transform_s2s_float),
14335         (gst_audio_panorama_transform):
14336         * gst/audiofxgood/audiopanorama.h:
14337           Added float support
14338
14339 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14340
14341         * gst/audiofxgood/audiopanorama.c:
14342         (gst_audio_panorama_transform_m2s):
14343           Fix docs & debug category. Add Fixme for volume pan levels.
14344
14345 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
14346
14347         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14348         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14349         (gst_avi_demux_stream_header_pull),
14350         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14351         (gst_avi_demux_chain):
14352           unbreak AVI index handling, some more debug, remove an obsolete
14353           adapter_flush that caused streaming to wander off in the wild
14354
14355 2006-08-24  Wim Taymans  <wim@fluendo.com>
14356
14357         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14358         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14359         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14360         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14361         (gst_avi_demux_calculate_durations_from_index),
14362         (gst_avi_demux_stream_header_push),
14363         (gst_avi_demux_stream_header_pull):
14364         * gst/avi/gstavidemux.h:
14365         Some more cleanups. 
14366         Fix totalFrames parsing in ODML.
14367         Disable use of index for length calculation in case of ODML as this is
14368         broken now.
14369
14370 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
14371
14372         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14373           Use libgsttag helper function here too.
14374
14375 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
14376
14377         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14378         (gst_avi_demux_init), (gst_avi_demux_dispose),
14379         (gst_avi_demux_reset), (gst_avi_demux_index_next),
14380         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14381         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14382         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14383         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14384         (gst_avi_demux_parse_subindex),
14385         (gst_avi_demux_read_subindexes_push),
14386         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14387         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14388         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14389         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14390         (gst_avi_demux_stream_header_pull),
14391         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14392         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14393         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14394         (gst_avi_demux_change_state):
14395         * gst/avi/gstavidemux.h:
14396           Initial streaming support for avidemux (fixes #336465)
14397
14398 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14399
14400         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14401           There is no taglibmux element ...
14402
14403         * gst/rtsp/gstrtspsrc.c:
14404           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14405           was complaining about unknown entity here.
14406
14407 2006-08-22  Wim Taymans  <wim@fluendo.com>
14408
14409         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14410         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14411         (gst_avi_demux_process_next_entry):
14412         * gst/avi/gstavidemux.h:
14413         Mark DISCONT.
14414         Remove old unused fields and reorder the struct a bit.
14415
14416 2006-08-22  Wim Taymans  <wim@fluendo.com>
14417
14418         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14419         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14420         (gst_rtspsrc_pause):
14421         * gst/rtsp/gstrtspsrc.h:
14422         * sys/oss/gstosssink.c: (gst_oss_sink_open),
14423         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14424         Small documentation updates.
14425
14426 2006-08-22  Wim Taymans  <wim@fluendo.com>
14427
14428         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14429         (gst_avi_demux_index_entry_for_time),
14430         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14431         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14432         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14433         (gst_avi_demux_next_data_buffer),
14434         (gst_avi_demux_calculate_durations_from_index),
14435         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14436         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14437         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14438         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14439         * gst/avi/gstavidemux.h:
14440         Precalc most of the duration query for each stream.
14441         Make seeking more correct.
14442         Use GstSegment to track position and duration.
14443         Code cleanups and leak fixes.
14444         Calculate correct total duration based on index length.
14445
14446 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
14447
14448         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14449         (parse_insert_string_field):
14450           If strings in text fields are marked ISO8859-1, but contain
14451           valid UTF-8 already, then handle them as UTF-8 and ignore
14452           the encoding. (#351794)
14453
14454 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14455
14456         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14457         (gst_flac_dec_write), (gst_flac_dec_loop),
14458         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14459         (gst_flac_dec_src_query):
14460         * ext/flac/gstflacdec.h:
14461           Make flac-in-ogg work (#352100).
14462
14463 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14464
14465         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14466           Don't unref buffers of which we've already given away
14467           ownership to the adapter.
14468
14469 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
14470
14471         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14472           Make metadata extraction actually work.
14473
14474         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14475         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14476         (gst_speexenc_chain):
14477           Fix metadata writing: replace old code which wrote completely
14478           broken tags with libgsttag-based code. Plus miscellaneous
14479           code cleanups (use static pad templates etc.) and a bunch
14480           of leak fixes.
14481
14482 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14483
14484         * gst/audiopanorama/.cvsignore:
14485         * gst/audiopanorama/Makefile.am:
14486         * gst/audiopanorama/audiofx.c:
14487         * gst/audiopanorama/audiopanorama.c:
14488         * gst/audiopanorama/audiopanorama.h:
14489           die! die! die! you should never have been there
14490
14491 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
14492
14493         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14494         Fix invalid memory access in audiopanorama test suite.
14495
14496 2006-08-21  Edward Hervey  <edward@fluendo.com>
14497
14498         * tests/check/elements/.cvsignore:
14499         ignore built file
14500
14501 2006-08-21  Wim Taymans  <wim@fluendo.com>
14502
14503         * gst/rtp/Makefile.am:
14504         Fix the build again.
14505
14506 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
14507
14508         * gst/audiofxgood/.cvsignore:
14509         * gst/audiofxgood/Makefile.am:
14510         * gst/audiofxgood/audiofx.c: (plugin_init):
14511         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14512         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14513         (gst_audio_panorama_set_property),
14514         (gst_audio_panorama_get_property),
14515         (gst_audio_panorama_get_unit_size),
14516         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14517         (gst_audio_panorama_transform_m2s),
14518         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14519         * gst/audiofxgood/audiopanorama.h:
14520           resubmit with the desired name *again*
14521
14522 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14523
14524         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14525         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14526           use g_assert in _get_unit_size
14527
14528 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14529
14530         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14531         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14532         * docs/plugins/inspect/plugin-audiofxgood.xml:
14533           cleanup -unused.txt to make it useful, add previously missing docs
14534
14535         * ext/Makefile.am:
14536           Quietly (accidentally) enable LADSPA for building by default, 
14537           despite the fact that it doesn't meet the plugin checklist.
14538             -- Added by Jan Schmidt 18 Dec 2006
14539
14540         * ext/esd/esdmon.c:
14541         * ext/esd/esdsink.c:
14542         * ext/esd/gstesd.c: (plugin_init):
14543           reflow to get rid of two external symbols
14544
14545         * gst/audiofxgood/audiofx.c: (plugin_init):
14546           re-add
14547
14548 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
14549
14550         * configure.ac:
14551         * gst/audiofxgood/.cvsignore:
14552         * gst/audiofxgood/Makefile.am:
14553         * gst/audiofxgood/audiofx.c
14554         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14555         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14556         (gst_audio_panorama_set_property),
14557         (gst_audio_panorama_get_property),
14558         (gst_audio_panorama_get_unit_size),
14559         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14560         (gst_audio_panorama_transform_m2s),
14561         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14562         * gst/audiofxgood/audiopanorama.h:
14563         * tests/check/Makefile.am:
14564         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14565         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14566         (panorama_suite), (main):
14567         Add audiofxgood plugin with audiopanorama element
14568
14569 2006-08-18  Wim Taymans  <wim@fluendo.com>
14570
14571         * docs/plugins/Makefile.am:
14572         More Oss docs fixage. 
14573
14574 2006-08-18  Wim Taymans  <wim@fluendo.com>
14575
14576         * gst/rtp/Makefile.am:
14577         * gst/rtp/gstrtp.c: (plugin_init):
14578         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14579         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14580         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14581         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14582         (gst_rtp_sv3v_depay_get_property),
14583         (gst_rtp_sv3v_depay_change_state),
14584         (gst_rtp_sv3v_depay_plugin_init):
14585         * gst/rtp/gstrtpsv3vdepay.h:
14586         Added experimental SVQ3 depayloader.
14587
14588 2006-08-18  Edward Hervey  <edward@fluendo.com>
14589
14590         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14591         (gst_dvdemux_loop), (gst_dvdemux_change_state):
14592         * ext/dv/gstdvdemux.h:
14593         When handling seek requests, don't send the newsegment event from the
14594         calling thread. Instead save it so it can be sent from the streaming
14595         thread.
14596
14597 2006-08-17  Wim Taymans  <wim@fluendo.com>
14598
14599         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14600
14601         * gst/multipart/multipartdemux.c: (multipart_parse_header):
14602         Accept leading whitespace before the boundary
14603         This patch makes the demuxer allow some whitespace before the actual
14604         boundary. This makes the demuxer work with the ``old'' gstreamer
14605         multipartmuxer again (which placed an extra \n before the start
14606         of the stream) Fixes #349068.
14607
14608 2006-08-17  Wim Taymans  <wim@fluendo.com>
14609
14610         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14611         Error out on non-implemented stuff.
14612
14613 2006-08-16  Wim Taymans  <wim@fluendo.com>
14614
14615         Patch by: Andy Wingo <wingo at pobox dot com>
14616
14617         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14618         (gst_signal_processor_start), (gst_signal_processor_stop),
14619         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14620         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14621         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14622         (gst_signal_processor_change_state):
14623         Make ladspa elements reusable. Fixes #350006.
14624
14625 2006-08-16  Wim Taymans  <wim@fluendo.com>
14626
14627         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14628         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14629         names as possible. Fixes #349901.
14630
14631 2006-08-16  Wim Taymans  <wim@fluendo.com>
14632
14633         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14634         (gst_signal_processor_do_pushes):
14635         A push() gives away our refcount so we should not use the buffer on the
14636         pen anymore.
14637
14638 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14639
14640         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14641         (gst_oss_mixer_element_finalize):
14642           Don't leak device string.
14643
14644 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14645
14646         * configure.ac:
14647           Require CVS of GStreamer core and -base (for
14648           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14649
14650         * ext/taglib/gstid3v2mux.cc:
14651           Write extended comment tags properly (#348762).
14652
14653         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14654         (parse_comment_frame):
14655           Extract COMM frames into extended comments, which makes it
14656           easier to properly retain the description bit of the tag
14657           and maintain this information when re-tagging (#348762).
14658
14659 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14660
14661         * tests/check/Makefile.am:
14662           Don't try to run annodex unit tests if the annodex
14663           plugin has not been built (Fixes #351116).
14664
14665 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14666
14667         * gst/autodetect/gstautoaudiosink.c:
14668         (gst_auto_audio_sink_find_best):
14669           When we can't find a usable audiosink, don't error out,
14670           but use a fake sink instead and post a warning message
14671           on the bus (#341278).
14672
14673 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
14674
14675         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14676         * sys/oss/gstosssink.c:
14677         * sys/oss/gstosssrc.c:
14678           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14679           ossmixer's new device property.
14680
14681         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14682         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14683           Add docs for OSS elements.
14684
14685         * docs/plugins/inspect/plugin-aasink.xml:
14686         * docs/plugins/inspect/plugin-alaw.xml:
14687         * docs/plugins/inspect/plugin-alpha.xml:
14688         * docs/plugins/inspect/plugin-alphacolor.xml:
14689         * docs/plugins/inspect/plugin-annodex.xml:
14690         * docs/plugins/inspect/plugin-apetag.xml:
14691         * docs/plugins/inspect/plugin-auparse.xml:
14692         * docs/plugins/inspect/plugin-autodetect.xml:
14693         * docs/plugins/inspect/plugin-avi.xml:
14694         * docs/plugins/inspect/plugin-cacasink.xml:
14695         * docs/plugins/inspect/plugin-cairo.xml:
14696         * docs/plugins/inspect/plugin-cdio.xml:
14697         * docs/plugins/inspect/plugin-cutter.xml:
14698         * docs/plugins/inspect/plugin-debug.xml:
14699         * docs/plugins/inspect/plugin-dv.xml:
14700         * docs/plugins/inspect/plugin-efence.xml:
14701         * docs/plugins/inspect/plugin-effectv.xml:
14702         * docs/plugins/inspect/plugin-esdsink.xml:
14703         * docs/plugins/inspect/plugin-flac.xml:
14704         * docs/plugins/inspect/plugin-flxdec.xml:
14705         * docs/plugins/inspect/plugin-gconfelements.xml:
14706         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14707         * docs/plugins/inspect/plugin-goom.xml:
14708         * docs/plugins/inspect/plugin-halelements.xml:
14709         * docs/plugins/inspect/plugin-icydemux.xml:
14710         * docs/plugins/inspect/plugin-id3demux.xml:
14711         * docs/plugins/inspect/plugin-jpeg.xml:
14712         * docs/plugins/inspect/plugin-level.xml:
14713         * docs/plugins/inspect/plugin-matroska.xml:
14714         * docs/plugins/inspect/plugin-mulaw.xml:
14715         * docs/plugins/inspect/plugin-multipart.xml:
14716         * docs/plugins/inspect/plugin-navigationtest.xml:
14717         * docs/plugins/inspect/plugin-ossaudio.xml:
14718         * docs/plugins/inspect/plugin-png.xml:
14719         * docs/plugins/inspect/plugin-rtp.xml:
14720         * docs/plugins/inspect/plugin-rtsp.xml:
14721         * docs/plugins/inspect/plugin-shout2send.xml:
14722         * docs/plugins/inspect/plugin-smpte.xml:
14723         * docs/plugins/inspect/plugin-speex.xml:
14724         * docs/plugins/inspect/plugin-taglib.xml:
14725         * docs/plugins/inspect/plugin-udp.xml:
14726         * docs/plugins/inspect/plugin-videobalance.xml:
14727         * docs/plugins/inspect/plugin-videobox.xml:
14728         * docs/plugins/inspect/plugin-videoflip.xml:
14729         * docs/plugins/inspect/plugin-videomixer.xml:
14730         * docs/plugins/inspect/plugin-wavenc.xml:
14731         * docs/plugins/inspect/plugin-wavparse.xml:
14732         * docs/plugins/inspect/plugin-ximagesrc.xml:
14733           Update to CVS version.
14734           
14735 2006-08-16  Wim Taymans  <wim@fluendo.com>
14736
14737         * gst/rtp/gstrtpamrdepay.c:
14738         * gst/rtp/gstrtpmp4gdepay.c:
14739         Caps extra properties must be defined as strings for
14740         depayloaders because they are generated from an SDP.
14741
14742         * gst/rtp/Makefile.am:
14743         * gst/rtp/gstrtp.c: (plugin_init):
14744         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14745         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14746         (gst_rtp_h264_depay_finalize), (decode_base64),
14747         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14748         (gst_rtp_h264_depay_set_property),
14749         (gst_rtp_h264_depay_get_property),
14750         (gst_rtp_h264_depay_change_state),
14751         (gst_rtp_h264_depay_plugin_init):
14752         * gst/rtp/gstrtph264depay.h:
14753         Added basic, not completely functional RFC 3984 H264 depayloader.
14754
14755 2006-08-16  Wim Taymans  <wim@fluendo.com>
14756
14757         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14758         Add pads after setting them up.
14759
14760         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14761         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14762         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14763         (gst_rtspsrc_stream_setup_rtp),
14764         (gst_rtspsrc_stream_configure_transport),
14765         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14766         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14767         (gst_rtspsrc_pause):
14768         * gst/rtsp/gstrtspsrc.h:
14769         Fix interleaved mode.
14770          - Protect streaming with lock.
14771          - Combine flows
14772          - set caps on outgoing buffers.
14773          - strip trailing \0 from data packets.
14774          - Configure RTP/RTCP in stream.
14775         Use DEBUG_OBJECT more.
14776
14777 2006-08-16  Wim Taymans  <wim@fluendo.com>
14778
14779         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14780         Turn a g_print into a DEBUG line.
14781
14782 2006-08-13  Wim Taymans  <wim@fluendo.com>
14783
14784         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14785         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14786         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14787         (gst_oss_mixer_element_get_property),
14788         (gst_oss_mixer_element_change_state):
14789         * sys/oss/gstossmixerelement.h:
14790         Small cleanups. Better error reporting.
14791         Add device property for the mixer instead of the hardcoded
14792         /dev/mixer. Fixes #350785.
14793         API: GstOssMixerElement::device property
14794
14795 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
14796
14797         Patch by: Jens Granseuer <jensgr at gmx net>
14798
14799         * gconf/Makefile.am:
14800           Make --disable-schemas work right (they still need
14801           to be copied to the installation directory, just not
14802           applied). Fixes #351347 (also #344100).
14803           
14804 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14805
14806         * configure.ac: back to HEAD
14807
14808 === release 0.10.4 ===
14809
14810 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
14811
14812         * configure.ac:
14813           releasing 0.10.4, "Dear Leader"
14814
14815 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14816
14817         Patch by: Edward Hervey <edward@fluendo.com>
14818
14819         * configure.ac:
14820         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
14821         (gst_wavparse_stream_data):
14822         Send the newsegment event in the streaming thread.
14823         Fixes #347529
14824
14825 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
14826
14827         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
14828         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
14829         (gst_smokeenc_resync), (gst_smokeenc_chain):
14830           Refuse sink caps in the encoder if width or height is not a
14831           multiple of 16, the encoder does not support that yet (#349939);
14832           along the same lines, check the return value of the encoder
14833           setup function; also remove some debug log clutter.
14834
14835 2006-08-04  Andy Wingo  <wingo@pobox.com>
14836
14837         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
14838         whether a processor can work in place or not, and for keeping
14839         track of its state. Change the FlowReturn instance variable from
14840         "state" to "flow_state", all callers changed.
14841
14842         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
14843         (gst_signal_processor_start, gst_signal_processor_stop)
14844         (gst_signal_processor_cleanup): New functions to manage the
14845         processor's state.
14846         (gst_signal_processor_setcaps): start() as well as setup() here.
14847         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
14848         (gst_signal_processor_change_state): Stop and cleanup the
14849         processor as we go to NULL.
14850
14851         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
14852         INPLACE_BROKEN is not set.
14853
14854         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
14855         Do the alloc_buffer in bytes, not frames.
14856         
14857 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14858
14859         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
14860         Fix rgb masks when recording in < 24bpp.
14861
14862 2006-08-04  Andy Wingo  <wingo@pobox.com>
14863
14864         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
14865         (gst_signal_processor_prepare)
14866         (gst_signal_processor_update_inputs)
14867         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
14868         (gst_signal_processor_flush)
14869         (gst_signal_processor_sink_activate_push)
14870         (gst_signal_processor_src_activate_pull)
14871         (gst_signal_processor_change_state): Remove the last of the code
14872         that assumes that we process whole buffers at a time. Fix some
14873         debugging. Seems to work now in some cases.
14874         (gst_signal_processor_src_activate_pull): BPB
14875
14876 2006-08-01  Andy Wingo  <wingo@pobox.com>
14877
14878         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
14879         Fix nframes-choosing.
14880         (gst_signal_processor_init): Init pending_in and pending_out.
14881
14882         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
14883         more default sample rate, although we never check that the sample
14884         rate actually gets set. Something for the future.
14885         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
14886         (gst_signal_processor_event): Refcount fixen.
14887         (gst_signal_processor_process): Pull the number of frames to
14888         process from the sizes of the buffers in the input pens.
14889         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
14890         (gst_signal_processor_do_pulls): Add an nframes argument, and use
14891         it instead of buffer_frames.
14892         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
14893         to do_pulls.
14894         (gst_signal_processor_chain)
14895         (gst_signal_processor_sink_activate_push)
14896         (gst_signal_processor_src_activate_pull):  Refcount fixen.
14897
14898         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
14899
14900 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
14901
14902         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
14903         (gst_signal_processor_process):
14904           don't query buffer-frames from caps, add lots of debug-log,
14905           try fix for assert (#349189)
14906
14907 2006-07-31  Wim Taymans  <wim@fluendo.com>
14908
14909         * gst/udp/gstudpsrc.c:
14910         Fix docs.
14911
14912 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
14913
14914         * ext/ladspa/gstsignalprocessor.c:
14915         (gst_signal_processor_add_pad_from_template),
14916         (gst_signal_processor_init), (gst_signal_processor_setcaps),
14917         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
14918         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
14919         (gst_signal_processor_sink_activate_push),
14920         (gst_signal_processor_src_activate_pull),
14921         (gst_signal_processor_change_state):
14922          Add debugs logs here and there, add more error handling, add some
14923          FIXME comments, filed #349189
14924
14925 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14926
14927         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
14928         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
14929         Set caps on buffer correctly.  Fixes bug #349155.
14930
14931 2006-07-28  Wim Taymans  <wim@fluendo.com>
14932
14933         Patch by: Sjoerd Simons <sjoerd at luon dot net>
14934
14935         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
14936         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
14937         (gst_multipart_demux_finalize), (get_line_end),
14938         (multipart_parse_header), (multipart_find_boundary),
14939         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
14940         (gst_multipart_set_property), (gst_multipart_get_property):
14941         Uses GstAdapter instead of own buffering.
14942         Actually parses the mime-type correctly (In tests the mime-type was
14943         always "" with the old version).
14944         Uses the Content-length header if available to speed up things.
14945         Reliably autoscans the boundary name by default.
14946         Fixes #349068.
14947
14948         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
14949         Don't start the stream with a \n.
14950
14951 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
14952
14953         Patch by: Brian Cameron <brian dot cameron at sun com>
14954
14955         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
14956           Open source with O_NONBLOCK (#349015).
14957
14958 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
14959
14960         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
14961         (gst_avi_demux_massage_index):
14962         * gst/avi/gstavidemux.h:
14963           Whitespace fixes and more debug
14964
14965 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
14966
14967         * gst/autodetect/gstautoaudiosink.c:
14968         (gst_auto_audio_sink_create_element_with_pretty_name),
14969         (gst_auto_audio_sink_find_best),
14970         (gst_auto_audio_sink_change_state):
14971           Get rid of old and unused magic sound-server properties stuff.
14972           Add suffix to child sink's name that makes it easy to see from
14973           the name alone which type it actually is (alsa, oss, esd, etc.).
14974
14975 2006-07-27  Wim Taymans  <wim@fluendo.com>
14976
14977         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
14978         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
14979         (gst_udpsrc_start):
14980         * gst/udp/gstudpsrc.h:
14981         Rename "buffer" to "buffer-size" to make clear it is a size we set and
14982         not some sort of feature we enable.
14983
14984 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
14985
14986         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
14987           Use CLOSE_SOCKET() here instead of close() to maintain
14988           win32 workiness.
14989
14990 2006-07-27  Wim Taymans  <wim@fluendo.com>
14991
14992         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14993
14994         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
14995         (gst_udpsrc_create), (gst_udpsrc_set_property),
14996         (gst_udpsrc_get_property), (gst_udpsrc_start):
14997         * gst/udp/gstudpsrc.h:
14998         Added "buffer-size" property to control the kernel receive buffer size.
14999         Update documentation.
15000         Small cleanups. Fixes #348752.
15001         API: buffer-size property
15002
15003 2006-07-26  Wim Taymans  <wim@fluendo.com>
15004
15005         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15006
15007         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15008         (gst_rtp_pcma_pay_handle_buffer):
15009         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15010         (gst_rtp_pcmu_pay_handle_buffer):
15011         Fix timestamp calculation on outgoing RTP packets.
15012         Fixes #348675.
15013
15014 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15015
15016         * ext/taglib/gstid3v2mux.cc:
15017           Fix writing of comment frames (should be COMM not TCOM),
15018           is still sub-optimal though, since we don't retain or
15019           extract the comment descriptions properly (#334375,
15020           also see #334375).
15021
15022 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15023
15024         * gst/wavparse/gstwavparse.c:
15025           #define 'fact' RIFF chunk if we are not compiling against
15026           -base CVS (we don't want to depend on -base CVS for this
15027           one define only, and also not for release order reasons).
15028
15029 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
15030
15031         * ext/taglib/gstid3v2mux.cc:
15032           Handle multiple tags of the same type properly. Re-inject
15033           unparsed ID3v2 frames that we get as binary blobs from
15034           id3demux into the tag again so we don't lose information
15035           when retagging (#334375).
15036
15037 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15038
15039         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15040           Document newly-added properties properly, so that there is a
15041           'Since: 0.10.4' in the plugin docs. Convert some property
15042           names into canonical GObject style (GObject will do that
15043           internally anyway).
15044
15045 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
15046
15047         * gst/id3demux/id3tags.c:
15048         (id3demux_add_id3v2_frame_blob_to_taglist):
15049           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15050           well, and add the version to the blob's buffer caps, since that
15051           information will be needed for deserialisation later on (#348644).
15052
15053 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
15054
15055         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15056         (gst_avi_demux_parse_stream):
15057          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15058          indentation and spacing.
15059
15060 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15061
15062         * docs/plugins/Makefile.am:
15063         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15064         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15065         * docs/plugins/gst-plugins-good-plugins.args:
15066         * docs/plugins/inspect/plugin-1394.xml:
15067         * docs/plugins/inspect/plugin-aasink.xml:
15068         * docs/plugins/inspect/plugin-alaw.xml:
15069         * docs/plugins/inspect/plugin-alpha.xml:
15070         * docs/plugins/inspect/plugin-alphacolor.xml:
15071         * docs/plugins/inspect/plugin-annodex.xml:
15072         * docs/plugins/inspect/plugin-apetag.xml:
15073         * docs/plugins/inspect/plugin-auparse.xml:
15074         * docs/plugins/inspect/plugin-autodetect.xml:
15075         * docs/plugins/inspect/plugin-avi.xml:
15076         * docs/plugins/inspect/plugin-cacasink.xml:
15077         * docs/plugins/inspect/plugin-cairo.xml:
15078         * docs/plugins/inspect/plugin-cdio.xml:
15079         * docs/plugins/inspect/plugin-cutter.xml:
15080         * docs/plugins/inspect/plugin-debug.xml:
15081         * docs/plugins/inspect/plugin-dv.xml:
15082         * docs/plugins/inspect/plugin-efence.xml:
15083         * docs/plugins/inspect/plugin-effectv.xml:
15084         * docs/plugins/inspect/plugin-esdsink.xml:
15085         * docs/plugins/inspect/plugin-flac.xml:
15086         * docs/plugins/inspect/plugin-flxdec.xml:
15087         * docs/plugins/inspect/plugin-gconfelements.xml:
15088         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15089         * docs/plugins/inspect/plugin-goom.xml:
15090         * docs/plugins/inspect/plugin-halelements.xml:
15091         * docs/plugins/inspect/plugin-icydemux.xml:
15092         * docs/plugins/inspect/plugin-id3demux.xml:
15093         * docs/plugins/inspect/plugin-jpeg.xml:
15094         * docs/plugins/inspect/plugin-level.xml:
15095         * docs/plugins/inspect/plugin-matroska.xml:
15096         * docs/plugins/inspect/plugin-mulaw.xml:
15097         * docs/plugins/inspect/plugin-multipart.xml:
15098         * docs/plugins/inspect/plugin-navigationtest.xml:
15099         * docs/plugins/inspect/plugin-ossaudio.xml:
15100         * docs/plugins/inspect/plugin-png.xml:
15101         * docs/plugins/inspect/plugin-rtp.xml:
15102         * docs/plugins/inspect/plugin-rtsp.xml:
15103         * docs/plugins/inspect/plugin-shout2send.xml:
15104         * docs/plugins/inspect/plugin-smpte.xml:
15105         * docs/plugins/inspect/plugin-speex.xml:
15106         * docs/plugins/inspect/plugin-udp.xml:
15107         * docs/plugins/inspect/plugin-videobalance.xml:
15108         * docs/plugins/inspect/plugin-videobox.xml:
15109         * docs/plugins/inspect/plugin-videoflip.xml:
15110         * docs/plugins/inspect/plugin-videomixer.xml:
15111         * docs/plugins/inspect/plugin-wavenc.xml:
15112         * docs/plugins/inspect/plugin-wavparse.xml:
15113         * docs/plugins/inspect/plugin-ximagesrc.xml:
15114           Update files to CVS/Prerelease version, add esdsink docs.
15115
15116         * ext/esd/esdsink.c:
15117           Add gtk-doc blurb.
15118
15119         * gst/rtp/gstrtpmp4vpay.c:
15120           Fix typo in element description.
15121
15122 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15123
15124         * ext/esd/esdsink.c: (gst_esdsink_open),
15125         (gst_esdsink_factory_init):
15126           Prevent libesd from auto-spawning a sound daemon if it
15127           is not already running. Now that we don't do evil stuff
15128           like that any longer we can give esdsink a rank so that
15129           autoaudiosink will try it as well if all other audio
15130           sinks fail (#343051).
15131
15132 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15133
15134         * ext/esd/Makefile.am:
15135           Oops, need to remove README from EXTRA_DIST as well.
15136
15137 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15138
15139         * ext/esd/README:
15140           Remove, it contains nothing useful anyway.
15141
15142         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15143         (gst_esdsink_delay):
15144           Some small clean-ups; use GST_BOILERPLATE etc.
15145
15146 2006-07-24  Wim Taymans  <wim@fluendo.com>
15147
15148         * gst/law/alaw-decode.c: (alawdec_getcaps):
15149         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15150         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15151         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15152         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15153
15154 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
15155
15156         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15157         (gst_wavparse_other), (gst_wavparse_perform_seek),
15158         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15159         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15160         (gst_wavparse_pad_query):
15161         * gst/wavparse/gstwavparse.h:
15162           Use information from 'fact' chunk for length calculation of compressed
15163           samples. Calculate bps if bogus value is found in wav header (embeded
15164           mp2/mp3).
15165           
15166
15167 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
15168
15169         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
15170
15171         * configure.ac:
15172         * gst/udp/Makefile.am:
15173         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15174         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15175         * gst/udp/gstdynudpsink.h:
15176         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15177         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15178         * gst/udp/gstmultiudpsink.h:
15179         * gst/udp/gstudp.c: (plugin_init):
15180         * gst/udp/gstudpsink.h:
15181         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15182         (gst_udpsrc_start), (gst_udpsrc_stop):
15183         * gst/udp/gstudpsrc.h:
15184         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15185         (gst_udp_net_utils_win32_wsa_startup):
15186         * gst/udp/gstudpnetutils.h:
15187           Port udp plugin to win32 (#345288).
15188
15189 2006-07-24  Wim Taymans  <wim@fluendo.com>
15190
15191         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15192         Remove unwanted DEBUG line.
15193
15194 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15195
15196         * gst/id3demux/gstid3demux.c: (plugin_init):
15197         * gst/id3demux/id3tags.c:
15198         (id3demux_add_id3v2_frame_blob_to_taglist):
15199         * gst/id3demux/id3tags.h:
15200           On second thought, it might be wiser and more efficient
15201           not to do tag registration from a streaming thread.
15202
15203 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
15204
15205         * gst/id3demux/id3tags.c:
15206         (id3demux_add_id3v2_frame_blob_to_taglist),
15207         (id3demux_id3v2_frames_to_tag_list):
15208           Put ID3v2 frames we can't parse as binary blobs into private
15209           tags, so that they are not lost when retagging, at least once
15210           id3v2mux has been taught to re-inject those frames again.
15211           See bug #334375.
15212
15213 2006-07-21  Wim Taymans  <wim@fluendo.com>
15214
15215         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15216         (gst_avi_demux_process_next_entry):
15217         Fix some leaks.
15218
15219         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15220         Don't use \n in debug lines.
15221
15222 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
15223
15224         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15225         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15226           Add annodex and icydemux, cleanup the sections a bit
15227
15228 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
15229
15230         Patch by: Alex Lancaster <alexl at users sourceforge net>
15231
15232         * ext/taglib/gstid3v2mux.cc:
15233           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15234           ID3v2 TSSE frames (#347898).
15235
15236 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
15237
15238         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15239           Respect mpegversion for "video/mpeg" and give message in case of
15240           unhandled versions.
15241
15242 2006-07-17  Wim Taymans  <wim@fluendo.com>
15243
15244         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15245         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15246         (gst_pngdec_chain), (gst_pngdec_sink_event),
15247         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15248         (gst_pngdec_sink_activate_push):
15249         * ext/libpng/gstpngdec.h:
15250         Use statically allocated segment instead of leaking.
15251         Various cleanups.
15252         Fix flush and seek handling.
15253
15254 2006-07-16  Wim Taymans  <wim@fluendo.com>
15255
15256         * gst/rtp/Makefile.am:
15257         * gst/rtp/gstrtp.c: (plugin_init):
15258         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15259         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15260         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15261         (gst_rtp_mp4g_depay_set_property),
15262         (gst_rtp_mp4g_depay_get_property),
15263         (gst_rtp_mp4g_depay_change_state),
15264         (gst_rtp_mp4g_depay_plugin_init):
15265         * gst/rtp/gstrtpmp4gdepay.h:
15266         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15267         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15268         (gst_rtp_mp4g_pay_flush):
15269         Added simple generic mpeg4 depayloader.
15270         Fix generic mpeg4 payloader.
15271
15272 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
15273
15274         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15275           Don't try doing state changes on a NULL pointer.
15276
15277 2006-07-14  Wim Taymans  <wim@fluendo.com>
15278
15279         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15280
15281         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15282         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15283         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15284         * gst/rtp/gstrtpamrdepay.h:
15285         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15286         Fixes #321191
15287
15288 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15289
15290         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15291         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15292         Fix segfault when moving mouse pointer to the bottom right corner.
15293
15294 2006-07-12  Wim Taymans  <wim@fluendo.com>
15295
15296         * gst/rtp/Makefile.am:
15297         * gst/rtp/gstrtp.c: (plugin_init):
15298         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15299         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15300         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15301         (gst_rtp_mp2t_depay_set_property),
15302         (gst_rtp_mp2t_depay_get_property),
15303         (gst_rtp_mp2t_depay_change_state),
15304         (gst_rtp_mp2t_depay_plugin_init):
15305         * gst/rtp/gstrtpmp2tdepay.h:
15306         Added mpeg2 TS depayloader. Closing #347234.
15307
15308 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
15309
15310         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15311           Remove g_assert that shouldn't be there and was triggered
15312           after trying to open a device that doesn't exist or can't
15313           be opened for some other reason (#347972).
15314
15315 2006-07-10  Edward Hervey  <edward@fluendo.com>
15316
15317         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15318         (gst_avi_demux_stream_header), (push_tag_lists):
15319         * gst/avi/gstavidemux.h:
15320         Don't push tag events found by gst_riff_parse_info() before outputting
15321         GST_EVENT_NEWSEGMENT.
15322
15323 2006-07-10  Wim Taymans  <wim@fluendo.com>
15324
15325         * gst/rtsp/Makefile.am:
15326         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15327         (rtsp_connection_close):
15328         * gst/rtsp/rtspdefs.h:
15329         replaced closesocket and close in code with one CLOSE_SOCKET. 
15330         Some more cleanups. Fixes #345301.
15331
15332 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
15333
15334         * gst/autodetect/gstautoaudiosink.c:
15335           Fix example pipeline in docs.
15336
15337 2006-07-10  Wim Taymans  <wim@fluendo.com>
15338
15339         Patch by: Rob Taylor <robtaylor at floopily dot org>
15340
15341         * gst/udp/gstmultiudpsink.c: (join_multicast),
15342         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15343         If a destination is added before the stream is set to PAUSED, the
15344         multicast group is not joined as the socket is not created yet. 
15345         Also TTL and LOOP should also be set. Fixes #346921.
15346
15347 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15348
15349         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15350         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15351         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15352         (gst_ximage_src_init):
15353         * sys/ximage/gstximagesrc.h:
15354         Fix use-damage property to actually work :)
15355         Add startx, starty, endx, endy properties so screencasts other than full
15356         screen ones can work.
15357
15358 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15359
15360         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15361         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15362         (gst_ximage_src_class_init), (gst_ximage_src_init):
15363         * sys/ximage/gstximagesrc.h:
15364         Add use_damage property to offer ability to choose whether to use
15365         XDamage or not.
15366
15367 2006-07-07  Wim Taymans  <wim@fluendo.com>
15368
15369         * gst/goom/filters.c: (zoomFilterSetResolution):
15370         Avoid goom coredumping by clearing memory. 
15371         Fixes 345679.
15372
15373 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
15374
15375         * win32/vs6/libgstid3demux.dsp:
15376         Add a link to libgsttag-0.10.lib.
15377
15378 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15379
15380         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15381         (gst_tag_demux_read_range):
15382         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15383         (gst_id3demux_read_range):
15384           Don't return FLOW_UNEXPECTED when a buffer is before
15385           the start of the stream (which might happen with
15386           large ID3v2 tags if the tag reading was done pullrange
15387           based and we then switched to push mode later on).
15388           Fixes regression introduced by commit from June 29th.
15389
15390 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
15391
15392         * ext/taglib/gstid3v2mux.cc:
15393           Make UTF-8 the default encoding when writing string
15394           tags (before, our UTF-8 strings would automatically
15395           be converted to ISO-8859-1 by taglib and written as
15396           ISO-8859-1 fields if that was possible).
15397
15398         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15399         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15400         (test_taglib_id3mux_with_tags):
15401           Add test case that makes sure our UTF-8 strings have
15402           actually been written into the tag as UTF-8.
15403
15404 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15405
15406         * configure.ac:
15407           Let's try that again.
15408
15409 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
15410
15411         * configure.ac:
15412           Disable monoscope plugin for now until it fulfills
15413           all the requirements.
15414
15415 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15416
15417         * configure.ac:
15418         * gst/monoscope/Makefile.am:
15419         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15420         (gst_monoscope_class_init), (gst_monoscope_init),
15421         (gst_monoscope_finalize), (gst_monoscope_reset),
15422         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15423         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15424         (gst_monoscope_sink_event), (gst_monoscope_src_event),
15425         (gst_monoscope_change_state), (plugin_init):
15426         * gst/monoscope/gstmonoscope.h:
15427           Port monoscope visualisation to 0.10.
15428
15429 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
15430
15431         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15432         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15433           Return FLOW_UNEXPECTED when at the end of the file, not
15434           FLOW_ERROR. Fixes 'internal stream error' errors that
15435           would sometimes occur in totem when scrubbing to the
15436           end of an ID3v1 tagged mp3 file.
15437
15438 2006-07-03  Edward Hervey  <edward@fluendo.com>
15439
15440         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15441         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15442         (gst_pngdec_sink_event), (gst_pngdec_change_state):
15443         * ext/libpng/gstpngdec.h:
15444         Implement buffer clipping/dropping using GstSegment.
15445         This provides accurate seeking.
15446
15447 2006-07-03  Edward Hervey  <edward@fluendo.com>
15448
15449         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15450         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15451         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15452         (gst_avi_demux_process_next_entry), (push_tag_lists),
15453         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15454         * gst/avi/gstavidemux.h:
15455         Proper aggregation of each stream's GstFlowReturn in order to figure out
15456         whether the task should stop or not.
15457         Don't send inline events before pushing out a NEW_SEGMENT, more
15458         specifically for GST_TAG_EVENT.
15459         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15460         sub-indexes.
15461
15462 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
15463
15464         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15465
15466         * sys/sunaudio/gstsunaudiomixerctrl.c:
15467         (gst_sunaudiomixer_ctrl_build_list):
15468           Move "Monitor" slider to input tab so it works more like
15469           sdtaudiocontrol, which is what people on Solaris are used
15470           to using for their mixer program (#346259).
15471
15472 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15473
15474         * tests/check/elements/level.c: (GST_START_TEST):
15475           fix a leak, clean up at the end
15476
15477 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15478
15479         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15480         (gst_matroska_demux_send_event),
15481         (gst_matroska_demux_loop_stream_parse_id):
15482         * gst/matroska/matroska-ids.h:
15483           Send tag event after newsegment event.
15484
15485 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
15486
15487         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15488         (gst_id3demux_read_range):
15489           Make sure we don't return GST_FLOW_OK with a NULL buffer in
15490           certain cases where a read beyond the end of the file is
15491           requested. Fixes #345930.
15492
15493         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15494         (gst_tag_demux_read_range):
15495           Fix same issue here as well.
15496
15497 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15498
15499         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15500         
15501         Fix hypothetical crash.
15502
15503 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
15504
15505         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
15506
15507         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15508           Do not modify the ports value. If the user has turned off the
15509           built-in speakers, then we should not reset it in the prepare
15510           function, since this causes the built-in speakers to turn
15511           back on anytime the user changes a track in totem, rhythmbox,
15512           etc. (#346066).
15513
15514 2006-06-23  Wim Taymans  <wim@fluendo.com>
15515
15516         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15517         Fix double caps unref when negotiation fails.
15518
15519 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15520
15521         * ext/annodex/gstcmmldec.c:
15522         * ext/annodex/gstcmmlenc.c:
15523         * ext/annodex/gstcmmlparser.c:
15524         * ext/dv/gstdvdec.c:
15525         * ext/dv/gstdvdemux.c:
15526         * ext/gdk_pixbuf/pixbufscale.c:
15527         * ext/jpeg/gstjpegenc.c:
15528         * ext/jpeg/gstsmokedec.c:
15529         * ext/jpeg/gstsmokeenc.c:
15530         * ext/libpng/gstpngdec.c:
15531         * ext/libpng/gstpngenc.c:
15532         * ext/speex/gstspeexenc.c:
15533         * gst/alpha/gstalphacolor.c:
15534         * gst/cutter/gstcutter.c:
15535         * gst/debug/gstnavigationtest.c:
15536         * gst/icydemux/gsticydemux.c:
15537         * gst/level/gstlevel.c:
15538         * gst/multipart/multipart.c:
15539         * gst/rtp/gstrtpamrpay.c:
15540         * gst/rtp/gstrtpdepay.c:
15541         * gst/rtp/gstrtpilbcpay.c:
15542         * gst/rtp/gstrtpmp4gpay.c:
15543         * gst/rtp/gstrtpmp4vpay.c:
15544         * gst/rtsp/gstrtpdec.c:
15545         * gst/rtsp/gstrtspsrc.c:
15546         * gst/udp/gstdynudpsink.c:
15547         * gst/udp/gstmultiudpsink.c:
15548         * gst/udp/gstudpsrc.c:
15549         * gst/videobox/gstvideobox.c:
15550         * gst/videofilter/gstvideoflip.c:
15551           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15552           plus two minor macro fixes.
15553
15554 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15555
15556         * gst/matroska/matroska-demux.c:
15557         (gst_matroska_demux_check_subtitle_buffer),
15558         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15559         (gst_matroska_demux_subtitle_caps):
15560         * gst/matroska/matroska-ids.c:
15561         (gst_matroska_track_init_subtitle_context):
15562         * gst/matroska/matroska-ids.h:
15563           Try to fix up broken matroska files containing subtitle
15564           streams with non-UTF8 character encodings (courtesy of
15565           mkvmerge) using either the encoding specified in the
15566           GST_SUBTITLE_ENCODING environment variable or the
15567           current locale's character set if it is non-UTF8.
15568           Fixes #337076.
15569
15570 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
15571
15572         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15573           Set image type from APIC frame as "image-type" field
15574           of GST_TAG_IMAGE buffer caps (#344605).
15575
15576 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
15577
15578         * ext/flac/Makefile.am:
15579         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15580         (gst_flac_dec_reset_decoders),
15581         (gst_flac_dec_setup_seekable_decoder),
15582         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15583         (gst_flac_dec_metadata_callback),
15584         (gst_flac_dec_metadata_callback_seekable),
15585         (gst_flac_dec_metadata_callback_stream),
15586         (gst_flac_dec_error_callback),
15587         (gst_flac_dec_error_callback_seekable),
15588         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15589         (gst_flac_dec_read_stream), (gst_flac_dec_write),
15590         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15591         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15592         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15593         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15594         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15595         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15596         (gst_flac_dec_sink_activate_push),
15597         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15598         * ext/flac/gstflacdec.h:
15599           Support chain-based operation, should make flac-over-DAAP
15600           work (#340492).
15601
15602 2006-06-20  Wim Taymans  <wim@fluendo.com>
15603
15604         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15605         Doc updates, merge some unused symbols.
15606
15607 2006-06-20  Wim Taymans  <wim@fluendo.com>
15608
15609         * docs/plugins/Makefile.am:
15610         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15611         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15612         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15613         * gst/rtsp/gstrtspsrc.c:
15614         * gst/rtsp/gstrtspsrc.h:
15615         Added documentation for the rtsp plugin. Fixes #345393.
15616
15617 2006-06-20  Wim Taymans  <wim@fluendo.com>
15618
15619         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15620         (rtsp_connection_close), (rtsp_connection_free):
15621         Use better G_OS_* macros. Fixes #345301 some more.
15622
15623 2006-06-20  Wim Taymans  <wim@fluendo.com>
15624
15625         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15626
15627         * sys/sunaudio/Makefile.am:
15628         * sys/sunaudio/gstsunaudio.c: (plugin_init):
15629         * sys/sunaudio/gstsunaudiomixerctrl.c:
15630         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15631         (gst_sunaudiomixer_ctrl_list_tracks),
15632         (gst_sunaudiomixer_ctrl_get_volume),
15633         (gst_sunaudiomixer_ctrl_set_volume),
15634         (gst_sunaudiomixer_ctrl_set_mute),
15635         (gst_sunaudiomixer_ctrl_set_record):
15636         * sys/sunaudio/gstsunaudiomixerctrl.h:
15637         * sys/sunaudio/gstsunaudiomixertrack.c:
15638         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15639         * sys/sunaudio/gstsunaudiomixertrack.h:
15640         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15641         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15642         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15643         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15644         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15645         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15646         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15647         (gst_sunaudiosrc_reset):
15648         * sys/sunaudio/gstsunaudiosrc.h:
15649         Add a SunAudio source plugin.
15650         Support stereo and right/left channel gain in the mixer plugin.
15651         Support the RECORD flag so that you can switch between line-input and
15652         microphone in gnome-volume-control.
15653         Code cleanups like using an enumerator for track number instead of an 
15654         integer. Fixes #344923.
15655
15656 2006-06-20  Wim Taymans  <wim@fluendo.com>
15657
15658         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15659
15660         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15661         (rtsp_connection_close):
15662         Make RTSP plugin compile on windows. Fixes #345301.
15663         Some changes to original patch to catch errors better.
15664         use ifdef WIN32 instead of ifndef.
15665
15666 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15667
15668         * configure.ac:
15669         If we have libraw1394 >= 1.2.1, then we need libiec61883.
15670
15671 2006-06-18  Edward Hervey  <edward@fluendo.com>
15672
15673         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
15674         After a failed buffer alloc, we need to abort the jpeg decoding (it
15675         started when parsing headers to figure out how many bytes we need
15676         to request downstream).
15677
15678 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
15679
15680         Patch by: Mark Nauwelaerts  <manauw at skynet be>
15681
15682         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15683           Make sure we don't read beyond the end of the file (#345232).
15684
15685 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
15686
15687         * configure.ac:
15688           Fix --disable-external (can't set conditionals conditionally,
15689           #343602).
15690
15691 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
15692
15693         * autogen.sh:
15694         * configure.ac:
15695         * docs/Makefile.am:
15696           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15697
15698         * docs/plugins/Makefile.am:
15699         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15700         * docs/plugins/inspect/plugin-taglib.xml:
15701           Add/fix apev2mux docs.
15702
15703 2006-06-14  Wim Taymans  <wim@fluendo.com>
15704
15705         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15706         (gst_dvdec_finalize), (gst_dvdec_sink_event),
15707         (gst_dvdec_change_state):
15708         Reset segment info on flush.
15709         Alloc segment in _init, free in _finalize.
15710
15711         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15712         Don't send segments twice.
15713
15714 2006-06-14  Wim Taymans  <wim@fluendo.com>
15715
15716         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15717         Respect segment.stop. Fixes #342592.
15718
15719 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15720
15721         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15722           No language specified means the implied language is English
15723           according to the matroska spec (partially fixes #344708);
15724           add some more debug output.
15725
15726 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
15727
15728         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15729         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15730         (gst_wavparse_chain):
15731           When operating chain-based, don't make any assumptions about the
15732           chunking of the incoming data and make streaming work on days other
15733           than the second Thursday after a full moon. Also fix up debug
15734           messages here and there and make use of the most excellent new
15735           gst_pad_query_peer_duration() utility function.
15736           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15737
15738         * gst/wavparse/gstwavparse.h:
15739           Remove trailing comma after last enum value, some compilers don't
15740           like that.
15741
15742 2006-06-13  Wim Taymans  <wim@fluendo.com>
15743
15744         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15745         Handle premature EOS gracefully.
15746
15747 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
15748
15749         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15750           Prevent out of bounds array access when scrubbing towards
15751           the end of the file between the last index entry and the
15752           end. Fixes occasional 'start <= stop' newsegment event
15753           assertions when scrubbing in MJPEG files.
15754
15755 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
15756
15757         * tests/check/elements/.cvsignore:
15758           And another one.
15759
15760 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15761
15762         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15763         (scan_encoded_string), (parse_picture_frame):
15764           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15765
15766         * configure.ac:
15767           Require core >= 0.10.8 (for GST_TAG_IMAGE and
15768           GST_TAG_PPEVIEW_IMAGE used in the patch above).
15769
15770 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15771
15772         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15773           gratuitous comment changes
15774         * tests/check/elements/level.c: (GST_START_TEST):
15775           fix level test leaks
15776
15777 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
15778
15779         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15780         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15781           Use gst_pad_query_peer_duration() utility function here.
15782
15783 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15784
15785         * autogen.sh:
15786           require am17
15787         * configure.ac:
15788         * ext/annodex/Makefile.am:
15789         * ext/cdio/Makefile.am:
15790         * ext/dv/Makefile.am:
15791         * ext/esd/Makefile.am:
15792         * ext/flac/Makefile.am:
15793         * ext/gdk_pixbuf/Makefile.am:
15794         * ext/ladspa/Makefile.am:
15795         * ext/libcaca/Makefile.am:
15796         * ext/speex/Makefile.am:
15797         * ext/taglib/Makefile.am:
15798         * sys/oss/Makefile.am:
15799         * sys/sunaudio/Makefile.am:
15800         * sys/ximage/Makefile.am:
15801           clean up build further
15802
15803 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15804
15805         * gconf/Makefile.am:
15806           Honour --disable-schemas-install configure option. Fixes #344100.
15807
15808 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15809
15810         * tests/examples/level/Makefile.am:
15811           Add -lm to LIBS for pow() function, don't assume one of our
15812           dependencies (such as libxml-2.0) drags it in automatically
15813           (#343603).
15814
15815 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
15816
15817         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
15818
15819         * configure.ac:
15820           We should use $SED and not $(SED) in configure.ac (#343678).
15821
15822 2006-06-09  Wim Taymans  <wim@fluendo.com>
15823
15824         Patch by: Brian Cameron <brian dot cameron at sun dot com>
15825
15826         * sys/sunaudio/gstsunaudiomixerctrl.c:
15827         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
15828         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
15829         (gst_sunaudiomixer_ctrl_set_mute):
15830         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
15831         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
15832         (gst_sunaudiosink_write):
15833         Attached find a patch that fixes a number of bugs with the SunAudio
15834         mixer plugin and fixes #344101:
15835         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
15836            tracks onto the tracklist causing gnome-volume-control's preferences
15837            dialog to be messed up and would core dump if you checked/unchecked
15838            any item.
15839         2. We weren't previously setting the MUTE flag properly.  Fixing this
15840            makes gnome-volume-control work better.
15841         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
15842            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
15843            gnome-volume-control look better.
15844         Also some minor cleanup in gstsunaudiosink.c.
15845
15846 2006-06-09  Wim Taymans  <wim@fluendo.com>
15847
15848         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
15849         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
15850         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
15851         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
15852         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
15853         * ext/jpeg/gstjpegdec.h:
15854         API: Added IDCT method property
15855         Small cleanups.
15856         Avoid dynamic allocation of trivial fixed structure.
15857         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
15858
15859 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15860
15861         * configure.ac:
15862         We now require libraw1394 >= 1.1.0 and that version onwards all
15863         have .pc files.
15864
15865 2006-06-02  Edward Hervey  <edward@fluendo.com>
15866
15867         * gst/law/alaw-decode.c: (alawdec_getcaps): 
15868         Trying to get items from an ANY or EMPTY caps is ... stupid.
15869
15870 2006-06-02  Edward Hervey  <edward@fluendo.com>
15871
15872         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
15873         (gst_dvdec_chain), (gst_dvdec_change_state):
15874         * ext/dv/gstdvdec.h:
15875         Added GstSegment handling, now implements dropping/clipping.
15876
15877 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15878
15879         * ext/aalib/gstaasink.h:
15880         * ext/annodex/gstcmmldec.h:
15881         * ext/cairo/gsttimeoverlay.h:
15882         * ext/dv/gstdvdec.h:
15883         * ext/dv/gstdvdemux.h:
15884         * ext/esd/esdmon.h:
15885         * ext/esd/esdsink.h:
15886         * ext/flac/gstflacenc.h:
15887         * ext/gconf/gstgconfaudiosink.h:
15888         * ext/gconf/gstgconfaudiosrc.h:
15889         * ext/gconf/gstgconfvideosink.h:
15890         * ext/gconf/gstgconfvideosrc.h:
15891         * ext/gdk_pixbuf/gstgdkanimation.h:
15892         * ext/gdk_pixbuf/pixbufscale.h:
15893         * ext/hal/gsthalaudiosink.h:
15894         * ext/hal/gsthalaudiosrc.h:
15895         * ext/jpeg/gstjpegenc.h:
15896         * ext/jpeg/gstsmokedec.h:
15897         * ext/jpeg/gstsmokeenc.h:
15898         * ext/libcaca/gstcacasink.h:
15899         * ext/libmng/gstmngdec.h:
15900         * ext/libmng/gstmngenc.h:
15901         * ext/libpng/gstpngdec.h:
15902         * ext/libpng/gstpngenc.h:
15903         * ext/raw1394/gstdv1394src.h:
15904         * ext/speex/gstspeexenc.h:
15905         * gst/autodetect/gstautoaudiosink.h:
15906         * gst/autodetect/gstautovideosink.h:
15907         * gst/avi/gstavidemux.h:
15908         * gst/cutter/gstcutter.h:
15909         * gst/debug/efence.h:
15910         * gst/debug/gstnavigationtest.h:
15911         * gst/debug/gstnavseek.h:
15912         * gst/flx/gstflxdec.h:
15913         * gst/goom/gstgoom.h:
15914         * gst/icydemux/gsticydemux.h:
15915         * gst/id3demux/gstid3demux.h:
15916         * gst/law/alaw-decode.h:
15917         * gst/law/alaw-encode.h:
15918         * gst/law/mulaw-decode.h:
15919         * gst/law/mulaw-encode.h:
15920         * gst/matroska/matroska-mux.h:
15921         * gst/median/gstmedian.h:
15922         * gst/oldcore/gstaggregator.h:
15923         * gst/oldcore/gstfdsink.h:
15924         * gst/oldcore/gstmd5sink.h:
15925         * gst/oldcore/gstmultifilesrc.h:
15926         * gst/oldcore/gstpipefilter.h:
15927         * gst/oldcore/gstshaper.h:
15928         * gst/oldcore/gststatistics.h:
15929         * gst/rtp/gstasteriskh263.h:
15930         * gst/rtp/gstrtpL16depay.h:
15931         * gst/rtp/gstrtpL16pay.h:
15932         * gst/rtp/gstrtpamrdepay.h:
15933         * gst/rtp/gstrtpamrpay.h:
15934         * gst/rtp/gstrtpdepay.h:
15935         * gst/rtp/gstrtpgsmdepay.h:
15936         * gst/rtp/gstrtpgsmpay.h:
15937         * gst/rtp/gstrtph263pay.h:
15938         * gst/rtp/gstrtph263pdepay.h:
15939         * gst/rtp/gstrtph263ppay.h:
15940         * gst/rtp/gstrtpmp4gpay.h:
15941         * gst/rtp/gstrtpmp4vdepay.h:
15942         * gst/rtp/gstrtpmp4vpay.h:
15943         * gst/rtp/gstrtpmpadepay.h:
15944         * gst/rtp/gstrtpmpapay.h:
15945         * gst/rtp/gstrtppcmadepay.h:
15946         * gst/rtp/gstrtppcmapay.h:
15947         * gst/rtp/gstrtppcmudepay.h:
15948         * gst/rtp/gstrtppcmupay.h:
15949         * gst/rtp/gstrtpspeexdepay.h:
15950         * gst/rtp/gstrtpspeexpay.h:
15951         * gst/rtsp/gstrtpdec.h:
15952         * gst/rtsp/gstrtspsrc.h:
15953         * gst/smpte/gstsmpte.h:
15954         * gst/udp/gstdynudpsink.h:
15955         * gst/udp/gstmultiudpsink.h:
15956         * gst/udp/gstudpsink.h:
15957         * gst/udp/gstudpsrc.h:
15958         * gst/videofilter/gstvideobalance.h:
15959         * gst/videofilter/gstvideoflip.h:
15960         * sys/oss/gstossdmabuffer.h:
15961         * sys/oss/gstossmixerelement.h:
15962         * sys/oss/gstosssink.h:
15963         * sys/oss/gstosssrc.h:
15964         * sys/osxvideo/osxvideosink.h:
15965         * sys/sunaudio/gstsunaudiomixer.h:
15966         * sys/sunaudio/gstsunaudiosink.h:
15967         * sys/ximage/gstximagesrc.h:
15968         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
15969
15970 2006-05-31  Wim Taymans  <wim@fluendo.com>
15971
15972         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
15973         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
15974         (gst_goom_src_setcaps), (gst_goom_src_event),
15975         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
15976         (gst_goom_change_state):
15977         * gst/goom/gstgoom.h:
15978         Handle QoS.
15979         Handle flushing, discont and events.
15980         Fix timestamps and various other cleanups.
15981
15982 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15983
15984         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
15985         Fix bus reset when using libiec61883
15986
15987 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15988
15989         * configure.ac:
15990         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
15991         * ext/raw1394/Makefile.am:
15992         Add CFLAGS.
15993         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
15994         New method, to receive using libiec61883.
15995         (gst_dv1394src_iso_receive),
15996         #ifdef'd out if libiec61883 is present.
15997         (gst_dv1394src_bus_reset),
15998         Get userdata correctly if using libiec61883. 
15999         (gst_dv1394src_create),
16000         When using libiec61883, only poll one fd and no need to read.
16001         (gst_dv1394src_discover_avc_node),
16002         Replace g_warnings.
16003         (gst_dv1394src_start),
16004         Create new handle when we know which dv port.  More reliable
16005         than setting port on an existing handle.  Initialise libiec61883.
16006         (gst_dv1394src_stop):
16007         If using libiec61883, then cleanup its handle properly.
16008         * ext/raw1394/gstdv1394src.h:
16009         Add libiec61883 handle.
16010
16011 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
16012
16013         * gst/avi/gstavidemux.c:
16014           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16015         * win32/MANIFEST:
16016           sort file listing
16017         * win32/vs6/libgstavi.dsp:
16018           add gstavimux.c to the project
16019         * win32/vs6/libgstid3demux.dsp:
16020           add link to zlib library
16021         * win32/vs6/libgstmatroska.dsp:
16022           add matroska-ids.c to the project
16023
16024 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
16025
16026         Patch by: Sebastian Dröge  <mail at slomosnail de >
16027
16028         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16029         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16030         * ext/taglib/Makefile.am:
16031         * ext/taglib/gstapev2mux.cc:
16032         * ext/taglib/gstapev2mux.h:
16033         * ext/taglib/gstid3v2mux.cc:
16034         * ext/taglib/gsttaglibmux.c: (plugin_init):
16035         * ext/taglib/gsttaglibmux.h:
16036           Add apev2mux element (#343122).
16037         
16038         * tests/check/Makefile.am:
16039         * tests/check/elements/apev2mux.c:
16040         (test_taglib_apev2mux_create_tags),
16041         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16042         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16043         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16044         (apev2mux_suite), (main):
16045           Add unit test for apev2mux element.
16046
16047 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16048
16049         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16050         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16051         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16052           GST_PTR_FORMAT should be used to print caps in debug statements.
16053
16054 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16055
16056         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
16057
16058         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16059         (ape_demux_parse_tags):
16060           Some clean-ups and additions: map APE 'file' tag to
16061           GST_TAG_LOCATION (#343123); add support for extracting
16062           the track count and clean up parsing a bit (#343127).
16063
16064 2006-05-28  Edward Hervey  <edward@fluendo.com>
16065
16066         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16067         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16068
16069 2006-05-28  Edward Hervey  <edward@fluendo.com>
16070
16071         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16072         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16073         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16074         * ext/jpeg/gstjpegdec.h:
16075         Clip outgoing buffers according to currently configured segment.
16076
16077 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16078
16079         * ext/taglib/gstid3v2mux.cc:
16080           Handle  writing of track-count or album-volume-count without
16081           track-number or albume-volume-number (in this case the number
16082           will just be set to 0).
16083
16084         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16085           It would be nice if we actually checked the values received for
16086           track/album-volume number/count in  _check_tags(), rather than
16087           setting them again ...
16088
16089 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
16090
16091         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16092           A track/volume number or count of 0 does not make sense,
16093           just ignore it along with negative numbers (a tag might
16094           only contain a track count without a track number).
16095
16096 2006-05-27  Edward Hervey  <edward@fluendo.com>
16097
16098         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16099         (gst_jpeg_dec_sink_event):
16100         Abort decompression when receiving FLUSH_STOP. This should avoid
16101         issues when interrupting decoding with flushes.
16102
16103 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16104
16105         * ext/flac/gstflac.c:
16106           Don't #include file we don't dist any longer.
16107
16108 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
16109
16110         * README:
16111           Replace current README (containing the release notes from
16112           some 0.9.x version) with a proper README taken from the core.
16113
16114 2006-05-24  Wim Taymans  <wim@fluendo.com>
16115
16116         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16117         Implement EOS correctly by either posting
16118         SEGMENT_DONE or pushing an EOS message depending
16119         on the seek type. Fixes #342592
16120
16121 2006-05-24  Wim Taymans  <wim@fluendo.com>
16122
16123         * gst/law/alaw-decode.c: (gst_alawdec_chain):
16124         * gst/law/alaw-decode.h:
16125         * gst/law/alaw-encode.c: (gst_alawenc_chain):
16126         * gst/law/alaw-encode.h:
16127         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16128         * gst/law/mulaw-decode.h:
16129         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16130         * gst/law/mulaw-encode.h:
16131         Some cleanups in the chain functions.
16132         Remove some GStreamer 0.0.2 bits.
16133
16134 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16135
16136         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16137
16138         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16139           gst_collect_pads_stop() needs to be called before chaining up
16140           to the parent class (#342734).
16141
16142 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16143
16144         * ext/flac/Makefile.am:
16145         * ext/flac/flac_compat.h:
16146         * ext/flac/gstflac.c:
16147         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16148         * ext/flac/gstflacenc.c:
16149           Remove backwards compatibility cruft for dealing with FLAC API
16150           changes in the 1.0.x series - we require 1.1.1 or newer these days.
16151
16152 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
16153
16154         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16155         (gst_matroska_demux_push_xiph_codec_priv_data),
16156         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16157         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16158         * gst/matroska/matroska-ids.h:
16159         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16160         (gst_matroska_mux_video_pad_setcaps),
16161         (xiph3_streamheader_to_codecdata),
16162         (vorbis_streamheader_to_codecdata),
16163         (theora_streamheader_to_codecdata),
16164         (gst_matroska_mux_audio_pad_setcaps),
16165         (gst_matroska_mux_write_data):
16166           Add support for muxing/demuxing theora video (#342448; too bad
16167           none of the usual linux players can actually play this). Playback
16168           in GStreamer will require additional changes to theoradec in -base.
16169           Refactor streamheaders <=> CodecPrivateData code a bit; some small
16170           cleanups.
16171
16172 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16173
16174         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16175         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16176           Fix crashes when the horizontal subsampling is 1.
16177           Fixes #342097.
16178
16179 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
16180
16181         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16182
16183         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16184         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16185         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16186         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16187         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16188         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16189         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16190         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16191         (gst_avi_mux_change_state):
16192         * gst/avi/gstavimux.h:
16193           Some enhancements for avimux (#342526):
16194            - add odml (large file) index support
16195            - store codec init data (e.g. huffyuv)
16196            - miscellaneous other fixes/cleanups
16197
16198 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
16199
16200         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16201         Don't output any tag when we encounter a negative track number - the
16202         tag type is uint, so we end up outputting huge positive numbers
16203         instead. (Fixes: #342029)
16204
16205 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16206
16207         * configure.ac:
16208           update for new GSTPB_PLUGINS_DIR
16209
16210 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
16211
16212         * rtp/gst/gstrtph263pay.c:
16213         Properly set static caps for H263 at 34.
16214
16215 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
16216
16217         Patch by: James "Doc" Livingston  <doclivingston gmail com>
16218
16219         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16220           Merge event tags and tag setter tags correctly (#339918). Also,
16221           don't leak taglist in case of an error.
16222           
16223 2006-05-17  Edward Hervey  <edward@fluendo.com>
16224
16225         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
16226         We can only do caps intersection if the othercaps are non-empty and not
16227         ANY. Else we return the pad template (base_caps).
16228
16229 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
16230
16231         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16232           Fix crash when outputting debugging information for certain
16233           pictures (always good to use the right struct member for
16234           the number of records in an array).
16235
16236 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
16237
16238         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
16239
16240         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16241         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16242         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16243         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16244         (gst_ebml_read_float), (gst_ebml_read_ascii),
16245         (gst_ebml_read_binary):
16246           Don't create unnecessary sub-buffers all the time. Dramatically
16247           improves performance with multiple concurrently running
16248           matroskademux instances (#341818) (and avoids doing
16249           unnecessarily inefficient things in the general case).
16250
16251 2006-05-16  Edward Hervey  <edward@fluendo.com>
16252
16253         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
16254         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16255         return value of gst_pad_push_event().
16256
16257 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
16258
16259         * gst/autodetect/gstautoaudiosink.c:
16260         (gst_auto_audio_sink_find_best):
16261         * gst/autodetect/gstautovideosink.c:
16262         (gst_auto_video_sink_find_best):
16263         Make the name of the child element be based on the name of the
16264         parent, so that debug output is more useful.
16265         
16266         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16267         (parse_insert_string_field), (parse_split_strings):
16268         Rework string parsing to always walk over BOM markers in UTF16
16269         strings, using the endianness indicated by the innermost one,
16270         then trying the opposite endianness if that fails to convert
16271         to valid UTF-8. Fixes #341774
16272
16273 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16274
16275         Patch from: Matthieu <matthieu at fluendo dot com>
16276
16277         * ext/libpng/Makefile.am:
16278         Add LIBPNG_CFLAGS.
16279
16280 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
16281
16282         * ext/taglib/gstid3v2mux.cc:
16283           Add support for writing images (APIC frames) into ID3v2
16284           tags (picture type always set to 'other' for now though).
16285
16286 2006-05-14  Michael Smith  <msmith@fluendo.com>
16287
16288         * gst/wavparse/gstwavparse.c:
16289           Update docs; wavparse implements push and pull modes.
16290
16291 2006-05-12  Wim Taymans  <wim@fluendo.com>
16292
16293         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16294         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16295         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16296         Ooops, bitten by the copy-and-paste design paradigm, fixes
16297         seek again.
16298
16299 2006-05-12  Wim Taymans  <wim@fluendo.com>
16300
16301         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16302         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16303         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16304         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16305         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16306         (gst_avi_demux_massage_index),
16307         (gst_avi_demux_calculate_durations_from_index),
16308         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16309         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16310         (gst_avi_demux_loop):
16311         * gst/avi/gstavidemux.h:
16312         Some cleanups, prepare to use GstSegment.
16313         Fix error in entry walking code.
16314         Fix VBR detection.
16315         Smarter timestamp calculation code.
16316         Uniform error/eos handling.
16317
16318 2006-05-12  Michael Smith  <msmith@fluendo.com>
16319
16320         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16321         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16322           Fix use of uninitialised values if we're NOT seeking in ready.
16323           Fix typos.
16324
16325 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
16326
16327         * gst/wavparse/Makefile.am:
16328           Add CFLAGS and LIBS for libgstbase, fixes build on
16329           Cygwin (#341489).
16330
16331 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16332
16333         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16334           Some more debug info. No need to check whether the string
16335           returned by g_convert() is really UTF-8 - either it is or
16336           we get NULL returned.
16337
16338 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
16339
16340         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16341           Fix parsing of numeric genre strings some more, by ensuring that
16342           we only try and parse strings that a) Start with '(' and b) Consist
16343           only of digits.
16344           Also, when finding an escaping '((' sequence, bust it back to '(' by
16345           swallowing the first parenthesis
16346
16347 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
16348
16349         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16350         (gst_esdsink_open), (gst_esdsink_close):
16351         * ext/esd/esdsink.h:
16352           Move the esd_get_server_info() into gst_esdsink_open() and fail
16353           with a decent error message on errors.
16354
16355 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16356
16357         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16358         (gst_esdmon_channels_get_type):
16359         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16360         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16361         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16362         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16363         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16364         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16365         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16366         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16367         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16368         * gst/videomixer/videomixer.c:
16369         (gst_video_mixer_background_get_type):
16370           Const-ify GEnumValue arrays.
16371
16372 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
16373
16374         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
16375
16376         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16377         (gst_avi_mux_do_video_buffer):
16378           Work around gst_buffer_make_metadata_writable() bug that
16379           results in avimux marking all frames in the index as
16380           keyframes (#340859).
16381           
16382 2006-05-08  Wim Taymans  <wim@fluendo.com>
16383
16384         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16385         Make parsing of urls suck slightly less.
16386
16387 2006-05-08  Edward Hervey  <edward@fluendo.com>
16388
16389         * autogen.sh: (CONFIGURE_DEF_OPT): 
16390         libtoolize on Darwin/MacOSX is called glibtoolize.
16391
16392 2006-05-08  Wim Taymans  <wim@fluendo.com>
16393
16394         Patch by: Jens Granseuer <jensgr at gmx dot net>
16395
16396         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16397         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16398         C89 compliance fixes. Fixes #340980
16399
16400 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
16401
16402         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16403         * ext/flac/gstflacdec.h:
16404           Handle segment seeks that include the end of the file as stop point
16405           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16406           message instead of an EOS event in case we're in segment seek
16407           mode (fixes #340699).
16408           
16409 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
16410
16411         * ext/cairo/gsttextoverlay.c:
16412         * ext/flac/gstflacdec.c:
16413         * ext/gdk_pixbuf/pixbufscale.c:
16414         * gst/apetag/gstapedemux.c:
16415         * gst/debug/breakmydata.c:
16416         * gst/debug/testplugin.c:
16417         * gst/matroska/ebml-write.c:
16418         * gst/multipart/multipartdemux.c:
16419         * sys/osxaudio/gstosxaudiosink.c:
16420         * sys/osxaudio/gstosxaudiosrc.c:
16421         Add semicolons after GST_BOILERPLATE[_FULL] so that
16422         indent doesn't mess up following lines.
16423
16424 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
16425
16426         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16427
16428         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16429           Don't leak caps when freeing the stream context (#340623).
16430
16431 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
16432
16433         * configure.ac:
16434           Back to CVS
16435
16436 === release 0.10.3 ===
16437
16438 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
16439
16440         * configure.ac:
16441           releasing 0.10.3, "Desplazado"
16442
16443 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16444
16445         * gst/matroska/matroska-mux.c:
16446         (gst_matroska_mux_stream_is_vorbis_header),
16447         (gst_matroska_mux_write_data):
16448           Don't strcmp() NULL strings.
16449           Only start new clusters on video keyframes, not on any
16450           random audio buffer that doesn't have the DELTA_UNIT
16451           flag set (fixes 'make check' again).
16452
16453 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
16454
16455         Patch by: Mark Nauwelaerts  <manauw at skynet be>
16456
16457         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16458         (gst_matroska_mux_stream_is_vorbis_header),
16459         (gst_matroska_mux_write_data):
16460           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16461           value and then dead-lock when muxing vorbis audio streams
16462           (the three vorbis header buffers carry no timestamp, and it
16463           would try to mux these after all video buffers). Fixes #340346.
16464
16465           Improve clustering: start a new cluster also whenever we get
16466           a keyframe.     
16467
16468 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16469
16470         * win32/common/config.h:
16471         * win32/MANIFEST
16472           add the generated file as well
16473
16474 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16475
16476         * Makefile.am:
16477         * configure.ac:
16478         * win32/common/config.h.in:
16479           add win32 stuff
16480
16481 2006-05-03  Michael Smith  <msmith@fluendo.com>
16482
16483         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16484           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16485           SUCKS.
16486
16487 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16488
16489         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16490         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16491         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16492           don't leak caps-string
16493
16494 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16495
16496         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16497         (gst_id3demux_sink_activate):
16498           Let core insert default error message for TYPE_NOT_FOUND
16499           errors, it's just as good as our own and has the added
16500           bonus of being translated.
16501
16502 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
16503
16504         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16505         (gst_tag_demux_sink_event):
16506         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16507         (gst_id3demux_sink_event):
16508           Post an error message when we get an EOS event and were not
16509           able to find out the type of stream.
16510
16511         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16512         (test_taglib_id3mux_with_tags):
16513           Decrease num-buffers to 16 per iteration again, otherwise the
16514           many memcpy()s and reallocations in the test will hammer slow
16515           CPUs completely and make the test timeout.
16516
16517 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16518
16519         * configure.ac:
16520           figure out where plugins-base plugins are
16521         * tests/check/Makefile.am:
16522           use plugins-base plugins, so we have typefind functions
16523         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16524           increase num-buffers, this makes sure the test errors out instead
16525           of timing out when no typefind functions are present
16526
16527 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16528
16529         * docs/plugins/Makefile.am:
16530           also check .cc files for gtk-doc markup
16531         * configure.ac:
16532         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16533         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16534         * tests/check/Makefile.am:
16535         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16536         * ext/Makefile.am:
16537         * ext/taglib/Makefile.am:
16538         * ext/taglib/gstid3v2mux.h:
16539         * ext/taglib/gsttaglibmux.c:
16540         * ext/taglib/gsttaglibmux.h:
16541           move taglib-based id3v2muxer to -good.  Fixes #336110.
16542
16543 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16544
16545         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16546           ... and fix multichannel/WAVFORMATEX support again.
16547
16548 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
16549
16550         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16551         (gst_wavparse_class_init), (gst_wavparse_dispose),
16552         (gst_wavparse_reset), (gst_wavparse_init),
16553         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16554         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16555         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16556         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16557         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16558         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16559         (gst_wavparse_stream_data), (gst_wavparse_loop),
16560         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16561         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16562         (gst_wavparse_change_state), (plugin_init):
16563         * gst/wavparse/gstwavparse.h:
16564           Add push (streaming) mode to wavparse (fixes #337625)
16565
16566 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16567
16568         * configure.ac:
16569         * tests/Makefile.am:
16570           add ximagesrc icles test
16571
16572 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16573
16574         * configure.ac:
16575         * docs/plugins/Makefile.am:
16576         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16577         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16578         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16579         (gst_cmml_enc_push_clip):
16580         * sys/Makefile.am:
16581         * sys/ximage/Makefile.am:
16582         * sys/ximage/gstximagesrc.c:
16583           Move ximagesrc plug-in to good after review.  Fixes #336756.
16584
16585 2006-04-28  Michael Smith  <msmith@fluendo.com>
16586
16587         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16588         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16589         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16590         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16591         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16592         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16593         * gst/icydemux/gsticydemux.h:
16594           Fix event handling: cache events when typefinding and forward later.
16595
16596 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16597
16598         * sys/osxaudio/gstosxaudiosink.c:
16599         (plugin_init):
16600          Register osxaudiosrc to the plugin.
16601         * sys/osxaudio/gstosxaudiosrc.c:
16602         (gst_osx_audio_src_osxelement_do_init),
16603         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16604         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16605         (gst_osx_audio_src_get_property),
16606         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16607         (gst_osx_audio_src_osxelement_init):
16608         * sys/osxaudio/gstosxaudiosrc.h:
16609           Port of osxaudiosrc to 0.10.
16610         * sys/osxaudio/Makefile.am:
16611           Add osxaudiosrc
16612
16613 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16614
16615         * sys/osxaudio/gstosxringbuffer.c:
16616         * sys/osxaudio/gstosxringbuffer.h:
16617           Forgot to commit earlier, part of the OSX audio plugin port
16618
16619 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16620
16621         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16622         (parse_split_strings):
16623           Recognise and skip any byte order marker (BOM) in
16624           UTF-16 strings.
16625
16626 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16627
16628         * docs/plugins/Makefile.am:
16629         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16630         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16631         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16632         * docs/plugins/inspect/plugin-avi.xml:
16633         * gst/avi/gstavidemux.c:
16634         * gst/avi/gstavimux.c:
16635           Add docs for both avidemux and avimux.
16636
16637 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
16638
16639         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16640
16641         * gst/avi/Makefile.am:
16642         * gst/avi/gstavi.c: (plugin_init):
16643         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16644         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16645         (gst_avi_mux_class_init), (gst_avi_mux_init),
16646         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16647         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16648         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16649         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16650         (gst_avi_mux_riff_get_avix_header),
16651         (gst_avi_mux_riff_get_video_header),
16652         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16653         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16654         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16655         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16656         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16657         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16658         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16659         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16660         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16661         (gst_avi_mux_change_state):
16662         * gst/avi/gstavimux.h:
16663           Port AVI muxer to GStreamer-0.10 (#332031).
16664
16665         * tests/check/Makefile.am:
16666         * tests/check/elements/avimux.c:
16667         * tests/check/elements/.cvsignore:
16668           Add unit test for AVI muxer.
16669
16670 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
16671
16672         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16673         (gst_wavparse_class_init), (gst_wavparse_reset),
16674         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16675         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16676         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16677         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16678         (gst_wavparse_stream_data), (gst_wavparse_loop),
16679         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16680         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16681         (plugin_init):
16682         * gst/wavparse/gstwavparse.h:
16683           reverted patch #337625 for the price of 1 hour sleep
16684
16685 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16686
16687         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16688         (gst_wavparse_class_init), (gst_wavparse_reset),
16689         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16690         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16691         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16692         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16693         (gst_wavparse_stream_data), (gst_wavparse_loop),
16694         (gst_wavparse_chain), (plugin_init):
16695         * gst/wavparse/gstwavparse.h:
16696           correct partial implementation of push mode
16697           (from my last commit)
16698
16699 2006-04-26  Wim Taymans  <wim@fluendo.com>
16700
16701         * ext/esd/esdsink.c:
16702         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16703         it is not in esd.h
16704
16705 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
16706
16707         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16708         (gst_au_parse_class_init), (gst_au_parse_init),
16709         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16710         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16711         (gst_au_parse_chain), (gst_au_parse_src_convert),
16712         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16713         (gst_au_parse_sink_event), (gst_au_parse_src_event),
16714         (gst_au_parse_change_state):
16715         * gst/auparse/gstauparse.h:
16716           Rewrite auparse to suck a little bit less: make source pad
16717           dynamic, so decodebin/playbin work with non-raw formats
16718           like alaw/mulaw; add query function for duration/position
16719           queries; check whether we have enough data before attempting
16720           to parse the header (instead of crashing when that is not the
16721           case); work around audioconvert sucking by swapping endianness
16722           to the native endianness ourselves for float formats; send
16723           initial newsegment event. Fixes #161712.
16724
16725 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16726
16727         * sys/osxaudio/Makefile.am:
16728         * sys/osxaudio/gstosxaudioelement.c:
16729         (gst_osx_audio_element_get_type),
16730         (gst_osx_audio_element_class_init):
16731         * sys/osxaudio/gstosxaudioelement.h:
16732         * sys/osxaudio/gstosxaudiosink.c:
16733         (gst_osx_audio_sink_osxelement_do_init),
16734         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16735         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16736         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16737         (gst_osx_audio_sink_create_ringbuffer),
16738         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16739         (plugin_init):
16740         * sys/osxaudio/gstosxaudiosink.h:
16741         Port of osxaudiosink to 0.10
16742
16743 2006-04-26  Wim Taymans  <wim@fluendo.com>
16744
16745         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16746         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16747         the size of the ringbuffer. This should fix hangs with older 
16748         esd sound servers.
16749
16750 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
16751
16752         * ext/aalib/gstaasink.c:
16753         * ext/annodex/gstcmmldec.c:
16754         * ext/annodex/gstcmmlenc.c:
16755         * ext/cairo/gsttextoverlay.c:
16756         * ext/cairo/gsttimeoverlay.c:
16757         * ext/cdio/gstcdiocddasrc.c:
16758         * ext/dv/gstdvdec.c:
16759         * ext/dv/gstdvdemux.c:
16760         * ext/esd/esdmon.c:
16761         * ext/esd/esdsink.c:
16762         * ext/flac/gstflacenc.c:
16763         * ext/flac/gstflactag.c:
16764         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16765         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16766         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16767         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16768         * ext/gdk_pixbuf/pixbufscale.c:
16769         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16770         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16771         * ext/jpeg/gstjpegdec.c:
16772         * ext/jpeg/gstjpegenc.c:
16773         * ext/jpeg/gstsmokedec.c:
16774         * ext/jpeg/gstsmokeenc.c:
16775         * ext/libcaca/gstcacasink.c:
16776         * ext/libmng/gstmngdec.c:
16777         * ext/libmng/gstmngenc.c:
16778         * ext/libpng/gstpngdec.c:
16779         * ext/libpng/gstpngenc.c:
16780         * ext/mikmod/gstmikmod.c:
16781         * ext/raw1394/gstdv1394src.c:
16782         * ext/shout2/gstshout2.c: (gst_shout2send_init):
16783         * ext/shout2/gstshout2.h:
16784         * ext/speex/gstspeexdec.c:
16785         * ext/speex/gstspeexenc.c:
16786         * gst/alpha/gstalpha.c:
16787         * gst/alpha/gstalphacolor.c:
16788         * gst/apetag/gstapedemux.c:
16789         * gst/auparse/gstauparse.c:
16790         * gst/autodetect/gstautoaudiosink.c:
16791         (gst_auto_audio_sink_base_init):
16792         * gst/autodetect/gstautovideosink.c:
16793         (gst_auto_video_sink_base_init):
16794         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16795         * gst/avi/gstavimux.c: (gst_avimux_base_init):
16796         * gst/cutter/gstcutter.c:
16797         * gst/debug/breakmydata.c:
16798         * gst/debug/efence.c:
16799         * gst/debug/gstnavigationtest.c:
16800         * gst/debug/gstnavseek.c:
16801         * gst/debug/negotiation.c:
16802         * gst/debug/progressreport.c:
16803         * gst/debug/testplugin.c:
16804         * gst/effectv/gstaging.c:
16805         * gst/effectv/gstdice.c:
16806         * gst/effectv/gstedge.c:
16807         * gst/effectv/gstquark.c:
16808         * gst/effectv/gstrev.c:
16809         * gst/effectv/gstshagadelic.c:
16810         * gst/effectv/gstvertigo.c:
16811         * gst/effectv/gstwarp.c:
16812         * gst/flx/gstflxdec.c:
16813         * gst/goom/gstgoom.c:
16814         * gst/icydemux/gsticydemux.c:
16815         * gst/id3demux/gstid3demux.c:
16816         * gst/interleave/deinterleave.c:
16817         * gst/interleave/interleave.c:
16818         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
16819         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
16820         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
16821         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
16822         * gst/level/gstlevel.c:
16823         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
16824         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
16825         * gst/median/gstmedian.c:
16826         * gst/monoscope/gstmonoscope.c:
16827         * gst/multipart/multipartdemux.c:
16828         * gst/multipart/multipartmux.c:
16829         * gst/oldcore/gstaggregator.c:
16830         * gst/oldcore/gstfdsink.c:
16831         * gst/oldcore/gstmd5sink.c:
16832         * gst/oldcore/gstmultifilesrc.c:
16833         * gst/oldcore/gstpipefilter.c:
16834         * gst/oldcore/gstshaper.c:
16835         * gst/oldcore/gststatistics.c:
16836         * gst/rtp/gstasteriskh263.c:
16837         * gst/rtp/gstrtpL16depay.c:
16838         * gst/rtp/gstrtpL16pay.c:
16839         * gst/rtp/gstrtpamrdepay.c:
16840         * gst/rtp/gstrtpamrpay.c:
16841         * gst/rtp/gstrtpdepay.c:
16842         * gst/rtp/gstrtpgsmpay.c:
16843         * gst/rtp/gstrtph263pay.c:
16844         * gst/rtp/gstrtph263pdepay.c:
16845         * gst/rtp/gstrtph263ppay.c:
16846         * gst/rtp/gstrtpilbcdepay.c:
16847         * gst/rtp/gstrtpmp4gpay.c:
16848         * gst/rtp/gstrtpmp4vdepay.c:
16849         * gst/rtp/gstrtpmp4vpay.c:
16850         * gst/rtp/gstrtpmpadepay.c:
16851         * gst/rtp/gstrtpmpapay.c:
16852         * gst/rtp/gstrtppcmadepay.c:
16853         * gst/rtp/gstrtppcmapay.c:
16854         * gst/rtp/gstrtppcmudepay.c:
16855         * gst/rtp/gstrtppcmupay.c:
16856         * gst/rtp/gstrtpspeexdepay.c:
16857         * gst/rtp/gstrtpspeexpay.c:
16858         * gst/rtsp/gstrtpdec.c:
16859         * gst/rtsp/gstrtspsrc.c:
16860         * gst/smpte/gstsmpte.c:
16861         * gst/udp/gstdynudpsink.c:
16862         * gst/udp/gstmultiudpsink.c:
16863         * gst/udp/gstudpsink.c:
16864         * gst/udp/gstudpsrc.c:
16865         * gst/videobox/gstvideobox.c:
16866         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
16867         * gst/videofilter/gstvideobalance.c:
16868         * gst/videofilter/gstvideoflip.c:
16869         * gst/videofilter/gstvideotemplate.c:
16870         (gst_videotemplate_base_init):
16871         * gst/videomixer/videomixer.c:
16872         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16873         (gst_wavparse_class_init), (gst_wavparse_dispose),
16874         (gst_wavparse_reset), (gst_wavparse_init),
16875         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
16876         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
16877         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
16878         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
16879         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16880         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16881         (gst_wavparse_change_state):
16882         * gst/wavparse/gstwavparse.h:
16883         * sys/oss/gstossmixerelement.c:
16884         * sys/oss/gstosssink.c:
16885         * sys/oss/gstosssrc.c:
16886         * sys/osxaudio/gstosxaudioelement.c:
16887         * sys/osxaudio/gstosxaudiosink.c:
16888         * sys/osxaudio/gstosxaudiosrc.c:
16889         * sys/sunaudio/gstsunaudiomixer.c:
16890         * sys/sunaudio/gstsunaudiosink.c:
16891           Define GstElementDetails as const and also static (when defined as
16892           global)
16893
16894 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16895
16896         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16897           Source pad has fixed caps. If we don't set this, bad
16898           things happen when the window is resized.
16899
16900 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16901
16902         * gst/matroska/Makefile.am:
16903         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16904         (gst_matroska_demux_handle_src_event):
16905         * gst/matroska/matroska-ids.c:
16906         (gst_matroska_track_init_video_context),
16907         (gst_matroska_track_init_audio_context),
16908         (gst_matroska_track_init_subtitle_context),
16909         (gst_matroska_track_init_complex_context):
16910         * gst/matroska/matroska-ids.h:
16911           Handle case where the TrackType ebml chunk does not come before the
16912           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
16913           events.
16914
16915 2006-04-25  Wim Taymans  <wim@fluendo.com>
16916
16917         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
16918         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
16919         It's codec_data, not codec_info.
16920
16921 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16922
16923         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
16924
16925         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
16926           Handle codec_data for VfW compatibility codec IDs (#339451)
16927
16928         * gst/matroska/matroska-mux.c:
16929         (gst_matroska_mux_video_pad_setcaps):
16930           Same here, handle codec_data and add additional caps we can handle
16931           now to the pad template (huffyuv, dv and h263 video) (#339451)
16932
16933 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
16934
16935         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
16936
16937         * gst/matroska/matroska-mux.c:
16938         (gst_matroska_mux_create_buffer_header),
16939         (gst_matroska_mux_write_data):
16940           Fix timestamping of B-frames, use signed integers, do
16941           some rounding (#339678).
16942
16943 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
16944
16945         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
16946         just make it compile with --disable-gst-debug.
16947
16948 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
16949
16950         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
16951         Fix a bad conversion using gst_guint64_to_gdouble.
16952         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
16953         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
16954         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
16955     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
16956         mistake.
16957
16958 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
16959
16960         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
16961         Use gst_guint64_to_gdouble for conversions
16962         * win32/vs6/gst_plugins_good.dsw:
16963         * win32/vs6/libgsticydemux.dsp:
16964         Add a project file for icydemux
16965
16966 2006-04-21  Wim Taymans  <wim@fluendo.com>
16967
16968         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
16969
16970         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
16971         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
16972         When splitting audio chunks, the block alignment is not taken in
16973         consideration, so the smaller chunks could be of size which is 
16974         not a multiple of the block alignment. Fixes #336904
16975
16976 2006-04-21  Wim Taymans  <wim@fluendo.com>
16977
16978         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
16979         Use scale functions
16980
16981 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
16982
16983         * ext/dv/gstdv.c: (plugin_init):
16984           Fix build.
16985
16986 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
16987
16988         * gst/debug/progressreport.c: (gst_progress_report_finalize),
16989         (gst_progress_report_class_init), (gst_progress_report_init),
16990         (gst_progress_report_do_query), (gst_progress_report_report),
16991         (gst_progress_report_set_property),
16992         (gst_progress_report_get_property):
16993           Add 'format' property to force querying to a particular format.
16994
16995 2006-04-21  Andy Wingo  <wingo@pobox.com>
16996
16997         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
16998         best, on big endian systems. Drop its rank in that case. OTOH on
16999         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17000
17001 2006-04-21  Michael Smith  <msmith@fluendo.com>
17002
17003         * configure.ac:
17004         * gst/icydemux/Makefile.am:
17005         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17006         (gst_icydemux_base_init), (gst_icydemux_class_init),
17007         (gst_icydemux_reset), (gst_icydemux_init),
17008         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17009         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17010         (unicodify), (gst_icydemux_unicodify),
17011         (gst_icydemux_parse_and_send_tags),
17012         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17013         (gst_icydemux_chain), (gst_icydemux_change_state),
17014         (gst_icydemux_send_tag_event), (plugin_init):
17015         * gst/icydemux/gsticydemux.h:
17016         * tests/check/Makefile.am:
17017         * tests/check/elements/icydemux.c: (typefind_succeed),
17018         (plugin_init), (icydemux_found_pad), (create_icydemux),
17019         (cleanup_icydemux), (push_data), (GST_START_TEST),
17020         (icydemux_suite), (main):
17021           Add icydemux, and tests.
17022
17023 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17024
17025         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17026           Post SEGMENT_DONE message in TIME format.
17027
17028 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17029
17030         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17031
17032         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17033         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17034           Fix index creation when we have to scan the file to create
17035           an index. There may be other types of RIFF 'LIST' chunks than
17036           'movi' and we need to skip them properly as well or we'll end up
17037           reading garbage (#336889). Some other cosmetic changes.
17038           
17039 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17040
17041         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17042         (gst_flac_dec_handle_seek_event):
17043           Add support for segment seeks (fixes #338290). Also demote
17044           some recurring debug message from DEBUG to LOG level.
17045
17046 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17047
17048         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17049         (gst_matroskademux_do_index_seek),
17050         (gst_matroska_demux_handle_seek_event),
17051         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17052         * gst/matroska/matroska-ids.h:
17053           Set DISCONT flag on first buffer after a discontinuity.
17054           Fix newsegment events sent when seeking and honour KEY_UNIT
17055           seek flag. Create pad with bogus caps if we don't recognise
17056           the stream codec id.
17057
17058         * gst/matroska/matroska-demux.h:
17059           Fix GObject macros.
17060
17061 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17062
17063         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
17064
17065         * gst/matroska/matroska-demux.c:
17066         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17067           Handle end of segment properly when set; don't dead-lock when
17068           posting start of segment message when doing a segment seek.
17069           Fixes #338810.
17070
17071 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17072
17073         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17074         (gst_matroska_demux_plugin_init):
17075           Make mpeg2 aac audio work: create artificial private codec data
17076           chunk which faad2 seems to require, just as we do for mpeg4 aac.
17077           Also call gst_riff_init(). Partially fixes #338767.
17078
17079 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
17080
17081         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17082         (gst_wavenc_class_init), (gst_wavenc_init),
17083         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17084         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17085         (gst_wavenc_chain), (gst_wavenc_change_state):
17086         * gst/wavenc/gstwavenc.h:
17087           Set caps on first outgoing buffer, so that it doesn't error out
17088           immediately with a non-negotiated error (#338716). Rewrite and
17089           clean up a bit; fix setcaps function to parse things properly;
17090           fix sink caps (8bit audio is unsigned and doesn't have depth);
17091           use boilerplate macros; remove unused properties stuff.
17092
17093 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17094
17095         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17096           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17097           handle MJPEG streams and might be autoplugged for those if the
17098           user doesn't have jpegdec installed (resulting in a cryptic error
17099           message about huffman tables). Better to disable JPEG decoding here
17100           and let the user figure out that she needs to install jpegdec.
17101
17102 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17103
17104         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17105         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17106         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17107         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17108           Make work with packetised/framed input (e.g. png-in-quicktime). Use
17109           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17110           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17111           debug messages. Fix boilerplate macros.
17112
17113 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17114
17115         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17116         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17117           No need to special-case for Gdk-2.0 any longer, we require
17118           Gdk 2.2 or newer; minor clean-ups.
17119
17120 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17121
17122         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17123         (gst_shout2send_class_init), (gst_shout2send_init),
17124         (set_shout_metadata), (gst_shout2send_set_metadata),
17125         (gst_shout2send_event), (gst_shout2send_start),
17126         (gst_shout2send_connect), (gst_shout2send_stop),
17127         (gst_shout2send_render), (gst_shout2send_set_property),
17128         (gst_shout2send_get_property), (gst_shout2send_setcaps),
17129         (plugin_init):
17130         * ext/shout2/gstshout2.h:
17131         * po/POTFILES.in:
17132           Rewrite a bit: use GstBaseSink::start and stop instead of a state
17133           change function; use GST_ELEMENT_ERROR for error reporting, not
17134           g_error() or GST_ERROR(); don't unref caps in setcaps function,
17135           will cause crashes or assertion failures; remove (unused) "sync"
17136           property, basesink already has such a property; misc. other
17137           minor fixes and cleanups.
17138
17139 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17140
17141         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17142         * ext/esd/gstesd.c: (plugin_init):
17143         * po/POTFILES.in:
17144           Add translatable error message for when we cannot
17145           connect to the sound server, as "Cannot open resource
17146           for writing" isn't really an acceptable message to show
17147           to the user in this case.
17148
17149 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
17150
17151         * sys/oss/gst-i18n-plugin.h:
17152           Remove bogus file that doesn't belong here.
17153
17154 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17155
17156         Patch by: Philippe Valembois
17157
17158         * ext/shout2/gstshout2.c: (gst_shout2send_init),
17159         (gst_shout2send_set_metadata), (gst_shout2send_event),
17160         (gst_shout2send_render), (gst_shout2send_change_state):
17161         * ext/shout2/gstshout2.h:
17162           Handle tags being received before the connection to
17163           the server is established properly (see #338636).
17164
17165 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
17166
17167         * ext/shout2/gstshout2.c: (gst_shout2send_render):
17168           Don't crash in case the connection to the server fails:
17169           don't set pointer to NULL by assigning FALSE; error out
17170           properly by using GST_ELEMENT_ERROR and returning
17171           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17172           before resetting the pointer.
17173
17174 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
17175
17176         * gst/id3demux/id3tags.c:
17177         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17178         (Fixes #338713)
17179
17180 2006-04-12  Wim Taymans  <wim@fluendo.com>
17181
17182         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17183         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17184         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17185         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17186         (gst_gdk_pixbuf_chain):
17187         Some cleanups.
17188         Added RGBA as a possible output format.
17189         Correctly free the supported mimetypes.
17190         deprecate silent arg, it's not used.
17191         Return result from _alloc_buffer to peer.
17192
17193 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17194
17195         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17196           Don't leak memory allocated by gst_buffer_new_and_alloc() by
17197           overwriting GST_BUFFER_MALLOCDATA.
17198
17199 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
17200
17201         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17202         (user_endrow_callback), (user_end_callback),
17203         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17204         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17205         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17206         * ext/libpng/gstpngdec.h:
17207           Handle more than one frame if the content is framed,
17208           like with png-in-quicktime (#331917).
17209
17210 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17211
17212         * sys/oss/Makefile.am:
17213         * sys/oss/common.h:
17214         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17215         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17216         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17217         (gst_oss_src_unprepare):
17218           - the user-visible error strings were in the wrong category
17219           - and the messages were not marked for translation
17220           - which is actually a good thing, because they were exactly
17221             the kind of message you would never want anyone to see
17222           - the macros were using variables that didn't exist in the macro
17223             arguments
17224           - and they were obviously copied from each other and then modified
17225           - so a common header makes sense
17226
17227 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17228
17229         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17230           Don't try to modify read-only data.
17231
17232         * gst/matroska/matroska-demux.c:
17233         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17234           Fix comment (won't crash any longer now).
17235
17236 2006-04-10  Michael Smith  <msmith@fluendo.com>
17237
17238         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17239           Use copies of header buffers for caps to avoid circular refcounting
17240           problems (as in theoradec, vorbisdec).
17241
17242         * tests/check/elements/cmmldec.c: (GST_START_TEST):
17243           Fix a typo in test that meant it was testing the wrong thing.
17244
17245         * tests/check/elements/cmmlenc.c: (check_headers):
17246           Fix refcount checks now that we use buffer-copies for caps.
17247
17248 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17249
17250         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17251         (gst_matroska_demux_handle_seek_event),
17252         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17253         (gst_matroska_demux_subtitle_caps),
17254         (gst_matroska_demux_plugin_init):
17255           Use static pad templates with ANY caps for audio and video
17256           source pads and get rid of a lot of unnecessary (and partially
17257           broken) code for the template caps. Clean up caps finding
17258           functions. Fixes playback of audio files/streams that do not
17259           contain the sample rate and/or number of channels in the audio
17260           context (happens a lot with vorbis/mp3 .mka files it seems).
17261           Fixes #337183.
17262           Also add myself to copyright holders.
17263
17264 2006-04-10  Michael Smith  <msmith@fluendo.com>
17265
17266         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17267           Use g_list_delete_link () instead of g_list_remove_link () so that
17268           we free the link as well as the contained data.
17269
17270 2006-04-10  Wim Taymans  <wim@fluendo.com>
17271
17272         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17273
17274         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17275         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17276         (gst_avi_demux_stream_header):
17277         Fix some crashers with empty chunks. (Fixes #337749)
17278
17279 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17280
17281         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17282           use G_GINT64_CONSTANT for INT64 constants
17283         * gst/videofilter/gstvideobalance.c:
17284           define rint for WIN32 #define rint(x) (floor((x)+0.5))
17285         * win32/vs6/libgstavi.dsp:
17286          add missing libraries for the link and remove avimux.c from
17287          the project as it isn't ported to 0.10 yet
17288         
17289 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
17290
17291         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17292           Even better would be if we actually did the right thing
17293           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17294
17295 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17296
17297         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17298           Can't just replace 1LL with 1L here just because MSVC doesn't
17299           support it, as it might lead to incorrect results when doing the
17300           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17301           force a 64-bit constant in a way that all compilers are happy with.
17302
17303 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17304
17305         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17306         * ext/esd/esdsink.c: (gst_esdsink_class_init):
17307         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17308         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17309         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17310         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17311         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17312         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17313         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17314         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17315         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17316         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17317         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17318         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17319         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17320         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17321         * gst/avi/gstavimux.c: (gst_avimux_class_init):
17322         * gst/debug/efence.c: (gst_efence_class_init):
17323         * gst/debug/negotiation.c: (gst_negotiation_class_init):
17324         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17325         * gst/goom/gstgoom.c: (gst_goom_class_init):
17326         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17327         * gst/interleave/deinterleave.c: (deinterleave_class_init):
17328         * gst/interleave/interleave.c: (interleave_class_init):
17329         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17330         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17331         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17332         * gst/median/gstmedian.c: (gst_median_class_init):
17333         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17334         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17335         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17336         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17337         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17338         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17339         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17340         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17341         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17342         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17343         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17344         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17345         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17346         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17347         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17348         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17349         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17350         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17351         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17352         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17353         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17354         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17355         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17356         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17357         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17358         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17359         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17360         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17361         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17362         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17363         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17364         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17365         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17366         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17367         * sys/osxaudio/gstosxaudioelement.c:
17368         (gst_osxaudioelement_class_init):
17369         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17370         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17371         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17372         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17373
17374 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17375
17376         * ext/mikmod/gstmikmod.h:
17377         * gst/level/gstlevel.h:
17378         Fix more broken GObject macros
17379
17380 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17381
17382         * ext/annodex/gstcmmldec.h:
17383         * ext/annodex/gstcmmlenc.h:
17384         * ext/annodex/gstcmmltag.h:
17385         * ext/cairo/gsttextoverlay.h:
17386         * ext/ladspa/gstsignalprocessor.h:
17387         * gst/matroska/ebml-read.h:
17388         * gst/matroska/ebml-write.h:
17389         * sys/osxaudio/gstosxaudioelement.h:
17390         Fix broken GObject macros
17391
17392 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
17393
17394         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17395           Don't try to seek beyond the end of the file (would
17396           occasionally display error dialogs in totem when seeking
17397           to the end) (#335869). Will still throw an error though
17398           if the file is truncated and the total_samples value in
17399           the stream header is wrong.
17400
17401 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
17402
17403         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17404         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17405         (gst_flac_dec_metadata_callback):
17406         * ext/flac/gstflacdec.h:
17407           If the stream header doesn't contain the total number of samples,
17408           search for the last flac frame at the end of the file and calculate
17409           the total duration from that frame's offset (fixes #337609).
17410
17411 2006-04-07  Edward Hervey  <edward@fluendo.com>
17412
17413         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17414         Don't unref the GstPadTemplate returned by
17415         gst_element_class_get_pad_template().
17416
17417 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17418
17419         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
17420
17421         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17422         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17423         * sys/sunaudio/gstsunaudiosink.h:
17424           Use spec->segsize and spec->segtotal in the prepare function
17425           to initialise the ring buffer instead of using the buffer-time
17426           property (#337421).
17427
17428 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17429
17430         * configure.ac:
17431           Bump core requirements to CVS for gst_pad_query_peer_duration()
17432           which is used by speexdec.
17433
17434 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
17435
17436         * ext/speex/gstspeex.c: (plugin_init):
17437         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17438         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17439         (speex_get_sink_query_types), (speex_dec_sink_query),
17440         (speex_get_src_query_types), (speex_dec_src_query),
17441         (speex_dec_src_event), (speex_dec_sink_event),
17442         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17443         (speex_dec_chain_parse_data), (speex_dec_chain),
17444         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17445         (speex_dec_change_state):
17446         * ext/speex/gstspeexdec.h:
17447           Fix seeking and duration queries (#337033); clean up and
17448           refactor a bit.
17449
17450 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17451
17452         * ext/raw1394/gstdv1394src.c:
17453           distinguish between device not found and could not open for
17454           reading
17455
17456 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17457
17458         * Makefile.am:
17459         * configure.ac:
17460         * pkgconfig/.cvsignore:
17461         * pkgconfig/Makefile.am:
17462         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17463           add a .pc file so other modules can use good plugins in tests
17464
17465 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17466
17467         * configure.ac:
17468           clean up, use AS_VERSION and AS_NANO
17469         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17470           use PACKAGE_VERSION define
17471         * po/af.po:
17472         * po/az.po:
17473         * po/cs.po:
17474         * po/en_GB.po:
17475         * po/hu.po:
17476         * po/it.po:
17477         * po/nb.po:
17478         * po/nl.po:
17479         * po/or.po:
17480         * po/sq.po:
17481         * po/sr.po:
17482         * po/sv.po:
17483         * po/uk.po:
17484         * po/vi.po:
17485           updated
17486
17487 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
17488
17489         * ext\jpeg\smokecodec.c:
17490           use of GST_DEBUG instead of DEBUG(a...) for WIN32
17491         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17492           move first instruction after all variables declarations
17493         * gst\alpha\gstalpha.c:
17494         * gst\effectv\gstshagadelic.c:
17495         * gst\smpte\paint.c:
17496         * gst\videofilter\gstvideobalance.c:
17497           define M_PI if it's not defined (it's not defined on WIN32)
17498         * gst\cutter\gstcutter.c: (gst_cutter_chain):
17499         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17500         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17501         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
17502         (gst_matroska_demux_video_caps):
17503         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17504         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17505           use gst_guint64_to_gdouble for conversions
17506         * gst\goom\filters.c: (setPixelRGB_):
17507           fix a debug which was using undefined variable
17508         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17509         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17510           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17511         * win32/vs6:
17512           add vs6 projects files for most of plugins-good
17513         
17514 2006-03-30  j^  <j@bootlab.org>
17515
17516         * ext/aalib/gstaasink.c:
17517         * ext/annodex/gstcmmldec.c:
17518         * ext/annodex/gstcmmlenc.c:
17519         * ext/cairo/gsttextoverlay.c:
17520         * ext/cairo/gsttimeoverlay.c:
17521         * ext/cdio/gstcdiocddasrc.c:
17522         * ext/dv/gstdvdec.c:
17523         * ext/esd/esdmon.c:
17524         * ext/esd/esdsink.c:
17525         * ext/flac/gstflacdec.c:
17526         * ext/flac/gstflacenc.c:
17527         * ext/flac/gstflactag.c:
17528         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17529         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17530         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17531         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17532         * ext/gdk_pixbuf/gstgdkpixbuf.c:
17533         * ext/gdk_pixbuf/pixbufscale.c:
17534         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17535         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17536         * ext/jpeg/gstjpegdec.c:
17537         * ext/jpeg/gstjpegenc.c:
17538         * ext/jpeg/gstsmokedec.c:
17539         * ext/jpeg/gstsmokeenc.c:
17540         * ext/libcaca/gstcacasink.c:
17541         * ext/libmng/gstmngdec.c:
17542         * ext/libmng/gstmngenc.c:
17543         * ext/libpng/gstpngdec.c:
17544         * ext/libpng/gstpngenc.c:
17545         * ext/mikmod/gstmikmod.c:
17546         * ext/raw1394/gstdv1394src.c:
17547         * ext/shout2/gstshout2.c:
17548         * ext/speex/gstspeexdec.c:
17549         * ext/speex/gstspeexenc.c:
17550         * gst/alpha/gstalpha.c:
17551         * gst/alpha/gstalphacolor.c:
17552         * gst/auparse/gstauparse.c:
17553         * gst/autodetect/gstautoaudiosink.c:
17554         (gst_auto_audio_sink_base_init):
17555         * gst/autodetect/gstautovideosink.c:
17556         (gst_auto_video_sink_base_init):
17557         * gst/avi/gstavimux.c: (gst_avimux_base_init):
17558         * gst/cutter/gstcutter.c:
17559         * gst/debug/breakmydata.c:
17560         * gst/debug/efence.c:
17561         * gst/debug/gstnavigationtest.c:
17562         * gst/debug/negotiation.c:
17563         * gst/debug/progressreport.c:
17564         * gst/debug/testplugin.c:
17565         * gst/effectv/gstaging.c:
17566         * gst/effectv/gstdice.c:
17567         * gst/effectv/gstedge.c:
17568         * gst/effectv/gstquark.c:
17569         * gst/effectv/gstrev.c:
17570         * gst/effectv/gstvertigo.c:
17571         * gst/effectv/gstwarp.c:
17572         * gst/flx/gstflxdec.c:
17573         * gst/goom/gstgoom.c:
17574         * gst/interleave/deinterleave.c:
17575         * gst/interleave/interleave.c:
17576         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17577         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17578         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17579         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17580         * gst/level/gstlevel.c:
17581         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17582         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17583         * gst/median/gstmedian.c:
17584         * gst/monoscope/gstmonoscope.c:
17585         * gst/multipart/multipartdemux.c:
17586         * gst/multipart/multipartmux.c:
17587         * gst/oldcore/gstmd5sink.c:
17588         * gst/oldcore/gstmultifilesrc.c:
17589         * gst/oldcore/gstpipefilter.c:
17590         * gst/oldcore/gstshaper.c:
17591         * gst/oldcore/gststatistics.c:
17592         * gst/rtp/gstasteriskh263.c:
17593         * gst/rtp/gstrtpL16depay.c:
17594         * gst/rtp/gstrtpL16pay.c:
17595         * gst/rtp/gstrtpamrdepay.c:
17596         * gst/rtp/gstrtpamrpay.c:
17597         * gst/rtp/gstrtpdepay.c:
17598         * gst/rtp/gstrtpgsmpay.c:
17599         * gst/rtp/gstrtph263pay.c:
17600         * gst/rtp/gstrtph263pdepay.c:
17601         * gst/rtp/gstrtph263ppay.c:
17602         * gst/rtp/gstrtpmp4gpay.c:
17603         * gst/rtp/gstrtpmp4vdepay.c:
17604         * gst/rtp/gstrtpmp4vpay.c:
17605         * gst/rtp/gstrtpmpadepay.c:
17606         * gst/rtp/gstrtpmpapay.c:
17607         * gst/rtp/gstrtppcmadepay.c:
17608         * gst/rtp/gstrtppcmapay.c:
17609         * gst/rtp/gstrtppcmudepay.c:
17610         * gst/rtp/gstrtppcmupay.c:
17611         * gst/rtp/gstrtpspeexdepay.c:
17612         * gst/rtp/gstrtpspeexpay.c:
17613         * gst/rtsp/gstrtpdec.c:
17614         * gst/smpte/gstsmpte.c:
17615         * gst/videobox/gstvideobox.c:
17616         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17617         * gst/videofilter/gstvideobalance.c:
17618         * gst/videofilter/gstvideoflip.c:
17619         * gst/videofilter/gstvideotemplate.c:
17620         (gst_videotemplate_base_init):
17621         * gst/videomixer/videomixer.c:
17622         * gst/wavenc/gstwavenc.c:
17623         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17624          better/unified long descriptions
17625          Fixed #336602
17626          Some cleanups to auparse, don't send multiple newsegments.
17627
17628 2006-03-29  Wim Taymans  <wim@fluendo.com>
17629
17630         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17631
17632         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17633         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17634         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17635         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17636         * ext/dv/gstdvdemux.h:
17637         Seek in READY patch. Only works for pull based mode.
17638         Fixes #323880
17639
17640 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
17641
17642         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17643         (gst_gdk_pixbuf_event):
17644           Fix two crashers: don't unref the same caps twice, and
17645           set pixbuf loader to NULL after freeing it.
17646
17647 2006-03-27  Wim Taymans  <wim@fluendo.com>
17648
17649         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17650         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17651         (gst_speexenc_chain):
17652         * ext/speex/gstspeexenc.h:
17653         Don't leak adapter.
17654         A push *always* takes ownership of the buffer, even on
17655         errors.
17656         Small cleanups.
17657
17658 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
17659
17660         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17661           Create source pad without leaking.
17662
17663 2006-03-24  Wim Taymans  <wim@fluendo.com>
17664
17665         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17666         * ext/flac/gstflacdec.h:
17667         * ext/flac/gstflacenc.h:
17668         Spifify a bit.
17669         Fix deadly lock order error in seeking code, STREAM_LOCK
17670         cannot be taken within LOCK and the streaming variables are
17671         protected with the STREAM_LOCK anyway.
17672
17673 2006-03-24  Wim Taymans  <wim@fluendo.com>
17674
17675         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17676         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17677         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17678         this patch combines the global init_frames with the stream
17679         init_frames. Rationale being that the global delay should 
17680         be subtracted from any stream delay.
17681         Fixes #335858.
17682
17683 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
17684
17685         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17686         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17687         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17688         * gst/videomixer/videomixer.c: (gst_videomixer_init):
17689         use DEBUG_FUNCPTR for collectpads
17690
17691 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
17692
17693         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17694           Don't crash when encoding images where the number of rows isn't
17695           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17696
17697 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17698
17699         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17700         * gst/interleave/deinterleave.c: (deinterleave_change_state):
17701         * gst/interleave/interleave.c: (interleave_change_state):
17702         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17703           More state change function fixes.
17704
17705 2006-03-23  Wim Taymans  <wim@fluendo.com>
17706
17707         * ext/esd/esdsink.c: (gst_esdsink_class_init),
17708         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17709         (gst_esdsink_prepare), (gst_esdsink_unprepare),
17710         (gst_esdsink_delay), (gst_esdsink_reset):
17711         * ext/esd/esdsink.h:
17712         Fix esd choppy playback by configuring audiosink
17713         correctly. Fixes #325191
17714
17715 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17716
17717         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17718           Make state change function thread-safe.
17719
17720 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17721
17722         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17723         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17724           Don't try to read beyond the end of the file just because
17725           the header claims a bigger size (like with truncated files).
17726
17727 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
17728
17729         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17730         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17731         (gst_wavparse_stream_data), (gst_wavparse_loop):
17732         * gst/wavparse/gstwavparse.h:
17733           Delay source pad creation until we have the first chunk of
17734           media data, so the we can examine the data and adjust the
17735           caps accordingly if required. This makes playback of .wav
17736           files with DTS-declared-as-PCM content work (#313266).
17737
17738 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
17739
17740         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17741         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17742         Don't attempt typefinding on too-short buffers that have been
17743         completely trimmed away. (Fixes #330239)
17744
17745         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17746         Improve the debug output
17747
17748 2006-03-21  Wim Taymans  <wim@fluendo.com>
17749
17750         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17751         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17752         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17753         (gst_esdsink_set_property), (gst_esdsink_get_property):
17754         Some cleanups.
17755         Reset fd to -1 when we close them.
17756
17757 2006-03-21  Wim Taymans  <wim@fluendo.com>
17758
17759         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17760         the OPTIONS request result is optional so don't
17761         fail on it.
17762
17763 2006-03-21  Edward Hervey  <edward@fluendo.com>
17764
17765         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17766         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17767         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17768         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17769         (gst_wavparse_change_state):
17770         gcc 4.1 unreferenced pointer fixes.
17771
17772 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
17773
17774         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17775
17776         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17777           Fix block alignment calculation. Alignment should be done before
17778           adding the byte offset where the data starts (#335231).
17779
17780 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17781
17782         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17783           Ensure that we set correct caps on buffers that are transferred
17784           direct from the input.
17785
17786 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
17787
17788         * gst/goom/filters.c: (zoomFilterDestroy):
17789         * gst/goom/goom_core.c: (goom_close):
17790           Free filter data when cleaning up. (Fixes: #334995)
17791
17792 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
17793
17794         * configure.ac:
17795           Don't compile udp and rtsp plugins on win32 (mingw) or other
17796           systems that don't have <sys/socket.h> for some reason (#316203).
17797
17798 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17799
17800         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17801         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17802         * ext/raw1394/gstdv1394src.h:
17803           Change bus reset handler so it reports useful information such as
17804           whether the device being used connected or disconnected
17805
17806 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17807
17808         * gst/id3demux/id3v2frames.c:
17809         (parse_relative_volume_adjustment_two):
17810           We only care about gain and peak data for the master volume.
17811
17812 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17813
17814         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17815         (parse_id_string), (parse_unique_file_identifier),
17816         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
17817           Read replay gain tags (#323721).
17818
17819 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17820
17821         * configure.ac:
17822           Bump requirements to gst-plugins-base CVS because
17823           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
17824
17825 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
17826
17827         * rtp/gst/gstrtppcmadepay.c:
17828         Fixed one of the caps in the code from mulaw to alaw.
17829
17830 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
17831
17832         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17833           Ensure that we set caps on the buffers we pass.
17834
17835         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
17836         (gst_id3demux_sink_activate):
17837           Ensure that we set caps on the buffers we pass.
17838
17839           Use STREAM, TYPE_NOT_FOUND as the error class when
17840           typefinding fails.
17841
17842 2006-03-15  Edward Hervey  <edward@fluendo.com>
17843
17844         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
17845         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
17846         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
17847         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
17848         (gst_jpeg_dec_setcaps):
17849         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
17850         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
17851         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
17852         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
17853         (gst_mngdec_src_getcaps):
17854         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17855         (gst_pngdec_caps_create_and_set):
17856         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
17857         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
17858         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
17859         * gst/alpha/gstalpha.c: (gst_alpha_init):
17860         * gst/auparse/gstauparse.c: (gst_au_parse_init):
17861         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
17862         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
17863         * gst/cutter/gstcutter.c: (gst_cutter_init):
17864         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
17865         (gst_efence_checkgetrange):
17866         * gst/debug/negotiation.c: (gst_negotiation_init):
17867         * gst/flx/gstflxdec.c: (gst_flxdec_init):
17868         * gst/goom/gstgoom.c: (gst_goom_init):
17869         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
17870         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
17871         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
17872         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
17873         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
17874         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
17875         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
17876         * gst/smpte/gstsmpte.c: (gst_smpte_init):
17877         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
17878         (gst_wavparse_create_sourcepad):
17879         Fix memleak with gst_static_pad_template_get().
17880         This uses gst_pad_new_from_static_template() instead.
17881         Fixes #333512
17882
17883 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17884
17885         * configure.ac:
17886           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
17887           used by id3demux.
17888
17889         * gst/id3demux/gstid3demux.c: (plugin_init):
17890         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
17891         (parse_user_text_identification_frame),
17892         (parse_unique_file_identifier):
17893           Add support for UFID and TXXX frames and extract musicbrainz tags.
17894
17895 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17896
17897         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
17898           Catch short reads, like they might happen with truncated
17899           files (see #305279); remove unnecessary indentation.
17900
17901 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17902
17903         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
17904           Fix DIB image inversion for pictures with a
17905           depth != 8 (#305279).
17906
17907 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17908
17909         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
17910         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
17911         * ext/jpeg/gstjpegdec.h:
17912           Fix durations on outgoing buffers after seeking
17913           in MJPEG files (#334083); some minor clean-ups.
17914
17915 2006-03-13  Wim Taymans  <wim@fluendo.com>
17916
17917         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
17918         (gst_wavparse_change_state):
17919         Implement seek in READY (re-fixes #327658)
17920
17921 2006-03-13  Wim Taymans  <wim@fluendo.com>
17922
17923         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
17924         * ext/esd/esdmon.c: (gst_esdmon_get):
17925         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
17926         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17927         (gst_gdk_pixbuf_sink_getcaps):
17928         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
17929         (gst_jpegenc_setcaps):
17930         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
17931         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
17932         (gst_smokeenc_setcaps):
17933         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
17934         (gst_mngdec_src_getcaps):
17935         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
17936         (gst_mngenc_chain):
17937         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
17938         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
17939         * ext/speex/gstspeexdec.c: (speex_dec_convert),
17940         (speex_dec_src_event), (speex_dec_chain):
17941         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
17942         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
17943         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
17944         (gst_negotiation_pad_link), (gst_negotiation_chain):
17945         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
17946         (gst_flxdec_chain):
17947         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
17948         (deinterleave_chain):
17949         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
17950         * gst/median/gstmedian.c: (gst_median_link):
17951         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
17952         (gst_monoscope_chain):
17953         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
17954         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
17955         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
17956         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
17957         close #333784 unref the result of gst_pad_get_parent()
17958         by: Christophe Fergeau.
17959
17960 2006-03-09  Wim Taymans  <wim@fluendo.com>
17961
17962         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
17963         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
17964         Handle events in push mode better, can now do non-flushing
17965         seeks in push mode as well.
17966
17967 2006-03-07  Wim Taymans  <wim@fluendo.com>
17968
17969         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17970         Applied patch from Kai Vehmanen, fixes #333624.
17971
17972 2006-03-06  Julien MOUTTE  <julien@moutte.net>
17973
17974         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
17975         Implement paletted and grayscale png files handling.
17976         (#150363).
17977
17978 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17979
17980         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
17981         (gst_speexenc_chain):
17982           fix a tag list assert
17983           follow gst-plugins-base/ext/ogg/README; set OFFSET
17984           and OFFSET_END.  Muxes correctly with gst-plugins-base
17985           > 0.9.3
17986
17987 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
17988
17989         * gst/id3demux/Makefile.am:
17990         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
17991         (gst_id3demux_chain), (gst_id3demux_sink_activate):
17992           Use new typefind helper functions here as well, and
17993           do typefinding in pull-mode if upstream supports that.
17994
17995 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
17996
17997         * sys/sunaudio/gstsunaudiomixerctrl.c:
17998         (gst_sunaudiomixer_ctrl_get_volume),
17999         (gst_sunaudiomixer_ctrl_set_volume):
18000         * sys/sunaudio/gstsunaudiomixertrack.c:
18001         (gst_sunaudiomixer_track_new):
18002           Remove unused variables, breaks build from CVS
18003           with -Werror (#333392, patch by: Benjamin Pineau)
18004
18005 2006-03-03  Wim Taymans  <wim@fluendo.com>
18006
18007         * docs/plugins/Makefile.am:
18008         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18009         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18010         Added wavparse docs.
18011
18012         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18013         (gst_wavparse_reset), (gst_wavparse_init),
18014         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18015         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18016         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18017         (gst_wavparse_stream_data), (gst_wavparse_loop),
18018         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18019         (gst_wavparse_change_state):
18020         * gst/wavparse/gstwavparse.h:
18021         Implement seek in READY (fixes #327658)
18022         Added docs and did some cleanups.
18023
18024 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18025
18026         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18027         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18028         (gst_avi_demux_calculate_durations_from_index),
18029         (gst_avi_demux_stream_header):
18030         * gst/avi/gstavidemux.h:
18031           If we have an index, use a duration based on the index instead
18032           of blindly trusting the information in the stream headers
18033           (fixes #331817).
18034
18035 2006-03-03  Wim Taymans  <wim@fluendo.com>
18036
18037         * docs/plugins/Makefile.am:
18038         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18039         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18040         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18041         Added smoke and jpeg to the docs.
18042
18043         * ext/jpeg/Makefile.am:
18044         * ext/jpeg/gstjpeg.c: (plugin_init):
18045         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18046         * ext/jpeg/gstjpegenc.h:
18047         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18048         (gst_smokedec_chain):
18049         * ext/jpeg/gstsmokedec.h:
18050         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18051         * ext/jpeg/gstsmokeenc.h:
18052         * ext/jpeg/smokecodec.h:
18053         Port smokedec (fixes #331905).
18054         Added some docs.
18055         Some cleanups.
18056
18057 2006-03-03  Wim Taymans  <wim@fluendo.com>
18058
18059         * docs/plugins/Makefile.am:
18060         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18061         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18062         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18063         Added videobalance and videoflip to the docs.
18064
18065         * gst/videofilter/Makefile.am:
18066         * gst/videofilter/gstvideobalance.c:
18067         (gst_video_balance_update_tables_planar411),
18068         (gst_video_balance_is_passthrough),
18069         (gst_video_balance_update_properties), (oil_tablelookup_u8),
18070         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18071         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18072         (gst_video_balance_finalize), (gst_video_balance_class_init),
18073         (gst_video_balance_init), (gst_video_balance_interface_supported),
18074         (gst_video_balance_interface_init),
18075         (gst_video_balance_colorbalance_list_channels),
18076         (gst_video_balance_colorbalance_set_value),
18077         (gst_video_balance_colorbalance_get_value),
18078         (gst_video_balance_colorbalance_init),
18079         (gst_video_balance_set_property), (gst_video_balance_get_property),
18080         (gst_video_balance_get_type), (plugin_init):
18081         * gst/videofilter/gstvideobalance.h:
18082         Ported to 0.10. (Fixes #326160)
18083         Added docs.
18084
18085         * gst/videofilter/gstvideoflip.c:
18086         * gst/videofilter/gstvideoflip.h:
18087         Added docs.
18088
18089 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
18090
18091         * configure.ac:
18092           Bump requirements to current core and -base CVS
18093           (core for new typefind helper API, and -base for the
18094           WAVFORMATEX support that was added to libgstriff and
18095           is needed by wavparse).
18096         
18097         * gst/apetag/Makefile.am:
18098         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18099         (gst_tag_demux_sink_activate):
18100           Use new typefind helpers for typefinding instead of our
18101           home-grown stuff; also, do typefinding in pull-mode if
18102           upstream supports that.
18103
18104 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
18105
18106         Reviewed by: Christian Schaller <christian@fluendo.com>
18107
18108         This patch fixes bug: 329107
18109
18110         This Changelog entry is for a commit done on February 17
18111
18112         * ext/gconf/gconf.c
18113         * ext/gconf/gconf.h
18114         * ext/gconf/gstgconfaudiosink.c
18115         * ext/gconf/gstgconfaudiosink.h
18116         * gconf/gstreamer.schemas.in
18117
18118 2006-02-28  Wim Taymans  <wim@fluendo.com>
18119
18120         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18121         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18122         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18123         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18124         Use DEBUG_OBJECT more.
18125
18126 2006-02-28  Wim Taymans  <wim@fluendo.com>
18127
18128         * docs/plugins/Makefile.am:
18129         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18130         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18131         Added dvdec and dvdemux to docs.
18132
18133         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18134         Added docs.
18135         Check frame sizes so we don't crash when don't have enough
18136         data.
18137         Send nice error messages on error.
18138
18139         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18140         (gst_dvdemux_class_init), (gst_dvdemux_init),
18141         (gst_dvdemux_finalize), (gst_dvdemux_reset),
18142         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18143         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18144         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18145         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18146         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18147         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18148         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18149         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18150         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18151         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18152         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18153         * ext/dv/gstdvdemux.h:
18154         Added docs.
18155         Implement pull mode.
18156         Fix memleaks.
18157         Reduce memcpy for the video demuxing.
18158
18159 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
18160
18161         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18162         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18163         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18164         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18165           Add a little extra debug. Make the decoder not return NOT_LINKED,
18166           as we want to continue decoding all CMML and emitting tags.
18167
18168 2006-02-27  Michael Smith  <msmith@fluendo.com>
18169
18170         * ext/annodex/gstskeltag.c:
18171         * ext/annodex/gstskeltag.h:
18172           Deleted; these files aren't used any more either.
18173
18174 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18175
18176         * ext/Makefile.am: Fix dist-check.
18177
18178 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18179
18180         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18181         memleak.
18182
18183 2006-02-25  Alessandro Decina <alessandro@nnva.org>
18184
18185         * ext/annodex/Makefile.am:
18186         * ext/annodex/gstannodex.c:
18187         * ext/annodex/gstcmmldec.c:
18188         * ext/annodex/gstcmmlenc.c:
18189         * ext/annodex/gstcmmlparser.c:
18190         * ext/annodex/gstcmmlparser.h:
18191         * ext/annodex/gstcmmlutils.c:
18192         * tests/check/elements/cmmldec.c:
18193         * tests/check/elements/cmmlenc.c:
18194           Fix a memleak in gst_cmml_track_list_add_clip.
18195           Handle overflows in clip's start and end times.
18196           Add the "encoded" parameter to cmmldec and cmmlenc caps.
18197           Do not parse junk at the end of a CMML preamble buffer.
18198           Register a libxml error handler to not print stuff on stderr.
18199           Check for bad clip start and end times in the testsuites.
18200
18201 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18202
18203         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18204         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18205         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18206         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18207         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18208         possible memleaks.
18209
18210 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18211
18212         * tests/check/Makefile.am:
18213         * tests/check/elements/cmmldec.c:
18214         * tests/check/elements/cmmlenc.c: Fix tests so that they use
18215         the plugins-base tags.
18216
18217 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18218
18219         * ext/Makefile.am: Re-enable module.
18220
18221 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18222
18223         * tests/check/Makefile.am: Forgot to remove that test.
18224
18225 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18226
18227         * ext/annodex/Makefile.am:
18228         * ext/annodex/gstannodex.c: (plugin_init):
18229         * ext/annodex/gstcmmldec.c:
18230         * ext/annodex/gstskeldec.c:
18231         * ext/annodex/gstskeldec.h:
18232         * tests/check/Makefile.am:
18233         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18234
18235 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18236
18237         * tests/check/Makefile.am: Disable those checks as well.
18238
18239 2006-02-24  Julien MOUTTE  <julien@moutte.net>
18240
18241         * ext/Makefile.am: Disable annodex for now until we figure out
18242         how to make it build.
18243         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18244         Add a rule to your checklist : "please try to at least build 
18245         what you are going to commit into -good, or if you are too lazy
18246         to do that, please check that the buildbots are not crying because
18247         of your commit."
18248
18249 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18250
18251         * configure.ac:
18252         * ext/Makefile.am:
18253         * ext/gdk_pixbuf/Makefile.am:
18254         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18255         * ext/gdk_pixbuf/gstgdkpixbuf.h:
18256         * ext/gdk_pixbuf/pixbufscale.c:
18257         * ext/gdk_pixbuf/pixbufscale.h:
18258           Gdkpixbuf ported from 0.8 to 0.10 by
18259           Renato Filho <renato.filho@indt.org.br>.
18260           gst_loader and gdkpixbufanimation still need port.
18261
18262 2006-02-24  Michael Smith  <msmith@fluendo.com>
18263
18264         * configure.ac:
18265         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18266         * ext/Makefile.am:
18267         * ext/annodex/Makefile.am:
18268         * ext/annodex/gstannodex.c:
18269         * ext/annodex/gstannodex.h:
18270         * ext/annodex/gstcmmldec.c:
18271         * ext/annodex/gstcmmldec.h:
18272         * ext/annodex/gstcmmlenc.c:
18273         * ext/annodex/gstcmmlenc.h:
18274         * ext/annodex/gstcmmlparser.c:
18275         * ext/annodex/gstcmmlparser.h:
18276         * ext/annodex/gstcmmltag.c:
18277         * ext/annodex/gstcmmltag.h:
18278         * ext/annodex/gstcmmlutils.c:
18279         * ext/annodex/gstcmmlutils.h:
18280         * ext/annodex/gstskeldec.c:
18281         * ext/annodex/gstskeldec.h:
18282         * ext/annodex/gstskeltag.c:
18283         * ext/annodex/gstskeltag.h:
18284         * tests/check/Makefile.am:
18285         * tests/check/elements/cmmldec.c:
18286         * tests/check/elements/cmmlenc.c:
18287         * tests/check/elements/skeldec.c:
18288           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
18289           Includes tests & docs, oh my! Passes Thomas's -good checklist
18290           entirely. Wow.
18291
18292 2006-02-24  Michael Smith  <msmith@fluendo.com>
18293
18294         * autogen.sh:
18295           Check for automake 1.9 as well.
18296
18297 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18298
18299         * ext/flac/gstflacenc.c:
18300           Change min. sample rate to 8kHz to match flacdec's.
18301           
18302 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
18303
18304         * ext/cdio/Makefile.am:
18305           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18306           required for Cygwin, see #317048)
18307
18308         * gst/rtp/gstasteriskh263.c:
18309           Cygwin has includes for both the unix network socket API
18310           and the windows API, but only one can be included, so fix
18311           includes to only use one or the other, prefering the unxi
18312           one (#317048).
18313
18314 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
18315
18316         * rtp/gst/gstrtppcmadepay.c:
18317         * rtp/gst/gstrtppcmadepay.h:
18318         * rtp/gst/gstgstrtppcmapay.c:
18319         * rtp/gst/gstgstrtppcmapay.h:
18320         * rtp/gst/gstrtppcmudepay.c:
18321         * rtp/gst/gstrtppcmudepay.h:
18322         * rtp/gst/gstrtppcmupay.c:
18323         * rtp/gst/gstrtppcmupay.h:
18324         * rtp/gst/Makefile.am:
18325         * rtp/gst/gstrtp.c:
18326         * rtp/gst/README:
18327         Separated the G711 payloaders/depayloaders into separate elements for
18328         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18329
18330 2006-02-22  Wim Taymans  <wim@fluendo.com>
18331
18332         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18333         (gst_dvdec_change_state):
18334         * ext/dv/gstdvdec.h:
18335         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18336         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18337         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18338         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18339         (gst_dvdemux_flush), (gst_dvdemux_chain),
18340         (gst_dvdemux_change_state):
18341         * ext/dv/gstdvdemux.h:
18342         Ueber spiffify some more, added debug category.
18343         Use _scale.
18344         Use segments, respect playback rate from newsegment.
18345         Fix refcount issue.
18346
18347 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18348
18349         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18350         (gst_signal_processor_process):
18351         Fix compilation of LADPSA. It doesn't seem to work, and isn't
18352         enabled for the build, but it helps me win the feature-count
18353         competitions ooh yeah.
18354
18355 2006-02-19  Wim Taymans  <wim@fluendo.com>
18356
18357         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18358         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18359         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18360         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18361         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18362         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18363         Use scaling code for added precission and more correct stop
18364         position in case scale==0.
18365
18366 2006-02-19  Wim Taymans  <wim@fluendo.com>
18367
18368         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18369         (gst_flxdec_chain):
18370         * gst/flx/gstflxdec.h:
18371         Implement DURATION query.
18372
18373 2006-02-19  Wim Taymans  <wim@fluendo.com>
18374
18375         * gst/flx/flx_color.h:
18376         * gst/flx/flx_fmt.h:
18377         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18378         (gst_flxdec_src_query_handler), (flx_decode_color),
18379         (gst_flxdec_chain):
18380         * gst/flx/gstflxdec.h:
18381         Set MALLOCDATA for the temp buffers so we don't leak.
18382         Some debug cleanups.
18383         Consume all data in the adapter before leaving the chain
18384         function. Fixes #330678.
18385
18386 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
18387
18388         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18389         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18390          Handle 0 data size in otherwise valid frames.
18391          Handle numeric strings in 2.4.0 even when not in parentheses 
18392
18393 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
18394
18395         * gst/matroska/matroska-demux.c:
18396         (gst_matroska_demux_subtitle_caps),
18397         (gst_matroska_demux_plugin_init):
18398         * gst/matroska/matroska-ids.h:
18399           Recognise SSA/ASS and USF subtitle formats and
18400           set proper caps when they are found.
18401
18402 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18403
18404         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18405         (gst_jpeg_dec_chain):
18406           Fix invalid memory access for some odd-sized images
18407           (see image contained in quicktime stream in #327083);
18408           use g_malloc() instead of g_alloca().
18409
18410 2006-02-17  Wim Taymans  <wim@fluendo.com>
18411
18412         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18413         Patch from Sebastien Cote, fixes #319884
18414
18415 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18416
18417         * ext/cdio/gstcdio.c: (plugin_init):
18418           Init debug category (#331253).
18419
18420 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18421
18422         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18423           Pass extra_data to gst_riff_create_audio_caps(), so that
18424           WAVEFORMATEX stuff works. Post audio codec name and post
18425           it as taglist on the bus. Allow up to 8 channesl for raw
18426           PCM in the source pad template caps.
18427
18428 2006-02-16  Wim Taymans  <wim@fluendo.com>
18429
18430         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18431         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18432         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18433         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18434         (gst_multipart_set_property), (gst_multipart_get_property):
18435         Applied #318663. Gives quite a few false positives in
18436         autoscan mode, but it's better than nothing. Not closing yet.
18437
18438 2006-02-16  Wim Taymans  <wim@fluendo.com>
18439
18440         * docs/plugins/Makefile.am:
18441         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18442         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18443         * docs/plugins/gst-plugins-good-plugins.args:
18444         * docs/plugins/inspect/plugin-udp.xml:
18445         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18446         (gst_udpsrc_start):
18447         Update documentation.
18448         Fix args.
18449
18450 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
18451
18452         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18453         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18454         frame size. (Fixes #331368)
18455
18456 2006-02-16  Wim Taymans  <wim@fluendo.com>
18457
18458         * gst/rtsp/README:
18459         Updated README.
18460
18461         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18462         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18463         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18464         * gst/rtsp/gstrtspsrc.h:
18465         Make sure the RTP port is an even port an try to allocate 
18466         another if not.
18467         Added retry property to control max retries for port allocation.
18468         Make sure RTCP port is RTP port+1.
18469         Cleanup when port allocation fails.
18470         Fixes #319183.
18471         
18472 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18473
18474         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18475           Don't ignore return value of the parent class's state
18476           change function (#331385, patch by: Wouter Paesen).
18477
18478 2006-02-15  Wim Taymans  <wim@fluendo.com>
18479
18480         * configure.ac:
18481         * docs/plugins/Makefile.am:
18482         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18483         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18484         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18485         * ext/Makefile.am:
18486         * ext/hal/Makefile.am:
18487         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18488         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18489         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18490         (do_toggle_element), (gst_hal_audio_sink_set_property),
18491         (gst_hal_audio_sink_get_property),
18492         (gst_hal_audio_sink_change_state):
18493         * ext/hal/gsthalaudiosink.h:
18494         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18495         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18496         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18497         (do_toggle_element), (gst_hal_audio_src_set_property),
18498         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18499         * ext/hal/gsthalaudiosrc.h:
18500         * ext/hal/gsthalelements.c: (plugin_init):
18501         * ext/hal/gsthalelements.h:
18502         * ext/hal/hal.c: (gst_hal_get_string),
18503         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18504         (gst_hal_get_audio_src):
18505         * ext/hal/hal.h:
18506         Add HAL sound device wrapper plugins. Closes #329106
18507
18508 2006-02-15  Wim Taymans  <wim@fluendo.com>
18509
18510         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18511         Add comment in a fultile attempt to stop the copy-and-paste 
18512         paradigm leading to duplication of bad code.
18513
18514         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18515         Mime parameters have to be checked case insensitive
18516
18517 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18518
18519         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18520           Advance stream time for lagging subtitle streams by sending
18521           newsegment events with the update flag set.
18522
18523 2006-02-14  Edward Hervey  <edward@fluendo.com>
18524
18525         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18526         There can be bogus data before the hdrl LIST tag in the RIFF header.
18527         It's hard to say if it's not respecting the AVI specifications or not,
18528         but since Google Video is producing AVIs like that and the other player
18529         don't seem to complain, I guess we should do the same.
18530
18531 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
18532
18533         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18534         (parse_split_strings):
18535         Add more validation to ensure that a char encoding conversion
18536         produced a valid UTF-8 string.
18537
18538 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
18539
18540         Reviewed by: Edward Hervey  <edward@fluendo.com>
18541
18542         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18543         Properly handle end of segment. Closes #330885.
18544
18545 2006-02-13  Wim Taymans  <wim@fluendo.com>
18546
18547         * gst/rtp/gstrtpmp4gpay.h:
18548         For got to commit this one.
18549
18550 2006-02-12  Wim Taymans  <wim@fluendo.com>
18551
18552         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18553         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18554         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18555         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18556         * gst/rtp/gstrtpmp4gpay.h:
18557         Make more things work.
18558         Handle ACC config strings.
18559
18560 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18561
18562         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18563           set timestamps if no incoming timestamps set
18564
18565 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
18566
18567         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18568         (gst_tag_demux_do_typefind):
18569           ... and fix the very same leaks in GstTagDemux.
18570
18571 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
18572
18573         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18574         (gst_id3demux_do_typefind):
18575         Fix a couple of mem leaks. (Patch by Jonathan Matthew
18576         <jonathan at kaolin dot wh9 dot net>)
18577
18578 2006-02-10  Wim Taymans  <wim@fluendo.com>
18579
18580         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18581         First set options, then set caps or else the baseclass
18582         will not know about the options, duh.
18583
18584 2006-02-10  Wim Taymans  <wim@fluendo.com>
18585
18586         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18587         (gst_rtp_mp4v_pay_setcaps):
18588         Don't waste time looking for a config string if we have codec_info
18589         on the incomming caps.
18590
18591 2006-02-10  Wim Taymans  <wim@fluendo.com>
18592
18593         * gst/rtp/README:
18594         Say something about case-sensitivity of caps vs mime-attributes.
18595
18596         * gst/rtp/Makefile.am:
18597         * gst/rtp/gstrtp.c: (plugin_init):
18598         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18599         (gst_rtp_amr_pay_handle_buffer):
18600         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18601         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18602         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18603         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18604         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18605         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18606         (gst_rtp_mp4g_pay_plugin_init):
18607         * gst/rtp/gstrtpmp4gpay.h:
18608         Added beginnings of mpeg4-generic payloader (RFC 3640)
18609
18610 2006-02-09  Wim Taymans  <wim@fluendo.com>
18611
18612         * gst/rtsp/Makefile.am:
18613         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18614         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18615         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18616         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18617         (gst_rtpdec_change_state):
18618         * gst/rtsp/gstrtpdec.h:
18619         * gst/rtsp/gstrtsp.c: (plugin_init):
18620         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18621         * gst/rtsp/rtspconnection.c: (read_body),
18622         (rtsp_connection_receive):
18623         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18624         Resurected rtpdec to make rtspsrc happy again.
18625         Skip attributes from the session id.
18626         Don't crash when dumping a message with an empty body.
18627
18628
18629 2006-02-09  Wim Taymans  <wim@fluendo.com>
18630
18631         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18632         Added more meaningfull warnings when something goes wrong.
18633         Clear F bit on outgoing AMR packets.
18634
18635         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18636         (gst_rtp_amr_pay_handle_buffer):
18637         Added debugging category
18638         Support payloading of multiple AMR frames.
18639
18640         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18641         Added some debugging.
18642
18643 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18644
18645         * configure.ac:
18646           Back to CVS
18647
18648 === release 0.10.2 ===
18649
18650 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18651
18652         * configure.ac:
18653           releasing 0.10.2, "Papa was a rolling stone"
18654
18655 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18656
18657         * configure.ac:
18658           Bump core and plugins-base requirement to 0.10.2.2
18659           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18660
18661 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18662
18663         * ext/flac/gstflac.c: (plugin_init):
18664         * ext/speex/gstspeex.c: (plugin_init):
18665           Register musicbrainz tags.
18666
18667 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18668
18669         * ext/gconf/gconf.h:
18670           Remove declaration of function that no longer exists.
18671
18672 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18673
18674         * ext/shout2/gstshout2.c: (gst_shout2send_render),
18675         (gst_shout2send_setcaps), (gst_shout2send_change_state):
18676         Make shout2 work for non ogg streams
18677
18678 2006-02-06  Wim Taymans  <wim@fluendo.com>
18679
18680         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18681         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18682         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18683         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18684         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18685         * gst/udp/gstmultiudpsink.h:
18686         Updated docs.
18687         Added properties bytes-served, bytes_to_serve.
18688         Post proper error messages,
18689         Emit client added signal too.
18690
18691 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18692
18693         * docs/plugins/Makefile.am:
18694         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18695         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18696         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18697         (gst_multiudpsink_get_stats):
18698           adding docs for multiudpsink
18699
18700 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18701
18702         * gst/level/gstlevel.c: (gst_level_transform_ip):
18703           peak below decay is not necessarily an error, so don't ERROR log
18704
18705 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18706
18707         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18708         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18709         (gst_ebml_write_seek):
18710         * gst/matroska/ebml-write.h:
18711           Make sure we send a newsegment event in BYTES format
18712           before sending buffers (#328531).
18713
18714 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18715
18716         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18717         (gst_dvdemux_sink_query):
18718         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18719         * ext/speex/gstspeexdec.c: (speex_get_query_types),
18720         (speex_dec_src_query):
18721         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18722         (gst_speexenc_sink_query):
18723         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18724         * gst/matroska/matroska-demux.c:
18725         (gst_matroska_demux_get_src_query_types),
18726         (gst_matroska_demux_handle_src_query):
18727         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18728         (gst_wavparse_pad_query):
18729           Pass unhandled queries upstream instead of just dropping
18730           them (#326446). Update query type arrays here and there.
18731
18732 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18733
18734         * tests/check/elements/matroskamux.c: (setup_src_pad):
18735           Collectpads in core got changed and now also holds a
18736           reference to any pad that is part of it. Fix refcount
18737           checks in test case accordingly.
18738
18739 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18740
18741         * gst/apetag/gstapedemux.h:
18742           Fix include, for now GstTagDemux is in the apetag dir.
18743
18744 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18745
18746         * docs/plugins/Makefile.am:
18747         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18748         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18749         * docs/plugins/inspect/plugin-cdio.xml:
18750           Add cdio plugin to docs.
18751
18752         * ext/cdio/gstcdiocddasrc.c:
18753           Add gtk-doc blurb.
18754
18755         * ext/cdio/gstcdio.c:
18756           The plugin is called 'cdio' not 'cddio'.
18757
18758 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18759
18760         * configure.ac:
18761         * docs/plugins/Makefile.am:
18762         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18763         * docs/plugins/gst-plugins-good-plugins-sections.txt:
18764         * docs/plugins/gst-plugins-good-plugins.hierarchy:
18765         * docs/plugins/inspect/plugin-apetag.xml:
18766         * gst/apetag/Makefile.am:
18767         * gst/apetag/gstapedemux.c:
18768         * gst/apetag/gstapedemux.h:
18769         * gst/apetag/gsttagdemux.c:
18770         * gst/apetag/gsttagdemux.h:
18771           Add APE tag demuxer (#325649).
18772
18773 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18774
18775         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18776         (gst_gconf_get_default_video_sink),
18777         (gst_gconf_get_default_audio_src),
18778         (gst_gconf_get_default_video_src):
18779         * ext/gconf/gconf.h:
18780         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18781         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18782         (do_toggle_element):
18783         * ext/gconf/gstgconfaudiosink.h:
18784         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18785         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18786         (do_toggle_element):
18787         * ext/gconf/gstgconfaudiosrc.h:
18788         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18789         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18790         (do_toggle_element):
18791         * ext/gconf/gstgconfvideosink.h:
18792         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18793         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18794         (do_toggle_element):
18795         * ext/gconf/gstgconfvideosrc.h:
18796           Ignore changing the GConf key to "". Ignore GConf key updates
18797           that don't actually change the string.
18798           For now, ignore the GConf key when the state is > READY, as
18799           it breaks streaming. Sometime it will be nice to bring the
18800           new sink online even mid-stream, by sending NEWSEGMENT info
18801           and possibly prerolling.
18802           (Fixes #326736)
18803
18804 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18805
18806         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18807         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18808         (zoomFilterSetResolution), (zoomFilterDestroy),
18809         (zoomFilterFastRGB), (pointFilter):
18810         * gst/goom/filters.h:
18811         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
18812         (goom_update), (goom_close):
18813         * gst/goom/goom_core.h:
18814         * gst/goom/goom_tools.h:
18815         * gst/goom/graphic.c:
18816         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
18817         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
18818         * gst/goom/gstgoom.h:
18819         * gst/goom/lines.c: (goom_lines):
18820         * gst/goom/lines.h:
18821           Make goom reentrant by moving all important static variables
18822           into instance structures.
18823           (Fixes #329181)
18824
18825 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
18826
18827         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
18828         (gst_avi_demux_all_source_pads_unlinked),
18829         (gst_avi_demux_process_next_entry):
18830         * gst/avi/gstavidemux.h:
18831           Third attempt, use gst_pad_is_linked() this time.
18832
18833 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
18834
18835         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18836         (parse_split_strings):
18837         Adjust for data length indicators when parsing (Fixes #329810)
18838         Fix stupid bug parsing UTF-8 tag text.
18839         Output tag strings with multiple fields as multiple tags, so the
18840         app gets all the data.
18841
18842 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18843
18844         * ext/flac/gstflacenc.c:
18845         Fixed a bug add in last commit, where no event is send. Thanks Tim to
18846         show me.
18847         
18848 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18849
18850         * ext/flac/gstflacenc.c:
18851         * gst/matroska/ebml-read.c:
18852         Just make it compile with --disable-gst-debug.
18853
18854 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
18855
18856         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
18857         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
18858         (id3v2_genre_fields_to_taglist):
18859           Never output a tag with a null contents string.
18860
18861 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18862
18863         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
18864           Only pause if all pads are unlinked AND we've tried to send data
18865           on all of them at least once.
18866
18867 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18868
18869         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
18870         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
18871           Make loop function/task pause itself when all source pads are
18872           unlinked.
18873
18874 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18875
18876         * configure.ac:
18877         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
18878           Use new functions from core to render a bin from a
18879           string. Fixes build. Up requirements to core CVS.
18880
18881 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18882
18883         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
18884           Don't push buffers into the adapter that we are going to
18885           push downstream again without framing anyway. Also, the
18886           adaptor takes ownership of buffers put into it (fixes
18887           auparse pushing invalid buffers for .au files with
18888           ADPCM contents). Finally, set caps on all outgoing buffers.
18889
18890 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
18891
18892         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
18893         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
18894         (gst_id3demux_send_tag_event):
18895         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
18896         Someone should kick my butt. Remove ID3v1 tags from the end of the
18897         file.
18898
18899         Improve error messages. Send the TAG message as soon as we complete
18900         typefinding, instead of waiting until we send the first buffer.
18901         Downstream tag event is still sent before the first buffer.
18902
18903 2006-01-27  Jan Gerber  <j@bootlab.org>
18904
18905         Reviewed by: Andy Wingo <wingo@pobox.com>
18906
18907         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
18908         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
18909         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
18910         to not have warings flooding stderr. this is the suggested way
18911         also used in dvgrab and kino. (#328336)
18912
18913 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18914
18915         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
18916         (gst_oss_sink_init), (gst_oss_sink_finalise):
18917           Free the device name string when finalised.
18918
18919 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
18920
18921         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
18922           Don't put function calls in g_return_if_fail() statements,
18923           or they'll be replaced with NOOPs if someone compiles with
18924           G_DISABLE_CHECKS defined.
18925           
18926 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
18927
18928         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
18929         Never trust ANY information encoded in a media file, especially
18930         when it's giving you sizes. (Fixes #328452)
18931
18932 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
18933
18934         * gst/rtp/gstrtpg711pay.c:
18935         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
18936         bug #325148.
18937
18938 2006-01-23  Edward Hervey  <edward@fluendo.com>
18939
18940         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
18941         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
18942         * gst/matroska/matroska-ids.h:
18943         Added recognition of Real Audio and Video streams in matroska demuxer.
18944
18945 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
18946
18947         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
18948           Remove errant break statement, and fix compilation with
18949           older GCC.
18950
18951 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
18952
18953         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18954
18955         * sys/sunaudio/gstsunaudiomixerctrl.c:
18956         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
18957           Export functions that are needed in other parts of the code,
18958           makes the mixer actually work; adjust magic minimum buffer-time
18959           value from 3ms to 5ms to work around stuttering during mp3
18960           playback (#327765).
18961
18962 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
18963
18964         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18965
18966         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
18967         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
18968           Fix possible deadlock in matroska muxer (#327825).
18969
18970 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
18971
18972         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
18973         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18974         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
18975         * gst/rtsp/sdpmessage.h:
18976         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
18977         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
18978           C89 fixes: declare variables at the beginning of a block and
18979           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
18980           <jensgr at gmx dot net>).
18981
18982 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
18983
18984         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
18985         * gst/id3demux/id3tags.h:
18986         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18987         (parse_comment_frame), (parse_text_identification_frame),
18988         (id3v2_tag_to_taglist), (id3v2_are_digits),
18989         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
18990         (parse_split_strings), (free_tag_strings):
18991           Rewrite parsing of text tags to handle multiple NULL terminated
18992           strings. Parse numeric genre strings and ID3v2 type
18993           "(3)(6)Alternative" style genre strings.
18994           Parse dates that are only YYYY or YYYY-mm format.
18995           (Fixes #328241 and #322154)
18996
18997 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
18998
18999         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19000           Don't forget to initialize liboil, otherwise our oil functions
19001           will crash (fixes #327871; patch by: Christoph Burghardt
19002           <hawkes at web dot de>).
19003
19004 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19005
19006         * configure.ac:
19007           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19008           like in the core and gst-plugins-base. Fixes #324367 and #326683;
19009           patch by: Brian Cameron <brian dot cameron at sun dot com>
19010
19011 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
19012
19013         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19014         * ext/cdio/gstcdio.h:
19015         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19016           Fix build for libcdio versions >= 76; give slightly lower rank
19017           than cdparanoia.
19018
19019 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19020
19021         * configure.ac:
19022         * ext/Makefile.am:
19023         * ext/cdio/Makefile.am:
19024         * ext/cdio/gstcdio.c:
19025         * ext/cdio/gstcdio.h:
19026         * ext/cdio/gstcdiocddasrc.c:
19027         * ext/cdio/gstcdiocddasrc.h:
19028           Port libcdio cdda source, formerly known as cddasrc, now known as
19029           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19030           but that's not tested (fixes #317658).
19031
19032 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
19033
19034         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19035           Fix conversion from TIME to BYTES format (fixes #326864;
19036           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19037
19038 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
19039
19040         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19041           Fix compilation of id3demux when zlib is not present.
19042           (Fixes #326602; patch by: Sergey Scobich)
19043
19044 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
19045
19046         * ext/esd/Makefile.am:
19047           Add $(ESD_CFLAGS), otherwise build will fail for folks
19048           with libesd in a non-standard prefix (#327009).
19049
19050 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19051
19052         * configure.ac:
19053           back to HEAD
19054
19055 === release 0.10.1 ===
19056
19057 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
19058
19059         * configure.ac:
19060           releasing 0.10.1, "Li"
19061
19062 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19063
19064           patch by: Wim Taymans
19065
19066         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19067           fix memleak.  Fixes #326618
19068
19069 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19070
19071           patch by: Mike Smith
19072
19073         * gst/level/gstlevel.c: (gst_level_message_new),
19074         (gst_level_message_append_channel):
19075           Fix memleak.  Fixes #326612
19076
19077 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19078
19079         * configure.ac:
19080           prereleasing
19081         * po/af.po:
19082         * po/az.po:
19083         * po/cs.po:
19084         * po/en_GB.po:
19085         * po/hu.po:
19086         * po/it.po:
19087         * po/nb.po:
19088         * po/nl.po:
19089         * po/or.po:
19090         * po/sq.po:
19091         * po/sr.po:
19092         * po/sv.po:
19093         * po/uk.po:
19094         * po/vi.po:
19095           update translations
19096
19097 2006-01-10  Michael Smith  <msmith@fluendo.com>
19098
19099         * gst/level/gstlevel.c: (gst_level_class_init),
19100         (gst_level_dispose):
19101           Don't leak filter arrays.
19102
19103 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19104
19105         reviewed by: Christian Schaller <uraeus@gnome.org>
19106         
19107         * configure.ac:
19108         * gst-plugins-good.spec.in:
19109         * sys/Makefile.am:
19110         * sys/sunaudio/Makefile.am:
19111         * sys/sunaudio/gstsunaudio.c: (plugin_init):
19112         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19113         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19114         (gst_sunaudiomixer_change_state):
19115         * sys/sunaudio/gstsunaudiomixer.h:
19116         * sys/sunaudio/gstsunaudiomixerctrl.c:
19117         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19118         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19119         (gst_sunaudiomixer_ctrl_list_tracks),
19120         (gst_sunaudiomixer_ctrl_get_volume),
19121         (gst_sunaudiomixer_ctrl_set_volume),
19122         (gst_sunaudiomixer_ctrl_set_mute),
19123         (gst_sunaudiomixer_ctrl_set_record):
19124         * sys/sunaudio/gstsunaudiomixerctrl.h:
19125         * sys/sunaudio/gstsunaudiomixertrack.c:
19126         (gst_sunaudiomixer_track_class_init),
19127         (gst_sunaudiomixer_track_init), (fill_labels),
19128         (gst_sunaudiomixer_track_new):
19129         * sys/sunaudio/gstsunaudiomixertrack.h:
19130         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19131         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19132         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19133         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19134         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19135         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19136         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19137         * sys/sunaudio/gstsunaudiosink.h:
19138
19139         Add SunAudio plugin - tested to make sure it doesn't break
19140         the build under GNU/Linux.      
19141
19142 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
19143
19144         * gst-plugins-good/gst/udp/gstdynudpsink.c:
19145         * gst-plugins-good/gst/udp/gstudpsrc.c:
19146         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19147         overrides the port or multicast parameters. Fixes bugs #323021.
19148         API addition: adds GstUDPSrc::sockfd property   
19149
19150 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
19151
19152         * ext/gconf/Makefile.am:
19153         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19154         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19155         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19156         (do_toggle_element), (cb_toggle_element),
19157         (gst_gconf_audio_src_change_state):
19158         * ext/gconf/gstgconfaudiosrc.h:
19159         * ext/gconf/gstgconfelements.c: (plugin_init):
19160         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19161         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19162         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19163         (do_toggle_element), (cb_toggle_element),
19164         (gst_gconf_video_src_change_state):
19165         * ext/gconf/gstgconfvideosrc.h:
19166           Add new gconfaudiosrc and gconfvideosrc elements
19167           (needed for gnome-sound-recorder).
19168
19169 2006-01-06  Edward Hervey  <edward@fluendo.com>
19170
19171         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19172         Add gst_element_no_more_pads() for proper decodebin behaviour.
19173         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19174         (parse_text_identification_frame), (parse_split_strings):
19175         Failure to decode some tags is not a GST_ERROR() but a
19176         GST_WARNING()
19177         When iterating over a chunk of text, check that we haven't gone too
19178         far.
19179
19180 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19181
19182         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19183         (plugin_init):
19184           call oil_init() when using liboil
19185
19186 2006-01-04  Wim Taymans  <wim@fluendo.com>
19187
19188         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19189         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19190         Fix leaks.
19191
19192 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
19193
19194         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19195
19196         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19197         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19198         (gst_flac_dec_change_state):
19199           Don't g_assert() where we should just return FALSE; remove
19200           unnecessary g_assert(); initialize some fields properly in
19201           state change function (fixes #325504). Also, use
19202           GST_DEBUG_OBJECT in two more places.
19203
19204 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19205
19206         * configure.ac:
19207           also remove smoothwave's Makefile.am
19208         * docs/plugins/Makefile.am:
19209           fix plugin docs
19210
19211 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19212
19213         * tests/examples/Makefile.am:
19214           added missing Makefile.am
19215
19216 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19217
19218         * configure.ac:
19219         * gst/level/Makefile.am:
19220         * gst/level/level-example.c:
19221         * tests/Makefile.am:
19222         * tests/examples/level/Makefile.am:
19223         * tests/examples/level/level-example.c: (message_handler), (main):
19224           moved level-example to tests/examples/level-example
19225         * tests/old/examples/level/demo.c: (main):
19226         * tests/old/examples/level/plot.c: (main):
19227           some initial fixes
19228
19229 2005-12-29  Michael Smith  <msmith@fluendo.com>
19230
19231         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19232         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19233         * gst/udp/gstmultiudpsink.h:
19234           Track packets sent per client in addition to bytes sent; provide
19235           this info through get-stats signal
19236
19237 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19238
19239         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19240           Can't use gst_object_unref() on a GstAdapter (#325191).
19241
19242 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
19243
19244         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19245         If a broken tag has 0 bytes payload, at least still skip
19246         the 10 byte header
19247
19248 2005-12-22  Philippe Khalaf  <burger@speedy.org>
19249
19250         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19251         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19252         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19253         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19254           Making these depayloaders (H263+ and mpeg4 video) inherit from
19255           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19256
19257 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19258
19259         * docs/plugins/gst-plugins-good-plugins.args:
19260         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19261         Regenerate the plugin hiearchy.
19262
19263 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
19264
19265         * docs/plugins/Makefile.am:
19266         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19267         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19268         * docs/plugins/gst-plugins-good-plugins.args:
19269         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19270         (gst_id3demux_base_init), (gst_id3demux_class_init),
19271         (gst_id3demux_chain):
19272         * gst/id3demux/gstid3demux.h:
19273           Add documentation for id3demux.
19274           Don't fail if the first buffer is not at offset 0, just
19275           attempt to typefind and do pass through
19276           Rename the gst_type function from gst_gst_id3demux..
19277
19278 2005-12-20  Michael Smith  <msmith@fluendo.com>
19279
19280         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19281         (gst_multiudpsink_add), (gst_multiudpsink_remove),
19282         (gst_multiudpsink_get_stats):
19283         * gst/udp/gstmultiudpsink.h:
19284           Collect statistics; return them from get_stats.
19285
19286 2005-12-19  Edward Hervey  <edward@fluendo.com>
19287
19288         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19289         Stupid signedness issue...
19290
19291 2005-12-19  Edward Hervey  <edward@fluendo.com>
19292
19293         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19294         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19295         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19296         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19297         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19298         Construct index for indexless files.
19299         Make sure pad/buffers are correctly reset to NULL once we don't need
19300         them anymore, else we get lovely segfaults/assertions.
19301         * gst/wavparse/gstwavparse.c:
19302         Yes, you can have 96KHz audio and wma in wav :(
19303
19304 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19305
19306         * configure.ac:
19307           Check for optional dependency on zlib for id3demux
19308
19309         * gst/id3demux/Makefile.am:
19310         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19311         (gst_id3demux_base_init), (gst_id3demux_class_init),
19312         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19313         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19314         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19315         (gst_id3demux_set_property), (gst_id3demux_get_property),
19316         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19317         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19318         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19319         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19320         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19321         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19322         (simple_find_peek), (simple_find_suggest),
19323         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19324         (plugin_init):
19325         * gst/id3demux/gstid3demux.h:
19326         * gst/id3demux/id3tags.c: (read_synch_uint),
19327         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19328         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19329         (id3demux_id3v2_frames_to_tag_list):
19330         * gst/id3demux/id3tags.h:
19331         * gst/id3demux/id3v2.4.0-frames.txt:
19332         * gst/id3demux/id3v2.4.0-structure.txt:
19333         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19334         (parse_comment_frame), (parse_text_identification_frame),
19335         (id3v2_tag_to_taglist), (parse_split_strings):
19336           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
19337           otherwise it discards them. Works on my test files. 
19338
19339         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19340           Don't send EOS to a non-existing srcpad
19341           The debug category can be static
19342
19343 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19344
19345         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19346         * ext/esd/esdsink.c: (gst_esdsink_prepare):
19347         * gst/multipart/multipartdemux.c:
19348           change some char* into char[]
19349
19350 2005-12-16  Wim Taymans  <wim@fluendo.com>
19351
19352         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19353         (gst_wavparse_other), (gst_wavparse_perform_seek),
19354         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19355         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19356         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19357         * gst/wavparse/gstwavparse.h:
19358         Use GstSegment to implement more seeking features.
19359
19360 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19361
19362         * gst/rtsp/rtspconnection.c:
19363           Add <netinet/in.h> include and move <arpa/inet.h> include
19364           to make things work on OpenBSD as well (fixes #323717;
19365           patch by: Benjamin Pineau)
19366
19367 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19368
19369         * gst/rtp/gstrtpspeexdepay.c:
19370         * gst/rtp/gstrtpspeexpay.c:
19371         Set clock rate to be fixed in 8000. It fixes bug #324012.
19372
19373 2005-12-14  Philippe Khalaf  <burger@speedy.org>
19374
19375         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19376         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19377         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19378         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19379         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19380         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19381         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19382         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19383         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19384         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19385         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19386         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19387         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19388         * gst-plugins-good/gst/rtp/README:
19389         Fixed payload range in payloder caps. Removed payload range completely
19390         from depayloaders as they don't require payload type in their caps.
19391         In effect, there isn't any specific payload type for any given codec,
19392         only suggestions.
19393         Fixes bug #324011.
19394
19395 2005-12-13  Julien MOUTTE  <julien@moutte.net>
19396
19397         * gst/videomixer/videomixer.c: (gst_videomixer_init),
19398         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19399         (gst_videomixer_collected): Code cleanup and re-enabling 
19400         queued time validity check for correct EOS handling.
19401
19402 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
19403
19404         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19405         (gst_oss_mixer_element_get_property),
19406         (gst_oss_mixer_element_change_state):
19407         Add 'device-name' property and fix state change function.
19408
19409 2005-12-13  Edward Hervey  <edward@fluendo.com>
19410
19411         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
19412         If the speed of the file is null in the header, set the frame_time to
19413         the default setting of GST_SECOND / 70. Which is the default
19414         frame_delay for .fli files as stated in this document :
19415         http://www.compuphase.com/flic.htm
19416         Would be nice to have the time conversion done properly too (duration =
19417         flxh->frames * flxdec->frame_time)
19418
19419 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19420
19421         * docs/plugins/Makefile.am:
19422         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19423         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19424         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19425         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19426         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19427         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19428         documentation for videomixer on my way with a funny sample
19429         pipeline.
19430
19431 2005-12-12  Julien MOUTTE  <julien@moutte.net>
19432
19433         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19434         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19435         (gst_videomixer_update_queues), (gst_videomixer_collected):
19436         Fix caps negotiation. (#323896)
19437
19438 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
19439
19440         * gst/matroska/matroska-demux.c:
19441         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19442           Set correct timestamps on audio laces, fixes playback of mp3 from
19443                 matroska.
19444
19445 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19446
19447         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19448         (gst_au_parse_class_init), (gst_au_parse_init),
19449         (gst_au_parse_dispose), (gst_au_parse_chain),
19450         (gst_au_parse_change_state), (plugin_init):
19451         * gst/auparse/gstauparse.h:
19452           Use gst_object_unref() for GstObjects instead of
19453           g_object_unref() and fix a mem leak in a debug
19454           statement; while we're at it, also borgify, use
19455           boilerplate macros and clean up a little bit.
19456
19457 2005-12-11  Edward Hervey  <edward@fluendo.com>
19458
19459         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19460         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19461         Added pull mode.
19462
19463 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19464
19465         * gst/goom/gstgoom.c:
19466         * gst/level/level-example.c: (main):
19467         * gst/smoothwave/demo-osssrc.c: (main):
19468           Use audiotestsrc instead of sinesrc (#323798).
19469
19470 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
19471
19472         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19473           more debug-func-ptr usage
19474
19475 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
19476
19477         * gst/flx/flx_color.c: (flx_colorspace_convert):
19478         * gst/flx/flx_color.h:
19479         * gst/flx/flx_fmt.h:
19480         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19481         * gst/flx/gstflxdec.h:
19482           Now flxdec works on big-endian machines as well.
19483
19484 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
19485
19486         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19487         (gst_fenced_buffer_copy):
19488           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19489           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19490           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19491           and use GST_DEBUG_FUNCPTR for pad functions.
19492
19493 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19494
19495         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19496         (gst_flac_dec_class_init), (gst_flac_dec_init),
19497         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19498         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19499         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19500         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19501         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19502         (gst_flac_dec_change_state):
19503         * ext/flac/gstflacdec.h:
19504           Rewrite flacdec a bit, so that even seeking might work now. Most
19505           importantly, don't act upon any flow return values we get, just tell
19506           the decoder everything's dandy and act on the flow return values
19507           later on in the loop function. We don't want to mess up the internal
19508           decoder state for non-fatal things like flushing pads etc. Other
19509           than that, use GstSegment (segment seeks don't work yet though, but
19510           should be easy to add), use boilerplate macros, drop the superfluous
19511           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19512           lots of other things.
19513
19514 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
19515
19516         * configure.ac:
19517           Update comment in OSS includes check.
19518
19519         * sys/oss/gstossdmabuffer.c:
19520         * sys/oss/gstosshelper.c:
19521         * sys/oss/gstossmixer.c:
19522         * sys/oss/gstossmixertrack.c:
19523         * sys/oss/gstosssink.c:
19524         * sys/oss/gstosssrc.c:
19525         * sys/oss/oss_probe.c:
19526           Don't assume the OSS soundcard.h include is always in
19527           the sys/ directory. Instead, use the existing defines
19528           from config.h to include the right file. Fixes
19529           compilation on OpenBSD 3.8 (#323718).
19530
19531 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19532
19533         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19534         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19535         * docs/plugins/inspect/plugin-1394.xml:
19536         * docs/plugins/inspect/plugin-aasink.xml:
19537         * docs/plugins/inspect/plugin-alaw.xml:
19538         * docs/plugins/inspect/plugin-alpha.xml:
19539         * docs/plugins/inspect/plugin-alphacolor.xml:
19540         * docs/plugins/inspect/plugin-auparse.xml:
19541         * docs/plugins/inspect/plugin-autodetect.xml:
19542         * docs/plugins/inspect/plugin-avi.xml:
19543         * docs/plugins/inspect/plugin-cacasink.xml:
19544         * docs/plugins/inspect/plugin-cairo.xml:
19545         * docs/plugins/inspect/plugin-cutter.xml:
19546         * docs/plugins/inspect/plugin-debug.xml:
19547         * docs/plugins/inspect/plugin-dv.xml:
19548         * docs/plugins/inspect/plugin-efence.xml:
19549         * docs/plugins/inspect/plugin-effectv.xml:
19550         * docs/plugins/inspect/plugin-esdsink.xml:
19551         * docs/plugins/inspect/plugin-flac.xml:
19552         * docs/plugins/inspect/plugin-flxdec.xml:
19553         * docs/plugins/inspect/plugin-gconfelements.xml:
19554         * docs/plugins/inspect/plugin-goom.xml:
19555         * docs/plugins/inspect/plugin-jpeg.xml:
19556         * docs/plugins/inspect/plugin-level.xml:
19557         * docs/plugins/inspect/plugin-matroska.xml:
19558         * docs/plugins/inspect/plugin-mulaw.xml:
19559         * docs/plugins/inspect/plugin-multipart.xml:
19560         * docs/plugins/inspect/plugin-navigationtest.xml:
19561         * docs/plugins/inspect/plugin-ossaudio.xml:
19562         * docs/plugins/inspect/plugin-png.xml:
19563         * docs/plugins/inspect/plugin-rtp.xml:
19564         * docs/plugins/inspect/plugin-rtsp.xml:
19565         * docs/plugins/inspect/plugin-shout2send.xml:
19566         * docs/plugins/inspect/plugin-smpte.xml:
19567         * docs/plugins/inspect/plugin-speex.xml:
19568         * docs/plugins/inspect/plugin-udp.xml:
19569         * docs/plugins/inspect/plugin-videobox.xml:
19570         * docs/plugins/inspect/plugin-videoflip.xml:
19571         * docs/plugins/inspect/plugin-videomixer.xml:
19572         * docs/plugins/inspect/plugin-wavenc.xml:
19573         * docs/plugins/inspect/plugin-wavparse.xml:
19574         * ext/flac/gstflac.c: (plugin_init):
19575         * ext/flac/gstflacdec.c: (flacdec_get_type),
19576         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19577         (gst_flac_dec_init), (gst_flac_dec_finalize),
19578         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19579         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19580         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19581         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19582         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19583         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19584         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19585         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19586         * ext/flac/gstflacdec.h:
19587         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19588         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19589         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19590         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19591         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19592         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19593         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19594         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19595         (gst_flac_enc_change_state):
19596         * ext/flac/gstflacenc.h:
19597           borgify and fix up documentation
19598
19599 2005-12-09  Michael Smith  <msmith@fluendo.com>
19600
19601         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19602           Accept a wider range of flac files, more closely matching flac spec.
19603
19604 2005-12-08  Julien MOUTTE  <julien@moutte.net>
19605
19606         * docs/plugins/Makefile.am: Add multipart elements.
19607         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19608         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19609         * docs/plugins/gst-plugins-good-plugins.hierarchy:
19610         * gst/multipart/multipartdemux.c:
19611         * gst/multipart/multipartmux.c: Add docs.
19612
19613 2005-12-07  Edward Hervey  <edward@fluendo.com>
19614
19615         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19616         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19617         (gst_avi_demux_invert):
19618         Memleak and crasher fixes.
19619         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19620         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19621         Memleak fixes
19622
19623 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19624
19625         * ext/aalib/gstaasink.h:
19626         * ext/cairo/gsttextoverlay.h:
19627         * ext/dv/gstdvdec.h:
19628         * ext/dv/gstdvdemux.c:
19629         * ext/dv/gstdvdemux.h:
19630         * ext/esd/esdsink.h:
19631         * ext/flac/flac_compat.h:
19632         * ext/flac/gstflacdec.h:
19633         * ext/flac/gstflacenc.h:
19634         * ext/gconf/gconf.h:
19635         * ext/gconf/gstgconfaudiosink.h:
19636         * ext/gconf/gstgconfvideosink.h:
19637         * ext/gdk_pixbuf/gstgdkanimation.h:
19638         * ext/jpeg/gstjpegdec.h:
19639         * ext/jpeg/smokecodec.h:
19640         * ext/jpeg/smokeformat.h:
19641         * ext/ladspa/gstsignalprocessor.h:
19642         * ext/ladspa/search.c: (LADSPAPluginSearch):
19643         * ext/ladspa/utils.h:
19644         * ext/libmng/gstmng.c:
19645         * ext/libmng/gstmngdec.h:
19646         * ext/libmng/gstmngenc.c:
19647         * ext/libmng/gstmngenc.h:
19648         * ext/libpng/gstpng.c:
19649         * ext/libpng/gstpngenc.c:
19650         * ext/libpng/gstpngenc.h:
19651         * ext/shout2/gstshout2.h:
19652         * ext/speex/gstspeexdec.h:
19653         * ext/speex/gstspeexenc.c:
19654         * ext/speex/gstspeexenc.h:
19655         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19656         * gst/autodetect/gstautoaudiosink.h:
19657         * gst/autodetect/gstautovideosink.h:
19658         * gst/avi/gstavidemux.h:
19659         * gst/cutter/gstcutter.c: (gst_cutter_chain),
19660         (gst_cutter_set_property), (gst_cutter_get_caps):
19661         * gst/cutter/gstcutter.h:
19662         * gst/debug/tests.c: (md5_process_block):
19663         * gst/debug/tests.h:
19664         * gst/effectv/gstwarp.c:
19665         * gst/flx/flx_fmt.h:
19666         * gst/flx/gstflxdec.h:
19667         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19668         (zoomFilterFastRGB):
19669         * gst/goom/filters.h:
19670         * gst/goom/goom_tools.h:
19671         * gst/law/alaw-encode.c:
19672         * gst/level/gstlevel.c:
19673         * gst/level/gstlevel.h:
19674         * gst/matroska/ebml-write.h:
19675         * gst/matroska/matroska-demux.h:
19676         * gst/matroska/matroska-ids.h:
19677         * gst/matroska/matroska-mux.h:
19678         * gst/monoscope/convolve.c: (convolve_match):
19679         * gst/monoscope/convolve.h:
19680         * gst/multipart/multipartmux.c:
19681         * gst/oldcore/gstaggregator.c:
19682         * gst/oldcore/gstaggregator.h:
19683         * gst/oldcore/gstmd5sink.c: (md5_process_block):
19684         * gst/oldcore/gstmd5sink.h:
19685         * gst/oldcore/gstmultifilesrc.c:
19686         * gst/oldcore/gstmultifilesrc.h:
19687         * gst/oldcore/gstpipefilter.h:
19688         * gst/oldcore/gstshaper.h:
19689         * gst/rtp/gstrtpL16depay.h:
19690         * gst/rtp/gstrtpL16pay.h:
19691         * gst/rtp/gstrtpdepay.h:
19692         * gst/rtp/gstrtpmp4vpay.c:
19693         * gst/rtp/gstrtpmp4vpay.h:
19694         * gst/rtsp/gstrtspsrc.c:
19695         * gst/rtsp/gstrtspsrc.h:
19696         * gst/rtsp/rtspconnection.h:
19697         * gst/rtsp/rtspdefs.h:
19698         * gst/rtsp/rtspmessage.h:
19699         * gst/rtsp/rtsptransport.h:
19700         * gst/rtsp/rtspurl.c:
19701         * gst/rtsp/rtspurl.h:
19702         * gst/rtsp/sdpmessage.c:
19703         * gst/rtsp/sdpmessage.h:
19704         * gst/smpte/barboxwipes.c:
19705         * gst/smpte/gstmask.h:
19706         * gst/smpte/gstsmpte.h:
19707         * gst/smpte/paint.c:
19708         * gst/smpte/paint.h:
19709         * gst/udp/gstdynudpsink.h:
19710         * gst/udp/gstmultiudpsink.h:
19711         * gst/udp/gstudpsink.c:
19712         * gst/udp/gstudpsink.h:
19713         * gst/udp/gstudpsrc.c:
19714         * gst/videomixer/videomixer.c:
19715         * gst/wavenc/riff.h:
19716         * gst/wavparse/gstwavparse.h:
19717         * sys/oss/gstossdmabuffer.h:
19718         * sys/oss/gstossmixer.h:
19719         * sys/oss/gstossmixerelement.h:
19720         * sys/oss/gstossmixertrack.h:
19721         * sys/oss/gstosssink.c:
19722         * sys/oss/gstosssink.h:
19723         * sys/oss/gstosssrc.c:
19724         * sys/oss/gstosssrc.h:
19725         * sys/osxaudio/gstosxaudioelement.h:
19726         * sys/osxaudio/gstosxaudiosink.h:
19727         * sys/osxaudio/gstosxaudiosrc.h:
19728           expand tabs
19729
19730 === release 0.10.0 ===
19731
19732 2005-12-05   <thomas (at) apestaart (dot) org>
19733
19734         * configure.ac:
19735           releasing 0.10.0, "Abondance"
19736
19737 2005-12-05  Andy Wingo  <wingo@pobox.com>
19738
19739         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19740         * ext/flac/gstflacdec.c: (gst_flacdec_write):
19741         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19742         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19743         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19744         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19745         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19746         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19747         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19748         * ext/speex/gstspeexdec.c: (speex_dec_chain):
19749         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19750         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19751         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19752         * gst/goom/gstgoom.c: (gst_goom_chain):
19753         * gst/matroska/matroska-demux.c:
19754         (gst_matroska_demux_push_vorbis_codec_priv_data),
19755         (gst_matroska_demux_add_wvpk_header):
19756         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19757         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19758         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19759         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19760         alloc_buffer changes.
19761
19762 2005-12-05  Michael Smith  <msmith@fluendo.com>
19763
19764         * docs/plugins/gst-plugins-good-plugins.args:
19765           Remove args for plugins that aren't in -good.
19766
19767 === release 0.9.7 ===
19768
19769 2005-12-01   <thomas (at) apestaart (dot) org>
19770
19771         * configure.ac:
19772           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19773
19774 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19775
19776         * docs/plugins/.cvsignore:
19777         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19778         * docs/plugins/inspect/plugin-multipart.xml:
19779         * docs/plugins/inspect/plugin-rtp.xml:
19780           add multipart plugin to docs
19781
19782 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19783
19784         * configure.ac:
19785         * ext/Makefile.am:
19786         * ext/pango/Makefile.am:
19787         * ext/pango/gstclockoverlay.c:
19788         * ext/pango/gstclockoverlay.h:
19789         * ext/pango/gsttextoverlay.c:
19790         * ext/pango/gsttextoverlay.h:
19791         * ext/pango/gsttextrender.c:
19792         * ext/pango/gsttextrender.h:
19793         * ext/pango/gsttimeoverlay.c:
19794         * ext/pango/gsttimeoverlay.h:
19795           move pango to base
19796
19797 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19798
19799         * gst/rtp/Makefile.am:
19800         * gst/rtp/gstrtpL16depay.c:
19801         * gst/rtp/gstrtpL16depay.h:
19802         * gst/rtp/gstrtpL16parse.c:
19803         * gst/rtp/gstrtpL16parse.h:
19804         * gst/rtp/gstrtpgsmdepay.c:
19805         * gst/rtp/gstrtpgsmdepay.h:
19806         * gst/rtp/gstrtpgsmparse.c:
19807         * gst/rtp/gstrtpgsmparse.h:
19808           parsers are depayers
19809
19810 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19811
19812         * gst/rtp/Makefile.am:
19813         * gst/rtp/gstasteriskh263.c:
19814         * gst/rtp/gstrtp.c:
19815         * gst/rtp/gstrtpL16enc.c:
19816         * gst/rtp/gstrtpL16enc.h:
19817         * gst/rtp/gstrtpL16parse.c:
19818         * gst/rtp/gstrtpL16parse.h:
19819         * gst/rtp/gstrtpL16pay.c:
19820         * gst/rtp/gstrtpL16pay.h:
19821         * gst/rtp/gstrtpamrdec.c:
19822         * gst/rtp/gstrtpamrdec.h:
19823         * gst/rtp/gstrtpamrdepay.c:
19824         * gst/rtp/gstrtpamrdepay.h:
19825         * gst/rtp/gstrtpamrenc.c:
19826         * gst/rtp/gstrtpamrenc.h:
19827         * gst/rtp/gstrtpamrpay.c:
19828         * gst/rtp/gstrtpamrpay.h:
19829         * gst/rtp/gstrtpdec.c:
19830         * gst/rtp/gstrtpdec.h:
19831         * gst/rtp/gstrtpdepay.c:
19832         * gst/rtp/gstrtpdepay.h:
19833         * gst/rtp/gstrtpg711dec.c:
19834         * gst/rtp/gstrtpg711dec.h:
19835         * gst/rtp/gstrtpg711depay.c:
19836         * gst/rtp/gstrtpg711depay.h:
19837         * gst/rtp/gstrtpg711enc.c:
19838         * gst/rtp/gstrtpg711enc.h:
19839         * gst/rtp/gstrtpg711pay.c:
19840         * gst/rtp/gstrtpg711pay.h:
19841         * gst/rtp/gstrtpgsmenc.c:
19842         * gst/rtp/gstrtpgsmenc.h:
19843         * gst/rtp/gstrtpgsmparse.c:
19844         * gst/rtp/gstrtpgsmparse.h:
19845         * gst/rtp/gstrtpgsmpay.c:
19846         * gst/rtp/gstrtpgsmpay.h:
19847         * gst/rtp/gstrtph263enc.c:
19848         * gst/rtp/gstrtph263enc.h:
19849         * gst/rtp/gstrtph263pay.c:
19850         * gst/rtp/gstrtph263pay.h:
19851         * gst/rtp/gstrtph263pdec.c:
19852         * gst/rtp/gstrtph263pdec.h:
19853         * gst/rtp/gstrtph263pdepay.c:
19854         * gst/rtp/gstrtph263pdepay.h:
19855         * gst/rtp/gstrtph263penc.c:
19856         * gst/rtp/gstrtph263penc.h:
19857         * gst/rtp/gstrtph263ppay.c:
19858         * gst/rtp/gstrtph263ppay.h:
19859         * gst/rtp/gstrtpmp4vdec.c:
19860         * gst/rtp/gstrtpmp4vdec.h:
19861         * gst/rtp/gstrtpmp4vdepay.c:
19862         * gst/rtp/gstrtpmp4vdepay.h:
19863         * gst/rtp/gstrtpmp4venc.c:
19864         * gst/rtp/gstrtpmp4venc.h:
19865         * gst/rtp/gstrtpmp4vpay.c:
19866         * gst/rtp/gstrtpmp4vpay.h:
19867         * gst/rtp/gstrtpmpadec.c:
19868         * gst/rtp/gstrtpmpadec.h:
19869         * gst/rtp/gstrtpmpadepay.c:
19870         * gst/rtp/gstrtpmpadepay.h:
19871         * gst/rtp/gstrtpmpaenc.c:
19872         * gst/rtp/gstrtpmpaenc.h:
19873         * gst/rtp/gstrtpmpapay.c:
19874         * gst/rtp/gstrtpmpapay.h:
19875         * gst/rtp/gstrtpspeexdec.c:
19876         * gst/rtp/gstrtpspeexdec.h:
19877         * gst/rtp/gstrtpspeexdepay.c:
19878         * gst/rtp/gstrtpspeexdepay.h:
19879         * gst/rtp/gstrtpspeexenc.c:
19880         * gst/rtp/gstrtpspeexenc.h:
19881         * gst/rtp/gstrtpspeexpay.c:
19882         * gst/rtp/gstrtpspeexpay.h:
19883           Do burger's rename for rtp payloaders and depayloaders
19884
19885 2005-11-30  Wim Taymans  <wim@fluendo.com>
19886
19887         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19888         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
19889         * ext/dv/gstdvdemux.h:
19890         Fix seeking in dvdemux again, add some more debug info.
19891
19892 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19893
19894         * configure.ac:
19895           fix tests
19896
19897 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19898
19899         * PORTED_09:
19900         * docs/random/PORTED_09:
19901           move
19902         * tests/Makefile.am:
19903           add
19904         * win32/gst.sln:
19905           remove
19906
19907 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19908
19909         * Makefile.am:
19910         * check/.cvsignore:
19911         * check/Makefile.am:
19912         * check/elements/.cvsignore:
19913         * check/elements/level.c:
19914         * check/elements/matroskamux.c:
19915         * configure.ac:
19916         * examples/Makefile.am:
19917         * examples/capsfilter/Makefile.am:
19918         * examples/capsfilter/capsfilter1.c:
19919         * examples/gob/Makefile.am:
19920         * examples/gob/gst-identity2.gob:
19921         * examples/gstplay/.cvsignore:
19922         * examples/gstplay/Makefile.am:
19923         * examples/gstplay/player.c:
19924         * examples/indexing/.cvsignore:
19925         * examples/indexing/Makefile.am:
19926         * examples/indexing/indexmpeg.c:
19927         * examples/level/Makefile.am:
19928         * examples/level/README:
19929         * examples/level/demo.c:
19930         * examples/level/plot.c:
19931         * examples/stats/Makefile.am:
19932         * examples/stats/mp2ogg.c:
19933         * examples/switch/.cvsignore:
19934         * examples/switch/Makefile.am:
19935         * examples/switch/switcher.c:
19936           move under tests/
19937
19938 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
19939
19940         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
19941         (gst_text_render_class_init), (resize_bitmap),
19942         (gst_text_render_render_text), (gst_text_render_setcaps),
19943         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
19944         (gst_text_render_chain), (gst_text_render_finalize),
19945         (gst_text_render_init), (gst_text_render_set_property):
19946         * ext/pango/gsttextrender.h:
19947           Add missing files.
19948
19949 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
19950
19951         * configure.ac:
19952         * ext/Makefile.am:
19953         * ext/pango/Makefile.am:
19954         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
19955         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
19956         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
19957         * ext/pango/gstclockoverlay.h:
19958         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
19959         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
19960         (gst_text_overlay_finalize), (gst_text_overlay_init),
19961         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
19962         (gst_text_overlay_text_pad_linked),
19963         (gst_text_overlay_text_pad_unlinked),
19964         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
19965         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
19966         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
19967         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
19968         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
19969         (gst_text_overlay_change_state), (plugin_init):
19970         * ext/pango/gsttextoverlay.h:
19971         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
19972         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
19973         (gst_time_overlay_class_init), (gst_time_overlay_init):
19974         * ext/pango/gsttimeoverlay.h:
19975           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
19976           and add background shading and text wrapping modes. Make 
19977           timoverlay derive from textoverlay. Also add new clockoverlay
19978           element.
19979
19980 2005-11-30  Julien MOUTTE  <julien@moutte.net>
19981
19982         * gst/udp/Makefile.am: Moved to netbuffer.
19983
19984 2005-11-30  Julien MOUTTE  <julien@moutte.net>
19985
19986         * configure.ac:
19987         * PORTED_O9:
19988         * gst/multipart/Makefile.am:
19989         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
19990         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
19991         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
19992         (gst_multipart_demux_change_state),
19993         (gst_multipart_demux_plugin_init):
19994         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
19995         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
19996         (gst_multipart_mux_sinkconnect),
19997         (gst_multipart_mux_request_new_pad),
19998         (gst_multipart_mux_handle_src_event),
19999         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20000         (gst_multipart_mux_change_state): Ported multipart mux/demux to
20001         0.9.
20002
20003 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20004
20005         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20006         * gst/debug/gstnavigationtest.h:
20007         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20008         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20009         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20010         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20011         * gst/effectv/gstrev.c: (gst_revtv_get_type):
20012         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20013         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20014         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20015         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20016         (gst_video_flip_get_type):
20017         * gst/videofilter/gstvideoflip.h:
20018           update for symbols change
20019
20020 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20021
20022         * gst/udp/gstdynudpsink.c:
20023         * gst/udp/gstudpsrc.c:
20024           the old gstnet lib was renamed gstnetbuffer (#322257)
20025
20026 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20027
20028         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20029         (gst_text_overlay_collected):
20030           Actually render the text from the text pad.
20031
20032 2005-11-29  Edward Hervey  <edward@fluendo.com>
20033
20034         * gst/debug/gstnavseek.c: (gst_navseek_event):
20035         * gst/debug/progressreport.c: (gst_progress_report_event):
20036         Update for GstBaseTransform event virtual method
20037
20038 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20039
20040         * ext/cairo/Makefile.am:
20041           no need to link to videofilter
20042
20043 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20044
20045         * gst/debug/Makefile.am:
20046         * gst/debug/gstnavigationtest.h:
20047         * gst/effectv/Makefile.am:
20048         * gst/effectv/gstaging.c:
20049         * gst/effectv/gstdice.c:
20050         * gst/effectv/gstedge.c:
20051         * gst/effectv/gstquark.c:
20052         * gst/effectv/gstrev.c:
20053         * gst/effectv/gstshagadelic.c:
20054         * gst/effectv/gstvertigo.c:
20055         * gst/effectv/gstwarp.c:
20056         * gst/videofilter/Makefile.am:
20057         * gst/videofilter/gstvideofilter.c:
20058         * gst/videofilter/gstvideofilter.h:
20059         * gst/videofilter/gstvideoflip.h:
20060           remove the videofilter library and link to the one in base
20061
20062 2005-11-28  Edward Hervey  <edward@fluendo.com>
20063
20064         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20065         Useless check now we're setting the current entry correctly.
20066
20067 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20068
20069         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20070         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20071         (gst_jpegenc_change_state):
20072           Don't leak input buffer in chain function (fixes #322667); make 
20073           state change function thread-safe; don't repeat the current function
20074           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20075           gst_pad_alloc_buffer(); misc. minor cleanups.
20076
20077 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20078
20079         * gst/matroska/matroska-mux.c:
20080         (gst_matroska_mux_video_pad_setcaps):
20081         Look for pixel-aspect-ratio in caps, not pixel_width and
20082         pixel_height (Fixes: #322645)
20083
20084 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
20085
20086         * gst/matroska/matroska-mux.c:
20087         (gst_matroska_mux_video_pad_setcaps):
20088         From Michal Benes:
20089         frame duration should be GST_SECOND / framerate, not
20090         GST_SECOND * framerate. (Fixes: #322643)
20091
20092 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20093
20094         * configure.ac:
20095           fix up GST_PLUGIN_LDFLAGS
20096         * gst/rtsp/rtspconnection.c:
20097           fix includes (see #317043)
20098         * gst/videofilter/Makefile.am:
20099           stop installing this library
20100
20101 2005-11-26  Edward Hervey  <edward@fluendo.com>
20102
20103         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20104         Handle the case where the incoming Video dv stream doesn't have
20105         a pixel aspect ratio set.
20106
20107 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20108
20109         * docs/plugins/Makefile.am:
20110         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20111         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20112         * ext/flac/gstflacdec.c:
20113           document flacdec
20114
20115 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20116
20117         * docs/plugins/Makefile.am:
20118         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20119         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20120         * docs/plugins/inspect/plugin-autodetect.xml:
20121         * ext/cairo/gstcairo.c: (plugin_init):
20122         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20123         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20124         (gst_text_overlay_init), (gst_text_overlay_font_init),
20125         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20126         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20127         (gst_text_overlay_text_pad_linked),
20128         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20129         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20130         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20131         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20132         (gst_text_overlay_change_state):
20133         * ext/cairo/gsttextoverlay.h:
20134         * ext/cairo/gsttimeoverlay.c:
20135         (gst_cairo_time_overlay_update_font_height),
20136         (gst_cairo_time_overlay_set_caps),
20137         (gst_cairo_time_overlay_get_unit_size),
20138         (gst_cairo_time_overlay_print_smpte_time),
20139         (gst_cairo_time_overlay_transform),
20140         (gst_cairo_time_overlay_base_init),
20141         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20142         (gst_cairo_time_overlay_get_type):
20143         * ext/cairo/gsttimeoverlay.h:
20144           do some name borgifying
20145           document
20146
20147 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
20148
20149         * docs/plugins/Makefile.am:
20150         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20151         * docs/plugins/gst-plugins-good-plugins-sections.txt:
20152         * gst/autodetect/gstautoaudiosink.c:
20153         (gst_auto_audio_sink_base_init):
20154         * gst/autodetect/gstautovideosink.c:
20155         (gst_auto_video_sink_base_init),
20156         (gst_auto_video_sink_factory_filter):
20157           documenting auto*sink
20158           using strstr for the video sink lookup, class field is not ordered
20159         * docs/plugins/inspect/plugin-1394.xml:
20160         * docs/plugins/inspect/plugin-aasink.xml:
20161         * docs/plugins/inspect/plugin-alaw.xml:
20162         * docs/plugins/inspect/plugin-alpha.xml:
20163         * docs/plugins/inspect/plugin-alphacolor.xml:
20164         * docs/plugins/inspect/plugin-auparse.xml:
20165         * docs/plugins/inspect/plugin-autodetect.xml:
20166         * docs/plugins/inspect/plugin-avi.xml:
20167         * docs/plugins/inspect/plugin-cacasink.xml:
20168         * docs/plugins/inspect/plugin-cairo.xml:
20169         * docs/plugins/inspect/plugin-cutter.xml:
20170         * docs/plugins/inspect/plugin-debug.xml:
20171         * docs/plugins/inspect/plugin-dv.xml:
20172         * docs/plugins/inspect/plugin-efence.xml:
20173         * docs/plugins/inspect/plugin-effectv.xml:
20174         * docs/plugins/inspect/plugin-esdsink.xml:
20175         * docs/plugins/inspect/plugin-flac.xml:
20176         * docs/plugins/inspect/plugin-flxdec.xml:
20177         * docs/plugins/inspect/plugin-gconfelements.xml:
20178         * docs/plugins/inspect/plugin-goom.xml:
20179         * docs/plugins/inspect/plugin-jpeg.xml:
20180         * docs/plugins/inspect/plugin-level.xml:
20181         * docs/plugins/inspect/plugin-matroska.xml:
20182         * docs/plugins/inspect/plugin-mulaw.xml:
20183         * docs/plugins/inspect/plugin-navigationtest.xml:
20184         * docs/plugins/inspect/plugin-ossaudio.xml:
20185         * docs/plugins/inspect/plugin-png.xml:
20186         * docs/plugins/inspect/plugin-rtp.xml:
20187         * docs/plugins/inspect/plugin-rtsp.xml:
20188         * docs/plugins/inspect/plugin-shout2send.xml:
20189         * docs/plugins/inspect/plugin-smpte.xml:
20190         * docs/plugins/inspect/plugin-speex.xml:
20191         * docs/plugins/inspect/plugin-udp.xml:
20192         * docs/plugins/inspect/plugin-videobox.xml:
20193         * docs/plugins/inspect/plugin-videoflip.xml:
20194         * docs/plugins/inspect/plugin-videomixer.xml:
20195         * docs/plugins/inspect/plugin-wavenc.xml:
20196         * docs/plugins/inspect/plugin-wavparse.xml:
20197           update for HEAD version
20198
20199 2005-11-25  Michael Smith  <msmith@fluendo.com>
20200
20201         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20202           Patch from Sebastien Cote to close control sockets in udpsrc.
20203
20204 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20205
20206         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20207         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20208         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20209         (gst_quarktv_base_init), (gst_quarktv_class_init),
20210         (gst_quarktv_init): Flush the planes list on reverse caps
20211         negotiation. This was crashing because of differently sized
20212         buffers.
20213
20214 2005-11-24  Julien MOUTTE  <julien@moutte.net>
20215
20216         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20217         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20218         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20219         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20220         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20221         (gst_videoflip_set_property), (gst_videoflip_base_init),
20222         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20223         correctly, fix identity flipping, convert navigation event 
20224         correctly again.
20225
20226 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20227
20228         * configure.ac: back to HEAD
20229
20230 === release 0.9.6 ===
20231
20232 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20233
20234         * configure.ac:
20235           releasing 0.9.6, "Everything's Not Lost"
20236
20237 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20238
20239         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20240         Oops, initialise the framerate GValue
20241
20242 2005-11-23  Julien MOUTTE  <julien@moutte.net>
20243
20244         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20245         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20246         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20247         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20248         (gst_timeoverlay_get_type):
20249         * ext/cairo/gsttimeoverlay.h:
20250         * gst/debug/Makefile.am:
20251         * gst/debug/gstnavigationtest.c:
20252         (gst_navigationtest_handle_src_event),
20253         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20254         (gst_navigationtest_transform), (gst_navigationtest_change_state),
20255         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20256         (gst_navigationtest_init), (gst_navigationtest_get_type),
20257         (plugin_init):
20258         * gst/debug/gstnavigationtest.h:
20259         * gst/effectv/Makefile.am:
20260         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20261         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20262         (gst_agingtv_base_init), (gst_agingtv_class_init),
20263         (gst_agingtv_init), (gst_agingtv_get_type):
20264         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20265         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20266         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20267         (gst_dicetv_get_type):
20268         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20269         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20270         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20271         (gst_edgetv_get_type):
20272         * gst/effectv/gsteffectv.c:
20273         * gst/effectv/gsteffectv.h:
20274         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20275         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20276         (gst_quarktv_change_state), (gst_quarktv_base_init),
20277         (gst_quarktv_class_init), (gst_quarktv_init),
20278         (gst_quarktv_get_type):
20279         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20280         (gst_revtv_get_unit_size), (gst_revtv_transform),
20281         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20282         (gst_revtv_get_type):
20283         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20284         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20285         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20286         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20287         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20288         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20289         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20290         (gst_vertigotv_init), (gst_vertigotv_get_type):
20291         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20292         (gst_warptv_get_unit_size), (gst_warptv_transform),
20293         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20294         (gst_warptv_get_type):
20295         * gst/videofilter/Makefile.am:
20296         * gst/videofilter/gstvideobalance.c:
20297         * gst/videofilter/gstvideobalance.h:
20298         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20299         (gst_videofilter_class_init), (gst_videofilter_init):
20300         * gst/videofilter/gstvideofilter.h:
20301         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20302         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20303         (gst_videoflip_flip), (gst_videoflip_transform),
20304         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20305         (gst_videoflip_base_init), (gst_videoflip_class_init),
20306         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20307         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20308         BaseTransform, it's just a place holder for now and every video
20309         effect plugin has been ported to use BaseTransform features 
20310         directly. QuarkTV was fixed too (was broken), navigationtest works
20311         and best for the end, videoflip converts navigation events depending
20312         on flip method ! Fixes #320953
20313
20314 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20315
20316         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20317         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20318         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20319         (gst_goom_src_negotiate), (gst_goom_chain):
20320         * gst/matroska/matroska-mux.c:
20321         (gst_matroska_mux_video_pad_setcaps):
20322         * sys/osxvideo/osxvideosink.m:
20323           Fixes for API changes
20324
20325 2005-11-23  Michael Smith <msmith@fluendo.com>
20326
20327         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20328         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20329         * ext/jpeg/gstjpegdec.h:
20330         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20331         * ext/jpeg/gstjpegenc.h:
20332         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20333         (gst_smokeenc_resync):
20334         * ext/jpeg/gstsmokeenc.h:
20335           JPEG fractiony goodness.
20336
20337 2005-11-22  Michael Smith <msmith@fluendo.com>
20338
20339         * gst/goom/filters.c:
20340         * gst/goom/graphic.h:
20341           Fix compilation by making some functions static inline instead of
20342           extern inline, matching the way they're used.
20343
20344 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20345
20346         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20347         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20348         * ext/cairo/gsttextoverlay.h:
20349         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20350         * ext/gdk_pixbuf/gstgdkpixbuf.h:
20351         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20352         (gst_pngdec_caps_create_and_set):
20353         * ext/libpng/gstpngdec.h:
20354         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20355         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20356         * gst/avi/gstavimux.c: (gst_avimux_init),
20357         (gst_avimux_vidsinkconnect):
20358         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20359         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20360         (gst_goom_src_negotiate), (gst_goom_chain):
20361         * gst/goom/gstgoom.h:
20362         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20363         * gst/matroska/matroska-mux.c:
20364         (gst_matroska_mux_video_pad_setcaps):
20365         * sys/osxvideo/osxvideosink.h:
20366         * sys/osxvideo/osxvideosink.m:
20367           More fractional framerate conversions 
20368
20369 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20370
20371         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20372         * gst/debug/gstnavigationtest.c:
20373         (gst_navigationtest_handle_src_event):
20374         * gst/videofilter/gstvideofilter.c:
20375         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20376         (gst_videofilter_init):
20377         * gst/videofilter/gstvideofilter.h:
20378           Convert to fractional framerates.
20379
20380 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20381
20382         * ext/aalib/gstaasink.c:
20383         * ext/dv/gstdvdec.c:
20384         * ext/esd/esdmon.c:
20385         * ext/flac/gstflacenc.c:
20386         * ext/gdk_pixbuf/pixbufscale.c:
20387         * ext/libcaca/gstcacasink.c:
20388         * ext/shout2/gstshout2.c:
20389         * gst/alpha/gstalpha.c:
20390         * gst/oldcore/gstaggregator.c:
20391         * gst/oldcore/gstshaper.c:
20392         * gst/smpte/barboxwipes.c:
20393         * gst/smpte/gstsmpte.c:
20394         * gst/videobox/gstvideobox.c:
20395         * gst/videofilter/gstvideoflip.c:
20396         * gst/videomixer/videomixer.c:
20397           fix up more enums
20398
20399 2005-11-22  Michael Smith <msmith@fluendo.com>
20400
20401         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20402         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20403         (gst_videomixer_update_queues):
20404           Fractional framerates, videomixer.
20405
20406 2005-11-22  Michael Smith <msmith@fluendo.com>
20407
20408         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20409         * ext/dv/gstdvdec.h:
20410         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20411         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20412         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20413         (gst_dvdemux_flush):
20414         * ext/dv/gstdvdemux.h:
20415           Fractional framerates for DV. 
20416
20417 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20418
20419         * gst/autodetect/gstautoaudiosink.c:
20420         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20421         * gst/autodetect/gstautovideosink.c:
20422         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20423           Use gst_plugin_feature_list_free() to free feature list and
20424           in the case of autovideosink free the list at all. Also
20425           miscellaneous cosmetic fixes.
20426
20427 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20428
20429         * gst/cutter/gstcutter.c: (gst_cutter_chain),
20430         (gst_cutter_set_property), (gst_cutter_get_caps):
20431           copy calculation code from level; remove use of some audio
20432           functions
20433
20434 2005-11-22  Andy Wingo  <wingo@pobox.com>
20435
20436         * Update for gst_tag_setter API changes.
20437
20438 2005-11-22  Andy Wingo  <wingo@pobox.com>
20439
20440         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20441         (gst_dvdemux_demux_frame)
20442         * ext/flac/gstflacdec.c (gst_flacdec_write)
20443         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20444         (gst_flacenc_sink_event)
20445         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20446         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20447         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20448         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20449         * gst/auparse/gstauparse.c (gst_auparse_chain)
20450         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20451         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20452         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20453         (gst_avi_demux_handle_seek)
20454         * gst/goom/gstgoom.c (gst_goom_event)
20455         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20456         * gst/matroska/matroska-demux.c
20457         (gst_matroska_demux_handle_seek_event)
20458         (gst_matroska_demux_loop_stream_parse_id)
20459         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20460         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20461         (gst_wavparse_stream_headers): Run update-funcnames.
20462
20463 2005-11-22  Edward Hervey  <edward@fluendo.com>
20464
20465         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20466         (gst_dv1394src_init), (gst_dv1394src_dispose),
20467         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20468         (gst_dv1394src_uri_set_uri):
20469         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20470         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20471         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20472         URIHandler interface and element properties are now properly
20473         synchronized for DV1394src and UDPSrc
20474
20475 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20476
20477         * ext/flac/Makefile.am:
20478         * ext/speex/Makefile.am:
20479           libgsttagedit has been renamed to libgsttag.
20480
20481 2005-11-21  Wim Taymans  <wim@fluendo.com>
20482
20483         * gst/rtsp/rtspconnection.c: (read_body):
20484         Apply patch from Sebastien Cote to fix #319184.
20485
20486 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20487
20488         * configure.ac:
20489         * gst/cutter/Makefile.am:
20490         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20491         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20492         (gst_cutter_set_property), (gst_cutter_get_property),
20493         (plugin_init), (gst_cutter_get_caps):
20494           port cutter
20495         * gst/level/gstlevel.c:
20496           fix up plugin details
20497
20498 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20499
20500         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20501         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20502         (gst_flacdec_src_event):
20503         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20504         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20505         (gst_signal_processor_getrange), (gst_signal_processor_chain):
20506         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20507         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20508         (gst_flxdec_sink_event_handler):
20509         * gst/matroska/matroska-demux.c:
20510         (gst_matroska_demux_handle_seek_event):
20511         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20512           Update for stream lock API changes: don't take stream log
20513           in sink event handlers any longer and change GST_STREAM_LOCK
20514           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20515           functions.
20516
20517 2005-11-21  Michael Smith <msmith@fluendo.com>
20518
20519         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20520           gst_object_unref, not g_object_unref
20521
20522 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20523
20524         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20525         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20526           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20527
20528 2005-11-21  Michael Smith <msmith@fluendo.com>
20529
20530         * gst/auparse/Makefile.am:
20531         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20532         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20533         (gst_auparse_change_state):
20534         * gst/auparse/gstauparse.h:
20535           Partially fix #161712. playbin still doesn't work on these files,
20536           (on the bug report, Andy says we aren't typefinding it for some
20537           reason?) but at least auparse isn't totally busted like it was before.
20538
20539 2005-11-21  Andy Wingo  <wingo@pobox.com>
20540
20541         * *.h:
20542         * *.c: Ran scripts/update-macros. Oh yes.
20543
20544 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20545
20546         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20547           Filler events are gone for now, comment out section generating
20548           them.
20549
20550 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20551
20552         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20553         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20554         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20555         * sys/osxvideo/osxvideosink.m:
20556           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20557           (#322027)
20558
20559 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20560
20561         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20562         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20563         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20564         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20565         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20566         (gst_avi_demux_stream_data):
20567         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20568         * gst/wavenc/gstwavenc.c: (write_metadata):
20569         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20570         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20571         Fixes for GST_FOURCC_FORMAT API change.
20572
20573 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20574
20575         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20576         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20577         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20578         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20579         (gst_text_overlay_change_state):
20580         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20581         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20582         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20583         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20584         * gst/videomixer/videomixer.c: (gst_videomixer_init),
20585         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20586         (gst_videomixer_change_state):
20587           Fix for collect pads API change. Also fix textoverlay state
20588           change function.
20589
20590 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20591
20592         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20593         GST_PAD_IS_USABLE by something approaching it.
20594
20595 2005-11-20  Julien MOUTTE  <julien@moutte.net>
20596
20597         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20598         API changes.
20599         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20600         but also fix the code that was not checking return values from
20601         pad_push neither using pad_alloc_buffer.
20602
20603 2005-11-18  Edward Hervey  <edward@fluendo.com>
20604
20605         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20606         (gst_pngenc_chain):
20607         Added debug category
20608         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20609         goes to EOS.
20610
20611 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
20612
20613         * gst/rtp/Makefile.am
20614         * gst/rtp/gstrtp.c
20615         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20616         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20617         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20618         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20619         * gst/rtp/gstrtpg711enc.h:
20620         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20621         * gst/rtp/gstrtpspeexenc.c:
20622         * gst/rtp/gstrtpspeexenc.h:
20623         * gst/rtp/gstrtpspeexdec.c:
20624         * gst/rtp/gstrtpspeexdec.h:
20625         Created Speex payloader and depayloader; Optimize G711 payloader to
20626         use adapter and send packets until MTU size.
20627
20628 2005-11-16  Wim Taymans  <wim@fluendo.com>
20629
20630         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20631         Fix leak in check.
20632
20633 2005-11-16  Wim Taymans  <wim@fluendo.com>
20634
20635         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20636         Fix state change.
20637
20638 2005-11-16  Andy Wingo  <wingo@pobox.com>
20639
20640         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20641         (gst_udpsrc_create): Move comment.
20642
20643 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
20644
20645         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20646
20647         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20648           When seeking, seek to closest index entry at or before the requested
20649           seek position, not just the closest one (#321001).
20650
20651 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20652
20653         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20654         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20655           Invert DIB images again (see #132341).
20656
20657 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20658
20659         * configure.ac:
20660           rework configure.ac file
20661         * ext/aalib/gstaasink.c:
20662         * ext/cairo/gstcairo.c:
20663         * ext/dv/gstdv.c:
20664         * ext/esd/gstesd.c:
20665         * ext/flac/gstflac.c:
20666         * ext/gconf/gstgconfelements.c:
20667         * ext/gdk_pixbuf/gstgdkpixbuf.c:
20668         * ext/jpeg/gstjpeg.c:
20669         * ext/ladspa/gstladspa.c:
20670         * ext/libcaca/gstcacasink.c:
20671         * ext/libmng/gstmng.c:
20672         * ext/libpng/gstpng.c:
20673         * ext/mikmod/gstmikmod.c:
20674         * ext/pango/gsttextoverlay.c:
20675         * ext/pango/gsttimeoverlay.c:
20676         * ext/raw1394/gst1394.c:
20677         * ext/speex/gstspeex.c:
20678         * gst/alpha/Makefile.am:
20679         * gst/alpha/gstalpha.c:
20680         * gst/alpha/gstalphacolor.c:
20681         * gst/auparse/gstauparse.c:
20682         * gst/autodetect/gstautoaudiosink.c:
20683         (gst_auto_audio_sink_factory_filter),
20684         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20685         * gst/autodetect/gstautodetect.c:
20686         * gst/avi/gstavi.c:
20687         * gst/cutter/gstcutter.c:
20688         * gst/debug/efence.c:
20689         * gst/debug/gstdebug.c:
20690         * gst/debug/gstnavigationtest.c:
20691         * gst/effectv/gsteffectv.c:
20692         * gst/flx/gstflxdec.c:
20693         * gst/goom/gstgoom.c:
20694         * gst/interleave/plugin.c:
20695         * gst/law/alaw.c:
20696         * gst/law/mulaw.c:
20697         * gst/level/gstlevel.c:
20698         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20699         * gst/matroska/matroska.c:
20700         * gst/median/gstmedian.c:
20701         * gst/monoscope/gstmonoscope.c:
20702         * gst/multipart/multipart.c:
20703         * gst/oldcore/gstelements.c:
20704         * gst/rtp/gstrtp.c:
20705         * gst/rtsp/gstrtsp.c:
20706         * gst/smoothwave/gstsmoothwave.c:
20707         * gst/smpte/gstsmpte.c:
20708         * gst/udp/gstudp.c:
20709         * gst/videobox/gstvideobox.c:
20710         * gst/videofilter/gstgamma.c:
20711         * gst/videofilter/gstvideobalance.c:
20712         * gst/videofilter/gstvideoflip.c:
20713         * gst/videofilter/gstvideotemplate.c:
20714         * gst/videomixer/videomixer.c:
20715         * gst/wavenc/gstwavenc.c:
20716         * gst/wavparse/gstwavparse.c:
20717         * sys/oss/gstossaudio.c:
20718         * sys/osxaudio/gstosxaudio.c:
20719           update GST_PLUGIN_DEFINE
20720         * gst/rtp/Makefile.am:
20721         * gst/rtp/gstasteriskh263.c:
20722           check for htons/htonl headers and possibly link to winsock2 lib
20723
20724 2005-11-12  Edward Hervey  <edward@fluendo.com>
20725
20726         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
20727         Only GST_DEBUG() information on the valid components.
20728
20729 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20730
20731         * configure.ac: back to HEAD
20732
20733 === release 0.9.5 ===
20734
20735 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20736
20737         * configure.ac:
20738           releasing 0.9.5, "Phone Alarm"
20739
20740 2005-11-11  Edward Hervey  <edward@fluendo.com>
20741
20742         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20743         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20744         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20745         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20746         (gst_avi_demux_loop):
20747         * gst/avi/gstavidemux.h:
20748         Yeah, implement proper seeking. Exact seeking and segment seeking.
20749         Still need to do some checks for segment_stop.
20750
20751 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20752
20753         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20754
20755         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20756           Don't try to ready buffer duration from buffer that we don't
20757           own any  longer and that might already have been unreffed.
20758           (#321136)
20759
20760 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
20761
20762         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20763         (flx_decode_delta_flc), (gst_flxdec_chain):
20764         Attempting to optimize the code for embedded systems.
20765
20766 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
20767
20768         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20769
20770         * sys/oss/gstosssink.c: (gst_oss_sink_close):
20771           Don't re-use already closed file descriptor. (#320920)
20772
20773 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20774
20775         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20776         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20777         (gst_oss_sink_prepare):
20778         * sys/oss/gstosssink.h:
20779           Cache probed caps; fix debug output for SET_PARAM macros.
20780
20781 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20782
20783         * ext/cairo/Makefile.am:
20784         * ext/cairo/gstcairo.c: (plugin_init):
20785         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20786         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20787         (gst_text_overlay_init), (gst_text_overlay_font_init),
20788         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20789         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20790         (gst_text_overlay_text_pad_linked),
20791         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20792         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20793         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20794         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20795         (gst_text_overlay_change_state):
20796         * ext/cairo/gsttextoverlay.h:
20797           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20798           property and redo positioning. Doesn't handle upstream renegotiation
20799           yet though.
20800
20801 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20802
20803         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20804         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20805         (gst_avi_demux_loop):
20806           No need to take the STREAM_LOCK in the loop function. Improve
20807           some debug messages. Don't leak pad names in debug messages.
20808
20809 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20810
20811         * gst/matroska/matroska-demux.c:
20812         (gst_matroska_demux_push_vorbis_codec_priv_data),
20813         (gst_matroska_demux_add_wvpk_header):
20814           Don't error out when the source pad isn't linked.
20815
20816 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
20817
20818         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
20819         (gst_gconf_audio_sink_change_state):
20820         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
20821         (gst_gconf_video_sink_change_state):
20822           Fix state change functions here as well and set kid
20823           to NULL state before removing it.
20824
20825 2005-11-01  Edward Hervey  <edward@fluendo.com>
20826
20827         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
20828         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
20829         Added proper event handlind, 
20830         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
20831         ignored),
20832         and don't set a duration of 0 for buffers otherwise they are discarded
20833         by GstBaseSink.
20834
20835         GstWavEnc needs some serious loving, after going through the code I'm
20836         really wondering how this can stay in -good ...
20837
20838 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20839
20840         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
20841         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
20842         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
20843         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
20844         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
20845         (gst_matroska_mux_collected):
20846           Fix leaks and invalid memory access as reported by valgrind
20847
20848 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20849
20850         Patch by: Michal Benes <michal.benes@xeris.cz>
20851
20852         * check/Makefile.am:
20853         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20854         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
20855         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
20856           add a unit test for matroskamux
20857           fix the bugs that the unit test exposed
20858
20859 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
20860
20861         * gst/autodetect/gstautoaudiosink.c:
20862         (gst_auto_audio_sink_class_init),
20863         (gst_auto_audio_sink_change_state):
20864         * gst/autodetect/gstautovideosink.c:
20865         (gst_auto_video_sink_class_init),
20866         (gst_auto_video_sink_change_state):
20867           Fix state change function and use GST_DEBUG_FUNCPTR in
20868           class_init.
20869
20870 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20871
20872         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20873
20874         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
20875         (gst_ebml_write_reset), (gst_ebml_write_element_new):
20876         * gst/matroska/ebml-write.h:
20877         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20878           Set timestamps on outgoing ebml headers as well, so that the
20879           element after matroskamux can get the timestamp already when
20880           reading the first ebml element and doesn't have to wait for
20881           the actual data buffer for that (#320308).
20882           
20883 2005-10-31  Andy Wingo  <wingo@pobox.com>
20884
20885         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
20886         (gst_videomixer_pad_link): Kill some memleaks.
20887         (gst_videomixer_pad_get_property): Style fix.
20888         (gst_videomixer_pad_set_property): Style fix.
20889         (gst_videomixer_pad_init): Style fix.
20890         (gst_videomixer_update_queues): Kill memleak.
20891         (gst_videomixer_loop): Kill memleak.
20892         (gst_videomixer_collected): Kill memleak.
20893
20894 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
20895
20896         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
20897         gst_auparse_change_state:
20898         Just some cleanup.
20899
20900 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
20901
20902         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
20903         Add checks to GST_FLOW_NOT_LINKED for values returned
20904         from gst_pad_push.
20905         
20906 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20907
20908         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
20909         (gst_rtpg711dec_process):
20910         * gst/rtp/gstrtpgsmenc.c:
20911         Payloader now sets some default caps on the srcpad if caps on the sinkpad
20912         are never set. This is important for the g711 to work with burger's rtpbin
20913         element.
20914
20915 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
20916
20917         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
20918         (gst_speexenc_push_buffer):
20919         Add checks for return values from gst_pad_push and
20920         gst_pad_alloc_buffer.
20921
20922 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
20923
20924         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20925
20926         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
20927         (gst_matroska_demux_parse_info),
20928         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
20929         (gst_matroska_demux_parse_cluster):
20930         * gst/matroska/matroska-ids.h:
20931         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
20932         (gst_matroska_mux_init), (gst_matroska_mux_start),
20933         (gst_matroska_mux_create_buffer_header),
20934         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
20935         (gst_matroska_mux_get_property):
20936         * gst/matroska/matroska-mux.h:
20937           Add SimpleBlock support to matroska demuxer and muxer (part of
20938           Matroska v2). (#319731)
20939
20940 2005-10-28  Wim Taymans  <wim@fluendo.com>
20941
20942         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
20943         (gst_jpeg_dec_change_state):
20944         * ext/jpeg/gstjpegdec.h:
20945         Cleanups. Don't create caps for every chain.
20946
20947 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
20948
20949         * gst/law/alaw-encode.c: (gst_alawenc_init),
20950         (alawenc_setcaps), (gst_alawenc_chain)
20951         * gst/law/alaw-encode.h:
20952         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
20953         (mulawenc_setcaps), (gst_mulawenc_chain)
20954         * gst/law/mulaw-encode.h:
20955         Set timestamp on buffer and it allows RTP G711 elements
20956         work properly.
20957
20958 2005-10-27  Wim Taymans  <wim@fluendo.com>
20959
20960         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
20961         Set correct format on oss instead of a silly value. 
20962
20963 2005-10-27  Julien MOUTTE  <julien@moutte.net>
20964
20965         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
20966         (gst_video_box_transform_caps), (gst_video_box_set_caps),
20967         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
20968         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
20969         I420 rendering as well, doesn't bring much for my platform.
20970         Might help on some other platforms.
20971
20972 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
20973
20974         * gst/rtp/gstrtpgsmenc.c:
20975         * gst/rtp/gstrtpgsmparse.c:
20976         Declaring the padtemplate correctly.
20977
20978 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
20979
20980         * gst/rtp/gstrtpg711dec.c:
20981         * gst/rtp/gstrtpg711enc.c:
20982         * gst/rtp/gstrtpgsmenc.c:
20983         * gst/rtp/gstrtpgsmparse.c:
20984         Setting the proper copyright notice.
20985
20986 2005-10-26  Julien MOUTTE  <julien@moutte.net>
20987
20988         * gst/videobox/Makefile.am: Use liboil.
20989         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
20990         (gst_video_box_set_property), (gst_video_box_transform_caps),
20991         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
20992         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
20993         using liboil. Will dot the same to I420 border generation
20994         tomorrow.
20995
20996 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
20997
20998         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
20999         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21000         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21001         * gst/rtp/gstrtpg711dec.h:
21002         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21003         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21004         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21005         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21006         (gst_rtpgsmenc_handle_buffer):
21007         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21008         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21009         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21010         * gst/rtp/gstrtpgsmparse.h:
21011         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21012         inherits from the basertpdepayloader.
21013
21014 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21015
21016         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21017         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21018         (gst_video_box_ayuv): Removing this forgotten debug.
21019
21020 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21021
21022         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21023         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21024         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21025
21026 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21027
21028         * sys/oss/gstossaudio.c:
21029         * sys/oss/gstossdmabuffer.c:
21030         * sys/oss/gstosshelper.c:
21031         * sys/oss/gstossmixer.c:
21032         * sys/oss/gstossmixerelement.c:
21033         * sys/oss/gstossmixertrack.c:
21034         * sys/oss/gstosssink.c:
21035         * sys/oss/gstosssrc.c:
21036           Actually use the 'oss' debug category we register.
21037
21038 2005-10-26  Julien MOUTTE  <julien@moutte.net>
21039
21040         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21041         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21042         Use gst_pad_get_parent and drop the ref that was added through
21043         that call.
21044
21045 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21046
21047         * gst/rtp/gstrtpgsmenc.c:
21048           Fix compilation
21049
21050 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21051
21052         * gst/rtp/gstrtpg711dec.c
21053         Just removed a couple of lines of weird code used during
21054         development/test time.
21055
21056 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
21057
21058         * gst/rtp/Makefile.am
21059         * gst/rtp/gstrtp.c
21060         * gst/rtp/gstrtpg711enc.c
21061         * gst/rtp/gstrtpg711enc.h
21062         * gst/rtp/gstrtpg711dec.c
21063         * gst/rtp/gstrtpg711dec.h
21064         Created G711 payloader and depayloader (it supports mulaw and alaw
21065         (dec)encoders)
21066
21067 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21068
21069         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21070         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21071         Doh ! I introduced wingo's bug again ! Sorry...
21072
21073 2005-10-25  Christian Schaller <christian@fluendo.com> 
21074
21075         * gst/rtp/Makefile.am: add missing header files for disting
21076
21077 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21078
21079         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21080         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21081         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21082         (gst_rtpgsmenc_handle_buffer):
21083         * gst/rtp/gstrtpgsmenc.h:
21084         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21085         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21086         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21087         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21088         * gst/rtp/gstrtpgsmparse.h:
21089         Getting the GSM (de)payloader working and compatible with our plans for RTP.
21090
21091 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21092
21093         * ext/libpng/gstpngdec.c: (user_info_callback),
21094         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21095         a newsegment event, move some redundant code in a single place.
21096
21097 2005-10-25  Julien MOUTTE  <julien@moutte.net>
21098
21099         * ext/libpng/gstpngdec.c: (user_info_callback),
21100         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21101         hack to get correct colors order when we have a png image with
21102         alpha channel.
21103
21104 2005-10-24  Edward Hervey  <edward@fluendo.com>
21105
21106         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
21107         Call gst_element_no_more_pads when there will be no more pads.
21108
21109 2005-10-24  Wim Taymans  <wim@fluendo.com>
21110
21111         * gst/rtp/Makefile.am:
21112         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21113         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21114         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21115         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21116         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21117         (gst_asteriskh263_plugin_init):
21118         * gst/rtp/gstasteriskh263.h:
21119         * gst/rtp/gstrtp.c: (plugin_init):
21120         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21121         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21122         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21123         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21124         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21125         (gst_rtph263enc_plugin_init):
21126         * gst/rtp/gstrtph263enc.h:
21127         Added two new payloaders, an RFC 2190 payloader for h263 and
21128         a payload convertor for an asterisk server.
21129
21130 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21131
21132         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21133           Set bytes_per_sample correctly (is not always 4, but 
21134           depends on width and number of channels).
21135
21136 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
21137
21138         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21139         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21140         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21141         (gst_flacenc_sink_event), (gst_flacenc_chain),
21142         (gst_flacenc_set_property), (gst_flacenc_get_property),
21143         (gst_flacenc_change_state):
21144         * ext/flac/gstflacenc.h:
21145           Fix seeking, so that flacenc can rewrite the header with the
21146           correct duration and amount of samples and all that at EOS;
21147           also set timestamps and granulepos on outgoing buffers; add
21148           debug category; fix state change function.
21149           
21150 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21151
21152         * gst/videomixer/videomixer.c: Don't restrict video geometry
21153         from 16 to 4096.
21154
21155 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21156
21157         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21158         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21159         Fix caps negotiation correctly, add debugging category.
21160
21161 2005-10-24  Christian Schaller  <christian@fluendo.com>
21162
21163         * configure.ac: Port over Thomas's change from base listing all plugins
21164
21165 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21166
21167         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21168         a sink pad.
21169
21170 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21171
21172         * configure.ac:
21173         * docs/upload.mak:
21174           back to HEAD
21175
21176 === release 0.9.4 ===
21177
21178 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21179
21180         * configure.ac:
21181           Releasing 0.9.4, "Dromiceiomimus"
21182
21183 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
21184
21185         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21186         (gst_speexenc_src_query):
21187           Add position and duration query, fix query type function.
21188           
21189         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21190         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21191           Let's not set non-fixed caps on source pads.
21192
21193 2005-10-21  Wim Taymans  <wim@fluendo.com>
21194
21195         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21196         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21197         (gst_avi_demux_handle_seek):
21198         Set correct stream_time in newsegment event.
21199         avi can also handle a duration query now.
21200
21201 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21202
21203         * gst/matroska/matroska-demux.c:
21204         (gst_matroska_demux_handle_src_query),
21205         (gst_matroska_demux_handle_seek_event),
21206         (gst_matroska_demux_loop_stream_parse_id):
21207           Fix duration query; fix basetime in newsegment event after
21208           seek; fix duration in initial newsegment event.
21209
21210         * gst/matroska/matroska-mux.c:
21211         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21212           Extract number of channels and samplerate from vorbis headers;
21213           add some debug messages when querying the durations of the
21214           input streams.
21215
21216 2005-10-20  Wim Taymans  <wim@fluendo.com>
21217
21218         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21219         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21220         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21221         Set stream time correctly in newsegment.
21222
21223 2005-10-20  Wim Taymans  <wim@fluendo.com>
21224
21225         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21226         Correctly fill in the stream time.
21227
21228 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21229
21230         * check/elements/level.c: (GST_START_TEST):
21231         * gst/level/gstlevel.c: (gst_level_message_new):
21232         * gst/level/level-example.c: (message_handler):
21233           use ELEMENT messages instead
21234
21235 2005-10-19  Wim Taymans  <wim@fluendo.com>
21236
21237         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21238         (gst_dvdemux_src_query):
21239         * ext/flac/gstflacdec.c: (gst_flacdec_length),
21240         (gst_flacdec_src_query):
21241         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21242         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21243         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21244         * gst/debug/gstnavseek.c: (gst_navseek_seek):
21245         * gst/debug/progressreport.c: (gst_progress_report_report):
21246         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21247         * gst/matroska/matroska-demux.c:
21248         (gst_matroska_demux_handle_src_query):
21249         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21250         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21251         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21252         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21253         (gst_wavparse_srcpad_event):
21254         API change fix.
21255
21256 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21257
21258         * gst/goom/filters.c:
21259         * gst/goom/graphic.h:
21260         * gst/goom/lines.c:
21261           Make inline functions either 'static inline' or 'extern inline',
21262           otherwise the Forte compiler apparently won't inline them (#317300).
21263
21264 2005-10-19  Julien MOUTTE  <julien@moutte.net>
21265
21266         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21267         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21268         (user_info_callback), (user_endrow_callback), (user_end_callback),
21269         (user_read_data), (gst_pngdec_caps_create_and_set),
21270         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21271         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21272         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21273         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21274         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21275         very nice and handle push/pull based model. if you have filesrc
21276         connected to it, it will do random access to load the png file.
21277         If you have a network source that can't do _getrange, it does 
21278         progressive loading through the chain function.
21279         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21280         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21281         thanks to Master Wim Taymans ;-)
21282
21283 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
21284
21285         * gst/matroska/Makefile.am:
21286         * gst/matroska/ebml-read.c:
21287         * gst/matroska/ebml-read.h:
21288         * gst/matroska/matroska-demux.c:
21289         * gst/matroska/matroska-demux.h:
21290         * gst/matroska/matroska.c: (plugin_init):
21291           Ported matroska demuxer to 0.9.
21292
21293 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
21294
21295         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21296
21297         * gst/matroska/matroska-mux.c:
21298         (gst_matroska_mux_video_pad_setcaps),
21299         (gst_matroska_mux_audio_pad_setcaps):
21300           Fix mpeg4 input handling (#318847); also, while we're at it,
21301           fix media type for Motion-JPEG: should be image/jpeg.
21302
21303 2005-10-18  Wim Taymans  <wim@fluendo.com>
21304
21305         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21306         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21307         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21308         Fix for segment-start/stop API change.
21309
21310 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21311
21312         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21313         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21314         way.
21315
21316 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21317
21318         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21319         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21320         output declared in transform_caps.
21321
21322 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21323
21324         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21325
21326 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21327
21328         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21329         (gst_video_box_get_unit_size): Fix wrong size calculations and
21330         implement get_unit_size correctly.
21331
21332 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
21333
21334         * configure.ac:
21335           Enable flx plugin.
21336
21337         * gst/flx/gstflxdec.c: (flx_decode_chunks):
21338           Fix gcc4 signedness issue.
21339
21340 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21341
21342         * configure.ac: Adding videomixer.
21343         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21344         (user_read_data), (gst_pngdec_chain): More debugging.
21345         * gst/alpha/Makefile.am: Adding alphacolor
21346         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21347         (gst_alpha_color_class_init), (gst_alpha_color_init),
21348         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21349         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21350         (plugin_init): Ported to 0.9 using in place base tranform.
21351         * gst/videomixer/Makefile.am:
21352         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21353         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21354         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21355         (gst_videomixer_pad_init), (gst_videomixer_class_init),
21356         (gst_videomixer_init), (gst_videomixer_getcaps),
21357         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21358         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21359         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21360         to 0.9 using collectpads.
21361
21362 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
21363
21364         * configure.ac:
21365         * gst/flx/Makefile.am:
21366         * gst/flx/gstflxdec.c: (gst_flxdec_init),
21367         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21368         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21369         * gst/flx/gstflxdec.h:
21370         flx plugin ported to 0.9
21371
21372 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21373
21374         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21375           use new gst_version_string()
21376
21377 2005-10-16  Andy Wingo  <wingo@pobox.com>
21378
21379         * configure.ac: GLIB_CHECK.
21380
21381 2005-10-15  Julien MOUTTE  <julien@moutte.net>
21382
21383         * ext/libpng/Makefile.am:
21384         * ext/libpng/gstpng.c: (plugin_init):
21385         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21386         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21387         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21388
21389 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
21390
21391         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21392
21393         * configure.ac:
21394         * gst/matroska/Makefile.am:
21395         * gst/matroska/ebml-ids.h:
21396         * gst/matroska/ebml-write.c:
21397         * gst/matroska/ebml-write.h:
21398         * gst/matroska/matroska-ids.h:
21399         * gst/matroska/matroska-mux.c:
21400         * gst/matroska/matroska-mux.h:
21401         * gst/matroska/matroska.c: (plugin_init):
21402           Port matroska muxer to 0.9 (#318847).
21403
21404 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21405
21406         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21407         (comment_init), (comment_add):
21408           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21409           use GST_READ_UINT32_LE() and friends rather than the private
21410           implementation of those same macros.
21411
21412 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21413
21414         * examples/stats/mp2ogg.c:
21415           more typo fixes
21416
21417 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21418
21419         * examples/indexing/indexmpeg.c: (main):
21420         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21421         (gst_esdmon_close_audio), (gst_esdmon_change_state):
21422         * ext/esd/esdmon.h:
21423         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21424         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21425         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21426         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21427         * gst/avi/gstavimux.c: (gst_avimux_init):
21428         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21429         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21430         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21431         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21432         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21433         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21434         * gst/oldcore/gstmultifilesrc.h:
21435         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21436         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21437         (gst_pipefilter_change_state):
21438         * gst/oldcore/gstpipefilter.h:
21439         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21440         * gst/videomixer/videomixer.c: (gst_videomixer_init):
21441         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21442         * sys/osxaudio/gstosxaudiosink.h:
21443         * sys/osxaudio/gstosxaudiosrc.h:
21444           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21445           moved bitshift from macro to enum definition
21446
21447 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
21448
21449         * ext/Makefile.am:
21450         * ext/cairo/Makefile.am:
21451         * ext/cairo/gstcairo.c: (plugin_init):
21452         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21453         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21454         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21455         * ext/cairo/gsttimeoverlay.h:
21456           update of cairo-based timeoverlay to 1.0 Cairo API
21457           doesn't work yet for resizing of output sink
21458
21459 2005-10-11  Wim Taymans  <wim@fluendo.com>
21460
21461         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21462         newsegment API fix.
21463
21464 2005-10-11  Wim Taymans  <wim@fluendo.com>
21465
21466         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21467         (gst_dvdemux_demux_frame):
21468         * ext/flac/gstflacdec.c: (gst_flacdec_write):
21469         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21470         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21471         (gst_avi_demux_handle_seek):
21472         * gst/goom/gstgoom.c: (gst_goom_event):
21473         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21474         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21475         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21476         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21477         (gst_wavparse_srcpad_event):
21478         newsegment API update.
21479
21480 2005-10-11  Andy Wingo  <wingo@pobox.com>
21481
21482         * ext/speex/gstspeexenc.c: Signedness cleanups.
21483
21484 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
21485
21486         * PORTED_09:
21487         * ext/speex/Makefile.am:
21488         * ext/speex/gstspeex.c:
21489         * ext/speex/gstspeexenc.c:
21490         Speexenc ported to 0.9
21491
21492 2005-10-10  Wim Taymans  <wim@fluendo.com>
21493
21494         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21495         (gst_oss_sink_init), (gst_oss_sink_set_property),
21496         (gst_oss_sink_get_property), (gst_oss_sink_open),
21497         (gst_oss_sink_prepare), (gst_oss_sink_reset):
21498         * sys/oss/gstosssink.h:
21499         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21500         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21501         (gst_oss_src_prepare):
21502         Cleanups, make device configurable in the sink, handle and report
21503         errors.
21504
21505 2005-10-10  Wim Taymans  <wim@fluendo.com>
21506
21507         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21508         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21509         Make sure element is NULL before removing from the bin.
21510
21511 2005-10-07  Andy Wingo  <wingo@pobox.com>
21512
21513         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21514         block forever in a read().
21515         (gst_dv1394src_bus_reset): Post a message when the cable is
21516         unplugged.
21517         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21518         (gst_dv1394src_bus_reset): Don't unref the message.
21519
21520         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21521         hacking. The only change should be that the state change stuff was
21522         put into basesrc's start() and stop() routines, which coalesces
21523         some steps.
21524
21525 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
21526
21527         * configure.ac:
21528           Add check for mmap
21529           
21530         * gst/debug/Makefile.am:
21531           Only compile efence plugin on systems that have mmap.
21532
21533 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
21534
21535         * gst/debug/Makefile.am:
21536         * gst/debug/breakmydata.c:
21537         * gst/debug/gstdebug.c:
21538         * gst/debug/gstnavigationtest.c:
21539         * gst/debug/gstnavseek.c: 
21540         * gst/debug/gstnavseek.h:
21541         * gst/debug/progressreport.c: 
21542         * gst/debug/testplugin.c:
21543           Port progressreport, navseek, navigationtest, testsink and
21544           breakmydata.
21545
21546 2005-10-05  Edward Hervey  <edward@fluendo.com>
21547
21548         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21549         (gst_dvdemux_src_query):
21550         Fixes for better conversion
21551
21552 2005-10-04  Michael Smith <msmith@fluendo.com>
21553
21554         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21555         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21556         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21557         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21558           Set state of elements to NULL before removing from bins.
21559           Set state of test element to NULL if we failed to move it to READY
21560
21561 2005-10-04  Edward Hervey  <edward@fluendo.com>
21562
21563         * ext/dv/Makefile.am:
21564         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
21565         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21566         Corrected the query function for position so it doesn't forget what
21567         format was asked, and calls the conversion functions on the correct pad.
21568
21569 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21570
21571         * configure.ac:
21572           back to development
21573
21574 === release 0.9.3 ===
21575
21576 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21577
21578         * configure.ac:
21579           Releasing 0.9.3, "Aramis"
21580
21581 2005-10-03  Andy Wingo  <wingo@pobox.com>
21582
21583         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21584         error returns.
21585
21586 2005-10-02  Andy Wingo  <wingo@pobox.com>
21587
21588         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21589
21590         * ext/flac/gstflacenc.c: Ported to 0.9.
21591
21592         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21593
21594         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21595         and link to gsttagedit. Enable flacenc.
21596
21597         * ext/flac/gstflacdec.c: Re-enable tag reading.
21598
21599 2005-09-30  Wim Taymans  <wim@fluendo.com>
21600
21601         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21602         * gst/rtp/gstrtpgsmparse.c:
21603         * gst/rtp/gstrtph263penc.c:
21604         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21605         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21606         (gst_rtpmp4venc_set_property):
21607         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21608         Various class and caps fixes from Andre Magalhaes (andrunko)
21609
21610 2005-09-29  Wim Taymans  <wim@fluendo.com>
21611
21612         * gst/level/level-example.c: (main):
21613         Update for new bus API.
21614
21615 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
21616
21617         * configure.ac:
21618           Fix unexpanded autoconf macro GST_DOC, which has been renamed
21619           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21620
21621 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
21622
21623         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21624           Fix playback of mono streams (bytes_per_sample should be set
21625           from the sample width and the number of channels negotiated,
21626           and not just be set to 4) (#317338)
21627
21628 2005-09-26  Wim Taymans  <wim@fluendo.com>
21629
21630         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21631         (gst_rtpmpaenc_handle_buffer):
21632         Set buffer duration correctly.
21633
21634 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
21635
21636         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21637         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21638         (gst_avi_demux_change_state):
21639           Don't crash when encountering a stream with an unknown fourcc or
21640           codec id. Instead, create a pad of type video/x-avi-unknown or
21641           audio/x-avi-unknown, which as a side-effect also results in less
21642           confusing error messages in players ('no decoder' vs. 'no streams');
21643           minor fixes to state change function and class_init function.
21644
21645 2005-09-24  Wim Taymans  <wim@fluendo.com>
21646
21647         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21648         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21649         These are sinks.
21650
21651 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21652
21653         * check/elements/level.c: (GST_START_TEST):
21654           fix test for new GstClockTime use
21655         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21656         (gst_level_transform_ip):
21657         * gst/level/gstlevel.h:
21658           fix up the decay peak, ensuring the decay peak is never lower
21659           than the peak for that interval
21660
21661 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21662
21663         * docs/plugins/gst-plugins-good-plugins.args:
21664         * docs/plugins/inspect/plugin-alpha.xml:
21665         * docs/plugins/inspect/plugin-rtp.xml:
21666         * gst/level/gstlevel.c: (gst_level_set_caps),
21667         (gst_level_transform_ip):
21668           updating docs
21669
21670 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21671
21672         * Makefile.am:
21673         * check/elements/level.c: (GST_START_TEST):
21674         * gst/level/Makefile.am:
21675         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21676         (gst_level_set_property), (gst_level_get_property),
21677         (gst_level_set_caps), (gst_level_message_new),
21678         (gst_level_transform_ip):
21679         * gst/level/gstlevel.h:
21680         * gst/level/level-example.c: (message_handler), (main):
21681           convert to using GstClockTime for all time values, finally.
21682
21683 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21684
21685         * gst/auparse/Makefile.am:
21686         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21687           fix up build
21688         * configure.ac:
21689         * ext/cairo/Makefile.am:
21690         * ext/dv/Makefile.am:
21691         * ext/esd/Makefile.am:
21692         * ext/flac/Makefile.am:
21693         * ext/gconf/Makefile.am:
21694         * ext/gdk_pixbuf/Makefile.am:
21695         * ext/jpeg/Makefile.am:
21696         * ext/ladspa/Makefile.am:
21697         * ext/libcaca/Makefile.am:
21698         * ext/libmng/Makefile.am:
21699         * ext/libpng/Makefile.am:
21700         * ext/mikmod/Makefile.am:
21701         * ext/pango/Makefile.am:
21702         * ext/raw1394/Makefile.am:
21703         * ext/shout2/Makefile.am:
21704         * ext/speex/Makefile.am:
21705         * gst/alpha/Makefile.am:
21706         * gst/autodetect/Makefile.am:
21707         * gst/avi/Makefile.am:
21708         * gst/cutter/Makefile.am:
21709         * gst/debug/Makefile.am:
21710         * gst/effectv/Makefile.am:
21711         * gst/flx/Makefile.am:
21712         * gst/goom/Makefile.am:
21713         * gst/interleave/Makefile.am:
21714         * gst/law/Makefile.am:
21715         * gst/matroska/Makefile.am:
21716         * gst/median/Makefile.am:
21717         * gst/monoscope/Makefile.am:
21718         * gst/multipart/Makefile.am:
21719         * gst/oldcore/Makefile.am:
21720         * gst/rtp/Makefile.am:
21721         * gst/rtsp/Makefile.am:
21722         * gst/smoothwave/Makefile.am:
21723         * gst/smpte/Makefile.am:
21724         * gst/videobox/Makefile.am:
21725         * gst/videofilter/Makefile.am:
21726         * gst/videomixer/Makefile.am:
21727         * gst/wavenc/Makefile.am:
21728         * gst/wavparse/Makefile.am:
21729         * sys/oss/Makefile.am:
21730         * sys/osxaudio/Makefile.am:
21731         * sys/osxvideo/Makefile.am:
21732           fix up GST_LIBS use
21733
21734 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21735
21736         * gst/auparse/Makefile.am:
21737         * gst/auparse/gstauparse.c: (gst_auparse_chain):
21738           fix build of auparse
21739
21740 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21741
21742         * configure.ac:
21743         * PORTED_09:
21744         * gst/auparse/gstauparse.c:
21745         * gst/auparse/gstauparse.h:
21746         Auparse ported to 0.9.
21747
21748 2005-09-22  Wim Taymans  <wim@fluendo.com>
21749
21750         * gst/rtp/TODO:
21751         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21752         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21753         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21754         (gst_rtpmp4venc_set_property):
21755         * gst/rtp/gstrtpmp4venc.h:
21756         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21757         * gst/rtp/gstrtpmpaenc.h:
21758         Use is_filled to both check MTU and max-ptime of base class.
21759
21760 2005-09-22  Wim Taymans  <wim@fluendo.com>
21761
21762         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21763         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21764         (gst_rtpmp4venc_set_property):
21765         Don't fragment packets with multiple frames.
21766
21767 2005-09-22  Wim Taymans  <wim@fluendo.com>
21768
21769         * gst/rtp/TODO:
21770         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21771         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21772         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21773         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21774         (gst_rtpmp4venc_get_property):
21775         * gst/rtp/gstrtpmp4venc.h:
21776         Remove g_print.
21777         Update TODO
21778         Make payload encoder a bit smarter and more correct with
21779         timestamps.
21780         Added option in payloader to include config string in-band.
21781
21782 2005-09-21  Wim Taymans  <wim@fluendo.com>
21783
21784         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21785         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21786         (gst_rtspsrc_send):
21787         Strip spaces for key/value pairs.
21788
21789 2005-09-21  Wim Taymans  <wim@fluendo.com>
21790
21791         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21792         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21793         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21794         (gst_rtspsrc_change_state):
21795         More SDP parsing and caps setting.
21796         Do NO_PREROLL differently.
21797         add pads only after negotiated.
21798
21799         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21800         (gst_udpsrc_getcaps):
21801         Implement the getcaps function.
21802
21803 2005-09-21  Wim Taymans  <wim@fluendo.com>
21804
21805         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21806         (gst_rtpamrdec_chain):
21807         Handle multiple AMr packets per payload. Handle CRC and
21808         parse ILL/ILP.
21809
21810         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21811         Make caps params strings for easy SDP mapping.
21812         
21813         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
21814         Handle capsnego better.
21815
21816         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21817         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
21818         Generate and parse config string in the caps.
21819
21820 2005-09-21  Wim Taymans  <wim@fluendo.com>
21821
21822         * gst/rtp/README:
21823         Update README
21824
21825         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
21826         Make extra params as strings.
21827
21828         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
21829         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21830         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
21831         Make state change return NO_PREROLL as this is a live
21832         source.
21833
21834         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21835         Don't unref old caps when NULL.
21836
21837 2005-09-20  Wim Taymans  <wim@fluendo.com>
21838
21839         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
21840         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
21841         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
21842         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
21843         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
21844         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
21845         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
21846         * gst/rtsp/sdpmessage.h:
21847         Add URI handler.
21848         Parse SDP and create caps.
21849
21850 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
21851
21852         * gst/alpha/gstalpha.c:
21853           fix element description
21854
21855 2005-09-19  Wim Taymans  <wim@fluendo.com>
21856
21857         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
21858         Don't check payload for now.
21859
21860 2005-09-19  Wim Taymans  <wim@fluendo.com>
21861
21862         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
21863         (gst_wavparse_init), (gst_wavparse_parse_file_header),
21864         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
21865         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21866         (gst_wavparse_loop), (gst_wavparse_pad_convert),
21867         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
21868         (gst_wavparse_change_state):
21869         * gst/wavparse/gstwavparse.h:
21870         Fix wavparse some more.
21871
21872 2005-09-19  Wim Taymans  <wim@fluendo.com>
21873
21874         * check/elements/level.c: (GST_START_TEST):
21875         Fix for bus API change.
21876
21877 2005-09-19  Wim Taymans  <wim@fluendo.com>
21878
21879         * gst/level/level-example.c: (main):
21880         Fix for new bus API.
21881
21882         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
21883         Set caps on pads.
21884
21885 2005-09-15  Wim Taymans  <wim@fluendo.com>
21886
21887         * gst/rtp/Makefile.am:
21888         * gst/rtp/README:
21889         * gst/rtp/gstrtp.c: (plugin_init):
21890         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
21891         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
21892         (gst_rtpamrdec_change_state):
21893         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
21894         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
21895         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
21896         * gst/rtp/gstrtpamrenc.h:
21897         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21898         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
21899         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
21900         * gst/rtp/gstrtpgsmenc.h:
21901         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
21902         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
21903         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
21904         (gst_rtpgsmparse_change_state):
21905         * gst/rtp/gstrtpgsmparse.h:
21906         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
21907         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
21908         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
21909         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
21910         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
21911         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
21912         * gst/rtp/gstrtph263penc.h:
21913         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
21914         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
21915         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
21916         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
21917         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
21918         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
21919         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
21920         * gst/rtp/gstrtpmp4venc.h:
21921         * gst/rtp/gstrtpmpadec.c:
21922         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
21923         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
21924         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
21925         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
21926         * gst/rtp/gstrtpmpaenc.h:
21927         Updates to payloader/depayloaders, make payloaders use
21928         the base classes.
21929         Updated README with suggested RTP caps and how to convert
21930         to/from SDP.
21931         Added config descriptor in mp4v payloader.
21932
21933 2005-09-15  Andy Wingo  <wingo@pobox.com>
21934
21935         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
21936         * gst/autodetect/gstautovideosink.c
21937         (gst_auto_video_sink_find_best): Update for new registry API.
21938
21939 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21940
21941         * common/c-to-xml.py:
21942         * common/gtk-doc-plugins.mak:
21943           a simple py script to generate valid xml from a C example
21944           probably also need to strip an MIT license when we decide
21945         * docs/plugins/Makefile.am:
21946         * gst/level/Makefile.am:
21947         * gst/level/gstlevel.c: (gst_level_init):
21948         * gst/level/level-example.c: (message_handler), (main):
21949           add an example to level that will show up in the docs
21950         * gst/rtp/TODO:
21951           add a note for the future
21952
21953 2005-09-14  Michael Smith <msmith@fluendo.com>
21954
21955         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
21956           Actually define the debug object being used in wavenc. Fixes #316205
21957
21958 2005-09-14  Michael Smith <msmith@fluendo.com>
21959
21960         * gst/smpte/Makefile.am:
21961           Link against GST_BASE_LIBS, to get it linked against libgstbase;
21962           needed to build on windows (bug 316204)
21963
21964 2005-09-12  Andy Wingo  <wingo@pobox.com>
21965
21966         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
21967
21968 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
21969
21970         * configure.ac:
21971         * gst/fdsrc/Makefile.am:
21972         * gst/fdsrc/gstfdsrc.c:
21973         * gst/fdsrc/gstfdsrc.h:
21974           Move fdsrc back into gstreamer core elements.
21975
21976         * gst/level/gstlevel.c: (gst_level_class_init),
21977         (gst_level_transform_ip):
21978         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
21979           Basetransform changes.
21980
21981 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21982
21983         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
21984         * ext/jpeg/smokecodec.c: (find_best_size):
21985           fix compiler warnings
21986
21987 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21988
21989         * gst-plugins-good.spec.in:
21990           spec file fixes
21991         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
21992         (gst_multiudpsink_render), (gst_multiudpsink_add),
21993         (gst_multiudpsink_clear):
21994           it actually helps to actually stream if we hook up the
21995           "add" signal to an actual implementation
21996         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
21997           some debugging
21998
21999 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
22000
22001         * ext/jpeg/Makefile.am:
22002         * ext/jpeg/gstjpeg.c
22003         * ext/jpeg/gstjpegenc.c:
22004         * ext/jpeg/gstsmokeenc.c:
22005
22006 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22007
22008         * ext/flac/gstflacdec.c:
22009         * ext/flac/gstflacenc.c:
22010         * ext/flac/gstflactag.c:
22011         * ext/speex/gstspeexenc.c:
22012           gsttaginterface.h -> gsttagsetter.h
22013
22014 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22015
22016         * configure.ac:
22017         * gst/debug/Makefile.am:
22018         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22019         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22020         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22021         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22022         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22023           Port to 0.9 and re-enable efence plugin.
22024
22025 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
22026
22027         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22028         (gst_flacdec_write), (gst_flacdec_convert_src):
22029         * ext/flac/gstflacdec.h:
22030           Add support for flac files with 24/32 bits per sample; and misc.
22031           minor clean-ups. Seeking is still partly broken (for me at least).
22032
22033 2005-09-06  Wim Taymans  <wim@fluendo.com>
22034
22035         * gst/rtp/Makefile.am:
22036         * gst/rtp/gstrtp.c: (plugin_init):
22037         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22038         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22039         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22040         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22041         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22042         (gst_rtpmp4vdec_plugin_init):
22043         * gst/rtp/gstrtpmp4vdec.h:
22044         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22045         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22046         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22047         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22048         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22049         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22050         * gst/rtp/gstrtpmp4venc.h:
22051         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22052         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22053         Added mpeg4 video payload encoder/decoder.
22054         Added some docs in mpa payloader.
22055
22056 === release 0.9.1 ===
22057
22058 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22059
22060         * NEWS:
22061         * README:
22062         * RELEASE:
22063         * autogen.sh:
22064         * configure.ac:
22065           releasing 0.9.1, "Blondie"
22066
22067 2005-09-05  Andy Wingo  <wingo@pobox.com>
22068
22069         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22070         here from the state change handler, so we fire signals without
22071         holding the state lock.
22072
22073 2005-09-02  Andy Wingo  <wingo@pobox.com>
22074
22075         * All plugins updated for element state changes.
22076
22077 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22078
22079         * Makefile.am:
22080         * check/.cvsignore:
22081         * check/Makefile.am:
22082         * check/elements/.cvsignore:
22083         * check/elements/level.c: (setup_level), (cleanup_level),
22084         (GST_START_TEST), (level_suite), (main):
22085           add a test for level
22086         * common/release.mak:
22087           move the enum checking to release.mak
22088         * configure.ac:
22089           add valgrind and check checking
22090         * gst/level/gstlevel.c: (gst_level_transform):
22091         * gst/level/gstlevel.h:
22092           fix Andy's cast bug
22093           convert a field to int
22094           fix the arithmetic to int when checking for emit so that a
22095           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22096
22097 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22098
22099         * Makefile.am:
22100         * configure.ac:
22101           add docs to build
22102         * common/plugins.xsl:
22103           wrap Description into a refsect2
22104         * docs/Makefile.am:
22105         * docs/plugins/Makefile.am:
22106         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22107         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22108         * gst/goom/Makefile.am:
22109         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22110         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22111         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22112         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22113         (gst_goom_change_state):
22114         * gst/goom/gstgoom.h:
22115           GstGOOM -> GstGoom
22116           add an example launch line
22117         * gst/level/gstlevel.h:
22118         * gst/monoscope/gstmonoscope.c:
22119           cleanups
22120
22121 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22122
22123         * configure.ac:
22124         * docs/plugins/Makefile.am:
22125         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22126         * docs/plugins/gst-plugins-good-plugins-sections.txt:
22127         * docs/plugins/gst-plugins-good-plugins.types:
22128           document elements and plugins.  Shazam !
22129
22130 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22131
22132         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
22133           be found under doc/random/ChangeLog-0.8