sys/oss/: Allow the AUDIODEV environment variable to redirect us to a different defau...
[platform/upstream/gst-plugins-good.git] / ChangeLog
1 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
2
3         * sys/oss/gstosssink.c:
4         * sys/oss/gstosssrc.c:
5         Allow the AUDIODEV environment variable to redirect us
6         to a different default OSS device, like sunaudiosink does
7         on Solaris (makes audio play automatically on SunRays).
8
9 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
10
11         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
12         * gst/audiofx/audiochebyshevfreqband.c:
13         (gst_audio_chebyshev_freq_band_transform_ip):
14         * gst/audiofx/audiochebyshevfreqlimit.c:
15         (gst_audio_chebyshev_freq_limit_transform_ip):
16         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
17         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
18         The transform_ip() methods should do nothing if in passthrough mode.
19         It might get non-writable buffers in that case but the buffer might
20         as well be writable.
21
22         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
23         The transform() methods won't be called in passthrough mode and
24         otherwise the buffer is always writable so don't check here.
25
26 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
27
28         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
29           Fix seeking in .wav files again (#501775).  Some people seem to think
30           they don't need to test their changes when they're just 'reflowing'
31           some code.
32
33 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
34
35         * gst/autodetect/gstautovideosink.c:
36         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
37         (gst_auto_video_sink_init),
38         (gst_auto_video_sink_create_element_with_pretty_name),
39         (gst_auto_video_sink_find_best),
40         (gst_auto_video_sink_set_property),
41         (gst_auto_video_sink_get_property):
42         * gst/autodetect/gstautovideosink.h:
43         Fix docs.
44         Use same error reporting code as autoaudiosink.
45         Add property to filter sinks based on caps. Only select raw video sinks
46         by default for backwards compat.
47         API: GstAutoVideoSink::filter-caps
48
49 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
50
51         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
52
53         * gst/autodetect/gstautoaudiosink.c:
54         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
55         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
56         (gst_auto_audio_sink_set_property),
57         (gst_auto_audio_sink_get_property):
58         * gst/autodetect/gstautoaudiosink.h:
59         Add property to filter sinks based on caps. Only select raw audio sinks
60         by default for backwards compat.  Fixes #417420.
61         API: GstAutoAudioSink::filter-caps
62
63 2007-11-29  Michael Smith <msmith@fluendo.com>
64
65         Patch by: Arek Korbik <arkadini@gmail.com>
66
67         * gst/videobox/gstvideobox.c: (plugin_init):
68           Initialise liboil in plugin_init()
69
70 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
71
72         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
73         Post error before sending EOS. Fixes #499178.
74
75 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
76
77         * win32/vs6/gst_plugins_good.dsw:
78         * win32/vs6/libgstpng.dsp:
79         Add a project file for libgstpng
80
81 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
82
83         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
84         (gst_rtp_h263_depay_process):
85         Code beautification.
86         Added debug statements.
87         Don't bit-shift everything, just do operations on last/first byte
88         instead.
89
90 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
91
92         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
93
94         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
95         Fix wrong comparison in overrun check. Fixes #499239 some more.
96
97 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
98
99         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
100         (gst_rtp_h263_depay_process):
101         * gst/rtp/gstrtph263depay.h:
102         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
103         stream.
104
105 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
106
107         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
108
109         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
110         (gst_rtp_mp4a_depay_process):
111         * gst/rtp/gstrtpmp4adepay.h:
112         Fix depayloading when multiple frames are inside one RTP packet.
113         Fixes #499239.
114
115 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
116
117         * gst/level/gstlevel.c:
118           Add GAP-flag support.
119
120 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
121
122         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
123         Read the I flag for Mode A h263 rtp stream and set the
124         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
125         Fixes #499383
126
127 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
128
129         * gst/level/gstlevel.c:
130           Remove some dead code and do cleanups.
131
132 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
133
134         * tests/check/pipelines/simple-launch-lines.c:
135           Improve the tests by allowing to set a target state.
136
137 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
138
139         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
140         Don't check the caps of the output buffer if they're equal some
141         other caps. The caps can change in a backward compatible way
142         and did at this point.
143
144 2007-11-24  Julien MOUTTE  <julien@moutte.net>
145
146         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
147         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
148         (gst_qtdemux_seek_to_previous_keyframe),
149         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
150         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
151         reverse playback support.
152
153 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
154
155         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
156         Also set the channel layout on the Wavpack caps if we're having
157         a mono layout. Of course only do it for "audio/x-wavpack".
158
159 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
160
161         * ext/wavpack/gstwavpackcommon.c:
162         (gst_wavpack_get_default_channel_mask),
163         (gst_wavpack_set_channel_layout),
164         (gst_wavpack_get_default_channel_positions),
165         (gst_wavpack_get_channel_mask_from_positions),
166         (gst_wavpack_set_channel_mapping):
167         * ext/wavpack/gstwavpackcommon.h:
168         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
169         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
170         * ext/wavpack/gstwavpackdec.h:
171         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
172         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
173         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
174         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
175         (gst_wavpack_enc_rewrite_first_block),
176         (gst_wavpack_enc_sink_event):
177         * ext/wavpack/gstwavpackenc.h:
178         * ext/wavpack/gstwavpackparse.c:
179         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
180         (gst_wavpack_parse_scan_to_find_sample),
181         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
182         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
183         * ext/wavpack/gstwavpackparse.h:
184         Add support for encoding, parsing and decoding multichannel
185         files with up to 8 channels. This also improves the robustness
186         of parsing quite a bit.
187
188         * ext/wavpack/gstwavpackstreamreader.c:
189         (gst_wavpack_stream_reader_read_bytes),
190         (gst_wavpack_stream_reader_get_pos),
191         (gst_wavpack_stream_reader_set_pos_abs),
192         (gst_wavpack_stream_reader_set_pos_rel),
193         (gst_wavpack_stream_reader_push_back_byte),
194         (gst_wavpack_stream_reader_get_length),
195         (gst_wavpack_stream_reader_can_seek),
196         (gst_wavpack_stream_reader_write_bytes):
197         Improve debugging.
198
199 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
200
201         * ext/libpng/gstpngdec.c:
202         * ext/libpng/gstpngdec.h:
203           Don't release the png-memory from within the callback.
204
205 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
206
207         Patch by: René Stadler <mail at renestadler dot de>
208
209         * ext/libpng/gstpngenc.c:
210           Don't leak buffer data memory. Fixes #498395.
211
212 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
213
214         Patch by: René Stadler <mail at renestadler dot de>
215
216         * tests/check/pipelines/simple-launch-lines.c:
217           Tests for #498395.
218
219 2007-11-20  Julien MOUTTE  <julien@moutte.net>
220
221         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
222         (gst_tag_lib_mux_adjust_event_offsets):
223         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
224         * sys/osxaudio/Makefile.am:
225         * sys/osxvideo/cocoawindow.h:
226         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
227
228 2007-11-15  David Schleef  <ds@schleef.org>
229
230         * ext/cairo/gsttextoverlay.c:
231           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
232
233 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
234
235         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
236
237         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
238         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
239         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
240         * gst/rtp/gstrtpmp2tpay.h:
241         Fill the MTU with as many packets as possible. Fixes #491323.
242
243 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
244
245         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
246
247         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
248         Fix some more leaks. Fixes #497007.
249
250 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
251
252         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
253
254         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
255         (gst_rtspsrc_stream_configure_tcp):
256         Fix 3 pad leaks. Fixes #496983.
257
258 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
259
260         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
261
262         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
263         Fix small leak. Fixes #497017.
264
265 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
266
267         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
268         (gst_qtdemux_prepare_current_sample),
269         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
270         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
271         * gst/qtdemux/qtdemux_fourcc.h:
272         * gst/qtdemux/qtdemux_types.c:
273         Add suppport for theora in quicktime according to XiphQT.
274
275 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
276
277         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
278         (gst_v4l2src_init), (gst_v4l2src_set_property),
279         (gst_v4l2src_get_property):
280         * sys/v4l2/gstv4l2src.h:
281         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
282           Always copy buffers by default (handle safer with bugged drivers)
283           and added a property to make it possible to use mmap effectively (no
284           copy if possible) when application wants to. Fixes: #480557.
285
286 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
287
288         * gst/id3demux/id3tags.c:
289         * gst/id3demux/id3tags.h:
290         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
291           We don't want the same string multiple times in a tag list for the
292           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
293           this doesn't happen and remove special-case code for GST_TAG_GENRE.
294
295 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
296
297         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
298           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
299           into ID3v2 TXXX frames (fixes #347848).
300
301 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
302
303         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
304           Don't leak sdp message contents (fixes #496773).
305
306         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
307           Don't leak URI string.
308
309 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
310
311         Patch by: Julien Puydt <julien dot puydt at laposte net>
312
313         * ext/raw1394/Makefile.am:
314         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
315           (gst_1394_property_probe_get_properties),
316           (gst_1394_property_probe_probe_property),
317           (gst_1394_property_probe_needs_probe),
318           (gst_1394_property_probe_get_values),
319           (gst_1394_property_probe_interface_init),
320           (gst_1394_type_add_property_probe_interface):
321         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
322         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
323           (gst_dv1394src_init), (gst_dv1394src_dispose),
324           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
325           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
326           (gst_dv1394src_update_device_name):
327         * ext/raw1394/gstdv1394src.h:
328           Implement GstPropertyProbe interface and add "device-name" property,
329           so applications can use this to probe for available devices in the
330           same way they can already with v4lsrc and v4l2src (however horrible
331           this property probe interface may be). Fixes #358841.
332
333 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
334
335         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
336
337         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
338           (gst_rtspsrc_parse_range):
339           Don't leak event, don't leak range (fixes #496752).
340
341 2007-11-14  Michael Smith <msmith@fluendo.com>
342
343         Patch by: Arek Korbik <arkadini@gmail.com>
344
345         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
346           Detect RGBA/BGRA correctly on little endian systems.
347
348 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
349
350         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
351           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
352           corresponding ioctl() call fails even though the driver claims to
353           support this format, just fall back to the pre-2.6.19 kernel
354           routine that creates caps with suitable height and width ranges
355           (see #448278).
356
357 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
358
359         Patch by: Mark Nauwelaerts <manauw skynet be>
360
361         * gst/matroska/matroska-demux.c:
362           (gst_matroska_demux_push_dvd_clut_change_event),
363           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
364           (gst_matroska_demux_subtitle_caps):
365         * gst/matroska/matroska-ids.h:
366           Extract palette data for dvd subpicture streams and send it
367           downstream as custom gstreamer dvd event (fixes #453417).
368
369 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
370
371         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
372           Implement minimal parsing of the passed pango font description
373           string, so passing a font size works the same as with the
374           pango textoverlay plugin; fixes #455086.
375           (Maybe we could just use pangocairo here at some point).
376
377 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
378
379         * gst/avi/gstavidemux.c:
380         * gst/wavparse/gstwavparse.c:
381           Return the result in _activate_pull(). Don't ref element there.
382
383 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
384
385         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
386         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
387         (gst_wavparse_srcpad_event):
388           Ref the element when we should, but not when we its not needed. Reflow
389           the event_handling to not leak the event.       
390
391 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
392
393         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
394         (qtdemux_parse_samples):
395         Properly free QTDemuxSamples array.
396         Protect table write with a sensible check, some files apparently DO contain
397         stts values starting with 0 :(
398
399 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
400
401         * gst/avi/gstavidemux.c:
402         * gst/qtdemux/qtdemux.c:
403           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
404           previous commit messed up.
405
406 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
407
408         * gst/avi/gstavidemux.c:
409         * gst/qtdemux/qtdemux.c:
410           Sync _handle_src_event() with oggdemux. In avidemux also ref the
411           element when we should, but not when we its not needed.
412
413 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
414
415         * gst/wavparse/gstwavparse.c:
416           Return FALSE if we can't handle a query instead of changing the
417           format. Ignore fact when dealing with mpeg audio.
418
419 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
420
421         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
422
423         * configure.ac:
424         * gst/udp/gstdynudpsink.c:
425         * gst/udp/gstdynudpsink.h:
426         * gst/udp/gstmultiudpsink.c:
427         * gst/udp/gstmultiudpsink.h:
428         * gst/udp/gstudpsink.c:
429         * gst/udp/gstudpsink.h:
430           Fix includes for MSVC and GLib-2.14.0 (#492388).
431
432         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
433           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
434
435 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
436
437         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
438         (gst_mulawdec_chain):
439         * gst/law/mulaw-decode.h:
440         Calculate outgoing buffer duration if incoming buffer didn't have a
441         valid duration.
442
443 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
444
445         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
446         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
447         Smarter combine_flow code that also deals with downstream elements
448         returning UNEXPECTED when they receive data out of the segment
449         boundaries. Fixes #491305.
450
451 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
452
453         * sys/v4l2/v4l2src_calls.c:
454           Fix 'unused variable' compiler warning when compiling against
455           older kernel headers.
456
457 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
458
459         * ext/taglib/gstid3v2mux.cc (add_funcs):
460           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
461
462 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
463
464         * tests/check/pipelines/simple-launch-lines.c:
465            Improve the tests a little more.
466
467 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
468
469         patch by: Yun Zheng Hu
470
471         * sys/osxaudio/gstosxaudiosrc.c:
472         Use default input device instead of default output device and
473         only memcpy actual available bytes.
474
475 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
476
477         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
478           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
479           early. It is temporary until we find something better.
480
481 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
482
483         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
484
485         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
486         Fix race when pausing a RTSP stream in interleaved.
487         Fixes #475784.
488
489 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
490
491         Patch by: Peter Kjellerstedt <pkj at axis com>
492
493         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
494         Use correct unref function for buffers. #488844.
495
496 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
497
498         * gst/avi/gstavimux.c:
499         * tests/check/elements/avimux.c:
500           Add some debug and sync tests with the fix.     
501
502 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
503
504         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
505
506         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
507         When the socket is used by the app for other purposes, don't generate an
508         error if there is activaty on the socket that is not data related.
509         Fixes #487488.
510
511 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
512
513         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
514         (gst_v4l2src_grab_frame):
515         Add some more debug info. Generate an error when we run out of buffers
516         for some reason. See #480557.
517
518 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
519
520         Patch by: Anders Skargren <anders dot skargren at axis dot com>
521
522         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
523         Set marker bit correctly.
524
525 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
526
527         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
528         Use allowed name for the GstStructure.
529
530 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
531
532         * ext/gconf/gstswitchsink.c:
533         * gst/autodetect/gstautoaudiosink.c:
534           Use new gst_bus_pop_filtered().
535
536 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
537
538         * sys/v4l2/gstv4l2src.c:
539         * sys/v4l2/v4l2src_calls.c:
540           When probing the formats and sizes a camera supports, make
541           sure the best ones (highest resolution, prefered format)
542           end up at the beginning of the probed caps and the less
543           desirable ones at the end.  This is important because the
544           order within the caps matters for things like fixation and
545           negotiation, ie. what format is chosen in the end.
546           With recent kernels, the current probing code will end up
547           querying the supported sizes from lowest resolution to
548           highest resolution, adding them to the probed caps in that
549           order, resulting to v4l2src fixating to the lowest possible
550           resolution if downstream does not express a size preference.
551           Also make up a somewhat random ranking of prefered output
552           formats for the same reason. Fixes #485828.
553         
554 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
555
556         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
557
558         * gst/id3demux/id3v2frames.c:
559           Extract license/copyright URIs from ID3v2 WCOP frames
560           (Fixes #447000).
561
562         * tests/check/elements/id3demux.c:
563         * tests/files/Makefile.am:
564         * tests/files/id3-447000-wcop.tag:
565           Add simple unit test.
566
567 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
568
569         * ext/taglib/gstid3v2mux.cc:
570           Add support for license/copyright URI tags (ID3v2 WCOP frame).
571           Prerequisite for #447000.
572
573 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
574
575         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
576         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
577         a GstClockTime.
578
579 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
580
581         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
582         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
583         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
584         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
585         (gst_rtspsrc_change_state):
586         More seeking fixes, mostly passing around the new playback segment in
587         order to configure it properly.
588         Also reset base_time of udp sources when setting them back to PLAYING as
589         a temporary hack until core supports seek in live sources properly.
590
591 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
592
593         * gst/rtp/gstrtpmp4adepay.c:
594         Fix caps as to not confuse autopluggers.
595
596 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
597
598         * gst/id3demux/gstid3demux.c:
599         * gst/id3demux/gstid3demux.h:
600         * gst/id3demux/id3tags.c:
601         * gst/id3demux/id3tags.h:
602         * gst/id3demux/id3v2frames.c:
603           Port ID3 tag demuxer over to the new GstTagDemux in -base
604           (now would be a good time to test re-importing your music
605           collection).
606
607 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
608
609         * gst/apetag/Makefile.am:
610         * gst/apetag/gstapedemux.c:
611         * gst/apetag/gstapedemux.h:
612         * gst/apetag/gsttagdemux.c:
613         * gst/apetag/gsttagdemux.h:
614           Port APE tag demuxer over to the new GstTagDemux in -base.
615
616 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
617
618         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
619         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
620         (gst_rtspsrc_handle_internal_src_query),
621         (gst_rtspsrc_handle_src_query), (new_session_pad),
622         (gst_rtspsrc_stream_configure_tcp),
623         (gst_rtspsrc_stream_configure_transport),
624         (gst_rtspsrc_loop_send_cmd):
625         Improve flushing behaviour.
626         Set state of the udp sources to PAUSE/PLAYING correctly.
627         Handle events and queries for UDP and TCP transport now.
628
629 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
630
631         * gst/rtp/gstrtpgsmdepay.c:
632         * gst/rtp/gstrtpgsmpay.c:
633           Add log category.
634
635 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
636
637         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
638
639         * tests/check/Makefile.am:
640         * tests/check/pipelines/simple-launch-lines.c:
641           Add unit tests for payloaders/depayloaders.
642
643 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
644
645         * gst/avi/gstavimux.c:
646         * gst/avi/gstavimux.h:
647           Also save codec data for audio streams. Fixes #482495.
648
649 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
650
651         * gst/avi/gstavimux.c:
652           Fix "Index entry has invalid stream nr 1".
653           Add support for muxing aac - work in progress (see #482495).
654
655 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
656
657         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
658         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
659         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
660         * gst/rtsp/gstrtspsrc.h:
661         Parse bandwidth modifiers, they are not yet configured in the session
662         manager because we don't have an API for that yet.
663
664 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
665
666         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
667         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
668         Use shiny new function in -base to get the default clock-rate.
669         Update some docs.
670
671 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
672
673         * win32/MANIFEST:
674         Add files to win32 manifest.
675         * win32/vs6/libgstaudiofx.dsp:
676         * win32/vs6/libgstqtdemux.dsp:
677         * win32/vs6/libgstrtp.dsp:
678         * win32/vs6/libgstrtsp.dsp:
679         Update project files.
680
681 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
682
683         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
684         (gst_rtspsrc_play):
685         * gst/rtsp/gstrtspsrc.h:
686         In TCP mode, only timestamp the first buffer. TCP is not real time and
687         it does not make sense to try to skew compensate, also some servers send
688         the first batch of data in a burst.
689
690 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
691
692         * gst/matroska/matroska-demux.c:
693           Fix setting the discont flag on the first buffer
694           pushed downstream for formats with private codec
695           data that needs to be deserialised into buffers
696           (such as vorbis and FLAC when in a matroska container).
697
698 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
699
700         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
701
702         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
703         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
704         (gst_rtp_mp4v_pay_handle_buffer):
705         * gst/rtp/gstrtpmp4vpay.h:
706         Free the config string. Fixes #480707.
707         Clean up the timestamp code a little.
708
709 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
710
711         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
712         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
713         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
714         * gst/rtsp/gstrtspsrc.h:
715         Set timestamps on RTP buffers in interleaved mode.
716         Mark first buffers with a DISCONT.
717         Remove flush hack now that sync for live sources has been figured out.
718
719 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
720
721         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
722         Update documentation.
723
724 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
725
726         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
727         (gst_rtp_xqt_depay_change_state):
728         * gst/qtdemux/gstrtpxqtdepay.h:
729         Fail if we don't know the quicktime format.
730
731 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
732
733         * ext/flac/gstflacenc.c:
734         * ext/flac/gstflacenc.h:
735           Save the flow return from the last gst_pad_push() and
736           make sure we pass the right flow return value upstream
737           in the case of failure; minor clean-ups.
738
739 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
740
741         * ext/taglib/gstapev2mux.cc:
742         * ext/taglib/gstid3v2mux.cc:
743         * gst/apetag/gstapedemux.c:
744           Add support for the new GST_TAG_COMPOSER (#459809).
745
746 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
747
748         * gst/law/alaw-decode.c:
749         * gst/law/alaw-decode.h:
750         * gst/law/alaw-encode.c:
751         * gst/law/alaw-encode.h:
752         * gst/law/alaw.c:
753         * gst/law/mulaw-conversion.h:
754           Compulsive clean-ups: use boilerplate macros, add debug
755           categories, fix up things to conform to symbol nomenklatura,
756           etc.
757
758 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
759
760         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
761
762         * gst/law/alaw-decode.c:
763         * gst/law/alaw-encode.c:
764           Use static tables for A-Law decoding and encoding; this makes
765           A-Law decoding and encoding less CPU-intensive, but increases
766           the binary size a bit. Leaving old code around for now,
767           selectable by a define in the code. Fixes #435435.
768
769 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
770
771         * configure.ac:
772         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
773         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
774         in configure.ac.
775
776 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
777
778         Patch by: <j at bootlab dot org>
779
780         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
781         Add fourccs for MPEG2 HDV streams. Fixes #479960.
782
783 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
784
785         * sys/oss/gstosshelper.c:
786           Use GST_WARNING instead of a g_critical. This situation is not caused
787           by the application.
788
789 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
790
791         * po/LINGUAS:
792         * po/nl.po:
793           Updated translations.
794
795 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
796
797         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
798
799         * po/eu.po:
800           Added Basque translation.
801
802 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
803
804         translated by: Abel Cheung <abelcheung@gmail.com>
805
806         * po/zh_HK.po:
807         * po/zh_TW.po:
808           Added Chinese (traditional and Hong Kong) translation.
809
810 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
811
812         translated by: Jakub Bogusz <qboosh@pld-linux.org>
813
814         * po/pl.po:
815           Added Polish translation.
816
817 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
818
819         translated by: Ilkka Tuohela <hile@iki.fi>
820
821         * po/fi.po:
822           Added Finnish translation.
823
824 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
825
826         translated by: Jorge González González <aloriel@gmail.com>
827
828         * po/es.po:
829           Added Spanish translation.
830
831 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
832
833         translated by: Mogens Jaeger <mogens@jaeger.tf>
834
835         * po/da.po:
836           Added Danish translation.
837
838 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
839
840         translated by: Funda Wang <fundawang@linux.net.cn>
841
842         * po/zh_CN.po:
843           Added Chinese (simplified) translation.
844
845 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
846
847         translated by: Alexander Shopov <ash@contact.bg>
848
849         * po/bg.po:
850           Added Bulgarian translation.
851
852 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
853
854         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
855         Set outgoing packet duration because we can. Fixes #478244 some more.
856
857 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
858
859         * ext/cairo/gsttextoverlay.c:
860           Add info about static leak.
861         
862         * tests/check/Makefile.am:
863         * tests/check/generic/states.c:
864           Improved state change unit test.
865
866 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
867
868         * docs/plugins/.cvsignore:
869         * tests/check/.cvsignore:
870           Ignore registries in any format.
871
872 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
873
874         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
875         Removed some unused code.
876
877         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
878         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
879         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
880         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
881         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
882         (gst_rtp_theora_pay_flush_packet):
883         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
884         Try to preserve the incomming buffer duration on the outgoing
885         packets. Fixes #478244.
886
887 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
888
889         * ext/taglib/gstapev2mux.cc:
890         * ext/taglib/gstid3v2mux.cc:
891           Work around compiler warnings with g++-4.2 when assigning a
892           string constant to a gchar * (partially fixes #478092).
893
894 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
895
896         * configure.ac:
897           We require core CVS now for gst_base_src_set_do_timestamp().
898
899 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
900
901         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
902         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
903         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
904         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
905         (gst_rtspsrc_handle_message):
906         Fix compiler warnings shown with Forte.
907
908 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
909
910         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
911         (gst_rtspsrc_dup_printf):
912         Give meaningfull error when all streams failed to configure for some
913         reason.
914
915 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
916
917         * gst/rtp/README:
918         Update README with the design for synchronisation rules of RTP on
919         sender and receiver.
920
921 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
922
923         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
924         (gst_wavparse_chain):
925         Don't push EOS from the chain function, the element
926         driving the pipeline is responsible for this. The bug
927         this was meant to fix seems to be queue not forwarding
928         EOS in all cases (see #476514).
929
930 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
931
932         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
933         (gst_level_transform_ip):
934         * gst/level/gstlevel.h:
935         Use basetransform segment so that it is correctly managed on flushes and
936         start/stop.
937         Report message timestamp as stream time, which is what an application
938         can understand.
939
940 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
941
942         * ext/taglib/gstapev2mux.cc:
943         * ext/taglib/gstapev2mux.h:
944         * ext/taglib/gsttaglibmux.c:
945         * tests/check/elements/apev2mux.c:
946         Update my mail address.
947
948 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
949
950         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
951         (gst_wavparse_loop), (gst_wavparse_chain):
952         Add EOS logic for the push-based mode too. Fixes #476514.
953
954 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
955
956         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
957         * gst/law/alaw-encode.h:
958         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
959         (gst_mulawenc_chain):
960         * gst/law/mulaw-encode.h:
961         Fix law encoder timestamps.
962
963 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
964
965         * ext/gconf/gstgconfaudiosink.c:
966           Fix warning when building without debug.
967
968         * sys/oss/gstossmixertrack.c:
969           Use const like in alsamixertrack.c (fixes warnings).
970
971 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
972
973         * sys/v4l2/v4l2src_calls.c:
974         (gst_v4l2src_probe_caps_for_format_and_size):
975         Fix framerate detection code some more.
976         Handle the case where there is a weird step in the stepwise framerates.
977         Don't overwrite the min interval with the framerate, use a temp variable
978         instead.
979         Use max in the Continuous framerate intervals instead of step, which is
980         1 according to the docs. Fixes #475424.
981
982 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
983
984         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
985         Make udpsrc timestamp outgoing buffers based on when they were received.
986         Also make it output a segment in time.
987
988 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
989
990         * gst/avi/gstavidemux.c:
991           Plug a little leak. Little code cleanups.
992
993 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
994
995         * configure.ac:
996           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
997           flac versions, 's good for cross-compilation karma.
998
999 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
1000
1001         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
1002
1003         * gst/rtp/gstrtph263pay.c:
1004           Fix up header structure so that compilers don't add padding
1005           between the structure fields, since that would lead to us
1006           sending RTP packets with broken headers (as is currently the
1007           case when compiling with MSVC). Also see similar fixes in
1008           libgstrtp in gst-plugins-base. (#474616; #471194)
1009
1010 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
1011
1012         * sys/v4l2/v4l2src_calls.c:
1013         (gst_v4l2src_probe_caps_for_format_and_size):
1014         Don't overwrite our GValue with 0 but instead use the previously
1015         computed value. Fixes #471823 some more.
1016
1017 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
1018
1019         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1020           No tabs in this file please, or gtk-doc will end up documenting
1021           rather absurd class hierarchies.
1022
1023 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
1024
1025         * ext/gconf/gstswitchsink.c:
1026           If the new kid element fails to change state for some reason
1027           (e.g. esdsink not being able to connect to the sound server),
1028           forward the error message it posted on the bus instead of just
1029           posting a generic 'Internal state change error: please file a
1030           bug' error message. Fixes #471364.
1031
1032 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
1033
1034         * gst/qtdemux/Makefile.am:
1035         * gst/qtdemux/qtdemux.c:
1036           Don't assume tags are encoded as UTF-8 (#473670).
1037
1038 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
1039
1040         * sys/v4l2/gstv4l2src.c:
1041         * sys/v4l2/gstv4l2src.h:
1042         * sys/v4l2/v4l2src_calls.c:
1043           Implement LATENCY queries in the crudest way possible so I don't
1044           have to use sync=false any longer when testing with videosinks.
1045
1046 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
1047
1048         * configure.ac:
1049           Fix build.
1050
1051 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
1052
1053         * sys/v4l2/v4l2src_calls.c:
1054         (gst_v4l2src_probe_caps_for_format_and_size):
1055         Add some more debugging in the framerate function.
1056         Iterate stepwise framerate up to and _including_ the max and if nothing
1057         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
1058         don't end up with an empty list. Fixes #471823
1059
1060 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
1061
1062         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
1063         (gst_multiudpsink_set_clients_string),
1064         (gst_multiudpsink_get_clients_string),
1065         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
1066         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
1067         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
1068         (gst_multiudpsink_clear):
1069         Add property do configure destination address/port pairs
1070         API:GstMultiUDPSink::clients
1071
1072 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
1073
1074         * tests/examples/Makefile.am:
1075         * tests/examples/rtp/Makefile.am:
1076         * tests/examples/rtp/client-H263p-AMR.sh:
1077         * tests/examples/rtp/client-H263p-PCMA.sdp:
1078         * tests/examples/rtp/client-H263p-PCMA.sh:
1079         * tests/examples/rtp/client-H264-PCMA.sdp:
1080         * tests/examples/rtp/client-H264-PCMA.sh:
1081         * tests/examples/rtp/client-PCMA.sh:
1082         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
1083         * tests/examples/rtp/server-alsasrc-PCMA.sh:
1084         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
1085         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
1086         Added some RTP example scripts for sending and receiving RTP streams.
1087
1088 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
1089
1090         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
1091         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
1092         Restructure the setcaps function so that we can also compute the
1093         expected GStreamer output size of the video frames.
1094         Set frame_byte_size correctly so that read-based devices have a chance
1095         of working correctly.
1096         When grabbing a frame, discard frames that are not of the expected size.
1097         Some cameras don't output the right framesize for the first buffer.
1098         Try only a couple of times to get a valid frame, else error out.
1099
1100         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1101         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
1102         Add some more debug info when scanning the device.
1103
1104         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
1105         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1106         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
1107         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
1108         Add some more debug info when dequeing a frame.
1109
1110 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
1111
1112         * gst/wavparse/gstwavparse.c:
1113           More code cleanups. Add some more comment and improve debugs logs.
1114
1115 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
1116
1117         * gst/wavparse/gstwavparse.c:
1118         * gst/wavparse/gstwavparse.h:
1119           Implement seek-query. Refactor duration calculations. Appropriate use
1120           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
1121           out of loops.
1122
1123 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
1124
1125         * gst/avi/gstavidemux.c:
1126           Implement seek-query.
1127
1128 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
1129
1130         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
1131         (gst_rtspsrc_dup_printf):
1132         Use new basesink async property to make sparse RTCP packet not wait for
1133         preroll.
1134
1135 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
1136
1137         * gst/audiofx/Makefile.am:
1138         Dist the right file.
1139
1140 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
1141
1142         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
1143         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
1144         Make sure we generate and parse floating point values in the POSIX
1145         locale instead of the current locale. 
1146
1147 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
1148
1149         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1150         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
1151         (gst_rtspsrc_play):
1152         * gst/rtsp/gstrtspsrc.h:
1153         Fix method detection again.
1154         Keep track of when we must send a Range header.
1155         Use segment values for Range, Speed and Scale headers.
1156         Parse Speed and Scale headers to update the segment values.
1157
1158 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
1159
1160         patch by: Mark Nauwelaerts <manauw@skynet.be>
1161
1162         * sys/v4l2/v4l2src_calls.c:
1163           Handle optional v4l2 ioctls gracefully.
1164
1165 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
1166
1167         * gst/rtp/Makefile.am:
1168         * gst/rtp/gstrtp.c: (plugin_init):
1169         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
1170         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
1171         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
1172         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
1173         (gst_rtp_h263_depay_get_property),
1174         (gst_rtp_h263_depay_change_state),
1175         (gst_rtp_h263_depay_plugin_init):
1176         * gst/rtp/gstrtph263depay.h:
1177         Added an H263 depayloader. Fixes #369392.
1178
1179         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1180         (gst_rtp_h263p_depay_process):
1181         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
1182         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
1183         Make the H263+ pay/depayloader support H263-1998 and H263-2000
1184         payloads.
1185         Also alow plain H263 on the h263p payloaders. Fixes #465040.
1186
1187 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
1188
1189         * gst/audiofx/audiochebyshevfreqband.c:
1190         * gst/audiofx/audiochebyshevfreqlimit.c:
1191         Add small comparision with the windowed sinc filters in the docs.
1192
1193 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
1194
1195         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
1196         (audiochebyshevfreqband_suite):
1197         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
1198         (audiochebyshevfreqlimit_suite):
1199         Also test 32 bit float mode and the type 2 variants of the filters.
1200
1201 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
1202
1203         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
1204         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
1205         (gst_rtspsrc_loop):
1206         Refactor the udp and interleaved loop function a bit.
1207
1208 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
1209
1210         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
1211         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
1212         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
1213         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
1214         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
1215         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
1216         * gst/rtsp/gstrtspsrc.h:
1217         Protect connection activity with a new lock, avoids deadlocks when going
1218         to PAUSED. Fixes #455808.
1219
1220 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
1221
1222         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
1223         Fix debug statement.
1224
1225 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
1226
1227         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
1228         Fix stray %u in debug line as spotted by Saur on IRC.
1229
1230 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
1231
1232         * gst/audiofx/audiochebyshevfreqband.c:
1233         (gst_audio_chebyshev_freq_band_class_init):
1234         * gst/audiofx/audiochebyshevfreqlimit.c:
1235         (gst_audio_chebyshev_freq_limit_class_init):
1236         Use generator macros for the process functions for the different
1237         sample types, add lower upper boundaries for the GObject properties
1238         so automatically generated UIs can use sliders and add a note about
1239         the number of poles as a too high number of poles combined with
1240         very low or very high frequencies will produce only noise.
1241         * docs/plugins/gst-plugins-good-plugins.args:
1242         Regenerated for the property changes.
1243
1244 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
1245
1246         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
1247         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
1248         (gst_rtspsrc_stream_configure_udp_sink),
1249         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
1250         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
1251         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
1252         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
1253         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
1254         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
1255         * gst/rtsp/gstrtspsrc.h:
1256         Improve timeout handling.
1257         Use the same socket for sending and receiving RTCP packets so that some
1258         servers can track clients better.
1259         Improve connection closed handling. Try to reconnect.
1260         Don't overwrite our content base with NULL.
1261         Improve debugging.
1262         Improve range parsing and handling.
1263         Remove flushing hack now that core does the right thing.
1264
1265 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
1266
1267         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
1268         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
1269         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
1270         (gst_multiudpsink_close), (gst_multiudpsink_add):
1271         * gst/udp/gstmultiudpsink.h:
1272         Add support for getting and setting the socket to use.
1273
1274         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
1275         (gst_udpsrc_create), (gst_udpsrc_get_property):
1276         Add support for getting the currently used socket.
1277
1278 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
1279
1280         reviewed by: Stefan Kost  <ensonic@users.sf.net>
1281
1282         * gst/audiofx/Makefile.am:
1283         * gst/audiofx/audiochebyshevfreqband.c:
1284         (gst_audio_chebyshev_freq_band_mode_get_type),
1285         (gst_audio_chebyshev_freq_band_base_init),
1286         (gst_audio_chebyshev_freq_band_dispose),
1287         (gst_audio_chebyshev_freq_band_class_init),
1288         (gst_audio_chebyshev_freq_band_init),
1289         (generate_biquad_coefficients), (calculate_gain),
1290         (generate_coefficients),
1291         (gst_audio_chebyshev_freq_band_set_property),
1292         (gst_audio_chebyshev_freq_band_get_property),
1293         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
1294         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
1295         (gst_audio_chebyshev_freq_band_start):
1296         * gst/audiofx/audiochebyshevfreqband.h:
1297         * gst/audiofx/audiochebyshevfreqlimit.c:
1298         (gst_audio_chebyshev_freq_limit_mode_get_type),
1299         (gst_audio_chebyshev_freq_limit_base_init),
1300         (gst_audio_chebyshev_freq_limit_dispose),
1301         (gst_audio_chebyshev_freq_limit_class_init),
1302         (gst_audio_chebyshev_freq_limit_init),
1303         (generate_biquad_coefficients), (calculate_gain),
1304         (generate_coefficients),
1305         (gst_audio_chebyshev_freq_limit_set_property),
1306         (gst_audio_chebyshev_freq_limit_get_property),
1307         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
1308         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
1309         (gst_audio_chebyshev_freq_limit_start):
1310         * gst/audiofx/audiochebyshevfreqlimit.h:
1311         * gst/audiofx/audiofx.c: (plugin_init):
1312         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
1313         Fixes #464800.
1314
1315         * tests/check/Makefile.am:
1316         * tests/check/elements/.cvsignore:
1317         * tests/check/elements/audiochebyshevfreqband.c:
1318         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
1319         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
1320         * tests/check/elements/audiochebyshevfreqlimit.c:
1321         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
1322         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
1323         Add unit tests for the chebyshev filters.
1324
1325         * docs/plugins/Makefile.am:
1326         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1327         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1328         * docs/plugins/gst-plugins-good-plugins.args:
1329         * docs/plugins/inspect/plugin-1394.xml:
1330         * docs/plugins/inspect/plugin-audiofx.xml:
1331         * docs/plugins/inspect/plugin-dv.xml:
1332         * docs/plugins/inspect/plugin-flac.xml:
1333         * docs/plugins/inspect/plugin-jpeg.xml:
1334         * docs/plugins/inspect/plugin-png.xml:
1335         * docs/plugins/inspect/plugin-rtp.xml:
1336         * docs/plugins/inspect/plugin-shout2send.xml:
1337         * docs/plugins/inspect/plugin-wavpack.xml:
1338         And add docs for the chebyshev filters. While doing
1339         that also run make update in docs/plugins.
1340
1341 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
1342
1343         * ext/annodex/gstcmmltag.c:
1344         * gst/rtp/gstrtpvorbispay.c:
1345           Make ro memory to share.
1346
1347 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
1348
1349         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1350         Improve UDP performance by avoiding a select() when we have data
1351         available immediatly.
1352
1353 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
1354
1355         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
1356         (gst_rtp_dec_class_init):
1357         * gst/rtsp/gstrtpdec.h:
1358         Add (dummy) SSRC management signals.
1359
1360         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
1361         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
1362         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
1363         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
1364         (on_timeout), (gst_rtspsrc_stream_configure_manager),
1365         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
1366         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
1367         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
1368         * gst/rtsp/gstrtspsrc.h:
1369         Add connection-speed property.
1370         Add find_stream helper functions.
1371         Handle stream EOS based on BYE messages or SSRC timeout.
1372         Returns SUCCESS from the state change function as we hide our async
1373         elements from the parent.
1374
1375 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
1376
1377         * gst/debug/rndbuffersize.c:
1378           Fix da leak.
1379
1380 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
1381
1382         * gst/debug/Makefile.am:
1383         * gst/debug/breakmydata.c:
1384         * gst/debug/gstdebug.c:
1385         * gst/debug/negotiation.c:
1386         * gst/debug/progressreport.c:
1387         * gst/debug/rndbuffersize.c:
1388         * gst/debug/testplugin.c:
1389           Add new test element and clean-up the others a little.
1390
1391 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
1392
1393         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1394         Fix parsing of mp4a version 0 atoms. Fixes #465774.
1395
1396 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
1397
1398         * gst/rtp/gstrtpilbcdepay.c:
1399           Include stdlib.
1400
1401 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
1402
1403         * gst/rtp/gstrtpmpvdepay.c:
1404         Set the mpegversion in the caps so that autoplugging does not get
1405         confused.
1406
1407 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
1408
1409         * po/hu.po:
1410         * po/uk.po:
1411         * po/vi.po:
1412           Updated translations.
1413
1414 2007-08-08  Michael Smith <msmith@fluendo.com>
1415
1416         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
1417           Render right border in the correct location.
1418
1419 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
1420
1421         Patch by: Olivier Crete <tester at tester dot ca>
1422
1423         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
1424         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
1425         Make mode property a string. Fixes #464475.
1426
1427 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
1428
1429         * ext/flac/gstflacenc.c:
1430           Widen caps to match decoder a bit and add more FIXMEs.
1431
1432 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
1433
1434         patch by: Mark Nauwelaerts <manauw@skynet.be>
1435
1436         * gst/avi/gstavimux.c:
1437           Fix ODML index tag numbering. Fixes #463624.
1438
1439 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
1440
1441         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
1442         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
1443         (gst_rtspsrc_stream_configure_tcp),
1444         (gst_rtspsrc_stream_configure_udp_sink):
1445         Fix default clock-rate for realmedia.
1446         Fix parsing of transport.
1447         Don't try to link NULL pads.
1448
1449 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
1450
1451         * po/POTFILES.skip:
1452           Add POTFILES.skip with list of source files that aren't disted at the
1453           moment but contain translatable strings. Should hopefully pacify
1454           broken tools and make it clearer that these files are left out
1455           intentionally (#461600).
1456
1457 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
1458
1459         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
1460         If the buffer was entirely clipped ... don't try sending it :)
1461
1462 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
1463
1464         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
1465         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
1466         (gst_rtspsrc_create_transports_string),
1467         (gst_rtspsrc_prepare_transports):
1468         If we don't hav a session manager, set the caps on outgoing buffers
1469         ourselves.
1470         Force PAUSE/PLAY methods for now until the extensions can overwrite.
1471         Append final bit of the transport string even when it does not contain a
1472         placeholder.
1473
1474 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
1475
1476         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
1477         (gst_rtsp_ext_list_connect):
1478         * gst/rtsp/gstrtspext.h:
1479         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
1480         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
1481         Clean up the interface list.
1482         Allow connecting to interface signals for the extensions.
1483         Remove old extension code.
1484         Free list on cleanup.
1485         Allow extensions to send additional RTSP messages.
1486
1487 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
1488
1489         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
1490         Handle a NULL gconf key gracefully by rendering the default element.
1491
1492 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
1493
1494         * gst/rtsp/gstrtspext.h:
1495         Fix include path for extension interface.
1496
1497 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
1498
1499         * gst/audiofx/audioamplify.h:
1500         Also remove a now unecessary variable here.
1501
1502 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
1503
1504         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
1505         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
1506         * gst/audiofx/audiodynamic.c:
1507         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
1508         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
1509         * gst/audiofx/audiodynamic.h:
1510         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
1511         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
1512         * gst/audiofx/audioinvert.h:
1513         Don't save format information ourselves, this is already saved in
1514         GstAudioFilter.
1515
1516 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
1517
1518         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
1519         (gst_rtsp_ext_list_stream_select):
1520         * gst/rtsp/gstrtspext.h:
1521         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
1522         Use rank to filter out extensions.
1523         Add url to stream_select interface call.
1524
1525 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
1526
1527         * gst/rtsp/Makefile.am:
1528         * gst/rtsp/base64.c:
1529         * gst/rtsp/base64.h:
1530         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
1531         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
1532         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
1533         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
1534         (gst_rtsp_ext_list_setup_media),
1535         (gst_rtsp_ext_list_configure_stream),
1536         (gst_rtsp_ext_list_get_transports),
1537         (gst_rtsp_ext_list_stream_select):
1538         * gst/rtsp/gstrtspext.h:
1539         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
1540         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
1541         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
1542         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
1543         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
1544         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
1545         (gst_rtspsrc_stream_configure_tcp),
1546         (gst_rtspsrc_stream_configure_mcast),
1547         (gst_rtspsrc_stream_configure_udp),
1548         (gst_rtspsrc_stream_configure_udp_sink),
1549         (gst_rtspsrc_stream_configure_transport),
1550         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
1551         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
1552         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
1553         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
1554         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
1555         (gst_rtspsrc_parse_methods),
1556         (gst_rtspsrc_create_transports_string),
1557         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
1558         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
1559         (gst_rtspsrc_play), (gst_rtspsrc_pause),
1560         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
1561         * gst/rtsp/gstrtspsrc.h:
1562         * gst/rtsp/rtsp.h:
1563         * gst/rtsp/rtspconnection.c:
1564         * gst/rtsp/rtspconnection.h:
1565         * gst/rtsp/rtspdefs.c:
1566         * gst/rtsp/rtspdefs.h:
1567         * gst/rtsp/rtspext.h:
1568         * gst/rtsp/rtspextwms.c:
1569         * gst/rtsp/rtspextwms.h:
1570         * gst/rtsp/rtspmessage.c:
1571         * gst/rtsp/rtspmessage.h:
1572         * gst/rtsp/rtsprange.c:
1573         * gst/rtsp/rtsprange.h:
1574         * gst/rtsp/rtsptransport.c:
1575         * gst/rtsp/rtsptransport.h:
1576         * gst/rtsp/rtspurl.c:
1577         * gst/rtsp/rtspurl.h:
1578         * gst/rtsp/sdp.h:
1579         * gst/rtsp/sdpmessage.c:
1580         * gst/rtsp/sdpmessage.h:
1581         * gst/rtsp/test.c:
1582         Use shiny new RTSP and SDP library.
1583         Implement RTSP extensions using the new interface.
1584         Remove a lot of old code.
1585
1586 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
1587
1588         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1589         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
1590
1591 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
1592
1593         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
1594         Don't unref the outgoing buffer twice when dropping it because it's
1595         outside of the segment.
1596
1597 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
1598
1599         * configure.ac:
1600         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
1601         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
1602         Use the new buffer clipping function from gstaudio here and
1603         require gst-plugins-base CVS.
1604         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
1605         For framed Wavpack buffers we require a valid timestamp.
1606
1607 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
1608
1609         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
1610         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
1611         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
1612         Clip raw audio and video when we can, keep track of current output
1613         segment.
1614         Don't leak buffers and events when there is no output pad.
1615         Improve debugging here and there.
1616
1617 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
1618
1619         * configure.ac:
1620           Sync liboil check with plugins-base.
1621
1622 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
1623
1624         * ext/annodex/Makefile.am:
1625           Fix CFLAGS/LIBS.
1626
1627         * ext/cdio/gstcdiocddasrc.c:
1628         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
1629           Include stdlib
1630
1631         * ext/cairo/Makefile.am:
1632         * gst/videofilter/Makefile.am:
1633         * tests/examples/level/Makefile.am:
1634           Use $(LIBM) instead of -lm
1635
1636 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
1637
1638         * sys/v4l2/gstv4l2src.c:
1639           Add another example pipeline.
1640
1641 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
1642
1643         Patch by: Alexander Eichner <alexeichi@yahoo.de>
1644
1645         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
1646           Use define here.
1647
1648         * sys/v4l2/gstv4l2tuner.c:
1649         (gst_v4l2_tuner_set_frequency_and_notify):
1650           Don't touch the property - its still disabled.
1651
1652         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
1653         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
1654         * sys/v4l2/v4l2src_calls.h:
1655           Improve fallback format negotionation. Fixes #451388
1656
1657 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
1658
1659         * tests/check/elements/videocrop.c: (GST_START_TEST):
1660           Fix the test.
1661
1662 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
1663
1664         * docs/plugins/Makefile.am:
1665         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1666         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1667         * docs/plugins/inspect/plugin-jpeg.xml:
1668         * docs/plugins/inspect/plugin-png.xml:
1669         * ext/jpeg/gstjpegdec.c:
1670         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
1671         (gst_pngdec_sink_setcaps):
1672           More docs. More logs in pngdec.
1673
1674 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
1675
1676         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
1677           Initialize num_buffers with minimum value.
1678
1679         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
1680         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
1681           Handle frame-size query failure gracefully.
1682
1683 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
1684
1685         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1686         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
1687         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
1688         of qt/aac files.
1689
1690 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
1691
1692         * ext/wavpack/gstwavpackdec.c:
1693         (gst_wavpack_dec_clip_outgoing_buffer):
1694         Fix buffer clipping to correctly clip to the segment stop.
1695
1696 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
1697
1698         * configure.ac:
1699         * tests/Makefile.am:
1700         Remove bogus check for libcheck, since we check for
1701         gstreamer-check and it pulls in the required info from there,
1702         and we weren't actually _using_ the information for libcheck
1703         ourselves anyway.
1704
1705 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
1706
1707         * configure.ac:
1708           Use pkg-config to locate check.
1709
1710 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
1711
1712         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
1713         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
1714         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
1715         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
1716         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
1717         * gst/effectv/gstaging.c: (gst_agingtv_transform):
1718         * gst/effectv/gstdice.c: (gst_dicetv_transform):
1719         * gst/effectv/gstedge.c: (gst_edgetv_transform):
1720         * gst/effectv/gstquark.c: (gst_quarktv_transform):
1721         * gst/effectv/gstrev.c: (gst_revtv_transform):
1722         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
1723         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
1724         * gst/effectv/gstwarp.c: (gst_warptv_transform):
1725         * gst/matroska/matroska-demux.c:
1726         (gst_matroska_demux_add_wvpk_header),
1727         (gst_matroska_demux_check_subtitle_buffer),
1728         (gst_matroska_decode_buffer):
1729         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
1730           Fix build against core CVS.
1731
1732 2007-07-10  Edward Hervey  <bilboed@gmail.com>
1733
1734         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
1735         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
1736         don't have enough granularity to convert that boolean into a
1737         GstFlowReturn.
1738
1739 2007-07-06  Michael Smith <msmith@fluendo.com>
1740
1741         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
1742         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
1743         (gst_alawdec_change_state):
1744         * gst/law/alaw-decode.h:
1745         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
1746         (gst_mulawdec_class_init), (gst_mulawdec_init),
1747         (gst_mulawdec_chain), (gst_mulawdec_change_state):
1748         * gst/law/mulaw-decode.h:
1749           Fix capsnego bogosity in *law decoders. 
1750
1751 2007-07-06  Michael Smith <msmith@fluendo.com>
1752
1753         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
1754         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
1755         (gst_smokeenc_change_state):
1756         * ext/jpeg/gstsmokeenc.h:
1757           Remove stupidity in get/set caps functions.
1758           Fix some refcounting problems.
1759
1760 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
1761
1762         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
1763         Remove endianness-flipping hack that seems to have been required
1764         only because of a bug in ffmpegcolorspace.
1765         Partially Fixes: #451908
1766
1767 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
1768
1769         * docs/plugins/Makefile.am:
1770           Simplify --extra-dir as gtkdoc scans recursively.
1771
1772 2007-07-03  Wim Taymans,,,  <set EMAIL_ADDRESS environment variable>
1773
1774         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1775
1776         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
1777         Set the encoding-name in the rtp caps to all uppercase, as required by
1778         the caps spec.
1779         Some small cleanups in the error paths. Fixes #453037.
1780
1781 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
1782
1783         * ext/wavpack/gstwavpackparse.c:
1784         (gst_wavpack_parse_index_get_last_entry),
1785         (gst_wavpack_parse_index_get_entry_from_sample),
1786         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
1787         (gst_wavpack_parse_scan_to_find_sample):
1788         * ext/wavpack/gstwavpackparse.h:
1789         Use a GSList for the GArray that is used like a list anyway.
1790
1791 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
1792
1793         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
1794         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
1795         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
1796           Add state change function where we set 0/1 as default framerate in
1797           case our setcaps function isn't called, like it might not in a
1798           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
1799           gdkpixbufdec trying to create caps with a 0/0 framerate.
1800           Also post an error message on the bus if gst_pad_push() fails when
1801           called from our sink event handler (+1 for flow returns for event
1802           functions in 0.11) instead of failing silently.
1803
1804 2007-06-27  Wim Taymans  <wim@fluendo.com>
1805
1806         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
1807         Cast stack args to the proper types. Fixes #451249.
1808
1809 2007-06-27  Wim Taymans  <wim@fluendo.com>
1810
1811         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
1812         (new_session_pad), (gst_rtspsrc_setup_streams):
1813         * gst/rtsp/gstrtspsrc.h:
1814         For container formats we only need to activate one of the streams so
1815         that we correctly signal no-more-pads. Fixes #451015.
1816
1817 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
1818
1819         * docs/plugins/gst-plugins-good-plugins.args:
1820         * docs/plugins/inspect/plugin-aasink.xml:
1821         * docs/plugins/inspect/plugin-alaw.xml:
1822         * docs/plugins/inspect/plugin-alpha.xml:
1823         * docs/plugins/inspect/plugin-alphacolor.xml:
1824         * docs/plugins/inspect/plugin-annodex.xml:
1825         * docs/plugins/inspect/plugin-apetag.xml:
1826         * docs/plugins/inspect/plugin-audiofx.xml:
1827         * docs/plugins/inspect/plugin-auparse.xml:
1828         * docs/plugins/inspect/plugin-autodetect.xml:
1829         * docs/plugins/inspect/plugin-avi.xml:
1830         * docs/plugins/inspect/plugin-cacasink.xml:
1831         * docs/plugins/inspect/plugin-cairo.xml:
1832         * docs/plugins/inspect/plugin-cdio.xml:
1833         * docs/plugins/inspect/plugin-cutter.xml:
1834         * docs/plugins/inspect/plugin-debug.xml:
1835         * docs/plugins/inspect/plugin-efence.xml:
1836         * docs/plugins/inspect/plugin-effectv.xml:
1837         * docs/plugins/inspect/plugin-esdsink.xml:
1838         * docs/plugins/inspect/plugin-flac.xml:
1839         * docs/plugins/inspect/plugin-flxdec.xml:
1840         * docs/plugins/inspect/plugin-gconfelements.xml:
1841         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
1842         * docs/plugins/inspect/plugin-goom.xml:
1843         * docs/plugins/inspect/plugin-halelements.xml:
1844         * docs/plugins/inspect/plugin-icydemux.xml:
1845         * docs/plugins/inspect/plugin-id3demux.xml:
1846         * docs/plugins/inspect/plugin-jpeg.xml:
1847         * docs/plugins/inspect/plugin-ladspa.xml:
1848         * docs/plugins/inspect/plugin-level.xml:
1849         * docs/plugins/inspect/plugin-matroska.xml:
1850         * docs/plugins/inspect/plugin-mulaw.xml:
1851         * docs/plugins/inspect/plugin-multipart.xml:
1852         * docs/plugins/inspect/plugin-navigationtest.xml:
1853         * docs/plugins/inspect/plugin-ossaudio.xml:
1854         * docs/plugins/inspect/plugin-png.xml:
1855         * docs/plugins/inspect/plugin-quicktime.xml:
1856         * docs/plugins/inspect/plugin-rtp.xml:
1857         * docs/plugins/inspect/plugin-rtsp.xml:
1858         * docs/plugins/inspect/plugin-smpte.xml:
1859         * docs/plugins/inspect/plugin-speex.xml:
1860         * docs/plugins/inspect/plugin-taglib.xml:
1861         * docs/plugins/inspect/plugin-udp.xml:
1862         * docs/plugins/inspect/plugin-videobalance.xml:
1863         * docs/plugins/inspect/plugin-videobox.xml:
1864         * docs/plugins/inspect/plugin-videocrop.xml:
1865         * docs/plugins/inspect/plugin-videoflip.xml:
1866         * docs/plugins/inspect/plugin-videomixer.xml:
1867         * docs/plugins/inspect/plugin-wavenc.xml:
1868         * docs/plugins/inspect/plugin-wavparse.xml:
1869         * docs/plugins/inspect/plugin-ximagesrc.xml:
1870           Update docs with caps info.
1871
1872 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
1873
1874         * po/POTFILES.in:
1875           Add more files with translatable strings (#450878).
1876
1877 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
1878
1879         * MAINTAINERS:
1880         Updating all the maintainers files
1881
1882 2007-06-22  Edward Hervey  <edward@fluendo.com>
1883
1884         * ext/flac/gstflactag.c: (gst_flac_tag_init):
1885         * gst/interleave/deinterleave.c: (deinterleave_init),
1886         (deinterleave_sink_link):
1887         * gst/interleave/interleave.c: (interleave_init):
1888         * gst/median/gstmedian.c: (gst_median_init):
1889         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
1890         Fix memory leaks.
1891         * tests/check/elements/id3demux.c: (pad_added_cb):
1892         Remove unused variable.
1893
1894 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
1895
1896         * ext/gconf/gconf.h:
1897         Make the prototype of gst_gconf_get_key_for_sink_profile
1898         match the implementation.
1899         Patch by: Damien Carbery <damien dot carbery at sun dot com>
1900         Fixes: #449747
1901
1902 2007-06-20  Michael Smith <msmith@fluendo.com>
1903
1904         * gst/rtp/gstrtpdepay.c:
1905           Fix description - rtpdepay is not a payloader.
1906
1907 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
1908
1909         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
1910         (qtdemux_video_caps):
1911         * gst/qtdemux/qtdemux_fourcc.h:
1912           Add MJPG to the variants of motion jpeg.
1913
1914 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
1915
1916         * tests/check/Makefile.am:
1917         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1918         * tests/check/elements/videocrop.c: (GST_START_TEST):
1919         * tests/check/elements/videofilter.c:
1920         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
1921         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
1922           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
1923           error flags are included and it errors out on compiler warnings
1924           for CVS builds; remove unused variables in various unit tests.
1925
1926 2007-06-19  Wim Taymans  <wim@fluendo.com>
1927
1928         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
1929         (rtsp_connection_close), (rtsp_connection_free):
1930         Use threadsafe inet_ntop to convert an ip number to a string. 
1931         Fixes #447961.
1932         Don't leak fd (and ip) when freeing a connection without first closing
1933         it.
1934
1935 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
1936
1937         * configure.ac:
1938         Back to CVS
1939
1940         * gst-plugins-good.doap:
1941         Add 0.10.6 to the doap file.
1942
1943 === release 0.10.6 ===
1944
1945 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
1946
1947         * configure.ac:
1948           releasing 0.10.6, "Wobble Board"
1949
1950 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
1951
1952         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
1953         (rtsp_connection_free):
1954           Revert previous commit again, since we are frozen (sorry).
1955
1956 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
1957
1958         Patch by: Peter Kjellerstedt <pkj at axis com>
1959
1960         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
1961         (rtsp_connection_free):
1962           inet_ntoa() uses a static buffer internally, so we need to copy the
1963           returned string if we want to store it for later (#447961).
1964
1965 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
1966
1967         * win32/vs6/autogen.dsp:
1968         * win32/vs6/gst_plugins_good.dsw:
1969         * win32/vs6/libgstalaw.dsp:
1970         * win32/vs6/libgstalpha.dsp:
1971         * win32/vs6/libgstalphacolor.dsp:
1972         * win32/vs6/libgstapetag.dsp:
1973         * win32/vs6/libgstaudiofx.dsp:
1974         * win32/vs6/libgstauparse.dsp:
1975         * win32/vs6/libgstautodetect.dsp:
1976         * win32/vs6/libgstavi.dsp:
1977         * win32/vs6/libgstcutter.dsp:
1978         * win32/vs6/libgstdirectdraw.dsp:
1979         * win32/vs6/libgstdirectsound.dsp:
1980         * win32/vs6/libgsteffectv.dsp:
1981         * win32/vs6/libgstflx.dsp:
1982         * win32/vs6/libgstgoom.dsp:
1983         * win32/vs6/libgsticydemux.dsp:
1984         * win32/vs6/libgstid3demux.dsp:
1985         * win32/vs6/libgstinterleave.dsp:
1986         * win32/vs6/libgstjpeg.dsp:
1987         * win32/vs6/libgstlevel.dsp:
1988         * win32/vs6/libgstmatroska.dsp:
1989         * win32/vs6/libgstmedian.dsp:
1990         * win32/vs6/libgstmonoscope.dsp:
1991         * win32/vs6/libgstmulaw.dsp:
1992         * win32/vs6/libgstmultipart.dsp:
1993         * win32/vs6/libgstqtdemux.dsp:
1994         * win32/vs6/libgstrtp.dsp:
1995         * win32/vs6/libgstrtsp.dsp:
1996         * win32/vs6/libgstsmpte.dsp:
1997         * win32/vs6/libgstspeex.dsp:
1998         * win32/vs6/libgstudp.dsp:
1999         * win32/vs6/libgstvideobalance.dsp:
2000         * win32/vs6/libgstvideobox.dsp:
2001         * win32/vs6/libgstvideocrop.dsp:
2002         * win32/vs6/libgstvideoflip.dsp:
2003         * win32/vs6/libgstvideomixer.dsp:
2004         * win32/vs6/libgstwaveform.dsp:
2005         * win32/vs6/libgstwavenc.dsp:
2006         * win32/vs6/libgstwavparse.dsp:
2007         Mark *.dsp & *.dsw as binary files and convert to DOS line
2008         endings, as they don't load into VS6 correctly otherwise.
2009
2010 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
2011
2012         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
2013         (rtsp_connection_connect):
2014         Fix the MingW build. 
2015         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
2016         Fixes: #446981
2017
2018 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
2019
2020         * tests/check/elements/.cvsignore:
2021         * tests/icles/.cvsignore:
2022         Hush the buildbots up
2023
2024 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
2025
2026         * configure.ac:
2027         * sys/Makefile.am:
2028         * sys/directdraw/Makefile.am:
2029         * sys/directsound/Makefile.am:
2030         * sys/waveform/Makefile.am:
2031         Make sure to dist everything needed for win32 builds.
2032
2033 2007-06-14  Edward Hervey  <edward@fluendo.com>
2034
2035         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
2036         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
2037         caps.
2038         Fixes #447458
2039
2040 2007-06-13  Wim Taymans  <wim@fluendo.com>
2041
2042         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
2043         Make sure we allocate enough memory for the codec_data.
2044         Fixes #447210.
2045
2046 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
2047
2048         * win32/MANIFEST:
2049         Add videocrop project file to the win32 manifest.
2050         * win32/vs6/gst_plugins_good.dsw:
2051         Add qtdemux,videocrop and waveform projects to the workspace.
2052         * win32/vs6/libgstqtdemux.dsp:
2053         Add zlib to the link list of qtdemux.
2054         * win32/vs6/libgstvideocrop.dsp:
2055         Add a project file for videocrop.
2056
2057 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
2058
2059         * po/POTFILES.in:
2060         Add qtdemux for translation
2061
2062 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
2063
2064         * configure.ac:
2065         * docs/plugins/Makefile.am:
2066         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2067         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2068         * docs/plugins/inspect/plugin-videocrop.xml:
2069         * gst-plugins-good.spec.in:
2070         * sys/Makefile.am:
2071         * tests/check/Makefile.am:
2072         * tests/icles/Makefile.am:
2073         * tests/icles/videocrop-test.c:
2074         Move videocrop and osxvideo from -bad.
2075
2076 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
2077
2078         * configure.ac:
2079         * docs/plugins/Makefile.am:
2080         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2081         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2082         * docs/plugins/gst-plugins-good-plugins.args:
2083         * docs/plugins/inspect/plugin-qtdemux.xml:
2084         * docs/plugins/inspect/plugin-quicktime.xml:
2085         * win32/MANIFEST:
2086         Move qtdemux from -bad.
2087
2088         * gst-plugins-good.spec.in:
2089         Update spec file to reflect moving of qtdemux and wavpack
2090
2091 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
2092         
2093         * win32/MANIFEST:
2094         * docs/plugins/Makefile.am:
2095         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2096         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2097         * docs/plugins/inspect/plugin-directdraw.xml:
2098         * docs/plugins/inspect/plugin-directsound.xml:
2099         * docs/plugins/inspect/plugin-waveform.xml:
2100         Move the waveform plugin from -bad too. Update the inspect xml
2101         files to mention Plugins Good instead of Plugins Bad.
2102
2103 2007-06-12  Andy Wingo  <wingo@pobox.com>
2104
2105         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
2106         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
2107         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
2108         finalization and resuscitation. No longer public.
2109         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
2110         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
2111         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
2112         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
2113         miniobject semantics, and be threadsafe.
2114         (gst_v4l2src_queue_frame): Remove this function, as we just call
2115         the ioctls directly in the two places where we queue buffers.
2116         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
2117         directly.
2118         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
2119         to allocate the pool, which also preallocates the GstBuffers.
2120         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
2121         queueing the frames directly.
2122         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
2123         mmap buffers have been dequeued.
2124
2125         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
2126         real MiniObject instead of rolling our own refcounting and
2127         finalizing. Give it a lock.
2128         (struct _GstV4l2Buffer): Remove one intermediary object, having
2129         the buffers hold the struct v4l2_buffer directly.
2130
2131         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
2132         capture_init so that it can set them on the buffers that it will
2133         create.
2134         (gst_v4l2src_get_read): For better or for worse, include the
2135         timestamping and offsetting code here; really we should be using
2136         bufferalloc though.
2137         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
2138         preallocated, mmap'd buffers.
2139
2140 2007-06-11  Wim Taymans  <wim@fluendo.com>
2141
2142         Patch by: daniel fischer <dan at f3c dot com>
2143
2144         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
2145         (gst_ximage_src_get_caps):
2146         Actually use the display_name property so that we can dump any
2147         available X display. Fixes #445905.
2148
2149 2007-06-11  Wim Taymans  <wim@fluendo.com>
2150
2151         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
2152
2153         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
2154         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
2155         Add missing rate fields to caps. Fixes #441118.
2156
2157 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
2158
2159         * win32/vs6/gst_plugins_good.dsw:
2160         * win32/vs8/gst-plugins-good.sln:
2161         Add DirectSound and DirectDraw sinks project files to
2162         workspace and solution files.
2163
2164 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
2165
2166         Patch by: Josh Coalson <xflac at yahoo dot com>,
2167         updated by Alexis Ballier <aballier at gentoo dot org>:
2168
2169         * configure.ac:
2170         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
2171         (gst_flac_dec_setup_seekable_decoder),
2172         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
2173         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
2174         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
2175         * ext/flac/gstflacdec.h:
2176         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2177         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
2178         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
2179         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
2180         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
2181         (gst_flac_enc_chain), (gst_flac_enc_set_property),
2182         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
2183         * ext/flac/gstflacenc.h:
2184         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
2185         
2186 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
2187
2188         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
2189         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
2190         not necessary anymore as we need at least that core version. 
2191
2192 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
2193
2194         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
2195         (gst_wavpack_dec_chain):
2196         * ext/wavpack/gstwavpackdec.h:
2197         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
2198         (gst_wavpack_parse_push_buffer):
2199         * ext/wavpack/gstwavpackparse.h:
2200         Improve discont handling by checking if the next Wavpack block has
2201         the expected, following block index.
2202
2203 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2204
2205         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
2206           Fix element description.
2207
2208 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2209
2210         * configure.ac:
2211         * docs/plugins/Makefile.am:
2212         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2213         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2214         * docs/plugins/gst-plugins-good-plugins.args:
2215         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2216         * docs/plugins/gst-plugins-good-plugins.signals:
2217         * docs/plugins/inspect/plugin-autodetect.xml:
2218         * docs/plugins/inspect/plugin-gconfelements.xml:
2219         * docs/plugins/inspect/plugin-ladspa.xml:
2220         * docs/plugins/inspect/plugin-rtp.xml:
2221         * docs/plugins/inspect/plugin-wavpack.xml:
2222         * ext/Makefile.am:
2223         * tests/check/Makefile.am:
2224           move wavpack plugin.  See #352605.
2225
2226 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
2227
2228         * configure.ac:
2229         * docs/plugins/Makefile.am:
2230         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2231         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2232         * docs/plugins/gst-plugins-good-plugins.args:
2233         * sys/Makefile.am:
2234         * win32/MANIFEST:
2235         Add DirectDraw & DirectSound plugins to the build and docs.
2236
2237 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
2238
2239         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
2240         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
2241           When operating in pull mode, error out correct on not-linked.
2242
2243 2007-06-06  Andy Wingo  <wingo@pobox.com>
2244
2245         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
2246         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
2247         format and size if the ioctls are defined; should fix compilation
2248         on Linux < 2.16.19.
2249
2250 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
2251
2252         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
2253           Printf fixes in debug statements; use LOG level for debug statements
2254           that are printed for each and every frame; convert c++ comments to
2255           C-style comments; not much point using g_try_malloc() if we then not
2256           even check the return value.
2257
2258 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
2259
2260         * configure.ac:
2261           Bump requirements to released versions (core and base 0.10.13).
2262
2263         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
2264           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
2265           own implementation.
2266
2267 2007-06-05  Andy Wingo  <wingo@pobox.com>
2268
2269         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
2270         some useless comments.
2271
2272         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
2273         frames before calling STREAMON, that might leave them in a state
2274         where they can't be dequeued if we go back to NULL without calling
2275         STREAMON, according to the docs.
2276         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
2277         before we call STREAMON.
2278         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
2279         failures. (For me this code hung.) The pool refcounting is still
2280         crack; added a note to that effect.
2281
2282 2007-06-05  Wim Taymans  <wim@fluendo.com>
2283
2284         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
2285         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
2286         Add support for mapping gst structure names to the MIME type equivalent.
2287         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
2288
2289 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2290
2291         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
2292         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
2293         (gst_wavenc_chain), (gst_wavenc_change_state):
2294         * gst/wavenc/gstwavenc.h:
2295         Properly write wav files with width!=depth by having the depth most
2296         significant bytes set and all others zero. Fixes #442535.
2297
2298 2007-06-01  Wim Taymans  <wim@fluendo.com>
2299
2300         * gst/rtsp/rtspconnection.c:
2301         Add include to make buildbot happy.
2302
2303 2007-06-01  Wim Taymans  <wim@fluendo.com>
2304
2305         Patch by: Peter Kjellerstedt  <pkj at axis com>
2306
2307         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
2308         (rtsp_connection_connect), (add_date_header),
2309         (rtsp_connection_send), (parse_response_status),
2310         (parse_request_line), (parse_line), (rtsp_connection_receive):
2311         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
2312         * gst/rtsp/rtspdefs.h:
2313         * gst/rtsp/rtspmessage.c: (key_value_foreach),
2314         (rtsp_message_init_request), (rtsp_message_init_response),
2315         (rtsp_message_remove_header), (rtsp_message_append_headers),
2316         (rtsp_message_dump):
2317         * gst/rtsp/rtspmessage.h:
2318         Improves version checking, allowing an RTSP server to reply with "505
2319         RTSP Version not supported.
2320         Adds a Date header to all messages.
2321         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
2322         want to be able to send a response even if something in the request was
2323         invalid. EINVAL is only used when passing wrong arguments to functions.
2324         Do not handle an invalid method in parse_request_line(). Defer this to
2325         the caller so it can respond with "405 Method Not Allowed".
2326         Improves parsing of the timeout parameter to the Session header,
2327         allowing whitespace after the semicolon. 
2328         Avoids a compiler warning due to variables shadowing a function argument.
2329
2330 2007-06-01  Wim Taymans  <wim@fluendo.com>
2331
2332         Based on Patch by: Daniel Charles <dcharles at ti dot com>
2333
2334         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
2335         (gst_rtp_amr_depay_process):
2336         * gst/rtp/gstrtpamrdepay.h:
2337         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
2338         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
2339         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
2340         * gst/rtp/gstrtpamrpay.h:
2341         Add support for AMR-WB.
2342         Small cleanups such as using BOILERPLATE.
2343
2344 2007-05-31  Wim Taymans  <wim@fluendo.com>
2345
2346         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
2347         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
2348
2349 2007-05-30  Andy Wingo  <wingo@pobox.com>
2350
2351         * sys/v4l2/gstv4l2object.h: 
2352         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
2353         unintended changes.
2354
2355         * sys/v4l2/v4l2src_calls.h: 
2356         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
2357         the format list in the order that the driver gives it to us.
2358         (gst_v4l2src_probe_caps_for_format_and_size)
2359         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
2360         based on the capabilities of the device.
2361         (gst_v4l2src_grab_frame): Update for object variable renaming.
2362         (gst_v4l2src_set_capture): Update to be strict in its parameters,
2363         as in the set_caps below.
2364         (gst_v4l2src_capture_init): Update for object variable renaming,
2365         and reflow.
2366         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
2367         (gst_v4l2src_capture_deinit): Update for object variable renaming.
2368         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
2369         (gst_v4l2src_get_fps): Remove; these functions don't have much
2370         meaning outside of an atomic set_caps method.
2371         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
2372         known.
2373
2374         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
2375         call to update_fps; not sure about this change.
2376         (gst_v4l2_tuner_set_norm): Work around the fact that for the
2377         moment we don't have an update_fps_func.
2378
2379         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
2380         structures in the object, just store what we need. Do store the
2381         probed caps of the device. Don't store the current frame rate.
2382
2383         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
2384         update_fps_function, for now. Update for new object variable
2385         naming.
2386         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
2387         new object variable naming.
2388         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
2389         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
2390         (gst_v4l2src_get_caps): Rework to probe the device for supported
2391         frame sizes and frame rates.
2392         (gst_v4l2src_set_caps): Rework to be strict in the given
2393         parameters: if someone asks us to have a certain size and rate,
2394         that is what we configure.
2395         (gst_v4l2src_get_read): Update for object variable naming. Don't
2396         leak buffers on short reads.
2397         (gst_v4l2src_get_mmap): Update for object variable naming, and add
2398         comments.
2399         (gst_v4l2src_create): Update for object variable naming.
2400
2401 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
2402
2403         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
2404         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
2405         * gst/avi/gstavidemux.h:
2406           Parse subtitle text streams instead of erroring out (#442034). Still
2407           needs a parser for the subtitles to actually show up.
2408
2409 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
2410
2411         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
2412         (gst_avi_demux_loop):
2413           Make _push_event() return TRUE if the event could be pushed on at
2414           least one pad and not only if it could be pushed on all pads,
2415           otherwise we'll end up posting an error message on EOS if one or
2416           more source pads are not connected.
2417
2418 2007-05-28  Wim Taymans  <wim@fluendo.com>
2419
2420         * gst/rtsp/rtsptransport.c:
2421         Use renamed RTP bin.
2422
2423 2007-05-28  Wim Taymans  <wim@fluendo.com>
2424
2425         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
2426
2427         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
2428         (gst_video_box_set_property), (gst_video_box_transform_caps),
2429         (video_box_recalc_transform), (gst_video_box_set_caps),
2430         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
2431         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
2432         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
2433         (gst_video_box_i420_i420), (gst_video_box_transform),
2434         (plugin_init):
2435         Add AYUV->AYUV and AYUV->I420 formats. 
2436         Fix negotiation and I420->AYUV conversion.
2437         Fixes #429329.
2438
2439 2007-05-26  Wim Taymans  <wim@fluendo.com>
2440
2441         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2442         Use different variables for nested for loops so that the outer loop
2443         functions properly and speex files with multiple frames per buffer work
2444         properly.
2445         Fixes #441408.
2446
2447 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
2448
2449         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
2450           Don't leak newsegment events.
2451
2452 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
2453
2454         * gst/wavparse/Makefile.am:
2455           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
2456           drags it in.
2457
2458 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
2459
2460         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2461         (notgst_value_array_append_buffer),
2462         (gst_flac_enc_process_stream_headers),
2463         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
2464         (gst_flac_enc_change_state):
2465         * ext/flac/gstflacenc.h:
2466           Collect headers, add "streamheader" field to output caps and set
2467           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
2468           produces output according to the official FLAC-to-Ogg mapping
2469           instead of completely broken files. Fixes #426044.
2470
2471 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
2472
2473         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
2474         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
2475         (gst_id3demux_sink_event):
2476         * gst/id3demux/gstid3demux.h:
2477         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
2478         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
2479         (gst_tag_demux_send_new_segment):
2480         Handle and adjust new-segment events so that downstream really
2481         sees a stream with the tag pieces stripped off the front and back.
2482         Fixes strangeness in seeking when mp3 decoders use the new-segment
2483         byte position to estimate their current playback position timestamp
2484         and then the arriving buffers don't match up.
2485
2486 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
2487
2488         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
2489           Don't unnecessarily perform a READY->NULL->READY transition on the
2490           detected audio sink when starting up. Fixes: #440127
2491
2492 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
2493
2494         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
2495         (gst_flac_enc_chain):
2496           Don't crash in chain function if setcaps hasn't been called.
2497
2498 2007-05-24  Wim Taymans  <wim@fluendo.com>
2499
2500         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
2501         Init value to avoid infinte loops.
2502
2503 2007-05-24  Wim Taymans  <wim@fluendo.com>
2504
2505         Patch by: Peter Kjellerstedt  <pkj at axis com>
2506
2507         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
2508         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
2509         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2510         (gst_rtspsrc_play):
2511         (rtsp_connection_send), (rtsp_connection_receive):
2512         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
2513         Fix for new API.
2514
2515         * gst/rtsp/rtspconnection.c: (add_auth_header),
2516         Only add authorisation and session headers when sending messages.
2517
2518         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
2519         (rtsp_message_init_request), (rtsp_message_init_response),
2520         (rtsp_message_unset), (rtsp_message_add_header),
2521         (rtsp_message_remove_header), (rtsp_message_get_header),
2522         (rtsp_message_append_headers), (dump_key_value),
2523         (rtsp_message_dump):
2524         * gst/rtsp/rtspmessage.h:
2525         Add support for multiple headers of the same type by storing the parsed
2526         headers in a GArray instaed of a hashtable.
2527
2528 2007-05-21  Wim Taymans  <wim@fluendo.com>
2529
2530         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
2531         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
2532         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
2533         safer shutdown.
2534
2535 2007-05-21  Wim Taymans  <wim@fluendo.com>
2536
2537         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
2538         * gst/rtsp/gstrtpdec.h:
2539         Added signal for backwards compat.
2540
2541 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2542         
2543         Patch by: René Stadler <mail at renestadler dot de>
2544
2545         * configure.ac:
2546         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
2547         (gst_au_parse_parse_header), (gst_au_parse_chain):
2548         * gst/auparse/gstauparse.h:
2549         Use audioconvert for converting from non-native endianness floats
2550         in auparse instead of doing it ourself. Fixes #424527.
2551         This needs the audioconvert from plugins-base CVS.
2552         
2553 2007-05-21  Wim Taymans  <wim@fluendo.com>
2554
2555         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
2556         (gst_rtp_h263p_pay_flush):
2557         Fix enum registration.
2558
2559 2007-05-21  Wim Taymans  <wim@fluendo.com>
2560
2561         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2562
2563         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
2564         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
2565         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
2566         (gst_rtp_h263p_pay_flush):
2567         * gst/rtp/gstrtph263ppay.h:
2568         Add new fragmentation mode base on GOB headers. Fixes #438940.
2569
2570 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
2571
2572         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
2573           Printf format fix.
2574
2575 2007-05-18  Wim Taymans  <wim@fluendo.com>
2576
2577         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
2578         Don't crash when an unsupported transport error was returned by the
2579         server, just try to configure the next stream. Fixes #439255.
2580
2581 2007-05-18  Wim Taymans  <wim@fluendo.com>
2582
2583         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
2584         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
2585         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
2586         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
2587         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
2588         * gst/rtsp/gstrtspsrc.h:
2589         Add TCP timeout property and use it for all TCP connection.
2590
2591         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
2592         (rtsp_connection_write), (rtsp_connection_next_timeout),
2593         (rtsp_connection_reset_timeout):
2594         Make connect and writes cancelable and make them use the timeout.
2595
2596 2007-05-18  Wim Taymans  <wim@fluendo.com>
2597
2598         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
2599         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
2600         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
2601         (gst_rtspsrc_setup_streams):
2602         Refactor timeout handling.
2603         Also send keep-alive when dealing with TCP transport.
2604
2605         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
2606         (rtsp_connection_free), (rtsp_connection_next_timeout),
2607         (rtsp_connection_reset_timeout):
2608         * gst/rtsp/rtspconnection.h:
2609         Use a timer to handle the session timeouts, add some methods to deal
2610         with timeouts.
2611
2612 2007-05-17  Wim Taymans  <wim@fluendo.com>
2613
2614         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
2615         (gst_rtspsrc_setup_streams):
2616         Ignore streams that fail the setup command, we will retry with a
2617         different transport later on.
2618
2619         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
2620         (rtsp_ext_wms_configure_stream):
2621         Fix encoding name case.
2622
2623 2007-05-16  Edward Hervey  <edward@fluendo.com>
2624
2625         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
2626         Fix build on macosx.
2627
2628 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
2629
2630         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
2631         Replace direct comparison of a string with the string literal "" with
2632         a comparison of the first character with '\0'. Fixes #438926.
2633
2634 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
2635
2636         * gst/debug/breakmydata.c (gst_break_my_data_init):
2637           One more try. This should be the proper fix now.
2638
2639 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
2640
2641         * gst/debug/breakmydata.c:
2642           Ooops, no // comments please.
2643
2644 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
2645
2646         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
2647         (gst_break_my_data_init):
2648           Fix gst_buffer_is_writable() assertion.
2649
2650 2007-05-14  David Schleef  <ds@schleef.org>
2651
2652         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
2653           video/x-raw-bayer.  Fixes #314160.
2654
2655 2007-05-14  Wim Taymans  <wim@fluendo.com>
2656
2657         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
2658         (gst_rtp_theora_depay_parse_configuration):
2659         * gst/rtp/gstrtptheorapay.c: (encode_base64),
2660         (gst_rtp_theora_pay_finish_headers),
2661         (gst_rtp_theora_pay_handle_buffer):
2662         Update theora pay/depayloader in a similar to vorbis.
2663
2664         * gst/rtp/gstrtpvorbisdepay.c:
2665         (gst_rtp_vorbis_depay_parse_configuration):
2666         Update docs.
2667
2668 2007-05-14  Wim Taymans  <wim@fluendo.com>
2669
2670         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
2671         When we try to execute a method that is not supported by the server,
2672         don't error out but remove the method from the accepted methods so that
2673         we never try to perform this method again.
2674
2675 2007-05-14  Wim Taymans  <wim@fluendo.com>
2676
2677         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
2678         Remove annoying _dump_mem.
2679
2680 2007-05-14  Wim Taymans  <wim@fluendo.com>
2681
2682         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
2683         Parse range correctly.
2684
2685         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
2686         The baseurl now always has a '/' at the start.
2687
2688 2007-05-14  Wim Taymans  <wim@fluendo.com>
2689
2690         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
2691         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
2692         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
2693         Factor out caps configuration and configure more stuff such as the time
2694         ranges and speed/scale values.
2695
2696         * gst/rtsp/rtsptransport.c:
2697         Add Copyright after non-trival fixes.
2698
2699 2007-05-12  Wim Taymans  <wim@fluendo.com>
2700
2701         Patch by: Peter Kjellerstedt  <pkj at axis com>
2702
2703         * gst/rtsp/gstrtspsrc.h:
2704         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
2705         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
2706         (rtsp_message_get_header):
2707         * gst/rtsp/rtspmessage.h:
2708         Make channel guint8 where possible.
2709         Make rtsp_message_init_data() take the channel as a guint8.
2710
2711         * gst/rtsp/rtspdefs.c:
2712         Fixed a typo: Timout -> Timeout
2713
2714         * gst/rtsp/rtspdefs.h:
2715         Make RTSP_CHECK() behave as a statement.
2716
2717         * gst/rtsp/sdpmessage.c:
2718         Avoid a compiler warning in INIT_ARRAY().
2719         Fixes #437692.
2720
2721 2007-05-12  Wim Taymans  <wim@fluendo.com>
2722
2723         Patch by: Peter Kjellerstedt  <pkj at axis com>
2724
2725         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
2726         (rtsp_url_get_request_uri):
2727         * gst/rtsp/rtspurl.h:
2728         Add support for query parameters to RTSP URLs.
2729
2730 2007-05-12  Wim Taymans  <wim@fluendo.com>
2731
2732         Patch by: Peter Kjellerstedt  <pkj at axis com>
2733
2734         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
2735         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
2736         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
2737         (rtsp_transport_parse), (rtsp_transport_as_text):
2738         * gst/rtsp/rtsptransport.h:
2739         Add validation to rtsp_transport_parse().
2740         Add rtsp_transport_as_text() to generate an RTSP header from an
2741         RTSPTransport.
2742         Change ssrc to guint (was a string) since that is what it is, even
2743         though it is sent as a hex string.
2744         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
2745         incorrect, which can be seen when looking at the examples in the RFC).
2746         Fixes #437670.
2747
2748 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
2749
2750         Patch by: Eric Anholt
2751
2752         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
2753           gst_ximage_src_ximage_get):
2754         Use union of all damage between frames to make it faster.
2755         Fixes bug #342463.
2756         Also fix crasher when cursor is at bottom right of window.
2757
2758 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
2759
2760         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
2761           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
2762           streaming mode regression for file from #343837 with 'bext' chunk
2763           before the 'fmt' chunk.
2764
2765 2007-05-11  Wim Taymans  <wim@fluendo.com>
2766
2767         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
2768         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
2769         (gst_rtspsrc_handle_src_event),
2770         (gst_rtspsrc_stream_configure_manager),
2771         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
2772         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
2773         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
2774         * gst/rtsp/gstrtspsrc.h:
2775         * gst/rtsp/rtspdefs.h:
2776         Preliminary seek support.
2777         Activate internal pads so that we can receive events on them.
2778         Don't try to parse a range string when it's NULL.
2779
2780 2007-05-11  Wim Taymans  <wim@fluendo.com>
2781
2782         * gst/rtp/README:
2783         Update README with new RTP variables that will be used for
2784         synchronisation.
2785
2786         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
2787         (gst_rtp_vorbis_depay_parse_configuration),
2788         (gst_rtp_vorbis_depay_process):
2789         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
2790         (gst_rtp_vorbis_pay_finish_headers),
2791         (gst_rtp_vorbis_pay_handle_buffer):
2792         Update vorbis pay and depayloader to draft-04.
2793
2794 2007-05-11  Wim Taymans  <wim@fluendo.com>
2795
2796         * gst/rtsp/rtsptransport.c:
2797         UDP MCAST is actually the default for RTP/AVP.
2798 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
2799
2800         * gst/level/gstlevel.c: (gst_level_transform_ip):
2801         Use guint8 * instead of gpointer then vs6 can build 
2802         in_data += (filter->width / 8).
2803
2804 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
2805
2806         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
2807           gst_ximage_src_ximage_get):
2808         * sys/ximage/gstximagesrc.h (last_ximage):
2809         When using Damage actually keep the last frame, and not assume
2810         that the buffer we get already has the last frame on it.
2811         Copy the cursor over if we specify a non-zero start x and
2812         start y.
2813
2814 2007-05-11  Wim Taymans  <wim@fluendo.com>
2815
2816         * gst/rtsp/rtsptransport.c:
2817         Make UDP the default transport when not specified.
2818
2819 2007-05-09  David Schleef  <ds@schleef.org>
2820
2821         * gst/level/gstlevel.c:
2822           Revert last change.
2823
2824 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
2825
2826         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
2827         (gst_level_transform_ip):
2828         Use guint8 * instead of gpointer then vs6 know the size of data
2829         pointed when moving the pointer.
2830         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
2831         Move instructions after variables declaration.
2832         * win32/vs6/autogen.dsp:
2833         * win32/vs6/libgstrtp.dsp:
2834         * win32/vs6/libgstrtsp.dsp:
2835         Update vs6 project files.
2836
2837 2007-05-09  Wim Taymans  <wim@fluendo.com>
2838
2839         * gst/rtsp/Makefile.am:
2840         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
2841         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
2842         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
2843         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
2844         (rtsp_range_free):
2845         * gst/rtsp/rtsprange.h:
2846         Add code to parse time ranges.
2847         Report DURATION on the stream when possible.
2848
2849 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
2850
2851         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
2852         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
2853         (gst_videomixer_collected):
2854           Fix strides calculation for AYUV (it's just width*4) (#436910).
2855
2856 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2857
2858         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
2859         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
2860         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
2861         Sync the GObject properties before each processing step to properly
2862         work with the controller.
2863
2864 2007-05-04  Wim Taymans  <wim@fluendo.com>
2865
2866         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
2867         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
2868         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2869         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
2870         (gst_rtspsrc_change_state):
2871         Let more error state trickle down so that we can catch more error
2872         cases.
2873         Handle keep-alive a little smarter by selecting a method the server
2874         actually supports.
2875         Fix a race in UDP streaming shutdown.
2876
2877 2007-05-04  Wim Taymans  <wim@fluendo.com>
2878
2879         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
2880         Ignore errors when trying to use the keep-alive messages.
2881
2882 2007-05-04  Wim Taymans  <wim@fluendo.com>
2883
2884         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
2885         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
2886         (gst_rtspsrc_stream_configure_manager),
2887         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
2888         (gst_rtspsrc_stream_configure_mcast),
2889         (gst_rtspsrc_stream_configure_udp),
2890         (gst_rtspsrc_stream_configure_udp_sink),
2891         (gst_rtspsrc_stream_configure_transport):
2892         Send RTCP messages back to the server over the TCP connection.
2893
2894         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
2895         (rtsp_connection_send), (rtsp_connection_read), (read_body),
2896         (rtsp_connection_receive):
2897         * gst/rtsp/rtspconnection.h:
2898         Factor out and expose lowlevel _write and _read methods.
2899         Implement sending data messages to the server.
2900
2901 2007-05-03  Wim Taymans  <wim@fluendo.com>
2902
2903         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
2904         (gst_multipart_mux_collected):
2905         Fix timestamps on outgoing buffers.
2906
2907 2007-05-03  Wim Taymans  <wim@fluendo.com>
2908
2909         * gst/multipart/multipartmux.c:
2910         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
2911         (gst_multipart_mux_change_state):
2912         Emit NEWSEGMENT events before pushing the first buffer.
2913
2914 2007-05-03  Wim Taymans  <wim@fluendo.com>
2915
2916         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
2917         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
2918         (gst_rtspsrc_handle_src_query),
2919         (gst_rtspsrc_stream_configure_manager),
2920         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
2921         (gst_rtspsrc_stream_configure_mcast),
2922         (gst_rtspsrc_stream_configure_udp),
2923         (gst_rtspsrc_stream_configure_udp_sink),
2924         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
2925         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
2926         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
2927         (gst_rtspsrc_pause):
2928         Refactor transport configuration code.
2929         Create internal pads for TCP transport so that we can implement events
2930         and queries.
2931         Handle events and queries.
2932         Parse range from the SDP.
2933         Fix race in pause handler where the connection could still be flushing.
2934
2935 2007-05-02  Wim Taymans  <wim@fluendo.com>
2936
2937         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
2938         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
2939         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
2940         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
2941         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
2942         (gst_rtspsrc_change_state):
2943         * gst/rtsp/gstrtspsrc.h:
2944         Fix race when multiple udp sources post timeouts, just act on the first
2945         received timeout.
2946         Protect stream list with a recursive lock to fix some races.
2947         Flush connection when we need to do a reconnect or stop.
2948         Make state lock recursive.
2949
2950         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
2951         (rtsp_connection_close):
2952         Some small cleanups.
2953
2954 2007-05-02  Wim Taymans  <wim@fluendo.com>
2955
2956         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
2957         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
2958         Only set DISCONT when there actually is a discont or when we just
2959         started.
2960
2961 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
2962
2963         * ext/flac/gstflac.c: (plugin_init):
2964         Call bindtextdomain() to get localized strings.
2965
2966 2007-05-02  Wim Taymans  <wim@fluendo.com>
2967
2968         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
2969         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
2970         (gst_wavparse_stream_data):
2971         * gst/wavparse/gstwavparse.h:
2972         Be a bit more clever when dealing with VBR files with FACT tags, we
2973         don't want to timestamp buffers in that case but the estimated BPS can
2974         be used for seeking.
2975         Only send close segment in the streaming thread.
2976
2977 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
2978
2979         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
2980         Correctly post an error on the bus if something went wrong in the loop
2981         function. This fixes a few cases where the task was paused and nothing
2982         happened anymore.
2983
2984 2007-05-02  Wim Taymans  <wim@fluendo.com>
2985
2986         * gst/rtsp/test.c: (main):
2987         Fix compilation of deprecated test just because I'm too lazy to delete
2988         it.
2989
2990 2007-05-02  Wim Taymans  <wim@fluendo.com>
2991
2992         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
2993         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
2994         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
2995         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
2996         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
2997         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
2998         * gst/rtsp/gstrtspsrc.h:
2999         Fix sending RTCP to the right place.
3000         Fix bug in reffing the wrong UDP element.
3001         Use new pad names for the session manager.
3002         Implement handling server requests in interleaved and UDP modes.
3003         Handle session keep-alive in UDP modes.
3004         Remove GCond for handling UDP timeouts.
3005
3006         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
3007         (rtsp_connection_send), (rtsp_connection_read), (read_body),
3008         (rtsp_connection_receive), (rtsp_connection_close):
3009         * gst/rtsp/rtspconnection.h:
3010         Store connection IP address for later.
3011         Add timeout args to all operations that might block forever.
3012         Parse session timeout.
3013         Only close sockets when not already closed.
3014
3015         * gst/rtsp/rtspdefs.c:
3016         * gst/rtsp/rtspdefs.h:
3017         Add timeout return value and error string.
3018
3019         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
3020         Add small comment.
3021
3022 2007-05-01  Wim Taymans  <wim@fluendo.com>
3023
3024         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3025
3026         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
3027         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
3028         * gst/rtp/gstrtpmp4vpay.h:
3029         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
3030
3031 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
3032
3033         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3034           Remove v4l2src from docs, since it breaks the docs build, and the
3035           plugin is only built if --enable-experimental is used anyway.
3036
3037         * docs/plugins/Makefile.am:
3038           Spaces => tab.
3039
3040 2007-04-29  Wim Taymans  <wim@fluendo.com>
3041
3042         * gst/udp/gstmultiudpsink.c: (leave_multicast),
3043         (gst_multiudpsink_add), (gst_multiudpsink_remove):
3044         Add code to drop membership of a multicast group.
3045
3046         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
3047         (gst_udpsink_set_uri):
3048         Implement URI handler.
3049
3050         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
3051         (gst_rtspsrc_parse_rtpinfo):
3052         Use URI handler to make udpsink instace.
3053         Improve code to configure port and destination.
3054
3055 2007-04-29  Wim Taymans  <wim@fluendo.com>
3056
3057         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
3058         Fix multicast detection.
3059         Don't try to join a multicast group if the address is not multicast.
3060
3061         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
3062         Small debug improvement.
3063
3064 2007-04-27  Wim Taymans  <wim@fluendo.com>
3065
3066         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
3067         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
3068         (gst_rtspsrc_handle_message):
3069         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
3070         parent.
3071
3072 2007-04-27  Wim Taymans  <wim@fluendo.com>
3073
3074         * gst/rtp/gstrtpilbcdepay.h:
3075         Fix mode property when specified as an arg.
3076
3077 2007-04-26  Edward Hervey  <edward@fluendo.com>
3078
3079         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3080         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3081         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3082         * docs/plugins/inspect/plugin-osxaudio.xml:
3083         Add documentation for osxaudio plugin.
3084
3085 2007-04-26  Wim Taymans  <wim@fluendo.com>
3086
3087         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
3088         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
3089         (gst_rtspsrc_open), (gst_rtspsrc_close),
3090         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
3091         (gst_rtspsrc_pause):
3092         * gst/rtsp/gstrtspsrc.h:
3093         Protect state changes with a lock.
3094
3095         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
3096         (parse_line):
3097         * gst/rtsp/rtspconnection.h:
3098         Remove some unused stuff.
3099
3100 2007-04-26  Wim Taymans  <wim@fluendo.com>
3101
3102         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
3103         Handle the case where there are exactly 0 bytes to read and the ioctl
3104         did not report an error. Fixes #433530.
3105
3106 2007-04-26  Wim Taymans  <wim@fluendo.com>
3107
3108         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
3109         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
3110         * gst/wavparse/gstwavparse.h:
3111         Apply DISCONT to buffers.
3112         Only apply timestamp to the first sample after a DISCONT, too many VBR
3113         files cause random jitter in the timestamps. Fixes #433119.
3114
3115 2007-04-25  Wim Taymans  <wim@fluendo.com>
3116
3117         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
3118         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
3119         (gst_rtp_dec_get_property):
3120         * gst/rtsp/gstrtpdec.h:
3121         Add dummy latency property to be backwards compat with rtpbin.
3122
3123         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
3124         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
3125         (gst_rtspsrc_stream_configure_transport),
3126         (gst_rtspsrc_parse_rtpinfo):
3127         * gst/rtsp/gstrtspsrc.h:
3128         Add latency property and configure in the session manager.
3129         Don't set invalid clock-base and seqnum-base on caps, some servers
3130         sometimes don't send them.
3131
3132 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
3133
3134         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
3135         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
3136           Double-check that RGB input caps are really RGBA caps (apparently
3137           the core doesn't always catch it if those caps aren't a subset of
3138           our template caps, also see #421543). Fixes #429319 in a way.
3139           Also, don't leak the pad template in the transform_caps function.
3140
3141         * tests/check/Makefile.am:
3142         * tests/check/elements/.cvsignore:
3143         * tests/check/elements/alphacolor.c: (setup_alphacolor),
3144         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
3145         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
3146         (GST_START_TEST), (alphacolor_suite):
3147           Add some basic unit tests for alphacolor.
3148
3149 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
3150
3151         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
3152           If we get a fatal flow return in the loop function, first post the
3153           error message and only then send the EOS event downstream, otherwise
3154           applications might get an eos message before the error message and
3155           think everything was ok (related to #429319).
3156
3157 2007-04-25  Wim Taymans  <wim@fluendo.com>
3158
3159         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
3160         Read the channel byte as an unsigned byte.
3161
3162 2007-04-25  Wim Taymans  <wim@fluendo.com>
3163
3164         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
3165         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
3166         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
3167         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
3168         (gst_rtp_gsm_depay_setcaps):
3169         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
3170         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
3171         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
3172         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
3173         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
3174         (gst_ilbc_depay_get_property):
3175         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
3176         * gst/rtp/gstrtpmp4adepay.c:
3177         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
3178         (gst_rtp_pcma_depay_setcaps):
3179         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
3180         (gst_rtp_pcmu_depay_setcaps):
3181         Make sure we configure the clock_rate in the baseclass in the setcaps
3182         function. Fixes #431282.
3183
3184 2007-04-25  Wim Taymans  <wim@fluendo.com>
3185
3186         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
3187         (gst_rtspsrc_stream_free), (request_pt_map),
3188         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
3189         * gst/rtsp/gstrtspsrc.h:
3190         Parse server address from SDP.
3191         Hook up a udpsink to send RTCP back to the server.
3192
3193         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3194         * gst/rtsp/rtsptransport.h:
3195         Add some docs.
3196
3197 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
3198
3199         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
3200           Make header field check conditional. Fixes #433135
3201
3202 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
3203
3204         * docs/plugins/Makefile.am:
3205         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3206         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3207         * docs/plugins/inspect/plugin-alphacolor.xml:
3208         * gst/alpha/Makefile.am:
3209         * gst/alpha/gstalphacolor.c:
3210         * gst/alpha/gstalphacolor.h:
3211           Add minimal docs blurb to alphacolor; split out headers into
3212           separate header file for gtk-doc.
3213
3214 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
3215
3216         * gst/debug/progressreport.c: (gst_progress_report_report):
3217           Don't try to post NULL message (in case we can't query upstream
3218           position or duration).
3219
3220 2007-04-18  Michael Smith  <msmith@fluendo.com>
3221
3222         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
3223         (gst_cutter_get_caps):
3224         * gst/cutter/gstcutter.h:
3225           Fix some of the most obvious bugs in cutter. Now doesn't leak
3226           everything if input is silent.
3227
3228 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
3229
3230         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
3231         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
3232         * gst/wavenc/gstwavenc.h:
3233         Wav apparently only supports width==GST_ROUND_UP(depth), everything
3234         else results in a invalid block align and invalid files.
3235
3236 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
3237
3238         Patch by: Snaik <snaik32 gmail com>
3239
3240         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
3241           Add missing break statement for BOX_HORIZONTAL case.
3242
3243 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3244
3245         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
3246
3247         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
3248         Use correct format strings for integer types.
3249
3250 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3251
3252         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
3253         (gst_wavparse_create_sourcepad):
3254         Use gst_riff_create_audio_template_caps () instead of the local caps.
3255         This makes updates of the local caps unecessary whenever libgstriff
3256         gets support for new formats.
3257
3258 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
3259
3260         Patch by: Brian Cameron  <brian.cameron at sun dot com>
3261
3262         * sys/sunaudio/gstsunaudio.c:
3263         * sys/sunaudio/gstsunaudiomixer.c:
3264         * sys/sunaudio/gstsunaudiomixer.h:
3265         * sys/sunaudio/gstsunaudiomixerctrl.c:
3266         * sys/sunaudio/gstsunaudiomixerctrl.h:
3267         * sys/sunaudio/gstsunaudiomixertrack.h:
3268         * sys/sunaudio/gstsunaudiosink.c:
3269         * sys/sunaudio/gstsunaudiosink.h:
3270         * sys/sunaudio/gstsunaudiosrc.c:
3271         * sys/sunaudio/gstsunaudiosrc.h:
3272           Fix and/or update copyright attributions (#430228).
3273
3274 2007-04-13  Wim Taymans  <wim@fluendo.com>
3275
3276         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3277         Fix docs.
3278
3279         * gst/rtsp/URLS:
3280         Add some more example urls.
3281
3282         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
3283         (gst_rtp_dec_chain_rtp):
3284         Better debugging.
3285
3286         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
3287         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
3288         (gst_rtspsrc_parse_rtpinfo):
3289         Remove unused code.
3290
3291 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
3292
3293         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
3294         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
3295         (gst_wavparse_stream_data):
3296           Relax the audio/mpeg caps again and add FIXME: comment.
3297
3298 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
3299
3300         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
3301         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
3302         (gst_wavparse_stream_data):
3303         * gst/wavparse/gstwavparse.h:
3304           More sanity check for the header fields. Fix type for 'rate' header
3305           field.
3306
3307 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
3308
3309         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
3310         (gst_icydemux_unicodify):
3311           If the metadata strings we get in the stream are not UTF-8, try to
3312           interpret them according to the character encodings specified in the
3313           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
3314           only fall back to locale/ISO-8859-1 if those aren't set or don't
3315           work. Should fix #428901.
3316
3317 2007-04-12  Wim Taymans  <wim@fluendo.com>
3318
3319         * gst/rtp/gstrtph264depay.c:
3320         Use the proper sync word for SPS and PPS.
3321
3322 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
3323
3324         * gst/rtp/Makefile.am:
3325         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
3326           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
3327         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
3328           Add a simple hashing implementation that we can use to generate
3329           a 24-bit ident value based on the codebooks for vorbis and theora.
3330         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
3331           gst_rtp_theora_pay_handle_buffer):
3332         * gst/rtp/gstrtpvorbisdepay.c
3333           (gst_rtp_vorbis_depay_parse_configuration,
3334           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
3335         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
3336           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
3337           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
3338           Use the hashing function, ensuring that the same codebooks result
3339           in the same ident and thus the same SDP description.
3340           Various log fixes/changes.
3341
3342 2007-04-12  Wim Taymans  <wim@fluendo.com>
3343
3344         Patch by: jerry tan <jerry dot tan at sun dot com>
3345
3346         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
3347         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
3348         application's responsibility to make sure it open the device once.
3349         Remove a careless error if AUDIODEV is set. Fixes #392620.
3350
3351 2007-04-12  Wim Taymans  <wim@fluendo.com>
3352
3353         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
3354         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
3355         * gst/rtsp/gstrtpdec.h:
3356         Make backward compat with rtpbin by adding the request-pt-map signals.
3357
3358         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
3359         (new_session_pad), (request_pt_map),
3360         (gst_rtspsrc_stream_configure_transport),
3361         (gst_rtspsrc_stream_configure_caps),
3362         (gst_rtspsrc_activate_streams):
3363         * gst/rtsp/gstrtspsrc.h:
3364         Implement request-pt-map signals instead of setting caps on the buffers
3365         for the session manager.
3366
3367 2007-04-11  Wim Taymans  <wim@fluendo.com>
3368
3369         * gst/udp/gstudp.c: (plugin_init):
3370         Register GstNetBuffer in plugin_init so that the type can be used from
3371         multiple threads without races.
3372
3373 2007-04-10  Wim Taymans  <wim@fluendo.com>
3374
3375         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
3376         (gst_rtp_amr_depay_process):
3377         Fix depayloader clock_rate and some cleanups.
3378
3379         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
3380         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
3381         * gst/rtp/gstrtph264depay.h:
3382         Don't push codec_data in the adapter because it might get flushed when
3383         we get a discont.
3384
3385         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
3386         Handle multiple AU per packet.
3387
3388         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
3389         (gst_rtp_sv3v_depay_plugin_init):
3390         Disable rank, this one does not work.
3391         Remove timestamping, base class does that.
3392
3393 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
3394
3395         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
3396           limit caps to the formats we announce in the template
3397
3398         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
3399         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
3400         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
3401           fix some crashers/asserts when dealing with broken files
3402
3403 2007-04-10  Wim Taymans  <wim@fluendo.com>
3404
3405         Patch by: Peter Kjellerstedt  <pkj at axis com>
3406
3407         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
3408         * gst/rtp/gstrtpL16depay.c:
3409         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
3410         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
3411         (gst_rtp_speex_depay_setcaps):
3412         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
3413         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
3414         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
3415         Fix some compiler warnings. Fixes #428182.
3416
3417 2007-04-06  Wim Taymans  <wim@fluendo.com>
3418
3419         * gst/rtsp/Makefile.am:
3420         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
3421         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
3422         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
3423         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
3424         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
3425         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
3426         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
3427         (create_rtcp), (gst_rtp_dec_request_new_pad),
3428         (gst_rtp_dec_release_pad):
3429         * gst/rtsp/gstrtpdec.h:
3430         * gst/rtsp/gstrtsp.c: (plugin_init):
3431         Morph RTPDec into something compatible with RTPBin as a fallback.
3432         Various other style fixes.
3433
3434         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
3435         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
3436         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
3437         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
3438         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
3439         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
3440         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
3441         * gst/rtsp/gstrtspsrc.h:
3442         Implement RTPBin session manager handling.
3443         Don't try to add empty properties to caps.
3444         Implement fallback session manager, handling.
3445         Don't combine errors from RTCP streams, just ignore them.
3446
3447         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
3448         * gst/rtsp/rtsptransport.h:
3449         Implement fallback session manager.
3450         Make RTPBin the default one when available.
3451
3452 2007-04-05  Wim Taymans  <wim@fluendo.com>
3453
3454         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
3455         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
3456         This element is ready to be autoplugged.
3457
3458 2007-04-05  Julien MOUTTE  <julien@moutte.net>
3459
3460         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
3461         Don't leave the offsets defined by upstream element on the
3462         compressed data buffer we are pushing downstream. Make them
3463         GST_BUFFER_OFFSET_NONE.
3464
3465 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
3466
3467         * gst/avi/README:
3468         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
3469         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
3470         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
3471         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
3472         (gst_avi_demux_calculate_durations_from_index),
3473         (gst_avi_demux_stream_header_push),
3474         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
3475         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
3476           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
3477
3478 2007-04-03  Wim Taymans  <wim@fluendo.com>
3479
3480         * gst/smpte/barboxwipes.c:
3481         Fix error as spotted by Snaik <snaik32 at gmail dot com>
3482
3483 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
3484
3485         * gst/wavparse/gstwavparse.c:
3486         Support audio/x-raw-float in wav files. This only works with
3487         plugins-base CVS, using an older version doesn't have any
3488         disadvantages though.
3489
3490 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
3491
3492         * configure.ac:
3493         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
3494         (gst_au_parse_parse_header), (gst_au_parse_chain):
3495         * gst/auparse/gstauparse.h:
3496         Revert last change as we don't want plugins-good to depend on
3497         plugins-base CVS now.
3498
3499 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
3500
3501         * configure.ac:
3502         Require gst-plugins-base CVS for audioconvert with non-native
3503         float support and width/depth fix in libgstriff.
3504
3505         Patch by: René Stadler <mail at renestadler dot de>
3506
3507         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
3508         (gst_au_parse_parse_header), (gst_au_parse_chain):
3509         * gst/auparse/gstauparse.h:
3510         Don't swap the floats ourself if they're not in native endianness.
3511         Instead let audioconvert handle this. Fixes #339838.
3512
3513 2007-03-29  Wim Taymans  <wim@fluendo.com>
3514
3515         * gst/rtp/gstasteriskh263.h:
3516         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
3517         (gst_rtp_h263p_depay_change_state):
3518         * gst/rtp/gstrtph263pdepay.h:
3519         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
3520         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
3521         (gst_rtp_h264_depay_change_state):
3522         * gst/rtp/gstrtph264depay.h:
3523         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
3524         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
3525         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
3526         Flush adapter on disconts.
3527
3528 2007-03-29  Wim Taymans  <wim@fluendo.com>
3529
3530         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
3531         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
3532         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
3533         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
3534         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
3535         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
3536         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
3537         (gst_rtp_mp4v_depay_process):
3538         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
3539         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
3540         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
3541         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
3542         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
3543         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
3544         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
3545         Use more efficient adapter and rtpbuffer methods when possible.
3546
3547 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
3548
3549         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
3550         (gst_wavenc_sink_setcaps):
3551         Correctly handle width!=depth input.
3552         * gst/wavparse/gstwavparse.c:
3553         Already export in the caps that width==8 uses unsigned samples and
3554         everything else uses signed samples.
3555
3556 2007-03-29  Wim Taymans  <wim@fluendo.com>
3557
3558         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
3559
3560         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
3561         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
3562         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
3563         (gst_dynudpsink_close):
3564         * gst/udp/gstdynudpsink.h:
3565         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3566         (gst_udpsrc_create), (gst_udpsrc_set_property),
3567         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3568         * gst/udp/gstudpsrc.h:
3569         Rework the socket allocation a bit based on the sockfd argument so that
3570         it becomes usable.
3571         Add a closefd property to instruct the udp elements to close the custom
3572         file descriptors when going to READY. Fixes #423304.
3573         API:GstUDPSrc::closefd property
3574         API:GstDynUDPSink::closefd property
3575
3576 2007-03-29  Wim Taymans  <wim@fluendo.com>
3577
3578         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
3579
3580         * gst/rtp/Makefile.am:
3581         * gst/rtp/gstrtp.c: (plugin_init):
3582         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
3583         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
3584         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
3585         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
3586         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
3587         (gst_rtp_h264_pay_plugin_init):
3588         * gst/rtp/gstrtph264pay.h:
3589         Added H264 payloader. Fixes #423782.
3590
3591         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
3592         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
3593         Small fixes.
3594
3595 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
3596
3597         * gst/wavparse/gstwavparse.c:
3598         Actually support depths from 1 to 32, not only 8 to 32.
3599
3600 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
3601
3602         * gst/wavparse/gstwavparse.c:
3603         Add support for wav files containing audio/x-raw-int with random
3604         depths between 1 and 32 bits.
3605
3606 2007-03-28  Wim Taymans  <wim@fluendo.com>
3607
3608         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
3609
3610         * gst/rtp/Makefile.am:
3611         * gst/rtp/gstrtp.c: (plugin_init):
3612         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
3613         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
3614         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
3615         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
3616         (gst_rtp_mp4a_depay_get_property),
3617         (gst_rtp_mp4a_depay_change_state),
3618         (gst_rtp_mp4a_depay_plugin_init):
3619         * gst/rtp/gstrtpmp4adepay.h:
3620         Added MP4A-LATM depayloader. Fixes #417792.
3621
3622         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
3623         (gst_rtp_mp4v_depay_process):
3624         Fixup depayloader, setting codec_data, using more efficient adaptor and
3625         rtpbuffer handling.
3626
3627         * gst/rtsp/URLS:
3628         Add url to test above.
3629
3630 2007-03-25  Wim Taymans  <wim@fluendo.com>
3631
3632         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
3633         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
3634         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
3635         (gst_rtspsrc_media_to_caps),
3636         (gst_rtspsrc_stream_configure_transport),
3637         (gst_rtspsrc_stream_configure_caps),
3638         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
3639         * gst/rtsp/gstrtspsrc.h:
3640         Handle default clock-rates for static payload types, rearrange stuff so
3641         that the rtpmap field in the sdp can override the defaults.
3642         Parse RTP-Info field to get the seqnum and timebase fields that should
3643         go in the caps.
3644         Delay configuring caps after we got the RTP-Info from the PLAY reply from
3645         the server. 
3646
3647 2007-03-22  Wim Taymans  <wim@fluendo.com>
3648
3649         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
3650
3651         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
3652         Accept complex pipeline descriptions as an audio profile instead of just
3653         a single element. Fixes #420658.
3654
3655 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
3656
3657         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
3658           Rename registered type in preparation of GstTagDemux moving to
3659           -base at some point in the future.
3660
3661 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
3662
3663         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
3664           Streaming mode fixes: don't unref buffer we don't own any longer;
3665           remove bogus adapter flush. Fixes #419338.
3666
3667 2007-03-17  David Schleef  <ds@schleef.org>
3668
3669         * REQUIREMENTS: Change the format to key/value, add a bunch of
3670           information, remove a bunch of requirements that are for
3671           other GStreamer packages.
3672
3673 2007-03-17  David Schleef  <ds@schleef.org>
3674
3675         * REQUIREMENTS: Fix a few things.  This file really needs a
3676         good once-over.
3677
3678 2007-03-15  Edward Hervey  <edward@fluendo.com>
3679
3680         * sys/Makefile.am:
3681         Don't forget to distribute the sys/osxaudio/ directory.
3682
3683 2007-03-15  Edward Hervey  <edward@fluendo.com>
3684
3685         * configure.ac:
3686         * sys/Makefile.am:
3687         * sys/osxaudio/Makefile.am:
3688         * sys/osxaudio/gstosxaudio.c:
3689         * sys/osxaudio/gstosxaudiosink.c:
3690         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
3691         (gst_osx_audio_sink_getcaps),
3692         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
3693         * sys/osxaudio/gstosxaudiosrc.c:
3694         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
3695         (gst_osx_audio_src_create_ringbuffer):
3696         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
3697         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
3698         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
3699         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
3700         * sys/osxaudio/gstosxringbuffer.h:
3701         Activate osxaudio in gst-plugins-good with proper build setup.
3702         Add inlined documentation.
3703         Fix debug statements
3704         Fix ringbuffer when pausing.
3705         Fixes #323471
3706
3707 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
3708         * gst/rtp/gstrtppcmapay.c:
3709         * gst/rtp/gstrtppcmapay.h:
3710         * gst/rtp/gstrtppcmupay.c:
3711         * gst/rtp/gstrtppcmupay.h:
3712         Ported mulaw and alaw payloaders to use new base class
3713
3714 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
3715
3716         * po/af.po:
3717         * po/az.po:
3718         * po/cs.po:
3719         * po/en_GB.po:
3720         * po/it.po:
3721         * po/nl.po:
3722         * po/or.po:
3723         * po/sq.po:
3724         * po/sr.po:
3725         * po/sv.po:
3726         * po/uk.po:
3727         * po/vi.po:
3728           Update translations.
3729
3730 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
3731
3732         * configure.ac:
3733           Fix string replace error (AG_AG_GST_* => AG_GST_*).
3734
3735 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
3736
3737         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
3738           Fix handling of -1 values for start and stop values when seeking,
3739           and SEEK_CUR+SEEK_END here as well.
3740
3741 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
3742
3743         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
3744           Fix handling of -1 values for start and stop values when seeking, 
3745           and SEEK_CUR+SEEK_END.
3746
3747 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
3748
3749         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
3750           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
3751           the image format a variable-length NUL-terminated string; in
3752           versions before that the image format is a fixed-length string of
3753           3 characters (see #348644 for a sample tag).
3754           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
3755
3756 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
3757
3758         * win32/MANIFEST:
3759         Add new project files to MANIFEST.
3760         * win32/vs6/libgstaudiofx.dsp:
3761         * win32/vs6/libgstrtp.dsp:
3762         * win32/vs6/libgstrtsp.dsp:
3763         Update project files.
3764         
3765 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
3766
3767         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
3768         (gst_avi_demux_parse_index):
3769         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
3770         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
3771           Printf format fixes; also add some missing quotes in translated
3772           strings. Fixes #416728 and #416727.
3773
3774 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
3775
3776         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
3777           Tim and I can't think of any reason the child audio sink needs to 
3778           be set back to NULL after successfully determining that it can 
3779           reach READY - it gets immediately set back to READY by the caller
3780           anyway, causing an unnecessary close/open of any audio devices
3781           involved.
3782
3783 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
3784
3785         * po/LINGUAS:
3786         * po/ja.po:
3787           Add ja.po file from #377306.
3788
3789 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
3790
3791         * sys/sunaudio/gstsunaudio.c: (plugin_init):
3792         * sys/sunaudio/gstsunaudiomixertrack.c:
3793         (gst_sunaudiomixer_track_new):
3794           Actually translate sunaudio mixer track labels instead of just
3795           marking the strings as translatable (#377306); clean up weird
3796           label string mapping code that serves no apparent purpose. Also
3797           set the 'untranslated-label' property when creating mixer tracks
3798           if the GstMixerTrack base class supports this.
3799
3800         * tests/check/Makefile.am:
3801         * tests/check/elements/.cvsignore:
3802         * tests/check/elements/sunaudio.c: (GST_START_TEST),
3803         (sunaudio_suite):
3804           Very minimalistic unit test for sunaudiomixer element (compiles, but not
3805           actually tested on a system where sunaudiomixer is available).
3806
3807 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
3808
3809         * tests/check/Makefile.am:
3810         Re-enable the states test and see if it works on the buildbots.
3811
3812 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
3813
3814         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
3815         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
3816         (gst_dvdec_change_state):
3817         * ext/dv/gstdvdec.h:
3818         Infer pixel-aspect-ratio from the video frame format if it isn't
3819         provided by the container, as happens when playing DV from AVI
3820         or Quicktime containers.
3821
3822         Patch by: Wim Taymans <wim@fluendo.com>
3823         Fixes #380944
3824
3825 2007-03-09  Wim Taymans  <wim@fluendo.com>
3826
3827         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
3828         When activated, remove the udpsrc timeout, we have dataflow and timeouts
3829         will later be handled by the jitterbuffer.
3830
3831 2007-03-09  Wim Taymans  <wim@fluendo.com>
3832
3833         * ext/taglib/gstid3v2mux.cc:
3834         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
3835         Fixes #414496.
3836         
3837         Patch by: Alex Lancaster <alexl at users sourceforge net>
3838
3839 2007-03-09  Wim Taymans  <wim@fluendo.com>
3840
3841         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
3842         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
3843         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
3844         (gst_avi_demux_chain):
3845         Fix stream position reporting after a seek. Fixes #416445.
3846
3847 2007-03-08  Wim Taymans  <wim@fluendo.com>
3848
3849         Patch by: René Stadler <mail at renestadler dot de>
3850
3851         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
3852         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
3853         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
3854         Make avidemux accept optional header chunks in any order.
3855         Fixes #415446.
3856
3857 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
3858
3859         * tests/check/Makefile.am:
3860         Disable the states check until the remaining Valgrind errors
3861         are fixed or suppressed.
3862
3863 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
3864
3865         * tests/check/elements/.cvsignore:
3866           Add audiodynamic check to .cvsignore
3867
3868 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
3869
3870         reviewed by: Stefan Kost  <ensonic@users.sf.net>
3871
3872         * gst/audiofx/Makefile.am:
3873         * gst/audiofx/audiodynamic.c:
3874         (gst_audio_dynamic_characteristics_get_type),
3875         (gst_audio_dynamic_mode_get_type),
3876         (gst_audio_dynamic_set_process_function),
3877         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
3878         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
3879         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
3880         (gst_audio_dynamic_transform_hard_knee_compressor_int),
3881         (gst_audio_dynamic_transform_hard_knee_compressor_float),
3882         (gst_audio_dynamic_transform_soft_knee_compressor_int),
3883         (gst_audio_dynamic_transform_soft_knee_compressor_float),
3884         (gst_audio_dynamic_transform_hard_knee_expander_int),
3885         (gst_audio_dynamic_transform_hard_knee_expander_float),
3886         (gst_audio_dynamic_transform_soft_knee_expander_int),
3887         (gst_audio_dynamic_transform_soft_knee_expander_float),
3888         (gst_audio_dynamic_transform_ip):
3889         * gst/audiofx/audiodynamic.h:
3890         * gst/audiofx/audiofx.c: (plugin_init):
3891         Add new audiodynamic element which can act as a compressor or
3892         expander. Supported are hard-knee and soft-knee operation modes with
3893         user-specified ratio and threshold.
3894         Attack and release parameters are not yet implemented but will follow.
3895         * docs/plugins/Makefile.am:
3896         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3897         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3898         * docs/plugins/gst-plugins-good-plugins.args:
3899         * docs/plugins/inspect/plugin-audiofx.xml:
3900         Integrate audiodynamic into the docs.
3901         * tests/check/Makefile.am:
3902         * tests/check/elements/audiodynamic.c: (setup_dynamic),
3903         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
3904         Add unit test for audiodynamic.
3905
3906 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
3907
3908         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
3909         Free handles that we allocated when exiting via the error paths.
3910
3911 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
3912
3913         * gst/level/gstlevel.c: (gst_level_class_init),
3914         (gst_level_set_caps), (gst_level_start), (gst_level_event),
3915         (gst_level_transform_ip):
3916         * gst/level/gstlevel.h:
3917           Resolve message timestamps against the playback segment.
3918
3919 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
3920
3921         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
3922         (gst_id3demux_sink_activate):
3923           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
3924           caps passed to it (previously one code path assumed it took ownership
3925           while another one assumed it didn't, while in fact it sometimes did and
3926           sometimes didn't ...).
3927
3928         * configure.ac:
3929         * tests/files/Makefile.am:
3930         * tests/files/id3-407349-1.tag:
3931         * tests/files/id3-407349-2.tag:
3932           Add directory where data for unit tests can be stored.
3933
3934         * tests/Makefile.am:
3935         * tests/check/Makefile.am:
3936         * tests/check/elements/.cvsignore:
3937         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
3938         (read_tags_from_file), (run_check_for_file),
3939         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
3940           Add unit test for id3demux, and in particular for bug #407349. Only
3941           testing pull-mode for now; push mode doesn't work yet because the test
3942           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
3943
3944 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
3945
3946         * tests/check/Makefile.am:
3947           Add missing backslash at end of line.
3948
3949 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
3950
3951         Trigger rebuild.
3952
3953 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
3954
3955         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
3956         * gst/id3demux/id3tags.h:
3957         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
3958         (parse_obsolete_tdat_frame):
3959           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
3960           the four-digit number will be interpreted as a year, whereas it is
3961           month and day in DDMM format. Instead, parse TDAT frames and fix up
3962           the date in the GST_TAG_DATE tag later if we also extracted a year.
3963           Fixes #407349.
3964
3965 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
3966
3967         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
3968         (gst_switch_commit_new_kid):
3969         Fix up the dispose logic so it doesn't leak, and fix setting of 
3970         the child state so that we don't set a child to our current state 
3971         just as we are changing it to something else.
3972
3973 2007-03-06  Wim Taymans  <wim@fluendo.com>
3974
3975         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
3976         (gst_goom_chain):
3977         * gst/goom/gstgoom.h:
3978         Document, fix and improve goom adapter behaviour.
3979         Fixes #407006.
3980
3981 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
3982
3983         * ext/esd/esdsink.c: (gst_esdsink_open):
3984         Unref static pad template after using it.
3985
3986 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
3987
3988         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
3989         (gst_switch_commit_new_kid):
3990         Fix up the reference counting of the child elements.
3991
3992 2007-03-05  Wim Taymans  <wim@fluendo.com>
3993
3994         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
3995         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
3996         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
3997         Fix encoding-name case.
3998
3999 2007-03-05  Wim Taymans  <wim@fluendo.com>
4000
4001         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
4002         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
4003         (gst_rtp_speex_depay_process):
4004         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
4005         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
4006         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
4007         (gst_rtp_speex_pay_change_state):
4008         * gst/rtp/gstrtpspeexpay.h:
4009         Fix speex (de)payloader. Fixes #358040.
4010
4011 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
4012
4013         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
4014         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
4015         Install fakesink in NULL by fixing some broken logic. This obviates
4016         the need to manually set _IS_SINK.
4017         Add some comments and remove a little cruft while I'm at it.
4018
4019 2007-03-05  Wim Taymans  <wim@fluendo.com>
4020
4021         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
4022         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
4023
4024 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
4025
4026         * po/POTFILES.in:
4027           Update.
4028
4029 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4030
4031         * tests/check/Makefile.am:
4032         Gah! Also disable gconfvideosink from the tests, otherwise
4033         it will instantiate autovideosink, and dfbvideosink and
4034         leak on the buildbots.
4035
4036 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4037
4038         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
4039         (gst_cdio_cdda_src_finalize):
4040         Make sure we always destroy our libcdio handle.
4041
4042 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4043
4044         * tests/check/Makefile.am:
4045         Disable autovideosink so the buildbots don't barf over memory
4046         leaked in the directfb sink.
4047
4048 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4049
4050         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
4051         Chain up in dispose
4052
4053 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4054
4055         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
4056         (gst_multipart_find_pad_by_mime):
4057         Use gst_pad_new_from_static_template instead of
4058         static_pad_template_get+pad_new.
4059
4060 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4061
4062         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
4063         Catch the case where no clock has been set.
4064
4065 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4066
4067         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
4068         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
4069         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
4070         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
4071         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
4072         (gst_gconf_audio_src_finalize), (do_toggle_element):
4073         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
4074         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
4075         (do_toggle_element):
4076         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
4077         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
4078         (gst_gconf_video_src_finalize), (do_toggle_element):
4079         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
4080         (gst_switch_sink_reset), (gst_switch_sink_set_child):
4081         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
4082         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
4083         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
4084         (gst_shout2send_init), (gst_shout2send_finalize):
4085         * gst/debug/testplugin.c: (gst_test_class_init),
4086         (gst_test_finalize):
4087         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
4088         (gst_flxdec_dispose):
4089         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
4090         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
4091         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4092         (gst_rtspsrc_finalize):
4093         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
4094         * gst/rtsp/rtspextwms.h:
4095         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
4096         (gst_smpte_finalize):
4097         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
4098         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
4099         (gst_udpsink_finalize):
4100         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
4101         (gst_wavparse_sink_activate):
4102         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
4103         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
4104         (gst_oss_src_finalize):
4105         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
4106         * sys/v4l2/gstv4l2object.h:
4107         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4108         (gst_v4l2src_finalize):
4109         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
4110
4111         Fix a bunch of leaks shown by the newly-added states test.
4112
4113 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
4114
4115         * ext/dv/gstdvdec.c: (gst_dvdec_init):
4116         Use gst_pad_new_from_static_template instead of 
4117         static_pad_template_get+pad_new.
4118
4119 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4120
4121         Patch by: Loïc Minier <lool+gnome at via ecp fr>
4122
4123         * ext/libcaca/Makefile.am:
4124         * gst/debug/Makefile.am:
4125           Don't mix tabs and spaces (#414168).
4126
4127 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
4128
4129         * tests/check/generic/.cvsignore:
4130           Ignore files to please buildbot.
4131
4132 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
4133
4134         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
4135         (gst_wavparse_stream_data):
4136           Unbreak my previous commit (swapped nominator & denominator). Tim,
4137           thanks for spotting.
4138
4139 2007-03-02  Wim Taymans  <wim@fluendo.com>
4140
4141         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
4142         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
4143         (gst_cdio_cdda_src_finalize):
4144         Small code cleanups.
4145         Don't use pad_alloc as the base class cannot deal with the error codes.
4146
4147 2007-03-02  Wim Taymans  <wim@fluendo.com>
4148
4149         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
4150         (gst_udpsrc_create):
4151         Fix doc.
4152
4153 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
4154
4155         Patch by: René Stadler <mail@renestadler.de>
4156
4157         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
4158         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
4159         (gst_wavparse_stream_data):
4160           Handle rounding better to not drop last sample frame. Fixes #356692
4161
4162 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
4163
4164         * tests/check/Makefile.am:
4165         Disable cacasink from the states check too - it also calls exit(1)
4166         on us when it can't find a terminal to talk to.
4167
4168 2007-03-02  Wim Taymans  <wim@fluendo.com>
4169
4170         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4171
4172         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
4173         (gst_udpsrc_create), (gst_udpsrc_set_property),
4174         (gst_udpsrc_get_property):
4175         * gst/udp/gstudpsrc.h:
4176         Add support to strip proprietary headers. Fixes #350296.
4177
4178 2007-03-02  Wim Taymans  <wim@fluendo.com>
4179
4180         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
4181         Fix compilation.
4182
4183 2007-03-02  Wim Taymans  <wim@fluendo.com>
4184
4185         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4186
4187         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
4188         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
4189         (gst_rtp_mp2t_depay_set_property),
4190         (gst_rtp_mp2t_depay_get_property):
4191         * gst/rtp/gstrtpmp2tdepay.h:
4192         Add support to strip off proprietary headers. Fixes #350278.
4193
4194 2007-03-02  Wim Taymans  <wim@fluendo.com>
4195
4196         * ext/hal/hal.c:
4197         Fix compilation.
4198
4199 2007-03-02  Wim Taymans  <wim@fluendo.com>
4200
4201         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
4202         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
4203         (gst_sunaudiosrc_open):
4204         * sys/sunaudio/gstsunaudiosrc.h:
4205         Remove device-name from GstSunAudioSrc. Fixes #412597.
4206
4207 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
4208
4209         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
4210         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
4211         Having NULL as UDI previously selected the default sink/src. Change
4212         this back but mention it in the debug output.
4213         * ext/hal/hal.c: (gst_hal_get_alsa_element),
4214         (gst_hal_get_oss_element), (gst_hal_get_string),
4215         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
4216         (gst_hal_get_audio_src):
4217         * ext/hal/hal.h:
4218         Refactor a bit, check all error conditions, greatly improve debugging
4219         and fix some possible memory leaks. Also implement OSS support
4220         and allow specifying an UDI that points to a real device. For this the
4221         child device which supports ALSA (preferred) or OSS is used.
4222         As a side effect this makes it impossible now to get a alsasink in
4223         halaudiosrc and a alsasrc in halaudiosink.
4224
4225 2007-03-01  Wim Taymans  <wim@fluendo.com>
4226
4227         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
4228         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
4229         Errors from the udp sources are not fatal unless all of them are in
4230         error.
4231
4232 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
4233
4234         * tests/check/Makefile.am:
4235         Disable aasink in the states test. I suspect this is the element that
4236         is calling exit(1) when it can't proceed.
4237
4238 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
4239
4240         * tests/check/Makefile.am:
4241         Draw plugins in from the build tree sys/ dir, rather than picking
4242         up the already installed versions.
4243
4244 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4245
4246         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
4247         Error out correctly when getting xcontext fails.
4248
4249 2007-03-01  Wim Taymans  <wim@fluendo.com>
4250
4251         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
4252         Make state change to PAUSED NO_PREROLL because that's what it will be in
4253         the future and rtspsrc relies on it.
4254
4255         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
4256         (gst_rtspsrc_change_state):
4257         Don't error out when we don't get an error from the state change
4258         function.
4259
4260 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
4261
4262         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
4263         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
4264           Check if the device UDI is set before trying to query HAL
4265           about it and give a useful error message if it wasn't set.
4266         * ext/hal/hal.c: (gst_hal_get_string):
4267           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
4268           gives an assertion failure in D-Bus when running with
4269           DBUS_FATAL_WARNINGS=1.
4270
4271 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4272
4273         * configure.ac:
4274           Convert to new AG_GST style.
4275
4276 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4277
4278         * tests/check/Makefile.am:
4279         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
4280           add test for states
4281
4282 2007-02-28  Wim Taymans  <wim@fluendo.com>
4283
4284         * tests/check/elements/.cvsignore:
4285         Add new videofilter check to .cvsignore.
4286
4287 2007-02-28  Wim Taymans  <wim@fluendo.com>
4288
4289         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
4290         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
4291         (gst_avi_demux_loop), (gst_avi_demux_chain):
4292         Fix combined flow return. Fixes #412608.
4293
4294 2007-02-28  Wim Taymans  <wim@fluendo.com>
4295
4296         * gst/videofilter/Makefile.am:
4297         Dist header..
4298
4299 2007-02-28  Wim Taymans  <wim@fluendo.com>
4300
4301         * gst/videofilter/gstgamma.h:
4302         Add header too.
4303
4304 2007-02-28  Wim Taymans  <wim@fluendo.com>
4305
4306         Patch by: Mark Nauwelaerts <manauw at skynet be>
4307
4308         * gst/videofilter/Makefile.am:
4309         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
4310         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
4311         (gst_gamma_get_property), (gst_gamma_calculate_tables),
4312         (oil_tablelookup_u8), (gst_gamma_set_caps),
4313         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
4314         Port gamma filter to 0.10. Fixes #412704.
4315
4316         * tests/check/Makefile.am:
4317         * tests/check/elements/videofilter.c: (setup_filter),
4318         (cleanup_filter), (check_filter), (GST_START_TEST),
4319         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
4320         Add unit tests for videofilters.
4321
4322 2007-02-28  Wim Taymans  <wim@fluendo.com>
4323
4324         * gst/rtsp/URLS:
4325         Add another interesting test url.
4326
4327         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
4328         Don't allow getting header fields from data packets.
4329
4330 2007-02-28  Michael Smith  <msmith@fluendo.com>
4331
4332         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
4333         (gst_shout2send_init), (gst_shout2send_start),
4334         (gst_shout2send_set_property), (gst_shout2send_get_property):
4335         * ext/shout2/gstshout2.h:
4336           Add a property for username.
4337
4338 2007-02-27  Christian Schallerr <christian@fluendo.com>
4339
4340         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
4341
4342 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
4343
4344         * gst/rtsp/Makefile.am:
4345         Fix make check too.
4346
4347 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
4348
4349         * gst/rtsp/base64.c: (util_base64_encode):
4350         * gst/rtsp/base64.h:
4351         Commit missing files for base64 encoding.
4352
4353 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
4354
4355         Patch by: Loïc Minier <lool+gnome at via ecp fr>
4356
4357         * configure.ac:
4358         * ext/annodex/Makefile.am:
4359         * ext/jpeg/Makefile.am:
4360         * ext/speex/Makefile.am:
4361         * gst/alpha/Makefile.am:
4362         * gst/cutter/Makefile.am:
4363         * gst/debug/Makefile.am:
4364         * gst/effectv/Makefile.am:
4365         * gst/goom/Makefile.am:
4366         * gst/level/Makefile.am:
4367         * gst/smpte/Makefile.am:
4368         * gst/videofilter/Makefile.am:
4369           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
4370
4371 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
4372
4373         * gst/rtsp/Makefile.am:
4374         * gst/rtsp/rtspconnection.c: (append_auth_header),
4375         (rtsp_connection_send), (rtsp_connection_set_auth):
4376         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
4377         from icecast to replace it. Relicensed from GPL courtesy of Mike
4378         Smith.
4379
4380 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
4381
4382         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
4383         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
4384         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
4385         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
4386         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
4387         (gst_rtspsrc_uri_set_uri):
4388         * gst/rtsp/gstrtspsrc.h:
4389         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
4390         (append_auth_header), (rtsp_connection_send),
4391         (rtsp_connection_free), (rtsp_connection_set_auth):
4392         * gst/rtsp/rtspconnection.h:
4393         * gst/rtsp/rtspdefs.h:
4394         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
4395         * gst/rtsp/rtspurl.h:
4396
4397         Implement simple Basic Authentication support so that urls like
4398         rtsp://user:pass@hostname/rtspstream work on hosts that require
4399         authentication.
4400
4401 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
4402
4403         * sys/v4l2/gstv4l2object.c:
4404         * sys/v4l2/gstv4l2tuner.c:
4405         * sys/v4l2/v4l2_calls.c:
4406         Fix segfault when oppening a radio device.
4407         
4408 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
4409
4410         * gst/level/gstlevel.c: (gst_level_set_caps),
4411         (gst_level_transform_ip):
4412         * sys/v4l2/README:
4413         * tests/check/elements/level.c: (GST_START_TEST):
4414           Fix level for multi-channel case.
4415
4416 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
4417
4418         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
4419         (gst_level_transform_ip):
4420         * gst/level/gstlevel.h:
4421           Use function pointer for process function and add process functions
4422           for float audio.
4423
4424 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
4425
4426         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
4427         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
4428         (gst_v4l2src_capture_init):
4429           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
4430           fixes #407369
4431
4432 2007-02-18  Wim Taymans  <wim@fluendo.com>
4433
4434         * gst/rtp/Makefile.am:
4435         * gst/rtp/gstrtp.c: (plugin_init):
4436         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
4437         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
4438         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
4439         (gst_rtp_mp2t_pay_plugin_init):
4440         * gst/rtp/gstrtpmp2tpay.h:
4441         Added simple mpeg transport stream payloader.
4442
4443 2007-02-16  Wim Taymans  <wim@fluendo.com>
4444
4445         * gst/rtsp/URLS:
4446         Add example H264 rtsp url.
4447
4448         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
4449         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
4450         Don't convert values to lowercase or we might mess up base64 encoded
4451         properties.
4452
4453 2007-02-16  Wim Taymans  <wim@fluendo.com>
4454
4455         * gst/rtp/README:
4456         Fix case of string params.
4457
4458         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4459         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
4460         Fix depayloader, support more packet types.
4461         Add sync codes to make sure the packetizer can do its job.
4462
4463         * gst/rtp/gstrtpmp4gdepay.c:
4464         * gst/rtp/gstrtpmp4gpay.c:
4465         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
4466         Fix caps case again.
4467
4468 2007-02-15  Wim Taymans  <wim@fluendo.com>
4469
4470         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4471         Set right caps on output buffers.
4472
4473 2007-02-14  Wim Taymans  <wim@fluendo.com>
4474
4475         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
4476         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
4477         Clear stack allocated SDPMedia struct before calling _init() on it.
4478         Clarify this in the docs as well.
4479
4480 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
4481
4482         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
4483         (do_change_child):
4484         Don't reset the profile when going switching states, as it makes
4485         the element non-reusable.
4486
4487 2007-02-14  Wim Taymans  <wim@fluendo.com>
4488
4489         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
4490         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
4491         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
4492         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
4493         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
4494         (sdp_parse_line):
4495         * gst/rtsp/sdpmessage.h:
4496         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
4497         Fix memory management of SDP messages. Fixes #407793.
4498
4499 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
4500
4501         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
4502
4503         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
4504         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
4505
4506 2007-02-14  Wim Taymans  <wim@fluendo.com>
4507
4508         Patch by: jp.liu <jp_liu at astrocom dot cn>
4509
4510         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
4511         Fix parsing of password field in url. Fixes #407797.
4512
4513 2007-02-14  Wim Taymans  <wim@fluendo.com>
4514
4515         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
4516         (gst_wavparse_reset), (gst_wavparse_init),
4517         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
4518         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
4519         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
4520         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
4521         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
4522         (gst_wavparse_loop), (gst_wavparse_chain),
4523         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
4524         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
4525         (plugin_init):
4526         * gst/wavparse/gstwavparse.h:
4527         Update docs.
4528         Use boilerplate.
4529         Various code cleanups.
4530         When the bitrate is not known (bps == 0 or compressed formats) let
4531         downstream element guestimate the duration and position and don't
4532         generate timestamps or durations. Fixes #405213.
4533         Fix EOS and ERROR conditions in chain mode, we just need to forward the
4534         error flowreturn upstream.
4535
4536 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
4537
4538         * ext/gconf/Makefile.am:
4539         * ext/gconf/gconf.c: (gst_gconf_get_string),
4540         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
4541         (gst_gconf_render_bin_with_default):
4542         * ext/gconf/gconf.h:
4543         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
4544         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
4545         (gst_gconf_audio_sink_dispose), (do_change_child),
4546         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
4547         (cb_change_child), (gst_gconf_audio_sink_change_state):
4548         * ext/gconf/gstgconfaudiosink.h:
4549         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
4550         (gst_switch_sink_class_init), (gst_switch_sink_reset),
4551         (gst_switch_sink_init), (gst_switch_sink_dispose),
4552         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
4553         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
4554         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
4555         * ext/gconf/gstswitchsink.h:
4556         * gst/autodetect/gstautoaudiosink.c:
4557         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
4558         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
4559         (gst_auto_audio_sink_detect):
4560         * gst/autodetect/gstautovideosink.c:
4561         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
4562         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
4563         (gst_auto_video_sink_detect):
4564         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
4565         and a child that implements the GConf key monitoring. The end goal of
4566         this is an audio sink that can be changed on the fly, but at the 
4567         moment it still only changes on the next READY transition.
4568
4569 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
4570
4571         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
4572         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
4573         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
4574         (gst_avi_demux_calculate_durations_from_index),
4575         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
4576         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
4577         (gst_avi_demux_loop):
4578           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
4579
4580 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
4581
4582         * configure.ac:
4583         * docs/plugins/Makefile.am:
4584           Add crossreferences to glib/gobject/gstream docs.
4585
4586 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4587
4588         * gst/monoscope/Makefile.am:
4589         * gst/monoscope/gstmonoscope.c:
4590           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
4591           (but no LIBS, since we only use defines from the headers).
4592
4593 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4594
4595         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
4596
4597         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
4598         (gst_wavparse_stream_data):
4599           Fix massive memory leak when operating in streaming mode due to
4600           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
4601           Fixes #407057.
4602
4603 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
4604
4605         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
4606         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
4607         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
4608         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
4609         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
4610         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
4611         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
4612         (gst_avi_demux_calculate_durations_from_index),
4613         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
4614         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
4615         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
4616         * gst/avi/gstavidemux.h:
4617           Save some memory (8%) by repacking the index entry structure (more to
4618           come). Add more FIXMEs to questionable parts.
4619
4620 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
4621
4622         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
4623         (gst_v4l2src_get_caps):
4624         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
4625         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
4626         (gst_v4l2src_capture_init):
4627           More FIXME comments and messaging changes.
4628
4629 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
4630
4631         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
4632         (gst_goom_change_state):
4633         * gst/goom/gstgoom.h:
4634           Improved docs and use GST_DEBUG_FUNCPTR.
4635
4636         * gst/level/gstlevel.c: (gst_level_class_init):
4637           Use GST_DEBUG_FUNCPTR.
4638
4639         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
4640         (gst_monoscope_chain), (gst_monoscope_change_state):
4641           Improved docs source cleanups.
4642
4643 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4644
4645         * gst/debug/Makefile.am:
4646         * gst/debug/gstdebug.c: (plugin_init):
4647         * gst/debug/gstpushfilesrc.c:
4648         * gst/debug/gstpushfilesrc.h:
4649           Add code for a pushfilesrc element that implements a pushfile:// URI
4650           handler, to make debugging push-mode operation of demuxer/decoders
4651           that support both easier in connection with seek/playbin/etc.
4652           The element isn't registered at the moment.
4653
4654 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
4655
4656         * gst/avi/gstavimux.c:
4657           Comment a #if 0 in caps template definition as VS6 seems to 
4658         do not support it.
4659         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
4660           Use gst_guint64_to_gdouble for conversion.
4661         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
4662           Move variables declaration before the first instruction.
4663         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
4664           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
4665           And don't include netdb.h for G_OS_WIN32
4666         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
4667           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
4668           by VS6 then use an other way to initialize SDPMedia structure.
4669         * gst/udp/gstdynudpsink.h:
4670         * gst/udp/gstdynudpnetutils.h:
4671           Do not include <sys/time.h> for G_OS_WIN32
4672         * gst/udp/gstudpsrc.c:
4673           Define socklen_t as int for G_OS_WIN32
4674         * win/common/config.h.in:
4675           Undef HAVE_NETINET_IN_H
4676         * win32/vs6/gst_plugins_good.dsw:
4677         * win32/vs6/libgstrtp.dsp:
4678         * win32/vs6/libgstrtsp.dsp:
4679         * win32/vs6/libgstautogen.dsp:
4680         * win32/vs6/libgstaudiofx.dsp:
4681         * win32/vs6/libgstudp.dsp:
4682           Add and update project files.
4683         * win32/common/gstudp-enumtypes.c:
4684         * win32/common/gstudp-enumtypes.h:
4685           Add a copy of udp enumtypes to win32/common as in core 
4686           and base.
4687         
4688 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
4689
4690         * configure.ac:
4691           Activate monoscope when building with --enable-experimental. Fix
4692           --enable-external configure switch description.
4693
4694         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
4695         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
4696           Help gst-indent.
4697
4698 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
4699
4700         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
4701           Explicitly cast result of pointer arithmetic to integer in order to
4702           avoid compiler warnings on some 64-bit systems. Should fix #406018.
4703
4704 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
4705
4706         * gst/debug/progressreport.c:
4707           Some more docs.
4708
4709 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
4710
4711         * docs/plugins/inspect/plugin-rtp.xml:
4712           Update for new elements.
4713
4714         * gst/debug/progressreport.h:
4715           Commit newly-created header file as well.
4716
4717 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
4718
4719         * docs/plugins/Makefile.am:
4720         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4721         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4722         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4723         * gst/debug/Makefile.am:
4724         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
4725         (gst_progress_report_do_query), (gst_progress_report_report):
4726           Make progressreport element post messages with the current progress
4727           on the bus. Also add some basic docs for it.
4728
4729 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
4730
4731         * ext/hal/hal.c: (gst_hal_get_string):
4732         * ext/hal/hal.h:
4733           Some small cleanups; deal with errors when parsing the HAL ALSA
4734           capabilities a bit better.
4735
4736 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
4737
4738         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
4739           Let's try this again and use the right cast this time.
4740
4741 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
4742
4743         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
4744           Add cast to avoid compiler warnings with older GLib versions
4745           where the nick/name members in GEnumValue are not declared as
4746           constant strings.
4747
4748 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
4749
4750         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
4751         (gst_gconf_render_bin_from_key),
4752         (gst_gconf_get_default_audio_sink):
4753         * ext/gconf/gconf.h:
4754         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
4755         (do_toggle_element), (gst_gconf_audio_sink_set_property),
4756         (gst_gconf_audio_sink_get_property):
4757           In gconfaudiosink, get the right key as the old key in do_toggle
4758           (ie. one dependent on the profile selected). Log some more stuff so
4759           we can see what's actually going on.
4760
4761 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
4762
4763         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
4764         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
4765         (gst_audio_amplify_set_process_function),
4766         (gst_audio_amplify_setup):
4767         * gst/audiofx/audioamplify.h:
4768         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
4769         (gst_audio_invert_class_init), (gst_audio_invert_setup):
4770         * gst/audiofx/audioinvert.h:
4771         Some small cleanups and port both elements to the new GstAudioFilter
4772         base class to save a few lines of common code.
4773         * gst/audiofx/Makefile.am:
4774         Link against libgstaudio for the above changes
4775
4776 2007-01-29  Wim Taymans  <wim@fluendo.com>
4777
4778         * tests/check/elements/.cvsignore:
4779         Some more ignores.
4780
4781 2007-01-26  Wim Taymans  <wim@fluendo.com>
4782
4783         Patch by: charles <charlesg3 at gmail dot com>
4784
4785         * ext/shout2/gstshout2.c: (gst_shout2send_init),
4786         (set_shout_metadata), (gst_shout2send_event):
4787         * ext/shout2/gstshout2.h:
4788         Properly handle tags in shout2send. Fixes #399825.
4789
4790 2007-01-25  Wim Taymans  <wim@fluendo.com>
4791
4792         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
4793         (gst_rtspsrc_activate_streams):
4794         Convert SDP fields to upper/lowercase following the rules in the SDP to
4795         caps document. 
4796
4797 2007-01-25  Wim Taymans  <wim@fluendo.com>
4798
4799         * gst/rtp/README:
4800         * gst/rtp/gstrtpilbcdepay.c:
4801         * gst/rtp/gstrtpilbcpay.c:
4802         * gst/rtp/gstrtpmp4gdepay.c:
4803         * gst/rtp/gstrtpmp4gpay.c:
4804         * gst/rtp/gstrtpspeexdepay.c:
4805         * gst/rtp/gstrtpspeexpay.c:
4806         * gst/rtp/gstrtpsv3vdepay.c:
4807         * gst/rtp/gstrtptheoradepay.c:
4808         * gst/rtp/gstrtptheorapay.c:
4809         * gst/rtp/gstrtpvorbisdepay.c:
4810         * gst/rtp/gstrtpvorbispay.c:
4811         Fix case of encoding-name and key/value pairs to match the document.
4812         This is to make interoperation with SDP case-insensitive as required by
4813         the relevant RFCs.
4814
4815 2007-01-25  Wim Taymans  <wim@fluendo.com>
4816
4817         * configure.ac:
4818         Bump required -core/-base to CVS
4819
4820 2007-01-25  Wim Taymans  <wim@fluendo.com>
4821
4822         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
4823         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
4824         * gst/rtp/gstrtpL16pay.h:
4825         Fill up to MTU using adapter.
4826         Timestamp rtp packets.
4827
4828 2007-01-25  Edward Hervey  <edward@fluendo.com>
4829
4830         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
4831         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
4832         Use G_GSIZE_FORMAT in print statements for portability.
4833         Fixes build on macosx.
4834
4835 2007-01-24  Wim Taymans  <wim@fluendo.com>
4836
4837         * gst/rtp/Makefile.am:
4838         * gst/rtp/gstrtp.c: (plugin_init):
4839         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
4840         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
4841         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
4842         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
4843         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
4844         (gst_rtp_L16_depay_plugin_init):
4845         * gst/rtp/gstrtpL16depay.h:
4846         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
4847         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
4848         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
4849         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
4850         (gst_rtp_L16_pay_plugin_init):
4851         * gst/rtp/gstrtpL16pay.h:
4852         Port and enable raw audio payloader/depayloader. Needs a bit more work
4853         on the payloader side.
4854
4855 2007-01-24  Wim Taymans  <wim@fluendo.com>
4856
4857         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
4858         (gst_rtspsrc_stream_configure_transport),
4859         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
4860         * gst/rtsp/gstrtspsrc.h:
4861         Only unblock the udp pads when we linked and activated them all.
4862         Fixes #395688.
4863
4864 2007-01-24  Wim Taymans  <wim@fluendo.com>
4865
4866         * gst/rtp/Makefile.am:
4867         * gst/rtp/gstrtp.c: (plugin_init):
4868         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
4869         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
4870         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
4871         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
4872         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
4873         * gst/rtp/gstrtpac3depay.h:
4874         Added simple AC3 depayloader (RFC 4184).
4875
4876         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
4877         Fix a leak.
4878
4879 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
4880
4881         reviewed by: Stefan Kost  <ensonic@users.sf.net>
4882
4883         * gst/audiofx/Makefile.am:
4884         * gst/audiofx/audioamplify.c:
4885         (gst_audio_amplify_clipping_method_get_type),
4886         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
4887         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
4888         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
4889         (gst_audio_amplify_set_caps),
4890         (gst_audio_amplify_transform_int_clip),
4891         (gst_audio_amplify_transform_int_wrap_negative),
4892         (gst_audio_amplify_transform_int_wrap_positive),
4893         (gst_audio_amplify_transform_float_clip),
4894         (gst_audio_amplify_transform_float_wrap_negative),
4895         (gst_audio_amplify_transform_float_wrap_positive),
4896         (gst_audio_amplify_transform_ip):
4897         * gst/audiofx/audioamplify.h:
4898         * gst/audiofx/audiofx.c: (plugin_init):
4899         Add new element "audioamplify". This allows scaling of raw audio
4900         samples, similar to the "volume" element, but provides different modes
4901         for clipping and allows unlimited amplification. It's mainly targeted
4902         for creative sound design and not as a replacement of the "volume"
4903         element. Fixes #397162
4904         * docs/plugins/Makefile.am:
4905         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4906         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4907         * docs/plugins/gst-plugins-good-plugins.args:
4908         * docs/plugins/inspect/plugin-audiofx.xml:
4909         Add docs for audioamplify and integrate them into the build system
4910         * tests/check/Makefile.am:
4911         * tests/check/elements/audioamplify.c: (setup_amplify),
4912         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
4913         Add fairly extensive unit test suite for audioamplify
4914
4915 2007-01-24  Wim Taymans  <wim@fluendo.com>
4916
4917         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
4918         Unblock pads after adding the pads to the element so that autopluggers
4919         get a change to link something. Possibly fixes #395688.
4920
4921 2007-01-24  Wim Taymans  <wim@fluendo.com>
4922
4923         * gst/rtp/gstrtpamrdepay.c:
4924         * gst/rtp/gstrtpgsmdepay.c:
4925         * gst/rtp/gstrtph263pdepay.c:
4926         * gst/rtp/gstrtph263ppay.c:
4927         * gst/rtp/gstrtph264depay.c:
4928         * gst/rtp/gstrtpilbcdepay.c:
4929         * gst/rtp/gstrtpmp2tdepay.c:
4930         * gst/rtp/gstrtpmp4gdepay.c:
4931         * gst/rtp/gstrtpmp4gpay.c:
4932         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
4933         * gst/rtp/gstrtpmp4vpay.c:
4934         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
4935         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
4936         (gst_rtp_mpa_depay_process):
4937         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
4938         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
4939         * gst/rtp/gstrtppcmadepay.c:
4940         * gst/rtp/gstrtppcmudepay.c:
4941         * gst/rtp/gstrtpspeexdepay.c:
4942         * gst/rtp/gstrtpspeexpay.c:
4943         * gst/rtp/gstrtpsv3vdepay.c:
4944         * gst/rtp/gstrtptheoradepay.c:
4945         * gst/rtp/gstrtptheorapay.c:
4946         * gst/rtp/gstrtpvorbisdepay.c:
4947         * gst/rtp/gstrtpvorbispay.c:
4948         Fix caps with payload numbers.
4949         Add some fixed payload numbers to caps when possible.
4950
4951 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
4952
4953         reviewed by: Stefan Kost  <ensonic@users.sf.net>
4954
4955         * gst/audiofx/Makefile.am:
4956         * gst/audiofx/audiofx.c: (plugin_init):
4957         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
4958         (gst_audio_invert_class_init), (gst_audio_invert_init),
4959         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
4960         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
4961         (gst_audio_invert_transform_float),
4962         (gst_audio_invert_transform_ip):
4963         * gst/audiofx/audioinvert.h:
4964         Add new audiofx element "audioinvert". This element swaps the upper
4965         and lower half of samples and can be used for example for a
4966         wide-stereo effect. Fixes #396057
4967         * docs/plugins/Makefile.am:
4968         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4969         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4970         * docs/plugins/gst-plugins-good-plugins.args:
4971         * docs/plugins/inspect/plugin-audiofx.xml:
4972         Add docs for the audioinvert element and add them to the build system.
4973         * tests/check/Makefile.am:
4974         * tests/check/elements/audioinvert.c: (setup_invert),
4975         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
4976         Add unit test suite for the audioinvert element.
4977
4978 2007-01-23  Wim Taymans  <wim@fluendo.com>
4979
4980         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
4981         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
4982         Parse config params as string and int.
4983         Parse and use AU header length
4984
4985 2007-01-23  Wim Taymans  <wim@fluendo.com>
4986
4987         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
4988         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
4989         * gst/smpte/gstmask.c: (_gst_mask_register):
4990         * gst/smpte/gstmask.h:
4991         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
4992         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
4993         (gst_smpte_paint_triangle_clock):
4994         constify some static structs.
4995         Don't update the mask if nothing changed to the params.
4996         Make sure we never draw outside of the picture. Fixes #398325.
4997
4998 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
4999
5000         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
5001           Error out properly when pull_range fails while we're reading the
5002           headers, instead of just pausing the task silently. Fixes #399338.
5003
5004 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
5005
5006         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
5007           Some more sanity checks to make sure the input formats match and the
5008           input pads are actually negotiated, in case someone tries to feed
5009           buffers from fakesrc or filesrc. Fixes #398299.
5010           Also const-ify an array, just because we can.
5011
5012 2007-01-19  Edward Hervey  <edward@fluendo.com>
5013
5014         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
5015         Ignore previous commit, that was only valid for widths and heights
5016         that are multiples of 4.
5017         Copy over size/stride macros from jpegdec. This allows the element
5018         to work with any width,height...
5019         ... but puts in evidence that the actual transformations only work
5020         with width/height that are multiples of 4.
5021
5022 2007-01-19  Edward Hervey  <edward@fluendo.com>
5023
5024         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
5025         Allocate buffers of the right size.
5026         The proper size of a I420 buffer in bytes is:
5027         
5028             width * height * 3
5029             ------------------
5030                     2
5031
5032 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
5033
5034         * gst/smpte/gstsmpte.c: (gst_smpte_init):
5035           Proxy getcaps on sink pads too, so that we either end up with the
5036           same dimensions on all pads or error out if that's not possible
5037           (seems to work even!). Fixes #398086, I think.
5038
5039 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
5040
5041         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5042         * docs/plugins/gst-plugins-good-plugins.args:
5043         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5044           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
5045           fix integer properties with -1 as minimum value.
5046
5047         * docs/plugins/inspect/plugin-1394.xml:
5048         * docs/plugins/inspect/plugin-aasink.xml:
5049         * docs/plugins/inspect/plugin-alaw.xml:
5050         * docs/plugins/inspect/plugin-alpha.xml:
5051         * docs/plugins/inspect/plugin-alphacolor.xml:
5052         * docs/plugins/inspect/plugin-annodex.xml:
5053         * docs/plugins/inspect/plugin-apetag.xml:
5054         * docs/plugins/inspect/plugin-audiofx.xml:
5055         * docs/plugins/inspect/plugin-auparse.xml:
5056         * docs/plugins/inspect/plugin-autodetect.xml:
5057         * docs/plugins/inspect/plugin-avi.xml:
5058         * docs/plugins/inspect/plugin-cacasink.xml:
5059         * docs/plugins/inspect/plugin-cairo.xml:
5060         * docs/plugins/inspect/plugin-cdio.xml:
5061         * docs/plugins/inspect/plugin-cutter.xml:
5062         * docs/plugins/inspect/plugin-debug.xml:
5063         * docs/plugins/inspect/plugin-dv.xml:
5064         * docs/plugins/inspect/plugin-efence.xml:
5065         * docs/plugins/inspect/plugin-effectv.xml:
5066         * docs/plugins/inspect/plugin-esdsink.xml:
5067         * docs/plugins/inspect/plugin-flac.xml:
5068         * docs/plugins/inspect/plugin-flxdec.xml:
5069         * docs/plugins/inspect/plugin-gconfelements.xml:
5070         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5071         * docs/plugins/inspect/plugin-goom.xml:
5072         * docs/plugins/inspect/plugin-halelements.xml:
5073         * docs/plugins/inspect/plugin-icydemux.xml:
5074         * docs/plugins/inspect/plugin-id3demux.xml:
5075         * docs/plugins/inspect/plugin-jpeg.xml:
5076         * docs/plugins/inspect/plugin-level.xml:
5077         * docs/plugins/inspect/plugin-matroska.xml:
5078         * docs/plugins/inspect/plugin-mulaw.xml:
5079         * docs/plugins/inspect/plugin-multipart.xml:
5080         * docs/plugins/inspect/plugin-navigationtest.xml:
5081         * docs/plugins/inspect/plugin-ossaudio.xml:
5082         * docs/plugins/inspect/plugin-png.xml:
5083         * docs/plugins/inspect/plugin-rtp.xml:
5084         * docs/plugins/inspect/plugin-rtsp.xml:
5085         * docs/plugins/inspect/plugin-shout2send.xml:
5086         * docs/plugins/inspect/plugin-smpte.xml:
5087         * docs/plugins/inspect/plugin-speex.xml:
5088         * docs/plugins/inspect/plugin-taglib.xml:
5089         * docs/plugins/inspect/plugin-udp.xml:
5090         * docs/plugins/inspect/plugin-videobalance.xml:
5091         * docs/plugins/inspect/plugin-videobox.xml:
5092         * docs/plugins/inspect/plugin-videoflip.xml:
5093         * docs/plugins/inspect/plugin-videomixer.xml:
5094         * docs/plugins/inspect/plugin-wavenc.xml:
5095         * docs/plugins/inspect/plugin-wavparse.xml:
5096         * docs/plugins/inspect/plugin-ximagesrc.xml:
5097           Update to CVS.
5098
5099 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
5100
5101         Patch by: Sebastian Dröge <slomo circular-chaos org>
5102
5103         * gst/audiofx/audiopanorama.c:
5104           Fix doc section name (Fixes #397946)
5105
5106 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
5107
5108         * sys/v4l2/gstv4l2object.c:
5109         (gst_v4l2_object_install_properties_helper),
5110         (gst_v4l2_object_set_property_helper),
5111         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
5112         * sys/v4l2/gstv4l2object.h:
5113         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
5114         (gst_v4l2src_init), (gst_v4l2src_set_property),
5115         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
5116         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
5117         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
5118         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
5119         (gst_v4l2src_capture_deinit):
5120           Fix EIO handing when capturing. Add new property to specify the number of
5121           buffers to enque (and remove the borked num-buffers usage).
5122
5123 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
5124
5125         Patch by: Sebastian Dröge <slomo circular-chaos org>
5126
5127         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
5128         (gst_audio_panorama_set_process_function):
5129           Use a function array for process methods, add more docs and define the
5130           startindex of enums.
5131
5132 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
5133
5134         Patch by: Mark Nauwelaerts <manauw at skynet be>
5135
5136         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
5137         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
5138         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
5139         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
5140         (gst_avi_mux_riff_get_avi_header),
5141         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
5142         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
5143         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
5144         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
5145         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
5146         (gst_avi_mux_change_state):
5147         * gst/avi/gstavimux.h:
5148         * tests/check/elements/avimux.c: (teardown_src_pad):
5149           Add support for more than one audio stream; write better AVIX
5150           header; refactor code a bit; don't announce vorbis caps on our audio
5151           sink pads since we don't support it anyway. Closes #379298.
5152
5153 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
5154
5155         Patch by: Sebastian Dröge <slomo circular-chaos org>
5156
5157         * gst/audiofx/audiopanorama.c:
5158         (gst_audio_panorama_method_get_type),
5159         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
5160         (gst_audio_panorama_set_process_function),
5161         (gst_audio_panorama_set_property),
5162         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
5163         (gst_audio_panorama_transform_m2s_int_simple),
5164         (gst_audio_panorama_transform_s2s_int_simple),
5165         (gst_audio_panorama_transform_m2s_float_simple),
5166         (gst_audio_panorama_transform_s2s_float_simple):
5167         * gst/audiofx/audiopanorama.h:
5168           Add 'method' property and provide a simple (non-psychoacustic)
5169           processing method (#394859).
5170
5171         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
5172         (panorama_suite):
5173           Tests for new method.
5174
5175 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
5176
5177         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
5178         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
5179           Set correct caps on outgoing pulled buffers, or things blow up
5180           after recent core changes.
5181
5182 2007-01-11  Wim Taymans  <wim@fluendo.com>
5183
5184         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
5185
5186         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
5187         (gst_multipart_mux_request_new_pad),
5188         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
5189         (gst_multipart_mux_change_state):
5190         Return FLOW errors ASAP. Fixes #394977.
5191         Misc cleanups.
5192
5193 2007-01-11  Wim Taymans  <wim@fluendo.com>
5194
5195         Patch by: Lutz Mueller <lutz at topfrose dot de>
5196
5197         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
5198         Check for stream pad before activating. 
5199
5200 2007-01-10  Wim Taymans  <wim@fluendo.com>
5201
5202         Patch by: Peter Kjellerstedt  <pkj at axis com>
5203
5204         * gst/rtsp/COPYING.MIT:
5205         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
5206         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
5207         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
5208         (gst_rtspsrc_stream_configure_transport),
5209         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
5210         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
5211         (gst_rtspsrc_parse_methods),
5212         (gst_rtspsrc_create_transports_string),
5213         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
5214         (gst_rtspsrc_open), (gst_rtspsrc_close):
5215         * gst/rtsp/gstrtspsrc.h:
5216         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
5217         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
5218         (parse_request_line), (parse_line), (rtsp_connection_read),
5219         (rtsp_connection_close):
5220         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
5221         (rtsp_method_as_text), (rtsp_header_as_text),
5222         (rtsp_status_as_text), (rtsp_find_header_field),
5223         (rtsp_find_method):
5224         * gst/rtsp/rtspdefs.h:
5225         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
5226         (rtsp_ext_wms_configure_stream):
5227         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
5228         (rtsp_message_new_request), (rtsp_message_init_request),
5229         (rtsp_message_new_response), (rtsp_message_init_response),
5230         (rtsp_message_init_data), (rtsp_message_unset),
5231         (rtsp_message_free), (rtsp_message_add_header),
5232         (rtsp_message_get_header), (rtsp_message_set_body),
5233         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
5234         * gst/rtsp/rtspmessage.h:
5235         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
5236         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
5237         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
5238         (sdp_message_dump):
5239         Allow url to be NULL to be able to use it for server connections.
5240         Can now send responses as well as requests.
5241         No longer hangs in an endless loop if EOF is received.
5242         Can now convert a status code to a text string.
5243         Return RTSP_HDR_INVALID for unknown headers.
5244         Return RTSP_INVALID for unknown methods.
5245         Copy CSeq and Session headers from the request.
5246         Only free memory corresponding to the currently set message type.
5247         Added const to function arguments as appropriate.
5248         Avoid a compiler warning when initializing nmedia.
5249         Use guint rather than gint to avoid compiler warnings.
5250         Fix crasher in wms extension.
5251         Factor out stream setup from open_connection.
5252         Delay activation of streams when actual data is received from the
5253         server, this prepares us to do proper protocol switching.
5254         Added new license.
5255         Fixes #380895.
5256
5257
5258 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
5259
5260         Patch by: Sebastian Dröge <slomo ubuntu com>
5261
5262         * docs/plugins/Makefile.am:
5263         * gst/audiofx/audiopanorama.c:
5264           Some small docs fixes (#394851).
5265
5266 2007-01-09  Wim Taymans  <wim@fluendo.com>
5267
5268         * gst/avi/gstavidemux.c:
5269         Fix docs.
5270
5271 2007-01-09  Wim Taymans  <wim@fluendo.com>
5272
5273         * gst/rtp/Makefile.am:
5274         * gst/rtp/gstrtp.c: (plugin_init):
5275         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
5276         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
5277         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
5278         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
5279         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
5280         * gst/rtp/gstrtpmpvdepay.h:
5281           Added RFC 2250 MPEG Video Depayloader.
5282
5283         * gst/rtp/gstrtpL16depay.h:
5284         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
5285         (gst_rtp_h263p_depay_process):
5286         Fix Header file. Small cleanups.
5287
5288         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
5289         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
5290         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
5291         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
5292         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
5293         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
5294         (gst_rtp_mp4v_depay_change_state):
5295         Remove usused code. Remove Adapter from state Change. Added debug.
5296
5297         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
5298         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
5299         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
5300         * gst/rtp/gstrtpmpadepay.h:
5301         Subclass base depayloader.
5302         Added debug.
5303         Support static payload type assignment as well.
5304
5305         * gst/rtp/gstrtpmpapay.c:
5306         Fix caps.
5307
5308 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5309
5310         Patch by: Vincent Torri  <vtorri at univ-evry fr>
5311
5312         * ext/jpeg/gstjpegdec.c:
5313         * ext/jpeg/gstjpegenc.c:
5314         * ext/jpeg/smokecodec.c:
5315           These libjpeg callbacks should return a 'boolean' (unsigned char
5316           apparently) and not a 'gboolean' (which maps to gint). Fixes
5317           warnings when compiling with MingW (#393427).
5318
5319         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
5320           Use ioctlsocket on win32.
5321
5322         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5323           Some printf format fixes for win32.
5324
5325 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
5326
5327         * gst/cutter/gstcutter.c: (gst_cutter_chain):
5328           Use gst_guint64_to_gdouble for conversion.
5329         * win32/vs6/libgstmatroska.dsp:
5330           Add zlib to the link.
5331         * win32/vs6/libgstvideobox.dsp:
5332           Update liboil library name (project is linked to 
5333           liboil-0.3-0.lib now).
5334           
5335 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
5336
5337         * gst/matroska/Makefile.am:
5338           If zlib is available and used, we must link it explicitly for
5339           things to work on MingW (fixes #392855).
5340
5341 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
5342
5343         * ext/esd/esdsink.c: (gst_esdsink_delay):
5344           Don't return bogus values when esd_get_delay() fails for some
5345           reason (#392189).
5346
5347 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
5348
5349         * sys/ximage/gstximagesrc.c: (composite_pixel):
5350           Fix presumably copy'n'pasto for 16bpp depth.
5351
5352 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
5353
5354         * gst/matroska/matroska-mux.c:
5355         (gst_matroska_mux_audio_pad_setcaps):
5356           The "signed" field in audio caps is of boolean type, trying to use
5357           gst_structure_get_int() to extract it will fail. Fixing this makes
5358           matroskamux accept raw audio input (#387121) (use at your own risk
5359           though, due to the matroska spec being not entirely useful in this
5360           respect).
5361           Also fix up raw audio structures in template caps so that they
5362           represent what our setcaps function will actually accept, so that
5363           converters know what to convert to.
5364           Finally, don't fail if there isn't an "endianness" field in 8-bit
5365           PCM caps.
5366
5367 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
5368
5369         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
5370         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
5371         * tests/check/elements/cmmldec.c: (setup_cmmldec),
5372         (teardown_cmmldec):
5373         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
5374         (teardown_cmmlenc):
5375         * tests/check/elements/level.c: (setup_level), (cleanup_level):
5376           reapply consistent pad (de)activation
5377
5378 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
5379
5380         * configure.ac:
5381         Back to CVS
5382
5383         * gst-plugins-good.doap:
5384         Add 0.10.5 doap entry
5385
5386 === release 0.10.5 ===
5387
5388 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
5389
5390         * configure.ac:
5391           releasing 0.10.5, "The Path of Thorns"
5392
5393 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
5394
5395         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
5396         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
5397         * tests/check/elements/cmmldec.c: (setup_cmmldec),
5398         (teardown_cmmldec):
5399         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
5400         (teardown_cmmlenc):
5401         * tests/check/elements/level.c: (setup_level), (cleanup_level):
5402           revert my freeze breakage
5403
5404 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
5405
5406         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
5407         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
5408         * tests/check/elements/cmmldec.c: (setup_cmmldec),
5409         (teardown_cmmldec):
5410         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
5411         (teardown_cmmlenc):
5412         * tests/check/elements/level.c: (setup_level), (cleanup_level):
5413           consistent pad (de)activation
5414
5415 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
5416
5417         * configure.ac:
5418         * ext/Makefile.am:
5419         Disable LADPSA, as it has moved to the -bad module for the duration.
5420
5421 2006-12-18  Wim Taymans  <wim@fluendo.com>
5422
5423         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
5424         (gst_signal_processor_event):
5425         Reset flow_state back to _OK after a flush stop so that we exit our
5426         error state after the flush. Fixes #374213
5427
5428 2006-12-16  David Schleef  <ds@schleef.org>
5429
5430         * sys/osxvideo/osxvideosink.h:
5431         * sys/osxvideo/osxvideosink.m:
5432           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
5433
5434 2006-12-16  David Schleef  <ds@schleef.org>
5435
5436         Patch by: Vijay Santhanam <vijay santhanam gmail com>
5437
5438         * sys/osxvideo/Makefile.am:
5439         * sys/osxvideo/osxvideosink.h:
5440         * sys/osxvideo/osxvideosink.m:
5441           Preliminary patch for porting osxvideosink
5442
5443 2006-12-16  Wim Taymans  <wim@fluendo.com>
5444
5445         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5446
5447         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
5448         (gst_videomixer_set_master_geometry),
5449         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
5450         (gst_videomixer_reset), (gst_videomixer_init),
5451         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
5452         (gst_videomixer_release_pad), (gst_videomixer_collected),
5453         (gst_videomixer_change_state):
5454         Introduce some locking around the videomixer state so that it does not
5455         crash when adding/removing pads. Fixes #383043.
5456
5457 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
5458
5459         * configure.ac:
5460           Make sure libcaca can actually be used instead of just checking for
5461           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
5462           cross-compiling (fixes #384587).
5463
5464 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5465
5466         * Makefile.am:
5467         * gst-plugins-good.doap:
5468         * gst-plugins-good.spec.in:
5469           adding doap file
5470
5471 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
5472
5473         * configure.ac:
5474           libflac-1.1.3 changed API again, but we can't build against it yet,
5475           so make sure our check doesn't use libflac-1.1.3 and add a comment
5476           to this effect.
5477
5478 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
5479
5480         * gst/effectv/gstquark.c: (gst_quarktv_transform),
5481         (gst_quarktv_planetable_clear):
5482           Add some NULL pointer checks (possibly related to #385623).
5483
5484 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
5485
5486         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
5487         (gst_tag_demux_chain):
5488         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
5489           In streaming mode, if the first buffer we get doesn't have an
5490           offset, fix it up to be 0, otherwise trimming won't work later on
5491           and we'll be typefinding application/x-id3, which may result in
5492           decodebin plugging an endless number of id3demux elements as a
5493           consequence. Fixes #385031.
5494           
5495 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
5496
5497         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
5498           Ignore the buffer_time the sound device reports. Turns out it is 
5499           sometimes completely bogus and we're better off without it.
5500
5501 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
5502
5503         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
5504         (gst_matroska_demux_video_caps):
5505         * gst/matroska/matroska-ids.c:
5506         (gst_matroska_track_init_video_context):
5507         * gst/matroska/matroska-ids.h:
5508           Try harder to extract the framerate for video tracks correctly and
5509           save it directly instead of converting it back and forth a few
5510           times. Mostly makes a difference for very small framerates (<1).
5511           Fixes #380199.
5512
5513 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
5514
5515         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
5516         (gst_gconf_audio_src_dispose), (do_toggle_element):
5517         * ext/gconf/gstgconfaudiosrc.h:
5518           Remove gconf notify hook when the gconfaudiosrc element is
5519           destroyed, otherwise the callback may be called on an
5520           already-destroyed instance and bad things happen. Should fix
5521           #378184.
5522           Also ignore gconf key changes when the source is already running.
5523
5524 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
5525
5526         Patch by: Sebastian Dröge  <mail at slomosnail de>
5527
5528         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
5529           We need to be able to read and parse any possible floating point string
5530           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
5531           will parse the former only in certain locales though, so we really need
5532           to canonicalise the separator to '.' and then use g_ascii_strtod() to
5533           make sure we can parse either version at all times.
5534           Fixes #382982 for real.
5535
5536 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
5537
5538         * sys/sunaudio/gstsunaudiomixerctrl.c:
5539         * sys/sunaudio/gstsunaudiosrc.c:
5540
5541         Use the sunaudio debug category.
5542
5543         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
5544         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
5545         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
5546         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
5547         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
5548         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
5549         (gst_sunaudiosink_reset):
5550         * sys/sunaudio/gstsunaudiosink.h:
5551
5552         Uses the sunaudio debug category for all debug output
5553         Implements the _delay() callback to synchronise video playback better
5554         Change the segtotal and segsize values back to the parent class 
5555           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
5556           respectively)
5557         Measure the samples written to the device vs. played.
5558         Keep track of segments in the device by writing empty eof frames, and
5559         sleep using a GCond when we get too far ahead and risk overrunning the
5560         sink's ringbuffer.
5561
5562         Fixes: #360673
5563
5564 2006-12-08  Wim Taymans  <wim@fluendo.com>
5565
5566         Patch by: Sebastian Dröge  <mail at slomosnail de >
5567
5568         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
5569         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
5570         * gst/audiofx/audiopanorama.h:
5571         Fix audiopanorame with float samples. Fixes #383726.
5572
5573 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
5574
5575         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
5576         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
5577         (gst_sunaudiosrc_reset):
5578
5579         Implement reset functions to unblock the src/sink more quickly on 
5580         state change requests.
5581         Patch by: Brian Cameron <brian dot cameron at sun com>
5582
5583 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
5584
5585         * sys/sunaudio/gstsunaudiomixer.c:
5586         (gst_sunaudiomixer_change_state):
5587         Construct the correct mixer device name when the AUDIODEV env var
5588         is set.
5589
5590         Patch by: Jerry Tan <jerry.tan at sun dot com>
5591         Fixes: #383596
5592
5593 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
5594
5595         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
5596         Apply patch to open the mixer control and set the MULTIPLE_OPEN
5597         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
5598         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
5599         Patch by: Jerry Tan <jerry.tan at sun dot com>
5600         Fixes: #349015
5601
5602 2006-12-07  Wim Taymans  <wim@fluendo.com>
5603
5604         * gst/smpte/gstmask.h:
5605         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
5606         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
5607         (gst_smpte_collected), (gst_smpte_set_property),
5608         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
5609         * gst/smpte/gstsmpte.h:
5610         Port to 0.10 some more. 
5611         Added duration property to specify the duration of the transition.
5612         Make framerate a fraction.
5613         Deprecate fps property, we only use negotiated fps.
5614         Added docs.
5615         Fix collectpad usage.
5616         Reset state in READY.
5617         Send NEWSEGMENT event.
5618         Fix racy updates of object properties.
5619         Added debug category.
5620         Fixes #383323.
5621
5622 2006-12-06  Wim Taymans  <wim@fluendo.com>
5623
5624         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5625
5626         * gst/videomixer/videomixer.c:
5627         (gst_videomixer_set_master_geometry),
5628         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
5629         Don't reset xpos and ypos in the setcaps function because causes
5630         unexpected behaviour.
5631         Fixes #382179.
5632
5633 2006-12-06  Wim Taymans  <wim@fluendo.com>
5634
5635         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
5636         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
5637         Keep track of the buffer timestamp in the collectdata member instead
5638         of modifying the buffer without making the metadata writable first.
5639         Fixes #382277.
5640
5641 2006-12-06  Wim Taymans  <wim@fluendo.com>
5642
5643         Patch by: Rob Taylor <robtaylor at floopily dot org>
5644
5645         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5646         If using multicast in udpsrc, bind to the multicast address rather than
5647         IN_ADDR_ANY.
5648         This allows the simultanous use of multiple udpsrcs listening on
5649         different multicat addresses. Without this all udpsrcs will receive all
5650         packets from all subscribed multicast addresses.
5651         Fixes #383001.
5652
5653 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
5654
5655         * ext/taglib/gstid3v2mux.cc:
5656         Don't attempt to write a NULL frame into the ID3 tag set when the 
5657         createFrame method returned NULL.
5658         Fixes: #381857
5659         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
5660
5661 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
5662
5663         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
5664         Use g_strtod() instead of sscanf to parse doubles, so that it will
5665         try parsing in the C locale if the current locale fails.
5666         Fixes: #382982
5667         Patch by: Sebastian Dröge  <mail at slomosnail de >
5668
5669 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
5670
5671         * win32/MANIFEST:
5672         Fix compilation on win32 under VS8
5673         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
5674         Partially fixes #381175
5675
5676 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
5677
5678         * gst/avi/gstavimux.c:
5679           accept all mpegversions,fixes #380825
5680           spotted by: Jerome Alet  
5681
5682 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
5683
5684         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
5685         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
5686         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
5687         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
5688           cleanup the error message a bit more
5689
5690 2006-11-28  Wim Taymans  <wim@fluendo.com>
5691
5692         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
5693         Fix width and height properties.
5694
5695         * ext/libcaca/gstcacasink.h:
5696         Fix compilation on newer libcaca that require us to include a new
5697         header. Fixes #379918.
5698
5699 2006-11-28  Wim Taymans  <wim@fluendo.com>
5700
5701         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
5702         * gst/rtsp/gstrtspsrc.h:
5703         * gst/rtsp/rtspext.h:
5704         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
5705         (rtsp_ext_wms_get_context):
5706         Add method so that extensions can choose to disable the setup of
5707         a stream.
5708         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
5709
5710 2006-11-27  Wim Taymans  <wim@fluendo.com>
5711
5712         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
5713
5714         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
5715         Push header in a separate buffer instead of memcpy:ing all data.
5716         Change LF => CRLF in headers.
5717         Move trailing LF to header. Fixes #379792.
5718
5719 2006-11-27  Wim Taymans  <wim@fluendo.com>
5720
5721         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
5722         Small buffer overflow fix and improve debugging.
5723
5724 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
5725
5726         * ext/esd/esdmon.h:
5727         * ext/esd/esdsink.h:
5728           remove obsolete _factory_init protos
5729
5730 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
5731
5732         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
5733         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
5734         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
5735         (gst_avi_demux_read_subindexes_push),
5736         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
5737         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
5738         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
5739         (gst_avi_demux_massage_index),
5740         (gst_avi_demux_calculate_durations_from_index),
5741         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
5742         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
5743         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
5744           remove dead code, tweak debugs statements, add comments, use
5745           _uint64_scale instead _uint64_scale_int when using guint64 values,
5746           small optimizations, reflow some error handling
5747
5748 2006-11-22  Edward Hervey  <edward@fluendo.com>
5749
5750         * po/.cvsignore:
5751         We never put .pot files in cvs. Let's ignore them all.
5752
5753 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
5754
5755         * po/POTFILES.in:
5756           ... but better exclude files that aren't disted.
5757
5758 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
5759
5760         * po/POTFILES.in:
5761           Add v4l2 source files to list of files with translations, so the
5762           strings are actually extracted (however bad they still may be).
5763
5764 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
5765
5766         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
5767           Minor clean-ups: const-ify static array, remove trailing comma from
5768           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
5769
5770 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
5771
5772         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
5773         Make sure that g_free always gets called on the same pointer that was 
5774         returned by g_malloc.  Fixes #376594.
5775         Do not leak memory if decompressed size is wrong.
5776         Remove unneeded check of return value of g_malloc.
5777         Patch by: René Stadler <mail@renestadler.de>
5778
5779 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
5780
5781         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
5782           Add missing curly brackets.
5783
5784 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
5785
5786         * sys/v4l2/v4l2src_calls.c:
5787         Fix capture_deinit.
5788
5789 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
5790
5791         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
5792         (gst_matroska_mux_request_new_pad):
5793           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
5794
5795         * tests/check/elements/matroskamux.c: (setup_src_pad),
5796         (setup_sink_pad), (GST_START_TEST):
5797         Activate pads before using them.
5798
5799 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
5800
5801         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
5802           Initialise variable to get rid of bogus compiler warning.
5803
5804 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
5805
5806         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
5807
5808         * gst/rtp/gstrtph263pay.c:
5809         * gst/rtp/gstrtph263pdepay.c:
5810         * gst/rtp/gstrtph263ppay.c:
5811           Specify H.263 variant and version in the caps (fixes #361637)
5812
5813 2006-11-15  Wim Taymans  <wim@fluendo.com>
5814
5815         * gst/rtsp/rtspconnection.c: (read_body):
5816         Don't set a data pointer to NULL and a size > 0 when we deal
5817         with empty packets.
5818
5819         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
5820         (rtsp_message_init_response), (rtsp_message_init_data),
5821         (rtsp_message_unset), (rtsp_message_free),
5822         (rtsp_message_take_body):
5823         Check that we can't create invalid empty packets. 
5824
5825 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
5826
5827         Patch by: Mark Nauwelaerts  <manauw at skynet be>
5828
5829         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
5830         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
5831         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
5832         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
5833         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
5834         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
5835         * gst/matroska/matroska-mux.h:
5836           Add basic tag writing support; implement releasing pads (#374658).
5837
5838 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
5839
5840         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
5841         (gst_matroska_demux_audio_caps):
5842           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
5843
5844 2006-11-14  David Schleef  <ds@schleef.org>
5845
5846         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
5847
5848 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
5849
5850         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
5851
5852         * win32/vs8/gst-plugins-good.sln:
5853         * win32/vs8/libgst1394.vcproj:
5854         * win32/vs8/libgstaasink.vcproj:
5855         * win32/vs8/libgstalaw.vcproj:
5856         * win32/vs8/libgstalpha.vcproj:
5857         * win32/vs8/libgstalphacolor.vcproj:
5858         * win32/vs8/libgstannodex.vcproj:
5859         * win32/vs8/libgstapetag.vcproj:
5860         * win32/vs8/libgstaudiofx.vcproj:
5861         * win32/vs8/libgstauparse.vcproj:
5862         * win32/vs8/libgstautodetect.vcproj:
5863         * win32/vs8/libgstavi.vcproj:
5864         * win32/vs8/libgstcacasink.vcproj:
5865         * win32/vs8/libgstcdio.vcproj:
5866         * win32/vs8/libgstcutter.vcproj:
5867         * win32/vs8/libgstdv.vcproj:
5868         * win32/vs8/libgsteffectv.vcproj:
5869         * win32/vs8/libgstflac.vcproj:
5870         * win32/vs8/libgstflxdec.vcproj:
5871         * win32/vs8/libgstgoom.vcproj:
5872         * win32/vs8/libgsticydemux.vcproj:
5873         * win32/vs8/libgstid3demux.vcproj:
5874         * win32/vs8/libgstjpeg.vcproj:
5875         * win32/vs8/libgstladspa.vcproj:
5876         * win32/vs8/libgstlevel.vcproj:
5877         * win32/vs8/libgstmatroska.vcproj:
5878         * win32/vs8/libgstmikmod.vcproj:
5879         * win32/vs8/libgstmng.vcproj:
5880         * win32/vs8/libgstmonoscope.vcproj:
5881         * win32/vs8/libgstmulaw.vcproj:
5882         * win32/vs8/libgstmultipart.vcproj:
5883         * win32/vs8/libgstpng.vcproj:
5884         * win32/vs8/libgstrtp.vcproj:
5885         * win32/vs8/libgstrtsp.vcproj:
5886         * win32/vs8/libgstshout2.vcproj:
5887         * win32/vs8/libgstsmpte.vcproj:
5888         * win32/vs8/libgstspeex.vcproj:
5889         * win32/vs8/libgsttaglib.vcproj:
5890         * win32/vs8/libgstudp.vcproj:
5891         * win32/vs8/libgstvideobalance.vcproj:
5892         * win32/vs8/libgstvideobox.vcproj:
5893         * win32/vs8/libgstvideoflip.vcproj:
5894         * win32/vs8/libgstvideomixer.vcproj:
5895         * win32/vs8/libgstwavenc.vcproj:
5896         * win32/vs8/libgstwavparse.vcproj:
5897           Make end-of-line returns unixy, so that when the files are checked
5898           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
5899           Hopefully fixes #366492.
5900
5901 2006-11-14  Wim Taymans  <wim@fluendo.com>
5902
5903         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
5904         Disable init_frames delay timestamp adjustment, it does not
5905         seem to be needed at all. Fixes #369621.
5906
5907 2006-11-13  Wim Taymans  <wim@fluendo.com>
5908
5909         Patch by: Mark Nauwelaerts  <manauw at skynet be>
5910
5911         * gst/videomixer/videomixer.c:
5912         (gst_videomixer_set_master_geometry),
5913         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
5914         (gst_videomixer_collect_free), (gst_videomixer_reset),
5915         (gst_videomixer_init), (gst_videomixer_finalize),
5916         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
5917         (gst_videomixer_collected), (gst_videomixer_change_state):
5918         Fix memleak by unref'ing collectpads instance (when finalizing)
5919         Implement releasing a request pad. Fixes #374479.
5920
5921 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
5922
5923         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
5924
5925         * win32/vs8/gst-plugins-good.sln:
5926         * win32/vs8/libgst1394.vcproj:
5927         * win32/vs8/libgstaasink.vcproj:
5928         * win32/vs8/libgstalaw.vcproj:
5929         * win32/vs8/libgstalpha.vcproj:
5930         * win32/vs8/libgstalphacolor.vcproj:
5931         * win32/vs8/libgstannodex.vcproj:
5932         * win32/vs8/libgstapetag.vcproj:
5933         * win32/vs8/libgstaudiofx.vcproj:
5934         * win32/vs8/libgstauparse.vcproj:
5935         * win32/vs8/libgstautodetect.vcproj:
5936         * win32/vs8/libgstavi.vcproj:
5937         * win32/vs8/libgstcacasink.vcproj:
5938         * win32/vs8/libgstcdio.vcproj:
5939         * win32/vs8/libgstcutter.vcproj:
5940         * win32/vs8/libgstdv.vcproj:
5941         * win32/vs8/libgsteffectv.vcproj:
5942         * win32/vs8/libgstflac.vcproj:
5943         * win32/vs8/libgstflxdec.vcproj:
5944         * win32/vs8/libgstgoom.vcproj:
5945         * win32/vs8/libgsticydemux.vcproj:
5946         * win32/vs8/libgstid3demux.vcproj:
5947         * win32/vs8/libgstjpeg.vcproj:
5948         * win32/vs8/libgstladspa.vcproj:
5949         * win32/vs8/libgstlevel.vcproj:
5950         * win32/vs8/libgstmatroska.vcproj:
5951         * win32/vs8/libgstmikmod.vcproj:
5952         * win32/vs8/libgstmng.vcproj:
5953         * win32/vs8/libgstmonoscope.vcproj:
5954         * win32/vs8/libgstmulaw.vcproj:
5955         * win32/vs8/libgstmultipart.vcproj:
5956         * win32/vs8/libgstpng.vcproj:
5957         * win32/vs8/libgstrtp.vcproj:
5958         * win32/vs8/libgstrtsp.vcproj:
5959         * win32/vs8/libgstshout2.vcproj:
5960         * win32/vs8/libgstsmpte.vcproj:
5961         * win32/vs8/libgstspeex.vcproj:
5962         * win32/vs8/libgsttaglib.vcproj:
5963         * win32/vs8/libgstudp.vcproj:
5964         * win32/vs8/libgstvideobalance.vcproj:
5965         * win32/vs8/libgstvideobox.vcproj:
5966         * win32/vs8/libgstvideoflip.vcproj:
5967         * win32/vs8/libgstvideomixer.vcproj:
5968         * win32/vs8/libgstwavenc.vcproj:
5969         * win32/vs8/libgstwavparse.vcproj:
5970           Add VS8 project files (note that many of the plugins in ext are
5971           disabled by default). Fixes #366492.
5972
5973 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
5974
5975         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
5976           we do not translate debug messages
5977
5978 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
5979
5980         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
5981           fix categorisation, make short desc more explicit, remove unused code
5982           Fixes #372021
5983
5984 2006-11-08  Wim Taymans  <wim@fluendo.com>
5985
5986         * gst/rtp/gstrtpL16depay.c:
5987         * gst/rtp/gstrtpamrdepay.c:
5988         * gst/rtp/gstrtpamrpay.c:
5989         * gst/rtp/gstrtpgsmdepay.c:
5990         * gst/rtp/gstrtph263pay.c:
5991         * gst/rtp/gstrtph263pdepay.c:
5992         * gst/rtp/gstrtph263ppay.c:
5993         * gst/rtp/gstrtph264depay.c:
5994         * gst/rtp/gstrtpmp2tdepay.c:
5995         * gst/rtp/gstrtpmp4gdepay.c:
5996         * gst/rtp/gstrtpmp4gpay.c:
5997         * gst/rtp/gstrtpmp4vdepay.c:
5998         * gst/rtp/gstrtpmp4vpay.c:
5999         * gst/rtp/gstrtpmpadepay.c:
6000         * gst/rtp/gstrtpmpapay.c:
6001         * gst/rtp/gstrtppcmadepay.c:
6002         * gst/rtp/gstrtppcmapay.c:
6003         * gst/rtp/gstrtppcmudepay.c:
6004         * gst/rtp/gstrtppcmupay.c:
6005         * gst/rtp/gstrtpspeexdepay.c:
6006         * gst/rtp/gstrtpspeexpay.c:
6007         * gst/rtp/gstrtpsv3vdepay.c:
6008         Fix element descriptions.
6009
6010 2006-11-08  Wim Taymans  <wim@fluendo.com>
6011
6012         * gst/rtp/gstrtpvorbisdepay.c:
6013         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
6014         Fix description.
6015         Small cleanup in the payloader.
6016
6017 2006-11-08  Wim Taymans  <wim@fluendo.com>
6018
6019         * gst/rtp/Makefile.am:
6020         * gst/rtp/gstrtp.c: (plugin_init):
6021         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
6022         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
6023         (gst_rtp_theora_depay_finalize),
6024         (gst_rtp_theora_depay_parse_configuration),
6025         (gst_rtp_theora_depay_setcaps),
6026         (gst_rtp_theora_depay_switch_codebook),
6027         (gst_rtp_theora_depay_process),
6028         (gst_rtp_theora_depay_set_property),
6029         (gst_rtp_theora_depay_get_property),
6030         (gst_rtp_theora_depay_change_state),
6031         (gst_rtp_theora_depay_plugin_init):
6032         * gst/rtp/gstrtptheoradepay.h:
6033         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
6034         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
6035         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
6036         (gst_rtp_theora_pay_init_packet),
6037         (gst_rtp_theora_pay_flush_packet),
6038         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
6039         (gst_rtp_theora_pay_handle_buffer),
6040         (gst_rtp_theora_pay_plugin_init):
6041         * gst/rtp/gstrtptheorapay.h:
6042         Add theora pay/depayloaders.
6043
6044 2006-11-06  Wim Taymans  <wim@fluendo.com>
6045
6046         * gst/rtp/Makefile.am:
6047         We depend on gsttag to generate the vorbis comments.
6048
6049         * gst/rtp/gstrtpvorbisdepay.c:
6050         (gst_rtp_vorbis_depay_parse_configuration),
6051         (gst_rtp_vorbis_depay_setcaps),
6052         (gst_rtp_vorbis_depay_switch_codebook),
6053         (gst_rtp_vorbis_depay_process):
6054         * gst/rtp/gstrtpvorbisdepay.h:
6055         Parse configuration string in the depayloader.
6056         Implement selecting and switching to a new codebook.
6057         Receiving vorbis over RTP now works.
6058
6059         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
6060         (gst_rtp_vorbis_pay_init_packet),
6061         (gst_rtp_vorbis_pay_finish_headers),
6062         (gst_rtp_vorbis_pay_handle_buffer):
6063         * gst/rtp/gstrtpvorbispay.h:
6064         Set timestamps on outgoing buffers and RTP packets.
6065         Fix configuration string, prepend number of Packet headers.
6066         Fix encoding of ident string.
6067         Add delivery-method to caps.
6068         Streaming vorbis over RTP now works.
6069
6070 2006-11-06  Wim Taymans  <wim@fluendo.com>
6071
6072         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
6073         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
6074         (gst_rtp_vorbis_pay_handle_buffer):
6075         * gst/rtp/gstrtpvorbispay.h:
6076         Generate a valid configuration string in the caps based on the
6077         vorbis headers.
6078
6079 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6080
6081         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
6082         * ext/cdio/gstcdio.h:
6083         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
6084           Move CD-TEXT utility function into common file so it can also be
6085           used by a future cdioparanoiasrc.
6086
6087 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
6088         
6089         * sys/v4l2/Makefile.am:
6090         * sys/v4l2/gstv4l2object.c:
6091         * sys/v4l2/gstv4l2src.c:
6092         * sys/v4l2/gstv4l2xoverlay.c:
6093         * sys/v4l2/v4l2_calls.c:
6094         * sys/v4l2/v4l2src_calls.c:
6095         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
6096         xoverlay code that is still not implemented.
6097
6098 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6099
6100         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6101           We require a -base more recent than 0.10.9, so it's safe to use
6102           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
6103
6104         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
6105         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
6106           Use _newsegment_full() now that we depend on a recent enough core.
6107
6108         * gst/wavparse/gstwavparse.c:
6109           Remove cruft that we don't need any longer now that we depend on
6110           a recent enough -base.
6111
6112 2006-10-31  Wim Taymans  <wim@fluendo.com>
6113
6114         * gst/rtp/Makefile.am:
6115         * gst/rtp/gstrtp.c: (plugin_init):
6116         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
6117         (gst_rtpilbcpay_setcaps):
6118         Fix and activate ILBC pay and depayloaders. Fixes #368162.
6119
6120 2006-10-31  Wim Taymans  <wim@fluendo.com>
6121
6122         * ext/speex/gstspeexdec.c: (speex_dec_convert),
6123         (speex_dec_sink_event), (speex_dec_chain_parse_header):
6124         Some small cleanups, use _scale.
6125
6126 2006-10-31  Wim Taymans  <wim@fluendo.com>
6127
6128         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
6129         Use higher precision scale function.
6130
6131 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
6132
6133         Patch by: Michal Benes  <michal dot benes at itonis tv>
6134
6135         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
6136         (gst_matroska_demux_read_track_encodings),
6137         (gst_matroska_decode_buffer):
6138           Fix several issues with encoded/compressed/encrypted/signed tracks;
6139           also, remove superfluous newline characters from some debug
6140           statements. (#366155)
6141
6142 2006-10-30  Wim Taymans  <wim@fluendo.com>
6143
6144         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
6145         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
6146         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
6147         (gst_smokedec_change_state):
6148         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
6149         (gst_smokeenc_init), (gst_smokeenc_finalize),
6150         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
6151         (gst_smokeenc_resync), (gst_smokeenc_chain),
6152         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
6153         (gst_smokeenc_change_state):
6154         Various cleanups, capsnego and leak fixes.
6155
6156 2006-10-30  Wim Taymans  <wim@fluendo.com>
6157
6158         Patch by: Mark Nauwelaerts  <manauw at skynet be>
6159
6160         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
6161         Fix videomixer so that it can handle any combination of framerates.
6162         Fixes #367221.
6163
6164 2006-10-28  Wim Taymans  <wim@fluendo.com>
6165
6166         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
6167         (gst_avi_demux_parse_file_header),
6168         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
6169         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
6170         (gst_avi_demux_chain):
6171         Fix position query for audio. also fixes timestamps in streaming
6172         mode and bug #364958.
6173         Small cleanups.
6174
6175 2006-10-27  Wim Taymans  <wim@fluendo.com>
6176
6177         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
6178         * ext/libpng/gstpngenc.h:
6179         Fix strides. Fixes #364856.
6180         Cleanup capsnego.
6181         Set caps on outgoing buffers.
6182
6183 2006-10-18  Wim Taymans  <wim@fluendo.com>
6184
6185         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
6186
6187         * gst/rtp/gstrtpgsmpay.c:
6188         * gst/rtp/gstrtph263pay.c:
6189         * gst/rtp/gstrtpmpapay.c:
6190         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
6191         (gst_rtp_pcma_pay_handle_buffer):
6192         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
6193         Add static payload numbers in addition to the dynamic ones.
6194         Fixes #361639.
6195
6196 2006-10-18  Wim Taymans  <wim@fluendo.com>
6197
6198         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
6199         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
6200         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
6201         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
6202         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
6203         * gst/rtsp/rtspdefs.h:
6204         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
6205         * gst/rtsp/rtspurl.h:
6206         Reuse already existing enum for lower transport.
6207         Add rtspt and rtspu protocols.
6208         Send redirect to rtspt when udp times out.
6209
6210 2006-10-18  Wim Taymans  <wim@fluendo.com>
6211
6212         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
6213         (gst_wavparse_stream_data):
6214         Fix seeking some more, mostly for speed changes.
6215
6216 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
6217
6218         Patch by: Fredrik Persson  <frepe at bredband net>
6219
6220         * sys/v4l2/gstv4l2tuner.c:
6221         * sys/v4l2/gstv4l2tuner.h:
6222           Fix _set_channel(): remove useless g_object_notify() for "channel"
6223           property that doesn't exist any longer and therefore now also
6224           useless redirect (#338818).
6225
6226 2006-10-17  Wim Taymans  <wim@fluendo.com>
6227
6228         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
6229         Some drivers do not support unsetting the non-blocking flag once the
6230         device is opened. In those cases, close/open the device in
6231         non-blocking mode. Fixes #362673.
6232
6233 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
6234
6235         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6236         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
6237         (gst_v4l2src_get_fps):
6238           dear stefan, framespersecond is not frameperiod, reverting but adding
6239           comment
6240
6241 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
6242
6243         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6244         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
6245         (gst_v4l2src_get_fps):
6246           Numerator is numerator and denominator is denominator. Say that aloud
6247           5 times and retry after next beer.
6248
6249 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
6250
6251         Patch by: Josep Torra Valles  <josep at fluendo com>
6252
6253         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
6254         * ext/esd/esdsink.c: (gst_esdsink_write):
6255         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
6256         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
6257         (gst_flac_dec_send_newsegment):
6258         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
6259         (gst_flac_enc_tell_callback):
6260         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
6261         (smokecodec_parse_header), (smokecodec_decode):
6262         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
6263         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
6264         * gst/goom/Makefile.am:
6265         * gst/goom/gstgoom.c:
6266         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
6267         * gst/rtsp/gstrtspsrc.c:
6268         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
6269         * gst/udp/gstudpsink.c:
6270         * gst/udp/gstudpsrc.c:
6271         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
6272         * sys/sunaudio/gstsunaudiomixertrack.h:
6273           Fix a bunch of problems discovered by the Forte compiler, mostly type
6274           mixups and pointer arithmetics with void pointers. Fixes #362603.
6275
6276 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
6277
6278         * ext/speex/gstspeex.c: (plugin_init):
6279         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
6280         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
6281         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
6282         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
6283         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
6284         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
6285         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
6286         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
6287         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
6288         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
6289         (gst_speex_enc_chain), (gst_speex_enc_get_property),
6290         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
6291         * ext/speex/gstspeexenc.h:
6292           Miscellaneous clean-ups, among other things: speexenc => enc to
6293           enhance code readability; change speexenc => speex_enc; in chain
6294           function unref input buffer in case of error; take reference in
6295           event function; use boilerplate macro; use gst_pad_query_peer_*
6296           convenience functions.
6297
6298 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
6299
6300         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
6301         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
6302         (gst_speexenc_set_header_on_caps):
6303           Fix some mem leaks.
6304
6305 2006-10-11  Wim Taymans  <wim@fluendo.com>
6306
6307         * gst/rtsp/URLS:
6308         Added some other URL.
6309
6310         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
6311         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
6312         (gst_rtspsrc_open), (gst_rtspsrc_play),
6313         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
6314         * gst/rtsp/gstrtspsrc.h:
6315         Work on fallback to TCP connection when the UDP socket times out.
6316         Handler server requests, just reply with OK for now.
6317
6318         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
6319         * gst/rtsp/rtspdefs.h:
6320         Added some more Real extension headers.
6321
6322         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
6323         Fix parsing of urls with a ':' that is not part of the hostname:port
6324         part of the url.
6325
6326 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6327
6328         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
6329         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
6330         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
6331           Activate pad before adding it to the already-running element.
6332
6333         * tests/check/elements/icydemux.c: (icydemux_found_pad):
6334           Activate newly-created pad too.
6335
6336 2006-10-11  Wim Taymans  <wim@fluendo.com>
6337
6338         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
6339
6340         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
6341         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
6342         (gst_udpsrc_start):
6343         Fix some leaks in caps and uris. Fixes #361252.
6344
6345 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
6346
6347         * gst/wavparse/Makefile.am:
6348           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
6349
6350 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
6351
6352         * sys/v4l2/gstv4l2xoverlay.c:
6353         * sys/v4l2/gstv4l2xoverlay.h:
6354         Fix build as per the patch in #338818 comment 36.
6355
6356 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
6357
6358         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
6359           Activate pads before adding them to the source.
6360
6361 2006-10-06  Wim Taymans  <wim@fluendo.com>
6362
6363         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
6364         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
6365         Activate pads before adding.
6366
6367 2006-10-06  Wim Taymans  <wim@fluendo.com>
6368
6369         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
6370         (gst_multipart_find_pad_by_mime):
6371         Activate pads before adding.
6372
6373         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
6374         BOILERPLATE sets parent_class for us.
6375
6376 2006-10-06  Wim Taymans  <wim@fluendo.com>
6377
6378         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
6379         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
6380         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
6381         (gst_rtspsrc_alloc_udp_ports),
6382         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
6383         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
6384         (gst_rtspsrc_create_transports_string),
6385         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
6386         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
6387         * gst/rtsp/gstrtspsrc.h:
6388         Rework how the transport string is constructed, try to share channels
6389         and udp ports.
6390         Make most of the stuff less dependant on RTP as we are also going to use
6391         it for RDT.
6392         Add support for transport specific session managers.
6393
6394         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
6395         Implement _flush().
6396
6397         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
6398         * gst/rtsp/rtspdefs.h:
6399         Add generic error return code.
6400
6401         * gst/rtsp/rtspext.h:
6402         Add support for pluggable tranport strings.
6403
6404         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
6405         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
6406         (rtsp_ext_wms_get_context):
6407         Detect WMServer and activate the extension.
6408
6409         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
6410         (rtsp_transport_get_manager), (rtsp_transport_parse):
6411         * gst/rtsp/rtsptransport.h:
6412         Added methods to get mime/manager for certain transports.
6413
6414 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
6415
6416         * ext/cairo/gsttimeoverlay.c:
6417         (gst_cairo_time_overlay_update_font_height):
6418         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
6419         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
6420         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
6421         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
6422         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6423         * ext/libpng/gstpngdec.c: (user_endrow_callback):
6424         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
6425         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
6426         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
6427         (gst_avi_demux_stream_data):
6428         * gst/cutter/gstcutter.c: (gst_cutter_chain):
6429         * gst/debug/efence.c: (gst_efence_buffer_alloc),
6430         (gst_fenced_buffer_copy):
6431         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
6432         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
6433         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
6434         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
6435         (gst_rtspsrc_handle_message):
6436         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6437         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
6438           Printf format fixes.
6439
6440 2006-10-04  Wim Taymans  <wim@fluendo.com>
6441
6442         * gst/rtsp/Makefile.am:
6443         Dist new .h file too.
6444
6445 2006-10-04  Wim Taymans  <wim@fluendo.com>
6446
6447         * gst/rtsp/Makefile.am:
6448         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
6449         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
6450         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
6451         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
6452         (gst_rtspsrc_parse_rtpmap),
6453         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
6454         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
6455         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
6456         * gst/rtsp/gstrtspsrc.h:
6457         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
6458         * gst/rtsp/rtspdefs.h:
6459         * gst/rtsp/rtspext.h:
6460         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
6461         (rtsp_ext_wms_get_context):
6462         * gst/rtsp/rtspextwms.h:
6463         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
6464         (rtsp_transport_parse):
6465         * gst/rtsp/rtsptransport.h:
6466         Factor out extension in separate module.
6467         Fix getcaps to filter against the padtemplate.
6468         Use Content-Base if the server gives one.
6469         Rework the transport parsing a bit for future extensions.
6470         Added some Real Header field definitions.
6471
6472 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6473
6474         * docs/plugins/Makefile.am:
6475         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6476         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6477           added v4l2 stubs
6478         * gst-plugins-good.spec.in:
6479           add v4l2
6480
6481 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
6482
6483         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
6484           Extract disc/album/medium number and count and try harder
6485           to extract track number/count.
6486
6487 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6488
6489         * configure.ac:
6490         * sys/Makefile.am:
6491           add build stuff for v4l2, needs --enable-experimental until
6492           the last bits are resolved
6493
6494 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
6495
6496         * tests/check/Makefile.am:
6497           Disable autodetect test temporarily, so that the build bots
6498           update -bad and the ranks of unreliable video sinks in there.
6499
6500         * tests/check/elements/autodetect.c: (GST_START_TEST):
6501           Skip test if no usable videosink is found.
6502
6503 2006-09-29  Wim Taymans  <wim@fluendo.com>
6504
6505         * gst/rtsp/URLS:
6506         Add some more URLs.
6507
6508         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
6509         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
6510         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
6511         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
6512         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
6513         (gst_rtspsrc_loop), (gst_rtspsrc_send),
6514         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
6515         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
6516         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
6517         * gst/rtsp/gstrtspsrc.h:
6518         Add timeout property to control UDP timeouts.
6519         Fix error messages.
6520         Also start a loop function when operating in UDP mode so that we can
6521         do some more stuff async.
6522         Handle element messages from udpsrc to detect timeouts. If a timeout
6523         happens we currently generate an error.
6524         API: rtspsrc::timeout property.
6525
6526         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
6527         (gst_udpsrc_create):
6528         Really implement the timeout in microseconds and not milliseconds.
6529
6530 2006-09-29  Wim Taymans  <wim@fluendo.com>
6531
6532         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
6533         (gst_udpsrc_create), (gst_udpsrc_set_property),
6534         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
6535         * gst/udp/gstudpsrc.h:
6536         Added property to post a message on timeout.
6537         Updated docs.
6538         When restarting the select, initialize the fdsets again.
6539         Init control sockets so we don't accidentally close a random socket.
6540         API: GstUDPSrc::timeout property
6541
6542 2006-09-29  Wim Taymans  <wim@fluendo.com>
6543
6544         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
6545         Fix flag registration.
6546
6547         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
6548         Reading 0 also means 'no more commands'
6549
6550 2006-09-29  Wim Taymans  <wim@fluendo.com>
6551
6552         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6553
6554         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
6555         Fix possible infinite loop when shutting down, a read can also return
6556         0 to indicate no more messages are available. Fixes #358156.
6557
6558 2006-09-25  Wim Taymans  <wim@fluendo.com>
6559
6560         * gst/autodetect/gstautoaudiosink.c:
6561         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
6562         (gst_auto_audio_sink_find_best):
6563         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
6564         Small cleanups.
6565         don't try to set "sync" property when it is not available.
6566
6567 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6568
6569         Patch by: Peter Kjellerstedt  <pkj at axis com>
6570
6571         * gst/alpha/gstalpha.c:
6572         * gst/rtp/gstrtpamrdepay.c:
6573         * gst/rtsp/gstrtspsrc.c:
6574         * gst/udp/gstudpsrc.c:
6575         * gst/videomixer/videomixer.c:
6576           Include stdlib.h in some more places, makes things compile
6577           with uClibc and -Werror (#357592).
6578
6579 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6580
6581         * ext/jpeg/gstjpegdec.c:
6582           Set minimum height to 8 (from 16), our code should handle
6583           that fine. Some of the buttons on the apple trailer site
6584           are apparently only 15 pixels high (see #357470).
6585
6586 2006-09-23  Wim Taymans  <wim@fluendo.com>
6587
6588         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
6589         (gst_rtspsrc_open):
6590         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
6591         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
6592         (rtsp_connection_receive):
6593         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
6594         * gst/rtsp/rtspdefs.h:
6595         Improve error reporting.
6596
6597 2006-09-23  Wim Taymans  <wim@fluendo.com>
6598
6599         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
6600         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
6601         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
6602         * gst/rtp/gstrtpdepay.c:
6603         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
6604         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
6605         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
6606         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
6607         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
6608         (gst_rtp_mp2t_depay_plugin_init):
6609         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
6610         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
6611         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
6612         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
6613         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
6614         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
6615         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
6616         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
6617         Fix klass typos.
6618         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
6619
6620 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
6621
6622         * configure.ac:
6623           Need  -base CVS for gst_base_rtp_depayload_push_ts().
6624
6625 2006-09-22  Wim Taymans  <wim@fluendo.com>
6626
6627         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
6628         Don't check for a tag that is never there and check if we read the
6629         correct tag. Fixes seeking again.
6630         We must post an error when all pads are unlinked.
6631
6632 2006-09-22  Wim Taymans  <wim@fluendo.com>
6633
6634         * gst/rtp/Makefile.am:
6635         * gst/rtp/gstrtp.c: (plugin_init):
6636         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
6637         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
6638         (gst_rtp_vorbis_pay_reset_packet),
6639         (gst_rtp_vorbis_pay_init_packet),
6640         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
6641         (gst_rtp_vorbis_pay_handle_buffer):
6642         More fixage, set endoder-params correctly in the payloader.
6643
6644 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
6645
6646         * gst/autodetect/gstautoaudiosink.c:
6647         (gst_auto_audio_sink_base_init):
6648         * gst/autodetect/gstautovideosink.c:
6649         (gst_auto_video_sink_base_init):
6650           Make static pad templates static to appease valgrind's leak
6651           detector.
6652
6653         * tests/check/Makefile.am:
6654         * tests/check/elements/.cvsignore:
6655         * tests/check/elements/autodetect.c: (GST_START_TEST),
6656         (autodetect_suite):
6657           Add simple test for the ghostpad lockup on shutdown fixed in core
6658           CVS (audio bit disabled because it would need dozens of alsa
6659           suppressions and I'm too lazy to add those now).
6660
6661 2006-09-22  Wim Taymans  <wim@fluendo.com>
6662
6663         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
6664         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
6665         Small cleanups.
6666
6667         * gst/rtp/Makefile.am:
6668         * gst/rtp/gstrtp.c: (plugin_init):
6669         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
6670         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
6671         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
6672         (gst_rtp_vorbis_depay_process),
6673         (gst_rtp_vorbis_depay_set_property),
6674         (gst_rtp_vorbis_depay_get_property),
6675         (gst_rtp_vorbis_depay_change_state),
6676         (gst_rtp_vorbis_depay_plugin_init):
6677         * gst/rtp/gstrtpvorbisdepay.h:
6678         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
6679         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
6680         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
6681         (gst_rtp_vorbis_pay_flush_packet),
6682         (gst_rtp_vorbis_pay_append_buffer),
6683         (gst_rtp_vorbis_pay_handle_buffer),
6684         (gst_rtp_vorbis_pay_plugin_init):
6685         * gst/rtp/gstrtpvorbispay.h:
6686         Add experimental vorbis pay and depayloaders.
6687
6688 2006-09-21  Wim Taymans  <wim@fluendo.com>
6689
6690         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
6691         Fix profile-level-id parsing and setup.
6692
6693 2006-09-21  Wim Taymans  <wim@fluendo.com>
6694
6695         * gst/udp/README:
6696         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
6697         Update README, simple cleanup.
6698
6699 2006-09-21  Wim Taymans  <wim@fluendo.com>
6700
6701         * gst/rtp/README:
6702         Update README with some examples.
6703
6704         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
6705         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
6706         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
6707         (gst_rtp_mp4g_pay_setcaps):
6708         * gst/rtp/gstrtpmp4gpay.h:
6709         Make optional RTP parameters of type STRING, as required by the
6710         application/x-rtp caps specification.
6711
6712 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
6713
6714         * gst/rtp/gstrtph263pdepay.c:
6715         * gst/rtp/gstrtph263ppay.c:
6716         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
6717         RTP header.
6718
6719 2006-09-20  Wim Taymans  <wim@fluendo.com>
6720
6721         * gst/rtp/Makefile.am:
6722         And makefile too.
6723
6724 2006-09-20  Wim Taymans  <wim@fluendo.com>
6725
6726         * gst/rtp/gstrtp.c: (plugin_init):
6727         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
6728         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
6729         (decode_base64), (gst_rtp_asf_depay_setcaps),
6730         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
6731         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
6732         (gst_rtp_asf_depay_plugin_init):
6733         * gst/rtp/gstrtpasfdepay.h:
6734         Added preliminary ASF depayloader.
6735
6736         * gst/rtp/gstrtph264depay.c: (decode_base64):
6737         Fix base64 decoding.
6738
6739 2006-09-20  Wim Taymans  <wim@fluendo.com>
6740
6741         * gst/rtsp/URLS:
6742         Added some test URLS.
6743
6744         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
6745         (gst_rtspsrc_loop), (gst_rtspsrc_open):
6746         * gst/rtsp/gstrtspsrc.h:
6747         When creating streams, give access to the complete SDP.
6748         Fix some leaks.
6749         Collect and merge global stream properties in stream caps.
6750         Preliminary support for WMServer.
6751
6752         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
6753         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
6754         (rtsp_connection_receive):
6755         * gst/rtsp/rtspconnection.h:
6756         Make connection interruptable.
6757         Refactor to make it reconnectable.
6758         Don't fail on short reads when reading data packets.
6759
6760         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
6761         (rtsp_url_get_port):
6762         * gst/rtsp/rtspurl.h:
6763         Add methods for getting/setting the port.
6764
6765         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
6766         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
6767         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
6768         (sdp_media_get_format), (sdp_parse_line),
6769         (sdp_message_parse_buffer):
6770         Fix headers. 
6771         Add methods for getting multiple attributes with the same name.
6772         Increase buffer size when parsing.
6773         Fix parsing of a=foo fields.
6774
6775         * gst/rtsp/test.c: (main):
6776         Update to new connection API.
6777
6778         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
6779         (rtsp_message_init_response), (rtsp_message_init_data),
6780         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
6781         * gst/rtsp/rtspmessage.h:
6782         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
6783         * gst/rtsp/rtsptransport.h:
6784         * gst/rtsp/sdp.h:
6785         * gst/rtsp/sdpmessage.h:
6786         * gst/rtsp/gstrtsp.c:
6787         * gst/rtsp/gstrtsp.h:
6788         * gst/rtsp/gstrtpdec.c:
6789         * gst/rtsp/gstrtpdec.h:
6790         * gst/rtsp/rtsp.h:
6791         * gst/rtsp/rtspdefs.c:
6792         * gst/rtsp/rtspdefs.h:
6793         Dual licensed under MIT and LGPL now.
6794
6795 2006-09-19  Wim Taymans  <wim@fluendo.com>
6796
6797         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
6798         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
6799         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
6800         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
6801         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
6802         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
6803         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
6804         * gst/rtsp/gstrtspsrc.h:
6805         Reorganize stream parsing and creation.
6806         Detect container formats in interleaved mode.
6807         Keep more state about the streams.
6808         Assume a server also supports PLAY if it does not say.
6809         Add unicast and interleaved properties to TCP transport requests to make
6810         some servers happy (WMServer).
6811
6812         * gst/rtsp/sdpmessage.h:
6813         Add some defines for the standard Bandwidth types.
6814
6815 2006-09-19  Wim Taymans  <wim@fluendo.com>
6816
6817         * gst/rtsp/test.c: (main):
6818         Fix build.
6819
6820 2006-09-19  Wim Taymans  <wim@fluendo.com>
6821
6822         * gst/wavparse/gstwavparse.c:
6823         Add ms-gsm to the src template.
6824
6825 2006-09-18  Wim Taymans  <wim@fluendo.com>
6826
6827         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
6828         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
6829         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
6830         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
6831         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
6832         * gst/rtsp/gstrtspsrc.h:
6833         Small cleanups, added documentation.
6834         Try to clean up the requests and responses.
6835         Refactor parsing the supported methods.
6836
6837         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
6838         (rtsp_connection_create), (rtsp_connection_send),
6839         (parse_response_status), (parse_request_line),
6840         (rtsp_connection_receive), (rtsp_connection_close),
6841         (rtsp_connection_free):
6842         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
6843         (rtsp_transport_init), (rtsp_transport_parse),
6844         (rtsp_transport_free):
6845         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
6846         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
6847         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
6848         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
6849         Use g_return_val some more.
6850
6851         * gst/rtsp/rtspdefs.h:
6852         Add more enum values to track initial states.
6853
6854         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
6855         (rtsp_message_init_request), (rtsp_message_new_response),
6856         (rtsp_message_init_response), (rtsp_message_init_data),
6857         (rtsp_message_unset), (rtsp_message_free),
6858         (rtsp_message_add_header), (rtsp_message_remove_header),
6859         (rtsp_message_get_header), (rtsp_message_set_body),
6860         (rtsp_message_take_body), (rtsp_message_get_body),
6861         (rtsp_message_steal_body), (rtsp_message_dump):
6862         * gst/rtsp/rtspmessage.h:
6863         Reorder arguments, object goes as the first one.
6864         Use g_return_val some more.
6865
6866 2006-09-18  Wim Taymans  <wim@fluendo.com>
6867
6868         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
6869         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
6870         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
6871         * gst/rtsp/gstrtspsrc.h:
6872         Export sometimes source pad with correct caps on the template, create
6873         the ghostpad from the template.
6874         Remove RTCP template as we never expose RTCP.
6875         Protect against invalid body size.
6876         Avoid memcpy when creating the output buffer.
6877         Properly post an error and send EOS when the loop function is shut down.
6878
6879 2006-09-18  Wim Taymans  <wim@fluendo.com>
6880
6881         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
6882
6883         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
6884         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
6885         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
6886         * gst/rtsp/gstrtspsrc.h:
6887         Make sure we can never set an invalid location.
6888
6889         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
6890         * gst/rtsp/rtspmessage.h:
6891         Added _steal_body method for future use.
6892
6893         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
6894         Make freeing of NULL url return immediatly.
6895
6896 2006-09-18  Wim Taymans  <wim@fluendo.com>
6897
6898         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
6899
6900         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
6901         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
6902         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
6903         (gst_rtspsrc_change_state):
6904         * gst/rtsp/gstrtspsrc.h:
6905         Use boilerplate.
6906         Make rtspsrc subclass GstBin to make state changes easier.
6907         Add Range header field on the PLAY request.
6908
6909 2006-09-18  Wim Taymans  <wim@fluendo.com>
6910
6911         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
6912
6913         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
6914         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
6915         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
6916         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
6917         * gst/rtsp/rtspconnection.c: (inet_aton):
6918         Small cleanups.
6919         when multicast is selected as the transport, create UDP sources and
6920         connect to the multicast group.
6921         Move parsing and setting of caps to a common place.
6922         Fixes #349894.
6923
6924 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
6925
6926         * ext/flac/gstflactag.c:
6927         * gst/alpha/gstalpha.c:
6928         * gst/debug/breakmydata.c:
6929         * gst/debug/negotiation.c:
6930         * gst/debug/testplugin.c:
6931         * gst/effectv/gstaging.c:
6932         * gst/effectv/gstdice.c:
6933         * gst/effectv/gstedge.c:
6934         * gst/effectv/gstquark.c:
6935         * gst/effectv/gstrev.c:
6936         * gst/effectv/gstshagadelic.c:
6937         * gst/effectv/gstvertigo.c:
6938         * gst/effectv/gstwarp.c:
6939         * gst/multipart/multipartdemux.c:
6940         * gst/multipart/multipartmux.c:
6941         * gst/videobox/gstvideobox.c:
6942         * gst/videofilter/gstgamma.c:
6943         * gst/videofilter/gstvideotemplate.c:
6944         * gst/videomixer/videomixer.c:
6945         * sys/sunaudio/gstsunaudiosrc.h:
6946         More G_OBJECT macro fixing.
6947
6948 2006-09-16  Wim Taymans  <wim@fluendo.com>
6949
6950         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
6951
6952         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
6953         Correctly set the dwLength in strh.
6954         With this patch, the file duration is now displayed correctly in window
6955         media player and the AVI plays completely. Fixes #356147
6956
6957 2006-09-15  Wim Taymans  <wim@fluendo.com>
6958
6959         Patch by: Darren Kenny <darren dot kenny at sun dot com>
6960
6961         * sys/sunaudio/gstsunaudiomixerctrl.c:
6962         (gst_sunaudiomixer_ctrl_build_list):
6963         Set the output track as the MASTER so that the gnome-settings-daemon
6964         keybindings for changing the volume using the keyboard works.
6965         Fixes #356142.
6966
6967 2006-09-15  Wim Taymans  <wim@fluendo.com>
6968
6969         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
6970         Fix documentation, it is not possible to control the framerate of jpegdec
6971         using filtered caps yet. Fixes #355210.
6972         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
6973         stop when there is an error.
6974
6975 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
6976
6977         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
6978         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
6979           Don't interpret a first buffer with an offset of NONE as
6980           'from the middle of the stream', but only a first buffer
6981           that has a valid buffer offset that's non-zero (see #345449).
6982
6983 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
6984
6985         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
6986         (gst_icydemux_typefind_or_forward):
6987         * gst/icydemux/gsticydemux.h:
6988           When we merge/collect multiple incoming buffers for typefinding
6989           purposes, keep an initial 0 offset on the first outgoing buffer
6990           as well (otherwise id3demux won't work right). Fixes #345449.
6991           Also Make buffer metadata writable before setting buffer caps.
6992
6993         * tests/check/elements/icydemux.c: (typefind_succeed),
6994         (cleanup_icydemux), (push_data), (GST_START_TEST),
6995         (icydemux_suite):
6996           Small test case for the above.
6997
6998 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
6999
7000         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
7001         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
7002         (gst_avi_demux_stream_header_push),
7003         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
7004         (gst_avi_demux_loop):
7005           More code reuse and better logging in _peek_chunk(). Reintroduce check
7006           for chunk sizes before reading them (avoid oom). Better handling for 
7007           invalid chunksizes when streaming.
7008
7009 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
7010
7011         * gst/level/gstlevel.c: (gst_level_set_property):
7012         * gst/level/gstlevel.h:
7013           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
7014           René Stadler
7015
7016 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
7017
7018         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
7019         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
7020         (gst_avi_demux_stream_data):
7021           Revert one change to fix streaming avi (adapter size != data size).
7022
7023 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
7024
7025         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
7026
7027         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
7028         (gst_matroska_demux_reset),
7029         (gst_matroska_demux_read_track_encodings),
7030         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
7031         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7032         (gst_matroska_demux_subtitle_caps):
7033         * gst/matroska/matroska-ids.h:
7034           Add support for VOBSUB subtitle tracks and zlib-compressed
7035           tracks. Make sure we start on a keyframe after a seek. (#343348)
7036
7037 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
7038
7039         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
7040         (gst_matroska_demux_push_flac_codec_priv_data),
7041         (gst_matroska_demux_push_xiph_codec_priv_data),
7042         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7043         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
7044         * gst/matroska/matroska-ids.h:
7045           Add basic FLAC support (#311586), not perfect yet though, needs some
7046           tweaking in flacdec; also, seeking could be better.
7047           Do better bounds checking when deserialising vorbis stream headers
7048           to make sure we don't read beyond the end of the buffer on bad input.
7049
7050 2006-09-04  Wim Taymans  <wim@fluendo.com>
7051
7052         Patch by: Alessandro Decina <alessandro at nnva dot org>
7053
7054         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
7055         Seeking back in a file containing a CMML stream errors out if the seek
7056         goes back up to the CMML headers. This is because after the seek the xml
7057         processing instruction <?xml ...?> is submitted to the xml parser again, 
7058         which results in an error. The attached patch fixes the problem. 
7059         Fixes #353908.
7060
7061         * ext/annodex/gstcmmlenc.h:
7062         Fix authors name.
7063
7064
7065 2006-08-28  Andy Wingo  <wingo@pobox.com>
7066
7067         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
7068         New helper function to lessen the ifdefs.
7069         (GST_INFO_OBJECT): 
7070         (gst_dv1394src_iso_receive): Use it.
7071         (gst_dv1394src_create): Also use the control sockets in iec61883
7072         mode.
7073         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
7074         handle for AVC operations; fixes #348233.
7075
7076 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
7077
7078         * configure.ac:
7079         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7080         * docs/plugins/inspect/plugin-audiofx.xml:
7081         * docs/plugins/inspect/plugin-audiofxgood.xml:
7082         * gst/audiofx/Makefile.am:
7083         * gst/audiofx/audiofx.c:
7084         * gst/audiofxgood/.cvsignore:
7085         * gst/audiofxgood/Makefile.am:
7086         * gst/audiofxgood/audiofx.c:
7087         * gst/audiofxgood/audiopanorama.c:
7088         * gst/audiofxgood/audiopanorama.h:
7089           Rename again (audiofxgood -> audiofx).
7090
7091 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
7092
7093         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
7094         (gst_avi_demux_stream_scan):
7095           Initialze variables.
7096
7097 2006-08-25  Wim Taymans  <wim@fluendo.com>
7098
7099         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
7100         (gst_avi_demux_init), (gst_avi_demux_finalize),
7101         (gst_avi_demux_reset), (gst_avi_demux_index_last),
7102         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
7103         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
7104         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
7105         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
7106         (gst_avi_demux_massage_index),
7107         (gst_avi_demux_calculate_durations_from_index),
7108         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
7109         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
7110         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
7111         (gst_avi_demux_change_state):
7112         * gst/avi/gstavidemux.h:
7113         More attempts to turn this into readable code.
7114         Don't leak adapters.
7115         Calculate duration according to index more efficiently.
7116         Don't try to act like we drive the pipeline in chain mode.
7117
7118 2006-08-25  Wim Taymans  <wim@fluendo.com>
7119
7120         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
7121         Fix build.
7122
7123 2006-08-25  Wim Taymans  <wim@fluendo.com>
7124
7125         Patch by: Alessandro Decina <alessandro at nnva dot org>
7126
7127         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
7128         Do some extra sanity checks.
7129         Fixes #350340.
7130
7131         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
7132         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
7133         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
7134         Check if clip->start_time is valid before adding the clip to the
7135         track list.
7136         Reset enc->preamble going from PAUSED to READY.
7137         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
7138         only used for EOS.
7139         Only post an error message if we were the one that created the fatal
7140         GstFlowReturn value.
7141
7142         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
7143         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
7144         Parse the seconds field of the npt-sec time format using %llu rather than
7145         %d and check that the value scaled by GST_SECOND doesn't overflow.
7146         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
7147         Lookup a clip's track with clip->track rather than clip->id which
7148         makes no sense.
7149         Identify a clip by its track and start time and not its xml id.
7150         do some more input checking and make sure we don't do undefined shifts.
7151
7152         * tests/check/elements/cmmldec.c: (setup_cmmldec),
7153         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
7154         (cmml_tag_message_pop), (check_headers), (push_clip_full),
7155         (push_clip), (push_empty_clip), (check_output_clip),
7156         (GST_START_TEST), (cmmldec_suite):
7157         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
7158         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
7159         (check_headers), (push_clip), (check_clip_times), (check_clip),
7160         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
7161         Added some more checks.
7162
7163 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
7164
7165         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
7166         (gst_audio_panorama_set_property),
7167         (gst_audio_panorama_get_property),
7168         (gst_audio_panorama_transform_m2s_int),
7169         (gst_audio_panorama_transform_s2s_int),
7170         (gst_audio_panorama_transform_m2s_float),
7171         (gst_audio_panorama_transform_s2s_float):
7172         * gst/audiofxgood/audiopanorama.h:
7173         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
7174           Make also the pan-property float (saves scaling and yields better
7175           resolution)
7176
7177 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
7178
7179         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
7180         (gst_audio_panorama_transform_m2s_float),
7181         (gst_audio_panorama_transform_s2s_float):
7182           ChangeLog surgery to add cymax's real name
7183
7184
7185 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
7186
7187         Patch by: René Stadler <mail@renestadler.de>
7188
7189         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
7190         (gst_audio_panorama_transform_m2s_int),
7191         (gst_audio_panorama_transform_s2s_int),
7192         (gst_audio_panorama_transform_m2s_float),
7193         (gst_audio_panorama_transform_s2s_float),
7194         (gst_audio_panorama_transform):
7195         * gst/audiofxgood/audiopanorama.h:
7196           Added float support
7197
7198 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
7199
7200         * gst/audiofxgood/audiopanorama.c:
7201         (gst_audio_panorama_transform_m2s):
7202           Fix docs & debug category. Add Fixme for volume pan levels.
7203
7204 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
7205
7206         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
7207         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
7208         (gst_avi_demux_stream_header_pull),
7209         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
7210         (gst_avi_demux_chain):
7211           unbreak AVI index handling, some more debug, remove an obsolete
7212           adapter_flush that caused streaming to wander off in the wild
7213
7214 2006-08-24  Wim Taymans  <wim@fluendo.com>
7215
7216         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
7217         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
7218         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
7219         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
7220         (gst_avi_demux_calculate_durations_from_index),
7221         (gst_avi_demux_stream_header_push),
7222         (gst_avi_demux_stream_header_pull):
7223         * gst/avi/gstavidemux.h:
7224         Some more cleanups. 
7225         Fix totalFrames parsing in ODML.
7226         Disable use of index for length calculation in case of ODML as this is
7227         broken now.
7228
7229 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
7230
7231         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
7232           Use libgsttag helper function here too.
7233
7234 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
7235
7236         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
7237         (gst_avi_demux_init), (gst_avi_demux_dispose),
7238         (gst_avi_demux_reset), (gst_avi_demux_index_next),
7239         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
7240         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
7241         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
7242         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
7243         (gst_avi_demux_parse_subindex),
7244         (gst_avi_demux_read_subindexes_push),
7245         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
7246         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
7247         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
7248         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
7249         (gst_avi_demux_stream_header_pull),
7250         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
7251         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
7252         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
7253         (gst_avi_demux_change_state):
7254         * gst/avi/gstavidemux.h:
7255           Initial streaming support for avidemux (fixes #336465)
7256
7257 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
7258
7259         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7260           There is no taglibmux element ...
7261
7262         * gst/rtsp/gstrtspsrc.c:
7263           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
7264           was complaining about unknown entity here.
7265
7266 2006-08-22  Wim Taymans  <wim@fluendo.com>
7267
7268         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
7269         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
7270         (gst_avi_demux_process_next_entry):
7271         * gst/avi/gstavidemux.h:
7272         Mark DISCONT.
7273         Remove old unused fields and reorder the struct a bit.
7274
7275 2006-08-22  Wim Taymans  <wim@fluendo.com>
7276
7277         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
7278         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
7279         (gst_rtspsrc_pause):
7280         * gst/rtsp/gstrtspsrc.h:
7281         * sys/oss/gstosssink.c: (gst_oss_sink_open),
7282         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
7283         Small documentation updates.
7284
7285 2006-08-22  Wim Taymans  <wim@fluendo.com>
7286
7287         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
7288         (gst_avi_demux_index_entry_for_time),
7289         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
7290         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
7291         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
7292         (gst_avi_demux_next_data_buffer),
7293         (gst_avi_demux_calculate_durations_from_index),
7294         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
7295         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
7296         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
7297         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
7298         * gst/avi/gstavidemux.h:
7299         Precalc most of the duration query for each stream.
7300         Make seeking more correct.
7301         Use GstSegment to track position and duration.
7302         Code cleanups and leak fixes.
7303         Calculate correct total duration based on index length.
7304
7305 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
7306
7307         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
7308         (parse_insert_string_field):
7309           If strings in text fields are marked ISO8859-1, but contain
7310           valid UTF-8 already, then handle them as UTF-8 and ignore
7311           the encoding. (#351794)
7312
7313 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
7314
7315         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
7316         (gst_flac_dec_write), (gst_flac_dec_loop),
7317         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
7318         (gst_flac_dec_src_query):
7319         * ext/flac/gstflacdec.h:
7320           Make flac-in-ogg work (#352100).
7321
7322 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
7323
7324         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
7325           Don't unref buffers of which we've already given away
7326           ownership to the adapter.
7327
7328 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
7329
7330         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
7331           Make metadata extraction actually work.
7332
7333         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
7334         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
7335         (gst_speexenc_chain):
7336           Fix metadata writing: replace old code which wrote completely
7337           broken tags with libgsttag-based code. Plus miscellaneous
7338           code cleanups (use static pad templates etc.) and a bunch
7339           of leak fixes.
7340
7341 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
7342
7343         * gst/audiopanorama/.cvsignore:
7344         * gst/audiopanorama/Makefile.am:
7345         * gst/audiopanorama/audiofx.c:
7346         * gst/audiopanorama/audiopanorama.c:
7347         * gst/audiopanorama/audiopanorama.h:
7348           die! die! die! you should never have been there
7349
7350 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
7351
7352         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
7353         Fix invalid memory access in audiopanorama test suite.
7354
7355 2006-08-21  Edward Hervey  <edward@fluendo.com>
7356
7357         * tests/check/elements/.cvsignore:
7358         ignore built file
7359
7360 2006-08-21  Wim Taymans  <wim@fluendo.com>
7361
7362         * gst/rtp/Makefile.am:
7363         Fix the build again.
7364
7365 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
7366
7367         * gst/audiofxgood/.cvsignore:
7368         * gst/audiofxgood/Makefile.am:
7369         * gst/audiofxgood/audiofx.c: (plugin_init):
7370         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
7371         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
7372         (gst_audio_panorama_set_property),
7373         (gst_audio_panorama_get_property),
7374         (gst_audio_panorama_get_unit_size),
7375         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
7376         (gst_audio_panorama_transform_m2s),
7377         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
7378         * gst/audiofxgood/audiopanorama.h:
7379           resubmit with the desired name *again*
7380
7381 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
7382
7383         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
7384         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
7385           use g_assert in _get_unit_size
7386
7387 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
7388
7389         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7390         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7391         * docs/plugins/inspect/plugin-audiofxgood.xml:
7392           cleanup -unused.txt to make it useful, add previously missing docs
7393
7394         * ext/Makefile.am:
7395           Quietly (accidentally) enable LADSPA for building by default, 
7396           despite the fact that it doesn't meet the plugin checklist.
7397             -- Added by Jan Schmidt 18 Dec 2006
7398
7399         * ext/esd/esdmon.c:
7400         * ext/esd/esdsink.c:
7401         * ext/esd/gstesd.c: (plugin_init):
7402           reflow to get rid of two external symbols
7403
7404         * gst/audiofxgood/audiofx.c: (plugin_init):
7405           re-add
7406
7407 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
7408
7409         * configure.ac:
7410         * gst/audiofxgood/.cvsignore:
7411         * gst/audiofxgood/Makefile.am:
7412         * gst/audiofxgood/audiofx.c
7413         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
7414         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
7415         (gst_audio_panorama_set_property),
7416         (gst_audio_panorama_get_property),
7417         (gst_audio_panorama_get_unit_size),
7418         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
7419         (gst_audio_panorama_transform_m2s),
7420         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
7421         * gst/audiofxgood/audiopanorama.h:
7422         * tests/check/Makefile.am:
7423         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
7424         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
7425         (panorama_suite), (main):
7426         Add audiofxgood plugin with audiopanorama element
7427
7428 2006-08-18  Wim Taymans  <wim@fluendo.com>
7429
7430         * docs/plugins/Makefile.am:
7431         More Oss docs fixage. 
7432
7433 2006-08-18  Wim Taymans  <wim@fluendo.com>
7434
7435         * gst/rtp/Makefile.am:
7436         * gst/rtp/gstrtp.c: (plugin_init):
7437         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
7438         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
7439         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
7440         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
7441         (gst_rtp_sv3v_depay_get_property),
7442         (gst_rtp_sv3v_depay_change_state),
7443         (gst_rtp_sv3v_depay_plugin_init):
7444         * gst/rtp/gstrtpsv3vdepay.h:
7445         Added experimental SVQ3 depayloader.
7446
7447 2006-08-18  Edward Hervey  <edward@fluendo.com>
7448
7449         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
7450         (gst_dvdemux_loop), (gst_dvdemux_change_state):
7451         * ext/dv/gstdvdemux.h:
7452         When handling seek requests, don't send the newsegment event from the
7453         calling thread. Instead save it so it can be sent from the streaming
7454         thread.
7455
7456 2006-08-17  Wim Taymans  <wim@fluendo.com>
7457
7458         Patch by: Sjoerd Simons <sjoerd at luon dot net>
7459
7460         * gst/multipart/multipartdemux.c: (multipart_parse_header):
7461         Accept leading whitespace before the boundary
7462         This patch makes the demuxer allow some whitespace before the actual
7463         boundary. This makes the demuxer work with the ``old'' gstreamer
7464         multipartmuxer again (which placed an extra \n before the start
7465         of the stream) Fixes #349068.
7466
7467 2006-08-17  Wim Taymans  <wim@fluendo.com>
7468
7469         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
7470         Error out on non-implemented stuff.
7471
7472 2006-08-16  Wim Taymans  <wim@fluendo.com>
7473
7474         Patch by: Andy Wingo <wingo at pobox dot com>
7475
7476         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
7477         (gst_signal_processor_start), (gst_signal_processor_stop),
7478         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
7479         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
7480         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
7481         (gst_signal_processor_change_state):
7482         Make ladspa elements reusable. Fixes #350006.
7483
7484 2006-08-16  Wim Taymans  <wim@fluendo.com>
7485
7486         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
7487         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
7488         names as possible. Fixes #349901.
7489
7490 2006-08-16  Wim Taymans  <wim@fluendo.com>
7491
7492         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
7493         (gst_signal_processor_do_pushes):
7494         A push() gives away our refcount so we should not use the buffer on the
7495         pen anymore.
7496
7497 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
7498
7499         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
7500         (gst_oss_mixer_element_finalize):
7501           Don't leak device string.
7502
7503 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
7504
7505         * configure.ac:
7506           Require CVS of GStreamer core and -base (for
7507           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
7508
7509         * ext/taglib/gstid3v2mux.cc:
7510           Write extended comment tags properly (#348762).
7511
7512         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
7513         (parse_comment_frame):
7514           Extract COMM frames into extended comments, which makes it
7515           easier to properly retain the description bit of the tag
7516           and maintain this information when re-tagging (#348762).
7517
7518 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
7519
7520         * tests/check/Makefile.am:
7521           Don't try to run annodex unit tests if the annodex
7522           plugin has not been built (Fixes #351116).
7523
7524 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
7525
7526         * gst/autodetect/gstautoaudiosink.c:
7527         (gst_auto_audio_sink_find_best):
7528           When we can't find a usable audiosink, don't error out,
7529           but use a fake sink instead and post a warning message
7530           on the bus (#341278).
7531
7532 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
7533
7534         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
7535         * sys/oss/gstosssink.c:
7536         * sys/oss/gstosssrc.c:
7537           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
7538           ossmixer's new device property.
7539
7540         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7541         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7542           Add docs for OSS elements.
7543
7544         * docs/plugins/inspect/plugin-aasink.xml:
7545         * docs/plugins/inspect/plugin-alaw.xml:
7546         * docs/plugins/inspect/plugin-alpha.xml:
7547         * docs/plugins/inspect/plugin-alphacolor.xml:
7548         * docs/plugins/inspect/plugin-annodex.xml:
7549         * docs/plugins/inspect/plugin-apetag.xml:
7550         * docs/plugins/inspect/plugin-auparse.xml:
7551         * docs/plugins/inspect/plugin-autodetect.xml:
7552         * docs/plugins/inspect/plugin-avi.xml:
7553         * docs/plugins/inspect/plugin-cacasink.xml:
7554         * docs/plugins/inspect/plugin-cairo.xml:
7555         * docs/plugins/inspect/plugin-cdio.xml:
7556         * docs/plugins/inspect/plugin-cutter.xml:
7557         * docs/plugins/inspect/plugin-debug.xml:
7558         * docs/plugins/inspect/plugin-dv.xml:
7559         * docs/plugins/inspect/plugin-efence.xml:
7560         * docs/plugins/inspect/plugin-effectv.xml:
7561         * docs/plugins/inspect/plugin-esdsink.xml:
7562         * docs/plugins/inspect/plugin-flac.xml:
7563         * docs/plugins/inspect/plugin-flxdec.xml:
7564         * docs/plugins/inspect/plugin-gconfelements.xml:
7565         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
7566         * docs/plugins/inspect/plugin-goom.xml:
7567         * docs/plugins/inspect/plugin-halelements.xml:
7568         * docs/plugins/inspect/plugin-icydemux.xml:
7569         * docs/plugins/inspect/plugin-id3demux.xml:
7570         * docs/plugins/inspect/plugin-jpeg.xml:
7571         * docs/plugins/inspect/plugin-level.xml:
7572         * docs/plugins/inspect/plugin-matroska.xml:
7573         * docs/plugins/inspect/plugin-mulaw.xml:
7574         * docs/plugins/inspect/plugin-multipart.xml:
7575         * docs/plugins/inspect/plugin-navigationtest.xml:
7576         * docs/plugins/inspect/plugin-ossaudio.xml:
7577         * docs/plugins/inspect/plugin-png.xml:
7578         * docs/plugins/inspect/plugin-rtp.xml:
7579         * docs/plugins/inspect/plugin-rtsp.xml:
7580         * docs/plugins/inspect/plugin-shout2send.xml:
7581         * docs/plugins/inspect/plugin-smpte.xml:
7582         * docs/plugins/inspect/plugin-speex.xml:
7583         * docs/plugins/inspect/plugin-taglib.xml:
7584         * docs/plugins/inspect/plugin-udp.xml:
7585         * docs/plugins/inspect/plugin-videobalance.xml:
7586         * docs/plugins/inspect/plugin-videobox.xml:
7587         * docs/plugins/inspect/plugin-videoflip.xml:
7588         * docs/plugins/inspect/plugin-videomixer.xml:
7589         * docs/plugins/inspect/plugin-wavenc.xml:
7590         * docs/plugins/inspect/plugin-wavparse.xml:
7591         * docs/plugins/inspect/plugin-ximagesrc.xml:
7592           Update to CVS version.
7593           
7594 2006-08-16  Wim Taymans  <wim@fluendo.com>
7595
7596         * gst/rtp/gstrtpamrdepay.c:
7597         * gst/rtp/gstrtpmp4gdepay.c:
7598         Caps extra properties must be defined as strings for
7599         depayloaders because they are generated from an SDP.
7600
7601         * gst/rtp/Makefile.am:
7602         * gst/rtp/gstrtp.c: (plugin_init):
7603         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
7604         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
7605         (gst_rtp_h264_depay_finalize), (decode_base64),
7606         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
7607         (gst_rtp_h264_depay_set_property),
7608         (gst_rtp_h264_depay_get_property),
7609         (gst_rtp_h264_depay_change_state),
7610         (gst_rtp_h264_depay_plugin_init):
7611         * gst/rtp/gstrtph264depay.h:
7612         Added basic, not completely functional RFC 3984 H264 depayloader.
7613
7614 2006-08-16  Wim Taymans  <wim@fluendo.com>
7615
7616         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
7617         Add pads after setting them up.
7618
7619         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
7620         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
7621         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
7622         (gst_rtspsrc_stream_setup_rtp),
7623         (gst_rtspsrc_stream_configure_transport),
7624         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
7625         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
7626         (gst_rtspsrc_pause):
7627         * gst/rtsp/gstrtspsrc.h:
7628         Fix interleaved mode.
7629          - Protect streaming with lock.
7630          - Combine flows
7631          - set caps on outgoing buffers.
7632          - strip trailing \0 from data packets.
7633          - Configure RTP/RTCP in stream.
7634         Use DEBUG_OBJECT more.
7635
7636 2006-08-16  Wim Taymans  <wim@fluendo.com>
7637
7638         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
7639         Turn a g_print into a DEBUG line.
7640
7641 2006-08-13  Wim Taymans  <wim@fluendo.com>
7642
7643         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
7644         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
7645         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
7646         (gst_oss_mixer_element_get_property),
7647         (gst_oss_mixer_element_change_state):
7648         * sys/oss/gstossmixerelement.h:
7649         Small cleanups. Better error reporting.
7650         Add device property for the mixer instead of the hardcoded
7651         /dev/mixer. Fixes #350785.
7652         API: GstOssMixerElement::device property
7653
7654 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
7655
7656         Patch by: Jens Granseuer <jensgr at gmx net>
7657
7658         * gconf/Makefile.am:
7659           Make --disable-schemas work right (they still need
7660           to be copied to the installation directory, just not
7661           applied). Fixes #351347 (also #344100).
7662           
7663 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7664
7665         * configure.ac: back to HEAD
7666
7667 === release 0.10.4 ===
7668
7669 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
7670
7671         * configure.ac:
7672           releasing 0.10.4, "Dear Leader"
7673
7674 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7675
7676         Patch by: Edward Hervey <edward@fluendo.com>
7677
7678         * configure.ac:
7679         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
7680         (gst_wavparse_stream_data):
7681         Send the newsegment event in the streaming thread.
7682         Fixes #347529
7683
7684 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
7685
7686         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
7687         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
7688         (gst_smokeenc_resync), (gst_smokeenc_chain):
7689           Refuse sink caps in the encoder if width or height is not a
7690           multiple of 16, the encoder does not support that yet (#349939);
7691           along the same lines, check the return value of the encoder
7692           setup function; also remove some debug log clutter.
7693
7694 2006-08-04  Andy Wingo  <wingo@pobox.com>
7695
7696         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
7697         whether a processor can work in place or not, and for keeping
7698         track of its state. Change the FlowReturn instance variable from
7699         "state" to "flow_state", all callers changed.
7700
7701         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
7702         (gst_signal_processor_start, gst_signal_processor_stop)
7703         (gst_signal_processor_cleanup): New functions to manage the
7704         processor's state.
7705         (gst_signal_processor_setcaps): start() as well as setup() here.
7706         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
7707         (gst_signal_processor_change_state): Stop and cleanup the
7708         processor as we go to NULL.
7709
7710         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
7711         INPLACE_BROKEN is not set.
7712
7713         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
7714         Do the alloc_buffer in bytes, not frames.
7715         
7716 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7717
7718         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
7719         Fix rgb masks when recording in < 24bpp.
7720
7721 2006-08-04  Andy Wingo  <wingo@pobox.com>
7722
7723         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
7724         (gst_signal_processor_prepare)
7725         (gst_signal_processor_update_inputs)
7726         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
7727         (gst_signal_processor_flush)
7728         (gst_signal_processor_sink_activate_push)
7729         (gst_signal_processor_src_activate_pull)
7730         (gst_signal_processor_change_state): Remove the last of the code
7731         that assumes that we process whole buffers at a time. Fix some
7732         debugging. Seems to work now in some cases.
7733         (gst_signal_processor_src_activate_pull): BPB
7734
7735 2006-08-01  Andy Wingo  <wingo@pobox.com>
7736
7737         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
7738         Fix nframes-choosing.
7739         (gst_signal_processor_init): Init pending_in and pending_out.
7740
7741         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
7742         more default sample rate, although we never check that the sample
7743         rate actually gets set. Something for the future.
7744         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
7745         (gst_signal_processor_event): Refcount fixen.
7746         (gst_signal_processor_process): Pull the number of frames to
7747         process from the sizes of the buffers in the input pens.
7748         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
7749         (gst_signal_processor_do_pulls): Add an nframes argument, and use
7750         it instead of buffer_frames.
7751         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
7752         to do_pulls.
7753         (gst_signal_processor_chain)
7754         (gst_signal_processor_sink_activate_push)
7755         (gst_signal_processor_src_activate_pull):  Refcount fixen.
7756
7757         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
7758
7759 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
7760
7761         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
7762         (gst_signal_processor_process):
7763           don't query buffer-frames from caps, add lots of debug-log,
7764           try fix for assert (#349189)
7765
7766 2006-07-31  Wim Taymans  <wim@fluendo.com>
7767
7768         * gst/udp/gstudpsrc.c:
7769         Fix docs.
7770
7771 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
7772
7773         * ext/ladspa/gstsignalprocessor.c:
7774         (gst_signal_processor_add_pad_from_template),
7775         (gst_signal_processor_init), (gst_signal_processor_setcaps),
7776         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
7777         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
7778         (gst_signal_processor_sink_activate_push),
7779         (gst_signal_processor_src_activate_pull),
7780         (gst_signal_processor_change_state):
7781          Add debugs logs here and there, add more error handling, add some
7782          FIXME comments, filed #349189
7783
7784 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7785
7786         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
7787         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
7788         Set caps on buffer correctly.  Fixes bug #349155.
7789
7790 2006-07-28  Wim Taymans  <wim@fluendo.com>
7791
7792         Patch by: Sjoerd Simons <sjoerd at luon dot net>
7793
7794         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
7795         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
7796         (gst_multipart_demux_finalize), (get_line_end),
7797         (multipart_parse_header), (multipart_find_boundary),
7798         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
7799         (gst_multipart_set_property), (gst_multipart_get_property):
7800         Uses GstAdapter instead of own buffering.
7801         Actually parses the mime-type correctly (In tests the mime-type was
7802         always "" with the old version).
7803         Uses the Content-length header if available to speed up things.
7804         Reliably autoscans the boundary name by default.
7805         Fixes #349068.
7806
7807         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
7808         Don't start the stream with a \n.
7809
7810 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
7811
7812         Patch by: Brian Cameron <brian dot cameron at sun com>
7813
7814         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
7815           Open source with O_NONBLOCK (#349015).
7816
7817 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
7818
7819         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
7820         (gst_avi_demux_massage_index):
7821         * gst/avi/gstavidemux.h:
7822           Whitespace fixes and more debug
7823
7824 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
7825
7826         * gst/autodetect/gstautoaudiosink.c:
7827         (gst_auto_audio_sink_create_element_with_pretty_name),
7828         (gst_auto_audio_sink_find_best),
7829         (gst_auto_audio_sink_change_state):
7830           Get rid of old and unused magic sound-server properties stuff.
7831           Add suffix to child sink's name that makes it easy to see from
7832           the name alone which type it actually is (alsa, oss, esd, etc.).
7833
7834 2006-07-27  Wim Taymans  <wim@fluendo.com>
7835
7836         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
7837         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
7838         (gst_udpsrc_start):
7839         * gst/udp/gstudpsrc.h:
7840         Rename "buffer" to "buffer-size" to make clear it is a size we set and
7841         not some sort of feature we enable.
7842
7843 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
7844
7845         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7846           Use CLOSE_SOCKET() here instead of close() to maintain
7847           win32 workiness.
7848
7849 2006-07-27  Wim Taymans  <wim@fluendo.com>
7850
7851         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
7852
7853         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
7854         (gst_udpsrc_create), (gst_udpsrc_set_property),
7855         (gst_udpsrc_get_property), (gst_udpsrc_start):
7856         * gst/udp/gstudpsrc.h:
7857         Added "buffer-size" property to control the kernel receive buffer size.
7858         Update documentation.
7859         Small cleanups. Fixes #348752.
7860         API: buffer-size property
7861
7862 2006-07-26  Wim Taymans  <wim@fluendo.com>
7863
7864         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
7865
7866         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
7867         (gst_rtp_pcma_pay_handle_buffer):
7868         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
7869         (gst_rtp_pcmu_pay_handle_buffer):
7870         Fix timestamp calculation on outgoing RTP packets.
7871         Fixes #348675.
7872
7873 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
7874
7875         * ext/taglib/gstid3v2mux.cc:
7876           Fix writing of comment frames (should be COMM not TCOM),
7877           is still sub-optimal though, since we don't retain or
7878           extract the comment descriptions properly (#334375,
7879           also see #334375).
7880
7881 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
7882
7883         * gst/wavparse/gstwavparse.c:
7884           #define 'fact' RIFF chunk if we are not compiling against
7885           -base CVS (we don't want to depend on -base CVS for this
7886           one define only, and also not for release order reasons).
7887
7888 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
7889
7890         * ext/taglib/gstid3v2mux.cc:
7891           Handle multiple tags of the same type properly. Re-inject
7892           unparsed ID3v2 frames that we get as binary blobs from
7893           id3demux into the tag again so we don't lose information
7894           when retagging (#334375).
7895
7896 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
7897
7898         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
7899           Document newly-added properties properly, so that there is a
7900           'Since: 0.10.4' in the plugin docs. Convert some property
7901           names into canonical GObject style (GObject will do that
7902           internally anyway).
7903
7904 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
7905
7906         * gst/id3demux/id3tags.c:
7907         (id3demux_add_id3v2_frame_blob_to_taglist):
7908           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
7909           well, and add the version to the blob's buffer caps, since that
7910           information will be needed for deserialisation later on (#348644).
7911
7912 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
7913
7914         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
7915         (gst_avi_demux_parse_stream):
7916          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
7917          indentation and spacing.
7918
7919 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
7920
7921         * docs/plugins/Makefile.am:
7922         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7923         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7924         * docs/plugins/gst-plugins-good-plugins.args:
7925         * docs/plugins/inspect/plugin-1394.xml:
7926         * docs/plugins/inspect/plugin-aasink.xml:
7927         * docs/plugins/inspect/plugin-alaw.xml:
7928         * docs/plugins/inspect/plugin-alpha.xml:
7929         * docs/plugins/inspect/plugin-alphacolor.xml:
7930         * docs/plugins/inspect/plugin-annodex.xml:
7931         * docs/plugins/inspect/plugin-apetag.xml:
7932         * docs/plugins/inspect/plugin-auparse.xml:
7933         * docs/plugins/inspect/plugin-autodetect.xml:
7934         * docs/plugins/inspect/plugin-avi.xml:
7935         * docs/plugins/inspect/plugin-cacasink.xml:
7936         * docs/plugins/inspect/plugin-cairo.xml:
7937         * docs/plugins/inspect/plugin-cdio.xml:
7938         * docs/plugins/inspect/plugin-cutter.xml:
7939         * docs/plugins/inspect/plugin-debug.xml:
7940         * docs/plugins/inspect/plugin-dv.xml:
7941         * docs/plugins/inspect/plugin-efence.xml:
7942         * docs/plugins/inspect/plugin-effectv.xml:
7943         * docs/plugins/inspect/plugin-esdsink.xml:
7944         * docs/plugins/inspect/plugin-flac.xml:
7945         * docs/plugins/inspect/plugin-flxdec.xml:
7946         * docs/plugins/inspect/plugin-gconfelements.xml:
7947         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
7948         * docs/plugins/inspect/plugin-goom.xml:
7949         * docs/plugins/inspect/plugin-halelements.xml:
7950         * docs/plugins/inspect/plugin-icydemux.xml:
7951         * docs/plugins/inspect/plugin-id3demux.xml:
7952         * docs/plugins/inspect/plugin-jpeg.xml:
7953         * docs/plugins/inspect/plugin-level.xml:
7954         * docs/plugins/inspect/plugin-matroska.xml:
7955         * docs/plugins/inspect/plugin-mulaw.xml:
7956         * docs/plugins/inspect/plugin-multipart.xml:
7957         * docs/plugins/inspect/plugin-navigationtest.xml:
7958         * docs/plugins/inspect/plugin-ossaudio.xml:
7959         * docs/plugins/inspect/plugin-png.xml:
7960         * docs/plugins/inspect/plugin-rtp.xml:
7961         * docs/plugins/inspect/plugin-rtsp.xml:
7962         * docs/plugins/inspect/plugin-shout2send.xml:
7963         * docs/plugins/inspect/plugin-smpte.xml:
7964         * docs/plugins/inspect/plugin-speex.xml:
7965         * docs/plugins/inspect/plugin-udp.xml:
7966         * docs/plugins/inspect/plugin-videobalance.xml:
7967         * docs/plugins/inspect/plugin-videobox.xml:
7968         * docs/plugins/inspect/plugin-videoflip.xml:
7969         * docs/plugins/inspect/plugin-videomixer.xml:
7970         * docs/plugins/inspect/plugin-wavenc.xml:
7971         * docs/plugins/inspect/plugin-wavparse.xml:
7972         * docs/plugins/inspect/plugin-ximagesrc.xml:
7973           Update files to CVS/Prerelease version, add esdsink docs.
7974
7975         * ext/esd/esdsink.c:
7976           Add gtk-doc blurb.
7977
7978         * gst/rtp/gstrtpmp4vpay.c:
7979           Fix typo in element description.
7980
7981 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
7982
7983         * ext/esd/esdsink.c: (gst_esdsink_open),
7984         (gst_esdsink_factory_init):
7985           Prevent libesd from auto-spawning a sound daemon if it
7986           is not already running. Now that we don't do evil stuff
7987           like that any longer we can give esdsink a rank so that
7988           autoaudiosink will try it as well if all other audio
7989           sinks fail (#343051).
7990
7991 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
7992
7993         * ext/esd/Makefile.am:
7994           Oops, need to remove README from EXTRA_DIST as well.
7995
7996 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
7997
7998         * ext/esd/README:
7999           Remove, it contains nothing useful anyway.
8000
8001         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
8002         (gst_esdsink_delay):
8003           Some small clean-ups; use GST_BOILERPLATE etc.
8004
8005 2006-07-24  Wim Taymans  <wim@fluendo.com>
8006
8007         * gst/law/alaw-decode.c: (alawdec_getcaps):
8008         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
8009         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
8010         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
8011         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
8012
8013 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
8014
8015         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
8016         (gst_wavparse_other), (gst_wavparse_perform_seek),
8017         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
8018         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
8019         (gst_wavparse_pad_query):
8020         * gst/wavparse/gstwavparse.h:
8021           Use information from 'fact' chunk for length calculation of compressed
8022           samples. Calculate bps if bogus value is found in wav header (embeded
8023           mp2/mp3).
8024           
8025
8026 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
8027
8028         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
8029
8030         * configure.ac:
8031         * gst/udp/Makefile.am:
8032         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
8033         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
8034         * gst/udp/gstdynudpsink.h:
8035         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
8036         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
8037         * gst/udp/gstmultiudpsink.h:
8038         * gst/udp/gstudp.c: (plugin_init):
8039         * gst/udp/gstudpsink.h:
8040         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
8041         (gst_udpsrc_start), (gst_udpsrc_stop):
8042         * gst/udp/gstudpsrc.h:
8043         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
8044         (gst_udp_net_utils_win32_wsa_startup):
8045         * gst/udp/gstudpnetutils.h:
8046           Port udp plugin to win32 (#345288).
8047
8048 2006-07-24  Wim Taymans  <wim@fluendo.com>
8049
8050         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
8051         Remove unwanted DEBUG line.
8052
8053 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
8054
8055         * gst/id3demux/gstid3demux.c: (plugin_init):
8056         * gst/id3demux/id3tags.c:
8057         (id3demux_add_id3v2_frame_blob_to_taglist):
8058         * gst/id3demux/id3tags.h:
8059           On second thought, it might be wiser and more efficient
8060           not to do tag registration from a streaming thread.
8061
8062 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
8063
8064         * gst/id3demux/id3tags.c:
8065         (id3demux_add_id3v2_frame_blob_to_taglist),
8066         (id3demux_id3v2_frames_to_tag_list):
8067           Put ID3v2 frames we can't parse as binary blobs into private
8068           tags, so that they are not lost when retagging, at least once
8069           id3v2mux has been taught to re-inject those frames again.
8070           See bug #334375.
8071
8072 2006-07-21  Wim Taymans  <wim@fluendo.com>
8073
8074         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
8075         (gst_avi_demux_process_next_entry):
8076         Fix some leaks.
8077
8078         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
8079         Don't use \n in debug lines.
8080
8081 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
8082
8083         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8084         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8085           Add annodex and icydemux, cleanup the sections a bit
8086
8087 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
8088
8089         Patch by: Alex Lancaster <alexl at users sourceforge net>
8090
8091         * ext/taglib/gstid3v2mux.cc:
8092           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
8093           ID3v2 TSSE frames (#347898).
8094
8095 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
8096
8097         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
8098           Respect mpegversion for "video/mpeg" and give message in case of
8099           unhandled versions.
8100
8101 2006-07-17  Wim Taymans  <wim@fluendo.com>
8102
8103         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
8104         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
8105         (gst_pngdec_chain), (gst_pngdec_sink_event),
8106         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
8107         (gst_pngdec_sink_activate_push):
8108         * ext/libpng/gstpngdec.h:
8109         Use statically allocated segment instead of leaking.
8110         Various cleanups.
8111         Fix flush and seek handling.
8112
8113 2006-07-16  Wim Taymans  <wim@fluendo.com>
8114
8115         * gst/rtp/Makefile.am:
8116         * gst/rtp/gstrtp.c: (plugin_init):
8117         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
8118         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
8119         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
8120         (gst_rtp_mp4g_depay_set_property),
8121         (gst_rtp_mp4g_depay_get_property),
8122         (gst_rtp_mp4g_depay_change_state),
8123         (gst_rtp_mp4g_depay_plugin_init):
8124         * gst/rtp/gstrtpmp4gdepay.h:
8125         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
8126         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
8127         (gst_rtp_mp4g_pay_flush):
8128         Added simple generic mpeg4 depayloader.
8129         Fix generic mpeg4 payloader.
8130
8131 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
8132
8133         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
8134           Don't try doing state changes on a NULL pointer.
8135
8136 2006-07-14  Wim Taymans  <wim@fluendo.com>
8137
8138         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
8139
8140         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
8141         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
8142         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
8143         * gst/rtp/gstrtpamrdepay.h:
8144         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
8145         Fixes #321191
8146
8147 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8148
8149         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
8150         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
8151         Fix segfault when moving mouse pointer to the bottom right corner.
8152
8153 2006-07-12  Wim Taymans  <wim@fluendo.com>
8154
8155         * gst/rtp/Makefile.am:
8156         * gst/rtp/gstrtp.c: (plugin_init):
8157         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
8158         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
8159         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
8160         (gst_rtp_mp2t_depay_set_property),
8161         (gst_rtp_mp2t_depay_get_property),
8162         (gst_rtp_mp2t_depay_change_state),
8163         (gst_rtp_mp2t_depay_plugin_init):
8164         * gst/rtp/gstrtpmp2tdepay.h:
8165         Added mpeg2 TS depayloader. Closing #347234.
8166
8167 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
8168
8169         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
8170           Remove g_assert that shouldn't be there and was triggered
8171           after trying to open a device that doesn't exist or can't
8172           be opened for some other reason (#347972).
8173
8174 2006-07-10  Edward Hervey  <edward@fluendo.com>
8175
8176         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
8177         (gst_avi_demux_stream_header), (push_tag_lists):
8178         * gst/avi/gstavidemux.h:
8179         Don't push tag events found by gst_riff_parse_info() before outputting
8180         GST_EVENT_NEWSEGMENT.
8181
8182 2006-07-10  Wim Taymans  <wim@fluendo.com>
8183
8184         * gst/rtsp/Makefile.am:
8185         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
8186         (rtsp_connection_close):
8187         * gst/rtsp/rtspdefs.h:
8188         replaced closesocket and close in code with one CLOSE_SOCKET. 
8189         Some more cleanups. Fixes #345301.
8190
8191 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
8192
8193         * gst/autodetect/gstautoaudiosink.c:
8194           Fix example pipeline in docs.
8195
8196 2006-07-10  Wim Taymans  <wim@fluendo.com>
8197
8198         Patch by: Rob Taylor <robtaylor at floopily dot org>
8199
8200         * gst/udp/gstmultiudpsink.c: (join_multicast),
8201         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
8202         If a destination is added before the stream is set to PAUSED, the
8203         multicast group is not joined as the socket is not created yet. 
8204         Also TTL and LOOP should also be set. Fixes #346921.
8205
8206 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8207
8208         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
8209         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
8210         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
8211         (gst_ximage_src_init):
8212         * sys/ximage/gstximagesrc.h:
8213         Fix use-damage property to actually work :)
8214         Add startx, starty, endx, endy properties so screencasts other than full
8215         screen ones can work.
8216
8217 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8218
8219         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
8220         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
8221         (gst_ximage_src_class_init), (gst_ximage_src_init):
8222         * sys/ximage/gstximagesrc.h:
8223         Add use_damage property to offer ability to choose whether to use
8224         XDamage or not.
8225
8226 2006-07-07  Wim Taymans  <wim@fluendo.com>
8227
8228         * gst/goom/filters.c: (zoomFilterSetResolution):
8229         Avoid goom coredumping by clearing memory. 
8230         Fixes 345679.
8231
8232 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
8233
8234         * win32/vs6/libgstid3demux.dsp:
8235         Add a link to libgsttag-0.10.lib.
8236
8237 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
8238
8239         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
8240         (gst_tag_demux_read_range):
8241         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
8242         (gst_id3demux_read_range):
8243           Don't return FLOW_UNEXPECTED when a buffer is before
8244           the start of the stream (which might happen with
8245           large ID3v2 tags if the tag reading was done pullrange
8246           based and we then switched to push mode later on).
8247           Fixes regression introduced by commit from June 29th.
8248
8249 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
8250
8251         * ext/taglib/gstid3v2mux.cc:
8252           Make UTF-8 the default encoding when writing string
8253           tags (before, our UTF-8 strings would automatically
8254           be converted to ISO-8859-1 by taglib and written as
8255           ISO-8859-1 fields if that was possible).
8256
8257         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
8258         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
8259         (test_taglib_id3mux_with_tags):
8260           Add test case that makes sure our UTF-8 strings have
8261           actually been written into the tag as UTF-8.
8262
8263 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
8264
8265         * configure.ac:
8266           Let's try that again.
8267
8268 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
8269
8270         * configure.ac:
8271           Disable monoscope plugin for now until it fulfills
8272           all the requirements.
8273
8274 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
8275
8276         * configure.ac:
8277         * gst/monoscope/Makefile.am:
8278         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
8279         (gst_monoscope_class_init), (gst_monoscope_init),
8280         (gst_monoscope_finalize), (gst_monoscope_reset),
8281         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
8282         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
8283         (gst_monoscope_sink_event), (gst_monoscope_src_event),
8284         (gst_monoscope_change_state), (plugin_init):
8285         * gst/monoscope/gstmonoscope.h:
8286           Port monoscope visualisation to 0.10.
8287
8288 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
8289
8290         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
8291         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
8292           Return FLOW_UNEXPECTED when at the end of the file, not
8293           FLOW_ERROR. Fixes 'internal stream error' errors that
8294           would sometimes occur in totem when scrubbing to the
8295           end of an ID3v1 tagged mp3 file.
8296
8297 2006-07-03  Edward Hervey  <edward@fluendo.com>
8298
8299         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
8300         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
8301         (gst_pngdec_sink_event), (gst_pngdec_change_state):
8302         * ext/libpng/gstpngdec.h:
8303         Implement buffer clipping/dropping using GstSegment.
8304         This provides accurate seeking.
8305
8306 2006-07-03  Edward Hervey  <edward@fluendo.com>
8307
8308         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
8309         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
8310         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
8311         (gst_avi_demux_process_next_entry), (push_tag_lists),
8312         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
8313         * gst/avi/gstavidemux.h:
8314         Proper aggregation of each stream's GstFlowReturn in order to figure out
8315         whether the task should stop or not.
8316         Don't send inline events before pushing out a NEW_SEGMENT, more
8317         specifically for GST_TAG_EVENT.
8318         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
8319         sub-indexes.
8320
8321 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
8322
8323         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
8324
8325         * sys/sunaudio/gstsunaudiomixerctrl.c:
8326         (gst_sunaudiomixer_ctrl_build_list):
8327           Move "Monitor" slider to input tab so it works more like
8328           sdtaudiocontrol, which is what people on Solaris are used
8329           to using for their mixer program (#346259).
8330
8331 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8332
8333         * tests/check/elements/level.c: (GST_START_TEST):
8334           fix a leak, clean up at the end
8335
8336 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
8337
8338         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
8339         (gst_matroska_demux_send_event),
8340         (gst_matroska_demux_loop_stream_parse_id):
8341         * gst/matroska/matroska-ids.h:
8342           Send tag event after newsegment event.
8343
8344 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
8345
8346         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
8347         (gst_id3demux_read_range):
8348           Make sure we don't return GST_FLOW_OK with a NULL buffer in
8349           certain cases where a read beyond the end of the file is
8350           requested. Fixes #345930.
8351
8352         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
8353         (gst_tag_demux_read_range):
8354           Fix same issue here as well.
8355
8356 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8357
8358         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
8359         
8360         Fix hypothetical crash.
8361
8362 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
8363
8364         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
8365
8366         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
8367           Do not modify the ports value. If the user has turned off the
8368           built-in speakers, then we should not reset it in the prepare
8369           function, since this causes the built-in speakers to turn
8370           back on anytime the user changes a track in totem, rhythmbox,
8371           etc. (#346066).
8372
8373 2006-06-23  Wim Taymans  <wim@fluendo.com>
8374
8375         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
8376         Fix double caps unref when negotiation fails.
8377
8378 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
8379
8380         * ext/annodex/gstcmmldec.c:
8381         * ext/annodex/gstcmmlenc.c:
8382         * ext/annodex/gstcmmlparser.c:
8383         * ext/dv/gstdvdec.c:
8384         * ext/dv/gstdvdemux.c:
8385         * ext/gdk_pixbuf/pixbufscale.c:
8386         * ext/jpeg/gstjpegenc.c:
8387         * ext/jpeg/gstsmokedec.c:
8388         * ext/jpeg/gstsmokeenc.c:
8389         * ext/libpng/gstpngdec.c:
8390         * ext/libpng/gstpngenc.c:
8391         * ext/speex/gstspeexenc.c:
8392         * gst/alpha/gstalphacolor.c:
8393         * gst/cutter/gstcutter.c:
8394         * gst/debug/gstnavigationtest.c:
8395         * gst/icydemux/gsticydemux.c:
8396         * gst/level/gstlevel.c:
8397         * gst/multipart/multipart.c:
8398         * gst/rtp/gstrtpamrpay.c:
8399         * gst/rtp/gstrtpdepay.c:
8400         * gst/rtp/gstrtpilbcpay.c:
8401         * gst/rtp/gstrtpmp4gpay.c:
8402         * gst/rtp/gstrtpmp4vpay.c:
8403         * gst/rtsp/gstrtpdec.c:
8404         * gst/rtsp/gstrtspsrc.c:
8405         * gst/udp/gstdynudpsink.c:
8406         * gst/udp/gstmultiudpsink.c:
8407         * gst/udp/gstudpsrc.c:
8408         * gst/videobox/gstvideobox.c:
8409         * gst/videofilter/gstvideoflip.c:
8410           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
8411           plus two minor macro fixes.
8412
8413 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
8414
8415         * gst/matroska/matroska-demux.c:
8416         (gst_matroska_demux_check_subtitle_buffer),
8417         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
8418         (gst_matroska_demux_subtitle_caps):
8419         * gst/matroska/matroska-ids.c:
8420         (gst_matroska_track_init_subtitle_context):
8421         * gst/matroska/matroska-ids.h:
8422           Try to fix up broken matroska files containing subtitle
8423           streams with non-UTF8 character encodings (courtesy of
8424           mkvmerge) using either the encoding specified in the
8425           GST_SUBTITLE_ENCODING environment variable or the
8426           current locale's character set if it is non-UTF8.
8427           Fixes #337076.
8428
8429 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
8430
8431         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
8432           Set image type from APIC frame as "image-type" field
8433           of GST_TAG_IMAGE buffer caps (#344605).
8434
8435 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
8436
8437         * ext/flac/Makefile.am:
8438         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
8439         (gst_flac_dec_reset_decoders),
8440         (gst_flac_dec_setup_seekable_decoder),
8441         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
8442         (gst_flac_dec_metadata_callback),
8443         (gst_flac_dec_metadata_callback_seekable),
8444         (gst_flac_dec_metadata_callback_stream),
8445         (gst_flac_dec_error_callback),
8446         (gst_flac_dec_error_callback_seekable),
8447         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
8448         (gst_flac_dec_read_stream), (gst_flac_dec_write),
8449         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
8450         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
8451         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
8452         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
8453         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
8454         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
8455         (gst_flac_dec_sink_activate_push),
8456         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
8457         * ext/flac/gstflacdec.h:
8458           Support chain-based operation, should make flac-over-DAAP
8459           work (#340492).
8460
8461 2006-06-20  Wim Taymans  <wim@fluendo.com>
8462
8463         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8464         Doc updates, merge some unused symbols.
8465
8466 2006-06-20  Wim Taymans  <wim@fluendo.com>
8467
8468         * docs/plugins/Makefile.am:
8469         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8470         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8471         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
8472         * gst/rtsp/gstrtspsrc.c:
8473         * gst/rtsp/gstrtspsrc.h:
8474         Added documentation for the rtsp plugin. Fixes #345393.
8475
8476 2006-06-20  Wim Taymans  <wim@fluendo.com>
8477
8478         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
8479         (rtsp_connection_close), (rtsp_connection_free):
8480         Use better G_OS_* macros. Fixes #345301 some more.
8481
8482 2006-06-20  Wim Taymans  <wim@fluendo.com>
8483
8484         Patch by: Brian Cameron <brian dot cameron at sun dot com>
8485
8486         * sys/sunaudio/Makefile.am:
8487         * sys/sunaudio/gstsunaudio.c: (plugin_init):
8488         * sys/sunaudio/gstsunaudiomixerctrl.c:
8489         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
8490         (gst_sunaudiomixer_ctrl_list_tracks),
8491         (gst_sunaudiomixer_ctrl_get_volume),
8492         (gst_sunaudiomixer_ctrl_set_volume),
8493         (gst_sunaudiomixer_ctrl_set_mute),
8494         (gst_sunaudiomixer_ctrl_set_record):
8495         * sys/sunaudio/gstsunaudiomixerctrl.h:
8496         * sys/sunaudio/gstsunaudiomixertrack.c:
8497         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
8498         * sys/sunaudio/gstsunaudiomixertrack.h:
8499         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
8500         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
8501         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
8502         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
8503         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
8504         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
8505         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
8506         (gst_sunaudiosrc_reset):
8507         * sys/sunaudio/gstsunaudiosrc.h:
8508         Add a SunAudio source plugin.
8509         Support stereo and right/left channel gain in the mixer plugin.
8510         Support the RECORD flag so that you can switch between line-input and
8511         microphone in gnome-volume-control.
8512         Code cleanups like using an enumerator for track number instead of an 
8513         integer. Fixes #344923.
8514
8515 2006-06-20  Wim Taymans  <wim@fluendo.com>
8516
8517         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
8518
8519         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
8520         (rtsp_connection_close):
8521         Make RTSP plugin compile on windows. Fixes #345301.
8522         Some changes to original patch to catch errors better.
8523         use ifdef WIN32 instead of ifndef.
8524
8525 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8526
8527         * configure.ac:
8528         If we have libraw1394 >= 1.2.1, then we need libiec61883.
8529
8530 2006-06-18  Edward Hervey  <edward@fluendo.com>
8531
8532         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
8533         After a failed buffer alloc, we need to abort the jpeg decoding (it
8534         started when parsing headers to figure out how many bytes we need
8535         to request downstream).
8536
8537 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
8538
8539         Patch by: Mark Nauwelaerts  <manauw at skynet be>
8540
8541         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
8542           Make sure we don't read beyond the end of the file (#345232).
8543
8544 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
8545
8546         * configure.ac:
8547           Fix --disable-external (can't set conditionals conditionally,
8548           #343602).
8549
8550 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
8551
8552         * autogen.sh:
8553         * configure.ac:
8554         * docs/Makefile.am:
8555           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
8556
8557         * docs/plugins/Makefile.am:
8558         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8559         * docs/plugins/inspect/plugin-taglib.xml:
8560           Add/fix apev2mux docs.
8561
8562 2006-06-14  Wim Taymans  <wim@fluendo.com>
8563
8564         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
8565         (gst_dvdec_finalize), (gst_dvdec_sink_event),
8566         (gst_dvdec_change_state):
8567         Reset segment info on flush.
8568         Alloc segment in _init, free in _finalize.
8569
8570         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
8571         Don't send segments twice.
8572
8573 2006-06-14  Wim Taymans  <wim@fluendo.com>
8574
8575         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
8576         Respect segment.stop. Fixes #342592.
8577
8578 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
8579
8580         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
8581           No language specified means the implied language is English
8582           according to the matroska spec (partially fixes #344708);
8583           add some more debug output.
8584
8585 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
8586
8587         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
8588         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
8589         (gst_wavparse_chain):
8590           When operating chain-based, don't make any assumptions about the
8591           chunking of the incoming data and make streaming work on days other
8592           than the second Thursday after a full moon. Also fix up debug
8593           messages here and there and make use of the most excellent new
8594           gst_pad_query_peer_duration() utility function.
8595           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
8596
8597         * gst/wavparse/gstwavparse.h:
8598           Remove trailing comma after last enum value, some compilers don't
8599           like that.
8600
8601 2006-06-13  Wim Taymans  <wim@fluendo.com>
8602
8603         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
8604         Handle premature EOS gracefully.
8605
8606 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
8607
8608         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
8609           Prevent out of bounds array access when scrubbing towards
8610           the end of the file between the last index entry and the
8611           end. Fixes occasional 'start <= stop' newsegment event
8612           assertions when scrubbing in MJPEG files.
8613
8614 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
8615
8616         * tests/check/elements/.cvsignore:
8617           And another one.
8618
8619 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
8620
8621         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
8622         (scan_encoded_string), (parse_picture_frame):
8623           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
8624
8625         * configure.ac:
8626           Require core >= 0.10.8 (for GST_TAG_IMAGE and
8627           GST_TAG_PPEVIEW_IMAGE used in the patch above).
8628
8629 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
8630
8631         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
8632           gratuitous comment changes
8633         * tests/check/elements/level.c: (GST_START_TEST):
8634           fix level test leaks
8635
8636 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
8637
8638         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
8639         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
8640           Use gst_pad_query_peer_duration() utility function here.
8641
8642 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
8643
8644         * autogen.sh:
8645           require am17
8646         * configure.ac:
8647         * ext/annodex/Makefile.am:
8648         * ext/cdio/Makefile.am:
8649         * ext/dv/Makefile.am:
8650         * ext/esd/Makefile.am:
8651         * ext/flac/Makefile.am:
8652         * ext/gdk_pixbuf/Makefile.am:
8653         * ext/ladspa/Makefile.am:
8654         * ext/libcaca/Makefile.am:
8655         * ext/speex/Makefile.am:
8656         * ext/taglib/Makefile.am:
8657         * sys/oss/Makefile.am:
8658         * sys/sunaudio/Makefile.am:
8659         * sys/ximage/Makefile.am:
8660           clean up build further
8661
8662 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
8663
8664         * gconf/Makefile.am:
8665           Honour --disable-schemas-install configure option. Fixes #344100.
8666
8667 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
8668
8669         * tests/examples/level/Makefile.am:
8670           Add -lm to LIBS for pow() function, don't assume one of our
8671           dependencies (such as libxml-2.0) drags it in automatically
8672           (#343603).
8673
8674 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
8675
8676         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
8677
8678         * configure.ac:
8679           We should use $SED and not $(SED) in configure.ac (#343678).
8680
8681 2006-06-09  Wim Taymans  <wim@fluendo.com>
8682
8683         Patch by: Brian Cameron <brian dot cameron at sun dot com>
8684
8685         * sys/sunaudio/gstsunaudiomixerctrl.c:
8686         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
8687         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
8688         (gst_sunaudiomixer_ctrl_set_mute):
8689         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
8690         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
8691         (gst_sunaudiosink_write):
8692         Attached find a patch that fixes a number of bugs with the SunAudio
8693         mixer plugin and fixes #344101:
8694         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
8695            tracks onto the tracklist causing gnome-volume-control's preferences
8696            dialog to be messed up and would core dump if you checked/unchecked
8697            any item.
8698         2. We weren't previously setting the MUTE flag properly.  Fixing this
8699            makes gnome-volume-control work better.
8700         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
8701            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
8702            gnome-volume-control look better.
8703         Also some minor cleanup in gstsunaudiosink.c.
8704
8705 2006-06-09  Wim Taymans  <wim@fluendo.com>
8706
8707         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
8708         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
8709         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
8710         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
8711         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
8712         * ext/jpeg/gstjpegdec.h:
8713         API: Added IDCT method property
8714         Small cleanups.
8715         Avoid dynamic allocation of trivial fixed structure.
8716         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
8717
8718 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8719
8720         * configure.ac:
8721         We now require libraw1394 >= 1.1.0 and that version onwards all
8722         have .pc files.
8723
8724 2006-06-02  Edward Hervey  <edward@fluendo.com>
8725
8726         * gst/law/alaw-decode.c: (alawdec_getcaps): 
8727         Trying to get items from an ANY or EMPTY caps is ... stupid.
8728
8729 2006-06-02  Edward Hervey  <edward@fluendo.com>
8730
8731         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
8732         (gst_dvdec_chain), (gst_dvdec_change_state):
8733         * ext/dv/gstdvdec.h:
8734         Added GstSegment handling, now implements dropping/clipping.
8735
8736 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
8737
8738         * ext/aalib/gstaasink.h:
8739         * ext/annodex/gstcmmldec.h:
8740         * ext/cairo/gsttimeoverlay.h:
8741         * ext/dv/gstdvdec.h:
8742         * ext/dv/gstdvdemux.h:
8743         * ext/esd/esdmon.h:
8744         * ext/esd/esdsink.h:
8745         * ext/flac/gstflacenc.h:
8746         * ext/gconf/gstgconfaudiosink.h:
8747         * ext/gconf/gstgconfaudiosrc.h:
8748         * ext/gconf/gstgconfvideosink.h:
8749         * ext/gconf/gstgconfvideosrc.h:
8750         * ext/gdk_pixbuf/gstgdkanimation.h:
8751         * ext/gdk_pixbuf/pixbufscale.h:
8752         * ext/hal/gsthalaudiosink.h:
8753         * ext/hal/gsthalaudiosrc.h:
8754         * ext/jpeg/gstjpegenc.h:
8755         * ext/jpeg/gstsmokedec.h:
8756         * ext/jpeg/gstsmokeenc.h:
8757         * ext/libcaca/gstcacasink.h:
8758         * ext/libmng/gstmngdec.h:
8759         * ext/libmng/gstmngenc.h:
8760         * ext/libpng/gstpngdec.h:
8761         * ext/libpng/gstpngenc.h:
8762         * ext/raw1394/gstdv1394src.h:
8763         * ext/speex/gstspeexenc.h:
8764         * gst/autodetect/gstautoaudiosink.h:
8765         * gst/autodetect/gstautovideosink.h:
8766         * gst/avi/gstavidemux.h:
8767         * gst/cutter/gstcutter.h:
8768         * gst/debug/efence.h:
8769         * gst/debug/gstnavigationtest.h:
8770         * gst/debug/gstnavseek.h:
8771         * gst/flx/gstflxdec.h:
8772         * gst/goom/gstgoom.h:
8773         * gst/icydemux/gsticydemux.h:
8774         * gst/id3demux/gstid3demux.h:
8775         * gst/law/alaw-decode.h:
8776         * gst/law/alaw-encode.h:
8777         * gst/law/mulaw-decode.h:
8778         * gst/law/mulaw-encode.h:
8779         * gst/matroska/matroska-mux.h:
8780         * gst/median/gstmedian.h:
8781         * gst/oldcore/gstaggregator.h:
8782         * gst/oldcore/gstfdsink.h:
8783         * gst/oldcore/gstmd5sink.h:
8784         * gst/oldcore/gstmultifilesrc.h:
8785         * gst/oldcore/gstpipefilter.h:
8786         * gst/oldcore/gstshaper.h:
8787         * gst/oldcore/gststatistics.h:
8788         * gst/rtp/gstasteriskh263.h:
8789         * gst/rtp/gstrtpL16depay.h:
8790         * gst/rtp/gstrtpL16pay.h:
8791         * gst/rtp/gstrtpamrdepay.h:
8792         * gst/rtp/gstrtpamrpay.h:
8793         * gst/rtp/gstrtpdepay.h:
8794         * gst/rtp/gstrtpgsmdepay.h:
8795         * gst/rtp/gstrtpgsmpay.h:
8796         * gst/rtp/gstrtph263pay.h:
8797         * gst/rtp/gstrtph263pdepay.h:
8798         * gst/rtp/gstrtph263ppay.h:
8799         * gst/rtp/gstrtpmp4gpay.h:
8800         * gst/rtp/gstrtpmp4vdepay.h:
8801         * gst/rtp/gstrtpmp4vpay.h:
8802         * gst/rtp/gstrtpmpadepay.h:
8803         * gst/rtp/gstrtpmpapay.h:
8804         * gst/rtp/gstrtppcmadepay.h:
8805         * gst/rtp/gstrtppcmapay.h:
8806         * gst/rtp/gstrtppcmudepay.h:
8807         * gst/rtp/gstrtppcmupay.h:
8808         * gst/rtp/gstrtpspeexdepay.h:
8809         * gst/rtp/gstrtpspeexpay.h:
8810         * gst/rtsp/gstrtpdec.h:
8811         * gst/rtsp/gstrtspsrc.h:
8812         * gst/smpte/gstsmpte.h:
8813         * gst/udp/gstdynudpsink.h:
8814         * gst/udp/gstmultiudpsink.h:
8815         * gst/udp/gstudpsink.h:
8816         * gst/udp/gstudpsrc.h:
8817         * gst/videofilter/gstvideobalance.h:
8818         * gst/videofilter/gstvideoflip.h:
8819         * sys/oss/gstossdmabuffer.h:
8820         * sys/oss/gstossmixerelement.h:
8821         * sys/oss/gstosssink.h:
8822         * sys/oss/gstosssrc.h:
8823         * sys/osxvideo/osxvideosink.h:
8824         * sys/sunaudio/gstsunaudiomixer.h:
8825         * sys/sunaudio/gstsunaudiosink.h:
8826         * sys/ximage/gstximagesrc.h:
8827         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
8828
8829 2006-05-31  Wim Taymans  <wim@fluendo.com>
8830
8831         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
8832         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
8833         (gst_goom_src_setcaps), (gst_goom_src_event),
8834         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
8835         (gst_goom_change_state):
8836         * gst/goom/gstgoom.h:
8837         Handle QoS.
8838         Handle flushing, discont and events.
8839         Fix timestamps and various other cleanups.
8840
8841 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8842
8843         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
8844         Fix bus reset when using libiec61883
8845
8846 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8847
8848         * configure.ac:
8849         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
8850         * ext/raw1394/Makefile.am:
8851         Add CFLAGS.
8852         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
8853         New method, to receive using libiec61883.
8854         (gst_dv1394src_iso_receive),
8855         #ifdef'd out if libiec61883 is present.
8856         (gst_dv1394src_bus_reset),
8857         Get userdata correctly if using libiec61883. 
8858         (gst_dv1394src_create),
8859         When using libiec61883, only poll one fd and no need to read.
8860         (gst_dv1394src_discover_avc_node),
8861         Replace g_warnings.
8862         (gst_dv1394src_start),
8863         Create new handle when we know which dv port.  More reliable
8864         than setting port on an existing handle.  Initialise libiec61883.
8865         (gst_dv1394src_stop):
8866         If using libiec61883, then cleanup its handle properly.
8867         * ext/raw1394/gstdv1394src.h:
8868         Add libiec61883 handle.
8869
8870 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
8871
8872         * gst/avi/gstavidemux.c:
8873           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
8874         * win32/MANIFEST:
8875           sort file listing
8876         * win32/vs6/libgstavi.dsp:
8877           add gstavimux.c to the project
8878         * win32/vs6/libgstid3demux.dsp:
8879           add link to zlib library
8880         * win32/vs6/libgstmatroska.dsp:
8881           add matroska-ids.c to the project
8882
8883 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
8884
8885         Patch by: Sebastian Dröge  <mail at slomosnail de >
8886
8887         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8888         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8889         * ext/taglib/Makefile.am:
8890         * ext/taglib/gstapev2mux.cc:
8891         * ext/taglib/gstapev2mux.h:
8892         * ext/taglib/gstid3v2mux.cc:
8893         * ext/taglib/gsttaglibmux.c: (plugin_init):
8894         * ext/taglib/gsttaglibmux.h:
8895           Add apev2mux element (#343122).
8896         
8897         * tests/check/Makefile.am:
8898         * tests/check/elements/apev2mux.c:
8899         (test_taglib_apev2mux_create_tags),
8900         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
8901         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
8902         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
8903         (apev2mux_suite), (main):
8904           Add unit test for apev2mux element.
8905
8906 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
8907
8908         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
8909         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
8910         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8911           GST_PTR_FORMAT should be used to print caps in debug statements.
8912
8913 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
8914
8915         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
8916
8917         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
8918         (ape_demux_parse_tags):
8919           Some clean-ups and additions: map APE 'file' tag to
8920           GST_TAG_LOCATION (#343123); add support for extracting
8921           the track count and clean up parsing a bit (#343127).
8922
8923 2006-05-28  Edward Hervey  <edward@fluendo.com>
8924
8925         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
8926         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
8927
8928 2006-05-28  Edward Hervey  <edward@fluendo.com>
8929
8930         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
8931         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
8932         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
8933         * ext/jpeg/gstjpegdec.h:
8934         Clip outgoing buffers according to currently configured segment.
8935
8936 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
8937
8938         * ext/taglib/gstid3v2mux.cc:
8939           Handle  writing of track-count or album-volume-count without
8940           track-number or albume-volume-number (in this case the number
8941           will just be set to 0).
8942
8943         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
8944           It would be nice if we actually checked the values received for
8945           track/album-volume number/count in  _check_tags(), rather than
8946           setting them again ...
8947
8948 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
8949
8950         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
8951           A track/volume number or count of 0 does not make sense,
8952           just ignore it along with negative numbers (a tag might
8953           only contain a track count without a track number).
8954
8955 2006-05-27  Edward Hervey  <edward@fluendo.com>
8956
8957         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
8958         (gst_jpeg_dec_sink_event):
8959         Abort decompression when receiving FLUSH_STOP. This should avoid
8960         issues when interrupting decoding with flushes.
8961
8962 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
8963
8964         * ext/flac/gstflac.c:
8965           Don't #include file we don't dist any longer.
8966
8967 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
8968
8969         * README:
8970           Replace current README (containing the release notes from
8971           some 0.9.x version) with a proper README taken from the core.
8972
8973 2006-05-24  Wim Taymans  <wim@fluendo.com>
8974
8975         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
8976         Implement EOS correctly by either posting
8977         SEGMENT_DONE or pushing an EOS message depending
8978         on the seek type. Fixes #342592
8979
8980 2006-05-24  Wim Taymans  <wim@fluendo.com>
8981
8982         * gst/law/alaw-decode.c: (gst_alawdec_chain):
8983         * gst/law/alaw-decode.h:
8984         * gst/law/alaw-encode.c: (gst_alawenc_chain):
8985         * gst/law/alaw-encode.h:
8986         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
8987         * gst/law/mulaw-decode.h:
8988         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
8989         * gst/law/mulaw-encode.h:
8990         Some cleanups in the chain functions.
8991         Remove some GStreamer 0.0.2 bits.
8992
8993 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
8994
8995         Patch by: Mark Nauwelaerts  <manauw at skynet be>
8996
8997         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
8998           gst_collect_pads_stop() needs to be called before chaining up
8999           to the parent class (#342734).
9000
9001 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
9002
9003         * ext/flac/Makefile.am:
9004         * ext/flac/flac_compat.h:
9005         * ext/flac/gstflac.c:
9006         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
9007         * ext/flac/gstflacenc.c:
9008           Remove backwards compatibility cruft for dealing with FLAC API
9009           changes in the 1.0.x series - we require 1.1.1 or newer these days.
9010
9011 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
9012
9013         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
9014         (gst_matroska_demux_push_xiph_codec_priv_data),
9015         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
9016         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
9017         * gst/matroska/matroska-ids.h:
9018         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
9019         (gst_matroska_mux_video_pad_setcaps),
9020         (xiph3_streamheader_to_codecdata),
9021         (vorbis_streamheader_to_codecdata),
9022         (theora_streamheader_to_codecdata),
9023         (gst_matroska_mux_audio_pad_setcaps),
9024         (gst_matroska_mux_write_data):
9025           Add support for muxing/demuxing theora video (#342448; too bad
9026           none of the usual linux players can actually play this). Playback
9027           in GStreamer will require additional changes to theoradec in -base.
9028           Refactor streamheaders <=> CodecPrivateData code a bit; some small
9029           cleanups.
9030
9031 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
9032
9033         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
9034         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
9035           Fix crashes when the horizontal subsampling is 1.
9036           Fixes #342097.
9037
9038 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
9039
9040         Patch by: Mark Nauwelaerts  <manauw at skynet be>
9041
9042         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
9043         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
9044         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
9045         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
9046         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
9047         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
9048         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
9049         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
9050         (gst_avi_mux_change_state):
9051         * gst/avi/gstavimux.h:
9052           Some enhancements for avimux (#342526):
9053            - add odml (large file) index support
9054            - store codec init data (e.g. huffyuv)
9055            - miscellaneous other fixes/cleanups
9056
9057 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
9058
9059         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
9060         Don't output any tag when we encounter a negative track number - the
9061         tag type is uint, so we end up outputting huge positive numbers
9062         instead. (Fixes: #342029)
9063
9064 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9065
9066         * configure.ac:
9067           update for new GSTPB_PLUGINS_DIR
9068
9069 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
9070
9071         * rtp/gst/gstrtph263pay.c:
9072         Properly set static caps for H263 at 34.
9073
9074 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
9075
9076         Patch by: James "Doc" Livingston  <doclivingston gmail com>
9077
9078         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
9079           Merge event tags and tag setter tags correctly (#339918). Also,
9080           don't leak taglist in case of an error.
9081           
9082 2006-05-17  Edward Hervey  <edward@fluendo.com>
9083
9084         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
9085         We can only do caps intersection if the othercaps are non-empty and not
9086         ANY. Else we return the pad template (base_caps).
9087
9088 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
9089
9090         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
9091           Fix crash when outputting debugging information for certain
9092           pictures (always good to use the right struct member for
9093           the number of records in an array).
9094
9095 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
9096
9097         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
9098
9099         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
9100         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
9101         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
9102         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
9103         (gst_ebml_read_float), (gst_ebml_read_ascii),
9104         (gst_ebml_read_binary):
9105           Don't create unnecessary sub-buffers all the time. Dramatically
9106           improves performance with multiple concurrently running
9107           matroskademux instances (#341818) (and avoids doing
9108           unnecessarily inefficient things in the general case).
9109
9110 2006-05-16  Edward Hervey  <edward@fluendo.com>
9111
9112         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
9113         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
9114         return value of gst_pad_push_event().
9115
9116 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
9117
9118         * gst/autodetect/gstautoaudiosink.c:
9119         (gst_auto_audio_sink_find_best):
9120         * gst/autodetect/gstautovideosink.c:
9121         (gst_auto_video_sink_find_best):
9122         Make the name of the child element be based on the name of the
9123         parent, so that debug output is more useful.
9124         
9125         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
9126         (parse_insert_string_field), (parse_split_strings):
9127         Rework string parsing to always walk over BOM markers in UTF16
9128         strings, using the endianness indicated by the innermost one,
9129         then trying the opposite endianness if that fails to convert
9130         to valid UTF-8. Fixes #341774
9131
9132 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9133
9134         Patch from: Matthieu <matthieu at fluendo dot com>
9135
9136         * ext/libpng/Makefile.am:
9137         Add LIBPNG_CFLAGS.
9138
9139 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
9140
9141         * ext/taglib/gstid3v2mux.cc:
9142           Add support for writing images (APIC frames) into ID3v2
9143           tags (picture type always set to 'other' for now though).
9144
9145 2006-05-14  Michael Smith  <msmith@fluendo.com>
9146
9147         * gst/wavparse/gstwavparse.c:
9148           Update docs; wavparse implements push and pull modes.
9149
9150 2006-05-12  Wim Taymans  <wim@fluendo.com>
9151
9152         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
9153         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
9154         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
9155         Ooops, bitten by the copy-and-paste design paradigm, fixes
9156         seek again.
9157
9158 2006-05-12  Wim Taymans  <wim@fluendo.com>
9159
9160         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
9161         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
9162         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
9163         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
9164         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
9165         (gst_avi_demux_massage_index),
9166         (gst_avi_demux_calculate_durations_from_index),
9167         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
9168         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
9169         (gst_avi_demux_loop):
9170         * gst/avi/gstavidemux.h:
9171         Some cleanups, prepare to use GstSegment.
9172         Fix error in entry walking code.
9173         Fix VBR detection.
9174         Smarter timestamp calculation code.
9175         Uniform error/eos handling.
9176
9177 2006-05-12  Michael Smith  <msmith@fluendo.com>
9178
9179         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
9180         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
9181           Fix use of uninitialised values if we're NOT seeking in ready.
9182           Fix typos.
9183
9184 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
9185
9186         * gst/wavparse/Makefile.am:
9187           Add CFLAGS and LIBS for libgstbase, fixes build on
9188           Cygwin (#341489).
9189
9190 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
9191
9192         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
9193           Some more debug info. No need to check whether the string
9194           returned by g_convert() is really UTF-8 - either it is or
9195           we get NULL returned.
9196
9197 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
9198
9199         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
9200           Fix parsing of numeric genre strings some more, by ensuring that
9201           we only try and parse strings that a) Start with '(' and b) Consist
9202           only of digits.
9203           Also, when finding an escaping '((' sequence, bust it back to '(' by
9204           swallowing the first parenthesis
9205
9206 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
9207
9208         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
9209         (gst_esdsink_open), (gst_esdsink_close):
9210         * ext/esd/esdsink.h:
9211           Move the esd_get_server_info() into gst_esdsink_open() and fail
9212           with a decent error message on errors.
9213
9214 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
9215
9216         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
9217         (gst_esdmon_channels_get_type):
9218         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
9219         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
9220         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
9221         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
9222         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
9223         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
9224         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
9225         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
9226         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
9227         * gst/videomixer/videomixer.c:
9228         (gst_video_mixer_background_get_type):
9229           Const-ify GEnumValue arrays.
9230
9231 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
9232
9233         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
9234
9235         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
9236         (gst_avi_mux_do_video_buffer):
9237           Work around gst_buffer_make_metadata_writable() bug that
9238           results in avimux marking all frames in the index as
9239           keyframes (#340859).
9240           
9241 2006-05-08  Wim Taymans  <wim@fluendo.com>
9242
9243         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
9244         Make parsing of urls suck slightly less.
9245
9246 2006-05-08  Edward Hervey  <edward@fluendo.com>
9247
9248         * autogen.sh: (CONFIGURE_DEF_OPT): 
9249         libtoolize on Darwin/MacOSX is called glibtoolize.
9250
9251 2006-05-08  Wim Taymans  <wim@fluendo.com>
9252
9253         Patch by: Jens Granseuer <jensgr at gmx dot net>
9254
9255         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
9256         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
9257         C89 compliance fixes. Fixes #340980
9258
9259 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
9260
9261         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
9262         * ext/flac/gstflacdec.h:
9263           Handle segment seeks that include the end of the file as stop point
9264           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
9265           message instead of an EOS event in case we're in segment seek
9266           mode (fixes #340699).
9267           
9268 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
9269
9270         * ext/cairo/gsttextoverlay.c:
9271         * ext/flac/gstflacdec.c:
9272         * ext/gdk_pixbuf/pixbufscale.c:
9273         * gst/apetag/gstapedemux.c:
9274         * gst/debug/breakmydata.c:
9275         * gst/debug/testplugin.c:
9276         * gst/matroska/ebml-write.c:
9277         * gst/multipart/multipartdemux.c:
9278         * sys/osxaudio/gstosxaudiosink.c:
9279         * sys/osxaudio/gstosxaudiosrc.c:
9280         Add semicolons after GST_BOILERPLATE[_FULL] so that
9281         indent doesn't mess up following lines.
9282
9283 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9284
9285         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
9286
9287         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
9288           Don't leak caps when freeing the stream context (#340623).
9289
9290 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
9291
9292         * configure.ac:
9293           Back to CVS
9294
9295 === release 0.10.3 ===
9296
9297 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
9298
9299         * configure.ac:
9300           releasing 0.10.3, "Desplazado"
9301
9302 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
9303
9304         * gst/matroska/matroska-mux.c:
9305         (gst_matroska_mux_stream_is_vorbis_header),
9306         (gst_matroska_mux_write_data):
9307           Don't strcmp() NULL strings.
9308           Only start new clusters on video keyframes, not on any
9309           random audio buffer that doesn't have the DELTA_UNIT
9310           flag set (fixes 'make check' again).
9311
9312 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
9313
9314         Patch by: Mark Nauwelaerts  <manauw at skynet be>
9315
9316         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
9317         (gst_matroska_mux_stream_is_vorbis_header),
9318         (gst_matroska_mux_write_data):
9319           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
9320           value and then dead-lock when muxing vorbis audio streams
9321           (the three vorbis header buffers carry no timestamp, and it
9322           would try to mux these after all video buffers). Fixes #340346.
9323
9324           Improve clustering: start a new cluster also whenever we get
9325           a keyframe.     
9326
9327 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9328
9329         * win32/common/config.h:
9330         * win32/MANIFEST
9331           add the generated file as well
9332
9333 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9334
9335         * Makefile.am:
9336         * configure.ac:
9337         * win32/common/config.h.in:
9338           add win32 stuff
9339
9340 2006-05-03  Michael Smith  <msmith@fluendo.com>
9341
9342         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
9343           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
9344           SUCKS.
9345
9346 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
9347
9348         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
9349         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
9350         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
9351           don't leak caps-string
9352
9353 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
9354
9355         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
9356         (gst_id3demux_sink_activate):
9357           Let core insert default error message for TYPE_NOT_FOUND
9358           errors, it's just as good as our own and has the added
9359           bonus of being translated.
9360
9361 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
9362
9363         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
9364         (gst_tag_demux_sink_event):
9365         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
9366         (gst_id3demux_sink_event):
9367           Post an error message when we get an EOS event and were not
9368           able to find out the type of stream.
9369
9370         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
9371         (test_taglib_id3mux_with_tags):
9372           Decrease num-buffers to 16 per iteration again, otherwise the
9373           many memcpy()s and reallocations in the test will hammer slow
9374           CPUs completely and make the test timeout.
9375
9376 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9377
9378         * configure.ac:
9379           figure out where plugins-base plugins are
9380         * tests/check/Makefile.am:
9381           use plugins-base plugins, so we have typefind functions
9382         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
9383           increase num-buffers, this makes sure the test errors out instead
9384           of timing out when no typefind functions are present
9385
9386 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
9387
9388         * docs/plugins/Makefile.am:
9389           also check .cc files for gtk-doc markup
9390         * configure.ac:
9391         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9392         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9393         * tests/check/Makefile.am:
9394         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
9395         * ext/Makefile.am:
9396         * ext/taglib/Makefile.am:
9397         * ext/taglib/gstid3v2mux.h:
9398         * ext/taglib/gsttaglibmux.c:
9399         * ext/taglib/gsttaglibmux.h:
9400           move taglib-based id3v2muxer to -good.  Fixes #336110.
9401
9402 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
9403
9404         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
9405           ... and fix multichannel/WAVFORMATEX support again.
9406
9407 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
9408
9409         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
9410         (gst_wavparse_class_init), (gst_wavparse_dispose),
9411         (gst_wavparse_reset), (gst_wavparse_init),
9412         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
9413         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
9414         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
9415         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
9416         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
9417         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
9418         (gst_wavparse_stream_data), (gst_wavparse_loop),
9419         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
9420         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
9421         (gst_wavparse_change_state), (plugin_init):
9422         * gst/wavparse/gstwavparse.h:
9423           Add push (streaming) mode to wavparse (fixes #337625)
9424
9425 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9426
9427         * configure.ac:
9428         * tests/Makefile.am:
9429           add ximagesrc icles test
9430
9431 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9432
9433         * configure.ac:
9434         * docs/plugins/Makefile.am:
9435         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9436         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9437         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
9438         (gst_cmml_enc_push_clip):
9439         * sys/Makefile.am:
9440         * sys/ximage/Makefile.am:
9441         * sys/ximage/gstximagesrc.c:
9442           Move ximagesrc plug-in to good after review.  Fixes #336756.
9443
9444 2006-04-28  Michael Smith  <msmith@fluendo.com>
9445
9446         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
9447         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
9448         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
9449         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
9450         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
9451         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
9452         * gst/icydemux/gsticydemux.h:
9453           Fix event handling: cache events when typefinding and forward later.
9454
9455 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9456
9457         * sys/osxaudio/gstosxaudiosink.c:
9458         (plugin_init):
9459          Register osxaudiosrc to the plugin.
9460         * sys/osxaudio/gstosxaudiosrc.c:
9461         (gst_osx_audio_src_osxelement_do_init),
9462         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
9463         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
9464         (gst_osx_audio_src_get_property),
9465         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
9466         (gst_osx_audio_src_osxelement_init):
9467         * sys/osxaudio/gstosxaudiosrc.h:
9468           Port of osxaudiosrc to 0.10.
9469         * sys/osxaudio/Makefile.am:
9470           Add osxaudiosrc
9471
9472 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9473
9474         * sys/osxaudio/gstosxringbuffer.c:
9475         * sys/osxaudio/gstosxringbuffer.h:
9476           Forgot to commit earlier, part of the OSX audio plugin port
9477
9478 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
9479
9480         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
9481         (parse_split_strings):
9482           Recognise and skip any byte order marker (BOM) in
9483           UTF-16 strings.
9484
9485 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
9486
9487         * docs/plugins/Makefile.am:
9488         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9489         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9490         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9491         * docs/plugins/inspect/plugin-avi.xml:
9492         * gst/avi/gstavidemux.c:
9493         * gst/avi/gstavimux.c:
9494           Add docs for both avidemux and avimux.
9495
9496 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
9497
9498         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
9499
9500         * gst/avi/Makefile.am:
9501         * gst/avi/gstavi.c: (plugin_init):
9502         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
9503         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
9504         (gst_avi_mux_class_init), (gst_avi_mux_init),
9505         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
9506         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
9507         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
9508         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
9509         (gst_avi_mux_riff_get_avix_header),
9510         (gst_avi_mux_riff_get_video_header),
9511         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
9512         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
9513         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
9514         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
9515         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
9516         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
9517         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
9518         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
9519         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
9520         (gst_avi_mux_change_state):
9521         * gst/avi/gstavimux.h:
9522           Port AVI muxer to GStreamer-0.10 (#332031).
9523
9524         * tests/check/Makefile.am:
9525         * tests/check/elements/avimux.c:
9526         * tests/check/elements/.cvsignore:
9527           Add unit test for AVI muxer.
9528
9529 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
9530
9531         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
9532         (gst_wavparse_class_init), (gst_wavparse_reset),
9533         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
9534         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
9535         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
9536         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
9537         (gst_wavparse_stream_data), (gst_wavparse_loop),
9538         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
9539         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
9540         (plugin_init):
9541         * gst/wavparse/gstwavparse.h:
9542           reverted patch #337625 for the price of 1 hour sleep
9543
9544 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
9545
9546         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
9547         (gst_wavparse_class_init), (gst_wavparse_reset),
9548         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
9549         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
9550         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
9551         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
9552         (gst_wavparse_stream_data), (gst_wavparse_loop),
9553         (gst_wavparse_chain), (plugin_init):
9554         * gst/wavparse/gstwavparse.h:
9555           correct partial implementation of push mode
9556           (from my last commit)
9557
9558 2006-04-26  Wim Taymans  <wim@fluendo.com>
9559
9560         * ext/esd/esdsink.c:
9561         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
9562         it is not in esd.h
9563
9564 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
9565
9566         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
9567         (gst_au_parse_class_init), (gst_au_parse_init),
9568         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
9569         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
9570         (gst_au_parse_chain), (gst_au_parse_src_convert),
9571         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
9572         (gst_au_parse_sink_event), (gst_au_parse_src_event),
9573         (gst_au_parse_change_state):
9574         * gst/auparse/gstauparse.h:
9575           Rewrite auparse to suck a little bit less: make source pad
9576           dynamic, so decodebin/playbin work with non-raw formats
9577           like alaw/mulaw; add query function for duration/position
9578           queries; check whether we have enough data before attempting
9579           to parse the header (instead of crashing when that is not the
9580           case); work around audioconvert sucking by swapping endianness
9581           to the native endianness ourselves for float formats; send
9582           initial newsegment event. Fixes #161712.
9583
9584 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9585
9586         * sys/osxaudio/Makefile.am:
9587         * sys/osxaudio/gstosxaudioelement.c:
9588         (gst_osx_audio_element_get_type),
9589         (gst_osx_audio_element_class_init):
9590         * sys/osxaudio/gstosxaudioelement.h:
9591         * sys/osxaudio/gstosxaudiosink.c:
9592         (gst_osx_audio_sink_osxelement_do_init),
9593         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
9594         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
9595         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
9596         (gst_osx_audio_sink_create_ringbuffer),
9597         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
9598         (plugin_init):
9599         * sys/osxaudio/gstosxaudiosink.h:
9600         Port of osxaudiosink to 0.10
9601
9602 2006-04-26  Wim Taymans  <wim@fluendo.com>
9603
9604         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
9605         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
9606         the size of the ringbuffer. This should fix hangs with older 
9607         esd sound servers.
9608
9609 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
9610
9611         * ext/aalib/gstaasink.c:
9612         * ext/annodex/gstcmmldec.c:
9613         * ext/annodex/gstcmmlenc.c:
9614         * ext/cairo/gsttextoverlay.c:
9615         * ext/cairo/gsttimeoverlay.c:
9616         * ext/cdio/gstcdiocddasrc.c:
9617         * ext/dv/gstdvdec.c:
9618         * ext/dv/gstdvdemux.c:
9619         * ext/esd/esdmon.c:
9620         * ext/esd/esdsink.c:
9621         * ext/flac/gstflacenc.c:
9622         * ext/flac/gstflactag.c:
9623         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
9624         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
9625         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
9626         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
9627         * ext/gdk_pixbuf/pixbufscale.c:
9628         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
9629         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
9630         * ext/jpeg/gstjpegdec.c:
9631         * ext/jpeg/gstjpegenc.c:
9632         * ext/jpeg/gstsmokedec.c:
9633         * ext/jpeg/gstsmokeenc.c:
9634         * ext/libcaca/gstcacasink.c:
9635         * ext/libmng/gstmngdec.c:
9636         * ext/libmng/gstmngenc.c:
9637         * ext/libpng/gstpngdec.c:
9638         * ext/libpng/gstpngenc.c:
9639         * ext/mikmod/gstmikmod.c:
9640         * ext/raw1394/gstdv1394src.c:
9641         * ext/shout2/gstshout2.c: (gst_shout2send_init):
9642         * ext/shout2/gstshout2.h:
9643         * ext/speex/gstspeexdec.c:
9644         * ext/speex/gstspeexenc.c:
9645         * gst/alpha/gstalpha.c:
9646         * gst/alpha/gstalphacolor.c:
9647         * gst/apetag/gstapedemux.c:
9648         * gst/auparse/gstauparse.c:
9649         * gst/autodetect/gstautoaudiosink.c:
9650         (gst_auto_audio_sink_base_init):
9651         * gst/autodetect/gstautovideosink.c:
9652         (gst_auto_video_sink_base_init):
9653         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
9654         * gst/avi/gstavimux.c: (gst_avimux_base_init):
9655         * gst/cutter/gstcutter.c:
9656         * gst/debug/breakmydata.c:
9657         * gst/debug/efence.c:
9658         * gst/debug/gstnavigationtest.c:
9659         * gst/debug/gstnavseek.c:
9660         * gst/debug/negotiation.c:
9661         * gst/debug/progressreport.c:
9662         * gst/debug/testplugin.c:
9663         * gst/effectv/gstaging.c:
9664         * gst/effectv/gstdice.c:
9665         * gst/effectv/gstedge.c:
9666         * gst/effectv/gstquark.c:
9667         * gst/effectv/gstrev.c:
9668         * gst/effectv/gstshagadelic.c:
9669         * gst/effectv/gstvertigo.c:
9670         * gst/effectv/gstwarp.c:
9671         * gst/flx/gstflxdec.c:
9672         * gst/goom/gstgoom.c:
9673         * gst/icydemux/gsticydemux.c:
9674         * gst/id3demux/gstid3demux.c:
9675         * gst/interleave/deinterleave.c:
9676         * gst/interleave/interleave.c:
9677         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
9678         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
9679         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
9680         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
9681         * gst/level/gstlevel.c:
9682         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
9683         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
9684         * gst/median/gstmedian.c:
9685         * gst/monoscope/gstmonoscope.c:
9686         * gst/multipart/multipartdemux.c:
9687         * gst/multipart/multipartmux.c:
9688         * gst/oldcore/gstaggregator.c:
9689         * gst/oldcore/gstfdsink.c:
9690         * gst/oldcore/gstmd5sink.c:
9691         * gst/oldcore/gstmultifilesrc.c:
9692         * gst/oldcore/gstpipefilter.c:
9693         * gst/oldcore/gstshaper.c:
9694         * gst/oldcore/gststatistics.c:
9695         * gst/rtp/gstasteriskh263.c:
9696         * gst/rtp/gstrtpL16depay.c:
9697         * gst/rtp/gstrtpL16pay.c:
9698         * gst/rtp/gstrtpamrdepay.c:
9699         * gst/rtp/gstrtpamrpay.c:
9700         * gst/rtp/gstrtpdepay.c:
9701         * gst/rtp/gstrtpgsmpay.c:
9702         * gst/rtp/gstrtph263pay.c:
9703         * gst/rtp/gstrtph263pdepay.c:
9704         * gst/rtp/gstrtph263ppay.c:
9705         * gst/rtp/gstrtpilbcdepay.c:
9706         * gst/rtp/gstrtpmp4gpay.c:
9707         * gst/rtp/gstrtpmp4vdepay.c:
9708         * gst/rtp/gstrtpmp4vpay.c:
9709         * gst/rtp/gstrtpmpadepay.c:
9710         * gst/rtp/gstrtpmpapay.c:
9711         * gst/rtp/gstrtppcmadepay.c:
9712         * gst/rtp/gstrtppcmapay.c:
9713         * gst/rtp/gstrtppcmudepay.c:
9714         * gst/rtp/gstrtppcmupay.c:
9715         * gst/rtp/gstrtpspeexdepay.c:
9716         * gst/rtp/gstrtpspeexpay.c:
9717         * gst/rtsp/gstrtpdec.c:
9718         * gst/rtsp/gstrtspsrc.c:
9719         * gst/smpte/gstsmpte.c:
9720         * gst/udp/gstdynudpsink.c:
9721         * gst/udp/gstmultiudpsink.c:
9722         * gst/udp/gstudpsink.c:
9723         * gst/udp/gstudpsrc.c:
9724         * gst/videobox/gstvideobox.c:
9725         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
9726         * gst/videofilter/gstvideobalance.c:
9727         * gst/videofilter/gstvideoflip.c:
9728         * gst/videofilter/gstvideotemplate.c:
9729         (gst_videotemplate_base_init):
9730         * gst/videomixer/videomixer.c:
9731         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
9732         (gst_wavparse_class_init), (gst_wavparse_dispose),
9733         (gst_wavparse_reset), (gst_wavparse_init),
9734         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
9735         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
9736         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
9737         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
9738         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
9739         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
9740         (gst_wavparse_change_state):
9741         * gst/wavparse/gstwavparse.h:
9742         * sys/oss/gstossmixerelement.c:
9743         * sys/oss/gstosssink.c:
9744         * sys/oss/gstosssrc.c:
9745         * sys/osxaudio/gstosxaudioelement.c:
9746         * sys/osxaudio/gstosxaudiosink.c:
9747         * sys/osxaudio/gstosxaudiosrc.c:
9748         * sys/sunaudio/gstsunaudiomixer.c:
9749         * sys/sunaudio/gstsunaudiosink.c:
9750           Define GstElementDetails as const and also static (when defined as
9751           global)
9752
9753 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9754
9755         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
9756           Source pad has fixed caps. If we don't set this, bad
9757           things happen when the window is resized.
9758
9759 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9760
9761         * gst/matroska/Makefile.am:
9762         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
9763         (gst_matroska_demux_handle_src_event):
9764         * gst/matroska/matroska-ids.c:
9765         (gst_matroska_track_init_video_context),
9766         (gst_matroska_track_init_audio_context),
9767         (gst_matroska_track_init_subtitle_context),
9768         (gst_matroska_track_init_complex_context):
9769         * gst/matroska/matroska-ids.h:
9770           Handle case where the TrackType ebml chunk does not come before the
9771           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
9772           events.
9773
9774 2006-04-25  Wim Taymans  <wim@fluendo.com>
9775
9776         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
9777         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
9778         It's codec_data, not codec_info.
9779
9780 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9781
9782         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
9783
9784         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
9785           Handle codec_data for VfW compatibility codec IDs (#339451)
9786
9787         * gst/matroska/matroska-mux.c:
9788         (gst_matroska_mux_video_pad_setcaps):
9789           Same here, handle codec_data and add additional caps we can handle
9790           now to the pad template (huffyuv, dv and h263 video) (#339451)
9791
9792 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9793
9794         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
9795
9796         * gst/matroska/matroska-mux.c:
9797         (gst_matroska_mux_create_buffer_header),
9798         (gst_matroska_mux_write_data):
9799           Fix timestamping of B-frames, use signed integers, do
9800           some rounding (#339678).
9801
9802 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
9803
9804         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
9805         just make it compile with --disable-gst-debug.
9806
9807 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
9808
9809         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
9810         Fix a bad conversion using gst_guint64_to_gdouble.
9811         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
9812         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
9813         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
9814     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
9815         mistake.
9816
9817 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
9818
9819         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
9820         Use gst_guint64_to_gdouble for conversions
9821         * win32/vs6/gst_plugins_good.dsw:
9822         * win32/vs6/libgsticydemux.dsp:
9823         Add a project file for icydemux
9824
9825 2006-04-21  Wim Taymans  <wim@fluendo.com>
9826
9827         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
9828
9829         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
9830         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
9831         When splitting audio chunks, the block alignment is not taken in
9832         consideration, so the smaller chunks could be of size which is 
9833         not a multiple of the block alignment. Fixes #336904
9834
9835 2006-04-21  Wim Taymans  <wim@fluendo.com>
9836
9837         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
9838         Use scale functions
9839
9840 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9841
9842         * ext/dv/gstdv.c: (plugin_init):
9843           Fix build.
9844
9845 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9846
9847         * gst/debug/progressreport.c: (gst_progress_report_finalize),
9848         (gst_progress_report_class_init), (gst_progress_report_init),
9849         (gst_progress_report_do_query), (gst_progress_report_report),
9850         (gst_progress_report_set_property),
9851         (gst_progress_report_get_property):
9852           Add 'format' property to force querying to a particular format.
9853
9854 2006-04-21  Andy Wingo  <wingo@pobox.com>
9855
9856         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
9857         best, on big endian systems. Drop its rank in that case. OTOH on
9858         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
9859
9860 2006-04-21  Michael Smith  <msmith@fluendo.com>
9861
9862         * configure.ac:
9863         * gst/icydemux/Makefile.am:
9864         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
9865         (gst_icydemux_base_init), (gst_icydemux_class_init),
9866         (gst_icydemux_reset), (gst_icydemux_init),
9867         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
9868         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
9869         (unicodify), (gst_icydemux_unicodify),
9870         (gst_icydemux_parse_and_send_tags),
9871         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
9872         (gst_icydemux_chain), (gst_icydemux_change_state),
9873         (gst_icydemux_send_tag_event), (plugin_init):
9874         * gst/icydemux/gsticydemux.h:
9875         * tests/check/Makefile.am:
9876         * tests/check/elements/icydemux.c: (typefind_succeed),
9877         (plugin_init), (icydemux_found_pad), (create_icydemux),
9878         (cleanup_icydemux), (push_data), (GST_START_TEST),
9879         (icydemux_suite), (main):
9880           Add icydemux, and tests.
9881
9882 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9883
9884         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
9885           Post SEGMENT_DONE message in TIME format.
9886
9887 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9888
9889         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
9890
9891         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
9892         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
9893           Fix index creation when we have to scan the file to create
9894           an index. There may be other types of RIFF 'LIST' chunks than
9895           'movi' and we need to skip them properly as well or we'll end up
9896           reading garbage (#336889). Some other cosmetic changes.
9897           
9898 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9899
9900         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
9901         (gst_flac_dec_handle_seek_event):
9902           Add support for segment seeks (fixes #338290). Also demote
9903           some recurring debug message from DEBUG to LOG level.
9904
9905 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9906
9907         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
9908         (gst_matroskademux_do_index_seek),
9909         (gst_matroska_demux_handle_seek_event),
9910         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
9911         * gst/matroska/matroska-ids.h:
9912           Set DISCONT flag on first buffer after a discontinuity.
9913           Fix newsegment events sent when seeking and honour KEY_UNIT
9914           seek flag. Create pad with bogus caps if we don't recognise
9915           the stream codec id.
9916
9917         * gst/matroska/matroska-demux.h:
9918           Fix GObject macros.
9919
9920 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9921
9922         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
9923
9924         * gst/matroska/matroska-demux.c:
9925         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
9926           Handle end of segment properly when set; don't dead-lock when
9927           posting start of segment message when doing a segment seek.
9928           Fixes #338810.
9929
9930 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
9931
9932         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
9933         (gst_matroska_demux_plugin_init):
9934           Make mpeg2 aac audio work: create artificial private codec data
9935           chunk which faad2 seems to require, just as we do for mpeg4 aac.
9936           Also call gst_riff_init(). Partially fixes #338767.
9937
9938 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
9939
9940         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
9941         (gst_wavenc_class_init), (gst_wavenc_init),
9942         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
9943         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
9944         (gst_wavenc_chain), (gst_wavenc_change_state):
9945         * gst/wavenc/gstwavenc.h:
9946           Set caps on first outgoing buffer, so that it doesn't error out
9947           immediately with a non-negotiated error (#338716). Rewrite and
9948           clean up a bit; fix setcaps function to parse things properly;
9949           fix sink caps (8bit audio is unsigned and doesn't have depth);
9950           use boilerplate macros; remove unused properties stuff.
9951
9952 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
9953
9954         * ext/gdk_pixbuf/gstgdkpixbuf.c:
9955           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
9956           handle MJPEG streams and might be autoplugged for those if the
9957           user doesn't have jpegdec installed (resulting in a cryptic error
9958           message about huffman tables). Better to disable JPEG decoding here
9959           and let the user figure out that she needs to install jpegdec.
9960
9961 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
9962
9963         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9964         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
9965         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
9966         * ext/gdk_pixbuf/gstgdkpixbuf.h:
9967           Make work with packetised/framed input (e.g. png-in-quicktime). Use
9968           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
9969           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
9970           debug messages. Fix boilerplate macros.
9971
9972 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
9973
9974         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
9975         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
9976           No need to special-case for Gdk-2.0 any longer, we require
9977           Gdk 2.2 or newer; minor clean-ups.
9978
9979 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
9980
9981         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
9982         (gst_shout2send_class_init), (gst_shout2send_init),
9983         (set_shout_metadata), (gst_shout2send_set_metadata),
9984         (gst_shout2send_event), (gst_shout2send_start),
9985         (gst_shout2send_connect), (gst_shout2send_stop),
9986         (gst_shout2send_render), (gst_shout2send_set_property),
9987         (gst_shout2send_get_property), (gst_shout2send_setcaps),
9988         (plugin_init):
9989         * ext/shout2/gstshout2.h:
9990         * po/POTFILES.in:
9991           Rewrite a bit: use GstBaseSink::start and stop instead of a state
9992           change function; use GST_ELEMENT_ERROR for error reporting, not
9993           g_error() or GST_ERROR(); don't unref caps in setcaps function,
9994           will cause crashes or assertion failures; remove (unused) "sync"
9995           property, basesink already has such a property; misc. other
9996           minor fixes and cleanups.
9997
9998 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
9999
10000         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
10001         * ext/esd/gstesd.c: (plugin_init):
10002         * po/POTFILES.in:
10003           Add translatable error message for when we cannot
10004           connect to the sound server, as "Cannot open resource
10005           for writing" isn't really an acceptable message to show
10006           to the user in this case.
10007
10008 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
10009
10010         * sys/oss/gst-i18n-plugin.h:
10011           Remove bogus file that doesn't belong here.
10012
10013 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10014
10015         Patch by: Philippe Valembois
10016
10017         * ext/shout2/gstshout2.c: (gst_shout2send_init),
10018         (gst_shout2send_set_metadata), (gst_shout2send_event),
10019         (gst_shout2send_render), (gst_shout2send_change_state):
10020         * ext/shout2/gstshout2.h:
10021           Handle tags being received before the connection to
10022           the server is established properly (see #338636).
10023
10024 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
10025
10026         * ext/shout2/gstshout2.c: (gst_shout2send_render):
10027           Don't crash in case the connection to the server fails:
10028           don't set pointer to NULL by assigning FALSE; error out
10029           properly by using GST_ELEMENT_ERROR and returning
10030           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
10031           before resetting the pointer.
10032
10033 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
10034
10035         * gst/id3demux/id3tags.c:
10036         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
10037         (Fixes #338713)
10038
10039 2006-04-12  Wim Taymans  <wim@fluendo.com>
10040
10041         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
10042         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
10043         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
10044         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
10045         (gst_gdk_pixbuf_chain):
10046         Some cleanups.
10047         Added RGBA as a possible output format.
10048         Correctly free the supported mimetypes.
10049         deprecate silent arg, it's not used.
10050         Return result from _alloc_buffer to peer.
10051
10052 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
10053
10054         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
10055           Don't leak memory allocated by gst_buffer_new_and_alloc() by
10056           overwriting GST_BUFFER_MALLOCDATA.
10057
10058 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
10059
10060         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
10061         (user_endrow_callback), (user_end_callback),
10062         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
10063         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
10064         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
10065         * ext/libpng/gstpngdec.h:
10066           Handle more than one frame if the content is framed,
10067           like with png-in-quicktime (#331917).
10068
10069 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10070
10071         * sys/oss/Makefile.am:
10072         * sys/oss/common.h:
10073         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
10074         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
10075         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
10076         (gst_oss_src_unprepare):
10077           - the user-visible error strings were in the wrong category
10078           - and the messages were not marked for translation
10079           - which is actually a good thing, because they were exactly
10080             the kind of message you would never want anyone to see
10081           - the macros were using variables that didn't exist in the macro
10082             arguments
10083           - and they were obviously copied from each other and then modified
10084           - so a common header makes sense
10085
10086 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
10087
10088         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
10089           Don't try to modify read-only data.
10090
10091         * gst/matroska/matroska-demux.c:
10092         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
10093           Fix comment (won't crash any longer now).
10094
10095 2006-04-10  Michael Smith  <msmith@fluendo.com>
10096
10097         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
10098           Use copies of header buffers for caps to avoid circular refcounting
10099           problems (as in theoradec, vorbisdec).
10100
10101         * tests/check/elements/cmmldec.c: (GST_START_TEST):
10102           Fix a typo in test that meant it was testing the wrong thing.
10103
10104         * tests/check/elements/cmmlenc.c: (check_headers):
10105           Fix refcount checks now that we use buffer-copies for caps.
10106
10107 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
10108
10109         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
10110         (gst_matroska_demux_handle_seek_event),
10111         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
10112         (gst_matroska_demux_subtitle_caps),
10113         (gst_matroska_demux_plugin_init):
10114           Use static pad templates with ANY caps for audio and video
10115           source pads and get rid of a lot of unnecessary (and partially
10116           broken) code for the template caps. Clean up caps finding
10117           functions. Fixes playback of audio files/streams that do not
10118           contain the sample rate and/or number of channels in the audio
10119           context (happens a lot with vorbis/mp3 .mka files it seems).
10120           Fixes #337183.
10121           Also add myself to copyright holders.
10122
10123 2006-04-10  Michael Smith  <msmith@fluendo.com>
10124
10125         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
10126           Use g_list_delete_link () instead of g_list_remove_link () so that
10127           we free the link as well as the contained data.
10128
10129 2006-04-10  Wim Taymans  <wim@fluendo.com>
10130
10131         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
10132
10133         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
10134         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10135         (gst_avi_demux_stream_header):
10136         Fix some crashers with empty chunks. (Fixes #337749)
10137
10138 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
10139
10140         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
10141           use G_GINT64_CONSTANT for INT64 constants
10142         * gst/videofilter/gstvideobalance.c:
10143           define rint for WIN32 #define rint(x) (floor((x)+0.5))
10144         * win32/vs6/libgstavi.dsp:
10145          add missing libraries for the link and remove avimux.c from
10146          the project as it isn't ported to 0.10 yet
10147         
10148 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
10149
10150         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
10151           Even better would be if we actually did the right thing
10152           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
10153
10154 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
10155
10156         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
10157           Can't just replace 1LL with 1L here just because MSVC doesn't
10158           support it, as it might lead to incorrect results when doing the
10159           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
10160           force a 64-bit constant in a way that all compilers are happy with.
10161
10162 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
10163
10164         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
10165         * ext/esd/esdsink.c: (gst_esdsink_class_init):
10166         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
10167         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
10168         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
10169         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
10170         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
10171         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
10172         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
10173         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
10174         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
10175         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
10176         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
10177         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
10178         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
10179         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
10180         * gst/avi/gstavimux.c: (gst_avimux_class_init):
10181         * gst/debug/efence.c: (gst_efence_class_init):
10182         * gst/debug/negotiation.c: (gst_negotiation_class_init):
10183         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
10184         * gst/goom/gstgoom.c: (gst_goom_class_init):
10185         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
10186         * gst/interleave/deinterleave.c: (deinterleave_class_init):
10187         * gst/interleave/interleave.c: (interleave_class_init):
10188         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
10189         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
10190         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
10191         * gst/median/gstmedian.c: (gst_median_class_init):
10192         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
10193         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
10194         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
10195         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
10196         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
10197         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
10198         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
10199         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
10200         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
10201         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
10202         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
10203         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
10204         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
10205         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
10206         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
10207         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
10208         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
10209         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
10210         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
10211         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
10212         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
10213         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
10214         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
10215         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
10216         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
10217         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
10218         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
10219         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
10220         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
10221         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
10222         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
10223         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
10224         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
10225         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
10226         * sys/osxaudio/gstosxaudioelement.c:
10227         (gst_osxaudioelement_class_init):
10228         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
10229         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
10230         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
10231         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
10232
10233 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
10234
10235         * ext/mikmod/gstmikmod.h:
10236         * gst/level/gstlevel.h:
10237         Fix more broken GObject macros
10238
10239 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
10240
10241         * ext/annodex/gstcmmldec.h:
10242         * ext/annodex/gstcmmlenc.h:
10243         * ext/annodex/gstcmmltag.h:
10244         * ext/cairo/gsttextoverlay.h:
10245         * ext/ladspa/gstsignalprocessor.h:
10246         * gst/matroska/ebml-read.h:
10247         * gst/matroska/ebml-write.h:
10248         * sys/osxaudio/gstosxaudioelement.h:
10249         Fix broken GObject macros
10250
10251 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
10252
10253         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
10254           Don't try to seek beyond the end of the file (would
10255           occasionally display error dialogs in totem when seeking
10256           to the end) (#335869). Will still throw an error though
10257           if the file is truncated and the total_samples value in
10258           the stream header is wrong.
10259
10260 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
10261
10262         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
10263         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
10264         (gst_flac_dec_metadata_callback):
10265         * ext/flac/gstflacdec.h:
10266           If the stream header doesn't contain the total number of samples,
10267           search for the last flac frame at the end of the file and calculate
10268           the total duration from that frame's offset (fixes #337609).
10269
10270 2006-04-07  Edward Hervey  <edward@fluendo.com>
10271
10272         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
10273         Don't unref the GstPadTemplate returned by
10274         gst_element_class_get_pad_template().
10275
10276 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
10277
10278         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
10279
10280         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
10281         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
10282         * sys/sunaudio/gstsunaudiosink.h:
10283           Use spec->segsize and spec->segtotal in the prepare function
10284           to initialise the ring buffer instead of using the buffer-time
10285           property (#337421).
10286
10287 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
10288
10289         * configure.ac:
10290           Bump core requirements to CVS for gst_pad_query_peer_duration()
10291           which is used by speexdec.
10292
10293 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
10294
10295         * ext/speex/gstspeex.c: (plugin_init):
10296         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
10297         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
10298         (speex_get_sink_query_types), (speex_dec_sink_query),
10299         (speex_get_src_query_types), (speex_dec_src_query),
10300         (speex_dec_src_event), (speex_dec_sink_event),
10301         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
10302         (speex_dec_chain_parse_data), (speex_dec_chain),
10303         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
10304         (speex_dec_change_state):
10305         * ext/speex/gstspeexdec.h:
10306           Fix seeking and duration queries (#337033); clean up and
10307           refactor a bit.
10308
10309 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10310
10311         * ext/raw1394/gstdv1394src.c:
10312           distinguish between device not found and could not open for
10313           reading
10314
10315 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
10316
10317         * Makefile.am:
10318         * configure.ac:
10319         * pkgconfig/.cvsignore:
10320         * pkgconfig/Makefile.am:
10321         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
10322           add a .pc file so other modules can use good plugins in tests
10323
10324 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10325
10326         * configure.ac:
10327           clean up, use AS_VERSION and AS_NANO
10328         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
10329           use PACKAGE_VERSION define
10330         * po/af.po:
10331         * po/az.po:
10332         * po/cs.po:
10333         * po/en_GB.po:
10334         * po/hu.po:
10335         * po/it.po:
10336         * po/nb.po:
10337         * po/nl.po:
10338         * po/or.po:
10339         * po/sq.po:
10340         * po/sr.po:
10341         * po/sv.po:
10342         * po/uk.po:
10343         * po/vi.po:
10344           updated
10345
10346 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
10347
10348         * ext\jpeg\smokecodec.c:
10349           use of GST_DEBUG instead of DEBUG(a...) for WIN32
10350         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
10351           move first instruction after all variables declarations
10352         * gst\alpha\gstalpha.c:
10353         * gst\effectv\gstshagadelic.c:
10354         * gst\smpte\paint.c:
10355         * gst\videofilter\gstvideobalance.c:
10356           define M_PI if it's not defined (it's not defined on WIN32)
10357         * gst\cutter\gstcutter.c: (gst_cutter_chain):
10358         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
10359         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
10360         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
10361         (gst_matroska_demux_video_caps):
10362         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
10363         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
10364           use gst_guint64_to_gdouble for conversions
10365         * gst\goom\filters.c: (setPixelRGB_):
10366           fix a debug which was using undefined variable
10367         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
10368         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
10369           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
10370         * win32/vs6:
10371           add vs6 projects files for most of plugins-good
10372         
10373 2006-03-30  j^  <j@bootlab.org>
10374
10375         * ext/aalib/gstaasink.c:
10376         * ext/annodex/gstcmmldec.c:
10377         * ext/annodex/gstcmmlenc.c:
10378         * ext/cairo/gsttextoverlay.c:
10379         * ext/cairo/gsttimeoverlay.c:
10380         * ext/cdio/gstcdiocddasrc.c:
10381         * ext/dv/gstdvdec.c:
10382         * ext/esd/esdmon.c:
10383         * ext/esd/esdsink.c:
10384         * ext/flac/gstflacdec.c:
10385         * ext/flac/gstflacenc.c:
10386         * ext/flac/gstflactag.c:
10387         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
10388         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
10389         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
10390         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
10391         * ext/gdk_pixbuf/gstgdkpixbuf.c:
10392         * ext/gdk_pixbuf/pixbufscale.c:
10393         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
10394         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
10395         * ext/jpeg/gstjpegdec.c:
10396         * ext/jpeg/gstjpegenc.c:
10397         * ext/jpeg/gstsmokedec.c:
10398         * ext/jpeg/gstsmokeenc.c:
10399         * ext/libcaca/gstcacasink.c:
10400         * ext/libmng/gstmngdec.c:
10401         * ext/libmng/gstmngenc.c:
10402         * ext/libpng/gstpngdec.c:
10403         * ext/libpng/gstpngenc.c:
10404         * ext/mikmod/gstmikmod.c:
10405         * ext/raw1394/gstdv1394src.c:
10406         * ext/shout2/gstshout2.c:
10407         * ext/speex/gstspeexdec.c:
10408         * ext/speex/gstspeexenc.c:
10409         * gst/alpha/gstalpha.c:
10410         * gst/alpha/gstalphacolor.c:
10411         * gst/auparse/gstauparse.c:
10412         * gst/autodetect/gstautoaudiosink.c:
10413         (gst_auto_audio_sink_base_init):
10414         * gst/autodetect/gstautovideosink.c:
10415         (gst_auto_video_sink_base_init):
10416         * gst/avi/gstavimux.c: (gst_avimux_base_init):
10417         * gst/cutter/gstcutter.c:
10418         * gst/debug/breakmydata.c:
10419         * gst/debug/efence.c:
10420         * gst/debug/gstnavigationtest.c:
10421         * gst/debug/negotiation.c:
10422         * gst/debug/progressreport.c:
10423         * gst/debug/testplugin.c:
10424         * gst/effectv/gstaging.c:
10425         * gst/effectv/gstdice.c:
10426         * gst/effectv/gstedge.c:
10427         * gst/effectv/gstquark.c:
10428         * gst/effectv/gstrev.c:
10429         * gst/effectv/gstvertigo.c:
10430         * gst/effectv/gstwarp.c:
10431         * gst/flx/gstflxdec.c:
10432         * gst/goom/gstgoom.c:
10433         * gst/interleave/deinterleave.c:
10434         * gst/interleave/interleave.c:
10435         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
10436         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
10437         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
10438         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
10439         * gst/level/gstlevel.c:
10440         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
10441         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
10442         * gst/median/gstmedian.c:
10443         * gst/monoscope/gstmonoscope.c:
10444         * gst/multipart/multipartdemux.c:
10445         * gst/multipart/multipartmux.c:
10446         * gst/oldcore/gstmd5sink.c:
10447         * gst/oldcore/gstmultifilesrc.c:
10448         * gst/oldcore/gstpipefilter.c:
10449         * gst/oldcore/gstshaper.c:
10450         * gst/oldcore/gststatistics.c:
10451         * gst/rtp/gstasteriskh263.c:
10452         * gst/rtp/gstrtpL16depay.c:
10453         * gst/rtp/gstrtpL16pay.c:
10454         * gst/rtp/gstrtpamrdepay.c:
10455         * gst/rtp/gstrtpamrpay.c:
10456         * gst/rtp/gstrtpdepay.c:
10457         * gst/rtp/gstrtpgsmpay.c:
10458         * gst/rtp/gstrtph263pay.c:
10459         * gst/rtp/gstrtph263pdepay.c:
10460         * gst/rtp/gstrtph263ppay.c:
10461         * gst/rtp/gstrtpmp4gpay.c:
10462         * gst/rtp/gstrtpmp4vdepay.c:
10463         * gst/rtp/gstrtpmp4vpay.c:
10464         * gst/rtp/gstrtpmpadepay.c:
10465         * gst/rtp/gstrtpmpapay.c:
10466         * gst/rtp/gstrtppcmadepay.c:
10467         * gst/rtp/gstrtppcmapay.c:
10468         * gst/rtp/gstrtppcmudepay.c:
10469         * gst/rtp/gstrtppcmupay.c:
10470         * gst/rtp/gstrtpspeexdepay.c:
10471         * gst/rtp/gstrtpspeexpay.c:
10472         * gst/rtsp/gstrtpdec.c:
10473         * gst/smpte/gstsmpte.c:
10474         * gst/videobox/gstvideobox.c:
10475         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
10476         * gst/videofilter/gstvideobalance.c:
10477         * gst/videofilter/gstvideoflip.c:
10478         * gst/videofilter/gstvideotemplate.c:
10479         (gst_videotemplate_base_init):
10480         * gst/videomixer/videomixer.c:
10481         * gst/wavenc/gstwavenc.c:
10482         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
10483          better/unified long descriptions
10484          Fixed #336602
10485          Some cleanups to auparse, don't send multiple newsegments.
10486
10487 2006-03-29  Wim Taymans  <wim@fluendo.com>
10488
10489         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
10490
10491         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
10492         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
10493         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
10494         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
10495         * ext/dv/gstdvdemux.h:
10496         Seek in READY patch. Only works for pull based mode.
10497         Fixes #323880
10498
10499 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
10500
10501         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
10502         (gst_gdk_pixbuf_event):
10503           Fix two crashers: don't unref the same caps twice, and
10504           set pixbuf loader to NULL after freeing it.
10505
10506 2006-03-27  Wim Taymans  <wim@fluendo.com>
10507
10508         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
10509         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
10510         (gst_speexenc_chain):
10511         * ext/speex/gstspeexenc.h:
10512         Don't leak adapter.
10513         A push *always* takes ownership of the buffer, even on
10514         errors.
10515         Small cleanups.
10516
10517 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
10518
10519         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
10520           Create source pad without leaking.
10521
10522 2006-03-24  Wim Taymans  <wim@fluendo.com>
10523
10524         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
10525         * ext/flac/gstflacdec.h:
10526         * ext/flac/gstflacenc.h:
10527         Spifify a bit.
10528         Fix deadly lock order error in seeking code, STREAM_LOCK
10529         cannot be taken within LOCK and the streaming variables are
10530         protected with the STREAM_LOCK anyway.
10531
10532 2006-03-24  Wim Taymans  <wim@fluendo.com>
10533
10534         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
10535         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
10536         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
10537         this patch combines the global init_frames with the stream
10538         init_frames. Rationale being that the global delay should 
10539         be subtracted from any stream delay.
10540         Fixes #335858.
10541
10542 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
10543
10544         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
10545         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
10546         * gst/smpte/gstsmpte.c: (gst_smpte_init):
10547         * gst/videomixer/videomixer.c: (gst_videomixer_init):
10548         use DEBUG_FUNCPTR for collectpads
10549
10550 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
10551
10552         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
10553           Don't crash when encoding images where the number of rows isn't
10554           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
10555
10556 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
10557
10558         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
10559         * gst/interleave/deinterleave.c: (deinterleave_change_state):
10560         * gst/interleave/interleave.c: (interleave_change_state):
10561         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
10562           More state change function fixes.
10563
10564 2006-03-23  Wim Taymans  <wim@fluendo.com>
10565
10566         * ext/esd/esdsink.c: (gst_esdsink_class_init),
10567         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
10568         (gst_esdsink_prepare), (gst_esdsink_unprepare),
10569         (gst_esdsink_delay), (gst_esdsink_reset):
10570         * ext/esd/esdsink.h:
10571         Fix esd choppy playback by configuring audiosink
10572         correctly. Fixes #325191
10573
10574 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
10575
10576         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
10577           Make state change function thread-safe.
10578
10579 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
10580
10581         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
10582         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10583           Don't try to read beyond the end of the file just because
10584           the header claims a bigger size (like with truncated files).
10585
10586 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
10587
10588         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10589         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10590         (gst_wavparse_stream_data), (gst_wavparse_loop):
10591         * gst/wavparse/gstwavparse.h:
10592           Delay source pad creation until we have the first chunk of
10593           media data, so the we can examine the data and adjust the
10594           caps accordingly if required. This makes playback of .wav
10595           files with DTS-declared-as-PCM content work (#313266).
10596
10597 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
10598
10599         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
10600         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
10601         Don't attempt typefinding on too-short buffers that have been
10602         completely trimmed away. (Fixes #330239)
10603
10604         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
10605         Improve the debug output
10606
10607 2006-03-21  Wim Taymans  <wim@fluendo.com>
10608
10609         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
10610         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
10611         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
10612         (gst_esdsink_set_property), (gst_esdsink_get_property):
10613         Some cleanups.
10614         Reset fd to -1 when we close them.
10615
10616 2006-03-21  Wim Taymans  <wim@fluendo.com>
10617
10618         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
10619         the OPTIONS request result is optional so don't
10620         fail on it.
10621
10622 2006-03-21  Edward Hervey  <edward@fluendo.com>
10623
10624         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
10625         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
10626         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
10627         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
10628         (gst_wavparse_change_state):
10629         gcc 4.1 unreferenced pointer fixes.
10630
10631 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10632
10633         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
10634
10635         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
10636           Fix block alignment calculation. Alignment should be done before
10637           adding the byte offset where the data starts (#335231).
10638
10639 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
10640
10641         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
10642           Ensure that we set correct caps on buffers that are transferred
10643           direct from the input.
10644
10645 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
10646
10647         * gst/goom/filters.c: (zoomFilterDestroy):
10648         * gst/goom/goom_core.c: (goom_close):
10649           Free filter data when cleaning up. (Fixes: #334995)
10650
10651 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
10652
10653         * configure.ac:
10654           Don't compile udp and rtsp plugins on win32 (mingw) or other
10655           systems that don't have <sys/socket.h> for some reason (#316203).
10656
10657 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10658
10659         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
10660         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
10661         * ext/raw1394/gstdv1394src.h:
10662           Change bus reset handler so it reports useful information such as
10663           whether the device being used connected or disconnected
10664
10665 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
10666
10667         * gst/id3demux/id3v2frames.c:
10668         (parse_relative_volume_adjustment_two):
10669           We only care about gain and peak data for the master volume.
10670
10671 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
10672
10673         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
10674         (parse_id_string), (parse_unique_file_identifier),
10675         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
10676           Read replay gain tags (#323721).
10677
10678 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
10679
10680         * configure.ac:
10681           Bump requirements to gst-plugins-base CVS because
10682           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
10683
10684 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
10685
10686         * rtp/gst/gstrtppcmadepay.c:
10687         Fixed one of the caps in the code from mulaw to alaw.
10688
10689 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
10690
10691         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
10692           Ensure that we set caps on the buffers we pass.
10693
10694         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
10695         (gst_id3demux_sink_activate):
10696           Ensure that we set caps on the buffers we pass.
10697
10698           Use STREAM, TYPE_NOT_FOUND as the error class when
10699           typefinding fails.
10700
10701 2006-03-15  Edward Hervey  <edward@fluendo.com>
10702
10703         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
10704         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
10705         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
10706         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
10707         (gst_jpeg_dec_setcaps):
10708         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
10709         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
10710         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
10711         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
10712         (gst_mngdec_src_getcaps):
10713         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
10714         (gst_pngdec_caps_create_and_set):
10715         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
10716         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
10717         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
10718         * gst/alpha/gstalpha.c: (gst_alpha_init):
10719         * gst/auparse/gstauparse.c: (gst_au_parse_init):
10720         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
10721         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
10722         * gst/cutter/gstcutter.c: (gst_cutter_init):
10723         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
10724         (gst_efence_checkgetrange):
10725         * gst/debug/negotiation.c: (gst_negotiation_init):
10726         * gst/flx/gstflxdec.c: (gst_flxdec_init):
10727         * gst/goom/gstgoom.c: (gst_goom_init):
10728         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
10729         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
10730         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
10731         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
10732         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
10733         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
10734         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
10735         * gst/smpte/gstsmpte.c: (gst_smpte_init):
10736         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
10737         (gst_wavparse_create_sourcepad):
10738         Fix memleak with gst_static_pad_template_get().
10739         This uses gst_pad_new_from_static_template() instead.
10740         Fixes #333512
10741
10742 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10743
10744         * configure.ac:
10745           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
10746           used by id3demux.
10747
10748         * gst/id3demux/gstid3demux.c: (plugin_init):
10749         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
10750         (parse_user_text_identification_frame),
10751         (parse_unique_file_identifier):
10752           Add support for UFID and TXXX frames and extract musicbrainz tags.
10753
10754 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10755
10756         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10757           Catch short reads, like they might happen with truncated
10758           files (see #305279); remove unnecessary indentation.
10759
10760 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10761
10762         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
10763           Fix DIB image inversion for pictures with a
10764           depth != 8 (#305279).
10765
10766 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
10767
10768         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
10769         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
10770         * ext/jpeg/gstjpegdec.h:
10771           Fix durations on outgoing buffers after seeking
10772           in MJPEG files (#334083); some minor clean-ups.
10773
10774 2006-03-13  Wim Taymans  <wim@fluendo.com>
10775
10776         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
10777         (gst_wavparse_change_state):
10778         Implement seek in READY (re-fixes #327658)
10779
10780 2006-03-13  Wim Taymans  <wim@fluendo.com>
10781
10782         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
10783         * ext/esd/esdmon.c: (gst_esdmon_get):
10784         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
10785         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
10786         (gst_gdk_pixbuf_sink_getcaps):
10787         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
10788         (gst_jpegenc_setcaps):
10789         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
10790         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
10791         (gst_smokeenc_setcaps):
10792         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
10793         (gst_mngdec_src_getcaps):
10794         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
10795         (gst_mngenc_chain):
10796         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
10797         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
10798         * ext/speex/gstspeexdec.c: (speex_dec_convert),
10799         (speex_dec_src_event), (speex_dec_chain):
10800         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
10801         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
10802         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
10803         (gst_negotiation_pad_link), (gst_negotiation_chain):
10804         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
10805         (gst_flxdec_chain):
10806         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
10807         (deinterleave_chain):
10808         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
10809         * gst/median/gstmedian.c: (gst_median_link):
10810         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
10811         (gst_monoscope_chain):
10812         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
10813         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
10814         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
10815         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
10816         close #333784 unref the result of gst_pad_get_parent()
10817         by: Christophe Fergeau.
10818
10819 2006-03-09  Wim Taymans  <wim@fluendo.com>
10820
10821         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
10822         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
10823         Handle events in push mode better, can now do non-flushing
10824         seeks in push mode as well.
10825
10826 2006-03-07  Wim Taymans  <wim@fluendo.com>
10827
10828         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
10829         Applied patch from Kai Vehmanen, fixes #333624.
10830
10831 2006-03-06  Julien MOUTTE  <julien@moutte.net>
10832
10833         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
10834         Implement paletted and grayscale png files handling.
10835         (#150363).
10836
10837 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
10838
10839         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
10840         (gst_speexenc_chain):
10841           fix a tag list assert
10842           follow gst-plugins-base/ext/ogg/README; set OFFSET
10843           and OFFSET_END.  Muxes correctly with gst-plugins-base
10844           > 0.9.3
10845
10846 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
10847
10848         * gst/id3demux/Makefile.am:
10849         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
10850         (gst_id3demux_chain), (gst_id3demux_sink_activate):
10851           Use new typefind helper functions here as well, and
10852           do typefinding in pull-mode if upstream supports that.
10853
10854 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
10855
10856         * sys/sunaudio/gstsunaudiomixerctrl.c:
10857         (gst_sunaudiomixer_ctrl_get_volume),
10858         (gst_sunaudiomixer_ctrl_set_volume):
10859         * sys/sunaudio/gstsunaudiomixertrack.c:
10860         (gst_sunaudiomixer_track_new):
10861           Remove unused variables, breaks build from CVS
10862           with -Werror (#333392, patch by: Benjamin Pineau)
10863
10864 2006-03-03  Wim Taymans  <wim@fluendo.com>
10865
10866         * docs/plugins/Makefile.am:
10867         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10868         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10869         Added wavparse docs.
10870
10871         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
10872         (gst_wavparse_reset), (gst_wavparse_init),
10873         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
10874         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
10875         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
10876         (gst_wavparse_stream_data), (gst_wavparse_loop),
10877         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
10878         (gst_wavparse_change_state):
10879         * gst/wavparse/gstwavparse.h:
10880         Implement seek in READY (fixes #327658)
10881         Added docs and did some cleanups.
10882
10883 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
10884
10885         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10886         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
10887         (gst_avi_demux_calculate_durations_from_index),
10888         (gst_avi_demux_stream_header):
10889         * gst/avi/gstavidemux.h:
10890           If we have an index, use a duration based on the index instead
10891           of blindly trusting the information in the stream headers
10892           (fixes #331817).
10893
10894 2006-03-03  Wim Taymans  <wim@fluendo.com>
10895
10896         * docs/plugins/Makefile.am:
10897         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10898         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10899         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10900         Added smoke and jpeg to the docs.
10901
10902         * ext/jpeg/Makefile.am:
10903         * ext/jpeg/gstjpeg.c: (plugin_init):
10904         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
10905         * ext/jpeg/gstjpegenc.h:
10906         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
10907         (gst_smokedec_chain):
10908         * ext/jpeg/gstsmokedec.h:
10909         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
10910         * ext/jpeg/gstsmokeenc.h:
10911         * ext/jpeg/smokecodec.h:
10912         Port smokedec (fixes #331905).
10913         Added some docs.
10914         Some cleanups.
10915
10916 2006-03-03  Wim Taymans  <wim@fluendo.com>
10917
10918         * docs/plugins/Makefile.am:
10919         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10920         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10921         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10922         Added videobalance and videoflip to the docs.
10923
10924         * gst/videofilter/Makefile.am:
10925         * gst/videofilter/gstvideobalance.c:
10926         (gst_video_balance_update_tables_planar411),
10927         (gst_video_balance_is_passthrough),
10928         (gst_video_balance_update_properties), (oil_tablelookup_u8),
10929         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
10930         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
10931         (gst_video_balance_finalize), (gst_video_balance_class_init),
10932         (gst_video_balance_init), (gst_video_balance_interface_supported),
10933         (gst_video_balance_interface_init),
10934         (gst_video_balance_colorbalance_list_channels),
10935         (gst_video_balance_colorbalance_set_value),
10936         (gst_video_balance_colorbalance_get_value),
10937         (gst_video_balance_colorbalance_init),
10938         (gst_video_balance_set_property), (gst_video_balance_get_property),
10939         (gst_video_balance_get_type), (plugin_init):
10940         * gst/videofilter/gstvideobalance.h:
10941         Ported to 0.10. (Fixes #326160)
10942         Added docs.
10943
10944         * gst/videofilter/gstvideoflip.c:
10945         * gst/videofilter/gstvideoflip.h:
10946         Added docs.
10947
10948 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
10949
10950         * configure.ac:
10951           Bump requirements to current core and -base CVS
10952           (core for new typefind helper API, and -base for the
10953           WAVFORMATEX support that was added to libgstriff and
10954           is needed by wavparse).
10955         
10956         * gst/apetag/Makefile.am:
10957         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
10958         (gst_tag_demux_sink_activate):
10959           Use new typefind helpers for typefinding instead of our
10960           home-grown stuff; also, do typefinding in pull-mode if
10961           upstream supports that.
10962
10963 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
10964
10965         Reviewed by: Christian Schaller <christian@fluendo.com>
10966
10967         This patch fixes bug: 329107
10968
10969         This Changelog entry is for a commit done on February 17
10970
10971         * ext/gconf/gconf.c
10972         * ext/gconf/gconf.h
10973         * ext/gconf/gstgconfaudiosink.c
10974         * ext/gconf/gstgconfaudiosink.h
10975         * gconf/gstreamer.schemas.in
10976
10977 2006-02-28  Wim Taymans  <wim@fluendo.com>
10978
10979         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10980         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
10981         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
10982         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
10983         Use DEBUG_OBJECT more.
10984
10985 2006-02-28  Wim Taymans  <wim@fluendo.com>
10986
10987         * docs/plugins/Makefile.am:
10988         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10989         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10990         Added dvdec and dvdemux to docs.
10991
10992         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
10993         Added docs.
10994         Check frame sizes so we don't crash when don't have enough
10995         data.
10996         Send nice error messages on error.
10997
10998         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
10999         (gst_dvdemux_class_init), (gst_dvdemux_init),
11000         (gst_dvdemux_finalize), (gst_dvdemux_reset),
11001         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
11002         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
11003         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
11004         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
11005         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
11006         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
11007         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
11008         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
11009         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
11010         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
11011         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
11012         * ext/dv/gstdvdemux.h:
11013         Added docs.
11014         Implement pull mode.
11015         Fix memleaks.
11016         Reduce memcpy for the video demuxing.
11017
11018 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
11019
11020         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
11021         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
11022         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
11023         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
11024           Add a little extra debug. Make the decoder not return NOT_LINKED,
11025           as we want to continue decoding all CMML and emitting tags.
11026
11027 2006-02-27  Michael Smith  <msmith@fluendo.com>
11028
11029         * ext/annodex/gstskeltag.c:
11030         * ext/annodex/gstskeltag.h:
11031           Deleted; these files aren't used any more either.
11032
11033 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11034
11035         * ext/Makefile.am: Fix dist-check.
11036
11037 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11038
11039         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
11040         memleak.
11041
11042 2006-02-25  Alessandro Decina <alessandro@nnva.org>
11043
11044         * ext/annodex/Makefile.am:
11045         * ext/annodex/gstannodex.c:
11046         * ext/annodex/gstcmmldec.c:
11047         * ext/annodex/gstcmmlenc.c:
11048         * ext/annodex/gstcmmlparser.c:
11049         * ext/annodex/gstcmmlparser.h:
11050         * ext/annodex/gstcmmlutils.c:
11051         * tests/check/elements/cmmldec.c:
11052         * tests/check/elements/cmmlenc.c:
11053           Fix a memleak in gst_cmml_track_list_add_clip.
11054           Handle overflows in clip's start and end times.
11055           Add the "encoded" parameter to cmmldec and cmmlenc caps.
11056           Do not parse junk at the end of a CMML preamble buffer.
11057           Register a libxml error handler to not print stuff on stderr.
11058           Check for bad clip start and end times in the testsuites.
11059
11060 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11061
11062         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
11063         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
11064         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
11065         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
11066         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
11067         possible memleaks.
11068
11069 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11070
11071         * tests/check/Makefile.am:
11072         * tests/check/elements/cmmldec.c:
11073         * tests/check/elements/cmmlenc.c: Fix tests so that they use
11074         the plugins-base tags.
11075
11076 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11077
11078         * ext/Makefile.am: Re-enable module.
11079
11080 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11081
11082         * tests/check/Makefile.am: Forgot to remove that test.
11083
11084 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11085
11086         * ext/annodex/Makefile.am:
11087         * ext/annodex/gstannodex.c: (plugin_init):
11088         * ext/annodex/gstcmmldec.c:
11089         * ext/annodex/gstskeldec.c:
11090         * ext/annodex/gstskeldec.h:
11091         * tests/check/Makefile.am:
11092         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
11093
11094 2006-02-25  Julien MOUTTE  <julien@moutte.net>
11095
11096         * tests/check/Makefile.am: Disable those checks as well.
11097
11098 2006-02-24  Julien MOUTTE  <julien@moutte.net>
11099
11100         * ext/Makefile.am: Disable annodex for now until we figure out
11101         how to make it build.
11102         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
11103         Add a rule to your checklist : "please try to at least build 
11104         what you are going to commit into -good, or if you are too lazy
11105         to do that, please check that the buildbots are not crying because
11106         of your commit."
11107
11108 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
11109
11110         * configure.ac:
11111         * ext/Makefile.am:
11112         * ext/gdk_pixbuf/Makefile.am:
11113         * ext/gdk_pixbuf/gstgdkpixbuf.c:
11114         * ext/gdk_pixbuf/gstgdkpixbuf.h:
11115         * ext/gdk_pixbuf/pixbufscale.c:
11116         * ext/gdk_pixbuf/pixbufscale.h:
11117           Gdkpixbuf ported from 0.8 to 0.10 by
11118           Renato Filho <renato.filho@indt.org.br>.
11119           gst_loader and gdkpixbufanimation still need port.
11120
11121 2006-02-24  Michael Smith  <msmith@fluendo.com>
11122
11123         * configure.ac:
11124         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11125         * ext/Makefile.am:
11126         * ext/annodex/Makefile.am:
11127         * ext/annodex/gstannodex.c:
11128         * ext/annodex/gstannodex.h:
11129         * ext/annodex/gstcmmldec.c:
11130         * ext/annodex/gstcmmldec.h:
11131         * ext/annodex/gstcmmlenc.c:
11132         * ext/annodex/gstcmmlenc.h:
11133         * ext/annodex/gstcmmlparser.c:
11134         * ext/annodex/gstcmmlparser.h:
11135         * ext/annodex/gstcmmltag.c:
11136         * ext/annodex/gstcmmltag.h:
11137         * ext/annodex/gstcmmlutils.c:
11138         * ext/annodex/gstcmmlutils.h:
11139         * ext/annodex/gstskeldec.c:
11140         * ext/annodex/gstskeldec.h:
11141         * ext/annodex/gstskeltag.c:
11142         * ext/annodex/gstskeltag.h:
11143         * tests/check/Makefile.am:
11144         * tests/check/elements/cmmldec.c:
11145         * tests/check/elements/cmmlenc.c:
11146         * tests/check/elements/skeldec.c:
11147           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
11148           Includes tests & docs, oh my! Passes Thomas's -good checklist
11149           entirely. Wow.
11150
11151 2006-02-24  Michael Smith  <msmith@fluendo.com>
11152
11153         * autogen.sh:
11154           Check for automake 1.9 as well.
11155
11156 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
11157
11158         * ext/flac/gstflacenc.c:
11159           Change min. sample rate to 8kHz to match flacdec's.
11160           
11161 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
11162
11163         * ext/cdio/Makefile.am:
11164           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
11165           required for Cygwin, see #317048)
11166
11167         * gst/rtp/gstasteriskh263.c:
11168           Cygwin has includes for both the unix network socket API
11169           and the windows API, but only one can be included, so fix
11170           includes to only use one or the other, prefering the unxi
11171           one (#317048).
11172
11173 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
11174
11175         * rtp/gst/gstrtppcmadepay.c:
11176         * rtp/gst/gstrtppcmadepay.h:
11177         * rtp/gst/gstgstrtppcmapay.c:
11178         * rtp/gst/gstgstrtppcmapay.h:
11179         * rtp/gst/gstrtppcmudepay.c:
11180         * rtp/gst/gstrtppcmudepay.h:
11181         * rtp/gst/gstrtppcmupay.c:
11182         * rtp/gst/gstrtppcmupay.h:
11183         * rtp/gst/Makefile.am:
11184         * rtp/gst/gstrtp.c:
11185         * rtp/gst/README:
11186         Separated the G711 payloaders/depayloaders into separate elements for
11187         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
11188
11189 2006-02-22  Wim Taymans  <wim@fluendo.com>
11190
11191         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
11192         (gst_dvdec_change_state):
11193         * ext/dv/gstdvdec.h:
11194         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
11195         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
11196         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
11197         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
11198         (gst_dvdemux_flush), (gst_dvdemux_chain),
11199         (gst_dvdemux_change_state):
11200         * ext/dv/gstdvdemux.h:
11201         Ueber spiffify some more, added debug category.
11202         Use _scale.
11203         Use segments, respect playback rate from newsegment.
11204         Fix refcount issue.
11205
11206 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
11207
11208         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
11209         (gst_signal_processor_process):
11210         Fix compilation of LADPSA. It doesn't seem to work, and isn't
11211         enabled for the build, but it helps me win the feature-count
11212         competitions ooh yeah.
11213
11214 2006-02-19  Wim Taymans  <wim@fluendo.com>
11215
11216         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
11217         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
11218         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
11219         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
11220         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11221         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
11222         Use scaling code for added precission and more correct stop
11223         position in case scale==0.
11224
11225 2006-02-19  Wim Taymans  <wim@fluendo.com>
11226
11227         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
11228         (gst_flxdec_chain):
11229         * gst/flx/gstflxdec.h:
11230         Implement DURATION query.
11231
11232 2006-02-19  Wim Taymans  <wim@fluendo.com>
11233
11234         * gst/flx/flx_color.h:
11235         * gst/flx/flx_fmt.h:
11236         * gst/flx/gstflxdec.c: (gst_flxdec_init),
11237         (gst_flxdec_src_query_handler), (flx_decode_color),
11238         (gst_flxdec_chain):
11239         * gst/flx/gstflxdec.h:
11240         Set MALLOCDATA for the temp buffers so we don't leak.
11241         Some debug cleanups.
11242         Consume all data in the adapter before leaving the chain
11243         function. Fixes #330678.
11244
11245 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
11246
11247         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11248         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
11249          Handle 0 data size in otherwise valid frames.
11250          Handle numeric strings in 2.4.0 even when not in parentheses 
11251
11252 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
11253
11254         * gst/matroska/matroska-demux.c:
11255         (gst_matroska_demux_subtitle_caps),
11256         (gst_matroska_demux_plugin_init):
11257         * gst/matroska/matroska-ids.h:
11258           Recognise SSA/ASS and USF subtitle formats and
11259           set proper caps when they are found.
11260
11261 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
11262
11263         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
11264         (gst_jpeg_dec_chain):
11265           Fix invalid memory access for some odd-sized images
11266           (see image contained in quicktime stream in #327083);
11267           use g_malloc() instead of g_alloca().
11268
11269 2006-02-17  Wim Taymans  <wim@fluendo.com>
11270
11271         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
11272         Patch from Sebastien Cote, fixes #319884
11273
11274 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
11275
11276         * ext/cdio/gstcdio.c: (plugin_init):
11277           Init debug category (#331253).
11278
11279 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
11280
11281         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
11282           Pass extra_data to gst_riff_create_audio_caps(), so that
11283           WAVEFORMATEX stuff works. Post audio codec name and post
11284           it as taglist on the bus. Allow up to 8 channesl for raw
11285           PCM in the source pad template caps.
11286
11287 2006-02-16  Wim Taymans  <wim@fluendo.com>
11288
11289         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
11290         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
11291         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
11292         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
11293         (gst_multipart_set_property), (gst_multipart_get_property):
11294         Applied #318663. Gives quite a few false positives in
11295         autoscan mode, but it's better than nothing. Not closing yet.
11296
11297 2006-02-16  Wim Taymans  <wim@fluendo.com>
11298
11299         * docs/plugins/Makefile.am:
11300         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11301         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11302         * docs/plugins/gst-plugins-good-plugins.args:
11303         * docs/plugins/inspect/plugin-udp.xml:
11304         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11305         (gst_udpsrc_start):
11306         Update documentation.
11307         Fix args.
11308
11309 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
11310
11311         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11312         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
11313         frame size. (Fixes #331368)
11314
11315 2006-02-16  Wim Taymans  <wim@fluendo.com>
11316
11317         * gst/rtsp/README:
11318         Updated README.
11319
11320         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
11321         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
11322         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
11323         * gst/rtsp/gstrtspsrc.h:
11324         Make sure the RTP port is an even port an try to allocate 
11325         another if not.
11326         Added retry property to control max retries for port allocation.
11327         Make sure RTCP port is RTP port+1.
11328         Cleanup when port allocation fails.
11329         Fixes #319183.
11330         
11331 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
11332
11333         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
11334           Don't ignore return value of the parent class's state
11335           change function (#331385, patch by: Wouter Paesen).
11336
11337 2006-02-15  Wim Taymans  <wim@fluendo.com>
11338
11339         * configure.ac:
11340         * docs/plugins/Makefile.am:
11341         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11342         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11343         * docs/plugins/gst-plugins-good-plugins.hierarchy:
11344         * ext/Makefile.am:
11345         * ext/hal/Makefile.am:
11346         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
11347         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
11348         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
11349         (do_toggle_element), (gst_hal_audio_sink_set_property),
11350         (gst_hal_audio_sink_get_property),
11351         (gst_hal_audio_sink_change_state):
11352         * ext/hal/gsthalaudiosink.h:
11353         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
11354         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
11355         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
11356         (do_toggle_element), (gst_hal_audio_src_set_property),
11357         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
11358         * ext/hal/gsthalaudiosrc.h:
11359         * ext/hal/gsthalelements.c: (plugin_init):
11360         * ext/hal/gsthalelements.h:
11361         * ext/hal/hal.c: (gst_hal_get_string),
11362         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11363         (gst_hal_get_audio_src):
11364         * ext/hal/hal.h:
11365         Add HAL sound device wrapper plugins. Closes #329106
11366
11367 2006-02-15  Wim Taymans  <wim@fluendo.com>
11368
11369         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
11370         Add comment in a fultile attempt to stop the copy-and-paste 
11371         paradigm leading to duplication of bad code.
11372
11373         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
11374         Mime parameters have to be checked case insensitive
11375
11376 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
11377
11378         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
11379           Advance stream time for lagging subtitle streams by sending
11380           newsegment events with the update flag set.
11381
11382 2006-02-14  Edward Hervey  <edward@fluendo.com>
11383
11384         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
11385         There can be bogus data before the hdrl LIST tag in the RIFF header.
11386         It's hard to say if it's not respecting the AVI specifications or not,
11387         but since Google Video is producing AVIs like that and the other player
11388         don't seem to complain, I guess we should do the same.
11389
11390 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
11391
11392         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
11393         (parse_split_strings):
11394         Add more validation to ensure that a char encoding conversion
11395         produced a valid UTF-8 string.
11396
11397 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
11398
11399         Reviewed by: Edward Hervey  <edward@fluendo.com>
11400
11401         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
11402         Properly handle end of segment. Closes #330885.
11403
11404 2006-02-13  Wim Taymans  <wim@fluendo.com>
11405
11406         * gst/rtp/gstrtpmp4gpay.h:
11407         For got to commit this one.
11408
11409 2006-02-12  Wim Taymans  <wim@fluendo.com>
11410
11411         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
11412         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
11413         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
11414         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
11415         * gst/rtp/gstrtpmp4gpay.h:
11416         Make more things work.
11417         Handle ACC config strings.
11418
11419 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
11420
11421         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
11422           set timestamps if no incoming timestamps set
11423
11424 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
11425
11426         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
11427         (gst_tag_demux_do_typefind):
11428           ... and fix the very same leaks in GstTagDemux.
11429
11430 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
11431
11432         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
11433         (gst_id3demux_do_typefind):
11434         Fix a couple of mem leaks. (Patch by Jonathan Matthew
11435         <jonathan at kaolin dot wh9 dot net>)
11436
11437 2006-02-10  Wim Taymans  <wim@fluendo.com>
11438
11439         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
11440         First set options, then set caps or else the baseclass
11441         will not know about the options, duh.
11442
11443 2006-02-10  Wim Taymans  <wim@fluendo.com>
11444
11445         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
11446         (gst_rtp_mp4v_pay_setcaps):
11447         Don't waste time looking for a config string if we have codec_info
11448         on the incomming caps.
11449
11450 2006-02-10  Wim Taymans  <wim@fluendo.com>
11451
11452         * gst/rtp/README:
11453         Say something about case-sensitivity of caps vs mime-attributes.
11454
11455         * gst/rtp/Makefile.am:
11456         * gst/rtp/gstrtp.c: (plugin_init):
11457         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
11458         (gst_rtp_amr_pay_handle_buffer):
11459         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
11460         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
11461         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
11462         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
11463         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
11464         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
11465         (gst_rtp_mp4g_pay_plugin_init):
11466         * gst/rtp/gstrtpmp4gpay.h:
11467         Added beginnings of mpeg4-generic payloader (RFC 3640)
11468
11469 2006-02-09  Wim Taymans  <wim@fluendo.com>
11470
11471         * gst/rtsp/Makefile.am:
11472         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
11473         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
11474         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
11475         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
11476         (gst_rtpdec_change_state):
11477         * gst/rtsp/gstrtpdec.h:
11478         * gst/rtsp/gstrtsp.c: (plugin_init):
11479         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
11480         * gst/rtsp/rtspconnection.c: (read_body),
11481         (rtsp_connection_receive):
11482         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
11483         Resurected rtpdec to make rtspsrc happy again.
11484         Skip attributes from the session id.
11485         Don't crash when dumping a message with an empty body.
11486
11487
11488 2006-02-09  Wim Taymans  <wim@fluendo.com>
11489
11490         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
11491         Added more meaningfull warnings when something goes wrong.
11492         Clear F bit on outgoing AMR packets.
11493
11494         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
11495         (gst_rtp_amr_pay_handle_buffer):
11496         Added debugging category
11497         Support payloading of multiple AMR frames.
11498
11499         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
11500         Added some debugging.
11501
11502 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
11503
11504         * configure.ac:
11505           Back to CVS
11506
11507 === release 0.10.2 ===
11508
11509 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
11510
11511         * configure.ac:
11512           releasing 0.10.2, "Papa was a rolling stone"
11513
11514 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
11515
11516         * configure.ac:
11517           Bump core and plugins-base requirement to 0.10.2.2
11518           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
11519
11520 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11521
11522         * ext/flac/gstflac.c: (plugin_init):
11523         * ext/speex/gstspeex.c: (plugin_init):
11524           Register musicbrainz tags.
11525
11526 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
11527
11528         * ext/gconf/gconf.h:
11529           Remove declaration of function that no longer exists.
11530
11531 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11532
11533         * ext/shout2/gstshout2.c: (gst_shout2send_render),
11534         (gst_shout2send_setcaps), (gst_shout2send_change_state):
11535         Make shout2 work for non ogg streams
11536
11537 2006-02-06  Wim Taymans  <wim@fluendo.com>
11538
11539         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
11540         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
11541         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
11542         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
11543         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
11544         * gst/udp/gstmultiudpsink.h:
11545         Updated docs.
11546         Added properties bytes-served, bytes_to_serve.
11547         Post proper error messages,
11548         Emit client added signal too.
11549
11550 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
11551
11552         * docs/plugins/Makefile.am:
11553         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11554         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11555         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
11556         (gst_multiudpsink_get_stats):
11557           adding docs for multiudpsink
11558
11559 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
11560
11561         * gst/level/gstlevel.c: (gst_level_transform_ip):
11562           peak below decay is not necessarily an error, so don't ERROR log
11563
11564 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11565
11566         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
11567         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
11568         (gst_ebml_write_seek):
11569         * gst/matroska/ebml-write.h:
11570           Make sure we send a newsegment event in BYTES format
11571           before sending buffers (#328531).
11572
11573 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11574
11575         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
11576         (gst_dvdemux_sink_query):
11577         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
11578         * ext/speex/gstspeexdec.c: (speex_get_query_types),
11579         (speex_dec_src_query):
11580         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
11581         (gst_speexenc_sink_query):
11582         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
11583         * gst/matroska/matroska-demux.c:
11584         (gst_matroska_demux_get_src_query_types),
11585         (gst_matroska_demux_handle_src_query):
11586         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
11587         (gst_wavparse_pad_query):
11588           Pass unhandled queries upstream instead of just dropping
11589           them (#326446). Update query type arrays here and there.
11590
11591 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11592
11593         * tests/check/elements/matroskamux.c: (setup_src_pad):
11594           Collectpads in core got changed and now also holds a
11595           reference to any pad that is part of it. Fix refcount
11596           checks in test case accordingly.
11597
11598 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11599
11600         * gst/apetag/gstapedemux.h:
11601           Fix include, for now GstTagDemux is in the apetag dir.
11602
11603 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11604
11605         * docs/plugins/Makefile.am:
11606         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11607         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11608         * docs/plugins/inspect/plugin-cdio.xml:
11609           Add cdio plugin to docs.
11610
11611         * ext/cdio/gstcdiocddasrc.c:
11612           Add gtk-doc blurb.
11613
11614         * ext/cdio/gstcdio.c:
11615           The plugin is called 'cdio' not 'cddio'.
11616
11617 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
11618
11619         * configure.ac:
11620         * docs/plugins/Makefile.am:
11621         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11622         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11623         * docs/plugins/gst-plugins-good-plugins.hierarchy:
11624         * docs/plugins/inspect/plugin-apetag.xml:
11625         * gst/apetag/Makefile.am:
11626         * gst/apetag/gstapedemux.c:
11627         * gst/apetag/gstapedemux.h:
11628         * gst/apetag/gsttagdemux.c:
11629         * gst/apetag/gsttagdemux.h:
11630           Add APE tag demuxer (#325649).
11631
11632 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
11633
11634         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
11635         (gst_gconf_get_default_video_sink),
11636         (gst_gconf_get_default_audio_src),
11637         (gst_gconf_get_default_video_src):
11638         * ext/gconf/gconf.h:
11639         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11640         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
11641         (do_toggle_element):
11642         * ext/gconf/gstgconfaudiosink.h:
11643         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
11644         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
11645         (do_toggle_element):
11646         * ext/gconf/gstgconfaudiosrc.h:
11647         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
11648         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
11649         (do_toggle_element):
11650         * ext/gconf/gstgconfvideosink.h:
11651         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
11652         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
11653         (do_toggle_element):
11654         * ext/gconf/gstgconfvideosrc.h:
11655           Ignore changing the GConf key to "". Ignore GConf key updates
11656           that don't actually change the string.
11657           For now, ignore the GConf key when the state is > READY, as
11658           it breaks streaming. Sometime it will be nice to bring the
11659           new sink online even mid-stream, by sending NEWSEGMENT info
11660           and possibly prerolling.
11661           (Fixes #326736)
11662
11663 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
11664
11665         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
11666         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
11667         (zoomFilterSetResolution), (zoomFilterDestroy),
11668         (zoomFilterFastRGB), (pointFilter):
11669         * gst/goom/filters.h:
11670         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
11671         (goom_update), (goom_close):
11672         * gst/goom/goom_core.h:
11673         * gst/goom/goom_tools.h:
11674         * gst/goom/graphic.c:
11675         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11676         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
11677         * gst/goom/gstgoom.h:
11678         * gst/goom/lines.c: (goom_lines):
11679         * gst/goom/lines.h:
11680           Make goom reentrant by moving all important static variables
11681           into instance structures.
11682           (Fixes #329181)
11683
11684 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
11685
11686         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11687         (gst_avi_demux_all_source_pads_unlinked),
11688         (gst_avi_demux_process_next_entry):
11689         * gst/avi/gstavidemux.h:
11690           Third attempt, use gst_pad_is_linked() this time.
11691
11692 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
11693
11694         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11695         (parse_split_strings):
11696         Adjust for data length indicators when parsing (Fixes #329810)
11697         Fix stupid bug parsing UTF-8 tag text.
11698         Output tag strings with multiple fields as multiple tags, so the
11699         app gets all the data.
11700
11701 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
11702
11703         * ext/flac/gstflacenc.c:
11704         Fixed a bug add in last commit, where no event is send. Thanks Tim to
11705         show me.
11706         
11707 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
11708
11709         * ext/flac/gstflacenc.c:
11710         * gst/matroska/ebml-read.c:
11711         Just make it compile with --disable-gst-debug.
11712
11713 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
11714
11715         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
11716         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
11717         (id3v2_genre_fields_to_taglist):
11718           Never output a tag with a null contents string.
11719
11720 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
11721
11722         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
11723           Only pause if all pads are unlinked AND we've tried to send data
11724           on all of them at least once.
11725
11726 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
11727
11728         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
11729         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
11730           Make loop function/task pause itself when all source pads are
11731           unlinked.
11732
11733 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
11734
11735         * configure.ac:
11736         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
11737           Use new functions from core to render a bin from a
11738           string. Fixes build. Up requirements to core CVS.
11739
11740 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
11741
11742         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
11743           Don't push buffers into the adapter that we are going to
11744           push downstream again without framing anyway. Also, the
11745           adaptor takes ownership of buffers put into it (fixes
11746           auparse pushing invalid buffers for .au files with
11747           ADPCM contents). Finally, set caps on all outgoing buffers.
11748
11749 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
11750
11751         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
11752         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
11753         (gst_id3demux_send_tag_event):
11754         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
11755         Someone should kick my butt. Remove ID3v1 tags from the end of the
11756         file.
11757
11758         Improve error messages. Send the TAG message as soon as we complete
11759         typefinding, instead of waiting until we send the first buffer.
11760         Downstream tag event is still sent before the first buffer.
11761
11762 2006-01-27  Jan Gerber  <j@bootlab.org>
11763
11764         Reviewed by: Andy Wingo <wingo@pobox.com>
11765
11766         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
11767         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
11768         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
11769         to not have warings flooding stderr. this is the suggested way
11770         also used in dvgrab and kino. (#328336)
11771
11772 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
11773
11774         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
11775         (gst_oss_sink_init), (gst_oss_sink_finalise):
11776           Free the device name string when finalised.
11777
11778 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11779
11780         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
11781           Don't put function calls in g_return_if_fail() statements,
11782           or they'll be replaced with NOOPs if someone compiles with
11783           G_DISABLE_CHECKS defined.
11784           
11785 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
11786
11787         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
11788         Never trust ANY information encoded in a media file, especially
11789         when it's giving you sizes. (Fixes #328452)
11790
11791 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
11792
11793         * gst/rtp/gstrtpg711pay.c:
11794         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
11795         bug #325148.
11796
11797 2006-01-23  Edward Hervey  <edward@fluendo.com>
11798
11799         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
11800         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
11801         * gst/matroska/matroska-ids.h:
11802         Added recognition of Real Audio and Video streams in matroska demuxer.
11803
11804 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
11805
11806         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
11807           Remove errant break statement, and fix compilation with
11808           older GCC.
11809
11810 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
11811
11812         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11813
11814         * sys/sunaudio/gstsunaudiomixerctrl.c:
11815         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
11816           Export functions that are needed in other parts of the code,
11817           makes the mixer actually work; adjust magic minimum buffer-time
11818           value from 3ms to 5ms to work around stuttering during mp3
11819           playback (#327765).
11820
11821 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
11822
11823         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
11824
11825         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
11826         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
11827           Fix possible deadlock in matroska muxer (#327825).
11828
11829 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
11830
11831         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
11832         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
11833         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
11834         * gst/rtsp/sdpmessage.h:
11835         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
11836         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
11837           C89 fixes: declare variables at the beginning of a block and
11838           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
11839           <jensgr at gmx dot net>).
11840
11841 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
11842
11843         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
11844         * gst/id3demux/id3tags.h:
11845         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11846         (parse_comment_frame), (parse_text_identification_frame),
11847         (id3v2_tag_to_taglist), (id3v2_are_digits),
11848         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
11849         (parse_split_strings), (free_tag_strings):
11850           Rewrite parsing of text tags to handle multiple NULL terminated
11851           strings. Parse numeric genre strings and ID3v2 type
11852           "(3)(6)Alternative" style genre strings.
11853           Parse dates that are only YYYY or YYYY-mm format.
11854           (Fixes #328241 and #322154)
11855
11856 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
11857
11858         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
11859           Don't forget to initialize liboil, otherwise our oil functions
11860           will crash (fixes #327871; patch by: Christoph Burghardt
11861           <hawkes at web dot de>).
11862
11863 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11864
11865         * configure.ac:
11866           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
11867           like in the core and gst-plugins-base. Fixes #324367 and #326683;
11868           patch by: Brian Cameron <brian dot cameron at sun dot com>
11869
11870 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11871
11872         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
11873         * ext/cdio/gstcdio.h:
11874         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
11875           Fix build for libcdio versions >= 76; give slightly lower rank
11876           than cdparanoia.
11877
11878 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
11879
11880         * configure.ac:
11881         * ext/Makefile.am:
11882         * ext/cdio/Makefile.am:
11883         * ext/cdio/gstcdio.c:
11884         * ext/cdio/gstcdio.h:
11885         * ext/cdio/gstcdiocddasrc.c:
11886         * ext/cdio/gstcdiocddasrc.h:
11887           Port libcdio cdda source, formerly known as cddasrc, now known as
11888           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
11889           but that's not tested (fixes #317658).
11890
11891 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
11892
11893         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
11894           Fix conversion from TIME to BYTES format (fixes #326864;
11895           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
11896
11897 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
11898
11899         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
11900           Fix compilation of id3demux when zlib is not present.
11901           (Fixes #326602; patch by: Sergey Scobich)
11902
11903 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
11904
11905         * ext/esd/Makefile.am:
11906           Add $(ESD_CFLAGS), otherwise build will fail for folks
11907           with libesd in a non-standard prefix (#327009).
11908
11909 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
11910
11911         * configure.ac:
11912           back to HEAD
11913
11914 === release 0.10.1 ===
11915
11916 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
11917
11918         * configure.ac:
11919           releasing 0.10.1, "Li"
11920
11921 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
11922
11923           patch by: Wim Taymans
11924
11925         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
11926           fix memleak.  Fixes #326618
11927
11928 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
11929
11930           patch by: Mike Smith
11931
11932         * gst/level/gstlevel.c: (gst_level_message_new),
11933         (gst_level_message_append_channel):
11934           Fix memleak.  Fixes #326612
11935
11936 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
11937
11938         * configure.ac:
11939           prereleasing
11940         * po/af.po:
11941         * po/az.po:
11942         * po/cs.po:
11943         * po/en_GB.po:
11944         * po/hu.po:
11945         * po/it.po:
11946         * po/nb.po:
11947         * po/nl.po:
11948         * po/or.po:
11949         * po/sq.po:
11950         * po/sr.po:
11951         * po/sv.po:
11952         * po/uk.po:
11953         * po/vi.po:
11954           update translations
11955
11956 2006-01-10  Michael Smith  <msmith@fluendo.com>
11957
11958         * gst/level/gstlevel.c: (gst_level_class_init),
11959         (gst_level_dispose):
11960           Don't leak filter arrays.
11961
11962 2006-01-09 Brian Cameron <brian.cameron@sun.com>
11963
11964         reviewed by: Christian Schaller <uraeus@gnome.org>
11965         
11966         * configure.ac:
11967         * gst-plugins-good.spec.in:
11968         * sys/Makefile.am:
11969         * sys/sunaudio/Makefile.am:
11970         * sys/sunaudio/gstsunaudio.c: (plugin_init):
11971         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
11972         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
11973         (gst_sunaudiomixer_change_state):
11974         * sys/sunaudio/gstsunaudiomixer.h:
11975         * sys/sunaudio/gstsunaudiomixerctrl.c:
11976         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
11977         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
11978         (gst_sunaudiomixer_ctrl_list_tracks),
11979         (gst_sunaudiomixer_ctrl_get_volume),
11980         (gst_sunaudiomixer_ctrl_set_volume),
11981         (gst_sunaudiomixer_ctrl_set_mute),
11982         (gst_sunaudiomixer_ctrl_set_record):
11983         * sys/sunaudio/gstsunaudiomixerctrl.h:
11984         * sys/sunaudio/gstsunaudiomixertrack.c:
11985         (gst_sunaudiomixer_track_class_init),
11986         (gst_sunaudiomixer_track_init), (fill_labels),
11987         (gst_sunaudiomixer_track_new):
11988         * sys/sunaudio/gstsunaudiomixertrack.h:
11989         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
11990         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
11991         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
11992         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
11993         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
11994         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
11995         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
11996         * sys/sunaudio/gstsunaudiosink.h:
11997
11998         Add SunAudio plugin - tested to make sure it doesn't break
11999         the build under GNU/Linux.      
12000
12001 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
12002
12003         * gst-plugins-good/gst/udp/gstdynudpsink.c:
12004         * gst-plugins-good/gst/udp/gstudpsrc.c:
12005         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
12006         overrides the port or multicast parameters. Fixes bugs #323021.
12007         API addition: adds GstUDPSrc::sockfd property   
12008
12009 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
12010
12011         * ext/gconf/Makefile.am:
12012         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
12013         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
12014         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
12015         (do_toggle_element), (cb_toggle_element),
12016         (gst_gconf_audio_src_change_state):
12017         * ext/gconf/gstgconfaudiosrc.h:
12018         * ext/gconf/gstgconfelements.c: (plugin_init):
12019         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
12020         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
12021         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
12022         (do_toggle_element), (cb_toggle_element),
12023         (gst_gconf_video_src_change_state):
12024         * ext/gconf/gstgconfvideosrc.h:
12025           Add new gconfaudiosrc and gconfvideosrc elements
12026           (needed for gnome-sound-recorder).
12027
12028 2006-01-06  Edward Hervey  <edward@fluendo.com>
12029
12030         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
12031         Add gst_element_no_more_pads() for proper decodebin behaviour.
12032         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
12033         (parse_text_identification_frame), (parse_split_strings):
12034         Failure to decode some tags is not a GST_ERROR() but a
12035         GST_WARNING()
12036         When iterating over a chunk of text, check that we haven't gone too
12037         far.
12038
12039 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
12040
12041         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
12042         (plugin_init):
12043           call oil_init() when using liboil
12044
12045 2006-01-04  Wim Taymans  <wim@fluendo.com>
12046
12047         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
12048         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
12049         Fix leaks.
12050
12051 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
12052
12053         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
12054
12055         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
12056         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
12057         (gst_flac_dec_change_state):
12058           Don't g_assert() where we should just return FALSE; remove
12059           unnecessary g_assert(); initialize some fields properly in
12060           state change function (fixes #325504). Also, use
12061           GST_DEBUG_OBJECT in two more places.
12062
12063 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
12064
12065         * configure.ac:
12066           also remove smoothwave's Makefile.am
12067         * docs/plugins/Makefile.am:
12068           fix plugin docs
12069
12070 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
12071
12072         * tests/examples/Makefile.am:
12073           added missing Makefile.am
12074
12075 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
12076
12077         * configure.ac:
12078         * gst/level/Makefile.am:
12079         * gst/level/level-example.c:
12080         * tests/Makefile.am:
12081         * tests/examples/level/Makefile.am:
12082         * tests/examples/level/level-example.c: (message_handler), (main):
12083           moved level-example to tests/examples/level-example
12084         * tests/old/examples/level/demo.c: (main):
12085         * tests/old/examples/level/plot.c: (main):
12086           some initial fixes
12087
12088 2005-12-29  Michael Smith  <msmith@fluendo.com>
12089
12090         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
12091         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
12092         * gst/udp/gstmultiudpsink.h:
12093           Track packets sent per client in addition to bytes sent; provide
12094           this info through get-stats signal
12095
12096 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
12097
12098         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
12099           Can't use gst_object_unref() on a GstAdapter (#325191).
12100
12101 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
12102
12103         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
12104         If a broken tag has 0 bytes payload, at least still skip
12105         the 10 byte header
12106
12107 2005-12-22  Philippe Khalaf  <burger@speedy.org>
12108
12109         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
12110         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
12111         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
12112         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
12113           Making these depayloaders (H263+ and mpeg4 video) inherit from
12114           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
12115
12116 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12117
12118         * docs/plugins/gst-plugins-good-plugins.args:
12119         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12120         Regenerate the plugin hiearchy.
12121
12122 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
12123
12124         * docs/plugins/Makefile.am:
12125         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12126         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12127         * docs/plugins/gst-plugins-good-plugins.args:
12128         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
12129         (gst_id3demux_base_init), (gst_id3demux_class_init),
12130         (gst_id3demux_chain):
12131         * gst/id3demux/gstid3demux.h:
12132           Add documentation for id3demux.
12133           Don't fail if the first buffer is not at offset 0, just
12134           attempt to typefind and do pass through
12135           Rename the gst_type function from gst_gst_id3demux..
12136
12137 2005-12-20  Michael Smith  <msmith@fluendo.com>
12138
12139         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
12140         (gst_multiudpsink_add), (gst_multiudpsink_remove),
12141         (gst_multiudpsink_get_stats):
12142         * gst/udp/gstmultiudpsink.h:
12143           Collect statistics; return them from get_stats.
12144
12145 2005-12-19  Edward Hervey  <edward@fluendo.com>
12146
12147         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
12148         Stupid signedness issue...
12149
12150 2005-12-19  Edward Hervey  <edward@fluendo.com>
12151
12152         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
12153         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
12154         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
12155         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
12156         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
12157         Construct index for indexless files.
12158         Make sure pad/buffers are correctly reset to NULL once we don't need
12159         them anymore, else we get lovely segfaults/assertions.
12160         * gst/wavparse/gstwavparse.c:
12161         Yes, you can have 96KHz audio and wma in wav :(
12162
12163 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
12164
12165         * configure.ac:
12166           Check for optional dependency on zlib for id3demux
12167
12168         * gst/id3demux/Makefile.am:
12169         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
12170         (gst_id3demux_base_init), (gst_id3demux_class_init),
12171         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
12172         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
12173         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
12174         (gst_id3demux_set_property), (gst_id3demux_get_property),
12175         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
12176         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
12177         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
12178         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
12179         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
12180         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
12181         (simple_find_peek), (simple_find_suggest),
12182         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
12183         (plugin_init):
12184         * gst/id3demux/gstid3demux.h:
12185         * gst/id3demux/id3tags.c: (read_synch_uint),
12186         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
12187         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
12188         (id3demux_id3v2_frames_to_tag_list):
12189         * gst/id3demux/id3tags.h:
12190         * gst/id3demux/id3v2.4.0-frames.txt:
12191         * gst/id3demux/id3v2.4.0-structure.txt:
12192         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
12193         (parse_comment_frame), (parse_text_identification_frame),
12194         (id3v2_tag_to_taglist), (parse_split_strings):
12195           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
12196           otherwise it discards them. Works on my test files. 
12197
12198         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
12199           Don't send EOS to a non-existing srcpad
12200           The debug category can be static
12201
12202 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
12203
12204         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
12205         * ext/esd/esdsink.c: (gst_esdsink_prepare):
12206         * gst/multipart/multipartdemux.c:
12207           change some char* into char[]
12208
12209 2005-12-16  Wim Taymans  <wim@fluendo.com>
12210
12211         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
12212         (gst_wavparse_other), (gst_wavparse_perform_seek),
12213         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
12214         (gst_wavparse_loop), (gst_wavparse_pad_convert),
12215         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
12216         * gst/wavparse/gstwavparse.h:
12217         Use GstSegment to implement more seeking features.
12218
12219 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
12220
12221         * gst/rtsp/rtspconnection.c:
12222           Add <netinet/in.h> include and move <arpa/inet.h> include
12223           to make things work on OpenBSD as well (fixes #323717;
12224           patch by: Benjamin Pineau)
12225
12226 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
12227
12228         * gst/rtp/gstrtpspeexdepay.c:
12229         * gst/rtp/gstrtpspeexpay.c:
12230         Set clock rate to be fixed in 8000. It fixes bug #324012.
12231
12232 2005-12-14  Philippe Khalaf  <burger@speedy.org>
12233
12234         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
12235         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
12236         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
12237         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
12238         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
12239         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
12240         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
12241         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
12242         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
12243         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
12244         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
12245         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
12246         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
12247         * gst-plugins-good/gst/rtp/README:
12248         Fixed payload range in payloder caps. Removed payload range completely
12249         from depayloaders as they don't require payload type in their caps.
12250         In effect, there isn't any specific payload type for any given codec,
12251         only suggestions.
12252         Fixes bug #324011.
12253
12254 2005-12-13  Julien MOUTTE  <julien@moutte.net>
12255
12256         * gst/videomixer/videomixer.c: (gst_videomixer_init),
12257         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
12258         (gst_videomixer_collected): Code cleanup and re-enabling 
12259         queued time validity check for correct EOS handling.
12260
12261 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
12262
12263         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
12264         (gst_oss_mixer_element_get_property),
12265         (gst_oss_mixer_element_change_state):
12266         Add 'device-name' property and fix state change function.
12267
12268 2005-12-13  Edward Hervey  <edward@fluendo.com>
12269
12270         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
12271         If the speed of the file is null in the header, set the frame_time to
12272         the default setting of GST_SECOND / 70. Which is the default
12273         frame_delay for .fli files as stated in this document :
12274         http://www.compuphase.com/flic.htm
12275         Would be nice to have the time conversion done properly too (duration =
12276         flxh->frames * flxdec->frame_time)
12277
12278 2005-12-12  Julien MOUTTE  <julien@moutte.net>
12279
12280         * docs/plugins/Makefile.am:
12281         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12282         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12283         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12284         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
12285         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
12286         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
12287         documentation for videomixer on my way with a funny sample
12288         pipeline.
12289
12290 2005-12-12  Julien MOUTTE  <julien@moutte.net>
12291
12292         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
12293         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
12294         (gst_videomixer_update_queues), (gst_videomixer_collected):
12295         Fix caps negotiation. (#323896)
12296
12297 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
12298
12299         * gst/matroska/matroska-demux.c:
12300         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
12301           Set correct timestamps on audio laces, fixes playback of mp3 from
12302                 matroska.
12303
12304 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
12305
12306         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
12307         (gst_au_parse_class_init), (gst_au_parse_init),
12308         (gst_au_parse_dispose), (gst_au_parse_chain),
12309         (gst_au_parse_change_state), (plugin_init):
12310         * gst/auparse/gstauparse.h:
12311           Use gst_object_unref() for GstObjects instead of
12312           g_object_unref() and fix a mem leak in a debug
12313           statement; while we're at it, also borgify, use
12314           boilerplate macros and clean up a little bit.
12315
12316 2005-12-11  Edward Hervey  <edward@fluendo.com>
12317
12318         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
12319         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
12320         Added pull mode.
12321
12322 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12323
12324         * gst/goom/gstgoom.c:
12325         * gst/level/level-example.c: (main):
12326         * gst/smoothwave/demo-osssrc.c: (main):
12327           Use audiotestsrc instead of sinesrc (#323798).
12328
12329 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
12330
12331         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
12332           more debug-func-ptr usage
12333
12334 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
12335
12336         * gst/flx/flx_color.c: (flx_colorspace_convert):
12337         * gst/flx/flx_color.h:
12338         * gst/flx/flx_fmt.h:
12339         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
12340         * gst/flx/gstflxdec.h:
12341           Now flxdec works on big-endian machines as well.
12342
12343 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
12344
12345         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
12346         (gst_fenced_buffer_copy):
12347           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
12348           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
12349           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
12350           and use GST_DEBUG_FUNCPTR for pad functions.
12351
12352 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
12353
12354         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
12355         (gst_flac_dec_class_init), (gst_flac_dec_init),
12356         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
12357         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
12358         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
12359         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
12360         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
12361         (gst_flac_dec_change_state):
12362         * ext/flac/gstflacdec.h:
12363           Rewrite flacdec a bit, so that even seeking might work now. Most
12364           importantly, don't act upon any flow return values we get, just tell
12365           the decoder everything's dandy and act on the flow return values
12366           later on in the loop function. We don't want to mess up the internal
12367           decoder state for non-fatal things like flushing pads etc. Other
12368           than that, use GstSegment (segment seeks don't work yet though, but
12369           should be easy to add), use boilerplate macros, drop the superfluous
12370           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
12371           lots of other things.
12372
12373 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
12374
12375         * configure.ac:
12376           Update comment in OSS includes check.
12377
12378         * sys/oss/gstossdmabuffer.c:
12379         * sys/oss/gstosshelper.c:
12380         * sys/oss/gstossmixer.c:
12381         * sys/oss/gstossmixertrack.c:
12382         * sys/oss/gstosssink.c:
12383         * sys/oss/gstosssrc.c:
12384         * sys/oss/oss_probe.c:
12385           Don't assume the OSS soundcard.h include is always in
12386           the sys/ directory. Instead, use the existing defines
12387           from config.h to include the right file. Fixes
12388           compilation on OpenBSD 3.8 (#323718).
12389
12390 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12391
12392         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12393         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12394         * docs/plugins/inspect/plugin-1394.xml:
12395         * docs/plugins/inspect/plugin-aasink.xml:
12396         * docs/plugins/inspect/plugin-alaw.xml:
12397         * docs/plugins/inspect/plugin-alpha.xml:
12398         * docs/plugins/inspect/plugin-alphacolor.xml:
12399         * docs/plugins/inspect/plugin-auparse.xml:
12400         * docs/plugins/inspect/plugin-autodetect.xml:
12401         * docs/plugins/inspect/plugin-avi.xml:
12402         * docs/plugins/inspect/plugin-cacasink.xml:
12403         * docs/plugins/inspect/plugin-cairo.xml:
12404         * docs/plugins/inspect/plugin-cutter.xml:
12405         * docs/plugins/inspect/plugin-debug.xml:
12406         * docs/plugins/inspect/plugin-dv.xml:
12407         * docs/plugins/inspect/plugin-efence.xml:
12408         * docs/plugins/inspect/plugin-effectv.xml:
12409         * docs/plugins/inspect/plugin-esdsink.xml:
12410         * docs/plugins/inspect/plugin-flac.xml:
12411         * docs/plugins/inspect/plugin-flxdec.xml:
12412         * docs/plugins/inspect/plugin-gconfelements.xml:
12413         * docs/plugins/inspect/plugin-goom.xml:
12414         * docs/plugins/inspect/plugin-jpeg.xml:
12415         * docs/plugins/inspect/plugin-level.xml:
12416         * docs/plugins/inspect/plugin-matroska.xml:
12417         * docs/plugins/inspect/plugin-mulaw.xml:
12418         * docs/plugins/inspect/plugin-multipart.xml:
12419         * docs/plugins/inspect/plugin-navigationtest.xml:
12420         * docs/plugins/inspect/plugin-ossaudio.xml:
12421         * docs/plugins/inspect/plugin-png.xml:
12422         * docs/plugins/inspect/plugin-rtp.xml:
12423         * docs/plugins/inspect/plugin-rtsp.xml:
12424         * docs/plugins/inspect/plugin-shout2send.xml:
12425         * docs/plugins/inspect/plugin-smpte.xml:
12426         * docs/plugins/inspect/plugin-speex.xml:
12427         * docs/plugins/inspect/plugin-udp.xml:
12428         * docs/plugins/inspect/plugin-videobox.xml:
12429         * docs/plugins/inspect/plugin-videoflip.xml:
12430         * docs/plugins/inspect/plugin-videomixer.xml:
12431         * docs/plugins/inspect/plugin-wavenc.xml:
12432         * docs/plugins/inspect/plugin-wavparse.xml:
12433         * ext/flac/gstflac.c: (plugin_init):
12434         * ext/flac/gstflacdec.c: (flacdec_get_type),
12435         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
12436         (gst_flac_dec_init), (gst_flac_dec_finalize),
12437         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
12438         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
12439         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
12440         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
12441         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
12442         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
12443         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
12444         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
12445         * ext/flac/gstflacdec.h:
12446         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
12447         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
12448         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
12449         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
12450         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
12451         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
12452         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
12453         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
12454         (gst_flac_enc_change_state):
12455         * ext/flac/gstflacenc.h:
12456           borgify and fix up documentation
12457
12458 2005-12-09  Michael Smith  <msmith@fluendo.com>
12459
12460         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
12461           Accept a wider range of flac files, more closely matching flac spec.
12462
12463 2005-12-08  Julien MOUTTE  <julien@moutte.net>
12464
12465         * docs/plugins/Makefile.am: Add multipart elements.
12466         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12467         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
12468         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12469         * gst/multipart/multipartdemux.c:
12470         * gst/multipart/multipartmux.c: Add docs.
12471
12472 2005-12-07  Edward Hervey  <edward@fluendo.com>
12473
12474         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
12475         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
12476         (gst_avi_demux_invert):
12477         Memleak and crasher fixes.
12478         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
12479         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
12480         Memleak fixes
12481
12482 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12483
12484         * ext/aalib/gstaasink.h:
12485         * ext/cairo/gsttextoverlay.h:
12486         * ext/dv/gstdvdec.h:
12487         * ext/dv/gstdvdemux.c:
12488         * ext/dv/gstdvdemux.h:
12489         * ext/esd/esdsink.h:
12490         * ext/flac/flac_compat.h:
12491         * ext/flac/gstflacdec.h:
12492         * ext/flac/gstflacenc.h:
12493         * ext/gconf/gconf.h:
12494         * ext/gconf/gstgconfaudiosink.h:
12495         * ext/gconf/gstgconfvideosink.h:
12496         * ext/gdk_pixbuf/gstgdkanimation.h:
12497         * ext/jpeg/gstjpegdec.h:
12498         * ext/jpeg/smokecodec.h:
12499         * ext/jpeg/smokeformat.h:
12500         * ext/ladspa/gstsignalprocessor.h:
12501         * ext/ladspa/search.c: (LADSPAPluginSearch):
12502         * ext/ladspa/utils.h:
12503         * ext/libmng/gstmng.c:
12504         * ext/libmng/gstmngdec.h:
12505         * ext/libmng/gstmngenc.c:
12506         * ext/libmng/gstmngenc.h:
12507         * ext/libpng/gstpng.c:
12508         * ext/libpng/gstpngenc.c:
12509         * ext/libpng/gstpngenc.h:
12510         * ext/shout2/gstshout2.h:
12511         * ext/speex/gstspeexdec.h:
12512         * ext/speex/gstspeexenc.c:
12513         * ext/speex/gstspeexenc.h:
12514         * gst/auparse/gstauparse.c: (gst_auparse_chain):
12515         * gst/autodetect/gstautoaudiosink.h:
12516         * gst/autodetect/gstautovideosink.h:
12517         * gst/avi/gstavidemux.h:
12518         * gst/cutter/gstcutter.c: (gst_cutter_chain),
12519         (gst_cutter_set_property), (gst_cutter_get_caps):
12520         * gst/cutter/gstcutter.h:
12521         * gst/debug/tests.c: (md5_process_block):
12522         * gst/debug/tests.h:
12523         * gst/effectv/gstwarp.c:
12524         * gst/flx/flx_fmt.h:
12525         * gst/flx/gstflxdec.h:
12526         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
12527         (zoomFilterFastRGB):
12528         * gst/goom/filters.h:
12529         * gst/goom/goom_tools.h:
12530         * gst/law/alaw-encode.c:
12531         * gst/level/gstlevel.c:
12532         * gst/level/gstlevel.h:
12533         * gst/matroska/ebml-write.h:
12534         * gst/matroska/matroska-demux.h:
12535         * gst/matroska/matroska-ids.h:
12536         * gst/matroska/matroska-mux.h:
12537         * gst/monoscope/convolve.c: (convolve_match):
12538         * gst/monoscope/convolve.h:
12539         * gst/multipart/multipartmux.c:
12540         * gst/oldcore/gstaggregator.c:
12541         * gst/oldcore/gstaggregator.h:
12542         * gst/oldcore/gstmd5sink.c: (md5_process_block):
12543         * gst/oldcore/gstmd5sink.h:
12544         * gst/oldcore/gstmultifilesrc.c:
12545         * gst/oldcore/gstmultifilesrc.h:
12546         * gst/oldcore/gstpipefilter.h:
12547         * gst/oldcore/gstshaper.h:
12548         * gst/rtp/gstrtpL16depay.h:
12549         * gst/rtp/gstrtpL16pay.h:
12550         * gst/rtp/gstrtpdepay.h:
12551         * gst/rtp/gstrtpmp4vpay.c:
12552         * gst/rtp/gstrtpmp4vpay.h:
12553         * gst/rtsp/gstrtspsrc.c:
12554         * gst/rtsp/gstrtspsrc.h:
12555         * gst/rtsp/rtspconnection.h:
12556         * gst/rtsp/rtspdefs.h:
12557         * gst/rtsp/rtspmessage.h:
12558         * gst/rtsp/rtsptransport.h:
12559         * gst/rtsp/rtspurl.c:
12560         * gst/rtsp/rtspurl.h:
12561         * gst/rtsp/sdpmessage.c:
12562         * gst/rtsp/sdpmessage.h:
12563         * gst/smpte/barboxwipes.c:
12564         * gst/smpte/gstmask.h:
12565         * gst/smpte/gstsmpte.h:
12566         * gst/smpte/paint.c:
12567         * gst/smpte/paint.h:
12568         * gst/udp/gstdynudpsink.h:
12569         * gst/udp/gstmultiudpsink.h:
12570         * gst/udp/gstudpsink.c:
12571         * gst/udp/gstudpsink.h:
12572         * gst/udp/gstudpsrc.c:
12573         * gst/videomixer/videomixer.c:
12574         * gst/wavenc/riff.h:
12575         * gst/wavparse/gstwavparse.h:
12576         * sys/oss/gstossdmabuffer.h:
12577         * sys/oss/gstossmixer.h:
12578         * sys/oss/gstossmixerelement.h:
12579         * sys/oss/gstossmixertrack.h:
12580         * sys/oss/gstosssink.c:
12581         * sys/oss/gstosssink.h:
12582         * sys/oss/gstosssrc.c:
12583         * sys/oss/gstosssrc.h:
12584         * sys/osxaudio/gstosxaudioelement.h:
12585         * sys/osxaudio/gstosxaudiosink.h:
12586         * sys/osxaudio/gstosxaudiosrc.h:
12587           expand tabs
12588
12589 === release 0.10.0 ===
12590
12591 2005-12-05   <thomas (at) apestaart (dot) org>
12592
12593         * configure.ac:
12594           releasing 0.10.0, "Abondance"
12595
12596 2005-12-05  Andy Wingo  <wingo@pobox.com>
12597
12598         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
12599         * ext/flac/gstflacdec.c: (gst_flacdec_write):
12600         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
12601         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
12602         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
12603         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
12604         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
12605         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
12606         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
12607         * ext/speex/gstspeexdec.c: (speex_dec_chain):
12608         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
12609         * gst/auparse/gstauparse.c: (gst_auparse_chain):
12610         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
12611         * gst/goom/gstgoom.c: (gst_goom_chain):
12612         * gst/matroska/matroska-demux.c:
12613         (gst_matroska_demux_push_vorbis_codec_priv_data),
12614         (gst_matroska_demux_add_wvpk_header):
12615         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
12616         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12617         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
12618         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
12619         alloc_buffer changes.
12620
12621 2005-12-05  Michael Smith  <msmith@fluendo.com>
12622
12623         * docs/plugins/gst-plugins-good-plugins.args:
12624           Remove args for plugins that aren't in -good.
12625
12626 === release 0.9.7 ===
12627
12628 2005-12-01   <thomas (at) apestaart (dot) org>
12629
12630         * configure.ac:
12631           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
12632
12633 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12634
12635         * docs/plugins/.cvsignore:
12636         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12637         * docs/plugins/inspect/plugin-multipart.xml:
12638         * docs/plugins/inspect/plugin-rtp.xml:
12639           add multipart plugin to docs
12640
12641 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12642
12643         * configure.ac:
12644         * ext/Makefile.am:
12645         * ext/pango/Makefile.am:
12646         * ext/pango/gstclockoverlay.c:
12647         * ext/pango/gstclockoverlay.h:
12648         * ext/pango/gsttextoverlay.c:
12649         * ext/pango/gsttextoverlay.h:
12650         * ext/pango/gsttextrender.c:
12651         * ext/pango/gsttextrender.h:
12652         * ext/pango/gsttimeoverlay.c:
12653         * ext/pango/gsttimeoverlay.h:
12654           move pango to base
12655
12656 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12657
12658         * gst/rtp/Makefile.am:
12659         * gst/rtp/gstrtpL16depay.c:
12660         * gst/rtp/gstrtpL16depay.h:
12661         * gst/rtp/gstrtpL16parse.c:
12662         * gst/rtp/gstrtpL16parse.h:
12663         * gst/rtp/gstrtpgsmdepay.c:
12664         * gst/rtp/gstrtpgsmdepay.h:
12665         * gst/rtp/gstrtpgsmparse.c:
12666         * gst/rtp/gstrtpgsmparse.h:
12667           parsers are depayers
12668
12669 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12670
12671         * gst/rtp/Makefile.am:
12672         * gst/rtp/gstasteriskh263.c:
12673         * gst/rtp/gstrtp.c:
12674         * gst/rtp/gstrtpL16enc.c:
12675         * gst/rtp/gstrtpL16enc.h:
12676         * gst/rtp/gstrtpL16parse.c:
12677         * gst/rtp/gstrtpL16parse.h:
12678         * gst/rtp/gstrtpL16pay.c:
12679         * gst/rtp/gstrtpL16pay.h:
12680         * gst/rtp/gstrtpamrdec.c:
12681         * gst/rtp/gstrtpamrdec.h:
12682         * gst/rtp/gstrtpamrdepay.c:
12683         * gst/rtp/gstrtpamrdepay.h:
12684         * gst/rtp/gstrtpamrenc.c:
12685         * gst/rtp/gstrtpamrenc.h:
12686         * gst/rtp/gstrtpamrpay.c:
12687         * gst/rtp/gstrtpamrpay.h:
12688         * gst/rtp/gstrtpdec.c:
12689         * gst/rtp/gstrtpdec.h:
12690         * gst/rtp/gstrtpdepay.c:
12691         * gst/rtp/gstrtpdepay.h:
12692         * gst/rtp/gstrtpg711dec.c:
12693         * gst/rtp/gstrtpg711dec.h:
12694         * gst/rtp/gstrtpg711depay.c:
12695         * gst/rtp/gstrtpg711depay.h:
12696         * gst/rtp/gstrtpg711enc.c:
12697         * gst/rtp/gstrtpg711enc.h:
12698         * gst/rtp/gstrtpg711pay.c:
12699         * gst/rtp/gstrtpg711pay.h:
12700         * gst/rtp/gstrtpgsmenc.c:
12701         * gst/rtp/gstrtpgsmenc.h:
12702         * gst/rtp/gstrtpgsmparse.c:
12703         * gst/rtp/gstrtpgsmparse.h:
12704         * gst/rtp/gstrtpgsmpay.c:
12705         * gst/rtp/gstrtpgsmpay.h:
12706         * gst/rtp/gstrtph263enc.c:
12707         * gst/rtp/gstrtph263enc.h:
12708         * gst/rtp/gstrtph263pay.c:
12709         * gst/rtp/gstrtph263pay.h:
12710         * gst/rtp/gstrtph263pdec.c:
12711         * gst/rtp/gstrtph263pdec.h:
12712         * gst/rtp/gstrtph263pdepay.c:
12713         * gst/rtp/gstrtph263pdepay.h:
12714         * gst/rtp/gstrtph263penc.c:
12715         * gst/rtp/gstrtph263penc.h:
12716         * gst/rtp/gstrtph263ppay.c:
12717         * gst/rtp/gstrtph263ppay.h:
12718         * gst/rtp/gstrtpmp4vdec.c:
12719         * gst/rtp/gstrtpmp4vdec.h:
12720         * gst/rtp/gstrtpmp4vdepay.c:
12721         * gst/rtp/gstrtpmp4vdepay.h:
12722         * gst/rtp/gstrtpmp4venc.c:
12723         * gst/rtp/gstrtpmp4venc.h:
12724         * gst/rtp/gstrtpmp4vpay.c:
12725         * gst/rtp/gstrtpmp4vpay.h:
12726         * gst/rtp/gstrtpmpadec.c:
12727         * gst/rtp/gstrtpmpadec.h:
12728         * gst/rtp/gstrtpmpadepay.c:
12729         * gst/rtp/gstrtpmpadepay.h:
12730         * gst/rtp/gstrtpmpaenc.c:
12731         * gst/rtp/gstrtpmpaenc.h:
12732         * gst/rtp/gstrtpmpapay.c:
12733         * gst/rtp/gstrtpmpapay.h:
12734         * gst/rtp/gstrtpspeexdec.c:
12735         * gst/rtp/gstrtpspeexdec.h:
12736         * gst/rtp/gstrtpspeexdepay.c:
12737         * gst/rtp/gstrtpspeexdepay.h:
12738         * gst/rtp/gstrtpspeexenc.c:
12739         * gst/rtp/gstrtpspeexenc.h:
12740         * gst/rtp/gstrtpspeexpay.c:
12741         * gst/rtp/gstrtpspeexpay.h:
12742           Do burger's rename for rtp payloaders and depayloaders
12743
12744 2005-11-30  Wim Taymans  <wim@fluendo.com>
12745
12746         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
12747         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
12748         * ext/dv/gstdvdemux.h:
12749         Fix seeking in dvdemux again, add some more debug info.
12750
12751 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12752
12753         * configure.ac:
12754           fix tests
12755
12756 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12757
12758         * PORTED_09:
12759         * docs/random/PORTED_09:
12760           move
12761         * tests/Makefile.am:
12762           add
12763         * win32/gst.sln:
12764           remove
12765
12766 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12767
12768         * Makefile.am:
12769         * check/.cvsignore:
12770         * check/Makefile.am:
12771         * check/elements/.cvsignore:
12772         * check/elements/level.c:
12773         * check/elements/matroskamux.c:
12774         * configure.ac:
12775         * examples/Makefile.am:
12776         * examples/capsfilter/Makefile.am:
12777         * examples/capsfilter/capsfilter1.c:
12778         * examples/gob/Makefile.am:
12779         * examples/gob/gst-identity2.gob:
12780         * examples/gstplay/.cvsignore:
12781         * examples/gstplay/Makefile.am:
12782         * examples/gstplay/player.c:
12783         * examples/indexing/.cvsignore:
12784         * examples/indexing/Makefile.am:
12785         * examples/indexing/indexmpeg.c:
12786         * examples/level/Makefile.am:
12787         * examples/level/README:
12788         * examples/level/demo.c:
12789         * examples/level/plot.c:
12790         * examples/stats/Makefile.am:
12791         * examples/stats/mp2ogg.c:
12792         * examples/switch/.cvsignore:
12793         * examples/switch/Makefile.am:
12794         * examples/switch/switcher.c:
12795           move under tests/
12796
12797 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
12798
12799         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
12800         (gst_text_render_class_init), (resize_bitmap),
12801         (gst_text_render_render_text), (gst_text_render_setcaps),
12802         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
12803         (gst_text_render_chain), (gst_text_render_finalize),
12804         (gst_text_render_init), (gst_text_render_set_property):
12805         * ext/pango/gsttextrender.h:
12806           Add missing files.
12807
12808 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
12809
12810         * configure.ac:
12811         * ext/Makefile.am:
12812         * ext/pango/Makefile.am:
12813         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
12814         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
12815         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
12816         * ext/pango/gstclockoverlay.h:
12817         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
12818         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
12819         (gst_text_overlay_finalize), (gst_text_overlay_init),
12820         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
12821         (gst_text_overlay_text_pad_linked),
12822         (gst_text_overlay_text_pad_unlinked),
12823         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
12824         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
12825         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
12826         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
12827         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
12828         (gst_text_overlay_change_state), (plugin_init):
12829         * ext/pango/gsttextoverlay.h:
12830         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
12831         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
12832         (gst_time_overlay_class_init), (gst_time_overlay_init):
12833         * ext/pango/gsttimeoverlay.h:
12834           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
12835           and add background shading and text wrapping modes. Make 
12836           timoverlay derive from textoverlay. Also add new clockoverlay
12837           element.
12838
12839 2005-11-30  Julien MOUTTE  <julien@moutte.net>
12840
12841         * gst/udp/Makefile.am: Moved to netbuffer.
12842
12843 2005-11-30  Julien MOUTTE  <julien@moutte.net>
12844
12845         * configure.ac:
12846         * PORTED_O9:
12847         * gst/multipart/Makefile.am:
12848         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
12849         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
12850         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
12851         (gst_multipart_demux_change_state),
12852         (gst_multipart_demux_plugin_init):
12853         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
12854         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
12855         (gst_multipart_mux_sinkconnect),
12856         (gst_multipart_mux_request_new_pad),
12857         (gst_multipart_mux_handle_src_event),
12858         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12859         (gst_multipart_mux_change_state): Ported multipart mux/demux to
12860         0.9.
12861
12862 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12863
12864         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
12865         * gst/debug/gstnavigationtest.h:
12866         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
12867         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
12868         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
12869         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
12870         * gst/effectv/gstrev.c: (gst_revtv_get_type):
12871         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
12872         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
12873         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
12874         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
12875         (gst_video_flip_get_type):
12876         * gst/videofilter/gstvideoflip.h:
12877           update for symbols change
12878
12879 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12880
12881         * gst/udp/gstdynudpsink.c:
12882         * gst/udp/gstudpsrc.c:
12883           the old gstnet lib was renamed gstnetbuffer (#322257)
12884
12885 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
12886
12887         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
12888         (gst_text_overlay_collected):
12889           Actually render the text from the text pad.
12890
12891 2005-11-29  Edward Hervey  <edward@fluendo.com>
12892
12893         * gst/debug/gstnavseek.c: (gst_navseek_event):
12894         * gst/debug/progressreport.c: (gst_progress_report_event):
12895         Update for GstBaseTransform event virtual method
12896
12897 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12898
12899         * ext/cairo/Makefile.am:
12900           no need to link to videofilter
12901
12902 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12903
12904         * gst/debug/Makefile.am:
12905         * gst/debug/gstnavigationtest.h:
12906         * gst/effectv/Makefile.am:
12907         * gst/effectv/gstaging.c:
12908         * gst/effectv/gstdice.c:
12909         * gst/effectv/gstedge.c:
12910         * gst/effectv/gstquark.c:
12911         * gst/effectv/gstrev.c:
12912         * gst/effectv/gstshagadelic.c:
12913         * gst/effectv/gstvertigo.c:
12914         * gst/effectv/gstwarp.c:
12915         * gst/videofilter/Makefile.am:
12916         * gst/videofilter/gstvideofilter.c:
12917         * gst/videofilter/gstvideofilter.h:
12918         * gst/videofilter/gstvideoflip.h:
12919           remove the videofilter library and link to the one in base
12920
12921 2005-11-28  Edward Hervey  <edward@fluendo.com>
12922
12923         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
12924         Useless check now we're setting the current entry correctly.
12925
12926 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
12927
12928         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
12929         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
12930         (gst_jpegenc_change_state):
12931           Don't leak input buffer in chain function (fixes #322667); make 
12932           state change function thread-safe; don't repeat the current function
12933           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
12934           gst_pad_alloc_buffer(); misc. minor cleanups.
12935
12936 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
12937
12938         * gst/matroska/matroska-mux.c:
12939         (gst_matroska_mux_video_pad_setcaps):
12940         Look for pixel-aspect-ratio in caps, not pixel_width and
12941         pixel_height (Fixes: #322645)
12942
12943 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
12944
12945         * gst/matroska/matroska-mux.c:
12946         (gst_matroska_mux_video_pad_setcaps):
12947         From Michal Benes:
12948         frame duration should be GST_SECOND / framerate, not
12949         GST_SECOND * framerate. (Fixes: #322643)
12950
12951 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12952
12953         * configure.ac:
12954           fix up GST_PLUGIN_LDFLAGS
12955         * gst/rtsp/rtspconnection.c:
12956           fix includes (see #317043)
12957         * gst/videofilter/Makefile.am:
12958           stop installing this library
12959
12960 2005-11-26  Edward Hervey  <edward@fluendo.com>
12961
12962         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
12963         Handle the case where the incoming Video dv stream doesn't have
12964         a pixel aspect ratio set.
12965
12966 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12967
12968         * docs/plugins/Makefile.am:
12969         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12970         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12971         * ext/flac/gstflacdec.c:
12972           document flacdec
12973
12974 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
12975
12976         * docs/plugins/Makefile.am:
12977         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12978         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12979         * docs/plugins/inspect/plugin-autodetect.xml:
12980         * ext/cairo/gstcairo.c: (plugin_init):
12981         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
12982         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
12983         (gst_text_overlay_init), (gst_text_overlay_font_init),
12984         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
12985         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
12986         (gst_text_overlay_text_pad_linked),
12987         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
12988         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
12989         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
12990         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
12991         (gst_text_overlay_change_state):
12992         * ext/cairo/gsttextoverlay.h:
12993         * ext/cairo/gsttimeoverlay.c:
12994         (gst_cairo_time_overlay_update_font_height),
12995         (gst_cairo_time_overlay_set_caps),
12996         (gst_cairo_time_overlay_get_unit_size),
12997         (gst_cairo_time_overlay_print_smpte_time),
12998         (gst_cairo_time_overlay_transform),
12999         (gst_cairo_time_overlay_base_init),
13000         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
13001         (gst_cairo_time_overlay_get_type):
13002         * ext/cairo/gsttimeoverlay.h:
13003           do some name borgifying
13004           document
13005
13006 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13007
13008         * docs/plugins/Makefile.am:
13009         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13010         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13011         * gst/autodetect/gstautoaudiosink.c:
13012         (gst_auto_audio_sink_base_init):
13013         * gst/autodetect/gstautovideosink.c:
13014         (gst_auto_video_sink_base_init),
13015         (gst_auto_video_sink_factory_filter):
13016           documenting auto*sink
13017           using strstr for the video sink lookup, class field is not ordered
13018         * docs/plugins/inspect/plugin-1394.xml:
13019         * docs/plugins/inspect/plugin-aasink.xml:
13020         * docs/plugins/inspect/plugin-alaw.xml:
13021         * docs/plugins/inspect/plugin-alpha.xml:
13022         * docs/plugins/inspect/plugin-alphacolor.xml:
13023         * docs/plugins/inspect/plugin-auparse.xml:
13024         * docs/plugins/inspect/plugin-autodetect.xml:
13025         * docs/plugins/inspect/plugin-avi.xml:
13026         * docs/plugins/inspect/plugin-cacasink.xml:
13027         * docs/plugins/inspect/plugin-cairo.xml:
13028         * docs/plugins/inspect/plugin-cutter.xml:
13029         * docs/plugins/inspect/plugin-debug.xml:
13030         * docs/plugins/inspect/plugin-dv.xml:
13031         * docs/plugins/inspect/plugin-efence.xml:
13032         * docs/plugins/inspect/plugin-effectv.xml:
13033         * docs/plugins/inspect/plugin-esdsink.xml:
13034         * docs/plugins/inspect/plugin-flac.xml:
13035         * docs/plugins/inspect/plugin-flxdec.xml:
13036         * docs/plugins/inspect/plugin-gconfelements.xml:
13037         * docs/plugins/inspect/plugin-goom.xml:
13038         * docs/plugins/inspect/plugin-jpeg.xml:
13039         * docs/plugins/inspect/plugin-level.xml:
13040         * docs/plugins/inspect/plugin-matroska.xml:
13041         * docs/plugins/inspect/plugin-mulaw.xml:
13042         * docs/plugins/inspect/plugin-navigationtest.xml:
13043         * docs/plugins/inspect/plugin-ossaudio.xml:
13044         * docs/plugins/inspect/plugin-png.xml:
13045         * docs/plugins/inspect/plugin-rtp.xml:
13046         * docs/plugins/inspect/plugin-rtsp.xml:
13047         * docs/plugins/inspect/plugin-shout2send.xml:
13048         * docs/plugins/inspect/plugin-smpte.xml:
13049         * docs/plugins/inspect/plugin-speex.xml:
13050         * docs/plugins/inspect/plugin-udp.xml:
13051         * docs/plugins/inspect/plugin-videobox.xml:
13052         * docs/plugins/inspect/plugin-videoflip.xml:
13053         * docs/plugins/inspect/plugin-videomixer.xml:
13054         * docs/plugins/inspect/plugin-wavenc.xml:
13055         * docs/plugins/inspect/plugin-wavparse.xml:
13056           update for HEAD version
13057
13058 2005-11-25  Michael Smith  <msmith@fluendo.com>
13059
13060         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
13061           Patch from Sebastien Cote to close control sockets in udpsrc.
13062
13063 2005-11-24  Julien MOUTTE  <julien@moutte.net>
13064
13065         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
13066         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
13067         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
13068         (gst_quarktv_base_init), (gst_quarktv_class_init),
13069         (gst_quarktv_init): Flush the planes list on reverse caps
13070         negotiation. This was crashing because of differently sized
13071         buffers.
13072
13073 2005-11-24  Julien MOUTTE  <julien@moutte.net>
13074
13075         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
13076         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
13077         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
13078         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
13079         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
13080         (gst_videoflip_set_property), (gst_videoflip_base_init),
13081         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
13082         correctly, fix identity flipping, convert navigation event 
13083         correctly again.
13084
13085 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13086
13087         * configure.ac: back to HEAD
13088
13089 === release 0.9.6 ===
13090
13091 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
13092
13093         * configure.ac:
13094           releasing 0.9.6, "Everything's Not Lost"
13095
13096 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
13097
13098         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
13099         Oops, initialise the framerate GValue
13100
13101 2005-11-23  Julien MOUTTE  <julien@moutte.net>
13102
13103         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
13104         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
13105         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
13106         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
13107         (gst_timeoverlay_get_type):
13108         * ext/cairo/gsttimeoverlay.h:
13109         * gst/debug/Makefile.am:
13110         * gst/debug/gstnavigationtest.c:
13111         (gst_navigationtest_handle_src_event),
13112         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
13113         (gst_navigationtest_transform), (gst_navigationtest_change_state),
13114         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
13115         (gst_navigationtest_init), (gst_navigationtest_get_type),
13116         (plugin_init):
13117         * gst/debug/gstnavigationtest.h:
13118         * gst/effectv/Makefile.am:
13119         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
13120         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
13121         (gst_agingtv_base_init), (gst_agingtv_class_init),
13122         (gst_agingtv_init), (gst_agingtv_get_type):
13123         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
13124         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
13125         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
13126         (gst_dicetv_get_type):
13127         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
13128         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
13129         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
13130         (gst_edgetv_get_type):
13131         * gst/effectv/gsteffectv.c:
13132         * gst/effectv/gsteffectv.h:
13133         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
13134         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
13135         (gst_quarktv_change_state), (gst_quarktv_base_init),
13136         (gst_quarktv_class_init), (gst_quarktv_init),
13137         (gst_quarktv_get_type):
13138         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
13139         (gst_revtv_get_unit_size), (gst_revtv_transform),
13140         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
13141         (gst_revtv_get_type):
13142         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
13143         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
13144         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
13145         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
13146         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
13147         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
13148         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
13149         (gst_vertigotv_init), (gst_vertigotv_get_type):
13150         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
13151         (gst_warptv_get_unit_size), (gst_warptv_transform),
13152         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
13153         (gst_warptv_get_type):
13154         * gst/videofilter/Makefile.am:
13155         * gst/videofilter/gstvideobalance.c:
13156         * gst/videofilter/gstvideobalance.h:
13157         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
13158         (gst_videofilter_class_init), (gst_videofilter_init):
13159         * gst/videofilter/gstvideofilter.h:
13160         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
13161         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
13162         (gst_videoflip_flip), (gst_videoflip_transform),
13163         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
13164         (gst_videoflip_base_init), (gst_videoflip_class_init),
13165         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
13166         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
13167         BaseTransform, it's just a place holder for now and every video
13168         effect plugin has been ported to use BaseTransform features 
13169         directly. QuarkTV was fixed too (was broken), navigationtest works
13170         and best for the end, videoflip converts navigation events depending
13171         on flip method ! Fixes #320953
13172
13173 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
13174
13175         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
13176         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
13177         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
13178         (gst_goom_src_negotiate), (gst_goom_chain):
13179         * gst/matroska/matroska-mux.c:
13180         (gst_matroska_mux_video_pad_setcaps):
13181         * sys/osxvideo/osxvideosink.m:
13182           Fixes for API changes
13183
13184 2005-11-23  Michael Smith <msmith@fluendo.com>
13185
13186         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
13187         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
13188         * ext/jpeg/gstjpegdec.h:
13189         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
13190         * ext/jpeg/gstjpegenc.h:
13191         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
13192         (gst_smokeenc_resync):
13193         * ext/jpeg/gstsmokeenc.h:
13194           JPEG fractiony goodness.
13195
13196 2005-11-22  Michael Smith <msmith@fluendo.com>
13197
13198         * gst/goom/filters.c:
13199         * gst/goom/graphic.h:
13200           Fix compilation by making some functions static inline instead of
13201           extern inline, matching the way they're used.
13202
13203 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
13204
13205         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
13206         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
13207         * ext/cairo/gsttextoverlay.h:
13208         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
13209         * ext/gdk_pixbuf/gstgdkpixbuf.h:
13210         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
13211         (gst_pngdec_caps_create_and_set):
13212         * ext/libpng/gstpngdec.h:
13213         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
13214         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
13215         * gst/avi/gstavimux.c: (gst_avimux_init),
13216         (gst_avimux_vidsinkconnect):
13217         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
13218         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
13219         (gst_goom_src_negotiate), (gst_goom_chain):
13220         * gst/goom/gstgoom.h:
13221         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
13222         * gst/matroska/matroska-mux.c:
13223         (gst_matroska_mux_video_pad_setcaps):
13224         * sys/osxvideo/osxvideosink.h:
13225         * sys/osxvideo/osxvideosink.m:
13226           More fractional framerate conversions 
13227
13228 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
13229
13230         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
13231         * gst/debug/gstnavigationtest.c:
13232         (gst_navigationtest_handle_src_event):
13233         * gst/videofilter/gstvideofilter.c:
13234         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
13235         (gst_videofilter_init):
13236         * gst/videofilter/gstvideofilter.h:
13237           Convert to fractional framerates.
13238
13239 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
13240
13241         * ext/aalib/gstaasink.c:
13242         * ext/dv/gstdvdec.c:
13243         * ext/esd/esdmon.c:
13244         * ext/flac/gstflacenc.c:
13245         * ext/gdk_pixbuf/pixbufscale.c:
13246         * ext/libcaca/gstcacasink.c:
13247         * ext/shout2/gstshout2.c:
13248         * gst/alpha/gstalpha.c:
13249         * gst/oldcore/gstaggregator.c:
13250         * gst/oldcore/gstshaper.c:
13251         * gst/smpte/barboxwipes.c:
13252         * gst/smpte/gstsmpte.c:
13253         * gst/videobox/gstvideobox.c:
13254         * gst/videofilter/gstvideoflip.c:
13255         * gst/videomixer/videomixer.c:
13256           fix up more enums
13257
13258 2005-11-22  Michael Smith <msmith@fluendo.com>
13259
13260         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
13261         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
13262         (gst_videomixer_update_queues):
13263           Fractional framerates, videomixer.
13264
13265 2005-11-22  Michael Smith <msmith@fluendo.com>
13266
13267         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
13268         * ext/dv/gstdvdec.h:
13269         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
13270         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
13271         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
13272         (gst_dvdemux_flush):
13273         * ext/dv/gstdvdemux.h:
13274           Fractional framerates for DV. 
13275
13276 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
13277
13278         * gst/autodetect/gstautoaudiosink.c:
13279         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
13280         * gst/autodetect/gstautovideosink.c:
13281         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
13282           Use gst_plugin_feature_list_free() to free feature list and
13283           in the case of autovideosink free the list at all. Also
13284           miscellaneous cosmetic fixes.
13285
13286 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
13287
13288         * gst/cutter/gstcutter.c: (gst_cutter_chain),
13289         (gst_cutter_set_property), (gst_cutter_get_caps):
13290           copy calculation code from level; remove use of some audio
13291           functions
13292
13293 2005-11-22  Andy Wingo  <wingo@pobox.com>
13294
13295         * Update for gst_tag_setter API changes.
13296
13297 2005-11-22  Andy Wingo  <wingo@pobox.com>
13298
13299         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
13300         (gst_dvdemux_demux_frame)
13301         * ext/flac/gstflacdec.c (gst_flacdec_write)
13302         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
13303         (gst_flacenc_sink_event)
13304         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
13305         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
13306         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
13307         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
13308         * gst/auparse/gstauparse.c (gst_auparse_chain)
13309         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
13310         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
13311         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
13312         (gst_avi_demux_handle_seek)
13313         * gst/goom/gstgoom.c (gst_goom_event)
13314         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
13315         * gst/matroska/matroska-demux.c
13316         (gst_matroska_demux_handle_seek_event)
13317         (gst_matroska_demux_loop_stream_parse_id)
13318         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
13319         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
13320         (gst_wavparse_stream_headers): Run update-funcnames.
13321
13322 2005-11-22  Edward Hervey  <edward@fluendo.com>
13323
13324         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
13325         (gst_dv1394src_init), (gst_dv1394src_dispose),
13326         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
13327         (gst_dv1394src_uri_set_uri):
13328         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13329         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
13330         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
13331         URIHandler interface and element properties are now properly
13332         synchronized for DV1394src and UDPSrc
13333
13334 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
13335
13336         * ext/flac/Makefile.am:
13337         * ext/speex/Makefile.am:
13338           libgsttagedit has been renamed to libgsttag.
13339
13340 2005-11-21  Wim Taymans  <wim@fluendo.com>
13341
13342         * gst/rtsp/rtspconnection.c: (read_body):
13343         Apply patch from Sebastien Cote to fix #319184.
13344
13345 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13346
13347         * configure.ac:
13348         * gst/cutter/Makefile.am:
13349         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
13350         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
13351         (gst_cutter_set_property), (gst_cutter_get_property),
13352         (plugin_init), (gst_cutter_get_caps):
13353           port cutter
13354         * gst/level/gstlevel.c:
13355           fix up plugin details
13356
13357 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13358
13359         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
13360         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
13361         (gst_flacdec_src_event):
13362         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
13363         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
13364         (gst_signal_processor_getrange), (gst_signal_processor_chain):
13365         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
13366         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
13367         (gst_flxdec_sink_event_handler):
13368         * gst/matroska/matroska-demux.c:
13369         (gst_matroska_demux_handle_seek_event):
13370         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
13371           Update for stream lock API changes: don't take stream log
13372           in sink event handlers any longer and change GST_STREAM_LOCK
13373           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
13374           functions.
13375
13376 2005-11-21  Michael Smith <msmith@fluendo.com>
13377
13378         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
13379           gst_object_unref, not g_object_unref
13380
13381 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13382
13383         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
13384         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
13385           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
13386
13387 2005-11-21  Michael Smith <msmith@fluendo.com>
13388
13389         * gst/auparse/Makefile.am:
13390         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
13391         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
13392         (gst_auparse_change_state):
13393         * gst/auparse/gstauparse.h:
13394           Partially fix #161712. playbin still doesn't work on these files,
13395           (on the bug report, Andy says we aren't typefinding it for some
13396           reason?) but at least auparse isn't totally busted like it was before.
13397
13398 2005-11-21  Andy Wingo  <wingo@pobox.com>
13399
13400         * *.h:
13401         * *.c: Ran scripts/update-macros. Oh yes.
13402
13403 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13404
13405         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
13406           Filler events are gone for now, comment out section generating
13407           them.
13408
13409 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
13410
13411         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
13412         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
13413         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
13414         * sys/osxvideo/osxvideosink.m:
13415           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
13416           (#322027)
13417
13418 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13419
13420         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
13421         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
13422         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
13423         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
13424         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
13425         (gst_avi_demux_stream_data):
13426         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
13427         * gst/wavenc/gstwavenc.c: (write_metadata):
13428         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
13429         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
13430         Fixes for GST_FOURCC_FORMAT API change.
13431
13432 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13433
13434         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
13435         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
13436         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
13437         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
13438         (gst_text_overlay_change_state):
13439         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
13440         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
13441         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
13442         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
13443         * gst/videomixer/videomixer.c: (gst_videomixer_init),
13444         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
13445         (gst_videomixer_change_state):
13446           Fix for collect pads API change. Also fix textoverlay state
13447           change function.
13448
13449 2005-11-20  Julien MOUTTE  <julien@moutte.net>
13450
13451         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
13452         GST_PAD_IS_USABLE by something approaching it.
13453
13454 2005-11-20  Julien MOUTTE  <julien@moutte.net>
13455
13456         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
13457         API changes.
13458         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
13459         but also fix the code that was not checking return values from
13460         pad_push neither using pad_alloc_buffer.
13461
13462 2005-11-18  Edward Hervey  <edward@fluendo.com>
13463
13464         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
13465         (gst_pngenc_chain):
13466         Added debug category
13467         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
13468         goes to EOS.
13469
13470 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
13471
13472         * gst/rtp/Makefile.am
13473         * gst/rtp/gstrtp.c
13474         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
13475         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
13476         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
13477         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
13478         * gst/rtp/gstrtpg711enc.h:
13479         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
13480         * gst/rtp/gstrtpspeexenc.c:
13481         * gst/rtp/gstrtpspeexenc.h:
13482         * gst/rtp/gstrtpspeexdec.c:
13483         * gst/rtp/gstrtpspeexdec.h:
13484         Created Speex payloader and depayloader; Optimize G711 payloader to
13485         use adapter and send packets until MTU size.
13486
13487 2005-11-16  Wim Taymans  <wim@fluendo.com>
13488
13489         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
13490         Fix leak in check.
13491
13492 2005-11-16  Wim Taymans  <wim@fluendo.com>
13493
13494         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
13495         Fix state change.
13496
13497 2005-11-16  Andy Wingo  <wingo@pobox.com>
13498
13499         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
13500         (gst_udpsrc_create): Move comment.
13501
13502 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
13503
13504         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13505
13506         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
13507           When seeking, seek to closest index entry at or before the requested
13508           seek position, not just the closest one (#321001).
13509
13510 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
13511
13512         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
13513         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
13514           Invert DIB images again (see #132341).
13515
13516 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13517
13518         * configure.ac:
13519           rework configure.ac file
13520         * ext/aalib/gstaasink.c:
13521         * ext/cairo/gstcairo.c:
13522         * ext/dv/gstdv.c:
13523         * ext/esd/gstesd.c:
13524         * ext/flac/gstflac.c:
13525         * ext/gconf/gstgconfelements.c:
13526         * ext/gdk_pixbuf/gstgdkpixbuf.c:
13527         * ext/jpeg/gstjpeg.c:
13528         * ext/ladspa/gstladspa.c:
13529         * ext/libcaca/gstcacasink.c:
13530         * ext/libmng/gstmng.c:
13531         * ext/libpng/gstpng.c:
13532         * ext/mikmod/gstmikmod.c:
13533         * ext/pango/gsttextoverlay.c:
13534         * ext/pango/gsttimeoverlay.c:
13535         * ext/raw1394/gst1394.c:
13536         * ext/speex/gstspeex.c:
13537         * gst/alpha/Makefile.am:
13538         * gst/alpha/gstalpha.c:
13539         * gst/alpha/gstalphacolor.c:
13540         * gst/auparse/gstauparse.c:
13541         * gst/autodetect/gstautoaudiosink.c:
13542         (gst_auto_audio_sink_factory_filter),
13543         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
13544         * gst/autodetect/gstautodetect.c:
13545         * gst/avi/gstavi.c:
13546         * gst/cutter/gstcutter.c:
13547         * gst/debug/efence.c:
13548         * gst/debug/gstdebug.c:
13549         * gst/debug/gstnavigationtest.c:
13550         * gst/effectv/gsteffectv.c:
13551         * gst/flx/gstflxdec.c:
13552         * gst/goom/gstgoom.c:
13553         * gst/interleave/plugin.c:
13554         * gst/law/alaw.c:
13555         * gst/law/mulaw.c:
13556         * gst/level/gstlevel.c:
13557         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
13558         * gst/matroska/matroska.c:
13559         * gst/median/gstmedian.c:
13560         * gst/monoscope/gstmonoscope.c:
13561         * gst/multipart/multipart.c:
13562         * gst/oldcore/gstelements.c:
13563         * gst/rtp/gstrtp.c:
13564         * gst/rtsp/gstrtsp.c:
13565         * gst/smoothwave/gstsmoothwave.c:
13566         * gst/smpte/gstsmpte.c:
13567         * gst/udp/gstudp.c:
13568         * gst/videobox/gstvideobox.c:
13569         * gst/videofilter/gstgamma.c:
13570         * gst/videofilter/gstvideobalance.c:
13571         * gst/videofilter/gstvideoflip.c:
13572         * gst/videofilter/gstvideotemplate.c:
13573         * gst/videomixer/videomixer.c:
13574         * gst/wavenc/gstwavenc.c:
13575         * gst/wavparse/gstwavparse.c:
13576         * sys/oss/gstossaudio.c:
13577         * sys/osxaudio/gstosxaudio.c:
13578           update GST_PLUGIN_DEFINE
13579         * gst/rtp/Makefile.am:
13580         * gst/rtp/gstasteriskh263.c:
13581           check for htons/htonl headers and possibly link to winsock2 lib
13582
13583 2005-11-12  Edward Hervey  <edward@fluendo.com>
13584
13585         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
13586         Only GST_DEBUG() information on the valid components.
13587
13588 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13589
13590         * configure.ac: back to HEAD
13591
13592 === release 0.9.5 ===
13593
13594 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
13595
13596         * configure.ac:
13597           releasing 0.9.5, "Phone Alarm"
13598
13599 2005-11-11  Edward Hervey  <edward@fluendo.com>
13600
13601         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13602         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
13603         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
13604         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
13605         (gst_avi_demux_loop):
13606         * gst/avi/gstavidemux.h:
13607         Yeah, implement proper seeking. Exact seeking and segment seeking.
13608         Still need to do some checks for segment_stop.
13609
13610 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
13611
13612         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13613
13614         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
13615           Don't try to ready buffer duration from buffer that we don't
13616           own any  longer and that might already have been unreffed.
13617           (#321136)
13618
13619 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
13620
13621         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
13622         (flx_decode_delta_flc), (gst_flxdec_chain):
13623         Attempting to optimize the code for embedded systems.
13624
13625 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
13626
13627         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13628
13629         * sys/oss/gstosssink.c: (gst_oss_sink_close):
13630           Don't re-use already closed file descriptor. (#320920)
13631
13632 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
13633
13634         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
13635         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
13636         (gst_oss_sink_prepare):
13637         * sys/oss/gstosssink.h:
13638           Cache probed caps; fix debug output for SET_PARAM macros.
13639
13640 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
13641
13642         * ext/cairo/Makefile.am:
13643         * ext/cairo/gstcairo.c: (plugin_init):
13644         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
13645         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
13646         (gst_text_overlay_init), (gst_text_overlay_font_init),
13647         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
13648         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
13649         (gst_text_overlay_text_pad_linked),
13650         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
13651         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
13652         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
13653         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
13654         (gst_text_overlay_change_state):
13655         * ext/cairo/gsttextoverlay.h:
13656           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
13657           property and redo positioning. Doesn't handle upstream renegotiation
13658           yet though.
13659
13660 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
13661
13662         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
13663         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
13664         (gst_avi_demux_loop):
13665           No need to take the STREAM_LOCK in the loop function. Improve
13666           some debug messages. Don't leak pad names in debug messages.
13667
13668 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
13669
13670         * gst/matroska/matroska-demux.c:
13671         (gst_matroska_demux_push_vorbis_codec_priv_data),
13672         (gst_matroska_demux_add_wvpk_header):
13673           Don't error out when the source pad isn't linked.
13674
13675 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
13676
13677         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
13678         (gst_gconf_audio_sink_change_state):
13679         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
13680         (gst_gconf_video_sink_change_state):
13681           Fix state change functions here as well and set kid
13682           to NULL state before removing it.
13683
13684 2005-11-01  Edward Hervey  <edward@fluendo.com>
13685
13686         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
13687         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
13688         Added proper event handlind, 
13689         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
13690         ignored),
13691         and don't set a duration of 0 for buffers otherwise they are discarded
13692         by GstBaseSink.
13693
13694         GstWavEnc needs some serious loving, after going through the code I'm
13695         really wondering how this can stay in -good ...
13696
13697 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13698
13699         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
13700         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
13701         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
13702         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
13703         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
13704         (gst_matroska_mux_collected):
13705           Fix leaks and invalid memory access as reported by valgrind
13706
13707 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13708
13709         Patch by: Michal Benes <michal.benes@xeris.cz>
13710
13711         * check/Makefile.am:
13712         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
13713         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
13714         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
13715           add a unit test for matroskamux
13716           fix the bugs that the unit test exposed
13717
13718 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
13719
13720         * gst/autodetect/gstautoaudiosink.c:
13721         (gst_auto_audio_sink_class_init),
13722         (gst_auto_audio_sink_change_state):
13723         * gst/autodetect/gstautovideosink.c:
13724         (gst_auto_video_sink_class_init),
13725         (gst_auto_video_sink_change_state):
13726           Fix state change function and use GST_DEBUG_FUNCPTR in
13727           class_init.
13728
13729 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
13730
13731         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13732
13733         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
13734         (gst_ebml_write_reset), (gst_ebml_write_element_new):
13735         * gst/matroska/ebml-write.h:
13736         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
13737           Set timestamps on outgoing ebml headers as well, so that the
13738           element after matroskamux can get the timestamp already when
13739           reading the first ebml element and doesn't have to wait for
13740           the actual data buffer for that (#320308).
13741           
13742 2005-10-31  Andy Wingo  <wingo@pobox.com>
13743
13744         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
13745         (gst_videomixer_pad_link): Kill some memleaks.
13746         (gst_videomixer_pad_get_property): Style fix.
13747         (gst_videomixer_pad_set_property): Style fix.
13748         (gst_videomixer_pad_init): Style fix.
13749         (gst_videomixer_update_queues): Kill memleak.
13750         (gst_videomixer_loop): Kill memleak.
13751         (gst_videomixer_collected): Kill memleak.
13752
13753 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
13754
13755         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
13756         gst_auparse_change_state:
13757         Just some cleanup.
13758
13759 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
13760
13761         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
13762         Add checks to GST_FLOW_NOT_LINKED for values returned
13763         from gst_pad_push.
13764         
13765 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
13766
13767         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
13768         (gst_rtpg711dec_process):
13769         * gst/rtp/gstrtpgsmenc.c:
13770         Payloader now sets some default caps on the srcpad if caps on the sinkpad
13771         are never set. This is important for the g711 to work with burger's rtpbin
13772         element.
13773
13774 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
13775
13776         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
13777         (gst_speexenc_push_buffer):
13778         Add checks for return values from gst_pad_push and
13779         gst_pad_alloc_buffer.
13780
13781 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
13782
13783         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13784
13785         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
13786         (gst_matroska_demux_parse_info),
13787         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
13788         (gst_matroska_demux_parse_cluster):
13789         * gst/matroska/matroska-ids.h:
13790         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13791         (gst_matroska_mux_init), (gst_matroska_mux_start),
13792         (gst_matroska_mux_create_buffer_header),
13793         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
13794         (gst_matroska_mux_get_property):
13795         * gst/matroska/matroska-mux.h:
13796           Add SimpleBlock support to matroska demuxer and muxer (part of
13797           Matroska v2). (#319731)
13798
13799 2005-10-28  Wim Taymans  <wim@fluendo.com>
13800
13801         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
13802         (gst_jpeg_dec_change_state):
13803         * ext/jpeg/gstjpegdec.h:
13804         Cleanups. Don't create caps for every chain.
13805
13806 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
13807
13808         * gst/law/alaw-encode.c: (gst_alawenc_init),
13809         (alawenc_setcaps), (gst_alawenc_chain)
13810         * gst/law/alaw-encode.h:
13811         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
13812         (mulawenc_setcaps), (gst_mulawenc_chain)
13813         * gst/law/mulaw-encode.h:
13814         Set timestamp on buffer and it allows RTP G711 elements
13815         work properly.
13816
13817 2005-10-27  Wim Taymans  <wim@fluendo.com>
13818
13819         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
13820         Set correct format on oss instead of a silly value. 
13821
13822 2005-10-27  Julien MOUTTE  <julien@moutte.net>
13823
13824         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13825         (gst_video_box_transform_caps), (gst_video_box_set_caps),
13826         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
13827         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
13828         I420 rendering as well, doesn't bring much for my platform.
13829         Might help on some other platforms.
13830
13831 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
13832
13833         * gst/rtp/gstrtpgsmenc.c:
13834         * gst/rtp/gstrtpgsmparse.c:
13835         Declaring the padtemplate correctly.
13836
13837 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
13838
13839         * gst/rtp/gstrtpg711dec.c:
13840         * gst/rtp/gstrtpg711enc.c:
13841         * gst/rtp/gstrtpgsmenc.c:
13842         * gst/rtp/gstrtpgsmparse.c:
13843         Setting the proper copyright notice.
13844
13845 2005-10-26  Julien MOUTTE  <julien@moutte.net>
13846
13847         * gst/videobox/Makefile.am: Use liboil.
13848         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13849         (gst_video_box_set_property), (gst_video_box_transform_caps),
13850         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
13851         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
13852         using liboil. Will dot the same to I420 border generation
13853         tomorrow.
13854
13855 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
13856
13857         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
13858         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
13859         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
13860         * gst/rtp/gstrtpg711dec.h:
13861         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
13862         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
13863         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
13864         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
13865         (gst_rtpgsmenc_handle_buffer):
13866         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
13867         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
13868         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
13869         * gst/rtp/gstrtpgsmparse.h:
13870         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
13871         inherits from the basertpdepayloader.
13872
13873 2005-10-26  Julien MOUTTE  <julien@moutte.net>
13874
13875         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13876         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
13877         (gst_video_box_ayuv): Removing this forgotten debug.
13878
13879 2005-10-26  Julien MOUTTE  <julien@moutte.net>
13880
13881         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13882         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
13883         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
13884
13885 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
13886
13887         * sys/oss/gstossaudio.c:
13888         * sys/oss/gstossdmabuffer.c:
13889         * sys/oss/gstosshelper.c:
13890         * sys/oss/gstossmixer.c:
13891         * sys/oss/gstossmixerelement.c:
13892         * sys/oss/gstossmixertrack.c:
13893         * sys/oss/gstosssink.c:
13894         * sys/oss/gstosssrc.c:
13895           Actually use the 'oss' debug category we register.
13896
13897 2005-10-26  Julien MOUTTE  <julien@moutte.net>
13898
13899         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
13900         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
13901         Use gst_pad_get_parent and drop the ref that was added through
13902         that call.
13903
13904 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13905
13906         * gst/rtp/gstrtpgsmenc.c:
13907           Fix compilation
13908
13909 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
13910
13911         * gst/rtp/gstrtpg711dec.c
13912         Just removed a couple of lines of weird code used during
13913         development/test time.
13914
13915 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
13916
13917         * gst/rtp/Makefile.am
13918         * gst/rtp/gstrtp.c
13919         * gst/rtp/gstrtpg711enc.c
13920         * gst/rtp/gstrtpg711enc.h
13921         * gst/rtp/gstrtpg711dec.c
13922         * gst/rtp/gstrtpg711dec.h
13923         Created G711 payloader and depayloader (it supports mulaw and alaw
13924         (dec)encoders)
13925
13926 2005-10-25  Julien MOUTTE  <julien@moutte.net>
13927
13928         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13929         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
13930         Doh ! I introduced wingo's bug again ! Sorry...
13931
13932 2005-10-25  Christian Schaller <christian@fluendo.com> 
13933
13934         * gst/rtp/Makefile.am: add missing header files for disting
13935
13936 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
13937
13938         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
13939         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
13940         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
13941         (gst_rtpgsmenc_handle_buffer):
13942         * gst/rtp/gstrtpgsmenc.h:
13943         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
13944         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
13945         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
13946         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
13947         * gst/rtp/gstrtpgsmparse.h:
13948         Getting the GSM (de)payloader working and compatible with our plans for RTP.
13949
13950 2005-10-25  Julien MOUTTE  <julien@moutte.net>
13951
13952         * ext/libpng/gstpngdec.c: (user_info_callback),
13953         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
13954         a newsegment event, move some redundant code in a single place.
13955
13956 2005-10-25  Julien MOUTTE  <julien@moutte.net>
13957
13958         * ext/libpng/gstpngdec.c: (user_info_callback),
13959         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
13960         hack to get correct colors order when we have a png image with
13961         alpha channel.
13962
13963 2005-10-24  Edward Hervey  <edward@fluendo.com>
13964
13965         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
13966         Call gst_element_no_more_pads when there will be no more pads.
13967
13968 2005-10-24  Wim Taymans  <wim@fluendo.com>
13969
13970         * gst/rtp/Makefile.am:
13971         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
13972         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
13973         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
13974         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
13975         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
13976         (gst_asteriskh263_plugin_init):
13977         * gst/rtp/gstasteriskh263.h:
13978         * gst/rtp/gstrtp.c: (plugin_init):
13979         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
13980         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
13981         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
13982         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
13983         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
13984         (gst_rtph263enc_plugin_init):
13985         * gst/rtp/gstrtph263enc.h:
13986         Added two new payloaders, an RFC 2190 payloader for h263 and
13987         a payload convertor for an asterisk server.
13988
13989 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
13990
13991         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
13992           Set bytes_per_sample correctly (is not always 4, but 
13993           depends on width and number of channels).
13994
13995 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
13996
13997         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
13998         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
13999         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
14000         (gst_flacenc_sink_event), (gst_flacenc_chain),
14001         (gst_flacenc_set_property), (gst_flacenc_get_property),
14002         (gst_flacenc_change_state):
14003         * ext/flac/gstflacenc.h:
14004           Fix seeking, so that flacenc can rewrite the header with the
14005           correct duration and amount of samples and all that at EOS;
14006           also set timestamps and granulepos on outgoing buffers; add
14007           debug category; fix state change function.
14008           
14009 2005-10-24  Julien MOUTTE  <julien@moutte.net>
14010
14011         * gst/videomixer/videomixer.c: Don't restrict video geometry
14012         from 16 to 4096.
14013
14014 2005-10-24  Julien MOUTTE  <julien@moutte.net>
14015
14016         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
14017         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
14018         Fix caps negotiation correctly, add debugging category.
14019
14020 2005-10-24  Christian Schaller  <christian@fluendo.com>
14021
14022         * configure.ac: Port over Thomas's change from base listing all plugins
14023
14024 2005-10-24  Julien MOUTTE  <julien@moutte.net>
14025
14026         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
14027         a sink pad.
14028
14029 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14030
14031         * configure.ac:
14032         * docs/upload.mak:
14033           back to HEAD
14034
14035 === release 0.9.4 ===
14036
14037 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14038
14039         * configure.ac:
14040           Releasing 0.9.4, "Dromiceiomimus"
14041
14042 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
14043
14044         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
14045         (gst_speexenc_src_query):
14046           Add position and duration query, fix query type function.
14047           
14048         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
14049         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14050           Let's not set non-fixed caps on source pads.
14051
14052 2005-10-21  Wim Taymans  <wim@fluendo.com>
14053
14054         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
14055         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
14056         (gst_avi_demux_handle_seek):
14057         Set correct stream_time in newsegment event.
14058         avi can also handle a duration query now.
14059
14060 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
14061
14062         * gst/matroska/matroska-demux.c:
14063         (gst_matroska_demux_handle_src_query),
14064         (gst_matroska_demux_handle_seek_event),
14065         (gst_matroska_demux_loop_stream_parse_id):
14066           Fix duration query; fix basetime in newsegment event after
14067           seek; fix duration in initial newsegment event.
14068
14069         * gst/matroska/matroska-mux.c:
14070         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
14071           Extract number of channels and samplerate from vorbis headers;
14072           add some debug messages when querying the durations of the
14073           input streams.
14074
14075 2005-10-20  Wim Taymans  <wim@fluendo.com>
14076
14077         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
14078         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
14079         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
14080         Set stream time correctly in newsegment.
14081
14082 2005-10-20  Wim Taymans  <wim@fluendo.com>
14083
14084         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
14085         Correctly fill in the stream time.
14086
14087 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14088
14089         * check/elements/level.c: (GST_START_TEST):
14090         * gst/level/gstlevel.c: (gst_level_message_new):
14091         * gst/level/level-example.c: (message_handler):
14092           use ELEMENT messages instead
14093
14094 2005-10-19  Wim Taymans  <wim@fluendo.com>
14095
14096         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
14097         (gst_dvdemux_src_query):
14098         * ext/flac/gstflacdec.c: (gst_flacdec_length),
14099         (gst_flacdec_src_query):
14100         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
14101         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
14102         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
14103         * gst/debug/gstnavseek.c: (gst_navseek_seek):
14104         * gst/debug/progressreport.c: (gst_progress_report_report):
14105         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
14106         * gst/matroska/matroska-demux.c:
14107         (gst_matroska_demux_handle_src_query):
14108         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
14109         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
14110         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
14111         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
14112         (gst_wavparse_srcpad_event):
14113         API change fix.
14114
14115 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
14116
14117         * gst/goom/filters.c:
14118         * gst/goom/graphic.h:
14119         * gst/goom/lines.c:
14120           Make inline functions either 'static inline' or 'extern inline',
14121           otherwise the Forte compiler apparently won't inline them (#317300).
14122
14123 2005-10-19  Julien MOUTTE  <julien@moutte.net>
14124
14125         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
14126         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
14127         (user_info_callback), (user_endrow_callback), (user_end_callback),
14128         (user_read_data), (gst_pngdec_caps_create_and_set),
14129         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
14130         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
14131         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
14132         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
14133         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
14134         very nice and handle push/pull based model. if you have filesrc
14135         connected to it, it will do random access to load the png file.
14136         If you have a network source that can't do _getrange, it does 
14137         progressive loading through the chain function.
14138         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
14139         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
14140         thanks to Master Wim Taymans ;-)
14141
14142 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
14143
14144         * gst/matroska/Makefile.am:
14145         * gst/matroska/ebml-read.c:
14146         * gst/matroska/ebml-read.h:
14147         * gst/matroska/matroska-demux.c:
14148         * gst/matroska/matroska-demux.h:
14149         * gst/matroska/matroska.c: (plugin_init):
14150           Ported matroska demuxer to 0.9.
14151
14152 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
14153
14154         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
14155
14156         * gst/matroska/matroska-mux.c:
14157         (gst_matroska_mux_video_pad_setcaps),
14158         (gst_matroska_mux_audio_pad_setcaps):
14159           Fix mpeg4 input handling (#318847); also, while we're at it,
14160           fix media type for Motion-JPEG: should be image/jpeg.
14161
14162 2005-10-18  Wim Taymans  <wim@fluendo.com>
14163
14164         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
14165         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
14166         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
14167         Fix for segment-start/stop API change.
14168
14169 2005-10-17  Julien MOUTTE  <julien@moutte.net>
14170
14171         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
14172         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
14173         way.
14174
14175 2005-10-17  Julien MOUTTE  <julien@moutte.net>
14176
14177         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
14178         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
14179         output declared in transform_caps.
14180
14181 2005-10-17  Julien MOUTTE  <julien@moutte.net>
14182
14183         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
14184
14185 2005-10-17  Julien MOUTTE  <julien@moutte.net>
14186
14187         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
14188         (gst_video_box_get_unit_size): Fix wrong size calculations and
14189         implement get_unit_size correctly.
14190
14191 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
14192
14193         * configure.ac:
14194           Enable flx plugin.
14195
14196         * gst/flx/gstflxdec.c: (flx_decode_chunks):
14197           Fix gcc4 signedness issue.
14198
14199 2005-10-17  Julien MOUTTE  <julien@moutte.net>
14200
14201         * configure.ac: Adding videomixer.
14202         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
14203         (user_read_data), (gst_pngdec_chain): More debugging.
14204         * gst/alpha/Makefile.am: Adding alphacolor
14205         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
14206         (gst_alpha_color_class_init), (gst_alpha_color_init),
14207         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
14208         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
14209         (plugin_init): Ported to 0.9 using in place base tranform.
14210         * gst/videomixer/Makefile.am:
14211         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
14212         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
14213         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
14214         (gst_videomixer_pad_init), (gst_videomixer_class_init),
14215         (gst_videomixer_init), (gst_videomixer_getcaps),
14216         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
14217         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
14218         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
14219         to 0.9 using collectpads.
14220
14221 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
14222
14223         * configure.ac:
14224         * gst/flx/Makefile.am:
14225         * gst/flx/gstflxdec.c: (gst_flxdec_init),
14226         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
14227         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
14228         * gst/flx/gstflxdec.h:
14229         flx plugin ported to 0.9
14230
14231 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
14232
14233         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
14234           use new gst_version_string()
14235
14236 2005-10-16  Andy Wingo  <wingo@pobox.com>
14237
14238         * configure.ac: GLIB_CHECK.
14239
14240 2005-10-15  Julien MOUTTE  <julien@moutte.net>
14241
14242         * ext/libpng/Makefile.am:
14243         * ext/libpng/gstpng.c: (plugin_init):
14244         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
14245         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
14246         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
14247
14248 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
14249
14250         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
14251
14252         * configure.ac:
14253         * gst/matroska/Makefile.am:
14254         * gst/matroska/ebml-ids.h:
14255         * gst/matroska/ebml-write.c:
14256         * gst/matroska/ebml-write.h:
14257         * gst/matroska/matroska-ids.h:
14258         * gst/matroska/matroska-mux.c:
14259         * gst/matroska/matroska-mux.h:
14260         * gst/matroska/matroska.c: (plugin_init):
14261           Port matroska muxer to 0.9 (#318847).
14262
14263 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
14264
14265         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
14266         (comment_init), (comment_add):
14267           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
14268           use GST_READ_UINT32_LE() and friends rather than the private
14269           implementation of those same macros.
14270
14271 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
14272
14273         * examples/stats/mp2ogg.c:
14274           more typo fixes
14275
14276 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
14277
14278         * examples/indexing/indexmpeg.c: (main):
14279         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
14280         (gst_esdmon_close_audio), (gst_esdmon_change_state):
14281         * ext/esd/esdmon.h:
14282         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
14283         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
14284         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
14285         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
14286         * gst/avi/gstavimux.c: (gst_avimux_init):
14287         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
14288         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
14289         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
14290         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
14291         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
14292         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
14293         * gst/oldcore/gstmultifilesrc.h:
14294         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
14295         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
14296         (gst_pipefilter_change_state):
14297         * gst/oldcore/gstpipefilter.h:
14298         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
14299         * gst/videomixer/videomixer.c: (gst_videomixer_init):
14300         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
14301         * sys/osxaudio/gstosxaudiosink.h:
14302         * sys/osxaudio/gstosxaudiosrc.h:
14303           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
14304           moved bitshift from macro to enum definition
14305
14306 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
14307
14308         * ext/Makefile.am:
14309         * ext/cairo/Makefile.am:
14310         * ext/cairo/gstcairo.c: (plugin_init):
14311         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
14312         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
14313         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
14314         * ext/cairo/gsttimeoverlay.h:
14315           update of cairo-based timeoverlay to 1.0 Cairo API
14316           doesn't work yet for resizing of output sink
14317
14318 2005-10-11  Wim Taymans  <wim@fluendo.com>
14319
14320         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
14321         newsegment API fix.
14322
14323 2005-10-11  Wim Taymans  <wim@fluendo.com>
14324
14325         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
14326         (gst_dvdemux_demux_frame):
14327         * ext/flac/gstflacdec.c: (gst_flacdec_write):
14328         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14329         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
14330         (gst_avi_demux_handle_seek):
14331         * gst/goom/gstgoom.c: (gst_goom_event):
14332         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
14333         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
14334         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
14335         (gst_wavparse_loop), (gst_wavparse_pad_convert),
14336         (gst_wavparse_srcpad_event):
14337         newsegment API update.
14338
14339 2005-10-11  Andy Wingo  <wingo@pobox.com>
14340
14341         * ext/speex/gstspeexenc.c: Signedness cleanups.
14342
14343 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
14344
14345         * PORTED_09:
14346         * ext/speex/Makefile.am:
14347         * ext/speex/gstspeex.c:
14348         * ext/speex/gstspeexenc.c:
14349         Speexenc ported to 0.9
14350
14351 2005-10-10  Wim Taymans  <wim@fluendo.com>
14352
14353         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
14354         (gst_oss_sink_init), (gst_oss_sink_set_property),
14355         (gst_oss_sink_get_property), (gst_oss_sink_open),
14356         (gst_oss_sink_prepare), (gst_oss_sink_reset):
14357         * sys/oss/gstosssink.h:
14358         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
14359         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
14360         (gst_oss_src_prepare):
14361         Cleanups, make device configurable in the sink, handle and report
14362         errors.
14363
14364 2005-10-10  Wim Taymans  <wim@fluendo.com>
14365
14366         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
14367         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
14368         Make sure element is NULL before removing from the bin.
14369
14370 2005-10-07  Andy Wingo  <wingo@pobox.com>
14371
14372         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
14373         block forever in a read().
14374         (gst_dv1394src_bus_reset): Post a message when the cable is
14375         unplugged.
14376         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
14377         (gst_dv1394src_bus_reset): Don't unref the message.
14378
14379         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
14380         hacking. The only change should be that the state change stuff was
14381         put into basesrc's start() and stop() routines, which coalesces
14382         some steps.
14383
14384 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
14385
14386         * configure.ac:
14387           Add check for mmap
14388           
14389         * gst/debug/Makefile.am:
14390           Only compile efence plugin on systems that have mmap.
14391
14392 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
14393
14394         * gst/debug/Makefile.am:
14395         * gst/debug/breakmydata.c:
14396         * gst/debug/gstdebug.c:
14397         * gst/debug/gstnavigationtest.c:
14398         * gst/debug/gstnavseek.c: 
14399         * gst/debug/gstnavseek.h:
14400         * gst/debug/progressreport.c: 
14401         * gst/debug/testplugin.c:
14402           Port progressreport, navseek, navigationtest, testsink and
14403           breakmydata.
14404
14405 2005-10-05  Edward Hervey  <edward@fluendo.com>
14406
14407         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
14408         (gst_dvdemux_src_query):
14409         Fixes for better conversion
14410
14411 2005-10-04  Michael Smith <msmith@fluendo.com>
14412
14413         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
14414         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
14415         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
14416         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
14417           Set state of elements to NULL before removing from bins.
14418           Set state of test element to NULL if we failed to move it to READY
14419
14420 2005-10-04  Edward Hervey  <edward@fluendo.com>
14421
14422         * ext/dv/Makefile.am:
14423         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
14424         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
14425         Corrected the query function for position so it doesn't forget what
14426         format was asked, and calls the conversion functions on the correct pad.
14427
14428 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14429
14430         * configure.ac:
14431           back to development
14432
14433 === release 0.9.3 ===
14434
14435 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14436
14437         * configure.ac:
14438           Releasing 0.9.3, "Aramis"
14439
14440 2005-10-03  Andy Wingo  <wingo@pobox.com>
14441
14442         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
14443         error returns.
14444
14445 2005-10-02  Andy Wingo  <wingo@pobox.com>
14446
14447         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
14448
14449         * ext/flac/gstflacenc.c: Ported to 0.9.
14450
14451         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
14452
14453         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
14454         and link to gsttagedit. Enable flacenc.
14455
14456         * ext/flac/gstflacdec.c: Re-enable tag reading.
14457
14458 2005-09-30  Wim Taymans  <wim@fluendo.com>
14459
14460         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
14461         * gst/rtp/gstrtpgsmparse.c:
14462         * gst/rtp/gstrtph263penc.c:
14463         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
14464         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
14465         (gst_rtpmp4venc_set_property):
14466         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
14467         Various class and caps fixes from Andre Magalhaes (andrunko)
14468
14469 2005-09-29  Wim Taymans  <wim@fluendo.com>
14470
14471         * gst/level/level-example.c: (main):
14472         Update for new bus API.
14473
14474 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
14475
14476         * configure.ac:
14477           Fix unexpanded autoconf macro GST_DOC, which has been renamed
14478           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
14479
14480 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
14481
14482         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
14483           Fix playback of mono streams (bytes_per_sample should be set
14484           from the sample width and the number of channels negotiated,
14485           and not just be set to 4) (#317338)
14486
14487 2005-09-26  Wim Taymans  <wim@fluendo.com>
14488
14489         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
14490         (gst_rtpmpaenc_handle_buffer):
14491         Set buffer duration correctly.
14492
14493 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
14494
14495         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
14496         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
14497         (gst_avi_demux_change_state):
14498           Don't crash when encountering a stream with an unknown fourcc or
14499           codec id. Instead, create a pad of type video/x-avi-unknown or
14500           audio/x-avi-unknown, which as a side-effect also results in less
14501           confusing error messages in players ('no decoder' vs. 'no streams');
14502           minor fixes to state change function and class_init function.
14503
14504 2005-09-24  Wim Taymans  <wim@fluendo.com>
14505
14506         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
14507         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
14508         These are sinks.
14509
14510 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14511
14512         * check/elements/level.c: (GST_START_TEST):
14513           fix test for new GstClockTime use
14514         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
14515         (gst_level_transform_ip):
14516         * gst/level/gstlevel.h:
14517           fix up the decay peak, ensuring the decay peak is never lower
14518           than the peak for that interval
14519
14520 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14521
14522         * docs/plugins/gst-plugins-good-plugins.args:
14523         * docs/plugins/inspect/plugin-alpha.xml:
14524         * docs/plugins/inspect/plugin-rtp.xml:
14525         * gst/level/gstlevel.c: (gst_level_set_caps),
14526         (gst_level_transform_ip):
14527           updating docs
14528
14529 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14530
14531         * Makefile.am:
14532         * check/elements/level.c: (GST_START_TEST):
14533         * gst/level/Makefile.am:
14534         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
14535         (gst_level_set_property), (gst_level_get_property),
14536         (gst_level_set_caps), (gst_level_message_new),
14537         (gst_level_transform_ip):
14538         * gst/level/gstlevel.h:
14539         * gst/level/level-example.c: (message_handler), (main):
14540           convert to using GstClockTime for all time values, finally.
14541
14542 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14543
14544         * gst/auparse/Makefile.am:
14545         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14546           fix up build
14547         * configure.ac:
14548         * ext/cairo/Makefile.am:
14549         * ext/dv/Makefile.am:
14550         * ext/esd/Makefile.am:
14551         * ext/flac/Makefile.am:
14552         * ext/gconf/Makefile.am:
14553         * ext/gdk_pixbuf/Makefile.am:
14554         * ext/jpeg/Makefile.am:
14555         * ext/ladspa/Makefile.am:
14556         * ext/libcaca/Makefile.am:
14557         * ext/libmng/Makefile.am:
14558         * ext/libpng/Makefile.am:
14559         * ext/mikmod/Makefile.am:
14560         * ext/pango/Makefile.am:
14561         * ext/raw1394/Makefile.am:
14562         * ext/shout2/Makefile.am:
14563         * ext/speex/Makefile.am:
14564         * gst/alpha/Makefile.am:
14565         * gst/autodetect/Makefile.am:
14566         * gst/avi/Makefile.am:
14567         * gst/cutter/Makefile.am:
14568         * gst/debug/Makefile.am:
14569         * gst/effectv/Makefile.am:
14570         * gst/flx/Makefile.am:
14571         * gst/goom/Makefile.am:
14572         * gst/interleave/Makefile.am:
14573         * gst/law/Makefile.am:
14574         * gst/matroska/Makefile.am:
14575         * gst/median/Makefile.am:
14576         * gst/monoscope/Makefile.am:
14577         * gst/multipart/Makefile.am:
14578         * gst/oldcore/Makefile.am:
14579         * gst/rtp/Makefile.am:
14580         * gst/rtsp/Makefile.am:
14581         * gst/smoothwave/Makefile.am:
14582         * gst/smpte/Makefile.am:
14583         * gst/videobox/Makefile.am:
14584         * gst/videofilter/Makefile.am:
14585         * gst/videomixer/Makefile.am:
14586         * gst/wavenc/Makefile.am:
14587         * gst/wavparse/Makefile.am:
14588         * sys/oss/Makefile.am:
14589         * sys/osxaudio/Makefile.am:
14590         * sys/osxvideo/Makefile.am:
14591           fix up GST_LIBS use
14592
14593 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14594
14595         * gst/auparse/Makefile.am:
14596         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14597           fix build of auparse
14598
14599 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
14600
14601         * configure.ac:
14602         * PORTED_09:
14603         * gst/auparse/gstauparse.c:
14604         * gst/auparse/gstauparse.h:
14605         Auparse ported to 0.9.
14606
14607 2005-09-22  Wim Taymans  <wim@fluendo.com>
14608
14609         * gst/rtp/TODO:
14610         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
14611         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
14612         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
14613         (gst_rtpmp4venc_set_property):
14614         * gst/rtp/gstrtpmp4venc.h:
14615         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
14616         * gst/rtp/gstrtpmpaenc.h:
14617         Use is_filled to both check MTU and max-ptime of base class.
14618
14619 2005-09-22  Wim Taymans  <wim@fluendo.com>
14620
14621         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
14622         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
14623         (gst_rtpmp4venc_set_property):
14624         Don't fragment packets with multiple frames.
14625
14626 2005-09-22  Wim Taymans  <wim@fluendo.com>
14627
14628         * gst/rtp/TODO:
14629         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
14630         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
14631         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
14632         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
14633         (gst_rtpmp4venc_get_property):
14634         * gst/rtp/gstrtpmp4venc.h:
14635         Remove g_print.
14636         Update TODO
14637         Make payload encoder a bit smarter and more correct with
14638         timestamps.
14639         Added option in payloader to include config string in-band.
14640
14641 2005-09-21  Wim Taymans  <wim@fluendo.com>
14642
14643         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
14644         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14645         (gst_rtspsrc_send):
14646         Strip spaces for key/value pairs.
14647
14648 2005-09-21  Wim Taymans  <wim@fluendo.com>
14649
14650         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
14651         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14652         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
14653         (gst_rtspsrc_change_state):
14654         More SDP parsing and caps setting.
14655         Do NO_PREROLL differently.
14656         add pads only after negotiated.
14657
14658         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
14659         (gst_udpsrc_getcaps):
14660         Implement the getcaps function.
14661
14662 2005-09-21  Wim Taymans  <wim@fluendo.com>
14663
14664         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
14665         (gst_rtpamrdec_chain):
14666         Handle multiple AMr packets per payload. Handle CRC and
14667         parse ILL/ILP.
14668
14669         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
14670         Make caps params strings for easy SDP mapping.
14671         
14672         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14673         Handle capsnego better.
14674
14675         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
14676         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
14677         Generate and parse config string in the caps.
14678
14679 2005-09-21  Wim Taymans  <wim@fluendo.com>
14680
14681         * gst/rtp/README:
14682         Update README
14683
14684         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
14685         Make extra params as strings.
14686
14687         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14688         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
14689         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
14690         Make state change return NO_PREROLL as this is a live
14691         source.
14692
14693         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
14694         Don't unref old caps when NULL.
14695
14696 2005-09-20  Wim Taymans  <wim@fluendo.com>
14697
14698         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
14699         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
14700         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
14701         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
14702         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
14703         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
14704         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
14705         * gst/rtsp/sdpmessage.h:
14706         Add URI handler.
14707         Parse SDP and create caps.
14708
14709 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
14710
14711         * gst/alpha/gstalpha.c:
14712           fix element description
14713
14714 2005-09-19  Wim Taymans  <wim@fluendo.com>
14715
14716         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
14717         Don't check payload for now.
14718
14719 2005-09-19  Wim Taymans  <wim@fluendo.com>
14720
14721         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
14722         (gst_wavparse_init), (gst_wavparse_parse_file_header),
14723         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
14724         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
14725         (gst_wavparse_loop), (gst_wavparse_pad_convert),
14726         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
14727         (gst_wavparse_change_state):
14728         * gst/wavparse/gstwavparse.h:
14729         Fix wavparse some more.
14730
14731 2005-09-19  Wim Taymans  <wim@fluendo.com>
14732
14733         * check/elements/level.c: (GST_START_TEST):
14734         Fix for bus API change.
14735
14736 2005-09-19  Wim Taymans  <wim@fluendo.com>
14737
14738         * gst/level/level-example.c: (main):
14739         Fix for new bus API.
14740
14741         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
14742         Set caps on pads.
14743
14744 2005-09-15  Wim Taymans  <wim@fluendo.com>
14745
14746         * gst/rtp/Makefile.am:
14747         * gst/rtp/README:
14748         * gst/rtp/gstrtp.c: (plugin_init):
14749         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
14750         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
14751         (gst_rtpamrdec_change_state):
14752         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
14753         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
14754         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
14755         * gst/rtp/gstrtpamrenc.h:
14756         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
14757         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
14758         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
14759         * gst/rtp/gstrtpgsmenc.h:
14760         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
14761         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
14762         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
14763         (gst_rtpgsmparse_change_state):
14764         * gst/rtp/gstrtpgsmparse.h:
14765         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
14766         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
14767         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
14768         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
14769         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
14770         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
14771         * gst/rtp/gstrtph263penc.h:
14772         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
14773         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
14774         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
14775         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
14776         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
14777         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
14778         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
14779         * gst/rtp/gstrtpmp4venc.h:
14780         * gst/rtp/gstrtpmpadec.c:
14781         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
14782         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
14783         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
14784         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
14785         * gst/rtp/gstrtpmpaenc.h:
14786         Updates to payloader/depayloaders, make payloaders use
14787         the base classes.
14788         Updated README with suggested RTP caps and how to convert
14789         to/from SDP.
14790         Added config descriptor in mp4v payloader.
14791
14792 2005-09-15  Andy Wingo  <wingo@pobox.com>
14793
14794         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
14795         * gst/autodetect/gstautovideosink.c
14796         (gst_auto_video_sink_find_best): Update for new registry API.
14797
14798 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14799
14800         * common/c-to-xml.py:
14801         * common/gtk-doc-plugins.mak:
14802           a simple py script to generate valid xml from a C example
14803           probably also need to strip an MIT license when we decide
14804         * docs/plugins/Makefile.am:
14805         * gst/level/Makefile.am:
14806         * gst/level/gstlevel.c: (gst_level_init):
14807         * gst/level/level-example.c: (message_handler), (main):
14808           add an example to level that will show up in the docs
14809         * gst/rtp/TODO:
14810           add a note for the future
14811
14812 2005-09-14  Michael Smith <msmith@fluendo.com>
14813
14814         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
14815           Actually define the debug object being used in wavenc. Fixes #316205
14816
14817 2005-09-14  Michael Smith <msmith@fluendo.com>
14818
14819         * gst/smpte/Makefile.am:
14820           Link against GST_BASE_LIBS, to get it linked against libgstbase;
14821           needed to build on windows (bug 316204)
14822
14823 2005-09-12  Andy Wingo  <wingo@pobox.com>
14824
14825         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
14826
14827 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
14828
14829         * configure.ac:
14830         * gst/fdsrc/Makefile.am:
14831         * gst/fdsrc/gstfdsrc.c:
14832         * gst/fdsrc/gstfdsrc.h:
14833           Move fdsrc back into gstreamer core elements.
14834
14835         * gst/level/gstlevel.c: (gst_level_class_init),
14836         (gst_level_transform_ip):
14837         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
14838           Basetransform changes.
14839
14840 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14841
14842         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
14843         * ext/jpeg/smokecodec.c: (find_best_size):
14844           fix compiler warnings
14845
14846 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14847
14848         * gst-plugins-good.spec.in:
14849           spec file fixes
14850         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
14851         (gst_multiudpsink_render), (gst_multiudpsink_add),
14852         (gst_multiudpsink_clear):
14853           it actually helps to actually stream if we hook up the
14854           "add" signal to an actual implementation
14855         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
14856           some debugging
14857
14858 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
14859
14860         * ext/jpeg/Makefile.am:
14861         * ext/jpeg/gstjpeg.c
14862         * ext/jpeg/gstjpegenc.c:
14863         * ext/jpeg/gstsmokeenc.c:
14864
14865 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
14866
14867         * ext/flac/gstflacdec.c:
14868         * ext/flac/gstflacenc.c:
14869         * ext/flac/gstflactag.c:
14870         * ext/speex/gstspeexenc.c:
14871           gsttaginterface.h -> gsttagsetter.h
14872
14873 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
14874
14875         * configure.ac:
14876         * gst/debug/Makefile.am:
14877         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
14878         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
14879         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
14880         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
14881         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
14882           Port to 0.9 and re-enable efence plugin.
14883
14884 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
14885
14886         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
14887         (gst_flacdec_write), (gst_flacdec_convert_src):
14888         * ext/flac/gstflacdec.h:
14889           Add support for flac files with 24/32 bits per sample; and misc.
14890           minor clean-ups. Seeking is still partly broken (for me at least).
14891
14892 2005-09-06  Wim Taymans  <wim@fluendo.com>
14893
14894         * gst/rtp/Makefile.am:
14895         * gst/rtp/gstrtp.c: (plugin_init):
14896         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
14897         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
14898         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
14899         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
14900         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
14901         (gst_rtpmp4vdec_plugin_init):
14902         * gst/rtp/gstrtpmp4vdec.h:
14903         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
14904         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
14905         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
14906         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
14907         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
14908         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
14909         * gst/rtp/gstrtpmp4venc.h:
14910         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
14911         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
14912         Added mpeg4 video payload encoder/decoder.
14913         Added some docs in mpa payloader.
14914
14915 === release 0.9.1 ===
14916
14917 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
14918
14919         * NEWS:
14920         * README:
14921         * RELEASE:
14922         * autogen.sh:
14923         * configure.ac:
14924           releasing 0.9.1, "Blondie"
14925
14926 2005-09-05  Andy Wingo  <wingo@pobox.com>
14927
14928         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
14929         here from the state change handler, so we fire signals without
14930         holding the state lock.
14931
14932 2005-09-02  Andy Wingo  <wingo@pobox.com>
14933
14934         * All plugins updated for element state changes.
14935
14936 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14937
14938         * Makefile.am:
14939         * check/.cvsignore:
14940         * check/Makefile.am:
14941         * check/elements/.cvsignore:
14942         * check/elements/level.c: (setup_level), (cleanup_level),
14943         (GST_START_TEST), (level_suite), (main):
14944           add a test for level
14945         * common/release.mak:
14946           move the enum checking to release.mak
14947         * configure.ac:
14948           add valgrind and check checking
14949         * gst/level/gstlevel.c: (gst_level_transform):
14950         * gst/level/gstlevel.h:
14951           fix Andy's cast bug
14952           convert a field to int
14953           fix the arithmetic to int when checking for emit so that a
14954           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
14955
14956 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14957
14958         * Makefile.am:
14959         * configure.ac:
14960           add docs to build
14961         * common/plugins.xsl:
14962           wrap Description into a refsect2
14963         * docs/Makefile.am:
14964         * docs/plugins/Makefile.am:
14965         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14966         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14967         * gst/goom/Makefile.am:
14968         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
14969         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
14970         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
14971         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
14972         (gst_goom_change_state):
14973         * gst/goom/gstgoom.h:
14974           GstGOOM -> GstGoom
14975           add an example launch line
14976         * gst/level/gstlevel.h:
14977         * gst/monoscope/gstmonoscope.c:
14978           cleanups
14979
14980 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14981
14982         * configure.ac:
14983         * docs/plugins/Makefile.am:
14984         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14985         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14986         * docs/plugins/gst-plugins-good-plugins.types:
14987           document elements and plugins.  Shazam !
14988
14989 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14990
14991         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
14992           be found under doc/random/ChangeLog-0.8