gst/typefind/gsttypefindfunctions.c: Improve FLAC-without-headers typefinding by...
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
4         Improve FLAC-without-headers typefinding by looking at most of the
5         frame header and checking if invalid values are used. Should prevent
6         quite some false positives compared to the old version which only
7         check if the first 14 bits are set.
8
9 2008-10-11  Stefan Kost  <ensonic@users.sf.net>
10
11         * sys/xvimage/xvimagesink.c:
12           Don't assert on caps==NULL.
13
14 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
15
16         * gst/subparse/gstsubparse.c:
17         (gst_sub_parse_data_format_autodetect), (handle_buffer),
18         (gst_sub_parse_change_state):
19         * gst/subparse/gstsubparse.h:
20         * tests/check/elements/subparse.c: (GST_START_TEST):
21         Add support for subtitle files with UTF-8 BOM at the beginning
22         by simple stripping it from the first line before passing it
23         to any parsing code. Fixes bug #555257 and playback of files
24         created by Gnome Subtitles.
25
26 2008-10-10  Wim Taymans  <wim.taymans@collabora.co.uk>
27
28         * gst/audiotestsrc/gstaudiotestsrc.c:
29         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
30         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
31         (gst_audio_test_src_start), (gst_audio_test_src_stop),
32         (gst_audio_test_src_do_seek), (gst_audio_test_src_check_get_range),
33         (gst_audio_test_src_create):
34         * gst/audiotestsrc/gstaudiotestsrc.h:
35         Define the default property values in the usual place.
36         Implement start/stop to reset values correctly.
37         Calculate the sample size only once when we negotiate.
38         Rename some values to make more sense.
39         Keep track of our byte range.
40         Add support for pull based scheduling. Disabled for now until we have
41         the whole stack working.
42         Set the BUFFER_OFFSET correctly.
43
44 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
45
46         Based on a patch by: xavierb at gmail dot com
47
48         * gst/subparse/gstsubparse.c:
49         (gst_sub_parse_data_format_autodetect):
50         * tests/check/elements/subparse.c: (GST_START_TEST):
51         Make the detection of the used subtitle a bit less strict
52         for srt subtitles. Fixes bug #555607.
53
54 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
55
56         * ext/vorbis/vorbisenc.c:
57         (gst_vorbis_enc_buffer_check_discontinuous):
58         Fix discontinuity detection which was broken by last commit.
59
60 2008-10-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
61
62         * configure.ac::
63           Require core CVS for ghostpad API additions used by decodebin2.
64
65 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
66
67         * gst-libs/gst/audio/gstbaseaudiosrc.c:
68         (gst_base_audio_src_create):
69         Fix debug statements (space between '%' and actual format).
70
71 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
72
73         * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
74         Remove bogus assert, the decodepad could have been created inside an
75         already existing group.
76
77 2008-10-08  Andy Wingo  <wingo@pobox.com>
78
79         * gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
80         target instead of setting it.
81         (gst_decode_pad_activate, gst_decode_pad_unblock): This is now the
82         API for a decode pad. The bugfix is that we set the group in
83         activate(), not when the pad was created because it might be NULL
84         then.
85         (gst_decode_group_control_source_pad, gst_decode_group_expose):
86         Update to use the API.
87
88 2008-10-08  Andy Wingo  <wingo@pobox.com>
89
90         * gst/playback/gstdecodebin2.c (struct _GstDecodePad): Change to
91         be a subclass of GstGhostPad.
92         (analyze_new_pad): So, when emitting the signals that determine
93         how we do autoplugging, already create the ghost pad and use it as
94         the pad in the signal arguments. This allows applications to make
95         a connection between the pad passed in e.g. autoplug-continue, and
96         the pad passed in new-decoded-pad.
97         (connect_pad, expose_pad): Update to receive the ghosted decode
98         pad in the args, retargetting it as necessary if we have to plug
99         the target pad through a multiqueue.
100         (gst_decode_group_control_source_pad): Adapt to receive an
101         already-ghosted pad that just needs activation, blocking, and
102         drain notification.
103         (sort_end_pads): Adapt for decode pads actually being pads.
104         (gst_decode_group_expose): Adapt for decode pads actually being
105         pads. Rewrite the decode pad names so they appear in order. Adds a
106         new error case if we couldn't set the name.
107         (gst_decode_group_free, gst_decode_group_hide): Adapt cleanup
108         logic.
109         (gst_decode_pad_set_blocked, gst_decode_pad_add_drained_check):
110         New API for the decode pad, needed because we shouldn't do these
111         things inside gst_decode_pad_new(), but after.
112         (gst_decode_pad_new): Change to actually make the real pad, and
113         delay the blocking/drainage bits.
114
115 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
116
117         Patch by: Daniel Drake <dsd at laptop dot org>
118
119         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear_collectpads):
120         Unref all buffers when clearing collectpads. Fixes bug #546955.
121
122 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
123
124         Based on a patch by: Klaas <klaas at rivercrew dot net>
125
126         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_sink_event),
127         (gst_vorbis_enc_buffer_check_discontinuous),
128         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
129         * ext/vorbis/vorbisenc.h:
130         Keep track of the upstream segments and use the running time on that
131         segment instead of the buffer timestamp everywhere. Fixes bug #525807.
132
133 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
134
135         * gst/audioconvert/audioconvert.c: (audio_convert_convert):
136         Prevent overflows with big buffer when calculating the size of
137         the intermediate buffer by using gst_util_uint64_scale() instead of
138         plain arithmetics. Fixes bug #552801.
139
140 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
141
142         Patch by: Pavel Zeldin <pzeldin at gmail dot com>
143
144         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time),
145         (gst_clock_overlay_class_init), (gst_clock_overlay_finalize),
146         (gst_clock_overlay_init), (gst_clock_overlay_set_property),
147         (gst_clock_overlay_get_property):
148         * ext/pango/gstclockoverlay.h:
149         API: Add ability to specify format for date/time display by
150         adding a "time-format" property.
151         Fixes bug #554879.
152
153 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
154
155         Patch by: Jan Gerber <j at oil21 dot org>
156
157         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
158         (gst_riff_create_video_template_caps):
159         Add FFV1 fourcc to support playback of FFMPEG lossless video
160         in AVI. Fixes bug #555319.
161
162 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
163
164         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
165
166         * gst-libs/gst/audio/gstbaseaudiosrc.c:
167         (gst_base_audio_src_create):
168         Implement skew clock slaving. Fixes #552559.
169
170 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
171
172         * gst-libs/gst/audio/multichannel.c:
173         * gst-libs/gst/audio/testchannels.c:
174         Fix include of config.h
175
176 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
177
178         Based on Patch by: Tero Saarni <tero dot saarni at gmail dot com>
179
180         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_parse_line),
181         (print_media), (gst_sdp_message_dump):
182         Fix parsing of the c= field containing multicast addresses.
183         Fixes #552199.
184         Add the connection info to the session or streams.
185         Fix parsing of the bandwidth.
186         Add debugging for the connections and bandwidths for a media.
187         Add debugging for the bandwidth of the session. 
188
189 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
190
191         * gst-libs/gst/rtp/gstbasertppayload.c:
192         (gst_basertppayload_change_state):
193         Configure the next seqnum and timestamp in the state change so that they
194         can be queried soon after.
195
196 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
197
198         * gst-libs/gst/rtp/gstbasertpdepayload.c:
199         (gst_base_rtp_depayload_chain):
200         Improve debugging of the rtptime.
201
202 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
203
204         * configure.ac:
205         Back to development -> 0.10.21.1
206
207 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
208
209         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
210         (plugin_init):
211         Add typefinding for FLAC without headers in the beginning.
212         This is already handled by flacdec and friends.
213
214 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
215
216         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find),
217         (plugin_init):
218         Add typefinder for MXF.
219
220 2008-10-03  Jan Schmidt  <jan.schmidt@sun.com>
221
222         * tests/icles/Makefile.am:
223         Only build test-colorkey if GTK+ is available.
224
225 === release 0.10.21 ===
226
227 2008-10-03  Jan Schmidt <jan.schmidt@sun.com>
228
229         * configure.ac:
230           releasing 0.10.21, "We Could Be Wrong"
231
232 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
233
234         * configure.ac:
235         0.10.20.4 pre-release
236
237 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
238
239         Patch by: Vincent Penquerc'h <ogg dot k dot ogg dot k at googlemail dot com>
240
241         * ext/theora/theoraparse.c: (theora_parse_set_streamheader):
242         Set the BOS flag on the BOS packet. Fixes #553244.
243
244 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
245
246         * gst-libs/gst/rtsp/gstrtspmessage.c:
247         (gst_rtsp_message_parse_request),
248         (gst_rtsp_message_parse_response):
249         Fix the g_return_val_if_fail() statements.
250
251 2008-09-22  Michael Smith <msmith@songbirdnest.com>
252
253         * gst-libs/gst/tag/gsttagdemux.c:
254           Fail to activate if there's insufficient data in the file to be usable,
255           preventing an assertion fail later. Fixes #552960
256
257 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>
258
259         * gst-libs/gst/pbutils/descriptions.c:
260         * gst/typefind/gsttypefindfunctions.c:
261           Recognise Kate subtitle streams (#550582).
262
263 2008-09-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
264
265         * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
266           Remove trailing comma from enum list, which causes problems
267           with -pendantic (#550729).
268
269 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
270
271         * configure.ac:
272         0.10.20.2 pre-release
273
274         * po/LINGUAS:
275         * po/id.po:
276         * po/pt_BR.po:
277
278         New translations.
279
280 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
281
282         * gst-libs/gst/interfaces/propertyprobe.c:
283           (gst_property_probe_get_properties),
284           (gst_property_probe_get_property),
285           (gst_property_probe_probe_property),
286           (gst_property_probe_probe_property_name),
287           (gst_property_probe_needs_probe),
288           (gst_property_probe_needs_probe_name),
289           (gst_property_probe_get_values),
290           (gst_property_probe_get_values_name),
291           (gst_property_probe_probe_and_get_values),
292           (gst_property_probe_probe_and_get_values_name):
293           More sanity checks for our second-favourite interface.
294
295 2008-09-05  Stefan Kost  <ensonic@users.sf.net>
296
297         * gst-libs/gst/interfaces/propertyprobe.c:
298           Check for NULL pointer, in the hope that this fixes #532864.
299
300 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
301
302         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
303           No really, the next release is 0.10.21 (fix Since: tags in docs).
304
305 2008-09-04  Wim Taymans  <wim.taymans@collabora.co.uk>
306
307         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
308         Disable a code path that is now called but causes a deadlock for some
309         reason and is unneeded.
310
311 2008-09-04  Stefan Kost  <ensonic@users.sf.net>
312
313         * sys/xvimage/xvimagesink.c:
314         * sys/xvimage/xvimagesink.h:
315           Add a "draw-border" property that can be set to false to disable
316           drawing borders.
317           
318         * tests/icles/test-colorkey.c:
319         * tests/icles/Makefile.am:
320           Add new test application for the colorkey handling.
321
322 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
323
324         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
325         Use a decent caps for TrueSpeech instead of a ffmpeg-specific one.
326         This will also be fixed for upcoming gst-ffmpeg release so that once
327         this release of -base is out, it will work with the latest gst-ffmpeg
328         release.
329
330 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
331
332         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
333         (gst_riff_create_audio_template_caps):
334         Add Truespeech mapping for RIFF formats (AVI/WAV).
335         Fixes #550656
336
337 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
338
339         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
340         Typefind video/mj2 and image/jp2 ISO JPEG2000 mime types.
341         Fixes #550638.
342
343 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
344
345         * configure.ac:
346         * gst/subparse/Makefile.am:
347         * gst/subparse/gstsubparse.c:
348         * gst/subparse/samiparse.c:
349         * tests/check/elements/subparse.c:
350           Rework last change, so that we build subparse, but just disable the
351           sami parse functionality, if we're configured to not use xml. In the
352           tests only the sami test is disabled now.
353
354 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
355
356         * configure.ac:
357           Disable subparse when xml is disabled. It woundn't work anyway. Fixes
358           test runs.
359
360 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
361
362         * po/POTFILES.in:
363           Add some more files with strings for translation.
364
365 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
366
367         * gst-libs/gst/tag/gstvorbistag.c:
368         * tests/check/libs/tag.c:
369           Use new geo location tags from core. Fixes #481169
370
371 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
372
373         * tests/check/elements/audioresample.c: (setup_audioresample),
374         (fail_unless_perfect_stream), (test_perfect_stream_instance),
375         (test_discont_stream_instance):
376         Now that GstBaseTransform is 'fixed' ... remove cruft from tests.
377         Add debugging for coherence.
378
379 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
380
381         Patch by: Jonathan Matthew  <notverysmart gmail com>
382
383         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
384           Add typefinder for PDF documents (which is nice to have, since it's a
385           common format, but also helps prevent false positives). Fixes #549814.
386
387 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
388
389         * gst/playback/gstplaybin2.c: (selector_blocked), (pad_added_cb),
390         (no_more_pads_cb):
391         Fix nasty race where multiple decodebins could start pushing data before
392         we manage to configure the sinks, resulting in not-linked errors in
393         typical RTSP streaming cases.
394
395 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
396
397         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
398         Since we now call stop, we trigger this code path that causes a deadlock
399         is apparently not needed.
400
401 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
402
403         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
404         (gst_ring_buffer_stop):
405         Also allow the case where the ringbuffer was paused when we try to stop
406         it so that the basesrc stop function is still called.
407
408 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
409
410         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
411
412         * sys/v4l/gstv4lelement.c: (gst_v4l_class_probe_devices):
413         Reprobe devices again instead of taking a cached list as new
414         devices could've been plugged in. Fixes bug #549062.
415
416 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
417
418         Patch by: Alessandro Dessina <alessandro nnva org>
419
420         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
421         (gst_ogg_demux_activate_chain):
422         Don't add pads and activate them for skeleton streams. These are already
423         handled inside oggdemux. Fixes bug #537599.
424
425 2008-08-22  Wim Taymans  <wim.taymans@collabora.co.uk>
426
427         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
428         Reset variable so that query and convert fail after going back to
429         READY. Fixes #548898.
430
431 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
432
433         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
434         If a buffer arrives with a timestamp before the timestamp+duration
435         of the previous buffer clip it instead of dropping it completely.
436         Slight improvement for the unfixable bug #548913.
437
438 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
439
440         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
441         Take the current timestamp instead of timestamp+duration for the offset.
442         This offset will later be used for calculating the timestamp and
443         otherwise vorbisdec will interpolate timestamps wrong if upstream
444         only sends timestamps and no granulepos.
445
446 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
447
448         * tests/examples/seek/seek.c:
449           Don't crash when having no visualisations.
450
451 2008-08-16  David Schleef  <ds@schleef.org>
452
453         * gst/typefind/gsttypefindfunctions.c: DV typefinding.  Remove
454           check for a bit that is 0 in IEC 61384, but not SMPTE 314M.
455           Fixes #548065.
456
457 2008-08-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
458
459         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
460         When cleaning up the caps fields also remove "depth" for the same
461         reason we remove "width".
462
463 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
464
465         * gst-libs/gst/pbutils/descriptions.c: (format_info_get_desc):
466           Add Lead H.264 here as well.
467
468 2008-08-14  Julien Moutte  <julien@fluendo.com>
469
470         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
471         (gst_riff_create_video_template_caps): Add Lead H.264 variant.
472
473 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
474
475         * gst-libs/gst/audio/gstbaseaudiosrc.c:
476         (gst_base_audio_src_create):
477         When not slaved to another clock also subtract the base_time from our
478         internal clock time to get the running time.
479
480 2008-08-12  David Schleef  <ds@schleef.org>
481
482         * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
483           since it has no basis in libtheora.
484
485 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
486
487         * gst-libs/gst/interfaces/propertyprobe.h:
488           Remove double "interface" from doc-string.
489
490         * gst-libs/gst/interfaces/xoverlay.h:
491           Document interface.
492
493         * gst-libs/gst/riff/riff.c:
494           Add basic doc blobs.
495
496 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
497
498         * gst-libs/gst/audio/Makefile.am:
499           Don't try to build that example anymore.
500
501 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
502
503         * gst-libs/gst/audio/.cvsignore:
504         * gst-libs/gst/audio/Makefile.am:
505         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
506         * gst-libs/gst/audio/make_filter:
507           Move audiofiltertemplate to gst-template.
508
509 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
510
511         * docs/libs/gst-plugins-base-libs-sections.txt:
512         * gst-libs/gst/audio/gstaudiosrc.h:
513           More docs and shuffling. What can we do with the hundreds of #defines.
514
515 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
516
517         * gst-libs/gst/audio/audio.h:
518         * gst-libs/gst/audio/gstaudiofilter.h:
519         * gst-libs/gst/audio/gstringbuffer.h:
520         * gst-libs/gst/interfaces/propertyprobe.h:
521         * gst-libs/gst/tag/gsttagdemux.h:
522           Reducing number of dundocumented symbols.
523
524 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
525
526         * gst-libs/gst/audio/audio.c:
527           Fix doc comment syntax.
528
529         * gst-libs/gst/interfaces/propertyprobe.c:
530           Add more doc-comments and a FIXME: for the signal.    
531
532 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
533
534         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sink_event),
535         (gst_ogg_mux_request_new_pad):
536         * ext/ogg/gstoggmux.h:
537         Don't pretend to support NEWSEGMENT events, instead override the
538         GstCollectPads event function to return FALSE on NEWSEGMENT events
539         and do the normal work for other events.
540
541         This prevents elements like flacenc to seek to the start and rewrite
542         some data which then results in a broken Ogg packet.
543
544 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
545
546         Patch by: Frederic Crozat <fcrozat@mandriva.org>
547
548         * ext/alsa/gstalsaplugin.c: (plugin_init):
549         * ext/cdparanoia/gstcdparanoiasrc.c: (plugin_init):
550         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
551         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
552         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init):
553         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
554         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal):
555         * gst/playback/gstdecodebin.c: (plugin_init):
556         * gst/playback/gstdecodebin2.c: (gst_decode_bin_plugin_init):
557         * gst/playback/gstplayback.c: (plugin_init):
558         * gst/playback/gstqueue2.c: (plugin_init):
559         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_plugin_init):
560         * sys/v4l/gstv4l.c: (plugin_init):
561         Make sure gettext returns translations in UTF-8 encoding rather
562         than in the current locale encoding (#546822).
563
564 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
565
566         * gst-libs/gst/pbutils/descriptions.c:
567           Add audio/x-qdm for qtdemux.
568
569 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
570
571         * ext/vorbis/vorbisdec.c:
572           Do not leak old taglist.
573
574 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
575
576         * tests/icles/test-scale.c:
577           Include <stdlib.h> for atoi().
578
579 2008-08-04  Andy Wingo  <wingo@pobox.com>
580
581         * gst/audiotestsrc/gstaudiotestsrc.c: Very crucial and important
582         documentation fix.
583
584 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
585
586         * gst/adder/gstadder.c:
587           Cleanup lots of empty lines that came from gst-indent going havoc
588           before I added the INDENT_ON/OFF marker some time agao.
589
590 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
591
592         * configure.ac:
593         * gst-libs/gst/riff/riff-read.c:
594           Bump requirement to latest core and use new tag for riff formats.
595           Needed for #520694.
596
597 2008-08-01  Wim Taymans  <wim.taymans@collabora.co.uk>
598
599         * tests/examples/dynamic/Makefile.am:
600         * tests/examples/dynamic/codec-select.c: (make_encoder),
601         (make_pipeline), (do_switch), (my_bus_callback), (main):
602         Add example app that dynamically switches between 3 'encoders'.
603
604 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
605
606         * gst/playback/gstplaysink.c: (gst_play_sink_set_vis_plugin):
607         Add some more comments.
608
609 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
610
611         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_getcaps),
612         (gst_video_test_src_create):
613         Discard buffers of the wrong size after renegotiation, this is perfectly
614         possible with things like capsfilter that could suggest caps changes
615         upstream without knowing the size of the buffer.
616
617 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
618
619         * tests/icles/.cvsignore:
620         * tests/icles/Makefile.am:
621         * tests/icles/test-scale.c: (make_pipeline), (main):
622         Add dynamic rescaling tests for the new basetransform.
623
624 2008-07-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
625
626         * gst/audioconvert/Makefile.am:
627           Dist recently-added gstfastrandom.h.
628
629 2008-07-30  Edward Hervey  <edward.hervey@collabora.co.uk>
630
631         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
632         Fix a "may be used uninitialized in this function" which weirdly only
633         appears on macosx (?).
634
635 2008-07-30  Stefan Kost  <ensonic@users.sf.net>
636
637         * gst-libs/gst/riff/riff-ids.h:
638           Adding acid chunk for tempo and loop information.
639
640 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
641
642         * sys/xvimage/Makefile.am:
643           floor() needs linking to $(LIBM).
644
645 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
646
647         * ext/gnomevfs/gstgnomevfssrc.c:
648           Aggregate short reads and add some comments and debug logging.
649           Fixes #537380
650
651 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
652
653         * gst/playback/gstplaybasebin.c:
654           Fix property doc markup (its not a signal).
655
656         * sys/xvimage/xvimagesink.c:
657           Add since tag for new proeprties (also add sice tags fro the last two
658           other additions).
659
660 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
661
662         * sys/xvimage/xvimagesink.c:
663         * sys/xvimage/xvimagesink.h:
664           Add autofill/colorkey properties. Fixes #538656.
665
666 2008-07-28  David Schleef  <ds@schleef.org>
667
668         * sys/xvimage/xvimagesink.c:
669           Fix rounding errors when converting colorbalance values
670           between hardware and object property ranges.  Partial
671           fix for #537889, however, there still seems to be a small
672           drift problem that could be totem's fault.
673
674 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
675
676         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
677         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
678         Don't use GST_CLOCK_TIME_NONE as start of NEWSEGMENT events.
679         This fixes a critical warning.
680
681 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
682
683         * ext/ogg/gstoggmux.c:
684         Allow muxing of CELT into Ogg streams.
685
686 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
687
688         * gst/typefind/gsttypefindfunctions.c: (celt_type_find),
689         (plugin_init):
690         Add simple typefinder for the CELT codec (www.celt-codec.org).
691
692 2008-07-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
693
694         Patch by: Jan Gerber <j at oil21 dot org>
695
696         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone):
697         Fix calculation of the start time from skeleton streams.
698         Fixes bug #530068.
699
700 2008-07-24  Stefan Kost  <ensonic@users.sf.net>
701
702         * tests/examples/seek/seek.c:
703           Use 64 bit constant GST_CLOCK_TIME_NONE instead of plain -1.
704
705 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
706
707         * gst/audioconvert/audioconvert.h:
708         * gst/audioconvert/gstaudioquantize.c:
709         (gst_audio_quantize_setup_dither),
710         (gst_audio_quantize_free_dither):
711         * gst/audioconvert/gstfastrandom.h:
712         Implement a linear congruential generator as pseudo random number
713         generator for the dither noise. This is about 2 times faster than
714         using GLib's mersenne twister. Also this uses only integer math for
715         generating integers while GLib internally uses floating point math.
716
717 2008-07-23  Michael Smith <msmith@songbirdnest.com>
718
719         * configure.ac:
720           Remove AC_ISC_POSIX; it breaks on some systems and is not needed.
721
722 2008-07-23  Tim-Philipp Müller  <tim.muller at collabora co uk>
723
724         Patch by: Damien Lespiau  <damien.lespiau gmail com>
725
726         * gst-libs/gst/sdp/gstsdpmessage.c: (print_media):
727           Use GST_STR_NULL to avoid crashes with libcs that don't
728           like NULL strings in printf args (such as the win32 one).
729           Fixes #544306.
730
731 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
732
733         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
734         Oops - set the size of the image used for probing back to 1x1, for
735         consistency with ximagesink
736
737 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
738
739         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
740         (gst_ximagesink_ximage_new):
741         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
742         (gst_xvimagesink_xvimage_new):
743
744         Apparently on Solaris and OS/X (at least), it's not legal to ask the
745         X server to attach to a shared memory segment after we've deleted it,
746         with the result that MIT-SHM is disabled. Instead, remove it only after 
747         X succeeds in attaching too.
748
749 2008-07-16  David Schleef  <ds@schleef.org>
750
751         * gst/audiotestsrc/gstaudiotestsrc.c:
752         * gst/audiotestsrc/gstaudiotestsrc.h:
753           Add 'ticks', a 1/30 second sine wave pulse every second.
754
755 2008-07-15  David Schleef  <ds@schleef.org>
756
757         * gst-libs/gst/video/video.c: Revert ABI change.
758
759 2008-07-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
760
761         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
762         Make it impossible to have NULL caps at the point where we set
763         framerate and other things. Also don't return immediately for "3ivd"
764         video and let framerate, etc be set. Might fix bug #542508.
765
766 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
767
768         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps):
769         Video format can also be conveniently determined from (many)
770         non-fixed caps.
771
772 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
773
774         * gst/playback/gstplaybasebin.c:
775         * gst/playback/gstplaybasebin.h:
776         * gst/playback/gstplaybin.c:
777         * gst/playback/gststreamselector.c:
778         First stab at integrating DVD subpicture overlay into
779         playbin. Successfully plugs and plays, but the queues need
780         shrinking - 3 seconds of video is too much buffering.
781
782 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
783
784         * gst/audioconvert/gstaudioconvert.c:
785           Remove now obsolete note in the docs.
786
787 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
788
789         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
790         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
791         * docs/plugins/gst-plugins-base-plugins-sections.txt:
792         * docs/plugins/gst-plugins-base-plugins.args:
793         * docs/plugins/gst-plugins-base-plugins.hierarchy:
794         * docs/plugins/gst-plugins-base-plugins.interfaces:
795         * docs/plugins/gst-plugins-base-plugins.prerequisites:
796         * docs/plugins/gst-plugins-base-plugins.signals:
797         * docs/plugins/inspect/plugin-adder.xml:
798         * docs/plugins/inspect/plugin-alsa.xml:
799         * docs/plugins/inspect/plugin-audioconvert.xml:
800         * docs/plugins/inspect/plugin-audiorate.xml:
801         * docs/plugins/inspect/plugin-audioresample.xml:
802         * docs/plugins/inspect/plugin-audiotestsrc.xml:
803         * docs/plugins/inspect/plugin-cdparanoia.xml:
804         * docs/plugins/inspect/plugin-decodebin.xml:
805         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
806         * docs/plugins/inspect/plugin-gdp.xml:
807         * docs/plugins/inspect/plugin-gnomevfs.xml:
808         * docs/plugins/inspect/plugin-libvisual.xml:
809         * docs/plugins/inspect/plugin-ogg.xml:
810         * docs/plugins/inspect/plugin-pango.xml:
811         * docs/plugins/inspect/plugin-playback.xml:
812         * docs/plugins/inspect/plugin-queue2.xml:
813         * docs/plugins/inspect/plugin-subparse.xml:
814         * docs/plugins/inspect/plugin-tcp.xml:
815         * docs/plugins/inspect/plugin-theora.xml:
816         * docs/plugins/inspect/plugin-typefindfunctions.xml:
817         * docs/plugins/inspect/plugin-uridecodebin.xml:
818         * docs/plugins/inspect/plugin-video4linux.xml:
819         * docs/plugins/inspect/plugin-videorate.xml:
820         * docs/plugins/inspect/plugin-videoscale.xml:
821         * docs/plugins/inspect/plugin-videotestsrc.xml:
822         * docs/plugins/inspect/plugin-volume.xml:
823         * docs/plugins/inspect/plugin-vorbis.xml:
824         * docs/plugins/inspect/plugin-ximagesink.xml:
825         * docs/plugins/inspect/plugin-xvimagesink.xml:
826         * ext/alsa/gstalsamixer.c:
827         * ext/alsa/gstalsasink.c:
828         * ext/alsa/gstalsasrc.c:
829         * ext/gio/gstgiosink.c:
830         * ext/gio/gstgiosrc.c:
831         * ext/gio/gstgiostreamsink.c:
832         * ext/gio/gstgiostreamsrc.c:
833         * ext/gnomevfs/gstgnomevfssink.c:
834         * ext/gnomevfs/gstgnomevfssrc.c:
835         * ext/ogg/gstoggdemux.c:
836         * ext/ogg/gstoggmux.c:
837         * ext/pango/gstclockoverlay.c:
838         * ext/pango/gsttextoverlay.c:
839         * ext/pango/gsttextrender.c:
840         * ext/pango/gsttimeoverlay.c:
841         * ext/theora/theoradec.c:
842         * ext/theora/theoraenc.c:
843         * ext/theora/theoraparse.c:
844         * ext/vorbis/vorbisdec.c:
845         * ext/vorbis/vorbisenc.c:
846         * ext/vorbis/vorbisparse.c:
847         * ext/vorbis/vorbistag.c:
848         * gst/adder/gstadder.c:
849         * gst/audioconvert/gstaudioconvert.c:
850         * gst/audioresample/gstaudioresample.c:
851         * gst/audiotestsrc/gstaudiotestsrc.c:
852         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
853         * gst/gdp/gstgdpdepay.c:
854         * gst/gdp/gstgdppay.c:
855         * gst/playback/gstdecodebin2.c:
856         * gst/playback/gstplaybin.c:
857         * gst/playback/gstplaybin2.c:
858         * gst/playback/gstqueue2.c:
859         * gst/playback/gsturidecodebin.c:
860         * gst/tcp/gstmultifdsink.c:
861         * gst/tcp/gsttcpserversink.c:
862         * gst/videorate/gstvideorate.c:
863         * gst/videoscale/gstvideoscale.c:
864         * gst/videotestsrc/gstvideotestsrc.c:
865         * gst/volume/gstvolume.c:
866         * sys/ximage/ximagesink.c:
867         * sys/xvimage/xvimagesink.c:
868           Cleanup Plugin docs. Link to signals and properties. Fix sub-section
869           titles. Drop mentining that all our example pipelines are "simple"
870           pipelines.
871
872 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
873
874         * tests/examples/seek/Makefile.am:
875         Fix out of tree build by adding all required CFLAGS.
876
877 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
878
879         * gst/playback/gstdecodebin.c: (add_raw_queue):
880         And ref the pad before returning it again when linking to the queue
881         failed. Otherwise we will unref the pad twice later and things break.
882
883 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
884
885         * gst/playback/gstdecodebin.c: (add_raw_queue):
886         If linking the raw pad with a queue fails, try it without a queue
887         instead of failing completely. This should never happen.
888
889 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
890
891         Patch by: Evgeniy Stepanov <eugeni dot stepanov at gmail dot com>
892
893         * gst/playback/gstdecodebin.c: (add_raw_queue), (close_pad_link):
894         Add a queue after a demuxer if the demuxer outputs raw data. This was
895         done before only for non-raw data but is required in this case too.
896         Fixes bug #540215.
897
898         decodebin2 doesn't have this issue because all streams of a group
899         go through multiqueue.
900
901 2008-07-03  Wim Taymans  <wim.taymans@collabora.co.uk>
902
903         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
904
905         * gst-libs/gst/sdp/gstsdpmessage.c:
906         Makes libgstsdp compile with mingw32 by defining the right WINVER so
907         that getaddrinfo() can be used. Fixes #541358.
908
909 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
910
911         * gst/videotestsrc/gstvideotestsrc.c:
912         (gst_video_test_src_class_init), (gst_video_test_src_init),
913         (gst_video_test_src_set_property),
914         (gst_video_test_src_get_property), (gst_video_test_src_create):
915         * gst/videotestsrc/gstvideotestsrc.h:
916         Cleanups, use default property values as defines.
917         Add property to enable/disable peer buffer allocation.
918
919 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
920
921         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
922         * tests/check/pipelines/streamheader.c: (streamheader_suite):
923         Enable unit tests on PPC again as the bugs are now fixed.
924
925 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
926
927         * gst-libs/gst/riff/riff-ids.h:
928         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
929         (gst_riff_create_audio_template_caps):
930         Add support for ADPCM IMA DK3 and DK4 variant in RIFF containers.
931         Fixes bug #540351.
932
933 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
934
935         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
936         (gst_ffmpeg_pixfmt_to_caps):
937         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
938         (gst_ffmpegcsp_get_unit_size):
939         Only set/get on the PAL8 format, ffmpegcolorspace doesn't support
940         it on other formats. Also adjust the unit size only for that format
941         to not include the palette. Fixes bug #540497.
942
943 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
944
945         * gst/adder/gstadder.c:
946           Use GST_DEBUG_FUNCPTR and remove some extra vlnak lines.
947
948 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
949
950         * ChangeLog:
951           ChangeLog surgery.
952   
953         * tests/examples/seek/seek.c:
954           Move variable into ifdef too.
955         
956
957 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
958
959         * tests/examples/seek/seek.c:
960           Include config.h and check if we have X. Remove XInitThread(), don't
961           think its needed. Fixes: #540334.
962
963 2008-06-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
964
965         Patch by: Sam Morris <sam at robots dot org to uk>
966
967         * gst-libs/gst/interfaces/mixertrack.c:
968         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
969         (gst_mixer_track_set_property):
970         API: Add "index" property to GstMixerTrack to differantiate between
971         multiple mixer tracks with the same label.
972
973         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
974         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
975         Set the "index" property of GstMixerTrack to the index given by ALSA.
976         Fixes bug #528299.
977
978 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
979
980         * tests/examples/seek/Makefile.am:
981         * tests/examples/seek/seek.c:
982           Remove libgstvideo usage. Use gtk_get_option_group instead of
983           gtk_init().
984
985 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
986
987         * tests/check/Makefile.am:
988           Name the test registry format neutral.
989
990 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
991
992         * gst/playback/gstqueue2.c:
993           Do not double notify. Remove the unsued return value.
994
995 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
996
997         * ext/alsa/gstalsamixer.c:
998           Also consider "speaker" as a name for master volume. If that doesn't
999           help look for the first non-mono volume control that also has a
1000           playback switch.
1001
1002 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1003
1004         * ChangeLog:
1005           Forgot to save the ChangeLog :/
1006
1007 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1008
1009         * tests/examples/seek/Makefile.am:
1010         * tests/examples/seek/seek.c:
1011           Embedd the xwindow. Allow to play multiple files.
1012
1013 2008-06-24  Jan Schmidt  <jan.schmidt@sun.com>
1014
1015         * sys/ximage/ximagesink.c (gst_ximagesink_ximage_put),
1016         (gst_ximagesink_setcaps):
1017         * sys/ximage/ximagesink.h:
1018         When the caps change, make sure to re-draw borders in
1019         force-aspect-ratio=true mode.
1020         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_put):
1021         Don't clear the border_draw flag until we actually draw the border.
1022         * tests/check/Makefile.am:
1023         Ignore alsasink/src during the states test too, so it doesn't fail
1024         when running without access to the sound device.
1025
1026 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
1027
1028         * tests/examples/seek/seek.c:
1029           Fix crasher when playing a parse-launch line the 2nd time.
1030
1031 2008-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
1032
1033         * tests/check/pipelines/oggmux.c:
1034           Properly ifdef tests to fix compilation.
1035
1036 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1037
1038         * gst/playback/gstplay-marshal.list:
1039         * gst/playback/gstplaybin2.c:
1040           Add get-video-pad, get-audio-pad, get-text-pad action signals to
1041           playbin2. This allows the user to get to the selector's sinkpads, and
1042           thus inspect a range of things - caps, tags, etc. 
1043
1044 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1045
1046         * gst/playback/gstplaybin2.c:
1047           Use a different constant for the convert-frame signal id.
1048           Fixes #537009.
1049
1050 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1051
1052         * gst/playback/gstplaybin2.c:
1053         * gst/playback/gstplaysink.c:
1054           Fix a whole bunch of typos in comments and log statements. 
1055
1056 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1057
1058         * sys/xvimage/xvimagesink.c:
1059           Don't set colour balance values on the Xv port if the user hasn't
1060           changed them (via properties or the interface). Avoids accumulating
1061           rounding errors for the common case.
1062           Partial fix for bug #537889.
1063
1064 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1065
1066         * gst/playback/gstdecodebin2.c:
1067           Ensure decodebin2 emits 'drained' signal once, and only once, when all
1068           pads are drained.
1069
1070 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1071
1072         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_get_latency),
1073         (gst_vorbis_enc_src_query), (gst_vorbis_enc_chain):
1074         Report the encoder latency. Fixes #538232.
1075
1076 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1077
1078         * gst/playback/gstplaybin2.c: (gst_play_bin_get_property),
1079         (notify_source), (activate_group):
1080         Implement the source property, emit notify when it changes in the
1081         underlying uridecodebin.
1082
1083 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1084
1085         * tests/examples/seek/seek.c: (stop_cb):
1086         Free and clear the seek element list so that we don't use invalid
1087         references when seeking after recreating a gst-launch line.
1088
1089 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1090
1091         * gst-libs/gst/audio/gstbaseaudiosink.c:
1092         (gst_base_audio_sink_query), (gst_base_audio_sink_skew_slaving),
1093         (gst_base_audio_sink_render):
1094         Report latency even if we are not live instead of hiding it.
1095         Take ts-offset and render-delay of the basesink into account when
1096         scheduling samples.
1097         Rework the clipping code so that we can take the various offsets into
1098         account and still do correct clipping.
1099
1100 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
1101
1102         * configure.ac:
1103         Bump verion back to devel -> 0.10.20.1
1104
1105 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1106
1107         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
1108         Don't increase the size of non-string image buffers by one as this
1109         might in theory confuse decoders. Still increase it by one for string
1110         image buffers to append '\0'.
1111
1112 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1113
1114         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1115         
1116         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset):
1117         Fix a buffer memleak and remove a confusing and wrong debug output.
1118         Fixes bug #538663.
1119
1120 === release 0.10.20 ===
1121
1122 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
1123
1124         * configure.ac:
1125           releasing 0.10.20, "Here I Go Again"
1126
1127 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1128
1129         * configure.ac:
1130         0.10.19.3 pre-release
1131
1132 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1133
1134         * gst-libs/gst/rtsp/gstrtspconnection.c:
1135         Fix build on win32.
1136         Patch By: David Schleef <ds@schleef.org>
1137         Fixes: #536874
1138
1139 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1140
1141         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_finalize),
1142         (gst_gio_base_src_create):
1143         * ext/gio/gstgiobasesrc.h:
1144         Try to read the requested number of bytes, even if the first
1145         read returns less than requested, until nothing is read anymore
1146         or we have the requested amount of bytes. This fixes playback of
1147         files via Samba as Samba only allows to read 64k at once.
1148
1149         Implement a caching algorithm that makes sure that we read at
1150         least 4k of data every time. Some elements will try to read a few
1151         bytes, then seek, read again a few bytes and so on and this is
1152         painfully slow as every operation has to go over DBus if GVfs is
1153         used as backend.
1154
1155         Fixes bug #536849 and #536848.
1156
1157         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init),
1158         (gst_gio_src_check_get_range):
1159         Override check_get_range() to blacklist http/https URIs
1160         and whitelist file URIs. More to be added on demand.
1161
1162 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
1163
1164         * configure.ac:
1165         0.10.19.2 pre-release
1166
1167 2008-06-04  Jan Schmidt  <jan.schmidt@sun.com>
1168
1169         * win32/common/libgstrtsp.def:
1170         * win32/common/libgsttag.def:
1171         Add new API functions to the dll exports
1172
1173 2008-06-04  Michael Smith <msmith@songbirdnest.com>
1174
1175         * gst/playback/gstplaybasebin.c:
1176           Disconnect signals from decodebins we created before we remove it
1177           from playbin, to avoid crashes if the decodebin is eventually
1178           disposed after the playbin itself (possible if the app takes a
1179           reference on the decodebin).
1180           Fixes #536521.
1181
1182 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1183
1184         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
1185           (mp3_type_find), (musepack_type_find), (MULTIPART_MAX_HEADER_SIZE),
1186           (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
1187           (h264_video_type_find), (mpeg_video_stream_type_find),
1188           (dv_type_find), (mmsh_type_find):
1189           Bunch of small clean-ups: use gst_type_find_suggest_simple(); don't
1190           copy caps for no good reason (this may be desirable to make it easier
1191           to detect leaks, but then it should probably be done for all caps
1192           in the typefinder somewhere).
1193
1194 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1195
1196         * tests/check/Makefile.am:
1197         Do not try to run the check tests for subparse unless it has been
1198         built.
1199
1200 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1201
1202         * tests/check/pipelines/streamheader.c: (buffer_probe_cb),
1203         (test_multifdsink_gdp_vorbisenc), (streamheader_suite):
1204         Do not try to run a test which requires vorbisenc unless we have
1205         actually built it.
1206
1207 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1208
1209         * gst-libs/gst/rtsp/gstrtspconnection.c:
1210         (gst_rtsp_connection_set_auth), (gst_rtsp_connection_set_auth_param),
1211         (gst_rtsp_connection_clear_auth_params),
1212         (gst_rtsp_connection_set_qos_dscp), (gst_rtsp_connection_get_ip):
1213         * gst-libs/gst/rtsp/gstrtspconnection.h:
1214         Add a couple of missing argument guards.
1215         Add a way of setting the DSCP for an RTSP connection.
1216         Add an accessor method for the ip member of GstRTSPConnection as all
1217         members are supposed to be private.
1218
1219 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1220
1221         * gst/tcp/gstmultifdsink.c: (setup_dscp_client):
1222         Fixed accidental use of IPv4 options for all IPv6 addresses.
1223
1224 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1225
1226         * gst-libs/gst/interfaces/mixertrack.h:
1227           Document mixer track flags.
1228
1229 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1230
1231         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1232
1233         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader):
1234         Don't set caps on the buffers that contain a copy of the buffer
1235         including the caps of them resulting in an always increasing refcount
1236         of the caps and insanely large caps. Instead include a buffer without
1237         caps in the new caps. Fixes bug #536475.
1238
1239 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1240
1241         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1242         Transform a given PAR to a range on the struct with the generic
1243         height/width instead of the struct with the possibly restricted
1244         height/width.
1245
1246 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1247
1248         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1249         Prefer the given format if it contains something stricter than [1,MAX]
1250         for height or width and only put a structure that requires rescaling
1251         as second. This makes it possible to use videoscale in pipelines where
1252         the source can actually produce the wanted height/width but usually
1253         selects a different one from the requested.
1254
1255 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1256
1257         Based on patch by: John Millikin <jmillikin gmail com>
1258
1259         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches), (gst_vorbis_tag_add),
1260           (gst_vorbis_tag_add_coverart):
1261           Retrieve COVERART tags from vorbis comments (#512333)
1262
1263 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1264
1265         * gst-libs/gst/tag/tag.h:
1266         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
1267           Don't forget to add new enum value here too (should probably use
1268           glib-mkenums here...).
1269
1270 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1271
1272         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_add_id3_image):
1273         * gst-libs/gst/tag/tag.h: (GST_TAG_IMAGE_TYPE_NONE),
1274         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
1275           (gst_tag_image_type_get_type), (gst_tag_image_type_is_valid),
1276           (gst_tag_image_data_to_image_buffer):
1277           Add two utility functions to avoid code duplication (#512333):
1278           API: add gst_tag_image_data_to_image_buffer()
1279           API: add gst_tag_list_add_id3_image()
1280           API: add GST_TAG_IMAGE_TYPE_NONE enum value
1281
1282 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
1283
1284         * win32/common/libgstaudio.def:
1285         Add gst_audio_check_channel_positions() to the exported symbols.
1286
1287 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
1288
1289         * docs/libs/gst-plugins-base-libs-sections.txt:
1290         * gst-libs/gst/audio/multichannel.c:
1291         (gst_audio_check_channel_positions):
1292         * gst-libs/gst/audio/multichannel.h:
1293         API: Make gst_audio_check_channel_positions() public.
1294
1295         * tests/check/libs/audio.c: (GST_START_TEST):
1296         Add some simple checks for gst_audio_check_channel_positions().
1297
1298 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1299
1300         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
1301           minrange and maxrange are scaled according to the frequency
1302           multiplier.
1303
1304 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1305
1306         * ext/pango/Makefile.am:
1307         * ext/pango/gsttextoverlay.c: (gst_text_overlay_shade_y),
1308           (gst_text_overlay_blit_yuv420), (gst_text_overlay_push_frame):
1309           Use gstvideo functions to calculate strides and plane offsets. Fixes
1310           rendering issue ('ghost' images of the text on the chroma planes)
1311           with widths or heights that are not multiples of 8 (#506659 and
1312           probably also #485729).
1313
1314         * tests/icles/test-textoverlay.c: (show_text), (test_textoverlay),
1315           (main):
1316           Test with odd height/width too.
1317
1318 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
1319
1320         * gst/adder/gstadder.c: (gst_adder_query_duration),
1321         (gst_adder_query_latency):
1322         When using gst_element_iterate_pads() one has to unref every pad
1323         after usage.
1324
1325 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
1326
1327         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1328         (gst_base_audio_src_class_init):
1329         Add a gtk-doc chunk for the new properties to have a Since: indication.
1330
1331 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
1332
1333         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1334         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
1335         (gst_base_audio_src_get_property), (gst_base_audio_src_setcaps),
1336         (gst_base_audio_src_change_state):
1337         Provide readable actual-buffer-time and actual-latency-time properties
1338         that reflect the configured ringbuffer values. Fixes #524724.
1339         API: GstBaseAudioSrc:actual-buffer-time
1340         API: GstBaseAudioSrc:actual-latency-time
1341
1342 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1343
1344         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push),
1345         (gst_basertppayload_change_state):
1346         Simply converting the running time into an RTP timestamp by scaling it
1347         based on the clock-rate is good enough for making an RTP timestamp. This
1348         has the added benefit that we can later on expose a property with the
1349         RTP timestamp of running time 0, as is needed for RTSP servers to
1350         generate the response of the PLAY request.
1351
1352 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
1353
1354         * gst/audioconvert/gstaudioconvert.c:
1355         (structure_has_fixed_channel_positions),
1356         (gst_audio_convert_transform_caps):
1357         Allow up to 11 positioned channels now that audioconvert can handle
1358         this but add no default positions for > 8 channels.
1359         
1360         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1361         Add some unit tests for the above change: Test conversion of
1362         11 positioned channels to stereo and the other way around, test
1363         conversion of 15 unpositioned channels in different ways.
1364
1365 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1366
1367         * win32/common/libgstaudio.def:
1368         Add gst_audio_clock_reset to the list of exported symbols.
1369
1370 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1371
1372         * tests/check/elements/vorbisdec.c: (vorbisdec_suite):
1373         Remove wrong_channels_identification_header unit test as we now
1374         support 7 (and more channels).
1375
1376 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1377
1378         * gst/audioconvert/gstchannelmix.c:
1379         (gst_channel_mix_fill_one_other):
1380         If mixing left or right to center (or the other way around) only take
1381         the complete value if we don't already have the original position in
1382         the source.
1383
1384 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1385
1386         * gst-libs/gst/audio/multichannel.c:
1387         (gst_audio_check_channel_positions),
1388         (gst_audio_set_structure_channel_positions_list),
1389         (gst_audio_fixate_channel_positions):
1390         Allow rear center together with rear left/right and other previously
1391         conflicting channel positions. The reason why they weren't allowed
1392         was the channel mixing implementation in audioconvert.
1393         Also take this into account when fixing channel layouts.
1394
1395         Allow setting channel positions for 1/2 channels when using
1396         gst_audio_set_structure_channel_position().
1397
1398         * gst/audioconvert/gstchannelmix.c:
1399         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
1400         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
1401         (gst_channel_mix_fill_special), (gst_channel_mix_fill_matrix):
1402         Major rewrite of the channel mixing.
1403
1404         We now allow previously conflicting channel positions to appear
1405         together (rear center and rear left/right for example).
1406         Fixes bug #533817.
1407
1408         Rework the way channels are mixed together to take more possible
1409         channel positions into account, properly mix from/to side channels
1410         and don't assume that either center, left&right or nothing of a
1411         specific position is available anymore.
1412
1413         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1414         Adjust unit tests with non-standard 1/2 channel layouts to the more
1415         correct new behaviour.
1416
1417         Add a unit test for 5.1->Stereo downmixing.
1418
1419 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1420
1421         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
1422         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps):
1423         Add sane defaults for the 7 and 8 channel layouts as those are
1424         undefined in the Vorbis spec. Use NONE channel layouts when decoding
1425         more than 8 channels instead of erroring out. Fixes bug #535356.
1426
1427 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1428
1429         * docs/plugins/Makefile.am:
1430         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1431         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1432         * ext/theora/theoraparse.c:
1433         Add theoraparse to the docs and fix some docs.
1434
1435 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1436
1437         * gst-libs/gst/cdda/gstcddabasesrc.c:
1438         (gst_cdda_base_src_add_track), (gst_cdda_base_src_create):
1439         Fix EOS condition and track addition check, the track.end sector is
1440         included in the track. Fixes #533265.
1441
1442 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1443
1444         Patch by: Mark Nauwelaerts <manauw at skynet be>
1445
1446         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
1447         (gst_video_rate_flush_prev), (gst_video_rate_event),
1448         (gst_video_rate_chain):
1449         * gst/videorate/gstvideorate.h:
1450         React (more) to NEWSEGMENT
1451         Small adjustment in timestamp calculation to prevent mismatches
1452         Fixes #435633.
1453
1454 2008-05-28  Tim-Philipp Müller  <tim.muller at collabora co uk>
1455
1456         * tests/examples/seek/seek.c: (make_parselaunch_pipeline):
1457           Initialise error to NULL as we should.
1458
1459 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
1460
1461         * gst/adder/gstadder.c: (gst_adder_query_duration),
1462         (gst_adder_query_latency), (gst_adder_query):
1463         Implement latency query.
1464
1465 2008-05-27  Sebastian Dröge  <slomo@circular-chaos.org>
1466
1467         * gst/adder/gstadder.c: (gst_adder_query_duration):
1468         Correctly resync the iterator if gst_iterator_next() returns
1469         GST_ITERATOR_RESYNC.
1470
1471 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1472
1473         * win32/vs6/libgstpbutils.dsp:
1474           Add pbutils-enumtypes.c to sources (#518037).
1475
1476 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1477
1478         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
1479         (gst_audio_clock_reset), (gst_audio_clock_get_internal_time):
1480         * gst-libs/gst/audio/gstaudioclock.h:
1481         Add method to inform the clock that the time starts from 0 again. We use
1482         this info to calculate a clock offset so that the time we report in
1483         internal_time is monotonically increasing, as required by the clock base
1484         class. Fixes #521761.
1485         API: GstAudioClock::gst_audio_clock_reset()
1486
1487         * gst-libs/gst/audio/gstbaseaudiosink.c:
1488         (gst_base_audio_sink_skew_slaving),
1489         (gst_base_audio_sink_change_state):
1490         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1491         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
1492         Reset reported time when we (re)create the ringbuffer.
1493
1494 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1495
1496         * ext/alsa/gstalsamixertrack.c:
1497           (gst_alsa_mixer_track_update_alsa_capabilities):
1498           Make sure playback volumes aren't accidentally overwritten by
1499           capture volumes if an alsa mixer track has both playback and
1500           capture capabilities: we create two GstMixerTracks in that
1501           case, so make sure we query only the alsa capabilities that
1502           refer to the type of GstMixerTrack we created from the dual
1503           capability alsa element. Should fix issues with Audigy2 sound
1504           cards (#518082).
1505
1506 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1507
1508         * tests/check/pipelines/oggmux.c: (test_pipeline):
1509           Don't use deprecated function.
1510
1511 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1512
1513         * gst/playback/gstdecodebin2.c:
1514         (gst_decode_group_control_source_pad), (gst_decode_group_expose):
1515         Check for NULL cases and log them, creating ghostpads can, for example,
1516         fail when the pad returns wrong caps.
1517
1518         * gst/playback/gstplaybin2.c: (perform_eos):
1519         When pushing out the EOS event, collect the return value and warn when
1520         something failed.
1521
1522 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1523
1524         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1525         (gst_riff_create_video_template_caps):
1526         Add support for DVCPRO.
1527
1528 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1529
1530         * gst/videoscale/gstvideoscale.c: (DEFAULT_PROP_METHOD):
1531           Change default scaling method from nearest-neighbour to bilinear.
1532
1533 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1534
1535         * tests/check/libs/video.c:
1536           More checks.
1537
1538 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1539
1540         * gst/subparse/gstsubparse.c: (parser_state_init),
1541           (gst_sub_parse_format_autodetect), (handle_buffer):
1542         * gst/subparse/gstsubparse.h:
1543         * tests/check/elements/subparse.c: (test_tmplayer_style3b):
1544           Limit duration to a maximum of five seconds for tmplayer format where
1545           we can guess the duration only from the timestamp of the next line of
1546           text. We don't want to show a text for eternities just because nothing
1547           else is being said for a while.
1548
1549 2008-05-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1550
1551         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1552         (gst_base_rtp_depayload_chain),
1553         (gst_base_rtp_depayload_handle_sink_event),
1554         (gst_base_rtp_depayload_push_full),
1555         (gst_base_rtp_depayload_change_state):
1556         Check sequence numbers, mark input buffers with a discont flag for the
1557         subclass when we detected a gap, drop duplicate buffers. We do this
1558         because one can use the element without a jitterbuffer in front and we
1559         don't want to feed the subclasses invalid or reordered data.
1560         Do an error when the subclass did not provide a process function instead
1561         of crashing.
1562         Some other small cleanups.
1563
1564 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
1565
1566         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
1567           May just as well use the precalculated uvstride here.
1568
1569 2008-05-22  Jan Schmidt  <jan.schmidt@sun.com>
1570
1571         * docs/plugins/Makefile.am:
1572         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1573         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1574         * docs/plugins/gst-plugins-base-plugins.args:
1575         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1576         * docs/plugins/gst-plugins-base-plugins.interfaces:
1577         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1578         * docs/plugins/inspect/plugin-adder.xml:
1579         * docs/plugins/inspect/plugin-alsa.xml:
1580         * docs/plugins/inspect/plugin-audioconvert.xml:
1581         * docs/plugins/inspect/plugin-audiorate.xml:
1582         * docs/plugins/inspect/plugin-audioresample.xml:
1583         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1584         * docs/plugins/inspect/plugin-cdparanoia.xml:
1585         * docs/plugins/inspect/plugin-decodebin.xml:
1586         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1587         * docs/plugins/inspect/plugin-gdp.xml:
1588         * docs/plugins/inspect/plugin-gio.xml:
1589         * docs/plugins/inspect/plugin-gnomevfs.xml:
1590         * docs/plugins/inspect/plugin-libvisual.xml:
1591         * docs/plugins/inspect/plugin-ogg.xml:
1592         * docs/plugins/inspect/plugin-pango.xml:
1593         * docs/plugins/inspect/plugin-playback.xml:
1594         * docs/plugins/inspect/plugin-queue2.xml:
1595         * docs/plugins/inspect/plugin-subparse.xml:
1596         * docs/plugins/inspect/plugin-tcp.xml:
1597         * docs/plugins/inspect/plugin-theora.xml:
1598         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1599         * docs/plugins/inspect/plugin-uridecodebin.xml:
1600         * docs/plugins/inspect/plugin-video4linux.xml:
1601         * docs/plugins/inspect/plugin-videorate.xml:
1602         * docs/plugins/inspect/plugin-videoscale.xml:
1603         * docs/plugins/inspect/plugin-videotestsrc.xml:
1604         * docs/plugins/inspect/plugin-volume.xml:
1605         * docs/plugins/inspect/plugin-vorbis.xml:
1606         * docs/plugins/inspect/plugin-ximagesink.xml:
1607         * docs/plugins/inspect/plugin-xvimagesink.xml:
1608         * ext/cdparanoia/gstcdparanoiasrc.c:
1609         * ext/ogg/gstoggdemux.c:
1610         * ext/ogg/gstoggdemux.h:
1611         * ext/ogg/gstoggmux.c:
1612         * ext/ogg/gstoggmux.h:
1613         * gst/audioconvert/audioconvert.c:
1614         * gst/audioconvert/audioconvert.h:
1615         * gst/audioconvert/gstaudioconvert.h:
1616         * gst/gdp/gstgdpdepay.h:
1617         * gst/gdp/gstgdppay.h:
1618         * gst/playback/gstdecodebin.c:
1619         * gst/playback/gstdecodebin2.c:
1620         * gst/playback/gstplaybin.c:
1621         * gst/playback/gstplaybin2.c:
1622         * gst/playback/gsturidecodebin.c:
1623         * gst/tcp/gstmultifdsink.c:
1624         * gst/tcp/gstmultifdsink.h:
1625         * gst/tcp/gsttcp.h:
1626
1627         Add some documentation comments, and some new headers to be scanned.
1628         Rename some internal enum declarations (audioconvert's DitherType and
1629         NoiseShapingType, GstUnitType from the TCP elements) to match the
1630         documented GObject type names so that the docs pick them up.
1631         Name the playbin2 docs markups properly so they get picked up. They'll
1632         need renaming back when/if playbin2 becomes playbin.
1633
1634         100% symbol coverage for the plugin docs, booya.
1635
1636 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
1637
1638         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
1639
1640         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
1641         Fix generation of NV12/NV21 frames. Fixes bug #532454.
1642
1643 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
1644
1645         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1646
1647         * gst/playback/gstdecodebin.c: (remove_fakesink):
1648         Lock the fakesink before setting the state to NULL and removing it from
1649         the bin so that a concurrent state change cannot interfere. 
1650         Fixes #534331.
1651
1652 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
1653
1654         * docs/Makefile.am:
1655         Fix installing plugin documentation when gtk-doc is disabled.
1656
1657 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
1658
1659         * gst-libs/gst/rtsp/Makefile.am:
1660         Distribute, don't install md5.h
1661
1662 2008-05-21  Julien Moutte  <julien@fluendo.com>
1663
1664         * gst/tcp/gstmultifdsink.c: (setup_dscp_client): Use IPPROTO_IP
1665         instead of SOL_IP, works on more platforms.
1666         * gst/typefind/gsttypefindfunctions.c: (aac_type_find): Fix printf
1667         arguments.
1668
1669 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1670
1671         * ext/vorbis/vorbisdec.c:
1672         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
1673         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame):
1674         Some debug and comment fixes.
1675
1676         * tests/examples/dynamic/addstream.c: (main):
1677         Fix , to ;
1678
1679 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1680
1681         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
1682         * gst/playback/decodetest.c: (new_decoded_pad_cb):
1683         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
1684         (try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
1685         (cleanup_decodebin):
1686         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
1687         (connect_element), (gst_decode_group_control_demuxer_pad):
1688         * gst/playback/gstplaybasebin.c: (queue_remove_probe),
1689         (queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
1690         (mute_group_type):
1691         * gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
1692         (gst_play_bin_set_property), (handoff), (gen_video_element),
1693         (gen_text_element), (gen_audio_element), (gen_vis_element),
1694         (remove_sinks), (add_sink), (setup_sinks):
1695         * gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
1696         * gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
1697         (gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
1698         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
1699         (gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
1700         (gen_video_chain), (gen_text_chain), (gen_audio_chain),
1701         (gen_vis_chain), (gst_play_sink_reconfigure),
1702         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
1703         (gst_play_sink_request_pad):
1704         * gst/playback/gsturidecodebin.c: (type_found), (setup_source):
1705         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
1706         (cb_newpad):
1707         * gst/playback/test6.c: (new_decoded_pad_cb):
1708         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1709         * tests/check/elements/audiorate.c: (test_injector_chain),
1710         (do_perfect_stream_test):
1711         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
1712         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
1713         * tests/check/elements/gnomevfssink.c:
1714         * tests/check/elements/textoverlay.c:
1715         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
1716         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
1717         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
1718         * tests/check/pipelines/oggmux.c: (test_pipeline):
1719         * tests/check/pipelines/streamheader.c: (GST_START_TEST):
1720         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
1721         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
1722         * tests/examples/seek/scrubby.c: (make_wav_pipeline):
1723         * tests/examples/seek/seek.c: (make_mod_pipeline),
1724         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
1725         (make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
1726         (make_theora_pipeline), (make_vorbis_theora_pipeline),
1727         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
1728         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
1729         (update_fill), (msg_buffering):
1730         Don't use bad gst_element_get_pad().
1731
1732 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
1733
1734         * gst-libs/gst/riff/riff-media.c:
1735           Fix wrong method name in docs. Fix calculation of strf fields for
1736           broken mulaw/alaw.
1737   
1738         * gst-libs/gst/riff/riff-read.c:
1739           Whitespace fix and removing double ';'.
1740
1741 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1742
1743         * docs/design/part-playbin2.txt:
1744         Add some leftover doc.
1745
1746 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1747
1748         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
1749         Fix copy & paste error in last commit.
1750
1751 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1752
1753         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
1754         Add support for mixing GST_AUDIO_CHANNEL_POSITION_SIDE_* from/to
1755         other channel positions when source has SIDE channels and dest doesn't
1756         or the other way around.
1757
1758 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1759
1760         Patch by: Henrik Eriksson <henriken at axis dot com>
1761
1762         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
1763         (gst_multi_fd_sink_init), (setup_dscp_client), (setup_dscp),
1764         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_set_property),
1765         (gst_multi_fd_sink_get_property):
1766         * gst/tcp/gstmultifdsink.h:
1767         Add support for DSCP QOS. Fixes #469933.
1768
1769 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1770
1771         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1772         Add another test that checks if conversion between standard 1 and 2
1773         channel layouts with and without positions set is working.
1774
1775 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1776
1777         * gst-libs/gst/audio/multichannel.c:
1778         (gst_audio_check_channel_positions):
1779         Allow non-standard 2 channel layouts.
1780         
1781         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1782         Add some tests for converting and remapping non-standard 1 and 2
1783         channel layouts.
1784
1785 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1786
1787         * gst/audioconvert/gstchannelmix.c:
1788         (gst_channel_mix_fill_normalize):
1789         Prevent division by zero if the channel mix matrix contains only
1790         zeroes.
1791
1792 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1793
1794         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1795
1796         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain):
1797         Close a buffer memory leak. Fixes bug #534071.
1798
1799 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1800
1801         * gst-libs/gst/rtsp/gstrtsptransport.h:
1802         Make the GstRTSPTransport struct members public as there are no
1803         setters/getters and it's supposed to be changed directly.
1804         Fixes bug #533087.
1805
1806 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1807
1808         * gst/adder/gstadder.c:
1809         Adder also doesn't support audio/x-raw-int with width!=depth so don't
1810         claim this on the pad template caps.
1811
1812 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1813
1814         * gst-libs/gst/audio/gstbaseaudiosink.c:
1815         (gst_base_audio_sink_sync_latency):
1816         We can only use our optimal calibration if we prerolled before the
1817         latency expired.
1818
1819 2008-05-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
1820
1821         * configure.ac:
1822           Require core CVS for GstBaseSrc buffer caps setting magic.
1823
1824 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
1825
1826         * gst/audioconvert/gstaudioconvert.c:
1827         (gst_audio_convert_fixate_channels):
1828         Fix logic in last commit.
1829
1830 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
1831
1832         * gst/audioconvert/gstaudioconvert.c:
1833         (gst_audio_convert_fixate_channels):
1834         Passthrough the channel positions if the number of output channels is
1835         the same as the number of input channels, the input had a channel
1836         layout and downstream requests no special one. We did this already for
1837         > 2 channels but now it's also done for 1 channel. Fixes bug #533617.
1838
1839 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1840
1841         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
1842         (gst_gnome_vfs_src_finalize),
1843         (gst_gnome_vfs_src_received_headers_callback),
1844         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_stop):
1845         * ext/gnomevfs/gstgnomevfssrc.h:
1846         Set the ICY caps on the srcpad from where they get picked up by the base
1847         class now and set on the outgoing buffers.
1848
1849         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1850         (gst_base_audio_src_create):
1851         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
1852         BaseSrc now sets the caps on outgoing buffers automatically.
1853
1854 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1855
1856         * gst-libs/gst/audio/gstbaseaudiosink.c:
1857         (gst_base_audio_sink_resample_slaving),
1858         (gst_base_audio_sink_skew_slaving),
1859         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
1860         (gst_base_audio_sink_async_play),
1861         (gst_base_audio_sink_change_state):
1862         Change the way in which the ringbuffer is started when dealing with a
1863         slaved clock and latency. We now sync to the clock until we reach
1864         upstream latency before starting the ringbuffer. This has the effect
1865         that we can accurately align the master and slave clocks and let the
1866         rate correction code take care of the initial drift or rounding errors
1867         instead of leaving them uncorrected with the old approach.
1868
1869 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
1870
1871         * gst/audioconvert/gstaudioconvert.c:
1872         (gst_audio_convert_fixate_channels):
1873         Correctly set the default channel positions when converting to 8
1874         channels.
1875
1876 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1877
1878         * configure.ac:
1879           Error out if we don't have the required version of core.
1880
1881 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1882
1883         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
1884           Use data scan helper in aac typefinder and stop scanning
1885           for headers when we've found a type. Also fix potential invalid
1886           memory access when calculating the frame length.
1887
1888 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1889
1890         * gst/typefind/gsttypefindfunctions.c: (data_scan_ctx_ensure_data),
1891           (mpeg_sys_is_valid_pack):
1892           Don't modify scan context when we return FALSE in ensure_data, so
1893           it's possible to continue scanning, and we don't end up with a NULL
1894           data pointer and a positive size, which might bite us the next time
1895           we're called. Small constification.
1896
1897 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
1898
1899         * gst/adder/gstadder.c:
1900         Adder doesn't support 24 bit samples so don't claim it supports them
1901         in the pad template caps.
1902
1903 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
1904
1905         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1906         (gst_base_rtp_depayload_chain):
1907         Validate the RTP packet before further processing it. It's just too
1908         dangerous to accept random packets and people are not forced to use a
1909         jitterbuffer or session manager to filter out the bad packets.
1910
1911         * gst-libs/gst/rtp/gstrtpbuffer.c:
1912         (gst_rtp_buffer_set_extension_data),
1913         (gst_rtp_buffer_get_payload_subbuffer):
1914         Small cleanups.
1915         When setting extension data in a buffer that is too small, we fail and
1916         we should not set the extension bit.
1917         Change GST_WARNINGS into g_warning because they really are
1918         programming errors.
1919
1920         * tests/check/libs/rtp.c: (GST_START_TEST):
1921         Catch the g_warnings now in the unit tests and that fact that failing to
1922         set extension data left the extension bit untouched.
1923
1924 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
1925
1926         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
1927           Revert previous change which made basetransform handle buffer_alloc
1928           and which breaks things badly in the non-passthrough case since it
1929           returned buffers with a different (ie. sometimes smaller) size than
1930           the size requested.
1931
1932 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
1933
1934         Patch by: Bernard B <b-gnome at largestprime dot net>
1935
1936         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum):
1937         Fix seqnum compare function for bordercase values and fix the docs
1938         again. Fixes #533075.
1939
1940         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
1941         Add a testcase for seqnum compare function.
1942
1943 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
1944
1945         * gst/adder/gstadder.c: (gst_adder_setcaps),
1946         (gst_adder_class_init):
1947         Correctly declare the supported endianness on the pad templates
1948         and check for correct endianness in the set caps function. Adder
1949         only supports native endianness.
1950         Also use gst_element_class_set_details_simple().
1951
1952 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
1953
1954         * sys/xvimage/xvimagesink.c:
1955           Better debug logging in port value handling. Merging separate port
1956           value loops into one.
1957
1958 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1959
1960         Patch by: Hannes Bistry <hannesb at gmx dot de>
1961
1962         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
1963         * gst/tcp/gsttcpserversink.c:
1964         (gst_tcp_server_sink_handle_server_read),
1965         (gst_tcp_server_sink_handle_wait), (gst_tcp_server_sink_init_send):
1966         Fix regression in clientsrc because we did not add the fd to the poll
1967         set anymore. Fixes #532364.
1968         Do some cleanups here and there.
1969
1970 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
1971
1972         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
1973         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
1974         * gst/playback/gstplay-marshal.list:
1975         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
1976         Use correct marshallers. GstCaps are a boxed type and no GObject
1977         subclass.
1978
1979 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
1980
1981         * win32/common/libgstrtsp.def:
1982         Add gst_rtsp_connection_(set|clear)_auth_param() to the exported
1983         symbols.
1984
1985 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
1986
1987         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1988
1989         * tests/check/elements/audioresample.c:
1990         (live_switch_alloc_only_48000), (live_switch_get_sink_caps),
1991         (live_switch_push), (GST_START_TEST):
1992         Add unit test for the latest basetransform negotiation changes.
1993         See bug #526768.
1994
1995 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
1996
1997         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
1998         Fix nv12<->nv21 conversion if stride is larger than width.
1999
2000 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2001
2002         Patch by: Jan Gerber <j at oil21 dot org>
2003
2004         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
2005         (gst_ogg_pad_parse_skeleton_fisbone):
2006         * ext/ogg/gstoggdemux.h:
2007         Parse presentation time from skeleton streams and use it as offset
2008         for the timestamps. Fixes bug #530068.
2009
2010 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
2011
2012         * gst-libs/gst/audio/gstbaseaudiosink.c:
2013         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
2014         Revert previous patch that attempted to more accurately calculate the
2015         initial offset between master and slave clock. The best thing we can do
2016         in general is take the time of both clocks as the diff since we don't
2017         know when the actual preroll happened.
2018
2019 2008-05-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
2020
2021         * gst-libs/gst/pbutils/install-plugins.c:
2022           Fix docs: type and missing word.
2023
2024 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2025
2026         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2027           Don't do lots of 4-byte peeks, but use the 'new' data scan helper
2028           for this instead; don't check if we've found enough markers after
2029           each and every step, it's enough to do that only if we've actually
2030           found a new marker.
2031           Embed a G_UNLIKELY into the IS_MPEG_HEADER macro.
2032
2033 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2034
2035         * gst/typefind/gsttypefindfunctions.c:
2036           (DATA_SCAN_CTX_CHUNK_SIZE), (DataScanCtx), (data_scan_ctx_advance),
2037           (data_scan_ctx_ensure_data), (GST_MPEGVID_TYPEFIND_TRY_SYNC),
2038           (mpeg_video_stream_type_find):
2039           Move scan helper thingy to the beginning of the file so we can use
2040           it in other typefind functions. Rename it to something more
2041           generic. Also improve handling of things towards the end of the
2042           typefind data: peek as much as we can if we know the size of the
2043           data, rather than just min_size.
2044
2045 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
2046
2047         * docs/libs/gst-plugins-base-libs-sections.txt:
2048         * gst-libs/gst/interfaces/colorbalance.c:
2049         * gst-libs/gst/interfaces/colorbalance.h:
2050         * gst-libs/gst/interfaces/colorbalancechannel.c:
2051         * gst-libs/gst/interfaces/colorbalancechannel.h:
2052         * gst-libs/gst/interfaces/tuner.c:
2053         * gst-libs/gst/interfaces/tunerchannel.c:
2054         * gst-libs/gst/interfaces/tunerchannel.h:
2055         * gst-libs/gst/interfaces/tunernorm.c:
2056         * gst-libs/gst/interfaces/tunernorm.h:
2057         * gst-libs/gst/video/video.c:
2058         * gst-libs/gst/video/video.h:
2059         Document the GstTuner and GstColorBalance interfaces, and some
2060         other random API functions that needed it. 70% symbol coverage, woo.
2061
2062 2008-05-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2063
2064         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
2065         Choose to allocate one less segment but require one additional segment
2066         as latency. 
2067
2068         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_acquire):
2069         No need to increment the number of segments in the source.
2070
2071         * gst-libs/gst/audio/gstbaseaudiosink.c:
2072         (gst_base_audio_sink_get_time), (clock_convert_external),
2073         (gst_base_audio_sink_resample_slaving),
2074         (gst_base_audio_sink_skew_slaving),
2075         (gst_base_audio_sink_none_slaving), (gst_base_audio_sink_render),
2076         (gst_base_audio_sink_async_play):
2077         Remove adding latency when returning the internal time while subtracting
2078         it again when we use the value a little later.
2079         When calculating the end timestamp, we are making a rounding error
2080         with the current algorithm. Ensure that we don't accumulate these
2081         rounding errors when aligning samples by not resampling at all if we
2082         don't need to. Fixes #419351.
2083         Make the initial calibration of the clock slaving a little more
2084         predictable and accurate. Also handle the case where we don't do
2085         clock slaving.
2086
2087 2008-05-09  Sebastian Dröge  <slomo@circular-chaos.org>
2088
2089         Based on a patch by:
2090           Björn Benderius <bjoern dot benderius at axis dot com>
2091
2092         * gst/ffmpegcolorspace/avcodec.h:
2093         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2094         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
2095         (gst_ffmpegcsp_avpicture_fill):
2096         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
2097         * gst/ffmpegcolorspace/imgconvert_template.h:
2098         Add conversions from/to NV12 and NV21 and conversions between those
2099         two formats. Fixes bug #532166.
2100
2101 2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>
2102
2103         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2104         Abort the h264 typefinding as soon as _peek() doesn't return anything,
2105         which happens for example with files smaller than 128kb.
2106
2107 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2108
2109         Patch by: Wouter Cloetens <zombie at e2big dot org>
2110
2111         * gst-libs/gst/rtsp/Makefile.am:
2112         * gst-libs/gst/rtsp/gstrtspconnection.c:
2113         (gst_rtsp_connection_create), (md5_digest_to_hex_string),
2114         (auth_digest_compute_hex_urp), (auth_digest_compute_response),
2115         (add_auth_header), (gst_rtsp_connection_free),
2116         (gst_rtsp_connection_set_auth), (str_case_hash), (str_case_equal),
2117         (gst_rtsp_connection_set_auth_param),
2118         (gst_rtsp_connection_clear_auth_params):
2119         * gst-libs/gst/rtsp/gstrtspconnection.h:
2120         Add Digest authorization support for RTSP connections. See #532065.
2121
2122         * gst-libs/gst/rtsp/md5.c:
2123         * gst-libs/gst/rtsp/md5.h:
2124         Yeap, another md5 implementation until we can depend on a glib that has
2125         support for it.
2126
2127 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2128
2129         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2130
2131         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2132         Let audioresample use the buffer allocation of basetransform instead
2133         of it's own stuff.
2134
2135         * tests/check/elements/audioresample.c: (alloc_only_48000),
2136         (GST_START_TEST), (audioresample_suite):
2137         Add unit test for the recent basetransform bugfix, where upstream
2138         changes caps to something that can't be passed through anymore.
2139
2140 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2141
2142         * win32/common/config.h.in:
2143           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
2144           use the real thing than having "???" unconditionally.
2145
2146 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2147
2148         * gst-libs/gst/audio/gstbaseaudiosink.c:
2149         (gst_base_audio_sink_query):
2150         Report the latency with the new seglatency parameter.
2151
2152         * gst-libs/gst/audio/gstringbuffer.c:
2153         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
2154         (gst_ring_buffer_acquire):
2155         * gst-libs/gst/audio/gstringbuffer.h:
2156         Add new field to the ringbufferspec to specify the expected latency
2157         between the underlying device read/write pointer, this is needed
2158         when writing sinks that sit a little closer to the hardware.
2159         Add some more docs for other fields.
2160
2161 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2162
2163         * gst/volume/gstvolume.c: (volume_transform_ip):
2164         Return NOT_NEGOTIATED if we didn't set a process function yet for some
2165         reason instead of crashing later. Might fix bug #509125.
2166
2167 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2168
2169         Based on a patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
2170
2171         * gst/audioconvert/audioconvert.c: (audio_convert_prepare_context):
2172         * gst/audioconvert/audioconvert.h:
2173         * gst/audioconvert/gstaudioconvert.c:
2174         (gst_audio_convert_parse_caps),
2175         (structure_has_fixed_channel_positions),
2176         (gst_audio_convert_transform_caps):
2177         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_matrix):
2178         Add support for more than 8 channels and NONE channel layouts. For
2179         more than 8 channels no channel conversion is supported yet, only
2180         format conversions are supported. Fixes bug #398033.
2181
2182         * tests/check/elements/audioconvert.c: (verify_convert),
2183         (GST_START_TEST), (audioconvert_suite):
2184         Add some unit tests by Tim for checking the NONE channel layouts
2185         and more than 8 channels and add some more unit tests for channel
2186         conversions.
2187
2188 2008-05-06  Wim Taymans  <wim.taymans@collabora.co.uk>
2189
2190         * gst/playback/gstdecodebin2.c: (connect_pad):
2191         When autoplugging fails, set the element back to NULL before
2192         unreffing it.
2193
2194 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2195
2196         * win32/common/libgstaudio.def:
2197         Add gst_base_audio_src_[sg]et_slave_method() to the exported
2198         symbols.
2199
2200 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2201
2202         * gst/subparse/samiparse.c: (handle_start_sync),
2203         (end_sami_element), (characters_sami):
2204         Remove trailing, leading and double whitespaces.
2205         Correctly timestamp buffers and output the last buffer too.
2206
2207         * tests/check/elements/subparse.c: (GST_START_TEST),
2208         (subparse_suite):
2209         Add a simple unit test for SAMI parsing.
2210
2211 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2212
2213         Patch by: Young-Ho Cha <ganadist at chollian dot net>
2214
2215         * gst/subparse/samiparse.c: (handle_start_sync),
2216         (start_sami_element), (end_sami_element), (characters_sami),
2217         (sami_context_reset):
2218         Only output characters inside the "sync" elements. There could be
2219         other elements like "style" that have some content but should
2220         not be printed. Fixes bug #467911.
2221
2222 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2223
2224         * gst/playback/gstplaybasebin.c: (set_audio_mute),
2225         (set_active_source):
2226         * gst/playback/gstplaybasebin.h:
2227         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2228         (playbin_set_audio_mute):
2229         Allow setting -1 as current-audio to mute the current audio stream,
2230         similar to what is done for subtitles. Fixes bug #342294.
2231
2232 2008-05-05  Edward Hervey  <edward.hervey at collabora co uk>
2233
2234         * gst-libs/gst/pbutils/descriptions.c: (formats): 
2235         It's SorensOn and not SorensEn.
2236
2237 2008-05-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2238
2239         * gst-libs/gst/pbutils/descriptions.c: (formats):
2240           Fix description of video/x-flash-video.
2241
2242 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
2243
2244         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2245         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2246         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2247         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps_list):
2248         Remove some unused code.
2249
2250         * gst/audioconvert/gstaudioquantize.c:
2251         (gst_audio_quantize_free_noise_shaping):
2252         Don't return before freeing the noise shaping history.
2253
2254 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2255
2256         * tests/check/elements/subparse.c: (do_test),
2257           (test_tmplayer_style3b), (subparse_suite):
2258           Add unit test for the tmplayer variant from bug #530962.
2259
2260 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2261
2262         * gst/subparse/gstsubparse.c: (handle_buffer),
2263           (gst_sub_parse_sink_event):
2264         * gst/subparse/tmplayerparse.c: (tmplayer_process_buffer),
2265           (tmplayer_parse_line):
2266           Fix parsing of tmplayer subtitle variant where every single line contains
2267           text and there isn't an empty line after each line to determine the
2268           duration (#530962). Improve EOS handling for tmplayer subtitles a bit by
2269           making sure that we push out the last line of text without a duration if
2270           there's still text left in the buffer at the end.
2271
2272 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2273
2274         * gst/subparse/gstsubparse.c: (feed_textbuf):
2275           Fix detection of discontinuities based on the buffer offset (doesn't work
2276           so well if no buffer offset is set) and also check for the DISCONT buffer
2277           flag. This keeps the parser state from being reset after each buffer in
2278           the unit test.
2279
2280 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2281
2282         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
2283           Further fine-tuning: don't absolutely require sequence or GOP headers
2284           (as introduced in the previous commit), but adjust the typefind
2285           probabilities returned accordingly if we don't see them. Also make sure
2286           picture header and first slice are somewhat close to each other (which
2287           is not perfect but still better than requiring a fixed offset or having
2288           no limit at all).
2289
2290 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2291
2292         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2293         (gst_basertppayload_sink_setcaps),
2294         (gst_basertppayload_sink_getcaps):
2295         Rename the setcaps/getcaps function internally to make it clear that
2296         they are called for the sink pad.
2297
2298 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2299
2300         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2301         (gst_base_rtp_depayload_class_init),
2302         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
2303         (gst_base_rtp_depayload_packet_lost),
2304         (gst_base_rtp_depayload_set_gst_timestamp):
2305         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2306         Catch packet-lost events from the jitterbuffer and convert them into a
2307         vmethod call (lost-packet) so that depayloaders can do something smart.
2308         Also add a default packet-lost function that sends out a segment update
2309         to the decoders.
2310
2311 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
2312
2313         * gst/playback/test4.c:
2314         * gst/playback/test5.c:
2315         * gst/playback/test6.c:
2316         * gst/playback/test7.c:
2317           Also include config.h when relying on defines from it. Fixes the
2318           build. Its been a please to serve :)
2319
2320 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
2321
2322         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
2323         (paint_setup_NV21), (paint_hline_NV12_NV21):
2324         Add support for NV12 and NV21 in videotestsrc
2325
2326 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
2327
2328         * gst/videoscale/gstvideoscale.c:
2329         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
2330         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
2331         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
2332         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
2333         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
2334         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
2335         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
2336         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
2337         (vs_image_scale_linear_RGB555):
2338         Support 1x1 images as input and output as for example the BBC HQ new
2339         streams have 1x1 GIFs in the playlists for some reason.
2340
2341 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2342
2343         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
2344           (try_to_link_1):
2345           If we can't activate one of the decoders we plugged in (such as,
2346           say, musepackdec) for some reason (it might not support push mode,
2347           for example), remove any pad probes that close_pad_link() might
2348           have set up. This makes sure we later don't try to remove a probe
2349           for a pad that doesn't exist any longer, and avoids nast warnings
2350           and probably other things too.
2351
2352 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2353
2354         * gst/typefind/gsttypefindfunctions.c:
2355           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
2356           (plugin_init):
2357           Rework mpeg video stream typefinding a bit more: make sure sequence,
2358           GOP, picture and slice headers appear in the order they should and
2359           that we've in fact at least had one of each; fix picture header
2360           detection; decouple picture and slice header check - don't assume
2361           they're at a fixed offset, there may be extra data in between. Also,
2362           announce varying degrees of probability depending on what we found
2363           exactly (multiple pictures, at least one picture, just sequence and
2364           GOP headers). Finally, in _ensure_data(), take into account that we
2365           might be typefinding smaller amounts of data, such as the first
2366           buffer of a stream, so fall back to the minimum size needed as long
2367           as that's available, instead of erroring out if there's less than
2368           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
2369           fuzzed file from #399342 as valid.
2370
2371 2008-04-30  Michael Smith <msmith@songbirdnest.com>
2372
2373         * ext/theora/theoradec.c:
2374           Cool kids don't divide by zero.
2375           Treat PAR of x:0 as 1:1.
2376           Fixes #530719.
2377
2378 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2379
2380         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
2381           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
2382           (mpeg_video_stream_type_find):
2383           Refactor a bit: use context structure to track parsing offset and
2384           size of available data and make the code a bit clearer. Fixes bad
2385           memory access in #356937.
2386
2387 2008-04-28  Michael Smith <msmith@songbirdnest.com>
2388
2389         * gst/playback/test4.c:
2390         * gst/playback/test5.c:
2391         * gst/playback/test6.c:
2392         * gst/tcp/gstmultifdsink.c:
2393           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
2394           is defined.
2395
2396 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2397
2398         * gst-libs/gst/audio/gstbaseaudiosink.h:
2399         Clarify some docs.
2400
2401         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
2402         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
2403         (gst_base_audio_src_set_slave_method),
2404         (gst_base_audio_src_get_slave_method),
2405         (gst_base_audio_src_set_property),
2406         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
2407         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2408         Add property and methods for selecting the clock slave method in the
2409         source, like in the sink.
2410         We only implement "none" and "re-timestamp" for now.
2411         API: gst_base_audio_src_set_slave_method()
2412         API: gst_base_audio_src_get_slave_method()
2413
2414 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2415
2416         * gst-libs/gst/rtp/gstrtpbuffer.c:
2417         Fix the docs about the seqnum compare function, it returns a difference.
2418
2419 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
2420
2421         * ext/alsa/gstalsadeviceprobe.c:
2422         (gst_alsa_get_device_list): Don't return before freeing up
2423         the allocated structures.
2424
2425 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
2426
2427         * gst/playback/gstplaybin.c:
2428           Remove obsolete streaminfo code and fix a leak. Fixes #529546
2429
2430 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2431
2432         * ext/ogg/gstoggdemux.c:
2433           Revert the event part, that should not go in.
2434
2435 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2436
2437         * ext/ogg/gstoggdemux.c:
2438           Don't leak GstPluginFeatures when filtering.
2439
2440 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2441
2442         * sys/xvimage/xvimagesink.c:
2443           Add some logging for cases when grabbing the xv failed.
2444
2445 2008-04-21  David Schleef  <ds@schleef.org>
2446
2447         * ext/ogg/gstoggmux.c:
2448           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
2449           packet.  Should conform to what we currently think is the
2450           final Ogg/Dirac muxing spec.
2451
2452 2008-04-21  David Schleef  <ds@schleef.org>
2453
2454         * sys/xvimage/xvimagesink.c:
2455           Fix typo that causes the overlay keying color to bright green
2456           on a 16-bit display.  Dark grey good.  Bright green bad.
2457
2458 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
2459
2460         * ext/gnomevfs/gstgnomevfsuri.c:
2461           Add  FIXME comment about using uri-list for source and sink.
2462
2463 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2464
2465         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2466         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
2467         vaargs functions to gint. Otherwise the fractions will get 0 set
2468         instead of the correct value on big endian systems. Fixes bug #529018.
2469
2470 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2471
2472         * ext/gnomevfs/gstgnomevfssink.c:
2473         (gst_gnome_vfs_sink_uri_get_protocols):
2474         * ext/gnomevfs/gstgnomevfssrc.c:
2475         (gst_gnome_vfs_src_uri_get_protocols):
2476         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
2477         (gst_gnomevfs_get_supported_uris):
2478         Get the list of supported URI schemes in a threadsafe way and use the
2479         same list for the source and sink.
2480
2481 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2482
2483         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
2484         (gst_gio_get_supported_protocols):
2485         Don't generate a new supported protocols list on each call but cache
2486         it. It's supposed to be static anyway, this way we only leak it once
2487         per process.
2488
2489         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
2490         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
2491         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
2492         (gst_gio_sink_start):
2493         * ext/gio/gstgiosink.h:
2494         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
2495         (gst_gio_src_class_init), (gst_gio_src_finalize),
2496         (gst_gio_src_set_property), (gst_gio_src_get_property),
2497         (gst_gio_src_start):
2498         * ext/gio/gstgiosrc.h:
2499         API: Add "file" properties where one can set a GFile as
2500         source/destination.
2501
2502         Add locking to the properties and use
2503         gst_element_class_set_details_simple() instead of a static
2504         GstElementDetails struct.
2505
2506 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2507
2508         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
2509         (plugin_init):
2510         Add "mpp" and "mp+" as possible extensions for MusePack files.
2511
2512         Add typefinding for MusePack StreamVersion 8 files and include the
2513         stream version in the caps.
2514
2515 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2516
2517         * gst-libs/gst/rtp/gstrtppayloads.c:
2518         (gst_rtp_payload_info_for_name):
2519         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
2520
2521 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
2522
2523         * configure.ac:
2524           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
2525           (NB: this only affects compilation of some of the examples).
2526           Remove some configure.ac cruft that's not needed any longer.
2527
2528 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
2529
2530         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
2531         Don't validate the payload if there isn't any.
2532         Fixes #525915
2533
2534 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2535
2536         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
2537         Use g_atomic_int_set() instead of gst_atomic_int_set().
2538
2539 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2540
2541         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
2542         Return NULL instead of a gchar * array with one NULL element if we
2543         don't get any supported URI schemes from GIO.
2544
2545 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2546
2547         * gst/audiotestsrc/gstaudiotestsrc.c:
2548           Remove cpp style commented old code.
2549
2550 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2551
2552         * gst/playback/gstdecodebin2.c:
2553           Fix signal docs.
2554
2555 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
2556
2557         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
2558           (gst_text_overlay_init):
2559           Fix textoverlay unit test again by making the supposed default
2560           value for the wait-text property the actual default value.
2561           Also fix Since: tag for new property.
2562
2563 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
2564
2565         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
2566           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
2567           (gst_video_format_get_pixel_stride),
2568           (gst_video_format_get_component_width),
2569           (gst_video_format_get_component_height),
2570           (gst_video_format_get_component_offset), (gst_video_format_get_size),
2571           (gst_video_format_convert):
2572           Add guards to these functions to ensure sane input values.
2573
2574         * tests/check/libs/video.c:
2575           Fix unit test not to create caps with width=0 and height=0.
2576
2577 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
2578
2579         * docs/design/draft-keyframe-force.txt:
2580         Fix typo.
2581
2582         * gst/playback/gstqueue2.c: (update_buffering),
2583         (gst_queue_handle_src_query):
2584         Set buffering mode in the messages.
2585         Set buffering percent in the query.
2586
2587         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
2588         (do_stream_buffering), (do_download_buffering), (msg_buffering):
2589         Do some more fancy things based on the buffering method in use.
2590
2591 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2592
2593         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
2594         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
2595         (msg_buffering), (main):
2596         Add basic download reports to seek using the new buffering API.
2597
2598 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2599
2600         * gst/playback/gstqueue2.c: (update_buffering),
2601         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
2602         (gst_queue_src_checkgetrange_function):
2603         Include extra buffering stats in the buffering message.
2604         Implement BUFFERING query.
2605
2606         * gst/playback/gsturidecodebin.c: (do_async_start),
2607         (do_async_done), (type_found), (setup_streaming), (setup_source),
2608         (gst_uri_decode_bin_change_state):
2609         Only add decodebin2 when the type is found in streaming mode.
2610         Make uridecodebin async to PAUSED even when we don't have decodebin2
2611         added yet.
2612
2613 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
2614
2615         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
2616         Filter cdda from the supported URI schemes. We can't support
2617         musicbrainz tags and everything else one expects from a cdda source
2618         with GIO. Fixes bug #526794.
2619
2620 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
2621
2622         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
2623         (gst_xvimagesink_buffer_alloc):
2624         Fix calculation of 'expected size' for YV12 buffers.
2625         Be a little more verbose in the debug output for buffer-alloc'ed
2626         buffers which turn out to have the wrong size.
2627
2628 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
2629
2630         * NEWS:
2631         * RELEASE:
2632         * gst-plugins-base.doap:
2633           Merge other changes from 0.10.19 release branch.
2634
2635 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
2636
2637         * gst-libs/gst/audio/gstbaseaudiosink.c:
2638           (gst_base_audio_sink_class_init):
2639         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2640           (gst_base_audio_src_class_init):
2641         * gst/playback/gstplayback.c: (plugin_init):
2642         * gst/volume/gstvolume.c: (plugin_init):
2643           Work around missing bits of thread-safety on older GLibs some
2644           more to avoid assertions when starting up multiple playbin
2645           objects concurrently (see #512382).
2646
2647 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
2648
2649         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
2650           Remove some more fields.
2651
2652 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
2653
2654         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2655
2656         * configure.ac:
2657         Actually build dlls when cross-compiling with mingw32.
2658         Fixes bug #526247.
2659
2660 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
2661
2662         * configure.ac:
2663           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
2664
2665 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2666
2667         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
2668         (msg_buffering), (connect_bus_signals), (main):
2669         Add statusbar.
2670         Add buffering support with feedback in the statusbar.
2671
2672 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
2673
2674         * ext/ogg/gstoggmux.c:
2675           Fix sample pipeline description.
2676
2677 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
2678
2679         * docs/plugins/Makefile.am:
2680         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2681         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
2682         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2683           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
2684
2685         * docs/plugins/gst-plugins-base-plugins.args:
2686         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2687         * docs/plugins/gst-plugins-base-plugins.interfaces:
2688         * docs/plugins/gst-plugins-base-plugins.prerequisites:
2689         * docs/plugins/inspect/plugin-adder.xml:
2690         * docs/plugins/inspect/plugin-alsa.xml:
2691         * docs/plugins/inspect/plugin-audioconvert.xml:
2692         * docs/plugins/inspect/plugin-audiorate.xml:
2693         * docs/plugins/inspect/plugin-audioresample.xml:
2694         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2695         * docs/plugins/inspect/plugin-cdparanoia.xml:
2696         * docs/plugins/inspect/plugin-decodebin.xml:
2697         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2698         * docs/plugins/inspect/plugin-gdp.xml:
2699         * docs/plugins/inspect/plugin-gnomevfs.xml:
2700         * docs/plugins/inspect/plugin-libvisual.xml:
2701         * docs/plugins/inspect/plugin-ogg.xml:
2702         * docs/plugins/inspect/plugin-pango.xml:
2703         * docs/plugins/inspect/plugin-playback.xml:
2704         * docs/plugins/inspect/plugin-queue2.xml:
2705         * docs/plugins/inspect/plugin-subparse.xml:
2706         * docs/plugins/inspect/plugin-tcp.xml:
2707         * docs/plugins/inspect/plugin-theora.xml:
2708         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2709         * docs/plugins/inspect/plugin-uridecodebin.xml:
2710         * docs/plugins/inspect/plugin-video4linux.xml:
2711         * docs/plugins/inspect/plugin-videorate.xml:
2712         * docs/plugins/inspect/plugin-videoscale.xml:
2713         * docs/plugins/inspect/plugin-videotestsrc.xml:
2714         * docs/plugins/inspect/plugin-volume.xml:
2715         * docs/plugins/inspect/plugin-vorbis.xml:
2716         * docs/plugins/inspect/plugin-ximagesink.xml:
2717         * docs/plugins/inspect/plugin-xvimagesink.xml:
2718           Update introspection data.
2719
2720         * ext/ogg/gstoggmux.c:
2721           Document oggmux.
2722
2723         * gst/playback/gstdecodebin2.c:
2724           Don't use gtk-doc style comment start for private stuff, but make it
2725           formatted like this for consistency.
2726
2727 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2728
2729         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
2730         (gst_decode_bin_init), (gst_decode_bin_dispose),
2731         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
2732         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
2733         (analyze_new_pad), (connect_pad), (expose_pad),
2734         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
2735         (gst_decode_group_expose), (gst_decode_group_free),
2736         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
2737         Remove fakesink hack, we can now implement this more elegantly.
2738         Added property to bypass typefinding.
2739         Removed underrun callback and demuxer pad probe, we now use the srcpad
2740         probe to expose groups.
2741         API::sink-caps property
2742
2743         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
2744         Guard against multiple emissions of the no_more_pads signal, which
2745         happens when we are dealing with chained oggs.
2746
2747         * gst/playback/gsturidecodebin.c: (remove_decoders),
2748         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
2749         (setup_source):
2750         For streams, use our own typefind element and plug our queue after it.
2751         We will need this to determine the type of buffering to use for the
2752         queue soon.
2753
2754 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2755
2756         * gst-libs/gst/audio/gstbaseaudiosink.c:
2757         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
2758         Guard against over and underflows because of clock slaving.
2759         When we are using our own clock, still compensate for any calibrations
2760         that we might have done to our clock.
2761
2762 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2763
2764         * ext/theora/theoradec.c: (theora_handle_type_packet),
2765         (theora_dec_chain):
2766         Don't try to do anything fancy with the return code from pushing an
2767         event, it does not have enough information to turn it into a
2768         GST_FLOW_ERROR.
2769
2770 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2771
2772         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
2773         (gst_ogg_demux_chain_elem_pad):
2774         Add small debug line.
2775         Pass return code from the internal decoder instead of the too generic
2776         GST_FLOW_ERROR.
2777
2778 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
2779
2780         * gst-libs/gst/cdda/Makefile.am:
2781         * gst-libs/gst/cdda/base64.c:
2782         * gst-libs/gst/cdda/base64.h:
2783         * gst-libs/gst/cdda/gstcddabasesrc.c:
2784         (gst_cddabasesrc_calculate_musicbrainz_discid):
2785         Use GLib's base64 implementation instead of our own.
2786
2787 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2788
2789         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
2790         (gst_ogg_demux_read_chain):
2791         Refix oggdemux, we only have a problem if we failed to find a chain and
2792         we are not EOF.
2793
2794 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2795
2796         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
2797
2798         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
2799         (gst_ogg_demux_read_chain):
2800         When we fail to find a BOS page and we and up with no chain, error out
2801         properly instead of segfaulting. Fixes #525665.
2802
2803 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2804
2805         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
2806         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
2807         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
2808         no-more-pads...
2809
2810 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2811
2812         * gst/playback/gstqueue2.c: (update_out_rates),
2813         (gst_queue_open_temp_location_file),
2814         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
2815         (gst_queue_handle_src_query), (gst_queue_set_property):
2816         Update the estimated input data when we push out a buffer.
2817         Add some debug info about the temp file.
2818         Only forward src events when we are not using a temp file.
2819         Don't block the duration query, we need to find something better.
2820         Don't leak the temp filename.
2821
2822 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
2823
2824         * configure.ac:
2825         Require GLib 2.12 and liboil 0.3.14.
2826
2827         * gst/volume/gstvolume.c: (volume_process_double):
2828         Unconditionally use liboil 0.3.14 function.
2829
2830 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
2831
2832         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
2833         ms-gsm can have arbitrarty sample rates. See #481354.
2834
2835 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2836
2837         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2838         MP4S is generic MPEG-4, not a microsoft variant.
2839
2840 2008-03-27  Michael Smith <msmith@fluendo.com>
2841
2842         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
2843           Check the body CRC (if set) when depayloading.
2844           Fixes #522401.
2845
2846 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
2847
2848         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
2849           Fix Since: version for new property.
2850
2851 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2852
2853         * gst-libs/gst/rtsp/gstrtspconnection.c:
2854         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
2855         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
2856         Don't error when poll_wait returns EAGAIN.
2857
2858 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2859
2860         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
2861         The queue is never filled when there are no buffers in the queue at all.
2862         Fixes #523993.
2863
2864 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2865
2866         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
2867         (init_group), (free_group), (gst_play_bin_init),
2868         (gst_play_bin_finalize), (gst_play_bin_set_uri),
2869         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
2870         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
2871         (gst_play_bin_set_current_video_stream),
2872         (gst_play_bin_set_current_audio_stream),
2873         (gst_play_bin_set_current_text_stream),
2874         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
2875         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
2876         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
2877         (activate_group), (deactivate_group), (setup_next_source),
2878         (save_current_group), (gst_play_bin_change_state):
2879         Update some docs.
2880         Add new locks and conds to protect pipeline creation and group
2881         switching.
2882         Implement the sub-uri property.
2883         Keep track of pending uridecodebin creation and configure the output
2884         pipeline after all streams are configured.
2885         Propagate subtitle encoding to the uridecodebins.
2886         Implement getting the video/audio/visualisation elements.
2887         Use input-selector for stream switching.
2888         If we are asked to do visualisation, prefer to autoplug raw sinks
2889         instead of sinks that accept encoded data.
2890
2891 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2892
2893         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
2894         (gst_play_sink_init), (gst_play_sink_dispose),
2895         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
2896         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
2897         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
2898         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
2899         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
2900         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
2901         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
2902         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
2903         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
2904         * gst/playback/gstplaysink.h:
2905         Add methods to get audio/video/vis elements.
2906         Add methods to set the font description for the overlay.
2907         Remove properties, we're using this element with its methods only.
2908         Add support for subtitles.
2909         Rearrange the locking a bit to not use the object lock for protecting
2910         the pipeline construction.
2911         Try to use the volume and mute property on the sink when its available.
2912         Implement the mute option with volume when the sink does not have a mute
2913         property.
2914         Only add volume element when the sink has no volume property.
2915         Only do visualisations with raw audio pads.
2916
2917 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2918
2919         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
2920         (gst_text_overlay_init), (gst_text_overlay_set_property),
2921         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
2922         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
2923         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2924         (gst_text_overlay_change_state):
2925         * ext/pango/gsttextoverlay.h:
2926         Add property to configure waiting for text on the textpad or not, with
2927         the default behaviour being the old one (always wait for text before
2928         rendering the video). This default behaviour is usually not the best one
2929         because the text stream can very sparse and could require queueing a lot
2930         of video.
2931         Fix the flushing and EOS handing so that we don't mix up their meaning.
2932
2933 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2934
2935         * gst/playback/gsturidecodebin.c:
2936         (gst_uri_decode_bin_autoplug_factories),
2937         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
2938         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
2939         (gst_uri_decode_bin_set_property),
2940         (gst_uri_decode_bin_get_property), (no_more_pads_full),
2941         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
2942         (proxy_autoplug_factories_signal), (make_decoder),
2943         (source_new_pad), (setup_source):
2944         Add a readonly source property and notify.
2945         Add new lock for protecting the construction of the pipeline.
2946         Keep track of the decodebins we plugged.
2947         Correctly proxy the autoplug signal so that it actually continues.
2948         Proxy subtitle-encoding to the decodebins.
2949
2950 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2951
2952         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
2953         (text_toggle_cb), (update_streams), (main):
2954         Rearrange some buttons in playbin2 and make some other boxes insensitive
2955         when needed.
2956         Add language codes to subtitle selection boxes when we gind the right
2957         tags for the streams.
2958
2959 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2960
2961         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
2962         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
2963         (gst_decode_bin_set_subs_encoding),
2964         (gst_decode_bin_get_subs_encoding),
2965         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
2966         (deactivate_free_recursive):
2967         Protect caps property with the object lock.
2968         Protect encoding property with the object lock.
2969         Keep list of elements we added that have the subtitle-encoding property.
2970         Distribute the subtitle-encoding to all of the elements when it
2971         changes.
2972
2973 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
2974
2975         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
2976         Small debug improvement.
2977
2978         * gst-libs/gst/audio/gstbaseaudiosink.c:
2979         (gst_base_audio_sink_render):
2980         Fix bug in determining the sample start/stop position, we want to base
2981         this decision on the fact that we are going forwards or backwards, not
2982         slower or faster. This fixes some ugly resync warnings when playing at
2983         very slow speeds.
2984
2985 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
2986
2987         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
2988         Correctly set the supported URI schemes and don't leave
2989         some schemes in the middle or at the start at NULL.
2990
2991 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
2992
2993         * tests/check/elements/gdpdepay.c:
2994           Make test compile without unused function/variable warnings on PPC.
2995  
2996 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
2997
2998         * configure.ac:
2999         * ext/alsa/gstalsamixerelement.c:
3000         (gst_alsa_mixer_element_class_init):
3001         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
3002         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
3003         * ext/cdparanoia/gstcdparanoiasrc.c:
3004         (gst_cd_paranoia_src_class_init):
3005         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
3006         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
3007         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
3008         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
3009         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
3010         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
3011         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
3012         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3013         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
3014         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
3015         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
3016         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
3017         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
3018         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3019         (gst_audio_filter_template_class_init):
3020         * gst-libs/gst/audio/gstbaseaudiosink.c:
3021         (gst_base_audio_sink_class_init):
3022         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3023         (gst_base_audio_src_class_init):
3024         * gst-libs/gst/cdda/gstcddabasesrc.c:
3025         (gst_cdda_base_src_class_init):
3026         * gst-libs/gst/interfaces/mixertrack.c:
3027         (gst_mixer_track_class_init):
3028         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3029         (gst_base_rtp_depayload_class_init):
3030         * gst-libs/gst/rtp/gstbasertppayload.c:
3031         (gst_basertppayload_class_init):
3032         * gst/audioconvert/gstaudioconvert.c:
3033         (gst_audio_convert_class_init):
3034         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
3035         * gst/audioresample/gstaudioresample.c:
3036         (gst_audioresample_class_init):
3037         * gst/audiotestsrc/gstaudiotestsrc.c:
3038         (gst_audio_test_src_class_init):
3039         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
3040         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
3041         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3042         (preroll_unlinked):
3043         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
3044         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
3045         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
3046         * gst/playback/gstqueue2.c: (gst_queue_class_init):
3047         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
3048         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
3049         (gst_stream_selector_class_init):
3050         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
3051         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
3052         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3053         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
3054         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
3055         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
3056         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
3057         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
3058         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
3059         * gst/videotestsrc/gstvideotestsrc.c:
3060         (gst_video_test_src_class_init):
3061         * gst/volume/gstvolume.c: (gst_volume_class_init):
3062         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
3063         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
3064         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
3065         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
3066         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
3067         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
3068         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
3069         static strings (i.e. all). This gives us less memory usage,
3070         fewer allocations and thus less memory defragmentation. Depend
3071         on core CVS for this. Fixes bug #523806.
3072
3073 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3074
3075         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3076         Filter http and https protocols. GIO/GVfs handles them but it's
3077         impossible to implement iradio/icecast with it. Better use
3078         souphttpsrc or something else for this.
3079
3080         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
3081         If getting the file informations by a query fails try it with the
3082         seek-to-end trick too.
3083
3084 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3085
3086         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
3087         (gst_volume_base_init), (gst_volume_class_init),
3088         (volume_process_double), (volume_process_float),
3089         (volume_transform_ip), (plugin_init):
3090         memset buffers to zero if we get a GAP buffer. We usually see a
3091         buffer as one unit so let's handle it as one and don't care about
3092         volume changes while processing one buffer.
3093         Also clean up some stuff a bit.
3094
3095 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3096
3097         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
3098         (gst_audio_convert_create_silence_buffer),
3099         (gst_audio_convert_transform):
3100         Make audioconvert GAP-aware by outputting silence buffers when the
3101         input has the GAP flag set. This is up to 8x faster.
3102         Based on a patch by Stefan Kost. Fixes bug #517813.
3103
3104 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3105
3106         * gst/volume/gstvolume.c: (volume_process_double):
3107         Use oil_scalarmultiply_f64_ns() for double processing when it's
3108         available at compile time.
3109
3110 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3111
3112         * configure.ac:
3113         Fix lrint/lrintf checks to actually work. These functions are
3114         in libm on Linux at least so try to link to it.
3115
3116 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
3117
3118         * configure.ac:
3119         Back to development - 0.10.18.1
3120
3121 === release 0.10.18 ===
3122
3123 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
3124
3125         * configure.ac:
3126           releasing 0.10.18, "I will follow"
3127
3128 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
3129
3130         * configure.ac:
3131         * win32/common/config.h:
3132         0.10.17.4 pre-release
3133
3134 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3135
3136         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
3137         Use GST_STR_NULL when trying to print strings that could be NULL because
3138         this might crash on some platforms. See #520808.
3139
3140 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3141
3142         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3143
3144         * gst-libs/gst/rtsp/gstrtspconnection.c:
3145         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3146         (read_line), (gst_rtsp_connection_read_internal):
3147         Generic Windows fixes that makes libgstrtsp work on Windows when
3148         coupled with the new GstPoll API. See #520808.
3149
3150 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
3151
3152         Patch by: Milosz Derezynski <internalerror at gmail dot com>
3153
3154         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
3155           If seeking to a new position succeeds don't simply return from
3156           create() without creating a buffer. Do this only in the case
3157           seeking to the new position fails. Fixes bug #523054.
3158
3159 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
3160
3161         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
3162           (gst_video_format_from_rgba32_masks):
3163           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
3164           (#522635).
3165
3166         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
3167           Add unit test for the RGB caps parsing and creation, checking for
3168           internal consistency of the new API and consistency of the API with
3169           the old GST_VIDEO_CAPS_* defines.
3170
3171 2008-03-14  David Schleef  <ds@schleef.org>
3172
3173         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
3174           because -base is in freeze.
3175
3176 2008-03-14  David Schleef  <ds@schleef.org>
3177
3178         Patch by: William M. Brack
3179
3180         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
3181
3182 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3183
3184         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
3185         (gst_selector_pad_chain):
3186         * gst/playback/gststreamselector.h:
3187         Revert change that caused regression until a real fix is found.
3188         Fixes #522203.
3189
3190 2008-03-12  Michael Smith <msmith@fluendo.com>
3191
3192         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
3193         * gst-libs/gst/audio/gstringbuffer.h:
3194           Rename recently added buffer types to make more sense.
3195         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
3196         (gst_alsasink_write):
3197           Adapt for above API changes.
3198           Fixes bug #520523.
3199
3200 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
3201
3202         * win32/common/libgstnetbuffer.def:
3203         Add new symbol gst_netaddress_equal. Fixes bug #521743.
3204
3205 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
3206
3207         * configure.ac:
3208         * win32/common/config.h:
3209         0.10.17.3 pre-release
3210
3211 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3212
3213         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3214         (gst_base_audio_src_create):
3215         Fix duration when no clock was provided. Fixes #520300.
3216
3217 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3218
3219         Patch by: Olivier Crete  <tester at tester ca>
3220
3221         * docs/libs/gst-plugins-base-libs-sections.txt:
3222         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
3223         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3224         Add trivial function to compare GstNetAddress. See #520626.
3225         API: GstNetBuffer::gst_netaddress_equal
3226
3227 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3228
3229         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3230         Update mode property docs, it's deprecated now.
3231
3232 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3233
3234         * gst-libs/gst/rtsp/gstrtspconnection.c:
3235         (gst_rtsp_connection_create):
3236         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
3237         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
3238         * gst/tcp/gstmultifdsink.h:
3239         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
3240         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
3241         Remove GstPollMode from gstpoll constructor.
3242
3243 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
3244
3245         * configure.ac:
3246         * win32/common/config.h:
3247         0.10.17.2 pre-release
3248
3249 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
3250
3251         * gst/Makefile.am:
3252         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
3253         them twice
3254
3255         * win32/common/libgstinterfaces.def:
3256         * win32/common/libgstrtp.def:
3257         Add new API to the defs
3258
3259 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3260
3261         Patch by: Mersad Jelacic  <mersad at axis dot com>
3262
3263         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3264         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3265         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
3266         possible to specify the sample size in bits. (#509637)
3267
3268 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3269
3270         * tests/check/libs/mixer.c:
3271           Add a few simple checks for the new message types.
3272
3273 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3274
3275         * docs/libs/gst-plugins-base-libs-sections.txt:
3276         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
3277           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
3278           (gst_mixer_message_get_type),
3279           (gst_mixer_message_parse_option_changed),
3280           (gst_mixer_message_parse_options_list_changed):
3281         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
3282           (GST_MIXER_MESSAGE_OPTION_CHANGED),
3283           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
3284           (GST_MIXER_MESSAGE_MIXER_CHANGED):
3285           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
3286           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
3287
3288 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3289
3290         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
3291           (gst_mixer_options_get_values):
3292         * gst-libs/gst/interfaces/mixeroptions.h:
3293           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
3294           (_GstMixerOptions), (_GstMixerOptionsClass):
3295           API: add GstMixerOptions::get_values vfunc (#519906)
3296
3297 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3298
3299         * configure.ac:
3300         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
3301         plug-ins are included/excluded. (#498222)
3302
3303 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
3304
3305         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3306         Add typefinder for IMelody files, using audio/x-imelody.
3307         See bug #519516.
3308
3309 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
3310
3311         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
3312         * ext/alsa/gstalsasink.c: (set_hwparams):
3313         * ext/alsa/gstalsasrc.c: (set_hwparams):
3314         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
3315         * ext/ogg/gstoggmux.h:
3316         * ext/ogg/gstogmparse.c:
3317         * gst-libs/gst/audio/audio.c:
3318         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
3319         * gst-libs/gst/pbutils/missing-plugins.c:
3320         (gst_missing_uri_sink_message_new),
3321         (gst_missing_element_message_new),
3322         (gst_missing_decoder_message_new),
3323         (gst_missing_encoder_message_new):
3324         * gst-libs/gst/rtp/gstbasertppayload.c:
3325         * gst-libs/gst/rtp/gstrtcpbuffer.c:
3326         (gst_rtcp_packet_bye_get_reason):
3327         * gst/audioconvert/gstaudioconvert.c:
3328         * gst/audioresample/gstaudioresample.c:
3329         * gst/ffmpegcolorspace/imgconvert.c:
3330         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
3331         * gst/typefind/gsttypefindfunctions.c:
3332         * gst/videoscale/vs_4tap.c:
3333         * gst/videoscale/vs_4tap.h:
3334         * sys/v4l/gstv4lelement.c:
3335         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
3336         * sys/v4l/v4l_calls.c:
3337         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
3338         (gst_v4lsrc_try_capture):
3339         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
3340         (gst_ximagesink_ximage_new):
3341         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
3342         (gst_xvimagesink_xvimage_new):
3343         * tests/check/elements/audioconvert.c:
3344         * tests/check/elements/audioresample.c:
3345         (fail_unless_perfect_stream):
3346         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
3347         * tests/check/elements/decodebin.c:
3348         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
3349         (setup_gdpdepay_streamheader):
3350         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
3351         (setup_gdppay_streamheader):
3352         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
3353         * tests/check/elements/multifdsink.c: (setup_multifdsink):
3354         * tests/check/elements/textoverlay.c:
3355         * tests/check/elements/videorate.c: (setup_videorate):
3356         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
3357         * tests/check/elements/volume.c: (setup_volume):
3358         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
3359         * tests/check/elements/vorbistag.c:
3360         * tests/check/generic/clock-selection.c:
3361         * tests/check/generic/states.c: (setup), (teardown):
3362         * tests/check/libs/cddabasesrc.c:
3363         * tests/check/libs/video.c:
3364         * tests/check/pipelines/gio.c:
3365         * tests/check/pipelines/oggmux.c:
3366         * tests/check/pipelines/simple-launch-lines.c:
3367         (simple_launch_lines_suite):
3368         * tests/check/pipelines/streamheader.c:
3369         * tests/check/pipelines/theoraenc.c:
3370         * tests/check/pipelines/vorbisdec.c:
3371         * tests/check/pipelines/vorbisenc.c:
3372         * tests/examples/seek/scrubby.c:
3373         * tests/examples/seek/seek.c: (query_positions_elems),
3374         (query_positions_pads):
3375         * tests/icles/stress-xoverlay.c: (myclock):
3376         Correct all relevant warnings found by the sparse semantic code
3377         analyzer. This include marking several symbols static, using
3378         NULL instead of 0 for pointers and using "foo (void)" instead
3379         of "foo ()" for declarations.
3380
3381         * win32/common/libgstrtp.def:
3382         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
3383
3384 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3385
3386         Patch by: José Alburquerque <jaalburqu svn gnome org>
3387
3388         * gst/playback/gstplaybin2.c:
3389           Make the function signature of the _get_*_tags() functions match
3390           the signature of the vfuncs they implement, ie. return a
3391           GstTagList rather than a GstStructure, which is more correct,
3392           even if one is typedef'ed to the other (#518940).
3393
3394 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3395
3396         * gst-libs/gst/rtsp/gstrtspconnection.c:
3397           Don't include unix headers unconditionally (fixes #518037).
3398
3399 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3400
3401         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
3402           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
3403           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
3404           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
3405           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
3406           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
3407           (gst_video_format_is_packed), (video_format_is_packed):
3408           Add unit test that makes sure that the strides, offsets and
3409           sizes returned for the various YUV formats by the new video API
3410           match the old reference implementation in videotestsrc.
3411
3412 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3413
3414         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
3415           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
3416           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
3417           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
3418           (gst_video_format_get_pixel_stride),
3419           (gst_video_format_get_component_width),
3420           (gst_video_format_get_component_height),
3421           (gst_video_format_get_component_offset), (gst_video_format_get_size):
3422         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
3423           (GST_VIDEO_FORMAT_Y42B):
3424           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
3425
3426 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3427
3428         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
3429           YV12 is I420 with swapped components 1 and 2, so the offset of
3430           component 1 for I420 should be the offset for component 2 for YV12
3431           and vice versa.
3432
3433 2008-02-29  Rene Stadler  <mail@renestadler.de>
3434
3435         * sys/v4l/gstv4lelement.c:
3436         Add missing semicolon to fix indentation.
3437
3438 2008-02-29  Julien Moutte  <julien@fluendo.com>
3439
3440         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
3441         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
3442         if we can do SPDIF output.
3443         * ext/alsa/gstalsa.h:
3444         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
3445         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
3446         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
3447         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
3448         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
3449         to support AC3, EC3 and IEC958 buffers.
3450
3451 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
3452
3453         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
3454           (gst_mixer_message_parse_mute_toggled),
3455           (gst_mixer_message_parse_record_toggled),
3456           (gst_mixer_message_parse_volume_changed),
3457           (gst_mixer_message_parse_option_changed):
3458           De-cruft and fix message type assertions (NULL is not a really
3459           valid mixer message type string).
3460
3461 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3462
3463         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
3464         When negotiating, actually start from a format that we can support
3465         instead of from the too generic template.
3466
3467 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3468
3469         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
3470         Enable vis setting.
3471
3472         * gst/playback/gstplaysink.c: (gst_play_sink_init),
3473         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
3474         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
3475         (gen_vis_chain):
3476         Implement vis switching while playing.
3477
3478 2008-02-28  David Schleef  <ds@schleef.org>
3479
3480         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
3481
3482 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3483
3484         Patch by: Peter Kjellerstedt  <pkj at axis com>
3485
3486         * gst/tcp/Makefile.am:
3487         * gst/tcp/fdsetstress.c:
3488         * gst/tcp/gstfdset.c:
3489         * gst/tcp/gstfdset.h:
3490         Removed fdset and stress test, they are now known as GstPoll in
3491         core. 
3492
3493         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
3494         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
3495         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
3496         (gst_multi_fd_sink_handle_client_write),
3497         (gst_multi_fd_sink_queue_buffer),
3498         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
3499         (gst_multi_fd_sink_stop):
3500         * gst/tcp/gstmultifdsink.h:
3501         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
3502         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
3503         (gst_tcp_gdp_read_caps):
3504         * gst/tcp/gsttcp.h:
3505         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
3506         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
3507         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
3508         * gst/tcp/gsttcpclientsink.h:
3509         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
3510         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
3511         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
3512         * gst/tcp/gsttcpclientsrc.h:
3513         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
3514         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
3515         * gst/tcp/gsttcpserversink.h:
3516         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
3517         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
3518         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
3519         * gst/tcp/gsttcpserversrc.h:
3520         Port to GstPoll. See #505417.
3521
3522 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3523
3524         Patch by: Peter Kjellerstedt  <pkj at axis com>
3525
3526         * gst-libs/gst/rtsp/gstrtspconnection.c:
3527         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
3528         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
3529         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
3530         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
3531         (gst_rtsp_connection_flush):
3532         * gst-libs/gst/rtsp/gstrtspconnection.h:
3533         Use GstPoll for the rtsp connection. See #505417.
3534
3535 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3536
3537         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
3538         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
3539         Add combo box for visualisations, populate it with a factory list
3540         of all visualisation plugins, configure vis plugin instance in
3541         playbin2. 
3542
3543 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3544
3545         * tests/check/libs/rtp.c: (GST_START_TEST):
3546         Add check for RTP buffer defaults, padding and marker bit API.
3547
3548 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
3549
3550         * gst-libs/gst/cdda/sha1.c: (sha_transform):
3551         Use memcpy() instead of upcasting a byte array to long *. This
3552         fixes an unaligned memory access, resulting in SIGBUS on IA64.
3553         This should be ported to GCheckSum once we can use GLib 2.16.
3554         Partially fixes bug #500833.
3555
3556 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
3557
3558         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
3559           Push tag event after the newsegment event. Log the pointer of
3560           the buffer we're actually going to push rather than the buffer
3561           we're feeding to _make_metadata_writable().
3562
3563 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3564
3565         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3566         Comment smoke typefinder for now. The smokedec plugin needs one
3567         frame per buffer but we have no parser yet, thus it simply crashes
3568         in most situations.
3569
3570 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3571
3572         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3573         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
3574
3575 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3576
3577         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
3578         (plugin_init):
3579         Add midi typefinder, copied from the timidity plugin.
3580
3581 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
3582
3583         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
3584
3585         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
3586         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
3587           (subparse_suite):
3588           Forward slashes at the beginning and end of a line also signify
3589           italics (Fixes: #518162).
3590
3591 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
3592
3593         * tests/check/gst-plugins-base.supp:
3594         Add a suppression for a cached value in GIO that wasn't moved
3595         while moving gio from -bad to -base.
3596
3597 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
3598
3599         Patch by: Brian Cameron <brian dot cameron at sun dot com>
3600
3601         * configure.ac:
3602         Don't hardcode -Wall and -Werror for configure checks, this fails
3603         with non-GCC compilers. Fixes bug #517991.
3604
3605 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
3606
3607         * gst/audioconvert/gstaudioconvert.c:
3608         * gst/audioconvert/gstaudioquantize.c:
3609         * gst/audioconvert/gstaudioquantize.h:
3610           Make audioconvert gap aware. If noiseshaping is used, wait for
3611           noiseshaping to converge before marking as GAP. Fixes #517813.
3612
3613 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
3614
3615         * gst/audiotestsrc/gstaudiotestsrc.c:
3616           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
3617
3618 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
3619
3620         * ext/gnomevfs/gstgnomevfssink.c:
3621         (gst_gnome_vfs_sink_handle_event):
3622         Return FALSE when seeking for a new segment fails instead
3623         of silently ignoring the failure and appending every buffer
3624         that comes for the new segment.
3625
3626 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
3627
3628         * gst/playback/gstplaysink.c: (find_property),
3629         (gst_play_sink_find_property), (gen_video_chain),
3630         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
3631         Recursively search the sink element for a last-frame property so that we
3632         can also find the property in autovideosink and friends that don't
3633         always proxy the internal sink properties.
3634
3635 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
3636
3637         * gst-libs/gst/audio/multichannel.c:
3638           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
3639           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
3640           (gst_audio_set_structure_channel_positions_list),
3641           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
3642           (gst_audio_fixate_channel_positions):
3643           Fix confusing terminology in docs and code: structure fields are
3644           'fields' and not 'properties'.
3645
3646 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
3647
3648         * gst-libs/gst/audio/multichannel.c:
3649           (gst_audio_check_channel_positions), (add_list_to_struct):
3650           Give more useful warning messages if one of the channel
3651           layout enums passed to us is invalid and if the "channels"
3652           field in the caps has a GType we don't expect.
3653
3654 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
3655
3656         * gst-libs/gst/audio/multichannel.c:
3657           Fix typo in docs blurb.
3658
3659 2008-02-19  Julien Moutte  <julien@fluendo.com>
3660
3661         Patch by: Josep Torra Valles <josep@fluendo.com>
3662
3663         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
3664         typefind lookup to fix typefinding on HD clips.
3665
3666 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
3667
3668         * gst/playback/gstscreenshot.c:
3669         * gst/playback/gstscreenshot.h:
3670           Fix up copyright (I rewrote the GStreamer-0.10 code for
3671           this from scratch back in the days).
3672
3673 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
3674
3675         * gst/playback/Makefile.am:
3676         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
3677         (create_element), (gst_play_frame_conv_convert):
3678         * gst/playback/gstscreenshot.h:
3679         Add screenshot conversion code from totem.
3680
3681         * gst/playback/gstplay-marshal.list:
3682         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
3683         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
3684         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
3685         Implement frame property to get a color-unconverted snapshot.
3686         Implement convert-frame action signal to get a converted snapshot image.
3687         Configure connection speed in uridecodebin.
3688         Document some more properties.
3689
3690         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
3691         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
3692         (gst_play_sink_get_last_frame):
3693         * gst/playback/gstplaysink.h:
3694         Use last-buffer property of the video sink to get a video snapshot.
3695
3696         * tests/examples/seek/seek.c: (shot_cb), (main):
3697         Add snapshot button for playbin2 and use the frame property to save the
3698         frame as a png in the current directory.
3699
3700 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
3701
3702         Patch by: Josep Torra Valles <josep at fluendo dot com>
3703
3704         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
3705         (plugin_init):
3706         Add typefinding support for h264 elementary streams.
3707         Fixes bug #517420.
3708
3709 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
3710
3711         * configure.ac:
3712           Require CVS of core for new API in collectpads.
3713
3714         * gst/adder/gstadder.c:
3715           Use new API to make adder sparse stream aware.
3716
3717 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3718
3719         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
3720         (no_more_pads_cb):
3721         Get the object data correct so that we can remove our channels
3722         correctly.
3723
3724         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
3725         (gen_vis_chain), (gst_play_sink_reconfigure),
3726         (gst_play_sink_request_pad):
3727         Add option to disable async behaviour in the sinks when possible. This
3728         makes it possible to avoid an audio queue when dealing with
3729         visualisations.
3730         Add option to add a queue for the audio path.
3731
3732         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
3733         (main):
3734         Disable the vis checkbox to match the defaults of playbin2.
3735         Only get the stream info when we need to.
3736
3737 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
3738
3739         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
3740         (gst_gio_base_sink_set_stream):
3741         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
3742         (gst_gio_base_src_set_stream):
3743         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
3744         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
3745         Don't use async operations as they require a running main loop.
3746         This makes us block again when closing streams and unable
3747         to mount the enclosing volume of an URI if it isn't yet.
3748
3749 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
3750
3751         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
3752         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
3753         (gen_vis_chain), (gst_play_sink_reconfigure),
3754         (gst_play_sink_request_pad):
3755         Move tee in front of the audio and vis pipelines.
3756         Add queue for audio for now.
3757         Add visualisation support.
3758
3759         * tests/examples/seek/seek.c: (main):
3760         Visualisation is by default disabled.
3761
3762 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
3763
3764         * ext/gio/gstgiobasesink.c: (close_stream_cb):
3765         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
3766         Improve debugging a bit.
3767
3768         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
3769         * ext/gio/gstgiosink.h:
3770         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
3771         * ext/gio/gstgiosrc.h:
3772         Try to mount the enclosing volume of a GFile if it isn't mounted
3773         yet. This requires us to wait for an async operation to finish, done
3774         with an nested GMainLoop. Authentication is not supported yet, will
3775         come later.
3776
3777 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3778
3779         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
3780         (gst_play_bin_set_property), (gst_play_bin_get_property),
3781         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
3782         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
3783         (gst_play_sink_get_mute), (gen_audio_chain):
3784         * gst/playback/gstplaysink.h:
3785         Add mute property.
3786
3787         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
3788         (gst_selector_pad_chain):
3789         * gst/playback/gststreamselector.h:
3790         Make sure we forward the event only once.
3791
3792         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
3793         Add and implement the mute button for playbin2.
3794
3795 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3796
3797         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
3798
3799         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
3800         Add some more debug info.
3801         Make sure we never return a negative delay. Fixes #516246.
3802
3803 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
3804
3805         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
3806           Revert patch that makes the sink hold the object lock when
3807           calling snd_pcm_delay(), since it breaks playback for me.
3808
3809 2008-02-12  Julien Moutte  <julien@fluendo.com>
3810
3811         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
3812         some seek flags when changing rate.
3813
3814 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3815
3816         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3817         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
3818         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
3819         Fix potential leaks.
3820
3821         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
3822         Fix leak when there is no function configured.
3823
3824 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3825
3826         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
3827         (gst_v4lsrc_buffer_finalize):
3828         Correctly chain up the finalize method.
3829
3830 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3831
3832         * ext/gio/gstgiostreamsink.c:
3833         * ext/gio/gstgiostreamsrc.c:
3834         Add documentation and example code for giostreamsink/giostreamsrc.
3835
3836         * tests/check/pipelines/gio.c: (GST_START_TEST):
3837         Ask the GMemoryOutputStream for the data instead of assuming that
3838         the pointer to the data stayed the same. It could've been realloc'ed.
3839
3840 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3841
3842         * ext/gio/gstgiosink.c:
3843         * ext/gio/gstgiosrc.c:
3844         Make the documentation of giosink/giosrc complete, large parts
3845         are based on the gnomevfssink/gnomevfssrc docs.
3846
3847 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3848
3849         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3850         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3851         * docs/plugins/gst-plugins-base-plugins.args:
3852         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3853         * docs/plugins/gst-plugins-base-plugins.interfaces:
3854         * docs/plugins/gst-plugins-base-plugins.prerequisites:
3855         * docs/plugins/gst-plugins-base-plugins.signals:
3856         * docs/plugins/inspect/plugin-adder.xml:
3857         * docs/plugins/inspect/plugin-audioconvert.xml:
3858         * docs/plugins/inspect/plugin-audiorate.xml:
3859         * docs/plugins/inspect/plugin-audioresample.xml:
3860         * docs/plugins/inspect/plugin-decodebin.xml:
3861         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3862         * docs/plugins/inspect/plugin-gdp.xml:
3863         * docs/plugins/inspect/plugin-gio.xml:
3864         * docs/plugins/inspect/plugin-gnomevfs.xml:
3865         * docs/plugins/inspect/plugin-libvisual.xml:
3866         * docs/plugins/inspect/plugin-ogg.xml:
3867         * docs/plugins/inspect/plugin-pango.xml:
3868         * docs/plugins/inspect/plugin-playback.xml:
3869         * docs/plugins/inspect/plugin-queue2.xml:
3870         * docs/plugins/inspect/plugin-subparse.xml:
3871         * docs/plugins/inspect/plugin-theora.xml:
3872         * docs/plugins/inspect/plugin-uridecodebin.xml:
3873         * docs/plugins/inspect/plugin-videorate.xml:
3874         * docs/plugins/inspect/plugin-videoscale.xml:
3875         * docs/plugins/inspect/plugin-volume.xml:
3876         * docs/plugins/inspect/plugin-vorbis.xml:
3877         Add the GIO documentation again and while at that run make update.
3878
3879 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
3880
3881         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
3882         * ext/alsa/gstalsasink.c: (set_swparams):
3883         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
3884           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
3885           against libasound >= 1.0.16, since it's been deprecated in
3886           0.10.16, and alignment is always 1 then, apparently. (#512899)
3887
3888 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
3889
3890         * gst/playback/gstplaybin.c: (gen_audio_element):
3891         * gst/playback/gstplaysink.c: (gen_audio_chain):
3892           Handle case where we can't create the volume element a bit
3893           better (#514307).
3894
3895 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
3896
3897         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
3898         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
3899           Add support for https protocol. Fixes #510229.
3900
3901 2008-02-11  Julien Moutte  <julien@fluendo.com>
3902         
3903         Patch by: Alan Peevers <peeves@pacbell.net>
3904
3905         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
3906         lock when calling alsa methods.
3907
3908 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
3909
3910         * gst/typefind/gsttypefindfunctions.c:
3911           Bump rank of jpeg and png typefinders, which will return maximum
3912           probability in the most common cases (thus short-circuiting more
3913           expensive typefinders like the mp3 one for these two quite common
3914           image types).
3915
3916 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
3917
3918         * ext/theora/theoraparse.c:
3919         Fix long description of the theora parser to be more verbose than just
3920         the type name.
3921
3922 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
3923
3924         Patch by: Branko Čibej <brane at xbc dot nu>
3925
3926         * sys/xvimage/xvimagesink.c:
3927         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
3928         Fixes bug #515654.
3929
3930 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
3931
3932         * gst/playback/gstplaybasebin.c:
3933         Set is_dynamic as True if there are elements with both request
3934         and sometimes src pad templates instead of breaking out when it
3935         finds the first pad template that is a src.
3936
3937 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
3938
3939         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
3940         (update_streams), (video_combo_cb), (audio_combo_cb),
3941         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
3942         Add some stream switching and volume gui for playbin2.
3943
3944 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
3945
3946         * gst/playback/gstplay-marshal.list:
3947         Added marshal for streamselector Tags.
3948
3949         * gst/playback/gstplaybasebin.c: (set_active_source):
3950         Streamselector now selects pads based on the pad object instead of its
3951         name.
3952
3953         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
3954         (init_group), (gst_play_bin_init), (get_group), (get_tags),
3955         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
3956         (gst_play_bin_get_text_tags),
3957         (gst_play_bin_set_current_video_stream),
3958         (gst_play_bin_set_current_audio_stream),
3959         (gst_play_bin_set_current_text_stream),
3960         (gst_play_bin_set_property), (gst_play_bin_get_property),
3961         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
3962         Remove option to mute streams with the current-a/v/t property, we have
3963         this functionality in the flags.
3964         Add signals to notify when the number of A/V/T channels changed.
3965         Add action signals to get tags for the A/V/T streams.
3966         Implement setting the current A/V/T stream.
3967         Rearrange some things to simplify stream selection.
3968         Implement volume.
3969
3970         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
3971         (gst_play_sink_get_volume), (gst_play_sink_set_property),
3972         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
3973         (activate_vis), (gst_play_sink_reconfigure):
3974         * gst/playback/gstplaysink.h:
3975         Add and implement volume setting methods.
3976
3977         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
3978         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
3979         (gst_selector_pad_event), (gst_stream_selector_class_init),
3980         (gst_stream_selector_init), (gst_stream_selector_finalize),
3981         (gst_stream_selector_set_property),
3982         (gst_stream_selector_get_property),
3983         (gst_stream_selector_get_linked_pad),
3984         (gst_stream_selector_request_new_pad):
3985         * gst/playback/gststreamselector.h:
3986         Add pad properties for tags and status of pads.
3987         Keep tags on pads.
3988         Make active pad selection based on pad object instead of name.
3989
3990 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
3991
3992         * configure.ac:
3993           Revert last change as we now check in gtk-doc.m4 for sed.
3994
3995 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
3996
3997         * configure.ac:
3998         Find and subst SED when building the docs.
3999
4000 2008-02-08  Julien Moutte  <julien@fluendo.com>
4001
4002         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
4003         (main): Make sure bus signals are reconnected when pressing STOP
4004         and then PLAY again for a parse launch pipeline. Fix a ref leak
4005         on the bus.
4006         * win32/common/config.h: Updated.
4007
4008 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4009
4010         * configure.ac:
4011         Make DISABLE_DEPRECATED defined *only* during CVS, not during
4012         pre-releases or releases.
4013
4014 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4015
4016         * configure.ac:
4017         * ext/gio/Makefile.am:
4018         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
4019         reporting
4020
4021 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4022
4023         * docs/plugins/Makefile.am:
4024         Add the headers which need scanning for the GIO plugin. The rest of
4025         the docs still need migrating.
4026
4027 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4028
4029         * ext/Makefile.am:
4030         * tests/check/Makefile.am:
4031         * tests/check/pipelines/.cvsignore:
4032         Add gio in a few more places.
4033
4034 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4035
4036         * configure.ac:
4037         * ext/Makefile.am:
4038         * tests/check/Makefile.am:
4039         Move gio plugin from -bad and mark as experimental.
4040
4041 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4042
4043         * gst-libs/gst/interfaces/mixeroptions.c:
4044         * gst-libs/gst/interfaces/mixertrack.c:
4045         Comment out a couple of other things which break the build when
4046         GST_DISABLE_DEPRECATED isn't on but -Werror is.
4047
4048 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
4049
4050         * docs/libs/gst-plugins-base-libs-sections.txt:
4051           Fix pbutils header.
4052
4053 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4054
4055         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
4056         Fix compiler warning.
4057
4058 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4059
4060         Patch by: Peter Kjellerstedt  <pkj at axis com>
4061
4062         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
4063         Clear the addrinfo struct using memset. Fixes #514937.
4064
4065 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
4066
4067         * gst/tcp/gstfdset.h:
4068         Remove unused field to same some memory.
4069
4070         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4071         Mark action signals as such.
4072
4073 2008-02-06  Michael Smith <msmith@fluendo.com>
4074
4075         * ext/theora/theoradec.c: (_theora_granule_frame),
4076         (_inc_granulepos):
4077           Increment granulepos for new-bitstream versions appropriately.
4078           Fixes #514623.
4079
4080 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
4081
4082         * tests/examples/seek/seek.c: (do_seek),
4083         (rate_spinbutton_changed_cb), (update_streams), (main):
4084         Remove obsolete stream_time reset after flushing seek, core does that
4085         automatically now.
4086         Improve accuracy of speed spinbutton.
4087         Only do playbin2 stuff when we actually use it.
4088
4089 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4090
4091         * tests/check/Makefile.am:
4092           Revert previous change of the test environment's GST_PLUGIN_PATH.
4093           The problem is not with the plugins, but with element factories
4094           and only occurs if elements are split out from existing plugins
4095           or if plugins change name (see #512740).
4096
4097 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4098
4099         * tests/check/Makefile.am:
4100           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
4101           with the core's plugins first and our local build directories last,
4102           since we might be building against an installed core, and that
4103           core's plugin directory may contain older or other versions of
4104           our own -base plugins, but we really do want to test our local
4105           ones (if there are multiple plugins or element factories with the
4106           same name, those inspected last will trump those read in earlier).
4107           Fixes #512740 for the most part.
4108
4109 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4110
4111         * configure.ac:
4112         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4113         Use gmtime_r if available as gmtime is not MT-safe.
4114         Fixes bug #511810.
4115
4116 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4117
4118         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4119         Cast glong to time_t as time_t might have a different type on
4120         other platforms, like FreeBSD, and we get a compiler warning
4121         otherwise. Fixes bug #511825.
4122
4123 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4124
4125         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4126         (get_group), (get_n_pads), (gst_play_bin_get_property),
4127         (pad_added_cb), (no_more_pads_cb), (perform_eos),
4128         (autoplug_select_cb), (deactivate_group):
4129         Remove stream-info, we going for something easier.
4130         Refactor getting the current group.
4131         Implement getting the number of audio/video/text streams.
4132
4133         * gst/playback/gststreamselector.c:
4134         (gst_stream_selector_class_init), (gst_stream_selector_init),
4135         (gst_stream_selector_get_property),
4136         (gst_stream_selector_request_new_pad),
4137         (gst_stream_selector_release_pad):
4138         * gst/playback/gststreamselector.h:
4139         Add property for number of pads.
4140
4141         * tests/examples/seek/seek.c: (set_scale), (update_flag),
4142         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
4143         (text_toggle_cb), (update_streams), (msg_async_done),
4144         (msg_state_changed), (main):
4145         Block slider callback when updating the slider position.
4146         Add gui elements for controlling playbin2.
4147         Add callback for async_done that updates position/duration.
4148
4149 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
4150
4151         * docs/plugins/Makefile.am:
4152         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4153         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4154         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4155         * docs/plugins/gst-plugins-base-plugins.interfaces:
4156         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4157           First round of plugin docs cleansups.
4158
4159         * docs/plugins/inspect/plugin-adder.xml:
4160         * docs/plugins/inspect/plugin-alsa.xml:
4161         * docs/plugins/inspect/plugin-audioconvert.xml:
4162         * docs/plugins/inspect/plugin-audiorate.xml:
4163         * docs/plugins/inspect/plugin-audioresample.xml:
4164         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4165         * docs/plugins/inspect/plugin-cdparanoia.xml:
4166         * docs/plugins/inspect/plugin-decodebin.xml:
4167         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4168         * docs/plugins/inspect/plugin-gdp.xml:
4169         * docs/plugins/inspect/plugin-gnomevfs.xml:
4170         * docs/plugins/inspect/plugin-libvisual.xml:
4171         * docs/plugins/inspect/plugin-ogg.xml:
4172         * docs/plugins/inspect/plugin-pango.xml:
4173         * docs/plugins/inspect/plugin-subparse.xml:
4174         * docs/plugins/inspect/plugin-tcp.xml:
4175         * docs/plugins/inspect/plugin-theora.xml:
4176         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4177         * docs/plugins/inspect/plugin-video4linux.xml:
4178         * docs/plugins/inspect/plugin-videorate.xml:
4179         * docs/plugins/inspect/plugin-videoscale.xml:
4180         * docs/plugins/inspect/plugin-videotestsrc.xml:
4181         * docs/plugins/inspect/plugin-volume.xml:
4182         * docs/plugins/inspect/plugin-vorbis.xml:
4183         * docs/plugins/inspect/plugin-ximagesink.xml:
4184         * docs/plugins/inspect/plugin-xvimagesink.xml:
4185           Regenerate.
4186
4187         * ext/ogg/Makefile.am:
4188         * ext/ogg/gstoggmux.c:
4189         * ext/ogg/gstoggmux.h:
4190           Add header for oggmux. the c-file needs a doc blob still.
4191
4192 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4193
4194         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4195
4196         * gst-libs/gst/rtp/gstrtpbuffer.c:
4197         (gst_rtp_buffer_set_extension_data):
4198         * gst-libs/gst/rtp/gstrtpbuffer.h:
4199         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
4200         Add gst_rtp_buffer_set_extension_data() 
4201         Add a unit test for this addition. Fixes #511478.
4202         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
4203
4204 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4205
4206         * configure.ac:
4207         Back to CVS
4208
4209 === release 0.10.17 ===
4210
4211 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
4212
4213         * configure.ac:
4214           releasing 0.10.17, "Peanut Butter and Jelly"
4215
4216 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4217
4218         * gst-libs/gst/interfaces/mixeroptions.c:
4219         * gst-libs/gst/interfaces/mixertrack.c:
4220         Also remove the conditional registration of the signals
4221         that disappeared with the ABI change in 0.10.14
4222
4223 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4224
4225         * gst-libs/gst/rtsp/gstrtspconnection.c:
4226         Revert patch to gstrtspconnection.c for brown paper bag
4227         release of -base. Re-opens: #511825
4228
4229 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4230
4231         * gst-libs/gst/interfaces/mixeroptions.h:
4232         * gst-libs/gst/interfaces/mixertrack.h:
4233         Change the way these deprecated function pointers are removed
4234         so that the compiled ABI is unconditionally smaller. This 
4235         sets in stone an ABI break that actually occurred when the
4236         things were deprecated in 0.10.14, which seems to be the best
4237         fix as the only known users are oss-mixer and sunaudio-mixer in 
4238         gst-plugins-good.
4239         Fixes: #513018
4240
4241 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
4242
4243         * win32/common/libgstpbutils.def:
4244           Export the two new _get_type() functions which are needed
4245           by the python bindings.
4246
4247 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
4248
4249         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4250         Cast glong to time_t as time_t might have a different type on
4251         other platforms, like FreeBSD, and we get a compiler warning
4252         otherwise. Fixes bug #511825.
4253
4254 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
4255
4256         * gst-libs/gst/audio/gstaudiofilter.c:
4257         (gst_audio_filter_class_init):
4258         Initialize the GstRingerBuffer class to get it's debug category
4259         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
4260         category and otherwise we get some g_critical(). Fixes bug #512334.
4261
4262 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
4263
4264         * configure.ac:
4265         Back to CVS
4266
4267 === release 0.10.16 ===
4268
4269 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
4270
4271         * configure.ac:
4272           releasing 0.10.16, "Scheduled Interruption"
4273
4274 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
4275
4276         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4277
4278         * gst-libs/gst/rtp/gstrtpbuffer.c:
4279         (gst_rtp_buffer_get_extension_data):
4280         Fix typos and wrong extension check. Fixes #511274.
4281
4282 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
4283
4284         * po/sk.po:
4285         Oops - add new sk.po mentioned in the LINGUAS I just committed
4286
4287 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
4288
4289         * po/LINGUAS:
4290         Add ca translation to the disted list.
4291
4292         * win32/vs6/libgstsdp.dsp:
4293         Convert line endings to CRLF
4294
4295 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
4296
4297         * win32/MANIFEST:
4298         Add win32/vs6/libgstrtsp.dsp to MANIFEST
4299
4300 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
4301
4302         * win32/common/libgstsdp.def:
4303         * win32/common/libgstvideo.def:
4304         Add new API declarations
4305
4306 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
4307
4308         * ext/theora/gsttheoradec.h:
4309         * ext/theora/gsttheoraparse.h:
4310         * ext/theora/theoradec.c:
4311         * ext/theora/theoraparse.c:
4312         Take a 2nd stab at handling libtheora granulepos changes in the decoder
4313         and parser by inspecting the bitstream version of the incoming data.
4314
4315 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
4316
4317         * configure.ac:
4318         * pkgconfig/Makefile.am:
4319         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
4320         * pkgconfig/gstreamer-audio.pc.in:
4321         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
4322         * pkgconfig/gstreamer-cdda.pc.in:
4323         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
4324         * pkgconfig/gstreamer-fft.pc.in:
4325         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
4326         * pkgconfig/gstreamer-floatcast.pc.in:
4327         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
4328         * pkgconfig/gstreamer-interfaces.pc.in:
4329         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
4330         * pkgconfig/gstreamer-netbuffer.pc.in:
4331         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
4332         * pkgconfig/gstreamer-pbutils.pc.in:
4333         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
4334         * pkgconfig/gstreamer-riff.pc.in:
4335         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
4336         * pkgconfig/gstreamer-rtp.pc.in:
4337         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
4338         * pkgconfig/gstreamer-rtsp.pc.in:
4339         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
4340         * pkgconfig/gstreamer-sdp.pc.in:
4341         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
4342         * pkgconfig/gstreamer-tag.pc.in:
4343         * pkgconfig/gstreamer-video-uninstalled.pc.in:
4344         * pkgconfig/gstreamer-video.pc.in:
4345         Provide one pkg-config file for every gst-plugins-base library.
4346         This makes linking to those libraries much more intuitive and
4347         provides standard pkg-config behaviour for them. Fixes bug #499697.
4348
4349 2008-01-13  David Schleef  <ds@schleef.org>
4350
4351         * gst/videoscale/vs_4tap.c:
4352           Fix valgrind error on 4tap scaling method.
4353
4354 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
4355
4356         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
4357         Include Winsock2.h for VS6 and use a different way initialize
4358         hints structure so it can build with VS6.
4359         * win32/MANIFEST:
4360         * win32/vs6/libgstsdp.dsp:
4361         * win32/common/libgstsdp.def:
4362         Add new files for libgstsdp.
4363         * win32/vs6/grammar.dsp:
4364         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
4365         * win32/vs6/gst_plugins_base.dsw:
4366         * win32/vs6/libgstdecodebin.dsp:
4367         * win32/vs6/libgstdecodebin2.dsp:
4368         * win32/vs6/libgstplaybin.dsp:
4369         * win32/vs6/libgstvolume.dsp:
4370         Add new dependencies to the link list.
4371
4372 2008-01-13  Julien Moutte  <julien@fluendo.com>
4373
4374         * win32/common/config.h:
4375         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
4376         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
4377         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
4378         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
4379         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
4380         * win32/common/interfaces-enumtypes.c:
4381         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
4382         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
4383         (gst_mixer_track_flags_get_type),
4384         (gst_tuner_channel_flags_get_type):
4385         * win32/common/multichannel-enumtypes.c:
4386         (gst_audio_channel_position_get_type):
4387         * win32/common/pbutils-enumtypes.c:
4388         (gst_install_plugins_return_get_type):
4389         * win32/common/pbutils-enumtypes.h: Update/Add generated files
4390         in the win32 build directory.
4391
4392 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4393
4394         * tests/check/Makefile.am:
4395         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
4396
4397         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
4398         * tests/check/elements/playbin.c:
4399         * tests/check/libs/mixer.c: (test_element_interface_supported),
4400         (gst_implements_interface_init):
4401         * tests/check/libs/rtp.c: (GST_START_TEST):
4402         Fix various assignment type mismatches.
4403
4404 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4405
4406         * configure.ac:
4407         * gst-libs/gst/rtsp/Makefile.am:
4408         Add test to see if hstrerror is available or if we need libresolv
4409         (Solaris) for it, then use it in libgstrtsp.
4410
4411 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4412
4413         * gst-libs/gst/tag/Makefile.am:
4414         Fix include path order
4415
4416 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
4417
4418         * gst-libs/gst/pbutils/install-plugins.c:
4419         (gst_install_plugins_context_copy),
4420         (gst_install_plugins_context_get_type):
4421         * gst-libs/gst/pbutils/install-plugins.h:
4422         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
4423         for bindings.
4424
4425 2008-01-11  Michael Smith <msmith@fluendo.com>
4426
4427         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
4428         (_theora_granule_frame), (_theora_granule_start_time),
4429         (theora_dec_sink_convert), (theora_dec_decode_buffer):
4430           Adapt for post-alpha meaning of granulepos, when we
4431           have a newer version of libtheora.
4432         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
4433         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
4434         (theora_enc_is_discontinuous), (theora_enc_chain):
4435           Likewise.
4436         * tests/check/Makefile.am:
4437           Link libtheora into theoraenc test so we can check which version of
4438           libtheora we're testing against.
4439         * tests/check/pipelines/theoraenc.c: (check_libtheora),
4440         (check_buffer_granulepos),
4441         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
4442         (theoraenc_suite):
4443           Adapt tests to check the values that are now defined for theora; make
4444           the tests backwards-adapt the passed values if we're running against an
4445           old libtheora.
4446           Fixes #497964
4447
4448 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
4449
4450         * gst-libs/gst/audio/gstbaseaudiosink.c:
4451           (gst_base_audio_sink_class_init):
4452         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4453           (gst_base_audio_src_class_init):
4454           Ref audio clock class from a thread-safe context to make sure
4455           we're not bit by GObjects lack of thread-safety here (#349410),
4456            however unlikely that may be in practice.
4457
4458 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
4459
4460         * autogen.sh:
4461           Add -Wno-portability to the automake parameters to stop warnings
4462           about GNU make extensions being used. We require GNU make in almost
4463           every Makefile anyway.
4464           
4465         * configure.ac:
4466           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
4467           at the same time is required for per target flags.
4468
4469 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4470
4471         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
4472           Post an error message if we can't pull as many bytes as we need
4473           for the tag. This makes sure the user gets to see a proper error
4474           message if a file with a partial ID3 tag is fed to decodebin, and
4475           not a 'no ID3 tag demuxer' error, which would be confusing
4476           (see #508138).
4477
4478 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4479
4480         * gst-libs/gst/pbutils/descriptions.c: (formats):
4481           Add description strings for ID3, APE, and ICY tags.
4482
4483 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4484
4485         * gst/playback/gstdecodebin.c: (try_to_link_1):
4486           Make sure we error out correctly if we can't activate one of
4487           the elements we've added.  Fixes #508138.
4488           
4489 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4490
4491         Patch by: Bastien Nocera <hadess at hadess net>
4492
4493         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
4494           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
4495           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
4496           the volume is the same for all channels. This works around
4497           some problem in alsa that leaves us with inconsistent state
4498           for some reason (#486840).
4499
4500 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4501
4502         Patch by: Jerone Young <jerone at gmail com>
4503
4504         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
4505           If there's no mixer track by the name of 'Master' or 'Front',
4506           check if there's one called 'PCM' before trying the generic
4507           fallback logic (fixes #506928, where we pick 'Mic' as master
4508           track for the AD1984 card in a Thinkpad T61/X61 laptop).
4509
4510 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4511
4512         * gst/playback/gstplay-enum.c:
4513         (register_gst_autoplug_select_result),
4514         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
4515         (gst_play_flags_get_type):
4516         * gst/playback/gstplay-enum.h:
4517         Add enums for configuration flags.
4518
4519         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4520         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
4521         (gst_play_bin_get_property), (no_more_pads_cb),
4522         (autoplug_select_cb), (gst_play_bin_change_state):
4523         Merge mode with flags.
4524         Add more property getters/setters, defaults and docs.
4525         Add properties to get number of audio/video/text streams.
4526         Create sink object in _init so that we can always rely on it being
4527         there.
4528
4529         * gst/playback/gstplaysink.c: (gst_play_sink_init),
4530         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
4531         (activate_vis), (gst_play_sink_reconfigure),
4532         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
4533         (gst_play_sink_change_state):
4534         * gst/playback/gstplaysink.h:
4535         Use flags to configure the sink pipelines.
4536         Add tee before audio pipeline so that we can use it for visualisations.
4537         Start working on integrating visualisations.
4538         Remove mode, we can do everything with the flags now.
4539         Add method to configue the sink pipeline.
4540
4541 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
4542
4543         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
4544           (check_buffer_timestamp), (check_buffer_duration):
4545           Turn these functions into macros so we can see right away
4546           where the failure occured.
4547
4548 2008-01-05  Julien Moutte  <julien@fluendo.com>
4549
4550         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
4551         debugging information to understand how X calculates the stride
4552         for XvImages.
4553
4554 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
4555
4556         * gst/volume/Makefile.am:
4557         * gst/volume/gstvolume.c: (volume_choose_func),
4558         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
4559         (volume_setup):
4560         * gst/volume/gstvolume.h:
4561         Use GstAudioFilter as base class for the volume element instead of
4562         plain GstBaseTransform.
4563
4564 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
4565
4566         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
4567         Don't set element details for the abstract GstAudioFilter class.
4568
4569 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
4570
4571         * gst-libs/gst/audio/gstaudiofilter.c:
4572         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
4573         Implement get_unit_size() vmethod of GstBaseTransform.
4574
4575 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
4576
4577         * gst-libs/gst/pbutils/Makefile.am:
4578         * gst-libs/gst/pbutils/pbutils.h:
4579         Use glib-enum generator to have a proper enum GType for
4580         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
4581
4582 2007-12-31  David Schleef  <ds@schleef.org>
4583
4584         * tests/check/Makefile.am:
4585         * tests/check/pipelines/theoraenc.c:
4586           Reenable theoraenc test, which fails on the buildbot but
4587           not locally.
4588
4589 2007-12-31  David Schleef  <ds@schleef.org>
4590
4591         * docs/libs/.cvsignore:
4592         * docs/plugins/.cvsignore:
4593           Add *-undeclared.txt to fix buildbot.
4594
4595 2007-12-31  David Schleef  <ds@schleef.org>
4596
4597         * tests/check/Makefile.am:
4598           Second attempt at disabling theoraenc test long enough to
4599           get buildbot to compile -base.
4600
4601 2007-12-31  David Schleef  <ds@schleef.org>
4602
4603         * tests/check/pipelines/theoraenc.c:
4604           Disable theoraenc test long enough to get the buildbot to
4605           compile a recent -base.
4606
4607 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4608
4609         * tests/examples/seek/seek.c: (stop_cb):
4610         Make sure we reset the slider value to 0.0 without racing against a
4611         possible g_idle that sets it to something else.
4612
4613 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
4614
4615         * sys/ximage/ximagesink.c:
4616         fix typo
4617
4618 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
4619
4620         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
4621         * gst-libs/gst/rtsp/gstrtspdefs.h:
4622         Add Location header so that we can start implementing redirects.
4623         See #506025.
4624
4625 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
4626
4627         * gst/subparse/gstssaparse.c:
4628         combine if's
4629
4630 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
4631
4632         * gst/subparse/gstssaparse.c:
4633         remove duplicate log message
4634
4635 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
4636
4637         * ext/libvisual/visual.c: (gst_visual_chain):
4638         Fix 'xyz may be used uninitialized' compiler warnings caused
4639         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
4640         abort() in any case but properly report the error.
4641
4642 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4643
4644         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4645         (gst_play_bin_finalize), (gst_play_bin_set_uri),
4646         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
4647         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
4648         (autoplug_select_cb), (activate_group), (deactivate_group),
4649         (setup_next_source), (save_current_group),
4650         (gst_play_bin_change_state):
4651         Code cleanups.
4652         Remove next-uri, we can use the uri property just fine.
4653         Fix some crasher.
4654         Unref uridecodebin when switching.
4655         Fix going to READY.
4656
4657         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4658         (gst_play_sink_init), (gst_play_sink_dispose),
4659         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
4660         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
4661         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
4662         (gst_play_sink_set_property), (gst_play_sink_get_property),
4663         (gen_video_chain), (gen_text_element), (gen_audio_chain),
4664         (gen_vis_element), (gst_play_sink_get_mode),
4665         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
4666         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
4667         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
4668         (gst_play_sink_change_state):
4669         * gst/playback/gstplaysink.h:
4670         Add some locking to make things threadsafe.
4671
4672         * gst/playback/test7.c: (about_to_finish_cb):
4673         Fix test.
4674
4675 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
4676
4677         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
4678           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
4679           (gst_video_scale_transform):
4680           Don't claim to be able to handle/transform caps that can't really
4681           be handled by the currently selected scaling method (here: RGB or
4682           packed YUV with 4-tap method). Also add locking to method property.
4683
4684         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
4685           (test_basetransform_based):
4686           Some test pipelines for the above (not entirely valgrind clean yet
4687           apparently).
4688
4689 2007-12-21  David Schleef  <ds@schleef.org>
4690
4691         * gst-libs/gst/video/video.c:
4692         * gst-libs/gst/video/video.h:
4693           Add additional RGBA and RGB-24 video formats.
4694
4695 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
4696
4697         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
4698           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
4699           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
4700         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
4701           (cddabasesrc_suite):
4702           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
4703           deprecated in the future (see #498924).
4704
4705 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
4706
4707         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
4708           Don't leak event.
4709
4710 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
4711
4712         * gst-libs/gst/riff/riff-read.c:
4713         Use GST_ROUND_UP_2 macro
4714
4715 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
4716
4717         * gst/playback/.cvsignore:
4718           Ignore more.
4719
4720 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
4721
4722         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
4723         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
4724           (set_active_source):
4725         * gst/playback/gstplaybasebin.h:
4726         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4727           (setup_sinks), (playbin_set_subtitles_visible):
4728           Make switching off of subtitles work. To avoid all kind of
4729           problems with unlinking of the subtitle input, we just keep
4730           the subtitle inputs linked as they are and tell textoverlay
4731           not to render them. Fixes #373011.
4732           Other subtitle switching issues (esp. when there are both
4733           external and in-stream subtitles) remain. They'll be solved
4734           in playbin2.
4735
4736 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4737
4738         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
4739         Init the pad segment too.
4740
4741 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4742
4743         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4744         (gst_audioringbuffer_open_device),
4745         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
4746         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
4747         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
4748         (gst_audio_sink_create_ringbuffer):
4749         Improve debug output.
4750
4751         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
4752         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
4753         Prevent some functions from doing things and failing when the
4754         ringbuffer is not yet acquired.
4755
4756 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
4757
4758         * gst-libs/gst/interfaces/interfaces.h:
4759           Also remove interfaces.h from CVS as it is not needed anymore.
4760
4761 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
4762
4763         * gst-libs/gst/interfaces/Makefile.am:
4764           interfaces.h is not used anymore so remove it from the build
4765           process.
4766
4767 2007-12-17  David Schleef  <ds@schleef.org>
4768
4769         * gst/videotestsrc/gstvideotestsrc.c:
4770         * gst/videotestsrc/gstvideotestsrc.h:
4771           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
4772           for testing vertical refresh synchronization.
4773
4774 2007-12-17  David Schleef  <ds@schleef.org>
4775
4776         * docs/libs/gst-plugins-base-libs-sections.txt:
4777         * gst-libs/gst/video/video.c:
4778         * gst-libs/gst/video/video.h:
4779           Add new GstVideFormat enum and write a bunch of helper functions
4780           based around it.
4781
4782 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
4783
4784         * Makefile.am:
4785           Use new common/win32.mak.
4786
4787 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4788
4789         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4790         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
4791         Add debug info.
4792         When going from PLAYING to PAUSED, pause the ringbuffer before calling
4793         the parent state change function, just like the audiosink, because the
4794         parent waits for the element to finish its processing before completing
4795         the state change. This makes going to PAUSED a lot snappier.
4796         When going from READY to PAUSED, don't allow the ringbuffer to start
4797         yet.
4798
4799 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
4800
4801         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4802         Yet another fix for broken software that produce files with an empty
4803         blockalign field. Instead of completely failing, make a second attempt
4804         at guessing the width/depth by looking at strf->size.
4805
4806 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
4807
4808         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
4809           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
4810         * gst-libs/gst/pbutils/install-plugins.c:
4811           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
4812         * gst-libs/gst/pbutils/missing-plugins.c:
4813           (gst_missing_plugin_message_get_installer_detail),
4814           (gst_missing_encoder_installer_detail_new):
4815         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
4816         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
4817           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
4818           avoid compiler warnings (#503930).
4819
4820 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
4821
4822         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4823         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
4824         for jpeg video streams.
4825         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
4826         for the above modification.
4827
4828 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
4829
4830         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
4831           (gst_x_overlay_handle_events):
4832           More guards (we don't want klass to end up being NULL).
4833
4834 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
4835
4836         * configure.ac:
4837         * gst/volume/gstvolume.c: (gst_volume_init):
4838           Use new gst_base_transform_set_gap_aware() function as volume
4839           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
4840           for this.
4841
4842 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4843
4844         * tests/examples/seek/seek.c: (msg_segment_done), (main):
4845         Don't go to READY on EOS as this avoids testing of seeking and
4846         restarting after EOS, use the stop button when you want to READY.
4847         Don't try to do a flushing seek in segment-done, it does not make
4848         sense to use this for gapless playback and is not needed.
4849
4850 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4851
4852         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
4853         (reset_rate_timer), (update_in_rates), (update_out_rates),
4854         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
4855         (gst_queue_chain), (gst_queue_loop):
4856         Use separate timers for input and output rates.
4857         Pause measuring the output rate when we block for more data.
4858         See #503262.
4859
4860 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4861
4862         * gst/playback/gstqueue2.c: (gst_queue_chain):
4863         Pause the timer to measure the input rate when we block because the
4864         queue is filled. See #503262.
4865
4866 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4867
4868         Patch by: Peter Kjellerstedt  <pkj at axis com>
4869
4870         * gst-libs/gst/rtsp/gstrtspconnection.c:
4871         (gst_rtsp_connection_free):
4872         Close control sockets. Fixes #503440.
4873
4874 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4875
4876         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
4877         Expose the right pad in the right place with the right element.
4878
4879 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
4880
4881         * gst-libs/gst/pbutils/descriptions.c: (formats):
4882           Add description for 'private' dts caps (who come up with that name?).
4883
4884 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
4885
4886         * Makefile.am:
4887           Add check-exports target and run it with 'make check'.
4888
4889         * configure.ac:
4890           Be stricter about what we export in our libraries: change regexp so that
4891           we only export _gst_foo(), but not __gst_foo().
4892
4893         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
4894         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
4895           Change internal functions to __gst_foo so they dont' get exported.
4896
4897         * win32/common/libgstaudio.def:
4898           Add missing symbols.
4899
4900 2007-12-11  David Schleef  <ds@schleef.org>
4901
4902         * ChangeLog: remove conflict markers
4903
4904 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
4905
4906         * ext/gnomevfs/Makefile.am:
4907         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
4908           Use gst_tag_freeform_string_to_utf8() here, which also takes
4909           into account any character sets specified by the user via
4910           environment variables.
4911
4912 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
4913
4914         * gst/audioconvert/Makefile.am:
4915         Also link to libm.
4916
4917 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
4918
4919         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4920         No need for floating point operations here. avoids having to link
4921         against the math library too.
4922
4923 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
4924
4925         * gst-libs/gst/pbutils/descriptions.c: (formats),
4926           (format_info_get_desc):
4927         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
4928           (GST_START_TEST):
4929           Add one or two missing formats.  Generate ADPCM description
4930           dynamically depending on layout/format.
4931
4932 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4933
4934         * configure.ac:
4935           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
4936
4937 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
4938
4939         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
4940
4941         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
4942           Some .srt files start with chunk number 0 and not chunk number 1,
4943           recognise and accept those as well (fixes #502497).
4944
4945         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
4946           (test_src):
4947           Add unit test for the above.
4948
4949 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
4950
4951         * gst/playback/gstplay-enum.c:
4952         (register_gst_autoplug_select_result),
4953         (gst_autoplug_select_result_get_type):
4954         * gst/playback/gstplay-enum.h:
4955         Add missing files.
4956
4957 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
4958
4959         * gst/playback/Makefile.am:
4960         Group decodebin2 and uridecodebin into the same plugin so that they
4961         can share the GEnumType.
4962
4963         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
4964         (_gst_select_accumulator), (gst_decode_bin_class_init),
4965         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
4966         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
4967         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
4968         Add signal to sort factories instead of the more awkward autoplug-select
4969         signal.
4970         Modify autoplug_select so that we can try, skip or expose the
4971         autopluggin of an element on a pad.
4972
4973         * gst/playback/gstfactorylists.c: (compare_ranks),
4974         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
4975         (element_filter), (gst_factory_list_get_elements),
4976         (gst_factory_list_debug), (gst_factory_list_filter):
4977         * gst/playback/gstfactorylists.h:
4978         Simplify the API, allow getting elements based on mask.
4979
4980         * gst/playback/gstplay-marshal.list:
4981         Add some more marshallers.
4982
4983         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
4984         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
4985         (autoplug_select_cb), (activate_group):
4986         Add support for managing non-raw sinks by providing a custom element and
4987         sink list to decodebin2.
4988         Try to plug non-raw sinks when decodebin2 using autoplug-select of
4989         decodebin2.
4990
4991         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
4992         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
4993         * gst/playback/gstplaysink.h:
4994         Add support for raw and non-raw sinks. 
4995         Add support to force sinks selected by playbin2.
4996         Don't plug raw converters for non-raw sinks.
4997
4998         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
4999         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
5000         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
5001         (plugin_init):
5002         Use right accumulators.
5003         Proxy new signal.
5004
5005 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5006
5007         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
5008         Use runnning time as the base time instead of the timestamp.
5009         Spotted by Saur on IRC.
5010
5011 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
5012
5013         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5014         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
5015
5016 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5017
5018         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
5019         (gst_ogg_demux_read_chain):
5020         If we find a new serial number but it does not contain a BOS page, make
5021         sure we initialize the chain to NULL because else we will try to scan it
5022         and crash. Fixes #500763
5023
5024 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
5025
5026         * gst/playback/Makefile.am:
5027         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
5028         (get_feature_array), (decoders_filter), (sinks_filter),
5029         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
5030         (gst_factory_list_filter):
5031         * gst/playback/gstfactorylists.h:
5032         Refactor some common code to filter factories and check caps compat.
5033
5034         * gst/playback/gstdecodebin.c:
5035         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5036         (gst_decode_bin_init), (gst_decode_bin_dispose),
5037         (gst_decode_bin_autoplug_continue),
5038         (gst_decode_bin_autoplug_factories),
5039         (gst_decode_bin_autoplug_select), (analyze_new_pad),
5040         (find_compatibles):
5041         * gst/playback/gstplaybin.c:
5042         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5043         (gst_play_bin_init), (gst_play_bin_finalize),
5044         (autoplug_factories_cb), (activate_group):
5045         * gst/playback/gstqueue2.c:
5046         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
5047         (proxy_autoplug_continue_signal),
5048         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
5049         (proxy_drained_signal):
5050         Add some more debug info and use factor filtering code.
5051
5052 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
5053
5054         * gst/audiotestsrc/gstaudiotestsrc.c:
5055         * gst/volume/gstvolume.c:
5056         * gst/volume/gstvolume.h:
5057           Add GAP-flag support.
5058
5059 2007-11-24  Julien MOUTTE  <julien@moutte.net>
5060
5061         * tests/examples/seek/seek.c: (main): Increase the range of the
5062         rate selector as I would like to test QOS behavior at higher
5063         forward and reverse playback speed like say 64x.
5064
5065 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
5066
5067         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
5068         (audioresample_query), (audioresample_query_type),
5069         (gst_audioresample_set_property):
5070         Implement latency query.
5071
5072 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5073
5074         * gst-libs/gst/audio/gstbaseaudiosink.c:
5075         (gst_base_audio_sink_drain):
5076         Our EOS time contains the base_time, _wait_eos() expects a running_time
5077         so we have to subtract the base_time again before calling the function.
5078         This fixes an EOS regression where the base_time was added twice and EOS
5079         took longer and longer in certain situations.
5080         Fixes #498767.
5081
5082 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5083
5084         * docs/libs/gst-plugins-base-libs-sections.txt:
5085         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
5086         (gst_base_audio_sink_set_provide_clock),
5087         (gst_base_audio_sink_get_provide_clock),
5088         (gst_base_audio_sink_set_slave_method),
5089         (gst_base_audio_sink_get_slave_method),
5090         (gst_base_audio_sink_set_property),
5091         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
5092         (gst_base_audio_sink_none_slaving),
5093         (gst_base_audio_sink_handle_slaving):
5094         * gst-libs/gst/audio/gstbaseaudiosink.h:
5095         Expose methods for some object properties so that subclasses can more
5096         easily configure them.
5097         Added slave method none, that completely disables slaving to the
5098         internal clock.
5099         API: gst_base_audio_sink_set_provide_clock()
5100         API: gst_base_audio_sink_get_provide_clock()
5101         API: gst_base_audio_sink_set_slave_method()
5102         API: gst_base_audio_sink_get_slave_method()
5103
5104         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5105         (gst_base_audio_src_set_provide_clock),
5106         (gst_base_audio_src_get_provide_clock),
5107         (gst_base_audio_src_set_property),
5108         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
5109         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5110         Expose methods for some object properties so that subclasses can more
5111         easily configure them.
5112         API: gst_base_audio_src_set_provide_clock()
5113         API: gst_base_audio_src_get_provide_clock()
5114
5115 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
5116
5117         Patch by: Joe Peterson <lavajoe at gentoo dot org>
5118
5119         * gst-libs/gst/sdp/gstsdpmessage.c:
5120         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
5121
5122 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
5123
5124         * tests/check/libs/fft.c: (GST_START_TEST):
5125         Fix scaling to really have dB instead of something else.
5126
5127 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5128
5129         * tests/examples/seek/seek.c: (main): There's a nice macro to check
5130         GTK version, use it.
5131
5132 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5133
5134         * tests/examples/seek/seek.c: (main): Try to support stable version
5135         of GTK.
5136
5137 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
5138
5139         * gst/playback/README:
5140         * gst/playback/test7.c:
5141           Fix the build + little README update.
5142
5143 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5144
5145         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
5146         Add playbin2 seek pipeline.
5147
5148 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5149
5150         * gst/playback/Makefile.am:
5151         * gst/playback/gstplayback.c: (plugin_init):
5152         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
5153         (eos_cb), (about_to_finish_cb), (main):
5154         Add playbin2.
5155         Added gapless playback example.
5156
5157         * gst/playback/gstplaybasebin.c:
5158         * gst/playback/gstplaybasebin.h:
5159         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
5160         * gst/playback/gstqueue2.c:
5161         * gst/playback/test.c:
5162         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
5163         (pad_removed_cb):
5164         * gst/playback/gststreaminfo.h:
5165         Change email.
5166
5167         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
5168         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
5169         (gst_play_bin_dispose), (gst_play_bin_set_uri),
5170         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5171         (gst_play_bin_get_property), (gst_play_bin_handle_message),
5172         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
5173         (drained_cb), (unlink_group), (activate_group),
5174         (setup_next_source), (gst_play_bin_change_state),
5175         (gst_play_bin2_plugin_init):
5176         Added raw first version of playbin2. Does chained oggs and gapless
5177         playback fine. No support for raw sinks yet. No visualisations or
5178         subtitles yet.
5179
5180         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
5181         (gst_play_sink_class_init), (gst_play_sink_init),
5182         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
5183         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5184         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5185         (gst_play_sink_set_property), (gst_play_sink_get_property),
5186         (post_missing_element_message), (free_chain), (add_chain),
5187         (activate_chain), (gen_video_chain), (gen_text_element),
5188         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
5189         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
5190         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5191         (gst_play_sink_send_event), (gst_play_sink_change_state):
5192         * gst/playback/gstplaysink.h:
5193         Added Element that abstracts the sinks and their pipelines for playbin2.
5194
5195 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5196
5197         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
5198         (gst_selector_pad_class_init), (gst_selector_pad_init),
5199         (gst_selector_pad_finalize), (gst_selector_pad_reset),
5200         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
5201         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
5202         (gst_selector_pad_chain), (gst_stream_selector_get_type),
5203         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
5204         (gst_stream_selector_init), (gst_stream_selector_set_property),
5205         (gst_stream_selector_get_linked_pad),
5206         (gst_stream_selector_getcaps),
5207         (gst_stream_selector_is_active_sinkpad),
5208         (gst_stream_selector_activate_sinkpad),
5209         (gst_stream_selector_get_linked_pads),
5210         (gst_stream_selector_request_new_pad),
5211         (gst_stream_selector_release_pad):
5212         * gst/playback/gststreamselector.h:
5213         Improve streamselector, make it select and unselect the current pad more
5214         intelligently. 
5215         Subclass GstPad for the sinkpads of the selector.
5216         Handle segments more correctly.
5217         Fix caps negotiation.
5218         Implement release_pad.
5219
5220 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5221
5222         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5223         (gst_decode_group_check_if_drained), (source_pad_event_probe),
5224         (remove_fakesink):
5225         Add drained signal fired when decodebin finishes decoding the data.
5226         Remove deprecated STATE_DIRTY message.
5227
5228         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
5229         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
5230         (analyse_source), (proxy_drained_signal), (make_decoder),
5231         (source_new_pad), (value_list_append_structure_list),
5232         (handle_redirect_message), (handle_message):
5233         Proxy the new drained signal.
5234         Handle pad removed from decodebin.
5235         Handle redirect messages by sorting multiple redirections based on the
5236         connection speed.
5237
5238 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5239
5240         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
5241
5242         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5243         Fix leaking headers. Fixes #496761.
5244
5245 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5246
5247         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
5248
5249         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
5250         (gst_ximagesink_change_state):
5251         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
5252         Don't leak the PAR on errors. Fixes #496731.
5253
5254 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
5255
5256         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
5257           (gst_tag_from_id3_user_tag):
5258           Add mapping for audio cd discid tags, so we can extract
5259           them from tags as well (see #347848). Also compare identifiers
5260           in ID3v2 TXXX frames in a case-insensitive way to increase
5261           compatibility when reading tags (discid vs. DiscID vs. DiscId).
5262
5263 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5264
5265         * gst-plugins-base.doap:
5266         Oops, fix the release name.
5267
5268 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5269
5270         * gst-plugins-base.doap:
5271         Add 0.10.15 release
5272
5273 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5274
5275         * configure.ac:
5276         Back to CVS
5277
5278 === release 0.10.15 ===
5279
5280 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
5281
5282         * configure.ac:
5283           releasing 0.10.15, "No need to argue"
5284
5285 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
5286
5287         * win32/vs6/libgstfft.dsp:
5288         Convert line endings to DOS.
5289
5290 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
5291
5292         * win32/vs6/gst_plugins_base.dsw:
5293         * win32/vs6/libgstfft.dsp:
5294         * win32/MANIFEST:
5295         Add a project file for fft plugin and remove socket
5296         based plugin which don't build from the workspace.
5297         * win32/vs6/libgstaudio.dsp:
5298         * win32/vs6/libgstrtp.dsp:
5299         * win32/vs6/libgsttag.dsp:
5300         Convert line endings back to DOS.
5301         Fixes #496724
5302
5303 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
5304
5305         * win32/vs6/libgstinterfaces.dsp:
5306         * win32/vs6/libgstrtsp.dsp:
5307         Convert line endings back to DOS
5308
5309 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
5310
5311         * gst-libs/gst/fft/kiss_fft_f32.h:
5312         * gst-libs/gst/fft/kiss_fft_f64.h:
5313         * gst-libs/gst/fft/kiss_fft_s16.h:
5314         * gst-libs/gst/fft/kiss_fft_s32.h:
5315         Don't include malloc.h which doesn't exist on Mac OSX.
5316         Instead, pull in glib.h and use g_malloc/g_free for 
5317         consistency. Fixes: #496548
5318
5319 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
5320
5321         * gst/playback/gstdecodebin2.c:
5322           Dont leak ghostpad. Fixes #475451.
5323
5324 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
5325
5326         * docs/design/design-decodebin.txt:
5327         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
5328         Update some more docs and comments.
5329
5330 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5331
5332         Patch by: Sebastien Moutte  <sebastien moutte net>
5333
5334         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
5335           (gst_rtcp_unix_to_ntp):
5336         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
5337           Fix some C99-isms and and a missing function that some versions of
5338           MSVC don't like too much (#494346).
5339
5340         * win32/vs6/gst_plugins_base.dsw:
5341         * win32/vs6/libgstaudio.dsp:
5342         * win32/vs6/libgstrtp.dsp:
5343         * win32/vs6/libgsttag.dsp:
5344           Update vs6 projects files (#494346).
5345
5346 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5347
5348         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5349
5350         * win32/common/libgstaudio.def:
5351         * win32/common/libgstcdda.def:
5352         * win32/common/libgstinterfaces.def:
5353         * win32/common/libgstnetbuffer.def:
5354         * win32/common/libgstpbutils.def:
5355         * win32/common/libgstrtp.def:
5356         * win32/common/libgstrtsp.def:
5357         * win32/common/libgsttag.def:
5358         * win32/common/libgstvideo.def:
5359           More missing symbols to export (fixes #493986).
5360
5361 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
5362
5363         * docs/libs/gst-plugins-base-libs-sections.txt:
5364         * gst-libs/gst/fft/gstfftf32.c:
5365         * gst-libs/gst/fft/gstfftf32.h:
5366         * gst-libs/gst/fft/gstfftf64.c:
5367         * gst-libs/gst/fft/gstfftf64.h:
5368         * gst-libs/gst/fft/gstffts16.c:
5369         * gst-libs/gst/fft/gstffts16.h:
5370         * gst-libs/gst/fft/gstffts32.c:
5371         * gst-libs/gst/fft/gstffts32.h:
5372         * tests/check/libs/fft.c: (GST_START_TEST):
5373         Remove the magnitude and phase calculation functions as these have
5374         very special use cases and can't even be used for the spectrum
5375         element. Also adjust the docs to mention some properties of the used
5376         FFT implemention, i.e. how the values are scaled. Fixes #492098.
5377
5378 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5379
5380         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
5381           (finish_source):
5382           Avoid crash when there are external subtitles (fixes #491722).
5383
5384 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
5385
5386         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
5387         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
5388           'Could not open resource for writing' is not an acceptable
5389           error message when we can't open the audio device (see #492334),
5390           even less so when we're trying to open it to record something.
5391
5392 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5393
5394         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5395
5396         * win32/common/libgstrtp.def:
5397           Add some more missing symbols (#492813).
5398
5399 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5400
5401         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
5402
5403         * tests/check/elements/audioconvert.c: (verify_convert):
5404           Add check to make sure that the out caps have a channel layout
5405           set on them where they should have one.
5406
5407 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5408
5409         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
5410
5411         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
5412         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
5413           Include our own _stdint.h instead of sys/types.h, makes MingW happy
5414           (#492306).
5415
5416         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
5417           Use _pipe directly, GLib doesn't have a pipe() macro any longer
5418           (it disappeared in GLib 2.14.0) (#492306).
5419
5420         * gst-libs/gst/sdp/Makefile.am:
5421         * gst-libs/gst/sdp/gstsdpmessage.c:
5422           Fix includes and LIBS for win32/Mingw (#492306).
5423
5424         * tests/examples/dynamic/addstream.c (pause_play_stream):
5425           Use more portable g_usleep() instead of sleep() (#492306).
5426
5427 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5428
5429         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5430
5431         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
5432           (gst_ring_buffer_parse_caps):
5433           Return NULL instead of an enum that happens to be 0, fixes warning
5434           on MSVC (#492114).
5435
5436         * gst-libs/gst/audio/gstringbuffer.h:
5437           No trailing commas in enum list (for gcc-2.9x).
5438
5439         * gst/videotestsrc/videotestsrc.c: (random_char):
5440           Make information loss explicit instead of implicitly truncating to
5441           eight bits via the return value.  Fixes runtime error on MSVC when
5442           using the debug CRT (#492114).
5443
5444         * win32/common/config.h.in:
5445           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
5446
5447         * win32/common/libgstinterfaces.def:
5448         * win32/common/libgstrtp.def:
5449           Export a few more symbols (#492114).
5450
5451 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
5452
5453         * gst-libs/gst/audio/audio.c:
5454         * gst-libs/gst/audio/audio.h:
5455           Readd the deprecation guards, but preserve compilability.
5456
5457 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5458
5459         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
5460           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
5461           Preserve channel layout when fixating the number of channels in the
5462           output caps, or make sure there's a suitable channel position layout
5463           set on the caps if required. Fixes #430677.
5464
5465 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5466
5467         * tests/check/elements/decodebin.c: (test_text_plain_streams):
5468           Make sure the pipeline really operates in push mode as it should
5469           in this case.
5470
5471 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5472
5473         * gst-libs/gst/audio/audio.h:
5474           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
5475           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
5476           (ie. normal cvs builds) will fail.
5477
5478 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
5479
5480         * docs/libs/Makefile.am:
5481         * gst-libs/gst/audio/audio.c:
5482         * gst-libs/gst/audio/audio.h:
5483         * gst-libs/gst/interfaces/mixer.c:
5484           tell gtk-doc about the deprecation guard. Apply more doc fixes.
5485
5486 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5487
5488         * tests/check/libs/audio.c: (init_value_to_channel_layout),
5489           (test_channel_layout_value_intersect), (audio_suite):
5490           Add simple unit test to make sure GstValue intersection
5491           of channel layouts works the way I think it does.
5492
5493 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
5494
5495         * docs/libs/gst-plugins-base-libs-sections.txt:
5496         * gst-libs/gst/audio/gstaudiofilter.h:
5497         * gst-libs/gst/interfaces/mixer.h:
5498         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5499         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5500         * gst-libs/gst/sdp/gstsdpmessage.c:
5501           Fix the docs according to what gtk-doc complained about.
5502
5503 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
5504
5505         * tests/icles/stress-playbin.c:
5506           Fix the build.
5507
5508 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
5509
5510         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
5511         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
5512           Post nice/more useful error message if we don't have a decoder for
5513           the primary type.
5514
5515 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5516
5517         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
5518         Be a bit more useful, unblock the pads after we fired the no-more-pads
5519         signal so that we can use the signal to inspect and connect all pads
5520         without having to keep extra state outside of decodebin.
5521
5522 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5523
5524         * gst/playback/gsturidecodebin.c:
5525         (gst_uri_decode_bin_autoplug_continue),
5526         (gst_uri_decode_bin_class_init), (no_more_pads_full):
5527         Implement default signal handler so that we return TRUE when nothing is
5528         connected.
5529
5530 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
5531
5532         * gst-libs/gst/riff/riff-media.c:
5533         (gst_riff_wavext_add_channel_layout),
5534         (gst_riff_wave_add_default_channel_layout),
5535         (gst_riff_wavext_get_default_channel_mask),
5536         (gst_riff_create_audio_caps):
5537         Use the ALSA channel layout as default for wav files without channel
5538         layout information. This fixes playback of chan-id.wav on 5.1 systems
5539         for example. Also refactor the channel layout setting a bit and add
5540         more default channel orders. Fixes #489010.
5541
5542 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
5543
5544         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
5545           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
5546           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
5547           instead.
5548
5549 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
5550
5551         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5552         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
5553         (gst_decode_bin_set_subs_encoding),
5554         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
5555         (gst_decode_bin_get_property), (analyze_new_pad):
5556         Move subtitle encoding property to decodebin2 so that it can set the
5557         property value on all elements that it autoplugs and that require it.
5558         Make caps refcounting more consistent in get/set.
5559
5560         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
5561         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
5562         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
5563         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
5564         (proxy_autoplug_continue_signal),
5565         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
5566         (make_decoder):
5567         Proxy properties and relevant signals from the internal decodebin.
5568         Make properties MT safe.
5569
5570 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
5571
5572         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
5573         * gst-libs/gst/tag/tags.c:
5574           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
5575           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
5576
5577         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
5578           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
5579
5580         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
5581           (gst_tag_to_vorbis_comments):
5582           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
5583           just mapping everything I found in the wild) (#414539).
5584
5585 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
5586
5587         Inspired by patch of: René Stadler <mail at renestadler dot de>
5588
5589         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5590         (gst_decode_bin_autoplug_continue),
5591         (gst_decode_bin_autoplug_factories),
5592         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
5593         (find_compatibles):
5594         * gst/playback/gstplay-marshal.list:
5595         Remove the autoplug-sort signal and replace it with a binding friendly
5596         autoplug-select signal.
5597         Add an autoplug-factories signal that can be used to generate a list of
5598         factories to try to autoplug.
5599         Add the GstPad to the autoplugging signal args as it might be needed to
5600         make a good factory selection.
5601         Fix up the marshallers for this. Fixes #407282.
5602
5603 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
5604
5605         * gst-libs/gst/tag/gsttagdemux.c:
5606           Don't abort with an assertion if we receive a seek event with
5607           a start type of NONE (see launchpad bug #155878).
5608
5609 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
5610
5611         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
5612         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
5613         (gst_ximagesink_change_state), (gst_ximagesink_reset):
5614         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
5615         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
5616         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
5617         Make sure that before we clean up the X resources, we shutdown and join
5618         the event thread.
5619         Also make sure the event thread does not shut down immediatly after
5620         startup because the running variable is not yet correctly set.
5621         Fixes #378770. 
5622
5623 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
5624
5625         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
5626         Make the window for a race in typefind and shutting down smaller until
5627         we figure out the right locking here. Avoids #485753 usually.
5628
5629         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
5630         Remove unneeded lock causing a race in typefind and shutting down.
5631         Fixes #485753.
5632
5633         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
5634         Also remove sinks when going to NULL because we might not complete the
5635         state change to PAUSED, causing the PAUSED->READY state change not to
5636         happen.
5637
5638 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
5639
5640         * gst-libs/gst/audio/gstbaseaudiosink.c:
5641         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
5642         Also explicitly release the ringbuffer when going to NULL because it
5643         is required in the setcaps function, before the state change to PAUSED
5644         completes.
5645
5646 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
5647
5648         * tests/icles/.cvsignore:
5649         * tests/icles/Makefile.am:
5650         * tests/icles/stress-playbin.c:
5651           Does what it says on the tin.
5652
5653 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
5654
5655         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
5656         Fix queue negotiation. See #486758.
5657
5658 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5659
5660         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
5661         (gst_xvimagesink_xwindow_new),
5662         (gst_xvimagesink_update_colorbalance),
5663         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
5664
5665         Fix handling of some of the X atoms. If the last parameter is True,
5666         XInternAtom won't create the atom if it doesn't exist, and therefore
5667         might return None. This causes X errors on Xv implementations that
5668         don't provide the colour balance attributes.
5669
5670 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
5671
5672         * gst-libs/gst/tag/gstvorbistag.c:
5673         * tests/check/libs/tag.c:
5674           Extract vorbis comment LICENSE tags correctly.
5675
5676 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
5677
5678         Patch by: Jason Kivlighn  <jkivlighn gmail com>
5679
5680         * gst-libs/gst/tag/gstid3tag.c:
5681         * tests/check/libs/tag.c:
5682           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
5683
5684 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
5685
5686         * gst-libs/gst/tag/gsttagdemux.c:
5687           Don't error out when a buggy downstream element doesn't
5688           handle the newsegment event we send properly (especially
5689           not without posting a meaningful error message on the
5690           bus). See bug #471370 and launchpad bug #136264.
5691
5692 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
5693
5694         * gst-libs/gst/audio/gstbaseaudiosink.c:
5695         (gst_base_audio_sink_drain):
5696         Use new basesink method to make our EOS drain interruptable.
5697
5698 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
5699
5700         * gst-libs/gst/rtp/gstrtppayloads.c:
5701         Fix silly search-replace oversight.
5702
5703 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
5704
5705         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
5706
5707         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
5708         (gst_basertppayload_set_outcaps):
5709         Fix caps memleak. Fixes #484989.
5710
5711
5712 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5713
5714         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5715         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
5716         Fix debug output.
5717
5718 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5719
5720         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5721         (gst_base_audio_src_create):
5722         Also handle the case where there is no clock set on the audio source,
5723         like in the unit tests.
5724
5725 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
5726
5727         * gst-libs/gst/rtp/gstrtppayloads.c:
5728         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
5729         to avoid compiler warnings
5730
5731 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5732
5733         * gst/playback/gstdecodebin.c: (type_found),
5734         (gst_decode_bin_change_state):
5735         * gst/playback/gstdecodebin2.c: (type_found),
5736         (gst_decode_bin_change_state):
5737         Don't disconnect the have_type signal because we never reconnect it
5738         later on. Instead keep a variable to see if we already detected a type.
5739
5740 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5741
5742         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
5743         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
5744         (type_found):
5745         Unlink the signal handler when we found the type, we're not going to do
5746         anything sensible with more type_found signals anyway.
5747
5748 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
5749
5750         * gst-libs/gst/tag/gsttagdemux.c:
5751           Don't leak caps.
5752
5753 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
5754
5755         * gst-libs/gst/tag/Makefile.am:
5756         * gst-libs/gst/tag/gsttagdemux.c:
5757         * gst-libs/gst/tag/gsttagdemux.h:
5758           API: add GstTagDemux base class for simple tag demuxers.
5759
5760         * docs/libs/gst-plugins-base-libs-docs.sgml:
5761         * docs/libs/gst-plugins-base-libs-sections.txt:
5762           Add GstTagDemux to docs.
5763
5764 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
5765
5766         * gst-libs/gst/rtp/gstrtpbuffer.c:
5767         (gst_rtp_buffer_get_payload_subbuffer):
5768         Fix bug introduced with last commit which inverted the logic and
5769         caused all buffers to be dropped. Fixes #483620.
5770         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
5771
5772 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
5773
5774         * gst-libs/gst/rtp/gstrtpbuffer.c:
5775           Replace g_return_if_val (as it could be disabled), with regular return
5776           and warning.
5777
5778 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5779
5780         * tests/check/pipelines/simple-launch-lines.c:
5781           Print message name and not just number.
5782
5783 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
5784
5785         * gst-libs/gst/audio/gstbaseaudiosink.c:
5786         (gst_base_audio_sink_async_play):
5787         When slaved to the clock, don't try to align a sample with the previous
5788         one when going to PLAYING again.
5789
5790 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
5791
5792         * tests/examples/snapshot/snapshot.c:
5793           Fix the build.
5794
5795 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5796
5797         * gst-libs/gst/sdp/gstsdpmessage.h:
5798         Add RFC 3556 bandwidth modifiers.
5799
5800 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5801
5802         * docs/libs/gst-plugins-base-libs-docs.sgml:
5803         * docs/libs/gst-plugins-base-libs-sections.txt:
5804         * gst-libs/gst/rtp/gstrtppayloads.c:
5805         Update documentation.
5806
5807 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5808
5809         * gst-libs/gst/rtp/Makefile.am:
5810         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
5811         (gst_rtp_payload_info_for_name):
5812         * gst-libs/gst/rtp/gstrtppayloads.h:
5813         Added new file and header to deal with payload info.
5814
5815         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
5816         (gst_rtp_buffer_default_clock_rate):
5817         * gst-libs/gst/rtp/gstrtpbuffer.h:
5818         Payload specific stuff is move to new headers.
5819         Implement _default_clock rate using the new payload function.
5820
5821         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
5822         (gst_sdp_parse_line):
5823         * gst-libs/gst/sdp/gstsdpmessage.h:
5824         Add some more comments.
5825
5826 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5827
5828         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
5829         (sdp_check_header), (sdp_type_find), (plugin_init):
5830         Add typefind function for application/sdp.
5831         Remove some old dirac typefind code that was ifdeffed out.
5832
5833 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
5834
5835         * win32/common/libgstaudio.def:
5836         Add new exported functions.
5837         * win32/vs6/grammar.dsp:
5838         Add autogeneration and copy of some autegenerated files from win32/common
5839         for rtsp library.
5840         * win32/vs6/libgstaudioconvert.dsp:
5841         Add gstaudioquantize.c to the build.
5842         * win32/vs6/libgstinterfaces.dsp:
5843         Add videoorientation.c to the build.
5844         * win32/vs6/libgstriff.dsp:
5845         Add libgsttag to the link libraries list.
5846         * win32/vs6/libgstvolume.dsp:
5847         Add liboil to the link.
5848         * win32/vs6/gst_plugins_base.dsw:
5849         * win32/vs6/libgstrtsp.dsp:
5850         * win32/common/libgstrtsp.def:
5851         Add files to build libgstrtsp library.
5852         
5853 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
5854
5855         * tests/examples/snapshot/snapshot.c: (main):
5856         Print error when pipeline failed to construct.
5857
5858 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5859
5860         * configure.ac:
5861         * gst-libs/gst/tag/gstid3tag.c:
5862         * gst-libs/gst/tag/gstvorbistag.c:
5863           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
5864           and ID3v2 tags.
5865
5866 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5867
5868         * gst-libs/gst/floatcast/floatcast.h:
5869           Don't include config.h in an installed public header, this
5870           might break compilation of applications that don't have such
5871           a header and doesn't necessarily do what it's supposed to do
5872           anyway (ie. check for the lrint/lrintf defines) (#442065).
5873           Add docs for the various macros and document how this header
5874           has to be used (link against libm, etc.); add a few FIXMEs;
5875           include math.h for non-c99 code path.  Based on patch by
5876           Jan Schmidt.
5877           
5878 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
5879
5880         * configure.ac:
5881         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
5882         of duplicating these macros in configure.ac.
5883
5884 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5885
5886         * po/hu.po:
5887         * po/sv.po:
5888         * po/uk.po:
5889           Updated translations to 0.10.14
5890
5891 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5892
5893         translated by: Jakub Bogusz <qboosh@pld-linux.org>
5894
5895         * po/pl.po:
5896           Added Polish translation.
5897
5898 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5899
5900         translated by: Ilkka Tuohela <hile@iki.fi>
5901
5902         * po/fi.po:
5903           Added Finnish translation.
5904
5905 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5906
5907         translated by: Jorge González González <aloriel@gmail.com>
5908
5909         * po/es.po:
5910           Added Spanish translation.
5911
5912 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5913
5914         translated by: Mogens Jaeger <mogens@jaeger.tf>
5915
5916         * po/da.po:
5917           Added Danish translation.
5918
5919 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5920
5921         translated by: Funda Wang <fundawang@linux.net.cn>
5922
5923         * po/zh_CN.po:
5924           Added Chinese (simplified) translation.
5925
5926 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5927
5928         translated by: Alexander Shopov <ash@contact.bg>
5929
5930         * po/bg.po:
5931           Added Bulgarian translation.
5932
5933 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
5934
5935         * gst/playback/gstqueue2.c: (gst_queue_push_one):
5936         Fix compilation wrt printf arguments.
5937
5938 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
5939
5940         * configure.ac:
5941         * tests/examples/Makefile.am:
5942         * tests/examples/snapshot/.cvsignore:
5943         * tests/examples/snapshot/Makefile.am:
5944         * tests/examples/snapshot/snapshot.c: (main):
5945         Add simple snapshot example program using appsink.
5946
5947 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
5948
5949         * tests/check/generic/states.c:
5950           Improved state change unit test.
5951
5952 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
5953
5954         * docs/plugins/.cvsignore:
5955         * tests/check/.cvsignore:
5956           Ignore registries in any format.
5957
5958 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
5959
5960         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5961         (gst_base_rtp_depayload_chain),
5962         (gst_base_rtp_depayload_set_gst_timestamp):
5963         Only copy timestamp on outgoing packets if the depayloader did not set
5964         one.
5965         Also copy duration on outgoing packets.
5966
5967 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
5968
5969         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
5970         (gst_basertppayload_set_outcaps):
5971         Fix compilation because of missing %d in printf.
5972         When fixating caps, fixate what we can and throw away all remaining
5973         unfixed caps, subclasses should do something smart if they need to.
5974
5975 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
5976
5977         * ext/gnomevfs/gstgnomevfssrc.c:
5978           Improve debug logs a bit and be more verbose if things go wrong.
5979
5980 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5981
5982         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
5983         (gst_text_overlay_set_property):
5984         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
5985         * gst-libs/gst/audio/gstbaseaudiosink.c:
5986         (gst_base_audio_sink_render):
5987         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
5988         (gst_rtcp_unix_to_ntp):
5989         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
5990         * gst/playback/gstqueue2.c:
5991         * tests/examples/seek/seek.c: (set_scale):
5992         Fix a bunch of compile warnings shown with Forte.
5993
5994         * gst/audiorate/gstaudiorate.c:
5995         Always pull in config.h before including any system headers.
5996
5997 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
5998
5999         * gst/playback/gstqueue2.c: (update_buffering),
6000         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
6001         (gst_queue_handle_sink_event), (gst_queue_chain),
6002         (gst_queue_push_one), (gst_queue_sink_activate_push),
6003         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
6004         Also fix #476514 for queue2.
6005
6006 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
6007
6008         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6009         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
6010         (gst_base_rtp_depayload_chain),
6011         (gst_base_rtp_depayload_handle_sink_event),
6012         (gst_base_rtp_depayload_push_full),
6013         (gst_base_rtp_depayload_set_gst_timestamp),
6014         (gst_base_rtp_depayload_change_state):
6015         Remove code to deal with RTP to GST time conversion, we now just copy
6016         the GST timestamp we receive to the outgoing buffers.
6017         Handle segment and flushes correctly.
6018
6019         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6020         When we have no valid input timestamp, use the previous rtp timestamp on
6021         the outgoing RTP packet instead of the RTP base time.
6022
6023 2007-09-15  David Schleef  <ds@schleef.org>
6024
6025         * ext/alsa/gstalsa.c:
6026         * ext/alsa/gstalsadeviceprobe.c:
6027         * ext/alsa/gstalsamixer.c:
6028         * ext/alsa/gstalsasink.c:
6029         * ext/alsa/gstalsasrc.c:
6030           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
6031
6032 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
6033
6034         * gst-libs/gst/rtp/gstbasertppayload.c:
6035         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
6036         Add some debug info when negotiating caps.
6037
6038 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6039
6040         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
6041         A buffer with an empty payload is also a valid buffer.
6042
6043 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6044
6045         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
6046         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
6047         (gst_basertppayload_change_state):
6048         Make sure we start our RTP timestamp from the random base RTP
6049         timestamp even if the buffer timestamp starts from some random value.
6050
6051 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6052
6053         * configure.ac:
6054         * tests/examples/Makefile.am:
6055         * tests/examples/dynamic/.cvsignore:
6056         * tests/examples/dynamic/Makefile.am:
6057         * tests/examples/dynamic/addstream.c: (create_stream),
6058         (pause_play_stream), (message_received), (eos_message_received),
6059         (perform_step), (main):
6060         Add simple exmple app to demonstrate starting and pausing live and
6061         non-live bins in a PLAYING pipeline.
6062
6063 2007-09-14  Julien MOUTTE  <julien@moutte.net>
6064
6065         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
6066         typefind for QCP files (RFC #3625)
6067
6068 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6069
6070         * gst-libs/gst/audio/gstbaseaudiosink.c:
6071         (gst_base_audio_sink_init):
6072         Disable pull mode scheduling, we're not ready for it yet and it subtly
6073         breaks a lot of things.
6074
6075 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6076
6077         * tests/check/elements/libvisual.c:
6078           Test all libvisual plugins, not just the first one; this reproduces
6079           bug #450336 quite easily.  Looks like a problem with the 'jess'
6080           visualisation.
6081
6082 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6083
6084         * tests/check/Makefile.am:
6085         * tests/check/elements/.cvsignore:
6086         * tests/check/elements/libvisual.c:
6087           Add basic libvisual test case in an attempt to reproduce bug #450336.
6088           Doesn't reproduce that bug, but some other crasher instead (invalid
6089           free), at least with make elements/libvisual.forever and the bumscope
6090           plugin on x86-64/gutsy. Leaving test disabled for now.
6091
6092 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
6093
6094         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6095
6096         * gst-libs/gst/rtsp/gstrtspconnection.c:
6097         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
6098         (read_body), (gst_rtsp_connection_receive):
6099         Make sure we can not cancel in the middle of receiving a message.
6100         Fixes #475731.
6101
6102 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
6103
6104         Patch by: Josep Torra Valles <josep@fluendo.com>
6105
6106         * gst/playback/gstplaybasebin.c:
6107           Increase upper limit for audio queue a bit; fixes preroll problem
6108           with playbin and decodebin2 when playing a quicktime trailer with
6109           multichannel audio via http (#464666).
6110
6111 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
6112
6113         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6114         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
6115         (gst_base_audio_src_provide_clock),
6116         (gst_base_audio_src_set_property),
6117         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
6118         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6119         Allow othe clocks than the internal clock to be used for the pipeline.
6120         Add property to disable clock provide.
6121         API: GstBaseAudioSrc::provide-clock
6122
6123 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
6124
6125         * gst/playback/gstdecodebin2.c:
6126           Don't leak request pads. Fixes #475395.
6127
6128 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6129
6130         Patch by: René Stadler <mail at renestadler dot de>
6131
6132         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
6133         (gst_ximage_buffer_class_init):
6134         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6135         (gst_xvimage_buffer_class_init):
6136         Correctly chain up finalize with the parent class to prevent
6137         memory leaks. Fixes #474880.
6138
6139 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6140
6141         * gst/volume/gstvolume.c: (volume_choose_func):
6142         * tests/check/elements/volume.c: (GST_START_TEST):
6143         Revert the latest change: floating point samples are allowed to
6144         have any value, not only values in the range [-1,1]. Thanks to Andy
6145         Wingo for noticing.
6146         Also fix processing of int32 samples with volumes > 4 by making the
6147         unity value smaller which prevents overflows.
6148
6149 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6150
6151         * gst-libs/gst/rtp/gstrtpbuffer.c:
6152         * tests/check/libs/rtp.c:
6153           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
6154
6155 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6156
6157         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
6158
6159         * gst-libs/gst/rtp/gstrtpbuffer.c:
6160           Fix up GstRTPHeader helper struct so that compilers will not under
6161           any circumstances add padding in between our fields, as currently
6162           happens with MSVC on win32, because that would lead to us sending
6163           out RTP payloads with broken RTP headers (#471194).
6164           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
6165           
6166         * tests/check/Makefile.am:
6167         * tests/check/libs/.cvsignore:
6168         * tests/check/libs/rtp.c:
6169           Add some simple unit tests for GstRTPBuffer. Some are disabled
6170           because the code tested still needs fixing (set_csrc() does not work).
6171
6172 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6173
6174         * win32/MANIFEST:
6175         * win32/common/gstrtsp-enumtypes.c:
6176         * win32/common/gstrtsp-enumtypes.h:
6177         * win32/common/interfaces-enumtypes.c:
6178         * win32/common/interfaces-enumtypes.h:
6179         * win32/common/multichannel-enumtypes.c:
6180           Add rtsp enumtypes (#474384) and update others.
6181
6182 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
6183
6184         * configure.ac:
6185           Fix configure check for HAVE_LIBXML_HTML.
6186
6187 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
6188
6189         * tests/check/libs/.cvsignore:
6190           Ignore more, in case the build bots work again one day.
6191
6192 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
6193
6194         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
6195
6196         * configure.ac:
6197         * gst-libs/gst/Makefile.am:
6198         * gst-libs/gst/fft/Makefile.am:
6199         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
6200         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
6201         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
6202         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
6203         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
6204         * gst-libs/gst/fft/gstfft.h:
6205         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
6206         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
6207         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
6208         * gst-libs/gst/fft/gstfftf32.h:
6209         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
6210         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
6211         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
6212         * gst-libs/gst/fft/gstfftf64.h:
6213         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
6214         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
6215         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
6216         * gst-libs/gst/fft/gstffts16.h:
6217         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
6218         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
6219         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
6220         * gst-libs/gst/fft/gstffts32.h:
6221         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
6222         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6223         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
6224         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
6225         * gst-libs/gst/fft/kiss_fft_f32.h:
6226         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
6227         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6228         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
6229         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
6230         * gst-libs/gst/fft/kiss_fft_f64.h:
6231         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
6232         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6233         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
6234         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
6235         * gst-libs/gst/fft/kiss_fft_s16.h:
6236         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
6237         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6238         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
6239         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
6240         * gst-libs/gst/fft/kiss_fft_s32.h:
6241         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
6242         (kiss_fftr_f32), (kiss_fftri_f32):
6243         * gst-libs/gst/fft/kiss_fftr_f32.h:
6244         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
6245         (kiss_fftr_f64), (kiss_fftri_f64):
6246         * gst-libs/gst/fft/kiss_fftr_f64.h:
6247         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
6248         (kiss_fftr_s16), (kiss_fftri_s16):
6249         * gst-libs/gst/fft/kiss_fftr_s16.h:
6250         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
6251         (kiss_fftr_s32), (kiss_fftri_s32):
6252         * gst-libs/gst/fft/kiss_fftr_s32.h:
6253         * gst-libs/gst/fft/kiss_version:
6254         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6255         * pkgconfig/gstreamer-plugins-base.pc.in:
6256         Add libgstfft, a FFT library based on Kiss FFT which is
6257         BSD licensed. Supported sample formats are int16, int32,
6258         float and double. For those formats a real FFT and IFFT
6259         can be done, different windowing functions can be applied
6260         and functions for extracting the magnitude and phase exist.
6261         Fixes #468619.
6262
6263         * docs/libs/Makefile.am:
6264         * docs/libs/gst-plugins-base-libs-docs.sgml:
6265         * docs/libs/gst-plugins-base-libs-sections.txt:
6266         Integrate libgstfft into the docs.
6267
6268         * tests/check/Makefile.am:
6269         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
6270         Add unit tests for libgstfft, currently only testing the FFT.
6271         Unit tests for IFFT will follow soon.
6272
6273 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
6274
6275         Patch by: Peter Kjellerstedt  <pkj at axis com>
6276
6277         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
6278         (gst_sdp_message_init), (gst_sdp_message_uninit),
6279         (is_multicast_address), (gst_sdp_message_as_text),
6280         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
6281         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
6282         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
6283         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
6284         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
6285         (gst_sdp_media_init), (gst_sdp_media_uninit),
6286         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
6287         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
6288         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
6289         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
6290         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
6291         * gst-libs/gst/sdp/gstsdpmessage.h:
6292         Separate INIT_ARRAY() and related macros into two versions, one for
6293         structures and one for pointers (e.g., INIT_ARRAY() and
6294         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
6295         lists of emails and phone numbers.
6296         Add missing const as appropriate.
6297         Change all gint to guint since they all actually represent unsigned
6298         values.
6299         Do not use time as a variable name as it shadows the global time().
6300         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
6301         Actually implement gst_sdp_message_add_time().
6302         Make gst_sdp_message_add_time() take repeat times as an argument.
6303         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
6304         Corrected the definition of gst_sdp_media_get_bandwidth() (was
6305         misspelled as badwidth).
6306         gst-indented and a little clean up. Fixes #471067.
6307
6308 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
6309
6310         * gst/volume/gstvolume.c: (volume_choose_func),
6311         (volume_process_double), (volume_process_double_clamp),
6312         (volume_process_float_clamp):
6313         Correctly clamp float/double samples in the [-1.0,1.0] range to
6314         prevent weird effects.
6315         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
6316         Add unit tests for all samples types that had none before.
6317
6318 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
6319
6320         * gst-libs/gst/rtp/gstrtpbuffer.c:
6321           Need to include stdlib.h for abs() here too.
6322
6323 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
6324
6325         * gst/playback/gststreaminfo.c:
6326           Fix build.
6327
6328 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
6329
6330         * gst/playback/gststreaminfo.c:
6331           Clean up some half-disabled code and comment.
6332
6333 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
6334
6335         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6336
6337         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6338         (gst_base_rtp_payload_audio_handle_event):
6339         Return FALSE from the event handler to let the parent class handle the
6340         event. Fixes #446766.
6341
6342         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6343         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
6344         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
6345
6346         * gst-libs/gst/rtp/gstbasertppayload.c:
6347         Bump the MTU to 1400.
6348
6349 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
6350
6351         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
6352         Add an audio/x-nsf typefind function for the nsfdec element.
6353
6354 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
6355         * gst/playback/gstplaybasebin.c:
6356         Included "myth://" on stream_uris list for enable buffering to mythtv files
6357
6358 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6359
6360         * docs/libs/gst-plugins-base-libs-sections.txt:
6361         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
6362         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
6363         (gst_rtcp_unix_to_ntp):
6364         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6365         Fix parsing of RB blocks.
6366         Fix docs.
6367         Added helper functions to convert to/from UNIX and NTP time.
6368         API: gst_rtcp_ntp_to_unix()
6369         API: gst_rtcp_unix_to_ntp()
6370
6371         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6372         (gst_rtp_buffer_get_header_len),
6373         (gst_rtp_buffer_get_extension_data),
6374         (gst_rtp_buffer_get_payload_subbuffer),
6375         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
6376         (gst_rtp_buffer_ext_timestamp):
6377         * gst-libs/gst/rtp/gstrtpbuffer.h:
6378         Fix some more docs.
6379         Implement handling of packets with extensions.
6380         Fix padding check in _validate().
6381         Added function to get extension data.
6382         API: gst_rtp_buffer_get_header_len()
6383         API: gst_rtp_buffer_get_extension_data()
6384
6385 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6386
6387         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6388         (gst_base_rtp_depayload_class_init),
6389         (gst_base_rtp_depayload_set_gst_timestamp):
6390         Add some more docs for the queue-delay property and fix a typo in a
6391         comment.
6392
6393         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6394         Fix typo.
6395
6396 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6397
6398         * gst-libs/gst/audio/gstbaseaudiosink.c:
6399         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
6400         (gst_base_audio_sink_change_state):
6401         When skew slaving, try to hover around the middle of a segment so that
6402         we at most drift by half a segment.
6403         If we are aligning in the oposite direction of the clock skew, we don't
6404         have to resync.
6405
6406 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6407
6408         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6409         (gst_base_rtp_depayload_setcaps),
6410         (gst_base_rtp_depayload_set_gst_timestamp):
6411         Be less silly with the segment start, just apply the clock-base to the
6412         timestamp.
6413
6414 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6415
6416         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6417         (gst_base_rtp_depayload_class_init),
6418         (gst_base_rtp_depayload_finalize),
6419         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
6420         (gst_base_rtp_depayload_handle_sink_event),
6421         (gst_base_rtp_depayload_set_gst_timestamp),
6422         (gst_base_rtp_depayload_change_state):
6423         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6424         Deprecate the queue handling thread thing and remove the code.
6425         Use new method to calculate the extended timestamp.
6426
6427 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6428
6429         * gst-libs/gst/rtp/gstrtcpbuffer.c:
6430         (gst_rtcp_packet_sdes_copy_entry):
6431         Use g_strndup which does exactly what we want.
6432
6433         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
6434         (gst_rtp_buffer_ext_timestamp):
6435         * gst-libs/gst/rtp/gstrtpbuffer.h:
6436         Add helper function to compare seqnums.
6437         Add helper function to calculate extended timestamps.
6438         API: gst_rtp_buffer_compare_seqnum()
6439         API: gst_rtp_buffer_ext_timestamp()
6440
6441 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
6442
6443         * gst-libs/gst/rtp/gstrtcpbuffer.c:
6444         (gst_rtcp_packet_sdes_get_entry),
6445         (gst_rtcp_packet_sdes_copy_entry):
6446         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6447         Fix and document SDES item data function.
6448         Add new function that makes a proper copy of SDES item data.
6449         API: gst_rtcp_packet_sdes_copy_entry()
6450
6451 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
6452
6453         * configure.ac:
6454         * gst/Makefile.am:
6455           The tcp and subparse plugins are under gst, but not totaly free of
6456           dependencies. Handle selection inconfigure.ac, so that they show up
6457           on the final list of what is build and what is not. Maybe they should
6458           better be moved to ext.
6459
6460 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
6461
6462         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
6463
6464         * configure.ac:
6465         * gst/Makefile.am:
6466           Check if libxml provides HTML parser which subparse needs.
6467           Fixes #451970.
6468
6469 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
6470
6471         * ext/alsa/gstalsa.c:
6472           Fix typo and compilation on big endian systems.
6473
6474 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
6475
6476         * gst/subparse/gstssaparse.c:
6477           Convert SSA newline codes into actual newline characters (#470766).
6478
6479 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
6480
6481         * docs/libs/gst-plugins-base-libs-sections.txt:
6482         * gst-libs/gst/pbutils/install-plugins.c:
6483         * gst-libs/gst/pbutils/install-plugins.h:
6484         * tests/check/libs/pbutils.c:
6485           API: also add gst_install_plugins_supported() while we're at it
6486           (see #470456).
6487
6488 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
6489
6490         * docs/libs/gst-plugins-base-libs-sections.txt:
6491         * gst-libs/gst/pbutils/missing-plugins.c:
6492         * gst-libs/gst/pbutils/missing-plugins.h:
6493         * tests/check/libs/pbutils.c:
6494           API: add gst_missing_*_installer_detail_new() convenience API so
6495           that applications that know exactly what they're missing can request
6496           installer detail strings for those items directly instead of having
6497           to first create a dummy missing-plugin message and then get the
6498           installer detail string from that.  Fixes #470456.
6499
6500 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
6501
6502         * gst/playback/gstdecodebin.c: (close_pad_link):
6503         We need to set up delayed-linking whenever the caps are non-fixed,
6504         not just when there are multiple types - use gst_pad_is_fixed()
6505         to test.
6506
6507 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
6508
6509         * gst-libs/gst/pbutils/missing-plugins.c:
6510           (gst_missing_plugin_message_get_installer_detail):
6511           Add missing separator in PID fallback case.
6512
6513 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
6514
6515         * ext/alsa/Makefile.am:
6516         There is no GST_PLUGINS_BASE_LIBS defined.
6517         
6518         * ext/alsa/gstalsa.c:
6519         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
6520         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
6521         Add support for ALSA 24-bit formats.
6522         snd_pcm_delay can return an error code, especially
6523         during XRUNS. In that case, the best we can do is assume
6524         delay = 0.
6525
6526         * gst/audioconvert/Makefile.am:
6527         Add flags from -base before any more-remote dependencies.
6528
6529 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
6530
6531         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
6532
6533         * gst/volume/gstvolume.c: (volume_choose_func),
6534         (volume_update_real_volume), (gst_volume_set_volume),
6535         (gst_volume_init), (volume_process_int32),
6536         (volume_process_int32_clamp), (volume_process_int24),
6537         (volume_process_int24_clamp), (volume_process_int16),
6538         (volume_process_int16_clamp), (volume_process_int8),
6539         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
6540         * gst/volume/gstvolume.h:
6541         Add support for int32, int24 and int8 to the volume element.
6542         Fixes #445529.
6543
6544 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
6545
6546         * tests/examples/Makefile.am:
6547           Fix even more.
6548
6549 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
6550
6551         * configure.ac:
6552         * docs/libs/Makefile.am:
6553         * docs/libs/gst-plugins-base-libs-docs.sgml:
6554         * docs/libs/gst-plugins-base-libs-sections.txt:
6555         * ext/gnomevfs/gstgnomevfssrc.c:
6556         * ext/gnomevfs/gstgnomevfssrc.h:
6557         * gst-libs/gst/Makefile.am:
6558         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6559         * pkgconfig/gstreamer-plugins-base.pc.in:
6560         * sys/v4l/v4lsrc_calls.c:
6561         * tests/examples/Makefile.am:
6562         * win32/common/config.h:
6563           Revert unwanted commit. many thanks to moap. I want a fix for 
6564           https://thomas.apestaart.org/moap/trac/ticket/239
6565
6566 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
6567
6568         * gst/volume/gstvolume.c:
6569           Move passthrough below gst_object_sync_values(). Fixes #442654.
6570
6571 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
6572
6573         * gst-libs/gst/audio/audio.c:
6574         Clarify the docs a little.
6575
6576 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
6577
6578         * gst/volume/gstvolume.c:
6579           Enable liboil for float and add more details about problems with
6580           int16.
6581
6582 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
6583
6584         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
6585         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
6586
6587 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
6588
6589         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
6590         When calculating the first timestamp of the buffers, don't go below 0
6591         and clip the samples because the offset was on the eos page.
6592         Fixes #466717.
6593
6594 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
6595
6596         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
6597         (gst_ogg_demux_collect_chain_info):
6598         Also submit the eos page when trying to find the first timestamp.
6599         See #466717.
6600
6601 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
6602
6603         * gst-libs/gst/audio/audio.h:
6604         Use gst_util_uint64_scale() instead of doing the math
6605         with double for GST_FRAMES_TO_CLOCK_TIME() and
6606         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
6607         prevents rounding errors. Fixes #467667.
6608
6609 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
6610
6611         * gst-libs/gst/rtsp/gstrtspconnection.c:
6612         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
6613         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
6614         * gst-libs/gst/rtsp/gstrtspconnection.h:
6615         Small cleanups.
6616         On shutdown, don't read the control socket yet.
6617         Set timeout value correctly in all cases.
6618         Add function to check if the server accepts reads or writes.
6619         API: gst_rtsp_connection_poll()
6620
6621         * gst-libs/gst/rtsp/gstrtspdefs.h:
6622         Fix compilation with -pedantic.
6623         Add enum for _poll.
6624
6625 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
6626
6627         Patch by: Olivier Crete  <tester at tester ca>
6628
6629         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
6630         (gst_basertppayload_getcaps):
6631         * gst-libs/gst/rtp/gstbasertppayload.h:
6632         Add getcaps vfunc to basertppayload. See #465146.
6633
6634 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
6635
6636         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
6637         Only post buffering messages when we are a stream.
6638
6639 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
6640
6641         * gst-libs/gst/pbutils/install-plugins.c:
6642         * gst-libs/gst/pbutils/missing-plugins.c:
6643           Small docs fix and addition.
6644
6645 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
6646
6647         * tests/icles/.cvsignore:
6648         * tests/icles/Makefile.am:
6649         * tests/icles/test-textoverlay.c:
6650           Add a dumb little test for textoverlay alignments.
6651
6652 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
6653
6654         Patch by: Dan Williams  <dcbw redhat com>
6655
6656         * ext/pango/gsttextoverlay.c:
6657         * ext/pango/gsttextoverlay.h:
6658           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
6659           "silent" property so there's a Since tag in the API reference.
6660
6661 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
6662
6663         * gst-libs/gst/rtp/gstbasertppayload.c:
6664         (gst_basertppayload_set_outcaps):
6665         * gst-libs/gst/rtp/gstbasertppayload.h:
6666         Improve caps negotiation so that downstream elements can confiure
6667         certain RTP properties by fixing them on the caps. See #465146.
6668         Add docs.
6669
6670 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
6671
6672         * docs/libs/gst-plugins-base-libs-sections.txt:
6673         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6674         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6675           Mark as deprecated some macros which were presumably meant to be
6676           private API and accidentally exposed in the public header file.
6677           Also actually _init() lock (only works at the moment because the
6678           struct is zeroed out when created and the initial values in the
6679           mutex struct are zeroes too). (#459585)
6680
6681 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
6682
6683         * docs/libs/Makefile.am:
6684           Remove cruft and do some cleanups.
6685
6686         * docs/libs/gst-plugins-base-libs-docs.sgml:
6687           Prepare for comming gtkdoc features (rebase against online docs).
6688
6689 2007-08-10  Michael Smith <msmith@fluendo.com>
6690
6691         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
6692           Debug output fixes.
6693         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
6694         (GST_START_TEST):
6695           Change the number of buffers used; 500 is too many and leads to
6696           timeouts.
6697
6698 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
6699
6700         * gst/playback/gstqueue2.c:
6701         * gst/videorate/gstvideorate.c:
6702           Printf format fixes (#465028).
6703
6704 2007-08-09  Michael Smith <msmith@fluendo.com>
6705
6706         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
6707           If we have a large (> 1 second) discontinuity, push a series of
6708           smaller buffers rather than a single very large buffer. Avoids
6709           unreasonably large single buffer allocations when encountering a
6710           large gap.
6711         * tests/check/elements/audiorate.c: (GST_START_TEST),
6712         (audiorate_suite):
6713           Add a test for this.
6714
6715 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
6716
6717         * gst/playback/gstplaybasebin.c: (group_commit),
6718         (queue_remove_probe), (queue_threshold_reached):
6719
6720         Patch by: Josep Torra Valles <josep@fluendo.com>
6721         Fixes: #465015
6722         Make sure we remove the check_queues buffer probe from the 
6723         correct queue to avoid racily going back to "buffering 99%" when
6724         buffering is actually complete.
6725
6726         Also, fix the spelling of Josep's surname in the ChangeLog.
6727
6728 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
6729
6730         * ext/ogg/gstoggmux.c:
6731           Do not leak oggmux instance.
6732         
6733         * ext/vorbis/vorbisenc.c:
6734           Also log values.
6735
6736 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6737
6738         * po/hu.po:
6739         * po/it.po:
6740         * po/nl.po:
6741         * po/uk.po:
6742         * po/vi.po:
6743           Updated translations.
6744
6745 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
6746
6747         patch by: Yang Hong <hongyang@redflag-linux.com>
6748
6749         * ext/pango/gsttextoverlay.c:
6750         * ext/pango/gsttextoverlay.h:
6751           Add 'silent' property to GstTimeOverlay. Fixes #462979
6752
6753 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
6754
6755         Patch by: Josep Torra Valles <josep@fluendo.com>
6756
6757         * docs/plugins/gst-plugins-base-plugins.args:
6758         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6759         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
6760         (gst_uri_decode_bin_get_property), (gen_source_element):
6761         Add connection-speed property. Fixes #464690.
6762
6763 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
6764
6765         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
6766
6767         * configure.ac:
6768         * gst-libs/gst/rtsp/Makefile.am:
6769         * gst-libs/gst/rtsp/gstrtspconnection.c:
6770         (gst_rtsp_connection_connect):
6771         Fix compilation on windows. Fixes #464320.
6772
6773 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
6774
6775         Patch by: Josep Torra Valles <josep@fluendo.com>
6776
6777         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
6778         (gst_play_base_bin_init), (queue_threshold_reached),
6779         (gen_source_element), (setup_substreams),
6780         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
6781         (gst_play_base_bin_get_streaminfo_value_array):
6782         * gst/playback/gstplaybasebin.h:
6783         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6784         (gst_play_bin_set_property), (gst_play_bin_get_property),
6785         (gst_play_bin_handle_redirect_message):
6786         Move connection-speed property from playbin to playbasebin so that we
6787         can also configure it in source elements that have the connection-speed
6788         property. Fixes #464028.
6789         Add some debug info here and there.
6790
6791 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
6792
6793         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
6794         Properly respond to conversion queries. Fixes #464079.
6795
6796 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
6797
6798         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
6799         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
6800         (gst_audio_test_src_init_sine_table),
6801         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
6802         * gst/audiotestsrc/gstaudiotestsrc.h:
6803         Add float/double and int32 support to audiotestsrc. Fixes #460422.
6804         Also set the default volume to the default value specified in the
6805         GParamSpec.
6806
6807 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
6808
6809         Patch by: Jens Granseuer <jensgr at gmx dot net>
6810
6811         * gst/audioconvert/gstaudioquantize.c:
6812         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
6813
6814 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
6815
6816         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
6817         Add rdt manager for rdt transport.
6818         Fix parsing of RDT transport.
6819
6820 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
6821
6822         * configure.ac:
6823         Back to CVS
6824
6825 === release 0.10.14 ===
6826
6827 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
6828
6829         * configure.ac:
6830           releasing 0.10.14, "Light Years Ahead"
6831
6832 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
6833
6834         * tests/check/libs/audio.c: (GST_START_TEST):
6835         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
6836
6837 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
6838
6839         * gst-libs/gst/audio/audio.c:
6840         When clipping a buffer with no timestamp, assume it is
6841         within the segment without warnings.
6842
6843         Fixes: #460978
6844
6845 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
6846
6847         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
6848         Fire the signal on the object, not the interface.
6849
6850 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
6851
6852         * gst-libs/gst/rtsp/.cvsignore:
6853         Ber. Don't include the full path, idiot.
6854
6855 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
6856
6857         * gst-libs/gst/rtsp/.cvsignore:
6858         Ignore generated files.
6859
6860 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
6861
6862         * gst-libs/gst/interfaces/Makefile.am:
6863         * gst-libs/gst/interfaces/interfaces-marshal.list:
6864         * gst-libs/gst/interfaces/rtspextension.c:
6865         * gst-libs/gst/interfaces/rtspextension.h:
6866         * gst-libs/gst/rtsp/Makefile.am:
6867         * gst-libs/gst/rtsp/gstrtsp.h:
6868         * gst-libs/gst/rtsp/gstrtspextension.c:
6869         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
6870         (gst_rtsp_extension_detect_server),
6871         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
6872         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
6873         (gst_rtsp_extension_configure_stream),
6874         (gst_rtsp_extension_get_transports),
6875         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
6876         * gst-libs/gst/rtsp/gstrtspextension.h:
6877         * gst-libs/gst/rtsp/rtsp-marshal.list:
6878         Move the rtspextension.h interface into gstrtspextension.h
6879         as part of libgstrtsp instead of libgstinterfaces, because it's
6880         only for use within plugins, not applications. 
6881         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
6882         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
6883         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
6884         is abstract.
6885
6886 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
6887
6888         * gst-libs/gst/interfaces/Makefile.am:
6889         * gst-libs/gst/interfaces/interfaces-marshal.list:
6890         * gst-libs/gst/interfaces/rtspextension.c:
6891         (gst_rtsp_extension_iface_init),
6892         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
6893         * gst-libs/gst/interfaces/rtspextension.h:
6894         Fix marshaller for the send signal.
6895         Add URL to stream selection interface method.
6896
6897 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
6898
6899         * gst-libs/gst/riff/Makefile.am:
6900         Pull in our dependencies from -base before those from outside.
6901
6902 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
6903
6904         * docs/libs/gst-plugins-base-libs-sections.txt:
6905         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
6906         * gst-libs/gst/rtsp/gstrtspbase64.h:
6907         API: gst_rtsp_base64_decode_ip()
6908         Added function to decode Base64 in-place.
6909
6910 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
6911
6912         * tests/check/libs/.cvsignore:
6913         Ignore the mixer test binary.
6914
6915 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
6916
6917         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
6918         Gratuitous comment change to trigger a rebuild on the buildbots.
6919
6920 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6921
6922         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
6923         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
6924         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
6925         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
6926         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
6927         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
6928         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
6929         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
6930         (gst_sdp_media_get_attribute_val):
6931         * gst-libs/gst/sdp/gstsdpmessage.h:
6932         Constify args where we can.
6933
6934 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6935
6936         * gst-libs/gst/interfaces/Makefile.am:
6937         * gst-libs/gst/interfaces/rtspextension.c:
6938         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
6939         (gst_rtsp_extension_detect_server),
6940         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
6941         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
6942         (gst_rtsp_extension_configure_stream),
6943         (gst_rtsp_extension_get_transports),
6944         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
6945         * gst-libs/gst/interfaces/rtspextension.h:
6946         Move interface for RTSP extensions from -good to here.
6947         Added helper methods to invoke interface methods.
6948
6949 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6950
6951         * docs/libs/gst-plugins-base-libs-sections.txt:
6952         * gst-libs/gst/rtsp/gstrtspdefs.h:
6953         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
6954         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
6955         (gst_rtsp_message_init_response),
6956         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
6957         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
6958         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
6959         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
6960         (gst_rtsp_message_get_body), (dump_key_value):
6961         * gst-libs/gst/rtsp/gstrtspmessage.h:
6962         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
6963         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
6964         (gst_rtsp_range_parse):
6965         * gst-libs/gst/rtsp/gstrtsprange.h:
6966         * gst-libs/gst/rtsp/gstrtsptransport.c:
6967         * gst-libs/gst/rtsp/gstrtspurl.c:
6968         Fix some more RTSP docs.
6969         Add some missing methods for dealing with messages.
6970
6971 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
6972
6973         * docs/libs/gst-plugins-base-libs-docs.sgml:
6974         * docs/libs/gst-plugins-base-libs-sections.txt:
6975         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
6976         * gst-libs/gst/rtsp/gstrtspbase64.h:
6977         * gst-libs/gst/rtsp/gstrtspconnection.c:
6978         (gst_rtsp_connection_connect), (add_auth_header),
6979         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
6980         (read_body), (gst_rtsp_connection_receive),
6981         (gst_rtsp_connection_next_timeout),
6982         (gst_rtsp_connection_reset_timeout),
6983         (gst_rtsp_connection_set_auth):
6984         * gst-libs/gst/rtsp/gstrtspconnection.h:
6985         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
6986         * gst-libs/gst/rtsp/gstrtspdefs.h:
6987         * gst-libs/gst/rtsp/gstrtspmessage.h:
6988         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
6989         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
6990         (gst_rtsp_range_parse):
6991         * gst-libs/gst/rtsp/gstrtspurl.h:
6992         Added beginnings of RTSP documentation.
6993
6994 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
6995
6996         * docs/libs/Makefile.am:
6997         * docs/libs/gst-plugins-base-libs-docs.sgml:
6998         * docs/libs/gst-plugins-base-libs-sections.txt:
6999         * gst-libs/gst/sdp/gstsdp.h:
7000         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
7001         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
7002         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7003         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
7004         (gst_sdp_message_get_attribute_val),
7005         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
7006         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
7007         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
7008         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
7009         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
7010         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
7011         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
7012         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
7013         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
7014         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
7015         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
7016         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
7017         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
7018         (gst_sdp_media_get_attribute_val_n),
7019         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
7020         (print_media), (gst_sdp_message_dump):
7021         * gst-libs/gst/sdp/gstsdpmessage.h:
7022         Document the SDP library.
7023         Add some of the missing SDPMedia methods.
7024
7025 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7026
7027         * configure.ac:
7028         * gst-libs/gst/Makefile.am:
7029         * gst-libs/gst/rtsp/Makefile.am:
7030         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
7031         * gst-libs/gst/rtsp/gstrtspbase64.h:
7032         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
7033         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
7034         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
7035         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
7036         (parse_response_status), (parse_request_line), (parse_line),
7037         (gst_rtsp_connection_read), (read_body),
7038         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
7039         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
7040         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
7041         (gst_rtsp_connection_set_auth):
7042         * gst-libs/gst/rtsp/gstrtspconnection.h:
7043         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
7044         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
7045         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
7046         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
7047         (gst_rtsp_find_method):
7048         * gst-libs/gst/rtsp/gstrtspdefs.h:
7049         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
7050         (gst_rtsp_message_new), (gst_rtsp_message_init),
7051         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
7052         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
7053         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
7054         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
7055         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
7056         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
7057         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
7058         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
7059         (gst_rtsp_message_dump):
7060         * gst-libs/gst/rtsp/gstrtspmessage.h:
7061         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7062         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7063         (gst_rtsp_range_parse), (gst_rtsp_range_free):
7064         * gst-libs/gst/rtsp/gstrtsprange.h:
7065         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
7066         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
7067         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
7068         (range_as_text), (rtsp_transport_mode_as_text),
7069         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
7070         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
7071         (gst_rtsp_transport_free):
7072         * gst-libs/gst/rtsp/gstrtsptransport.h:
7073         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
7074         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
7075         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
7076         * gst-libs/gst/rtsp/gstrtspurl.h:
7077         * gst-libs/gst/sdp/Makefile.am:
7078         * gst-libs/gst/sdp/gstsdp.h:
7079         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
7080         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
7081         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
7082         (gst_sdp_attribute_init), (gst_sdp_message_new),
7083         (gst_sdp_message_init), (gst_sdp_message_uninit),
7084         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
7085         (gst_sdp_media_uninit), (gst_sdp_media_free),
7086         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
7087         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
7088         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
7089         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
7090         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7091         (gst_sdp_message_get_attribute_val),
7092         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
7093         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
7094         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
7095         (gst_sdp_media_get_attribute_val_n),
7096         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
7097         (read_string), (read_string_del), (gst_sdp_parse_line),
7098         (gst_sdp_message_parse_buffer), (print_media),
7099         (gst_sdp_message_dump):
7100         * gst-libs/gst/sdp/gstsdpmessage.h:
7101         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7102         Move SDP and RTSP from helper objects in -good to a reusable library.
7103         Use a proper gst_ namespace.
7104
7105 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7106
7107         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
7108         (vorbis_dec_flush_decode):
7109         Use the new buffer clipping function from gstaudio here.
7110
7111 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7112
7113         * docs/libs/gst-plugins-base-libs-sections.txt:
7114         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
7115         * gst-libs/gst/audio/audio.h:
7116         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
7117         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
7118         Also add deprecation guards for gst_audio_structure_set_int() to the
7119         header.
7120
7121 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
7122
7123         * docs/libs/gst-plugins-base-libs-sections.txt:
7124           Cleanup the docs.
7125
7126 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
7127
7128         Patch by: Dan Williams <dcbw at redhat dot com>
7129
7130         * gst/playback/gstplaybasebin.c:
7131         (gst_play_base_bin_get_streaminfo_value_array):
7132         Don't return NULL when querying the stream info value array but instead
7133         return an empty array. Fixes #459204.
7134
7135 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
7136
7137         * gst/playback/gsturidecodebin.c:
7138           Init debug category before using it.
7139
7140 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
7141
7142         * gst-libs/gst/interfaces/mixer.h:
7143         Add padding vars in place of the signal pointers
7144         when building with DISABLE_DEPRECATED so that the
7145         interface structure doesn't change size.
7146
7147 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
7148
7149         * docs/libs/gst-plugins-base-libs-sections.txt:
7150         * ext/alsa/gstalsamixer.c:
7151         * ext/alsa/gstalsamixer.h:
7152         * ext/alsa/gstalsamixerelement.c:
7153         * ext/alsa/gstalsamixertrack.c:
7154         * gst-libs/gst/interfaces/mixer.c:
7155         * gst-libs/gst/interfaces/mixer.h:
7156         * gst-libs/gst/interfaces/mixeroptions.c:
7157         * gst-libs/gst/interfaces/mixeroptions.h:
7158         * gst-libs/gst/interfaces/mixertrack.c:
7159         * gst-libs/gst/interfaces/mixertrack.h:
7160         * tests/check/Makefile.am:
7161         * tests/check/libs/mixer.c:
7162
7163         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
7164         Fixes: #152864 
7165
7166         Add support for notifying mixer changes on the message bus, and
7167         implement it in alsamixer.
7168
7169         API: gst_mixer_get_mixer_flags
7170         API: gst_mixer_message_parse_mute_toggled
7171         API: gst_mixer_message_parse_record_toggled
7172         API: gst_mixer_message_parse_volume_changed
7173         API: gst_mixer_message_parse_option_changed
7174         API: GstMixerMessageType
7175         API: GstMixerFlags
7176
7177 2007-07-20  Michael Smith <msmith@fluendo.com>
7178
7179         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7180         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
7181           xcontext->im_format is only for testing XShm support (as the header
7182           file comments document). Use xvimage->im_format for everything else.
7183           Avoids spurious warnings on buffer allocation before setcaps.
7184
7185 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
7186
7187         * tests/examples/volume/Makefile.am:
7188         * tests/icles/Makefile.am:
7189           We should use $(LIBM).
7190
7191 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
7192
7193         * tests/icles/Makefile.am:
7194           This needs -lm.
7195
7196 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
7197
7198         * gst-libs/gst/rtp/gstbasertppayload.c:
7199         (gst_basertppayload_class_init), (gst_basertppayload_init),
7200         (gst_basertppayload_set_property),
7201         (gst_basertppayload_get_property):
7202         Don't break ABI, restore previous ranges. Keep the default random
7203         selection of timestamp and seqnum offset but as soon as the app sets a
7204         specific value, use that one.
7205
7206 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7207
7208         Patch by: Bastien Nocera <hadess at hadess dot net>
7209
7210         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
7211         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
7212         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7213         * sys/xvimage/xvimagesink.h:
7214         Add option to turn off double-buffering for debugging purposes.
7215         Fixes #437169.
7216
7217 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7218
7219         Patch by: Jorn Baayen <jorn at openedhand dot com>
7220
7221         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
7222         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
7223         (gst_ximagesink_init), (gst_ximagesink_class_init):
7224         * sys/ximage/ximagesink.h:
7225         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
7226         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
7227         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7228         * sys/xvimage/xvimagesink.h:
7229         add 'handle-expose' property. Useful for video widgets which may want to
7230         be in control of Expose behaviour. Fixes #380625
7231
7232 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7233
7234         * gst-libs/gst/rtp/gstbasertppayload.c:
7235         (gst_basertppayload_class_init), (gst_basertppayload_init),
7236         (gst_basertppayload_event), (gst_basertppayload_push),
7237         (gst_basertppayload_set_property),
7238         (gst_basertppayload_get_property),
7239         (gst_basertppayload_change_state):
7240         * gst-libs/gst/rtp/gstbasertppayload.h:
7241         Fix ranges of rtp payloader properties so that the full range can be
7242         used in addition to -1 (random).
7243         Fix wrong seqnum reporting in caps.
7244         Fixes #420326.
7245
7246 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
7247
7248         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
7249         (gst_video_rate_query):
7250         Use boilerplate.
7251         Add latency query, might not be perfect yet but already works a lot
7252         better. Fixes #442557.
7253
7254 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7255
7256         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
7257         (gst_xvimagesink_setcaps):
7258         * sys/xvimage/xvimagesink.h:
7259         After a caps change, redraw our borders to avoid garbage left there
7260         when the image format changes to a smaller size, like 16:9 -> 4:3
7261         Also, hold the flow_lock a bit longer in the set_caps while we're
7262         fiddling with the xcontext.
7263
7264 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7265
7266         * Makefile.am:
7267         * configure.ac:
7268         * tests/Makefile.am:
7269         Remove bogus check for libcheck, since we check for
7270         gstreamer-check and it pulls in the required info from there, and we
7271         weren't actually _using_ the information for libcheck ourselves
7272         anyway.
7273
7274 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7275
7276         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7277         (gst_ffmpeg_caps_to_pixfmt):
7278         Fix the r_mask test for RGBA32 on little-endian.
7279         Fix a stupid typo that would have obviously broken 
7280         compilation on big-endian, if anyone was testing.
7281
7282 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
7283
7284         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
7285         (paint_hline_str4):
7286         * gst/videotestsrc/videotestsrc.h:
7287         Add alpha to the color struct.
7288         Use a default alpha value of 255 instead of 128.
7289
7290 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
7291
7292         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
7293         (setup_source):
7294         Clear the dynamic pads counter when starting a new uri. This makes
7295         reusing playbin work again.
7296         Fixes #454264.
7297
7298 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
7299
7300         * configure.ac:
7301           Use pkg-config to locate check.
7302
7303 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
7304
7305         * configure.ac:
7306         * tests/check/elements/volume.c: (GST_START_TEST):
7307           Fix 'make check' build against core CVS.
7308
7309 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
7310
7311         * gst-libs/gst/interfaces/propertyprobe.c:
7312         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7313         * gst-libs/gst/tag/gstvorbistag.c:
7314           Make gtk-doc happy.
7315
7316 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
7317
7318         * gst-libs/gst/audio/gstbaseaudiosink.c:
7319         (gst_base_audio_sink_callback):
7320           Quick hack to make audiosinks stop at EOS when operating in
7321           pull-mode; needs to be fixed properly some day.
7322
7323 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
7324
7325         * docs/libs/gst-plugins-base-libs-sections.txt:
7326           Fix location of includes in the docs.
7327
7328 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
7329
7330         * gst/ffmpegcolorspace/avcodec.h:
7331         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7332         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7333         (gst_ffmpegcsp_avpicture_fill):
7334         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
7335         (img_get_alpha_info):
7336         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
7337         of the existing BGRA32 and RGBA32 formats with the alpha at the other
7338         end of the word. Partially fixes #451908
7339
7340 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
7341
7342         * docs/libs/Makefile.am:
7343         * docs/plugins/Makefile.am:
7344           Simplify --extra-dir as gtkdoc scans recursively.
7345
7346 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
7347
7348         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
7349         (gst_adder_request_new_pad):
7350         Make getcaps more robust by not using the proxycaps function. This makes
7351         sure that we don't end up recursively calling getcaps upstream.
7352         See #316248.
7353
7354 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
7355
7356         * gst/audioconvert/audioconvert.c:
7357         Include math.h to fix compilation.
7358
7359 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
7360
7361         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7362         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
7363         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
7364         format, as produced by some dc1394 cameras like the iSight.
7365         See http://www.fourcc.org/yuv.php#IYU1
7366
7367 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
7368
7369         * gst/audioconvert/Makefile.am:
7370         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
7371         (check_default), (audio_convert_prepare_context),
7372         (audio_convert_clean_context), (audio_convert_convert):
7373         * gst/audioconvert/audioconvert.h:
7374         * gst/audioconvert/gstaudioconvert.c:
7375         (gst_audio_convert_dithering_get_type),
7376         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
7377         (gst_audio_convert_init), (gst_audio_convert_set_caps),
7378         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
7379         * gst/audioconvert/gstaudioconvert.h:
7380         * gst/audioconvert/gstaudioquantize.c:
7381         (gst_audio_quantize_setup_noise_shaping),
7382         (gst_audio_quantize_free_noise_shaping),
7383         (gst_audio_quantize_setup_dither),
7384         (gst_audio_quantize_free_dither),
7385         (gst_audio_quantize_setup_quantize_func),
7386         (gst_audio_quantize_setup), (gst_audio_quantize_free):
7387         * gst/audioconvert/gstaudioquantize.h:
7388         Implement dithering and noise shaping in audioconvert. By default now
7389         TPDF dithering (and no noise shaping) will be used when converting
7390         from a higher bit depth to 20 bit depth or smaller, otherwise
7391         everything will be as it is now.
7392         For the last audioconvert in a pipeline it would make sense to
7393         use some kind of noise shaping, enabling it by default for all
7394         conversions would give undesired results though. Fixes #360246.
7395         * tests/check/elements/audioconvert.c: (setup_audioconvert),
7396         (GST_START_TEST):
7397         Adjust unit test for the new audioconvert.
7398
7399 2007-06-28  Wim Taymans  <wim@fluendo.com>
7400
7401         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
7402         Use other metrics as well when estimating the buffer level.
7403
7404 2007-06-28  Wim Taymans  <wim@fluendo.com>
7405
7406         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
7407         Small debug improvement.
7408
7409         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
7410         (plugin_init):
7411         Tweak the rate estimation period.
7412         When calculating the buffer filledness in rate estimation mode, don't
7413         mix it with other metrics.
7414
7415 2007-06-28  Wim Taymans  <wim@fluendo.com>
7416
7417         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
7418         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
7419         When creating the groups, allow for a 5 second, unlimited buffers
7420         preroll phase after which we expose the group.
7421         When the group is exposed, use a small number of buffers up to a 2
7422         second limit. Also disconnect the overrun signal from multiqueue when we
7423         exposed the group because it is not needed anymore.
7424
7425 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7426
7427         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
7428           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
7429           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
7430           (#451707); also, output some debugging info when dealing with
7431           freeform strings.
7432
7433         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
7434           Add unit test for the above.
7435
7436 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7437
7438         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
7439           Add description for Windows Media RTP caps.
7440
7441         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
7442           Remove RTP fields that don't define the format from caps.
7443
7444 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7445
7446         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
7447           Skip empty buffers, but not empty header buffers. That way the original
7448           vorbisdec unit test still passes (#451145); also, take into account
7449           that those empty packets might carry a granulepos.
7450
7451         * tests/check/Makefile.am:
7452         * tests/check/elements/vorbisdec.c:
7453         (_create_codebook_header_buffer), (_create_audio_buffer),
7454         (GST_START_TEST), (vorbisdec_suite):
7455           Add unit test that sends an empty packet.
7456
7457 2007-06-27  Wim Taymans  <wim@fluendo.com>
7458
7459         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
7460         Don't error out on 0-sized packets, just emit a warning because this is
7461         not a fatal error. Fixes #451145.
7462
7463 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
7464
7465         * docs/plugins/gst-plugins-base-plugins.args:
7466         * docs/plugins/gst-plugins-base-plugins.signals:
7467         * docs/plugins/inspect/plugin-adder.xml:
7468         * docs/plugins/inspect/plugin-alsa.xml:
7469         * docs/plugins/inspect/plugin-audioconvert.xml:
7470         * docs/plugins/inspect/plugin-audiorate.xml:
7471         * docs/plugins/inspect/plugin-audioresample.xml:
7472         * docs/plugins/inspect/plugin-audiotestsrc.xml:
7473         * docs/plugins/inspect/plugin-cdparanoia.xml:
7474         * docs/plugins/inspect/plugin-decodebin.xml:
7475         * docs/plugins/inspect/plugin-decodebin2.xml:
7476         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
7477         * docs/plugins/inspect/plugin-gdp.xml:
7478         * docs/plugins/inspect/plugin-gnomevfs.xml:
7479         * docs/plugins/inspect/plugin-libvisual.xml:
7480         * docs/plugins/inspect/plugin-ogg.xml:
7481         * docs/plugins/inspect/plugin-pango.xml:
7482         * docs/plugins/inspect/plugin-playbin.xml:
7483         * docs/plugins/inspect/plugin-subparse.xml:
7484         * docs/plugins/inspect/plugin-tcp.xml:
7485         * docs/plugins/inspect/plugin-theora.xml:
7486         * docs/plugins/inspect/plugin-typefindfunctions.xml:
7487         * docs/plugins/inspect/plugin-video4linux.xml:
7488         * docs/plugins/inspect/plugin-videorate.xml:
7489         * docs/plugins/inspect/plugin-videoscale.xml:
7490         * docs/plugins/inspect/plugin-videotestsrc.xml:
7491         * docs/plugins/inspect/plugin-volume.xml:
7492         * docs/plugins/inspect/plugin-vorbis.xml:
7493         * docs/plugins/inspect/plugin-ximagesink.xml:
7494         * docs/plugins/inspect/plugin-xvimagesink.xml:
7495           Update docs with caps info.
7496
7497 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
7498
7499         * po/POTFILES.in:
7500           Add more files with translatable strings (#450875).
7501
7502 2007-06-23  Edward Hervey  <edward@fluendo.com>
7503
7504         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
7505         The chain should be freed if we error out here, else it will leak.
7506         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
7507         (cleanup_decodebin):
7508         Don't forget to *properly* remove the signals, else it will leak.
7509
7510 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
7511
7512         * MAINTAINERS:
7513         Updating all the maintainers files
7514
7515 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
7516
7517         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
7518         (main):
7519           Destroy and recreate parse-launch based pipeline after stop to be able
7520           to play again. Reorder some code and add more comments.
7521
7522 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
7523
7524         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
7525         When handling a delayed-caps notification case, mark
7526         the group as dynamic so that the nbdynamic count is
7527         incremented and decremented correctly. Fixes: #449156
7528         Patch by: Wim Taymans <wim@fluendo.com>
7529
7530 2007-06-19  Andy Wingo  <wingo@pobox.com>
7531
7532         * gst-libs/gst/audio/gstbaseaudiosink.c
7533         (gst_base_audio_sink_init): Enable pull-mode operation.
7534
7535 2007-06-19  Michael Smith <msmith@fluendo.com>
7536
7537         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7538           Change minimum rate back to 1000 to allow low-sample-rate wav files
7539           to play back.
7540
7541 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7542
7543         * po/vi.po:
7544           Update translations.
7545
7546 2007-06-15  David Schleef  <ds@schleef.org>
7547
7548         * gst/playback/gstqueue2.c:
7549           Fix compile error from ignored return value.
7550
7551 2007-06-15  Michael Smith <msmith@fluendo.com>
7552
7553         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
7554           Update tmpbuf for all neccesary rows, not just one, as is required
7555           when downscaling.
7556           Fixes #402076.
7557
7558 2007-06-15  Michael Smith <msmith@fluendo.com>
7559
7560         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
7561         (eos_buffer_probe):
7562           Add a test that ensures we set DELTA_UNIT on all non-header,
7563           non-video buffers, if we have a video stream.
7564         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
7565         (gst_ogg_mux_process_best_pad):
7566           Move setting delta_pad to earlier, where we inspect all pads, so
7567           that leading audio pages don't get DELTA_UNIT unset if they come
7568           before the first DELTA_UNIT from video pages. Fixes the newly-added
7569           test. Fixes #385527.
7570
7571 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7572
7573         * tests/check/pipelines/streamheader.c: (streamheader_suite):
7574           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
7575           fails on the p5-ppc64 build bot and the failure looks like it is due
7576           to the same issue as #348114, ie. a compiler bug.
7577
7578 2007-06-13  Edward Hervey  <edward@fluendo.com>
7579
7580         * gst/playback/gstqueue2.c: (gst_queue_create_read):
7581         Fix build on MacOSX.
7582
7583 2007-06-13  Wim Taymans  <wim@fluendo.com>
7584
7585         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
7586         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
7587         Fix compilation on mingw. Fixes #446972.
7588
7589 2007-06-12  Wim Taymans  <wim@fluendo.com>
7590
7591         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
7592
7593         * gst/playback/gstqueue2.c: (update_buffering),
7594         (gst_queue_locked_enqueue):
7595         Fix a division by zero when the max percent is <= 0. Fixes #446572.
7596         also update the buffering status when receiving events. Fixes #446551.
7597
7598 2007-06-11  Wim Taymans  <wim@fluendo.com>
7599
7600         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
7601
7602         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
7603         (gst_queue_handle_src_query):
7604         Wait for preroll before attempting to forward a duration query upstream.
7605         Fixes #445505.
7606
7607 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
7608
7609         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
7610         (gst_base_rtp_depayload_set_gst_timestamp):
7611         Use G_GINT64_CONSTANT macro for int64 constant.
7612         * win32/common/libgstinterfaces.def:
7613         * win32/common/libgsttag.def:
7614         Add new exported functions.
7615
7616 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
7617
7618         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
7619           The BOS page of the first Dirac video stream needs to come before
7620           the BOS page of any Vorbis streams or other audio streams, just like
7621           it is with Theora.
7622
7623 2007-06-07  Wim Taymans  <wim@fluendo.com>
7624
7625         * gst/playback/gstqueue2.c: (gst_queue_get_range):
7626         Fix compilation.
7627
7628 2007-06-06  Wim Taymans  <wim@fluendo.com>
7629
7630         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
7631
7632         * gst/playback/gstqueue2.c: (gst_queue_init),
7633         (gst_queue_handle_sink_event), (gst_queue_chain),
7634         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
7635         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
7636         (gst_queue_src_activate_pull):
7637         Add pull based scheduling and fix some deadlocks. Fixes #444523.
7638         Does not yet completely work because duration queries upstream won't
7639         block yet.
7640
7641 2007-06-06  Wim Taymans  <wim@fluendo.com>
7642
7643         * configure.ac:
7644         * gst/playback/gstqueue2.c: (gst_queue_create_read):
7645         Some more fseeko checks.
7646
7647 2007-06-06  Wim Taymans  <wim@fluendo.com>
7648
7649         * configure.ac:
7650         check for large file support.
7651
7652 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
7653
7654         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
7655
7656         * gst/subparse/gstsubparse.c: (parse_subrip),
7657         (subviewer_unescape_newlines), (parse_subviewer),
7658         (gst_sub_parse_data_format_autodetect),
7659         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
7660         * gst/subparse/gstsubparse.h:
7661         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
7662         * tests/check/elements/subparse.c: (GST_START_TEST),
7663         (subparse_suite):
7664         Add a unit test for both SubViewer formats.
7665
7666 2007-06-01  Michael Smith <msmith@fluendo.com>
7667
7668         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
7669           Don't overflow intermediate values when seeking to large time values
7670           in audiotestsrc.
7671
7672 2007-06-05  Wim Taymans  <wim@fluendo.com>
7673
7674         * gst/playback/gstqueue2.c: (gst_queue_have_data),
7675         (gst_queue_create_read), (gst_queue_read_item_from_file),
7676         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
7677         Include stdio to define fseeko.
7678
7679 2007-06-05  Wim Taymans  <wim@fluendo.com>
7680
7681         Patch by: Edward Hervey  <edward@fluendo.com>
7682
7683         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
7684         (gst_v4lsrc_query):
7685         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
7686
7687 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
7688
7689         * gst-libs/gst/riff/Makefile.am:
7690         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
7691           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
7692           our own implementation.
7693
7694 2007-06-05  Wim Taymans  <wim@fluendo.com>
7695
7696         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7697         (gst_base_rtp_depayload_setcaps),
7698         (gst_base_rtp_depayload_set_gst_timestamp),
7699         (gst_base_rtp_depayload_change_state):
7700         Handle timestamp wraparound.
7701
7702 2007-06-05  Wim Taymans  <wim@fluendo.com>
7703
7704         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
7705         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
7706         (gst_uri_decode_bin_change_state):
7707         Make sure we name srcpads uniquely even when using different internal
7708         decodebins.
7709         Signal no-more-pads when no more dynamic elements exist.
7710         Remove pads on cleanup.
7711
7712 2007-06-05  Wim Taymans  <wim@fluendo.com>
7713
7714         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
7715
7716         * gst/playback/gstqueue2.c: (gst_queue_class_init),
7717         (gst_queue_init), (gst_queue_finalize),
7718         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
7719         (gst_queue_create_read), (gst_queue_read_item_from_file),
7720         (gst_queue_open_temp_location_file),
7721         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
7722         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
7723         (gst_queue_is_empty), (gst_queue_is_filled),
7724         (gst_queue_change_state), (gst_queue_set_temp_location),
7725         (gst_queue_set_property):
7726         Add support for filebased buffering. Fixes #441264.
7727
7728 2007-06-05  Wim Taymans  <wim@fluendo.com>
7729
7730         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
7731         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
7732         (caps_notify_group_cb), (gst_decode_group_new),
7733         (gst_decode_group_free):
7734         Add support for delayed caps fixation when autoplugging.
7735         Optimize cases where a multiqueue is not needed/wanted, like right after
7736         anything that is not a demuxer.
7737
7738 2007-06-05  Wim Taymans  <wim@fluendo.com>
7739
7740         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
7741         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
7742         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
7743         consideratly speedup ogg chain detection by not trying to find a base
7744         timestamp for skeleton streams. 
7745
7746 2007-06-05  Wim Taymans  <wim@fluendo.com>
7747
7748         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
7749         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
7750         (gst_multi_fd_sink_remove_flush),
7751         (gst_multi_fd_sink_remove_client_link),
7752         (gst_multi_fd_sink_handle_client_write),
7753         (gst_multi_fd_sink_handle_clients):
7754         * gst/tcp/gstmultifdsink.h:
7755         Add support for remove_flush.
7756
7757 2007-06-05  Wim Taymans  <wim@fluendo.com>
7758
7759         * docs/design/draft-keyframe-force.txt:
7760         * ext/theora/theoraenc.c: (theora_enc_sink_event),
7761         (theora_enc_chain):
7762         Add draft design for forcing keyframes in encoders and implement in
7763         theoraenc.
7764
7765 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
7766
7767         * configure.ac:
7768           Back to CVS
7769
7770 === release 0.10.13 ===
7771
7772 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
7773
7774         * configure.ac:
7775           releasing 0.10.13, "What's Going on?"
7776
7777 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
7778
7779         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7780         In riff, the depth is stored in the size field but it just means that
7781         the least significant bits are cleared. We can therefore just play
7782         the sample as if it had a depth == width. Fixes: #440997
7783
7784         Patch by: Wim Taymans <wim@fluendo.com> 
7785         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
7786
7787 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
7788
7789         * gst-libs/gst/floatcast/floatcast.h:
7790         Define inline when needed on win32 builds. Fixes: #441295
7791         Patch by: Sebastien Moutte  <sebastien@moutte.net>
7792
7793 2007-05-29  Wim Taymans  <wim@fluendo.com>
7794
7795         * gst/playback/gstplaybasebin.c: (queue_overrun),
7796         (no_more_pads_full):
7797         Stop buffering when the group is commited because the queues filled up.
7798         Fixes #442024.
7799
7800 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
7801
7802         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
7803         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
7804         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
7805         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
7806         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
7807         * ext/alsa/gstalsamixer.h:
7808         * ext/alsa/gstalsamixerelement.c:
7809         (gst_alsa_mixer_element_interface_supported),
7810         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
7811         (gst_alsa_mixer_element_set_property),
7812         (gst_alsa_mixer_element_get_property),
7813         (gst_alsa_mixer_element_change_state):
7814         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
7815         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
7816         (gst_mixer_option_changed):
7817         * gst-libs/gst/interfaces/mixer.h:
7818         Revert commits towards #152864 made so far. We'll pick it up again
7819         after the 0.10.13 release.
7820
7821 2007-05-24  Wim Taymans  <wim@fluendo.com>
7822
7823         * gst-libs/gst/audio/gstbaseaudiosink.c:
7824         (gst_base_audio_sink_render):
7825         After an interrupt (PAUSED/flush) assume that the next sample should not
7826         be aligned to the previous sample. Fixes #417992.
7827
7828 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
7829
7830         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7831           Don't add channels and rate fields to the template caps for
7832           audio/x-dts, as wavparse might not always be able to set them,
7833           which would then lead to 'caps are not a real subset of the
7834           template caps' warnings.
7835
7836 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
7837
7838         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
7839         Handle unknown or invalid pads without crashing, as might occur if
7840         a media file like an mp3 is specified as a subtitle file.
7841         Fixes: #410039
7842
7843 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
7844
7845         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
7846         (setup_sinks):
7847         Block the subtitle bin output queue before ghosting it and linking,
7848         then unblock after. This avoids spurious not-linked errors caused 
7849         by the queue starting up (because it gets linked when it is ghosted). 
7850         Fixes: #350299
7851
7852 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
7853
7854         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
7855         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
7856         file. Avoids flukes where the input gets typefound to some valid but
7857         useless type.
7858
7859 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7860
7861         * tests/check/Makefile.am:
7862         * tests/check/elements/.cvsignore:
7863         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
7864         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
7865           Add unit test for gnomevfssink seeking and position reporting for
7866           file:// URIs.
7867
7868 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7869
7870         Patch by: Mark Nauwelaerts <manauw at skynet be>
7871
7872         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
7873         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
7874         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
7875         * ext/gnomevfs/gstgnomevfssink.h:
7876           Fix position reporting, especially after a seek (from upstream),
7877           see #412648.
7878
7879 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7880
7881         * ext/cdparanoia/gstcdparanoiasrc.c:
7882           Repair umlaut.
7883
7884 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
7885
7886         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7887         Specify the full valid range for MP3 samplerates. Fixes a regression
7888         caused by extra header checks since the last release.
7889
7890 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
7891
7892         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
7893         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
7894         Fix a locking-order bug I introduced with my changes the other day.
7895         Patch by Mike Smith.
7896
7897 2007-05-21  Michael Smith <msmith@fluendo.com>
7898
7899         * ext/theora/theoradec.c: (theora_handle_data_packet):
7900           Don't look inside 0-length packets (which indicate duplicated
7901           frames)
7902
7903 2007-05-21  Wim Taymans  <wim@fluendo.com>
7904
7905         * ext/cdparanoia/gstcdparanoiasrc.c:
7906         (gst_cd_paranoia_src_read_sector):
7907         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7908         (gst_base_audio_src_create):
7909         Small cleanups.
7910
7911         * ext/theora/theoradec.c: (theora_dec_sink_event):
7912         Fix typo.
7913
7914         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7915         (gst_base_rtp_depayload_set_gst_timestamp):
7916         Add some FIXME
7917
7918         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
7919         And some debug info when a FIXME path is hit.
7920
7921 2007-05-21  Wim Taymans  <wim@fluendo.com>
7922
7923         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7924         (gst_base_rtp_audio_payload_class_init),
7925         (gst_base_rtp_audio_payload_init),
7926         (gst_base_rtp_audio_payload_finalize),
7927         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
7928         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
7929         (gst_base_rtp_payload_audio_handle_event):
7930         Some cleanups, remove minptime property as it is now in the parent
7931         class.
7932         Override parent class event function.
7933
7934         * gst-libs/gst/rtp/gstbasertppayload.c:
7935         (gst_basertppayload_class_init), (gst_basertppayload_init),
7936         (gst_basertppayload_event), (gst_basertppayload_set_property),
7937         (gst_basertppayload_get_property):
7938         * gst-libs/gst/rtp/gstbasertppayload.h:
7939         Add min-ptime property.
7940         Add handle-event vmethod. Fixes #415001.
7941
7942 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
7943
7944         * gst-libs/gst/audio/gstbaseaudiosink.c
7945           (gst_base_audio_sink_change_state):
7946           Fix typo in comment.
7947
7948         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
7949           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
7950           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
7951           close_link):
7952         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
7953           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
7954           Remove trailing whitespaces in comments.
7955
7956         * gst/volume/Makefile.am:
7957           Fix tabs.
7958
7959 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
7960
7961         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
7962
7963         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
7964           set_option, get_option, _gst_reserved):
7965           Revert reordering functions (keep ABI).
7966
7967 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
7968
7969         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
7970         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
7971         (gst_ximagesink_show_frame):
7972         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
7973         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
7974         (gst_xvimagesink_show_frame):
7975         When we create our own window, indicate that we handle the 
7976         WM_DELETE client message from the window manager, so that it won't 
7977         kill our window (and our app) along with it. Handle ClientMessage,
7978         post an error on the bus, and close the window. Further buffers
7979         arriving will result in a FlowError because the window has been
7980         destroyed.
7981
7982         Fixes: #393975
7983
7984         Clean up the X event handling loop and make them the same for
7985         both xvimagesink and ximagesink while I'm at it.
7986
7987 2007-05-17  Wim Taymans  <wim@fluendo.com>
7988
7989         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
7990         Make decodebin2 autoplug depayloaders too.
7991
7992         * gst/playback/gsturidecodebin.c: (source_new_pad):
7993         Set the newly created decoder in a usable state when autoplugging a
7994         dynamic source such as RTSP.
7995
7996 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
7997
7998         * gst/playback/gststreaminfo.c: (cb_probe):
7999           Ignore video-codec tag for audio streams and ignore audio-codec tags
8000           for video streams. Should make codec name collection a bit more
8001           robust against sloppy demuxers that send tag events containing both
8002           tags down each pad.
8003
8004 2007-05-17  Wim Taymans  <wim@fluendo.com>
8005
8006         * gst/playback/gstqueue2.c: (update_rates):
8007         Tweak the buffering thresholds a little.
8008         Update the buffer size with the previously calculate rate instead of
8009         only when we calculate a new rate so that we get smoother buffering
8010         updates.
8011
8012         * gst/playback/Makefile.am:
8013         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
8014         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
8015         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
8016         (gst_uri_decode_bin_get_property), (unknown_type),
8017         (add_element_stream), (no_more_pads_full), (no_more_pads),
8018         (source_no_more_pads), (new_decoded_pad), (array_has_value),
8019         (gen_source_element), (has_all_raw_caps), (analyse_source),
8020         (remove_decoders), (make_decoder), (remove_source),
8021         (source_new_pad), (setup_source), (decoder_query_init),
8022         (decoder_query_duration_fold), (decoder_query_duration_done),
8023         (decoder_query_position_fold), (decoder_query_position_done),
8024         (decoder_query_latency_fold), (decoder_query_latency_done),
8025         (decoder_query_seeking_fold), (decoder_query_seeking_done),
8026         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
8027         (gst_uri_decode_bin_change_state), (plugin_init):
8028         New element that intergrates a source, optional buffering element and
8029         decodebin.
8030
8031 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
8032
8033         * configure.ac:
8034           Bump libtheora requirement to 1.0alpha5 for the pixformat check
8035           (also has a .pc file, so we don't need the fallback check any
8036           longer). Fixes #438840.
8037
8038 2007-05-17  Wim Taymans  <wim@fluendo.com>
8039
8040         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8041         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
8042         (apply_segment), (apply_buffer), (update_buffering),
8043         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
8044         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8045         (gst_queue_handle_sink_event), (gst_queue_is_filled),
8046         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
8047         (plugin_init):
8048         fix build.
8049
8050 2007-05-17  Wim Taymans  <wim@fluendo.com>
8051
8052         * gst/playback/Makefile.am:
8053         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8054         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
8055         (gst_queue_getcaps), (gst_queue_bufferalloc),
8056         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
8057         (apply_buffer), (update_buffering), (reset_rate_timer),
8058         (update_rates), (gst_queue_locked_flush),
8059         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8060         (gst_queue_handle_sink_event), (gst_queue_is_empty),
8061         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
8062         (gst_queue_loop), (gst_queue_handle_src_event),
8063         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
8064         (gst_queue_src_activate_push), (gst_queue_change_state),
8065         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
8066         On our way to playbin2 this is the new network queue that does buffering
8067         all by itself using high and low watermarks. It can also measure up and
8068         downstream bandwidth to optimally size the queue.
8069
8070 2007-05-17  Michael Smith <msmith@fluendo.com>
8071
8072         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8073         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
8074           Use the segment->last_stop value to calculate the next timestamp to
8075           generate after a seek; not the segment->start value.
8076
8077 2007-05-15  David Schleef  <ds@schleef.org>
8078
8079         * docs/Makefile.am: Install docs even when --disable-gtk-doc
8080           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
8081
8082 2007-05-15  Wim Taymans  <wim@fluendo.com>
8083
8084         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8085         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
8086         Some more chained streaming ogg timestamp fixes.
8087
8088 2007-05-15  Wim Taymans  <wim@fluendo.com>
8089
8090         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8091         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8092         (gst_ogg_demux_handle_page):
8093         Add some FIXMEs.
8094         Fix chain start/stop segment handling based on patch by
8095         <ahalda at cs dot mcgill dot ca> see #320984.
8096
8097 2007-05-15  Michael Smith <msmith@fluendo.com>
8098
8099         * configure.ac:
8100           We don't require a C++ compiler. So don't require one.
8101
8102 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8103
8104         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
8105           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8106           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
8107           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8108           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
8109           gst_alsa_mixer_update_track):
8110           Apply some of the cleanup Tim suggested in #152864 afterwards.
8111
8112 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8113
8114         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8115
8116         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
8117           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
8118           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
8119           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8120           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
8121           gst_alsa_mixer_handle_source_callback,
8122           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8123           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
8124           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
8125           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
8126           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
8127           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
8128         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
8129         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
8130           gst_alsa_mixer_element_interface_supported,
8131           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
8132           gst_alsa_mixer_element_set_property,
8133           gst_alsa_mixer_element_get_property,
8134           gst_alsa_mixer_element_change_state):
8135         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
8136         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
8137           gst_mixer_option_changed):
8138         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
8139           volume_changed, option_changed, _gst_reserved):
8140           Implement notification for alsamixer. Fixes #152864
8141
8142 2007-05-14  David Schleef  <ds@schleef.org>
8143
8144         * gst/videotestsrc/videotestsrc.c:
8145         * gst/videotestsrc/videotestsrc.h:
8146           Add support for video/x-raw-bayer.
8147
8148 2007-05-12  David Schleef  <ds@schleef.org>
8149
8150         * sys/xvimage/xvimagesink.c:
8151           Add some sanity checking for the XVImage size returned by X.
8152           Related to #377400.
8153
8154 2007-05-12  Wim Taymans  <wim@fluendo.com>
8155
8156         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8157         (gst_base_rtp_depayload_setcaps),
8158         (gst_base_rtp_depayload_set_gst_timestamp):
8159         Parse and use additional caps fields as described in updated
8160         application/x-rtp caps spec.
8161
8162 2007-05-12  Wim Taymans  <wim@fluendo.com>
8163
8164         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8165         (gst_ogg_demux_collect_chain_info):
8166         If there is a stream in a chain without any data packets, ignore the
8167         stream in the total length calculations. Might be related to #436820.
8168
8169 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
8170
8171         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
8172         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
8173         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
8174         (mpeg_video_type_find), (mpeg_video_stream_type_find),
8175         (plugin_init):
8176
8177         Consolidate and re-work our mpeg system stream detection to probe
8178         more packets and produce a higher confidence result. Fixes a
8179         regression caused by lowering the typefind probability last year
8180         - related to bug #397810. Remove the redundant MPEG-1 specific 
8181         typefind function, as the new one detects both MPEG-1 & MPEG-2
8182         happily.
8183
8184         Also cleanup the MPEG elementary and MPEG-TS detection functions a
8185         little. 
8186
8187         Tested against my media test directory, with some improvements and
8188         no regressions.
8189
8190 2007-05-10  Wim Taymans  <wim@fluendo.com>
8191
8192         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
8193         (queue_out_of_data):
8194         Connect to the new queue "pushing" signal instead of the broken
8195         "running" one.
8196
8197 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
8198
8199         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8200         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
8201         Move variable declaration before the first instruction.
8202         * gst/videotestsrc/videotestsrc.c:
8203         Define M_PI if it's not defined yet.
8204         * win32/common/libgstrtp.def:
8205         Add new exported functions.
8206
8207 2007-05-09  Michael Smith <msmith@fluendo.com>
8208
8209         * ext/theora/theoradec.c: (theora_handle_type_packet):
8210           gst_pad_push_event() does not return a GstFlowReturn!
8211
8212 2007-05-09  Wim Taymans  <wim@fluendo.com>
8213
8214         * tests/examples/seek/scrubby.c: (stop_cb), (main):
8215         * tests/examples/seek/seek.c: (do_seek):
8216         Some small cosmetic changes.
8217
8218 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
8219
8220         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
8221           gst_adder_change_state):
8222         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
8223           segment_pending, segment_position, segment_rate):
8224           Handle playback-rate on adder.
8225
8226 2007-05-07  Michael Smith <msmith@fluendo.com>
8227
8228         * ext/theora/gsttheoradec.h:
8229         * ext/theora/theoradec.c: (gst_theora_dec_reset),
8230         (theora_dec_sink_event), (theora_handle_comment_packet),
8231         (theora_handle_type_packet), (theora_dec_change_state):
8232           Don't push events (newsegment, tags) before initialising the
8233           decoder.
8234           This is neccesary for seeking to work correctly in gnonlin.
8235
8236 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
8237
8238         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8239         * gst/adder/gstadder.c:
8240         * gst/audiotestsrc/gstaudiotestsrc.c
8241           (gst_audio_test_src_create_white_noise):
8242         * gst/videotestsrc/gstvideotestsrc.c:
8243         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
8244           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
8245           volume_sink_template, volume_src_template, gst_volume_init,
8246           volume_process_double, volume_process_int16,
8247           volume_process_int16_clamp):
8248           Doc fixes and formatting.
8249
8250 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
8251
8252         * tests/check/Makefile.am:
8253         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
8254           Minimal check for volume's GstController usability; also another
8255           test for #422295.
8256
8257 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
8258
8259         * gst-libs/gst/cdda/gstcddabasesrc.c:
8260         (gst_cdda_base_src_add_track):
8261           Fix it so that it (a) makes sense and (b) doesn't break
8262           everything cdda-related including the unit test.
8263
8264 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
8265
8266         * gst-libs/gst/cdda/gstcddabasesrc.c:
8267         (gst_cdda_base_src_add_track):
8268           Fix build when disabling asserts.
8269
8270 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
8271
8272         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
8273           When XShm is not available, we might get row strides that are not
8274           rounded up to multiples of four; this is bad, because virtually
8275           every RGB-processing element in GStreamer assumes rowstrides are
8276           rounded up to multiples of four, so let's allocate at least enough
8277           memory to avoid crashes in this case. The image will still be
8278           displayed distorted though if this happens, so that still needs
8279           fixing (maybe by allocating a bigger image with an 'even' width
8280           and then clipping it appropriately when rendering - something for
8281           Xlib aficionados in any case).
8282
8283 2007-05-03  Michael Smith <msmith@fluendo.com>
8284
8285         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
8286           If a buffer doesn't have a timestamp, assume it's contiguous with
8287           the previous buffer, and synthesise timestamps appropriately.
8288
8289 2007-05-03  Edward Hervey  <edward@fluendo.com>
8290
8291         * tests/check/elements/videorate.c: (GST_START_TEST):
8292         Set buffer timestamp to a valid value in order to test the buffer
8293         really does stay in videorate.
8294
8295 2007-05-03  Edward Hervey  <edward@fluendo.com>
8296
8297         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
8298         There is no sensible way to handle incoming buffers which don't have a
8299         valid timestamp. We therefore discard them and wait for the next one.
8300
8301 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
8302
8303         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
8304         * gst/playback/gstdecodebin2.c: (plugin_init):
8305           Better error message for text files.
8306
8307 2007-04-29  Wim Taymans  <wim@fluendo.com>
8308
8309         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
8310         Fix offset bug in generation RR packets.
8311
8312 2007-04-27  Julien MOUTTE  <julien@moutte.net>
8313
8314         * ext/theora/theoradec.c: (_theora_granule_time),
8315         (theora_dec_push_forward), (theora_handle_data_packet),
8316         (theora_dec_decode_buffer): Calculate buffer duration correctly
8317         to generate a perfect stream (#433888).
8318         * gst/audioresample/gstaudioresample.c:
8319         (audioresample_check_discont): Glib provides ABS.
8320
8321 2007-04-27  Wim Taymans  <wim@fluendo.com>
8322
8323         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
8324         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
8325         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
8326         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
8327         (gst_rtcp_packet_bye_set_reason):
8328         * gst-libs/gst/rtp/gstrtcpbuffer.h:
8329         Fix RB block parsing and writing.
8330         Add support for constructing BYE packets.
8331
8332 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
8333
8334         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
8335         (gst_base_audio_src_create):
8336         * po/POTFILES.in:
8337           When posting a warning message because samples were dropped, post
8338           something more intelligible than he default error message for clock
8339           errors which is just confusing in this context (#432984).
8340
8341 2007-04-25  Wim Taymans  <wim@fluendo.com>
8342
8343         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
8344         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
8345         (read_packet_header), (gst_rtcp_packet_move_to_next),
8346         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
8347         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
8348         (gst_rtcp_packet_sdes_get_item_count),
8349         (gst_rtcp_packet_sdes_first_item),
8350         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
8351         (gst_rtcp_packet_sdes_first_entry),
8352         (gst_rtcp_packet_sdes_next_entry),
8353         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
8354         (gst_rtcp_packet_sdes_add_entry):
8355         * gst-libs/gst/rtp/gstrtcpbuffer.h:
8356         Implement code to write SR, RR and SDES packets.
8357
8358 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
8359
8360         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
8361
8362         * sys/ximage/ximagesink.c:
8363           Fix build if XShm is not available (#432362).
8364
8365 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
8366
8367         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
8368         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
8369         pointers to random memory which are passed to g_free() when
8370         audio_convert_prepare_context() is called the first time.
8371
8372 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
8373
8374         Patch by: Dan Williams <dcbw redhat com>
8375
8376         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
8377           Don't leak incoming buffer if gst_pad_push() returns a
8378           non-OK flow. Fixes #432755.
8379          
8380         * tests/check/elements/videorate.c: (GST_START_TEST),
8381         (videorate_suite):
8382           Unit test for the above by Yours Truly.
8383
8384 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
8385
8386         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
8387         (gst_adder_sink_event), (gst_adder_collected):
8388           Fix non-flushing segmented seeks, Fixes #340060 for me
8389
8390 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8391
8392         Patch by: Olivier Crete  <tester at tester ca>
8393
8394         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8395         (gst_base_rtp_audio_payload_class_init),
8396         (gst_base_rtp_audio_payload_init),
8397         (gst_base_rtp_audio_payload_dispose):
8398           Chain up to parent class in dispose function; get rid of
8399           unnecessary 'diposed' flag in private structure (#415001).
8400
8401 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8402
8403         * docs/libs/gst-plugins-base-libs.types:
8404         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8405         (gst_base_rtp_audio_payload_class_init):
8406         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8407         * gst-libs/gst/rtp/gstbasertppayload.c:
8408           Some minor docs fixes and additions; also add missing 'Since' bits.
8409
8410 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8411
8412         Patch by: Zeeshan Ali  <zeenix gmail com>
8413
8414         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8415         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
8416         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
8417         (gst_base_rtp_audio_payload_push):
8418         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
8419           The recently-added gst_base_rtp_audio_payload_push() should take an
8420           object of type GstBaseRTPAudioPayload as first argument (#431672).
8421
8422 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8423
8424         * gst/audioresample/gstaudioresample.c:
8425           Make more functions static, just because we can.
8426
8427 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8428
8429         * tests/check/elements/audioresample.c:
8430           Add unit test for audioresample shutdown crasher (#420106).
8431
8432 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
8433
8434         * gst/subparse/gstsubparse.c:
8435         * gst/subparse/samiparse.c:
8436           Use GST_DISABLE_XML here
8437
8438         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8439         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
8440         (gst_xvimagesink_buffer_alloc),
8441         (gst_xvimagesink_navigation_send_event):
8442         * sys/xvimage/xvimagesink.h:
8443           Include stdlib.h when using atoi.
8444           
8445         * tests/check/elements/playbin.c: (playbin_suite):
8446           Use GST_DISABLE_REGISTRY here
8447
8448 2007-04-19  Michael Smith  <msmith@fluendo.com>
8449
8450         * ext/theora/gsttheoraenc.h:
8451         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
8452         (theora_enc_sink_event), (theora_enc_change_state):
8453           Track initialisation state; don't try to use encoder state if we're
8454           not initialised (it'll segfault).
8455
8456 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
8457
8458         * tests/check/pipelines/.cvsignore:
8459         Fix build.
8460
8461 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8462
8463         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8464         Allow random depths between 1 and 32 instead of only multiplies of 8.
8465
8466 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8467
8468         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8469         Set the maximum number of channels for PCM and float in the correct
8470         place to have it also used when creating the template caps.
8471
8472 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8473
8474         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8475         Correctly support 4, 6 and 8 channels with normal PCM and float
8476         wav files.
8477
8478         Fix the depth and signedness calculation in extensible wav files and
8479         also handle 1, 2, 4, 6, 8 channels here when a file without channel
8480         mask is found.
8481
8482         Add support for float, alaw and mulaw in extensible wav files.
8483
8484         This allows correct playback of all but 5 files from
8485         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
8486         
8487         (gst_riff_create_audio_template_caps):
8488         Add voxware and float formats to the template caps.     
8489
8490 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8491
8492         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
8493
8494         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
8495         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
8496
8497         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8498         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
8499         Use the correct format strings for integer formats.
8500
8501 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8502
8503         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
8504           Don't use pad_alloc_buffer_and_set_caps to create a small header
8505           packet, or, worse, to create a big temporary video buffer using the
8506           src pad.
8507
8508 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8509
8510         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
8511         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
8512           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
8513           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
8514
8515 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8516
8517         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
8518           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
8519           streamheader_suite):
8520           Add another test set up for failure
8521
8522 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8523
8524         * tests/check/Makefile.am:
8525         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
8526           GST_START_TEST, streamheader_suite, main):
8527           Add a test for the streamheader bug Wim fixed.
8528
8529 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8530
8531         * ext/theora/theoradec.c: (theora_dec_sink_event):
8532         Fix misleading comment.
8533
8534 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
8535
8536         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8537           More sanity checks for the header fields.
8538
8539 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8540
8541         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8542           Try encodings from all environment variables, not just those in the
8543           first environment variable that is set.
8544
8545 2007-04-12  Wim Taymans  <wim@fluendo.com>
8546
8547         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
8548         (gst_video_rate_chain):
8549         Add some debug.
8550
8551         * tests/check/elements/videorate.c: (GST_START_TEST),
8552         (videorate_suite):
8553         Added check for videorate changing caps handling. Closes #421834.
8554
8555 2007-04-12  Michael Smith  <msmith@fluendo.com>
8556
8557         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
8558           Use scale functions to avoid overflow when calculating duration of 
8559           vorbis buffers.
8560
8561 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8562
8563         * docs/libs/gst-plugins-base-libs-sections.txt:
8564         * gst-libs/gst/tag/tag.h:
8565         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8566           API: add gst_tag_freeform_string_to_utf8() (#405072).
8567
8568         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
8569           Use gst_tag_freeform_string_to_utf8() here.
8570
8571 2007-04-12  Wim Taymans  <wim@fluendo.com>
8572
8573         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
8574         (gst_gdp_pay_sink_event):
8575         Make sure we set the IN_CAPS flag correctly.
8576
8577         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
8578         Get the IN_CAPS flag before we call functions that mess with the flags.
8579
8580 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
8581
8582         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
8583           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
8584           Only stamp buffers with offset/offset_end right before they get
8585           pushed.  This ensures offset continuity, which was not the case
8586           before as shown by
8587           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
8588
8589 2007-04-06  Wim Taymans  <wim@fluendo.com>
8590
8591         * gst/playback/gstplaybin.c: (add_sink),
8592         (gst_play_bin_change_state):
8593         Activate sync in playbin, we are ready to handle it for live streams.
8594
8595 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
8596
8597         * tests/check/elements/playbin.c:
8598         (test_sink_usage_video_only_stream), (playbin_suite):
8599           Add small test for stream-info-value-array code paths.
8600
8601 2007-04-05  Wim Taymans  <wim@fluendo.com>
8602
8603         * gst-libs/gst/audio/gstbaseaudiosink.c:
8604         (gst_base_audio_sink_skew_slaving):
8605         Don't try to create invalid calibration parameters by making the
8606         internal time go backwards, instead make external time go forward.
8607
8608 2007-04-05  Wim Taymans  <wim@fluendo.com>
8609
8610         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
8611
8612         * gst/playback/gstplaybasebin.c: (add_stream):
8613         Fix leak in add_stream(), when g_value_set_object() increases the
8614         refcount of streaminfo object. Fixes #426250.
8615
8616 2007-04-03  David Schleef  <ds@schleef.org>
8617
8618         * gst/videotestsrc/gstvideotestsrc.c:
8619         * gst/videotestsrc/gstvideotestsrc.h:
8620         * gst/videotestsrc/videotestsrc.c:
8621         * gst/videotestsrc/videotestsrc.h:
8622           Add a test pattern called "circular", which has concentric
8623           rings with varying radial frequency.  The main purpose of this
8624           pattern is to test fidelity loss in a filter or scaler element.
8625           Notably, this pattern is scale invariant, and is optimally viewed
8626           with a width (and height) of 400.
8627
8628 2007-04-03  Wim Taymans  <wim@fluendo.com>
8629
8630         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
8631
8632         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
8633         (deactivate_free_recursive):
8634         Decodebin2 doesn't unref pads it obtains in some occasions:
8635         - multiqueue src pads, when either connecting further or exposing
8636         - sink pads of new autoplugged elements
8637         - peer pads when recursively freeing elements
8638         Fixes #425455.
8639
8640 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
8641
8642         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8643         Add audio/x-raw-float support, now that audioconvert support
8644         non-native endianness floats.
8645
8646 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
8647
8648         * docs/libs/gst-plugins-base-libs-docs.sgml:
8649           gstreamer-plugins-base.pc doesn't exist, it's
8650           gstreamer-plugins-base-0.10.pc.
8651
8652 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8653
8654         Patch by: René Stadler <mail at renestadler dot de>
8655         with some minor changes
8656
8657         * gst-libs/gst/floatcast/floatcast.h:
8658         Use more efficient float endianness conversion functions that don't
8659         involve 2 function calls per value.
8660         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
8661         (check_default), (audio_convert_prepare_context):
8662         * gst/audioconvert/gstaudioconvert.c:
8663         (gst_audio_convert_parse_caps), (make_lossless_changes):
8664         Support non-native endianness floats as input and output.
8665         Fixes #339838.
8666         * tests/check/elements/audioconvert.c: (verify_convert),
8667         (GST_START_TEST):
8668         Add unit tests for the non-native endianness float conversions.
8669
8670 2007-03-29  Wim Taymans  <wim@fluendo.com>
8671
8672         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8673         (gst_base_rtp_depayload_base_init),
8674         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
8675         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
8676         (gst_base_rtp_depayload_set_gst_timestamp),
8677         (gst_base_rtp_depayload_change_state),
8678         (gst_base_rtp_depayload_set_property),
8679         (gst_base_rtp_depayload_get_property):
8680         * gst-libs/gst/rtp/gstbasertpdepayload.h:
8681         Add Private structure.
8682         Bring element code to 2007.
8683         Parse clock-base caps param and use it when generating the
8684         newsegment.
8685         Reset variables before going to PAUSED.
8686         Fix some docs.
8687
8688 2007-03-29  Wim Taymans  <wim@fluendo.com>
8689
8690         * docs/libs/gst-plugins-base-libs-docs.sgml:
8691         * docs/libs/gst-plugins-base-libs-sections.txt:
8692         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8693         (gst_base_rtp_audio_payload_get_adapter):
8694         Add RTCP docs.
8695         Fix some more docs.
8696
8697         * gst-libs/gst/rtp/Makefile.am:
8698         * gst-libs/gst/rtp/gstrtcpbuffer.c:
8699         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
8700         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
8701         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
8702         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
8703         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
8704         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
8705         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
8706         (gst_rtcp_packet_sr_get_sender_info),
8707         (gst_rtcp_packet_sr_set_sender_info),
8708         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
8709         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
8710         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
8711         (gst_rtcp_packet_sdes_get_chunk_count),
8712         (gst_rtcp_packet_sdes_first_chunk),
8713         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
8714         (gst_rtcp_packet_sdes_first_item),
8715         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
8716         (gst_rtcp_packet_bye_get_ssrc_count),
8717         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
8718         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
8719         (gst_rtcp_packet_bye_get_reason_len),
8720         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
8721         * gst-libs/gst/rtp/gstrtcpbuffer.h:
8722         Add new helper object for parsing and creating RTCP messages.
8723
8724 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8725
8726         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8727         PCM samples with width=8 must be always unsigned, no matter what
8728         depth they have.
8729
8730 2007-03-29  Andy Wingo  <wingo@pobox.com>
8731
8732         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
8733         perfect offsets also, not just timestamps.
8734
8735         * tests/check/elements/videorate.c (test_more): Test that given
8736         any incoming offsets, that videorate produces perfect offsets.
8737
8738 2007-03-29  Wim Taymans  <wim@fluendo.com>
8739
8740         * gst-libs/gst/riff/riff-ids.h:
8741         Add some more RIFF formats.
8742
8743 2007-03-29  Wim Taymans  <wim@fluendo.com>
8744
8745         * gst-libs/gst/rtp/gstrtpbuffer.c:
8746         (gst_rtp_buffer_default_clock_rate):
8747         * gst-libs/gst/rtp/gstrtpbuffer.h:
8748         Fix fixed payload names and docs.
8749         Added method to get the default clock rates of fixed payload types.
8750         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
8751
8752 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8753
8754         * tests/check/pipelines/.cvsignore:
8755         Add new vorbisdec test to cvsignore.
8756
8757 2007-03-28  Wim Taymans  <wim@fluendo.com>
8758
8759         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
8760         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
8761         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
8762         (gst_base_audio_sink_set_property),
8763         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
8764         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
8765         (gst_base_audio_sink_skew_slaving),
8766         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
8767         (gst_base_audio_sink_async_play):
8768         * gst-libs/gst/audio/gstbaseaudiosink.h:
8769         Store private stuff in GstBaseAudioSinkPrivate.
8770         Add configurable clock slaving modes property.
8771         API:: GstBaseAudioSink::slave-method property
8772         Some more latency reporting tweaks.
8773         Added skew based clock slaving correction and make it the default until
8774         the resampling method is more robust.
8775
8776 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
8777
8778         * gst/audioconvert/audioconvert.c:
8779         Add docs to the integer pack functions and implement proper
8780         rounding. Before we had rounding towards negative infinity, i.e.
8781         always the smaller number was taken. Now we use natural rounding,
8782         i.e. rounding to the nearest integer and to the one with the largest
8783         absolute value for X.5. The old rounding introduced some minor
8784         distortions. Fixes #420079
8785         * tests/check/elements/audioconvert.c: (GST_START_TEST):
8786         Fix one unit test that assumed the old rounding and added unit tests
8787         for checking signed/unsigned int16 <-> signed/unsigned int16 with
8788         depth 8, one for signed int16 <-> unsigned int16 and one for the new
8789         rounding from signed int32 to signed/unsigned int16.
8790
8791 2007-03-27  Michael Smith  <msmith@fluendo.com>
8792
8793         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
8794         (gst_audio_convert_transform_caps):
8795           Fix typo in debug line introduced recently, as pointed out on irc.
8796
8797 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
8798
8799         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8800         * tests/check/libs/tag.c: (GST_START_TEST):
8801           Make sure we parse floating-point numbers in vorbis comments
8802           correctly with either '.' or ',' as separator, no matter what
8803           the current locale is. Add unit test for this too.
8804
8805 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
8806
8807         Patch by: René Stadler  <mail at renestadler de>
8808
8809         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
8810           When writing out floating-point numbers to vorbis comment tags, always
8811           use the same character as separator no matter what the current locale is
8812           (fixes #423051).
8813
8814         * tests/check/libs/tag.c: (GST_START_TEST):
8815           Add unit tests for replaygain tags in vorbis comments (closes #423055).
8816
8817 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8818
8819         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
8820           vorbis_handle_data_packet):
8821           Correctly set DURATION to generate a timestamp-continuous stream.
8822           One bug left at the end; see
8823           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
8824         * tests/check/Makefile.am:
8825         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
8826           Add a test to check this.  Without the above patch this test fails.
8827
8828 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
8829
8830         * gst-libs/gst/rtp/Makefile.am:
8831         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
8832
8833 2007-03-23  Michael Smith  <msmith@fluendo.com>
8834
8835         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
8836         (gst_video_rate_reset), (gst_video_rate_chain):
8837           If videorate changes caps, we can no longer use the old buffer
8838           (which may have a different size, incompatible with our caps).
8839           So don't do that; just duplicate the new frame more times.
8840
8841 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
8842
8843         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
8844         Remove playbin's override of the set_clock vmethod. It's irrelevant
8845         after Wim's commit on the 19th.
8846
8847 2007-03-22  Wim Taymans  <wim@fluendo.com>
8848
8849         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
8850         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
8851         * ext/gnomevfs/gstgnomevfssrc.h:
8852         Don't cache file sizes. Fixes #341078.
8853
8854 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8855
8856         * gst/playback/gstplaybin.c: (add_sink):
8857           Use GST_PTR_FORMAT to log caps. 
8858
8859 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8860
8861         Patch by: Young-Ho Cha <ganadist at chollian net>
8862
8863         * gst/subparse/samiparse.c: (handle_start_font):
8864           Special-case some more colour names that pango doesn't handle by
8865           default. Fixes #420578.
8866
8867 2007-03-20  Michael Smith  <msmith@fluendo.com>
8868
8869         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
8870           If we get a zero-sized input buffer, don't pass it to libvorbis, as
8871           that marks EOS internally. After that, libvorbis will buffer all
8872           input data, and encode none of it, eventually leading to memory
8873           exhaustion.
8874
8875 2007-03-19  Wim Taymans  <wim@fluendo.com>
8876
8877         * gst/playback/gstdecodebin.c: (remove_fakesink):
8878         Don't post STATE_DIRTY anymore.
8879
8880         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
8881         (gst_play_bin_change_state):
8882         Remove stream_time reset in seek handling, core does that now.
8883         Disable clocking for live pipelines by forcing a NULL clock to the
8884         complete pipeline, core is too smart now for our previous hack.
8885         We can always autoplug in PAUSED now.
8886
8887 2007-03-17  David Schleef  <ds@schleef.org>
8888
8889         * REQUIREMENTS:  Update this file, change the formatting to make
8890         it more consistent, plus more machine readable.
8891
8892 2007-03-16  Michael Smith  <msmith@fluendo.com>
8893
8894         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
8895         (strip_width_64), (append_with_other_format):
8896           Previous fix was too simplistic, and broke the tests. Use a better
8897           approach; only strip 64 from widths for integer audio.
8898
8899 2007-03-16  Michael Smith  <msmith@fluendo.com>
8900
8901         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
8902         (gst_audio_convert_transform_caps):
8903           We don't support 64 bit integer audio, so don't try to claim we can.
8904           Stops us producing caps don't match our template caps.
8905           Update comments.
8906
8907 2007-03-15  Michael Smith  <msmith@fluendo.com>
8908
8909         * gst/audioresample/gstaudioresample.c:
8910         (audioresample_check_discont), (audioresample_transform):
8911           Don't trigger discontinuities for very small imperfections; a filter
8912           flush will sound bad, and many plugins have rounding errors leading
8913           to these.
8914
8915 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
8916
8917         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
8918
8919         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8920         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
8921         API: add "min-ptime" property to RTP base audio payloader.
8922         API: add gst_base_rtp_audio_payload_push().
8923         API: add gst_base_rtp_audio_payload_get_adapter().
8924         Fixes #415001
8925         Indentation/whitespace/documentation fixes.
8926
8927 2007-03-14  Julien MOUTTE  <julien@moutte.net>
8928
8929         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
8930         (audioresample_transform_size), (audioresample_do_output),
8931         (audioresample_transform), (audioresample_pushthrough): Handle
8932         discontinuous streams.
8933         * gst/audioresample/gstaudioresample.h:
8934         * tests/check/elements/audioresample.c:
8935         (test_discont_stream_instance), (GST_START_TEST),
8936         (audioresample_suite): Add a test for discontinuous streams.
8937         * win32/common/config.h: Updated.
8938
8939 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8940
8941         * po/af.po:
8942         * po/az.po:
8943         * po/cs.po:
8944         * po/en_GB.po:
8945         * po/it.po:
8946         * po/nb.po:
8947         * po/nl.po:
8948         * po/or.po:
8949         * po/sq.po:
8950         * po/sr.po:
8951         * po/sv.po:
8952         * po/uk.po:
8953         * po/vi.po:
8954           Update translations from translation project.
8955
8956 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8957
8958         * gst/audioresample/debug.h:
8959         * gst/audioresample/resample.c: (resample_init):
8960           Since I really am not interested in a debug line for each sample
8961           being processed, move the library's debugging to its own category,
8962           libaudioresample
8963
8964 2007-03-13  Michael Smith  <msmith@fluendo.com>
8965
8966         * ext/theora/theoradec.c: (theora_handle_type_packet):
8967           Since the plugin doesn't support anything other than 4:2:0 right
8968           now, post an error and fail if we get something else. Won't matter
8969           until libtheora supports the other pixel formats, but hopefully
8970           that'll be soon...
8971
8972 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
8973
8974         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
8975         Use gst_guint64_to_gdouble for conversion.
8976         * win32/MANIFEST:
8977         Add new files to the win32 MANIFEST.
8978         * win32/common/libgstaudio.def:
8979         * win32/common/libgstpbutils.def:
8980         Add new exported functions.
8981         * win32/vs6/gst_plugins_base.dsw:
8982         * win32/vs6/libgstdecodebin.dsp:
8983         * win32/vs6/libgstplaybin.dsp:
8984         Change the link to libgstpbutils.lib.
8985         * win32/vs6/libgstdecodebin2.dsp:
8986         Add a new project for decodebin2.
8987         * win32/vs6/libgstpbutils.dsp:
8988         Add a new project for pbutils.
8989
8990 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
8991
8992         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8993           Also accept partial dates with only year and month,
8994           like 1999-12-00 (fixes #410396 even more).
8995
8996         * tests/check/libs/tag.c: (GST_START_TEST):
8997           Add unit test for the above.
8998
8999 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9000
9001         * tests/check/elements/subparse.c: (GST_START_TEST),
9002         (subparse_suite):
9003           Add unit test for MPL2 subtitle format (#413799).
9004
9005 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9006
9007         Patch by: Kamil Pawlowski  <kamilpe gmail com>
9008
9009         * gst/subparse/Makefile.am:
9010         * gst/subparse/gstsubparse.c:
9011         (gst_sub_parse_data_format_autodetect),
9012         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
9013         (gst_subparse_type_find):
9014         * gst/subparse/gstsubparse.h:
9015         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
9016         * gst/subparse/mpl2parse.h:
9017           Add support for MPL2 subtitle format (#413799).
9018
9019 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9020
9021         * configure.ac:
9022           We require core CVS for the new buffer metadata copy functions.
9023
9024 2007-03-09  Wim Taymans  <wim@fluendo.com>
9025
9026         * gst-libs/gst/tag/gstid3tag.c:
9027         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
9028         Fixes #414496.
9029
9030         Patch by: Alex Lancaster <alexl at users sourceforge net>
9031
9032 2007-03-09  Wim Taymans  <wim@fluendo.com>
9033
9034         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
9035         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
9036         Improve adapter usage and comments.
9037
9038 2007-03-09  Wim Taymans  <wim@fluendo.com>
9039
9040         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9041         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
9042         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
9043         Use new metadata copy function.
9044
9045         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9046         (gst_ffmpegcsp_transform):
9047         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
9048         Basetransform copied the metadata for us.
9049
9050 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9051
9052         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
9053         (gst_text_overlay_video_event):
9054           Some more logging. Only accept newsegment events in TIME format and
9055           send a WARNING message if they are not in TIME format.
9056
9057         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
9058         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
9059         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
9060         * gst/subparse/gstsubparse.h:
9061           No need to allocate GstSegment structure dynamically, just put it
9062           into the instance structure; ignore newsegment events in BYTE
9063           format and in particular don't let it overwrite our saved TIME
9064           segment from the last seek.
9065
9066 2007-03-09  Michael Smith  <msmith@fluendo.com>
9067
9068         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
9069           Replace AC3 typefinder with one that isn't terrible, and actually
9070           works usefully.
9071
9072 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
9073
9074         * gst/audioconvert/gstaudioconvert.c:
9075         (gst_audio_convert_transform):
9076           fix error category and translatable string
9077           
9078
9079 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9080
9081         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9082         * pkgconfig/gstreamer-plugins-base.pc.in:
9083           Fix up utils => pbutils here too.
9084
9085 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9086
9087         * gst/subparse/gstsubparse.c: (handle_buffer):
9088           Break out of loop in chain function as soon as possible if we get
9089           a non-OK flow return.
9090
9091 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9092
9093         * tests/check/elements/alsa.c: (GST_START_TEST):
9094         Unref the mixer if the state change fails too (if the
9095         alsa devices are inaccessible, for example)
9096
9097 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9098
9099         * tests/check/Makefile.am:
9100         Don't test libvisual elements in the states check, because libvisual
9101         seems to leak internally.
9102
9103         Re-enable the alsa and states tests now that there's new suppressions
9104         in gst.supp.
9105
9106         * tests/check/elements/alsa.c: (GST_START_TEST):
9107         Don't leak the alsamixer we instantiated.
9108
9109 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9110
9111         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
9112         (gst_ximagesink_change_state), (gst_ximagesink_reset),
9113         (gst_ximagesink_finalize):
9114         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
9115         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
9116         Move some cleanup stuff from the state change handler into a _reset()
9117         function that can be called from _finalize(). This ensures that things
9118         get freed even if (for some reason) the NULL->READY state transition
9119         fails in the parent class.
9120         Even if a parent state change fails, process our downward state change
9121         logic instead of bailing out early.
9122         Free the correct xcontext pointer in ximagesink's xcontext_clear.
9123
9124 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9125
9126         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
9127         Extra log line.
9128
9129         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
9130         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
9131         Use pango_font_description_set_family_static instead of 
9132         pango_font_description_set_family to save a string copy (it was
9133         leaking due to the strdup anyway)
9134
9135         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
9136         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
9137         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
9138         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
9139         Chain up in finalize.
9140
9141 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
9142
9143         * gst-libs/gst/interfaces/mixertrack.c:
9144         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
9145         (gst_mixer_track_set_property):
9146           API: add "untranslated-label" property which should be set by
9147           implementations at construct time (#414645).
9148
9149         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
9150         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
9151           Set "untranslated-label" when constructing mixer track objects.
9152
9153         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
9154           Unit test to check the above.
9155
9156 2007-03-07  Wim Taymans  <wim@fluendo.com>
9157
9158         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
9159         Fix confusing debug message.
9160
9161 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9162
9163         * gst-plugins-base.doap:
9164         update doap file with new version
9165
9166 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9167
9168         * configure.ac:
9169         Back to CVS
9170
9171 === release 0.10.12 ===
9172
9173 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
9174
9175         * configure.ac:
9176           releasing 0.10.12, "Zombie Horde"
9177
9178 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
9179
9180         * configure.ac:
9181         Bump version to 0.10.11.4 pre-release
9182
9183 2007-03-06  Wim Taymans  <wim@fluendo.com>
9184
9185         * gst-libs/gst/audio/gstbaseaudiosink.c:
9186         (gst_base_audio_sink_async_play):
9187         Fix regression that made GStreamer skip the first samples of audio.
9188         Fixes #414684.
9189
9190 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
9191
9192         * configure.ac:
9193         Bump version to 0.10.11.3 pre-release
9194
9195 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
9196
9197         * po/POTFILES.in:
9198           Update paths for the rename from utils to pbutils to fix the build.
9199
9200 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
9201
9202         * gst-libs/gst/pbutils/Makefile.am:
9203           Change directory to install headers in from gst/utils to gst/pbutils
9204           as well.
9205
9206 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9207
9208         * configure.ac:
9209         * docs/libs/gst-plugins-base-libs-docs.sgml:
9210         * docs/libs/gst-plugins-base-libs-sections.txt:
9211         * gst-libs/gst/Makefile.am:
9212         * gst-libs/gst/interfaces/mixer.c:
9213         * gst-libs/gst/pbutils/Makefile.am:
9214         * gst-libs/gst/pbutils/descriptions.c:
9215         (gst_pb_utils_get_source_description),
9216         (gst_pb_utils_get_sink_description),
9217         (gst_pb_utils_get_decoder_description),
9218         (gst_pb_utils_get_encoder_description),
9219         (gst_pb_utils_get_element_description),
9220         (gst_pb_utils_add_codec_description_to_tag_list),
9221         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
9222         * gst-libs/gst/pbutils/descriptions.h:
9223         * gst-libs/gst/pbutils/install-plugins.c:
9224         * gst-libs/gst/pbutils/install-plugins.h:
9225         * gst-libs/gst/pbutils/missing-plugins.c:
9226         (gst_missing_uri_source_message_new),
9227         (gst_missing_uri_sink_message_new),
9228         (gst_missing_element_message_new),
9229         (gst_missing_decoder_message_new),
9230         (gst_missing_encoder_message_new),
9231         (gst_missing_plugin_message_get_description):
9232         * gst-libs/gst/pbutils/missing-plugins.h:
9233         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
9234         * gst-libs/gst/pbutils/pbutils.h:
9235         * gst-libs/gst/utils/Makefile.am:
9236         * gst-libs/gst/utils/base-utils.c:
9237         * gst-libs/gst/utils/base-utils.h:
9238         * gst-libs/gst/utils/descriptions.c:
9239         * gst-libs/gst/utils/descriptions.h:
9240         * gst-libs/gst/utils/install-plugins.c:
9241         * gst-libs/gst/utils/install-plugins.h:
9242         * gst-libs/gst/utils/missing-plugins.c:
9243         * gst-libs/gst/utils/missing-plugins.h:
9244         * gst-plugins-base.spec.in:
9245         * gst/playback/Makefile.am:
9246         * gst/playback/gstdecodebin.c:
9247         * gst/playback/gstdecodebin2.c:
9248         * gst/playback/gstplaybasebin.c: (setup_subtitle),
9249         (gen_source_element):
9250         * gst/playback/gstplaybin.c: (plugin_init):
9251         * tests/check/Makefile.am:
9252         * tests/check/libs/pbutils.c: (GST_START_TEST),
9253         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
9254         * tests/check/libs/utils.c:
9255           rename utils to pbutils
9256
9257 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
9258
9259         * docs/plugins/Makefile.am:
9260         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9261         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9262         * docs/plugins/inspect/plugin-decodebin2.xml:
9263         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
9264         Add documentation for decodebin2 that indicates that the API
9265         is still unstable.
9266
9267 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
9268
9269         * configure.ac:
9270         Update to 0.10.11.2 (0.10.12 pre-release)
9271
9272 2007-03-01  Wim Taymans  <wim@fluendo.com>
9273
9274         * gst-libs/gst/audio/gstbaseaudiosink.c:
9275         (gst_base_audio_sink_async_play):
9276         base time is irrelevant here.
9277
9278 2007-03-01  Wim Taymans  <wim@fluendo.com>
9279
9280         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
9281         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
9282         Improve debugging.
9283
9284         * gst-libs/gst/audio/gstbaseaudiosink.c:
9285         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
9286         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
9287         Improve latency and clock slaving calculations.
9288         Improve slave clock calibration.
9289
9290         * gst-libs/gst/audio/gstringbuffer.c:
9291         (gst_ring_buffer_commit_full):
9292         When we are asked to render N sample to 0 bytes, return N.
9293
9294 2007-03-01  Wim Taymans  <wim@fluendo.com>
9295
9296         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
9297         (gst_alsasink_write), (gst_alsasink_reset):
9298         * ext/alsa/gstalsasink.h:
9299         Remove unused dispose function.
9300         Rename lock to not interfere with alsasrc lock.
9301
9302         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
9303         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
9304         (gst_alsasrc_read), (gst_alsasrc_reset):
9305         * ext/alsa/gstalsasrc.h:
9306         Implement finalize function.
9307         Use lock to protect alsa access.
9308         Implement _reset.
9309         Fine tune sw params.
9310
9311 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9312
9313         * configure.ac:
9314           Convert to new AG_GST style.
9315
9316 2007-02-28  Wim Taymans  <wim@fluendo.com>
9317
9318         Patch by: Ed Catmur <ed at catmur dot co dot uk>
9319
9320         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
9321         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
9322         Fix race condition when rapidly switching visualisations in playbin.
9323         Fixes #401029.
9324
9325 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
9326
9327         * tests/check/Makefile.am:
9328         Include local stuff before system installed things in LDFLAGS and
9329         CFLAGS.
9330
9331 2007-02-28  Wim Taymans  <wim@fluendo.com>
9332
9333         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
9334         Improve debugging.
9335
9336 2007-02-28  Wim Taymans  <wim@fluendo.com>
9337
9338         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
9339         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
9340         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
9341         Fix duration and timestamping, taking latency into account.
9342         Implement latency query.
9343
9344 2007-02-28  Wim Taymans  <wim@fluendo.com>
9345
9346         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
9347         (gst_audio_clock_new):
9348         Fix clock name.
9349
9350         * gst-libs/gst/audio/gstbaseaudiosink.c:
9351         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
9352         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
9353         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
9354         (gst_base_audio_src_create):
9355         Improve latency query code.
9356         Use proper clock names.
9357
9358 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9359
9360         * tests/check/generic/states.c: (GST_START_TEST):
9361           Copy the states.c test from core again
9362         * tests/check/Makefile.am:
9363           ignore cdio and cdparanoiasrc
9364
9365 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
9366
9367         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9368         (double_hq), (audio_convert_get_func_index), (check_default),
9369         (audio_convert_prepare_context), (audio_convert_convert):
9370           Also make valgrind happy and avoid copying data in some cases.
9371
9372 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
9373
9374         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9375         (double_hq), (audio_convert_get_func_index),
9376         (audio_convert_prepare_context), (audio_convert_convert):
9377         * gst/audioconvert/gstaudioconvert.c:
9378         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
9379         (gst_audio_convert_transform_caps):
9380         * tests/check/elements/audioconvert.c: (GST_START_TEST),
9381         (audioconvert_suite):
9382           Don't run inplace if that overwrites source data as we go. Add more
9383           tests. Fixes #339837 even more.
9384
9385 2007-02-27  Julien MOUTTE  <julien@moutte.net>
9386
9387         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
9388         (msg_segment_done): Fix various seeking bugs (Slider was not
9389         updating when doing a non flushing seek, Reverse playback 
9390         on segment seek was wrong).
9391
9392 2007-02-26  Wim Taymans  <wim@fluendo.com>
9393
9394         * tests/examples/seek/seek.c: (stop_seek):
9395         When we stop scrubbing, don't leave the pipeline PLAYING when we
9396         requested a PAUSED state.
9397
9398 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
9399
9400         Patch by: René Stadler <mail at renestadler de>
9401
9402         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9403           Parse date strings in vorbis comments that have an invalid (zero)
9404           month or day (#410396).
9405
9406         * tests/check/libs/tag.c: (GST_START_TEST):
9407           Test case for the above.
9408
9409 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
9410
9411         Patch by: Loïc Minier <lool+gnome at via ecp fr>
9412
9413         * configure.ac:
9414         * ext/alsa/Makefile.am:
9415         * gst/audiotestsrc/Makefile.am:
9416           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
9417
9418 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9419
9420         * gst/playback/gstplaybin.c:
9421           Improve docs: point out that the application needs to assist playbin
9422           with buffering.
9423
9424 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9425
9426         * gst-libs/gst/utils/install-plugins.c:
9427         * gst-libs/gst/utils/missing-plugins.c:
9428         * tests/check/libs/utils.c: (missing_msg_check_getters):
9429           Change GStreamer marker prefix in detail string from 'gstreamer.net'
9430           to just 'gstreamer'. Document the caps string component of the
9431           decoder/encoder detail a bit better, since not everyone will be
9432           familiar with the GStreamer media type/caps system (but they better
9433           enjoy nested itemized lists).
9434
9435 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
9436
9437         * gst-libs/gst/netbuffer/gstnetbuffer.c:
9438         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
9439           Fix copying of GstNetBuffer (would crash before, or at least lead to
9440           invalid memory access, #410772), for now by copying the GstBuffer copy
9441           code from the core over here so we can copy the GstBuffer fields on a
9442           provided buffer instance (of type GstNetBuffer in this case). Would be
9443           better to fix this with some support by the core though (and in the long
9444           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
9445
9446         * tests/check/Makefile.am:
9447           Enable unit test for GstNetBuffer.
9448
9449 2007-02-22  Andy Wingo  <wingo@pobox.com>
9450
9451         * gst-libs/gst/audio/gstbaseaudiosink.c
9452         (gst_base_audio_sink_init): Disable pull-mode activation until we
9453         figure out how to make audio sinks go to PLAYING.
9454
9455 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
9456
9457         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9458         (double_hq), (audio_convert_get_func_index),
9459         (audio_convert_prepare_context), (audio_convert_convert):
9460         * gst/audioconvert/audioconvert.h:
9461         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
9462         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
9463         * gst/audioconvert/gstchannelmix.h:
9464         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9465           Add float as an intermediate format, as well as float mixing. Enable
9466           test that was failing before. Fixes #339837
9467
9468 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
9469
9470         * tests/examples/seek/seek.c: (do_seek):
9471         Undo the previous commit: -1 as a stop time implies that the stop
9472         time is the end of file, clearing any previously configured segment.
9473
9474 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
9475
9476         * tests/examples/seek/seek.c: (do_seek):
9477         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
9478
9479 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
9480
9481         * gst/volume/gstvolume.c: (volume_process_int16),
9482         (volume_process_int16_clamp), (volume_set_caps):
9483           Unbreak volume, value remains gint.
9484
9485 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
9486
9487         * gst/volume/gstvolume.c: (volume_choose_func),
9488         (volume_update_real_volume), (gst_volume_set_volume),
9489         (gst_volume_init), (volume_process_double), (volume_process_float),
9490         (volume_process_int16), (volume_process_int16_clamp),
9491         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
9492         * gst/volume/gstvolume.h:
9493           Extend float audio support (double) and some int->uint cleanups.
9494
9495 2007-02-20  Edward Hervey  <edward@fluendo.com>
9496
9497         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
9498         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
9499         (sort_end_pads), (gst_decode_group_expose),
9500         (gst_decode_group_hide):
9501         Don't free groups from the streaming threads. Just put them aside and
9502         free them in dispose.
9503
9504 2007-02-20  Edward Hervey  <edward@fluendo.com>
9505
9506         * gst/playback/gstdecodebin2.c: (connect_element),
9507         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
9508         (sort_end_pads), (gst_decode_group_expose):
9509         Handle dynamic pads within groups.
9510         Sort pads before exposing them in order to make playbin happy.
9511         There still is a race with the multiqueue filling up. This should be
9512         solved separately.
9513         Fixes #398721
9514
9515 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9516
9517         * gst-libs/gst/utils/base-utils.c:
9518         * gst-libs/gst/utils/descriptions.c:
9519         * gst-libs/gst/utils/install-plugins.c:
9520         * gst-libs/gst/utils/missing-plugins.c:
9521           Some more docs (and descriptions for two subtitle formats).
9522
9523 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9524
9525         * gst-libs/gst/audio/audio.c:
9526           Fix documentation.
9527
9528 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9529
9530         Patch by: Yves Lefebvre  <ivanohe abacom com>
9531
9532         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
9533           Don't leak caps. Fixes #408278.
9534
9535 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
9536
9537         * ext/cdparanoia/gstcdparanoiasrc.h:
9538         * ext/ogg/gstoggdemux.h:
9539         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
9540         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
9541         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
9542         * gst-libs/gst/audio/audio.h:
9543         * gst-libs/gst/audio/gstaudiofilter.h:
9544         * gst-libs/gst/interfaces/videoorientation.h:
9545         * gst/adder/gstadder.h:
9546           More docs coverage and some ChangeLog surgery (add missing names)
9547
9548 2007-02-15  Wim Taymans  <wim@fluendo.com>
9549
9550         * sys/ximage/ximagesink.c:
9551         (gst_ximagesink_calculate_pixel_aspect_ratio):
9552         * sys/xvimage/xvimagesink.c:
9553         (gst_xvimagesink_calculate_pixel_aspect_ratio):
9554         Small constifications.
9555
9556 2007-02-15  Wim Taymans  <wim@fluendo.com>
9557
9558         * gst-libs/gst/audio/gstbaseaudiosink.c:
9559         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
9560         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
9561         (gst_base_audio_sink_async_play),
9562         (gst_base_audio_sink_change_state):
9563         Answer latency query.
9564         Use configured latency when syncing.
9565         Fix clock slaving.
9566
9567         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9568         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
9569         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
9570         Fix possible memleak.
9571         Implement latency query.
9572         Small cleanups.
9573
9574 2007-02-15  Wim Taymans  <wim@fluendo.com>
9575
9576         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
9577         Ignore errors in reset, these are not fatal. They also grab the element
9578         lock which is already taking when this function is called. Fixes
9579         #405451.
9580
9581 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9582
9583         * configure.ac:
9584           Remove 'tests/examples/xerror/Makefile' from output files again.
9585
9586 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9587
9588         * configure.ac:
9589         * docs/plugins/Makefile.am:
9590           Also crossref against gst-plugins-base-libs.
9591
9592 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9593
9594         * configure.ac:
9595         * docs/libs/Makefile.am:
9596         * docs/plugins/Makefile.am:
9597           Add crossreferences to glib/gobject/gstream docs.
9598
9599         * gst-libs/gst/audio/audio.h:
9600           Source formatting.
9601
9602         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
9603           Add own debug category.
9604
9605 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
9606
9607         Patch by: René Stadler <mail at renestadler de>
9608
9609         * gst-libs/gst/tag/gstvorbistag.c:
9610           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
9611           (#403597).
9612
9613 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
9614
9615         * gst/playback/gstplaybasebin.c: (setup_source):
9616           When we have external subtitles and wait for the subtitle decodebin
9617           to get up and running, we set up a (sync) bus handler for the
9618           subtitle decodebin, so we can stop waiting when it posts an error
9619           message. However, we should do that before we set the subtitle
9620           decodebin's state to playing, otherwise things are racy and we might
9621           miss error messages posted before we had a chance to set up the bus.
9622           This should finally fix totem hanging on .txt pseudo-subtitle files.
9623           
9624 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
9625
9626         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
9627           Use gst_gdouble_to_guint64 for conversions.
9628         * win32/common/config.h.in:
9629           Add a define for GST_INSTALL_PLUGINS_HELPER
9630         * win32/common/libgstaudio.def:
9631         * win32/common/libgstcdda.def:
9632         * win32/common/libgstnetbuffer.def:
9633         * win32/common/libgstrtp.def:
9634         * win32/common/libgutils.def:
9635           Add new exported functions.
9636         * win32/vs6/gst_plugins_base.dsw:
9637         * win32/vs6/libgstdecodebin.dsp:
9638         * win32/vs6/libgstnetbuffer.dsp:
9639         * win32/vs6/libgstplaybin.dsp:
9640         * win32/vs6/libgstrtp.dsp:
9641         * win32/vs6/libgstvorbis.dsp:
9642         * win32/vs6/libgstcdda.dsp:
9643         * win32/vs6/libgstgdp.dsp:
9644         * win32/vs6/libgstutils.dsp:
9645           Update and add new project files.
9646
9647 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
9648
9649         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
9650         (subrip_remove_unhandled_tags), (parse_subrip):
9651           For SubRip (.srt) subtitles, ignore all markup tags we don't
9652           handle (like font tags, for example).
9653
9654         * tests/check/elements/subparse.c:
9655           Add test for this.
9656
9657 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
9658
9659         * gst/playback/gstdecodebin.c: (add_fakesink),
9660         (gst_decode_bin_change_state):
9661         * gst/playback/gstdecodebin2.c: (add_fakesink),
9662         (gst_decode_bin_change_state):
9663           Don't error out if there is no fakesink in the NULL to READY state
9664           change, since when decodebin is re-used, we're only adding the
9665           fakesink element in READY to PAUSED.
9666
9667         * tests/check/elements/decodebin.c:
9668         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
9669         (decodebin_suite):
9670           Minimal unit test to make sure we can use the same decodebin
9671           instance twice (at least with audiotestsrc input).
9672
9673 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
9674
9675         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
9676           Try to get devic-name from device string first, and from handle only
9677           as fallback (seems to yield better results and is more robust
9678           against buggy probing code on the application side).
9679
9680 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
9681
9682         Based on patch by: Julien Puydt <julien.puydt at laposte net>
9683
9684         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
9685         (gst_alsa_find_device_name):
9686         * ext/alsa/gstalsa.h:
9687         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
9688         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
9689           Improve device-name detection a bit, especially in the case where
9690           the device is not actually open (#405020, #405024). Move common code
9691           into gstalsa.c instead of duplicating it.
9692
9693 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
9694
9695         * gst/audioconvert/gstaudioconvert.c:
9696           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
9697
9698 2007-02-06  Julien MOUTTE  <julien@moutte.net>
9699
9700         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
9701         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
9702         (gst_xvimagesink_interface_supported),
9703         (gst_xvimagesink_probe_get_properties),
9704         (gst_xvimagesink_probe_probe_property),
9705         (gst_xvimagesink_probe_needs_probe),
9706         (gst_xvimagesink_probe_get_values),
9707         (gst_xvimagesink_property_probe_interface_init),
9708         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
9709         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
9710         (gst_xvimagesink_get_type):
9711         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
9712         for XVAdaptors so that one can choose the adaptor to use with 
9713         gstreamer-properties.
9714
9715 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
9716
9717         * gst/audioconvert/gstaudioconvert.c:
9718           Also mention that a conversion from double to float is suboptimal still.
9719
9720 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9721
9722         * gst-libs/gst/audio/gstaudiofilter.c:
9723         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
9724           Clear our formats structure and free the caps contained in it when
9725           shutting down.
9726
9727 2007-02-05  Andy Wingo  <wingo@pobox.com>
9728
9729         * gst-libs/gst/audio/gstbaseaudiosink.c
9730         (gst_base_audio_sink_callback): Update basesink->offset so that we
9731         pull monotonically increasing offsets instead of, um, seeking back
9732         to 0 each time. Fixes alsasrc ! alsasink!
9733
9734 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
9735
9736         * gst/videoscale/gstvideoscale.c:
9737           A width and height of 1 makes us crash, so increase minimum size to
9738           2x2 pixels until someone feels like fixing this (#404512).
9739
9740 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
9741
9742         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
9743           Add small test to make sure request pads are cleaned up properly
9744           even if oggmux never changes state out of NULL.
9745
9746 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
9747
9748         * tests/check/libs/utils.c: (GST_START_TEST):
9749           Fix unit test. Turns out things work much better when you
9750           NULL-terminate string arrays. Should make p5 build bot happy again.
9751
9752 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
9753
9754         * gst-libs/gst/audio/Makefile.am:
9755         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
9756         (gst_audio_filter_template_base_init),
9757         (gst_audio_filter_template_class_init),
9758         (gst_audio_filter_template_init),
9759         (gst_audio_filter_template_set_property),
9760         (gst_audio_filter_template_get_property),
9761         (gst_audio_filter_template_setup),
9762         (gst_audio_filter_template_filter),
9763         (gst_audio_filter_template_filter_inplace), (plugin_init):
9764           Oops, forgot to commit fixed-up example.
9765
9766 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
9767
9768         * docs/libs/gst-plugins-base-libs-sections.txt:
9769         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
9770         (gst_audio_filter_class_init), (gst_audio_filter_init),
9771         (gst_audio_filter_set_caps),
9772         (gst_audio_filter_class_add_pad_templates):
9773         * gst-libs/gst/audio/gstaudiofilter.h:
9774           Port GstAudioFilter to 0.10. This change technically breaks
9775           API and ABI (and thus also every library developer's heart),
9776           but seems justifiable on the grounds that the base class was
9777           completely unusable before (ie. would crash immediately when
9778           actually used). Fixes #403963 (and eventually also #403572).
9779           Also document all of this a bit.
9780
9781 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
9782
9783         * gst-libs/gst/utils/install-plugins.c:
9784         (gst_install_plugins_spawn_child):
9785         * tests/check/libs/utils.c:
9786         (test_base_utils_install_plugins_do_callout):
9787           Lowering log level to see why things fail on the p5 build bot;
9788           fix some typos in unit test messages.
9789
9790 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
9791
9792         * tests/check/libs/utils.c:
9793         (test_base_utils_install_plugins_do_callout):
9794           Don't hard-code temp directory for test helper; use GLib functions
9795           to write out file and do error checking etc.
9796
9797 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
9798
9799         * gst-libs/gst/utils/Makefile.am:
9800         * gst-libs/gst/utils/base-utils.h:
9801         * gst-libs/gst/utils/install-plugins.c:
9802         (gst_install_plugins_context_set_xid),
9803         (gst_install_plugins_context_new),
9804         (gst_install_plugins_context_free),
9805         (gst_install_plugins_get_helper),
9806         (gst_install_plugins_spawn_child),
9807         (gst_install_plugins_return_from_status),
9808         (gst_install_plugins_installer_exited),
9809         (gst_install_plugins_async), (gst_install_plugins_sync),
9810         (gst_install_plugins_return_get_name),
9811         (gst_install_plugins_installation_in_progress):
9812         * gst-libs/gst/utils/install-plugins.h:
9813           API: add API for applications to initiate installation of missing
9814           plugins, ie. gst_install_plugins_async() primarily.
9815           Based on libgimme-codec by Ryan Lortie.
9816
9817         * configure.ac:
9818           Add --with-install-plugins-helper configure option so distros can specify
9819           the path of the helper script or program to call when plugin installation
9820           is requested (distros: please do any argument munging in this helper
9821           script instead of patching GStreamer to pass arguments differently
9822           to another program directly).
9823
9824         * docs/libs/gst-plugins-base-libs-docs.sgml:
9825         * docs/libs/gst-plugins-base-libs-sections.txt:
9826           Build and document new API.
9827
9828         * tests/check/libs/utils.c: (result_cb),
9829         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
9830         (libgstbaseutils_suite):
9831           Some simple checks for the new API.
9832
9833 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
9834
9835         * tests/check/elements/audioconvert.c: (test_float_conversion):
9836           Add small test for 32bit float <=> 64bit float conversion (works
9837           only one way so far, 32=>64 produces structured noise).
9838
9839 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
9840
9841         * gst/audioconvert/gstaudioconvert.c:
9842         (set_structure_widths_32_and_64), (make_lossless_changes):
9843           We don't support floats with a width of 40, 48 or 56 bits.
9844
9845 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
9846
9847         * gst/audioconvert/audioconvert.c: (float), (double),
9848         (audio_convert_get_func_index):
9849         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
9850         (make_lossless_changes):
9851           Support for 64-bit float audio in audioconvert (#339837)
9852
9853 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
9854
9855         Patch by: Holger Wansing  <linux wansing-online de>
9856
9857         * po/LINGUAS:
9858         * po/de.po:
9859           Add German translation (#352069).
9860
9861 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
9862
9863         reviewed by: Wim Taymans <wim@fluendo.com>
9864
9865         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
9866         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
9867         Use newly added GstCollectPads API to free the allocated resources in
9868         the GstOggPad structures (#402393).
9869
9870 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
9871
9872         * gst/playback/gstplaybin.c: (gen_vis_element):
9873           Add audioresample+audioconvert in front of the visualisation
9874           element, so that elements like libvisual 0.4 that don't support all
9875           samplerates can work.
9876
9877           Fixes: #402505
9878
9879 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
9880
9881         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
9882         (gst_play_base_bin_get_streaminfo_value_array):
9883           Take some locks and make a copy of the streaminfo value array we
9884           maintain while holding the lock, so that the application can
9885           retrieve the stream-info as a value array in a thread-safe way.
9886
9887 2007-01-30  Wim Taymans  <wim@fluendo.com>
9888
9889         * gst/audioconvert/gstaudioconvert.c:
9890         Don't fail on 0 sized buffers. Fixes #396835.
9891
9892 2007-01-29  David Schleef  <ds@schleef.org>
9893
9894         * gst/typefind/gsttypefindfunctions.c:
9895           Detect BBCD as video/x-dirac, so we can play raw dirac
9896           streams.
9897
9898 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
9899
9900         * ext/theora/theoraenc.c: (theora_enc_chain):
9901           Check return value of theora_encode_header(), or we might try to
9902           allocate a random number of bytes. theora_encode_header() can fail
9903           if libtheora has been compiled with encoding support disabled.
9904           Fixes #398110.
9905
9906 2007-01-29  Wim Taymans  <wim@fluendo.com>
9907
9908         * tests/check/gst/.cvsignore:
9909         Do as buildbot says.
9910
9911 2007-01-29  Wim Taymans  <wim@fluendo.com>
9912
9913         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
9914         Fix strides in libvisual. Gst uses X strides.
9915         Inspired by: <ed at catmur dot co dot uk> and 
9916         <tim at centricular dot net>
9917         Fixes #401118.
9918
9919 2007-01-27  Wim Taymans  <wim@fluendo.com>
9920
9921         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
9922         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
9923         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
9924         (gst_ogg_demux_perform_seek),
9925         (gst_ogg_demux_bisect_forward_serialno),
9926         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
9927         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
9928         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
9929         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
9930         * ext/ogg/gstoggdemux.h:
9931         Properly propagate streaming errors when we are scanning the file for
9932         chains so that we don't crash when shut down. Might fix some crashers
9933         when quickly switching oggs in RB such as #332503 and #378436.
9934
9935 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
9936
9937         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
9938           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
9939           error code as well.
9940
9941 2007-01-25  Wim Taymans  <wim@fluendo.com>
9942
9943         * gst/playback/gstplaybasebin.c: (remove_source):
9944         Don't try to disconnect a signal from a finalized object.
9945
9946 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
9947
9948         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
9949           Cast lock macro parameters to make sure we're actually accessing the
9950           lock member at the right class level. Free list itself in _dispose()
9951           as well and NULL it in case dispose gets called multiple times.
9952
9953 2007-01-25  Edward Hervey  <edward@fluendo.com>
9954
9955         * gst/playback/gstdecodebin2.c:
9956         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
9957         Free GstDecodeGroups no longer used.
9958         (gst_decode_group_expose):
9959         Don't unlock too many times !
9960         (deactivate_free_recursive):
9961         Free iterator once we're done with it.
9962         Fix for recursively deactivating elements (stop at ghostpads).
9963
9964 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
9965
9966         * gst/playback/gstplaybin.c: (handoff):
9967           Fix up caps on the frame buffer before we save it and potentially
9968           make it accessible to other threads via g_object_get; also use
9969           gst_buffer_replace() instead of gst_mini_object_replace().
9970
9971 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
9972
9973         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9974           Make getting the current frame thread-safe.
9975
9976 2007-01-25  Edward Hervey  <edward@fluendo.com>
9977
9978         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
9979         (gst_decode_group_new), (gst_decode_group_free):
9980         Set queues to bigger sizes to cope with HD contents.
9981         Fix some mutex freeing and add comment about MT safe methods.
9982
9983 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
9984
9985         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
9986         (gst_text_overlay_text_event):
9987           Don't unnecessarily ref (and then leak) upstream events if the text
9988           pad is not linked. Fixes #399948.
9989
9990         * tests/check/gst-plugins-base.supp:
9991           Add suppression for pango on edgy/x86 for textoverlay test.
9992
9993 2007-01-24  Wim Taymans  <wim@fluendo.com>
9994
9995         * gst-libs/gst/rtp/gstrtpbuffer.h:
9996         Add some more fixed payloads.
9997
9998 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
9999
10000         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
10001           Error out properly if we get an error from libogg while reading the
10002           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
10003
10004 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
10005
10006         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
10007           Don't leak mutex.
10008
10009         * tests/check/elements/playbin.c:
10010         (test_sink_usage_video_only_stream),
10011         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
10012         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
10013         (test_missing_suburisource_handler),
10014         (test_missing_primary_decoder), (playbin_suite):
10015           Run all tests once with decodebin and once with decodebin2.
10016           One test does not pass yet with decodebin2.
10017
10018 2007-01-23  Edward Hervey  <edward@fluendo.com>
10019
10020         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
10021         Fix the cases where oggmux doesn't properly figure out that all
10022         sinkpads have gone EOS, and therefore doesn't push out the remaining
10023         buffers and the final EOS event.
10024         Fixes #363379
10025
10026 2007-01-23  Julien MOUTTE  <julien@moutte.net>
10027
10028         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10029         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10030         Don't lock on navigation event push, just on keysym to string.
10031         Fixes #397673 again.
10032
10033 2007-01-22  Edward Hervey  <edward@fluendo.com>
10034
10035         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
10036         (get_current_group), (group_demuxer_event_probe),
10037         (gst_decode_group_expose), (deactivate_free_recursive),
10038         (gst_decode_group_free):
10039         Cleanups.
10040         Don't forget to emit 'no-more-pads' once a group is exposed.
10041         Cleanup elements from a DecodeGroup once we remove it.
10042         Protect call to gst_decode_group_expose() with the decodebin lock.
10043
10044 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10045
10046         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10047         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10048         Looking at Xorg code i can't figure out if that XKeysymToString
10049         function is thread sensible or not. Lock it just in case as
10050         recommended by Radek Doulik <rodo at ximian dot com>.
10051
10052 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10053
10054         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10055         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10056         Lock that X Call as well. Fixes #397673.
10057
10058 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10059
10060         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
10061           Don't go into an endless loop if the file starts with 00 00 01 2X,
10062           like quicktime redirect files might. Fixes #396042.
10063
10064         * tests/check/Makefile.am:
10065         * tests/check/gst/.cvsignore:
10066         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
10067         (typefindfunctions_suite):
10068           Add unit test for the above.
10069
10070 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10071
10072         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10073           On second thought, use "depth" field rather than "bpp" field.
10074
10075 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10076
10077         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10078           Camtasia caps apparently need a bpp field (#398875).
10079
10080 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10081
10082         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10083         (gen_source_element), (gst_play_base_bin_change_state):
10084           Attempt at a better error message in case we don't have the required
10085           URI handler installed; post missing-plugin message also when we're
10086           missing an URI handler for the subtitle URI; clean up properly also
10087           when an error occurs and we never made it to PAUSED state.
10088
10089         * tests/check/elements/playbin.c: (GST_START_TEST),
10090         (playbin_suite):
10091           Check that we're also getting a missing-plugin messsage for a
10092           missing subtitle URI handler (and clean up properly).
10093
10094 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10095
10096         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
10097           Plug a few reference leaks.
10098
10099 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10100
10101         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10102           Lower probability a bit if the marker isn't right at the start,
10103           to decrease the chance of false positives.
10104
10105 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10106
10107         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10108           Small mpeg2 system stream typefinding improvement: make typefinder
10109           probe a bit into the stream instead of just looking for a marker
10110           at the beginning. Fixes #397810.
10111
10112 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
10113
10114         * gst/audioconvert/gstchannelmix.c:
10115           Remove compatibility cruft for prehistoric GLib versions.
10116
10117 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
10118
10119         * gst/playback/Makefile.am:
10120         * gst/playback/gstdecodebin.c: (close_pad_link):
10121         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
10122         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10123         (gst_play_base_bin_handle_message_func), (unknown_type):
10124           Let decodebin be the element to post missing-plugin messages for
10125           missing decoders (rather than playbin); make playbin implement
10126           GstBin::handle_message so we can suppress missing-plugin messages
10127           for types we're not handling on purpose (don't want to bring up an
10128           installer in those cases).
10129
10130 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
10131
10132         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10133         * gst-libs/gst/tag/gstvorbistag.c:
10134         (gst_tag_list_to_vorbiscomment_buffer):
10135         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
10136           Fix potentially unaligned access (#397207).
10137
10138 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10139
10140         * tests/examples/seek/seek.c: (set_scale), (update_scale),
10141         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
10142         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
10143         (main):
10144           Allow to toggle looping while it plays. Fix callback prototype. Clean
10145           up code a bit more. Add copyright header.
10146
10147 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10148
10149         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
10150           Red and blue mask was swapped (spotted by Dan Williams).
10151
10152 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
10153
10154         * gst-libs/gst/tag/gstid3tag.c:
10155         * gst-libs/gst/tag/gstvorbistag.c:
10156           Use new beats-per-minute tag from core.
10157
10158 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
10159
10160         * po/POTFILES.in:
10161           Add new files with translatable strings, so they actually make it
10162           into the template file one day.
10163
10164 2007-01-12  Andy Wingo  <wingo@pobox.com>
10165
10166         * gst-libs/gst/audio/gstbaseaudiosink.c
10167         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
10168         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
10169         stuff, as the base class handles this now. Actually tell the ring
10170         buffer to start.
10171         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
10172         How did this work before? Maybe I'm not as awesome a programmer as
10173         I think.
10174
10175         * gst-libs/gst/audio/gstbaseaudiosrc.c
10176         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
10177         of a pad function.
10178
10179 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10180
10181         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
10182           Remove more fields so that the application can better blacklist
10183           formats that have been tried before.
10184
10185 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10186
10187         * gst-libs/gst/audio/mixerutils.h:
10188           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
10189           used when compiling with c++ compilers as well.
10190
10191 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10192
10193         * gst/typefind/gsttypefindfunctions.c:
10194           Fix comment.
10195
10196 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
10197
10198         * gst/playback/gstplaybin.c: (post_missing_element_message),
10199         (gen_video_element), (gen_text_element), (gen_audio_element),
10200         (gen_vis_element):
10201           Post missing-plugin messages also when we error out because
10202           converters, textoverlay or auto*sinks are missing (#161922).
10203
10204 2007-01-10  Wim Taymans  <wim@fluendo.com>
10205
10206         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
10207         (is_demuxer_element), (new_caps):
10208         * gst/playback/gstplaybasebin.c: (source_new_pad):
10209         Fix the case where we try to ref a NULL element when we delay a link
10210         because of unfixed caps.
10211         Set the state of autoplugged decodebins to PAUSED.
10212         RTSP now works in playbin, we can remove it from the blacklist.
10213
10214 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10215
10216         * gst/playback/Makefile.am:
10217         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
10218         (unknown_type), (setup_subtitle), (gen_source_element):
10219         * gst/playback/gstplaybin.c: (plugin_init):
10220           Post missing-plugin messages on the bus for missing sources and
10221           missing decoders/demuxers/depayloaders; fix error code used when
10222           we're missing an URI handler source; for media types that we are not
10223           handling on purpose at the moment, don't print "don't know how to
10224           handle xyz" messages to the terminal or post missing-plugin
10225           messages on the bus.
10226
10227         * tests/check/elements/playbin.c: (create_playbin),
10228         (GST_START_TEST), (gst_codec_src_uri_get_type),
10229         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
10230         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
10231         (gst_codec_src_init_type), (gst_codec_src_base_init),
10232         (gst_codec_src_create), (gst_codec_src_class_init),
10233         (gst_codec_src_init), (plugin_init), (playbin_suite):
10234           Add some tests for the missing-plugin stuff.
10235
10236 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10237
10238         * configure.ac:
10239         * gst-libs/gst/Makefile.am:
10240         * gst-libs/gst/utils/Makefile.am:
10241         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
10242         * gst-libs/gst/utils/base-utils.h:
10243         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
10244         (find_format_info), (caps_are_rtp_caps),
10245         (gst_base_utils_get_source_description),
10246         (gst_base_utils_get_sink_description),
10247         (gst_base_utils_get_decoder_description),
10248         (gst_base_utils_get_encoder_description),
10249         (gst_base_utils_get_element_description),
10250         (gst_base_utils_add_codec_description_to_tag_list),
10251         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
10252         * gst-libs/gst/utils/descriptions.h:
10253         * gst-libs/gst/utils/missing-plugins.c:
10254         (missing_structure_get_type), (copy_and_clean_caps),
10255         (gst_missing_uri_source_message_new),
10256         (gst_missing_uri_sink_message_new),
10257         (gst_missing_element_message_new),
10258         (gst_missing_decoder_message_new),
10259         (gst_missing_encoder_message_new),
10260         (missing_structure_get_string_detail),
10261         (missing_structure_get_caps_detail),
10262         (gst_missing_plugin_message_get_installer_detail),
10263         (gst_missing_plugin_message_get_description),
10264         (gst_is_missing_plugin_message):
10265         * gst-libs/gst/utils/missing-plugins.h:
10266           API: add new libgstbaseutils library with functions
10267           - to create and parse missing-plugins messages
10268           - that provide (translated) descriptions for caps/decoders/sources/etc.
10269           Closes #392393.
10270
10271         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10272         * pkgconfig/gstreamer-plugins-base.pc.in:
10273           Add new lib.
10274
10275         * docs/libs/gst-plugins-base-libs-docs.sgml:
10276         * docs/libs/gst-plugins-base-libs-sections.txt:
10277           Generate docs for new lib and API.
10278
10279         * tests/check/Makefile.am:
10280         * tests/check/libs/.cvsignore:
10281         * tests/check/libs/utils.c: (missing_msg_check_getters),
10282         (GST_START_TEST), (libgstbaseutils_suite):
10283           Add some basic unit tests.
10284
10285 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10286
10287         * ext/ogg/Makefile.am:
10288           Dist gstoggdemux.h to fix 'make distcheck'.
10289
10290         * sys/v4l/Makefile.am:
10291           Fix 'make distcheck' even more.
10292
10293 2007-01-09  Wim Taymans  <wim@fluendo.com>
10294
10295         * docs/plugins/Makefile.am:
10296         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10297         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10298         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
10299         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
10300         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
10301         (gst_ogg_demux_perform_seek):
10302         * ext/ogg/gstoggdemux.h:
10303         Added docs.
10304         Add some more comments.
10305         Small cleanups.
10306
10307 2007-01-09  Wim Taymans  <wim@fluendo.com>
10308
10309         * ext/theora/theoradec.c:
10310         * ext/vorbis/vorbisdec.c:
10311         * gst-libs/gst/audio/gstringbuffer.c:
10312         (gst_ring_buffer_commit_full):
10313         * gst-libs/gst/audio/gstringbuffer.h:
10314         * gst-libs/gst/rtp/gstrtpbuffer.c:
10315         * gst-libs/gst/tag/gstvorbistag.c:
10316         Small documentation updates/fixes
10317
10318 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10319
10320         * configure.ac:
10321           Require core CVS HEAD for Andy's basesrc/sink API additions.
10322
10323 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10324
10325         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
10326
10327         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
10328         (plugin_init):
10329           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
10330           on flac.sf.net (there appear to be other versions of the first
10331           ogg page in the wild) (#391365).
10332
10333 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10334
10335         * configure.ac:
10336           Check if localtime_r() is available.
10337
10338         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
10339           If localtime_r() is not available, fall back to localtime(). Should
10340           fix build on MingW (#393310).
10341
10342 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10343
10344         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10345         * gst/subparse/gstsubparse.h:
10346           Remove spurious 1000 subtrahend when calculating the timestamp from
10347           the frame number and the frame rate . Also, use the frames/second
10348           value specified in the first line of the file, if one is specified
10349           there. Should fix #357503.
10350
10351         * tests/check/elements/subparse.c: (do_test),
10352         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
10353         (subparse_suite):
10354           Add some basic unit tests for the microdvd subtitle format.
10355
10356 2007-01-07  Julien MOUTTE  <julien@moutte.net>
10357
10358         Patch by: Young-Ho Cha <ganadist at chollian dot net>
10359
10360         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
10361         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
10362         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
10363         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
10364         (gst_xvimagesink_set_xwindow_id),
10365         (gst_xvimagesink_set_event_handling),
10366         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10367         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10368         Fixes: #390076.
10369         Add an adaptor property to select a specific XV adaptor.
10370         * sys/xvimage/xvimagesink.h:
10371
10372 2007-01-07  Julien MOUTTE  <julien@moutte.net>
10373
10374         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10375         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
10376         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
10377         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
10378         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
10379         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
10380         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
10381         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
10382         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
10383         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
10384         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
10385         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
10386         Use flow_lock much more to protect every access to xwindow.
10387         Try to catch erros while creating images in case some drivers are
10388         just generating an XError when the requested image is too big.
10389         Should fix : #354698, #384008, #384060.
10390         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
10391         Implement some stress testing of setting window xid.
10392
10393 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
10394
10395         * win32/common/libgsaudio.def:
10396           Add new exported function.
10397         * win32/common/libgstogg.dsp:
10398           Add gstoggaviparse.c to the build.
10399         * win32/common/libgstvideoscale.dsp:
10400           Add vs_4tap.c to the build.
10401         * win32/common/libgstvorbis.dsp:
10402           Add vorbistag.c to the build.
10403         
10404 2007-01-06  Andy Wingo  <wingo@pobox.com>
10405
10406         * gst-libs/gst/audio/gstbaseaudiosink.c
10407         (gst_base_audio_sink_class_init)
10408         (gst_base_audio_sink_init): 
10409         (gst_base_audio_sink_activate_pull): Add an activate_pull function
10410         to baseaudiosink, and tell basesink that we can work in pull mode.
10411         This way the ring buffer thread drives the pipeline directly, if
10412         pull mode is possible. There is some lingering nastiness regarding
10413         capsnego, however.
10414         (gst_base_audio_sink_callback): Implement the callback to pull
10415         data. This interface is a bit light, though -- it should get a
10416         GstFlowReturn return value at least.
10417
10418 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10419
10420         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
10421         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
10422         * gst/playback/gstdecodebin2.c:
10423         (gst_decode_group_check_if_blocked):
10424           Printf format and missing argument fixes.
10425
10426 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
10427
10428         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
10429         (gst_ogm_parse_change_state):
10430         Activate pads before adding them to the element.
10431
10432 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10433
10434         * tests/examples/seek/scrubby.c: (main):
10435         * tests/examples/seek/seek.c: (main):
10436           Call g_thread_init() first thing in main() (see #391278).
10437
10438 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10439
10440         * tests/check/Makefile.am:
10441         * tests/check/libs/.cvsignore:
10442         * tests/check/libs/netbuffer.c: (GST_START_TEST),
10443         (netbuffer_suite):
10444           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
10445           for the time being, since it's broken, see #393099.
10446
10447 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10448
10449         * tests/check/Makefile.am:
10450           Update to use GST_PLUGINS_BASE_CFLAGS as well.
10451
10452 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
10453
10454         * configure.ac:
10455           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
10456           so that GST_BASE_CFLAGS can go inbetween them, making sure
10457           we use uninstalled gst-libs headers
10458         * docs/libs/Makefile.am:
10459         * ext/alsa/Makefile.am:
10460         * ext/cdparanoia/Makefile.am:
10461         * ext/gnomevfs/Makefile.am:
10462         * ext/libvisual/Makefile.am:
10463         * ext/ogg/Makefile.am:
10464         * ext/theora/Makefile.am:
10465         * ext/vorbis/Makefile.am:
10466         * gst-libs/gst/audio/Makefile.am:
10467         * gst-libs/gst/cdda/Makefile.am:
10468         * gst-libs/gst/interfaces/Makefile.am:
10469         * gst-libs/gst/riff/Makefile.am:
10470         * gst-libs/gst/rtp/Makefile.am:
10471         * gst-libs/gst/tag/Makefile.am:
10472         * gst/adder/Makefile.am:
10473         * gst/audioconvert/Makefile.am:
10474         * gst/audiorate/Makefile.am:
10475         * gst/audioresample/Makefile.am:
10476         * gst/playback/Makefile.am:
10477         * gst/tcp/Makefile.am:
10478         * gst/videoscale/Makefile.am:
10479         * gst/volume/Makefile.am:
10480         * sys/ximage/Makefile.am:
10481         * sys/xvimage/Makefile.am:
10482         * tests/icles/Makefile.am:
10483           adapt
10484
10485 2007-01-04  Julien MOUTTE  <julien@moutte.net>
10486
10487         * gst-libs/gst/interfaces/xoverlay.c:
10488         (gst_x_overlay_handle_events):
10489         * gst-libs/gst/interfaces/xoverlay.h:
10490         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
10491         (gst_ximagesink_set_xwindow_id),
10492         (gst_ximagesink_set_event_handling),
10493         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
10494         (gst_ximagesink_get_property), (gst_ximagesink_init),
10495         (gst_ximagesink_class_init):
10496         * sys/ximage/ximagesink.h:
10497         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
10498         (gst_xvimagesink_set_xwindow_id),
10499         (gst_xvimagesink_set_event_handling),
10500         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
10501         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
10502         (gst_xvimagesink_class_init):
10503         * sys/xvimage/xvimagesink.h:
10504         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
10505         Add a method to the XOverlay interface to allow disabling of 
10506         event handling in x[v]imagesink elements. This will let X events
10507         propagate to parent windows which can be usefull in some cases.
10508         Be carefull that the application is then responsible of pushing
10509         navigation events and expose events to the video sink.
10510         Fixes: #387138.
10511
10512 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
10513
10514         * gst-libs/gst/tag/gstvorbistag.c:
10515         * tests/check/libs/tag.c: (GST_START_TEST):
10516           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
10517           (fixes #392070).
10518
10519 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
10520
10521         * configure.ac:
10522         * docs/Makefile.am:
10523         * docs/design/Makefile.am:
10524           Dist design docs.
10525
10526 2006-12-27  Julien MOUTTE  <julien@moutte.net>
10527
10528         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
10529         typo. Fixes: #390063.
10530
10531 2006-12-27  Julien MOUTTE  <julien@moutte.net>
10532
10533         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10534         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
10535         caps leak.
10536         * win32/common/config.h: Updated.
10537
10538 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
10539
10540         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
10541         (setup_gdpdepay_streamheader):
10542         * tests/check/elements/gdppay.c: (cleanup_gdppay),
10543         (setup_gdppay_streamheader):
10544           Fix the dp tests, but activating the pads for the streamheader tests
10545           too and cleaning up conditionaly
10546
10547 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
10548
10549         * gst/ffmpegcolorspace/avcodec.h:
10550         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10551         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10552         (gst_ffmpegcsp_avpicture_fill):
10553         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
10554         (img_get_alpha_info):
10555         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
10556         other end of the word. Fixes: #387073.
10557
10558         Add some inconsequential branch hints in a couple of places.
10559
10560 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
10561
10562         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10563         (gst_ffmpeg_caps_to_smpfmt):
10564           The "signed" field in raw audio caps is of boolean type, trying to
10565           extract the value with _get_int() will fail (fix to keep in sync with
10566           the copy in gst-ffmpeg)
10567
10568 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10569
10570         * tests/check/elements/audioresample.c: (cleanup_audioresample):
10571         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
10572         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
10573         (cleanup_gdpdepay):
10574         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
10575         * tests/check/elements/subparse.c: (teardown_subparse):
10576         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
10577         * tests/check/elements/videorate.c: (cleanup_videorate):
10578         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
10579         * tests/check/elements/volume.c: (cleanup_volume):
10580         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
10581         (cleanup_vorbisdec):
10582         * tests/check/elements/vorbistag.c: (setup_vorbistag),
10583         (cleanup_vorbistag):
10584           consistent pad (de)activation
10585
10586 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
10587
10588         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10589           Forgot to register the extensions.
10590
10591 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
10592
10593         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
10594         (plugin_init):
10595           Add typefinder for VIVO files (my christmas present to the 90s).
10596
10597 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10598
10599         * gst/playback/gstdecodebin.c: (type_found):
10600           Special-case the text/plain media type: we only want to recognise it
10601           as a 'raw' decoded media type if it comes from a demuxer or subtitle
10602           parser, but not if the entire stream is of text/plain type. If the
10603           entire stream is text/plain, we should just error out.
10604
10605           This fixes playback of audio files with lyrics in totem. Totem can't
10606           distinguish between text files and subtitle files and passes any
10607           .txt file with the same basename as the main file to playbin as
10608           suburi, and playbin will then throw a 'subtitle found, but no video
10609           stream' error, which isn't entirely helpful. See #380342.
10610
10611           Also, with this change we'll show a slightly more correct error
10612           message in case totem passes a playlist file to us (although a
10613           custom error message wording instead of the default text would
10614           probably not be a bad idea either).
10615
10616           Same problem also needs to be fixed for playbin+decodebin2.
10617
10618         * tests/check/Makefile.am:
10619         * tests/check/elements/decodebin.c: (src_handoff_cb),
10620         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
10621         (decodebin_suite):
10622           Add simple unit test for decodebin for the above.
10623
10624 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10625
10626         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
10627         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
10628           Refuse to change state to READY when we failed to create any of the
10629           required elements in our instance init function.
10630
10631 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
10632
10633         * docs/libs/gst-plugins-base-libs-sections.txt:
10634           Small docs fixes/updates.
10635
10636         * gst-libs/gst/video/gstvideosink.h:
10637           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
10638           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
10639           removed from the base sink API between 0.9.6 and 0.9.7).
10640           API: add GST_VIDEO_SINK_CAST and use it for the height/width
10641           accessor macros, so we don't do a runtime GObject type check every
10642           time we use them.
10643
10644 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
10645
10646         * Makefile.am:
10647         * gst-plugins-base.doap:
10648         * gst-plugins-base.spec.in:
10649           add doap file
10650
10651 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
10652
10653         Patch by: Jens Granseuer <jensgr at gmx net>
10654
10655         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
10656         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
10657         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
10658         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
10659         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
10660           Declare variables at the beginning of a block. Fixes #383195.
10661
10662 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
10663
10664         * configure.ac:
10665         Bump version nano - back to CVS.
10666
10667
10668 === release 0.10.11 ===
10669
10670 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
10671
10672         * configure.ac:
10673           releasing 0.10.11, "Dumb things"
10674
10675 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
10676
10677         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
10678         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
10679         Handle the case where an element has multiple pads with 
10680         unfixed caps as well as still possibly producing more dynamic 
10681         pads by storing each case as a distinct entry in the dynamic list.
10682         Fixes #38223 again.
10683
10684 2006-12-04  Wim Taymans  <wim@fluendo.com>
10685
10686         * gst/playback/gstdecodebin.c: (close_pad_link):
10687         Fix #382223, add more dynamic caps handling.
10688
10689 2006-12-04  Wim Taymans  <wim@fluendo.com>
10690
10691         * gst-libs/gst/audio/gstringbuffer.h:
10692         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
10693         (gst_netaddress_set_ip4_interface),
10694         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
10695         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
10696         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
10697         (gst_netaddress_get_ttl):
10698         * gst-libs/gst/netbuffer/gstnetbuffer.h:
10699         * gst/playback/gstdecodebin.c: (close_pad_link):
10700         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
10701         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
10702         * win32/common/config.h:
10703
10704 2006-12-01  Michael Smith  <msmith@fluendo.com>
10705
10706         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
10707           Delete bad debug code.
10708           Fixes #381219
10709
10710 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
10711
10712         * gst/videoscale/vs_4tap.c:
10713         * win32/MANIFEST:
10714         * win32/common/config.h:
10715         * win32/vs8/libgstvideoscale.vcproj:
10716         Fix compilation on win32 under VS8
10717         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
10718         Partially fixes #381175
10719
10720 2006-11-30  Michael Smith  <msmith@fluendo.com>
10721
10722         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
10723         (GST_START_TEST):
10724           It would be very bad if, after a discont buffer, we thought every
10725           single following buffer was also discont. So, add to the test to
10726           ensure that this isn't the case.
10727           
10728         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
10729           ... it was the case. So fix it.
10730
10731 2006-11-28  Wim Taymans  <wim@fluendo.com>
10732
10733         * gst/playback/gstplaybasebin.c: (check_queue_event):
10734         Improve debug.
10735
10736         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
10737         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
10738         padtemplate caps. Refixes #357577.
10739
10740 2006-11-28  Wim Taymans  <wim@fluendo.com>
10741
10742         * gst/playback/gstplaybasebin.c: (check_queue_event),
10743         (queue_threshold_reached), (queue_out_of_data),
10744         (gen_preroll_element):
10745         Add event probe to see when EOS is in a queue and we can disable the
10746         underrun signals. Fixes #357577.
10747
10748 2006-11-28  Edward Hervey  <edward@fluendo.com>
10749
10750         * gst/playback/Makefile.am:
10751         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
10752         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
10753         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
10754         (gst_decode_bin_init), (gst_decode_bin_dispose),
10755         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
10756         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
10757         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
10758         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
10759         (connect_element), (expose_pad), (type_found),
10760         (pad_added_group_cb), (pad_removed_group_cb),
10761         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
10762         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
10763         (are_raw_caps), (multi_queue_overrun_cb),
10764         (multi_queue_underrun_cb), (gst_decode_group_new),
10765         (get_current_group), (group_demuxer_event_probe),
10766         (gst_decode_group_control_demuxer_pad),
10767         (gst_decode_group_control_source_pad),
10768         (gst_decode_group_check_if_blocked),
10769         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
10770         (gst_decode_group_hide), (gst_decode_group_free),
10771         (gst_decode_group_set_complete), (source_pad_blocked_cb),
10772         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
10773         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
10774         (plugin_init):
10775         New decodebin2 element.
10776         Closes #370092
10777         * gst/playback/gstplay-marshal.list:
10778         Added marshallers for new signals in decodebin2
10779         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
10780         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
10781         is set.
10782
10783 2006-11-28  Wim Taymans  <wim@fluendo.com>
10784
10785         * gst/playback/gstplaybasebin.c: (setup_source),
10786         (gst_play_base_bin_change_state):
10787         Disable rtsp:// uris for the release, it's not good enough yet.
10788         Remove unused var.
10789
10790 2006-11-26  Wim Taymans  <wim@fluendo.com>
10791
10792         * ext/theora/theoradec.c: (gst_theora_dec_reset),
10793         (theora_dec_push_forward), (theora_dec_push_reverse),
10794         (theora_handle_data_packet), (theora_dec_decode_buffer),
10795         (theora_dec_flush_decode), (theora_dec_chain_reverse),
10796         (theora_dec_chain_forward), (theora_dec_chain):
10797         Implement reverse playback.
10798
10799         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
10800         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
10801         (vorbis_dec_chain_forward):
10802         Clear buffers used for reverse playback in _reset.
10803         No need to set the eos flag, we clip samples using the segment.
10804
10805 2006-11-24  Wim Taymans  <wim@fluendo.com>
10806
10807         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
10808         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
10809         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
10810         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
10811         Some cleanups.
10812         Handle continued pages in reverse mode.
10813
10814 2006-11-24  Wim Taymans  <wim@fluendo.com>
10815
10816         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
10817         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
10818         (vorbis_dec_flush_decode):
10819         Small cleanups.
10820         Don't try to add invalid timestamps.
10821         Clipping will unref the buffer.
10822
10823 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
10824
10825         * gst/adder/gstadder.h:
10826         * gst/audiotestsrc/gstaudiotestsrc.h:
10827           remove obsolete _factory_init protos
10828
10829 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
10830
10831         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
10832           Fix spacing in debug message.
10833
10834 2006-11-23  Wim Taymans  <wim@fluendo.com>
10835
10836         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
10837         (gst_ogg_demux_chain):
10838         Don't just ignore return values from _pad_push().
10839         Small debug improvements.
10840
10841 2006-11-23  Michael Smith  <msmith@fluendo.com>
10842
10843         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
10844           If our incoming buffer is marked as DISCONT, then increment the page
10845           number (so that the discontinuity is marked in the final ogg
10846           bitstream) and flush the previous page.
10847
10848 2006-11-22  Michael Smith  <msmith@fluendo.com>
10849
10850         * ext/theora/gsttheoraenc.h:
10851         * ext/theora/theoraenc.c: (gst_theora_enc_init),
10852         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
10853         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
10854         (theora_enc_chain), (theora_enc_change_state):
10855           Mark discontinuities of > 3/4 of a frame, reinit encoder.
10856
10857         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
10858         (GST_START_TEST), (theoraenc_suite):
10859           Enable discontinuity test, fix it.
10860
10861 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10862
10863         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
10864         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
10865         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
10866         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
10867         (gst_text_overlay_change_state):
10868         * ext/pango/gsttextoverlay.h:
10869           Some textoverlay fixes: for one, in the video chain function,
10870           actually wait for a text buffer to come in if there is none at the
10871           moment and there should be one; also, deal more gracefully with
10872           incoming buffers that do not have a timestamp or duration; discard
10873           text buffer when not needed any longer. Fixes #341681.
10874
10875         * tests/check/Makefile.am:
10876         * tests/check/elements/.cvsignore:
10877         * tests/check/elements/textoverlay.c:
10878         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
10879         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
10880         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
10881         (test_video_waits_for_text_send_text_newsegment_thread),
10882         (test_video_waits_for_text_shutdown_element),
10883         (test_render_continuity_push_video_buffers_thread),
10884         (textoverlay_suite):
10885           Add some unit tests for textoverlay.
10886
10887 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
10888
10889         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
10890           Avoid integer underflow when the found probability for mp3 is
10891           smaller than the 'penalty' we subtract if there's not a clean
10892           mp3 header sync at offset 0.
10893
10894 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
10895
10896         * docs/libs/gst-plugins-base-libs-sections.txt:
10897           Add some new symbols to the docs
10898
10899 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
10900
10901         * tests/check/Makefile.am:
10902         * tests/check/elements/ffmpegcolorspace.c:
10903         (ffmpegcolorspace_suite):
10904           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
10905           (for now not for valgrinding though, since it takes too long).
10906
10907 2006-11-20  Wim Taymans  <wim@fluendo.com>
10908
10909         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10910         (gst_ffmpeg_pixfmt_to_caps):
10911         Fix RGBA32 caps. Fixes #357038.
10912
10913 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
10914
10915         * gst-libs/gst/interfaces/mixertrack.h:
10916           Add FIXME so we can add some padding here in 0.11
10917
10918 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
10919
10920         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
10921           Fix GstBaseRTPAudioPayload structure so the whole GObject
10922           inheritance business actually works (parent class instance structure
10923           must always come first in the derived class instance structure).
10924
10925 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
10926
10927         * gst/videotestsrc/Makefile.am:
10928         * tests/check/Makefile.am:
10929           Make sure our checks and the videotestsrc plugin link against the
10930           local uninstalled gst libs and not any installed gst libs that
10931           might happen to exist as well.
10932
10933         * tests/check/elements/adder.c: (message_received),
10934         (test_event_message_received), (test_play_twice_message_received):
10935         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
10936           Fix compiler warnings when compiling against core with disabled
10937           debugging system.
10938
10939 2006-11-16  Michael Smith  <msmith@fluendo.com>
10940
10941         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
10942         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
10943           Fix audiorate, so that it accurately sets offsets and timestamps.
10944           Doesn't change the fundamental algorithmic decisions; so should be
10945           safe.
10946
10947         * tests/check/Makefile.am:
10948           Enable audiorate test now that it passes.
10949
10950 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
10951
10952         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
10953           clear xv when going to NULL, remove // commented non-existant proto
10954
10955         * tests/examples/seek/seek.c: (main):
10956           add missing tooltip description for scrub and play_scrub
10957
10958 2006-11-14  David Schleef  <ds@schleef.org>
10959
10960         * configure.ac:
10961           Bump liboil requirement to 0.3.8.
10962         * gst-libs/gst/riff/riff-media.c:
10963           Add Dirac fourcc.
10964         * gst/videoscale/vs_image.h:
10965         * gst/videoscale/vs_scanline.h:
10966           Use liboil's stdint.h.
10967         * gst/videotestsrc/videotestsrc.c:
10968           Remove liboil related ifdef's, since they aren't needed now, and
10969           won't work with future versions.
10970
10971 2006-11-14  David Schleef  <ds@schleef.org>
10972
10973         * gst/videoscale/Makefile.am:
10974         * gst/videoscale/gstvideoscale.c:
10975         * gst/videoscale/gstvideoscale.h:
10976         * gst/videoscale/vs_4tap.c:
10977         * gst/videoscale/vs_4tap.h:
10978         * gst/videoscale/vs_image.c:
10979         * gst/videoscale/vs_image.h:
10980         * gst/videoscale/vs_scanline.c:
10981         * gst/videoscale/vs_scanline.h:
10982           Add a 4-tap image scaler.  Theoretically looks much prettier.
10983           The tap calculation could use some improvement.
10984
10985 2006-11-14  Wim Taymans  <wim@fluendo.com>
10986
10987         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
10988
10989         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
10990         (gst_riff_parse_strf_iavs):
10991         * gst/subparse/gstsubparse.c: (convert_encoding):
10992         * gst/tcp/gstmultifdsink.c:
10993         (gst_multi_fd_sink_handle_client_write):
10994         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
10995         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
10996         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
10997         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
10998         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
10999         (gst_ximagesink_ximage_new):
11000         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
11001         Various gsize and gssize printf fixes. Fixes #372507.
11002
11003 2006-11-13  Wim Taymans  <wim@fluendo.com>
11004
11005         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11006         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
11007         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11008         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
11009         (vorbis_dec_chain_forward), (vorbis_dec_chain):
11010         * ext/vorbis/vorbisdec.h:
11011         First stab at vorbis reverse playback.
11012
11013 2006-11-13  Wim Taymans  <wim@fluendo.com>
11014
11015         * gst-libs/gst/audio/gstbaseaudiosink.c:
11016         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11017         * gst-libs/gst/audio/gstbaseaudiosink.h:
11018         Make the clock sync code more accurate wrt resampling and playback
11019         at different rates.
11020         
11021         * gst-libs/gst/audio/gstringbuffer.c:
11022         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
11023         * gst-libs/gst/audio/gstringbuffer.h:
11024         Use better algorithm to interpolate sample rates. 
11025
11026 2006-11-13  Michael Smith  <msmith@fluendo.com>
11027
11028         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
11029           Improve a debug line slightly.
11030
11031         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
11032           Call gst_riff_init() in plugin_init, to avoid getting errors from
11033           the debug system (unrelated changes to another plugin made this turn
11034           up; not sure why).
11035
11036 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11037
11038         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
11039
11040         * win32/common/libgsttag.def:
11041           Add missing symbol (#366492).
11042
11043 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11044
11045         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
11046           Don't unref a NULL pad.
11047
11048 2006-11-09  Wim Taymans  <wim@fluendo.com>
11049
11050         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11051         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
11052         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
11053         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
11054         (gst_ogg_demux_loop):
11055         Implement first stab at reverse playback.
11056
11057 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
11058
11059         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11060         (gst_riff_create_video_template_caps):
11061           add h263/h264 variants to the caps, Fixes #363118
11062
11063 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
11064
11065         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
11066         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
11067           Use g_strerror instead of strerror so we get UTF-8.
11068
11069 2006-11-03  David Schleef  <ds@schleef.org>
11070
11071         * ext/ogg/gstoggdemux.c:
11072         * ext/ogg/gstoggmux.c:
11073           Add/remove KW-DIRAC header here, since it is ogg-specific.
11074
11075 2006-11-03  Michael Smith  <msmith@fluendo.com>
11076
11077         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
11078           Recognise more mpeg4 elementary video streams.
11079
11080 2006-11-02  Edward Hervey  <edward@fluendo.com>
11081
11082         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11083         Lower the probability of mp3 typefinding functions if we don't find a
11084         valid mp3 header at the start of the file.
11085         Closes #369482
11086
11087 2006-11-02  Wim Taymans  <wim@fluendo.com>
11088
11089         * ext/theora/gsttheoradec.h:
11090         * ext/theora/theoradec.c: (gst_theora_dec_init),
11091         (theora_dec_sink_event), (theora_dec_chain_forward),
11092         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11093         (theora_dec_chain):
11094         Document and partially implement an algorithm for doing reverse playback
11095         of theora video.
11096
11097 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
11098
11099         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
11100
11101         * win32/common/config.h:
11102         * win32/common/interfaces-enumtypes.c:
11103         * win32/common/libgsttag.def:
11104         * win32/vs8/gst-plugins-base.sln:
11105         * win32/vs8/libgstaudioresample.vcproj:
11106         * win32/vs8/libgstinterfaces.vcproj:
11107         * win32/vs8/libgstogg.vcproj:
11108         * win32/vs8/libgstriff.vcproj:
11109         * win32/vs8/libgsttag.vcproj:
11110         * win32/vs8/libgsttheora.vcproj:
11111         * win32/vs8/libgstvideoscale.vcproj:
11112         * win32/vs8/libgstvorbis.vcproj:
11113           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
11114           to libgsttag.def; add missing dependencies for some vs8 projects;
11115           re-arrange placement of .def files in vs8 projects (#366334).
11116
11117 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
11118
11119         * ext/ogg/gstogg.c:
11120           Remove unused variable.
11121
11122         * ext/ogg/gstoggdemux.c:
11123           Fix Wim's surname in plugin description.
11124
11125 2006-10-31  Wim Taymans  <wim@fluendo.com>
11126
11127         * gst-plugins-base.spec.in:
11128         spec new .h file. Fixes #368310.
11129
11130 2006-10-31  Michael Smith  <msmith@fluendo.com>
11131
11132         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
11133         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
11134         (gst_multi_fd_sink_get_stats),
11135         (gst_multi_fd_sink_remove_client_link),
11136         (gst_multi_fd_sink_queue_buffer),
11137         (gst_multi_fd_sink_handle_clients):
11138         * gst/tcp/gstmultifdsink.h:
11139           Make using the remove or clear signals threadsafe.
11140           Make calling get-stats with an invalid fd not segfault.
11141           Fixes 368273.
11142
11143 2006-10-31  Wim Taymans  <wim@fluendo.com>
11144
11145         * gst-libs/gst/rtp/Makefile.am:
11146         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11147         (gst_base_rtp_audio_payload_init):
11148         Fix and activate base audio payloader.
11149
11150 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11151
11152         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
11153         (plugin_init):
11154           Add typefinder for QuickTime Image Files (see #366156).
11155
11156 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11157
11158         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
11159           Another typo fix (#366212).
11160
11161 2006-10-27  Wim Taymans  <wim@fluendo.com>
11162
11163         * gst/volume/gstvolume.c: (volume_transform_ip):
11164         Use stream time to synchronize volume property instead of rather random
11165         timestamps. This is needed when gnonlin does its time shifting.
11166
11167 2006-10-27  Wim Taymans  <wim@fluendo.com>
11168
11169         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
11170
11171         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
11172         Remove the pad from the element in release_pad. Fixes #364812.
11173
11174 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11175
11176         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
11177         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
11178           Explicitly create our custom buffer classes at a thread-safe
11179           location as well, since g_type_class_ref() doesn't seem to be
11180           entirely thread-safe either (#365501; also see #349410).
11181
11182 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11183
11184         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
11185         (gst_riff_parse_info):
11186           If strings in INFO chunk are not UTF-8, do something similar to
11187           what we do for ID3v1 tags: check a number of environment variables
11188           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
11189           character sets to try, otherwise try the current locale and/or fall
11190           back on ISO-8859-1. Fixes #360552.
11191
11192 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11193
11194         * gst/videotestsrc/gstvideotestsrc.c:
11195         (gst_video_test_src_pattern_get_type),
11196         (gst_video_test_src_set_pattern):
11197         * gst/videotestsrc/gstvideotestsrc.h:
11198         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
11199         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
11200         (gst_video_test_src_checkers8):
11201         * gst/videotestsrc/videotestsrc.h:
11202           Add a bunch of exciting new checkers patterns.
11203
11204 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11205
11206         * gst/subparse/Makefile.am:
11207         * gst/subparse/gstsubparse.c:
11208         (gst_sub_parse_data_format_autodetect),
11209         (gst_sub_parse_format_autodetect), (handle_buffer),
11210         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
11211         * gst/subparse/gstsubparse.h:
11212         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
11213         (parse_tmplayer):
11214         * gst/subparse/tmplayerparse.h:
11215           Add support for TMPlayer-type subtitles (#362845).
11216
11217         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
11218         (GST_START_TEST), (subparse_suite):
11219           Add some basic unit tests for the above.
11220
11221 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11222
11223         * tests/check/elements/audiorate.c: (test_injector_base_init),
11224         (test_injector_class_init), (test_injector_chain),
11225         (test_injector_init), (probe_cb), (do_perfect_stream_test),
11226         (GST_START_TEST), (audiorate_suite):
11227           More tests for audiorate: inject buffers to check behaviour when
11228           buffers overlap.
11229
11230 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
11231
11232         * tests/check/Makefile.am:
11233         * tests/check/elements/.cvsignore:
11234         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
11235         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
11236           Add some basic unit tests for audiorate. Disabled at the moment
11237           since it doesn't pass yet (see bug #363119).
11238
11239 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11240
11241         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
11242         (parse_subrip), (handle_buffer):
11243           Add missing closing tags for markup and fix broken markup,
11244           otherwise pango won't render anything (fixes #357531). Also,
11245           make sure the text we send out is always NUL-terminated
11246           (better safe than sorry etc.).
11247
11248         * tests/check/elements/subparse.c: (test_srt_do_test),
11249         (test_srt):
11250           Some more tests for .srt incl. tests for the above stuff.
11251
11252 2006-10-20  Julien MOUTTE  <julien@moutte.net>
11253
11254         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
11255         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
11256         Patch by: Stefan Kost  <ensonic@users.sf.net>
11257         Try to redraw borders only when needed. Apparently this consumes
11258         resources on small devices... :-O (#363607)
11259
11260 2006-10-20  Michael Smith  <msmith@fluendo.com>
11261
11262         * gst/tcp/gstmultifdsink.c:
11263         (gst_multi_fd_sink_client_queue_buffer):
11264           If caps change, then update the client's idea of the caps so that we
11265           don't end up re-sending streamheaders for every single buffer after
11266           the caps change.
11267
11268 2006-10-20  Michael Smith  <msmith@fluendo.com>
11269
11270         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
11271         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
11272           Set caps on pushed buffers; fix up refcounting of caps objects.
11273
11274 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11275
11276         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
11277         (plugin_init):
11278           Typefind mmsh header data packet to application/x-mmsh (#362625).
11279
11280 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11281
11282         * tests/check/Makefile.am:
11283         * tests/check/elements/.cvsignore:
11284         * tests/check/elements/subparse.c: (buffer_from_static_string),
11285         (setup_subparse), (teardown_subparse), (test_srt_do_test),
11286         (GST_START_TEST), (subparse_suite):
11287           Add very simple unit test for subparse.
11288
11289 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11290
11291         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
11292         (parse_subrip):
11293           Strip trailing newlines from subtitle text output.
11294
11295 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11296
11297         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
11298         (gst_sub_parse_change_state):
11299           Fix memleak; clear subparse->textbuf n state change function.
11300
11301 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11302
11303         * gst/subparse/gstsubparse.c:
11304         (gst_sub_parse_data_format_autodetect):
11305           Don't require subrip (.srt) files to start with a chunk number of 1.
11306
11307 2006-10-18  Wim Taymans  <wim@fluendo.com>
11308
11309         * gst-libs/gst/audio/gstbaseaudiosink.c:
11310         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11311         * gst-libs/gst/audio/gstbaseaudiosink.h:
11312         Extract rate from the NEWSEGMENT event.
11313         Use commit_full to also take rate adjustment into account when writing
11314         samples to the ringbuffer.
11315         
11316         * gst-libs/gst/audio/gstringbuffer.c:
11317         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
11318         (gst_ring_buffer_read):
11319         * gst-libs/gst/audio/gstringbuffer.h:
11320         Added _commit_full() to also take rate into account.
11321         Use simple interpolation algorithm to resample audio.
11322         API: gst_ring_buffer_commit_full()
11323
11324         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
11325         * tests/examples/seek/seek.c: (segment_done):
11326         Don't try to seek with 0.0 rate, just pause instead.
11327         Remove bogus debug line.
11328
11329 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11330
11331         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
11332         (setup_source):
11333           Catch async errors when starting up the subtitle bin, so we can
11334           stop waiting and continue with the main film instead of hanging
11335           forever. Fixes #339366.
11336
11337         * tests/check/elements/playbin.c: (playbin_suite):
11338           Enable unit test for the above.
11339
11340 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11341
11342         * tests/check/Makefile.am:
11343         * tests/check/elements/.cvsignore:
11344         * tests/check/elements/playbin.c: (GST_START_TEST),
11345         (gst_red_video_src_uri_get_type),
11346         (gst_red_video_src_uri_get_protocols),
11347         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
11348         (gst_red_video_src_uri_handler_init),
11349         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
11350         (gst_red_video_src_create), (gst_red_video_src_class_init),
11351         (gst_red_video_src_init), (plugin_init), (playbin_suite):
11352           Some small and basic unit tests for playbin; not very useful yet,
11353           but at least a start.
11354
11355 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11356
11357         * gst/playback/gstplaybin.c: (setup_sinks):
11358           The old pad activation spiel.
11359
11360 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11361
11362         * gst/playback/gstplaybasebin.c: (setup_source):
11363           Don't hang forever if the subbin already fails to start up in 
11364           the state change to PAUSED (#339366).
11365
11366 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
11367
11368         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
11369         (gst_tuner_set_channel), (gst_tuner_get_channel),
11370         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
11371         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
11372         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
11373         (gst_tuner_find_channel_by_name):
11374           Fix some function guards, add some more function guards.
11375
11376 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
11377
11378         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
11379         (remove_element_chain):
11380         Don't return a pad from get_our_ghost_pad unless it is actually the
11381         one we want.
11382         Change a cast in remove_element_chain slightly.
11383
11384 2006-10-13  Julien MOUTTE  <julien@moutte.net>
11385
11386         * tests/examples/seek/seek.c: (do_seek), (start_seek),
11387         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
11388         Segment seeking needs to use the rate and set stop to -1.
11389
11390 2006-10-13  Wim Taymans  <wim@fluendo.com>
11391
11392         * gst-libs/gst/audio/gstbaseaudiosink.c:
11393         (gst_base_audio_sink_setcaps):
11394         Don't crash when ringbuffer is not yet created.
11395         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
11396         Fixes #361634.
11397
11398         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
11399         * gst/playback/gststreamselector.c:
11400         (gst_stream_selector_request_new_pad):
11401         Activate pads befre adding them to running elements.
11402
11403 2006-10-13  Julien MOUTTE  <julien@moutte.net>
11404
11405         * tests/examples/seek/seek.c: (do_seek), (start_seek),
11406         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
11407         updater when we start grabing the slider. Don't wait for the
11408         pipeline to be PAUSED.
11409
11410 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
11411
11412         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
11413         (gst_mixer_set_volume), (gst_mixer_get_volume),
11414         (gst_mixer_set_mute), (gst_mixer_set_option),
11415         (gst_mixer_get_option), (gst_mixer_mute_toggled),
11416         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
11417         (gst_mixer_option_changed):
11418           Guard mixer interface functions against bogus arguments.
11419
11420 2006-10-12  Julien MOUTTE  <julien@moutte.net>
11421
11422         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
11423         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
11424         (msg_state_changed), (main): Use state-changed messages to trigger
11425         start/stop of scale update timer. Indeed the scale slider was
11426         jumping here and there because the update timer was activated 
11427         before seek completed. This fixes instant applying of rate changes
11428         by pressing the spinbutton like a crazy man !
11429
11430 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
11431
11432         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
11433
11434         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
11435         (gst_basertppayload_finalize):
11436           Fix two small memory leaks (#361456).
11437
11438 2006-10-10  Julien MOUTTE  <julien@moutte.net>
11439
11440         * tests/examples/seek/seek.c: (do_seek),
11441         (rate_spinbutton_changed_cb): When changing spinbutton we try
11442         to change the rate on the fly.
11443
11444 2006-10-10  Wim Taymans  <wim@fluendo.com>
11445
11446         * gst-libs/gst/riff/riff-ids.h:
11447         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
11448         (gst_riff_create_audio_template_caps):
11449         Add WMS caps.
11450
11451 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11452
11453         Patch by: Josep Torra Valles <josep@fluendo.com>
11454
11455         * ext/gnomevfs/gstgnomevfssink.c:
11456         * ext/gnomevfs/gstgnomevfssrc.c:
11457         Fix URI interface implementation return type.
11458         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
11459         Fix what looks like a copy/paste issue when assigning values.
11460         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11461         (gst_audio_filter_template_get_type):
11462         Cast to prevent Forte warnings.
11463         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11464         Fix URI interface implementation return type.
11465         gst_pad_query_position requires a signed integer pointer as
11466         3rd parameter, GstClockTime is unsigned.
11467         * gst/audioconvert/audioconvert.c:
11468         Fix integer overflow when treated as signed.
11469         * gst/audioresample/resample.c: (resample_add_input_data):
11470         Cast to prevent warnings on Forte.
11471         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
11472         Fix integer overflow when treated as signed.
11473         * gst/ffmpegcolorspace/imgconvert_template.h:
11474         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
11475         * gst/playback/gstdecodebin.c: (queue_filled_cb),
11476         (cleanup_decodebin):
11477         Who initialises a guint to -1!
11478         Cast function pointers to prevent warnings on Forte.
11479         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
11480         (queue_threshold_reached):
11481         Cast function pointers correctly to prevent warnings on Forte.
11482         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
11483         Cast function pointers correctly to prevent warnings on Forte.
11484         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
11485         Obvious change to unsigned, 0xEF > max signed char.
11486         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
11487         GstClockTime is unsigned, initialise correctly.
11488         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
11489         Cast so pointer arithemetic doesn't cause warnings on Forte.
11490         * gst/videorate/gstvideorate.c:
11491         Use correct return value.
11492         * tests/examples/seek/scrubby.c:
11493         GstClockTime is unsigned, initialise correctly.
11494
11495 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
11496
11497         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
11498
11499         * gst/typefind/gsttypefindfunctions.c:
11500           Recognise XML files and XML-like files shorter than 256 bytes as
11501           well (fixes #359237).
11502
11503 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
11504
11505         Patch by: Renato Filho <renato.filho@indt.org.br>
11506         
11507         * gst/typefind/gsttypefindfunctions.c:
11508         Added typefind functions to video/x-nuv media.
11509         
11510 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
11511
11512         * gst-libs/gst/interfaces/xoverlay.c:
11513         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
11514           Some more guards against invalid input.
11515
11516 2006-10-07  Julien MOUTTE  <julien@moutte.net>
11517
11518         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
11519         Useless goto.
11520         * tests/examples/seek/seek.c: (do_seek),
11521         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
11522         seek example to experiment with rates != 1.0 (reverse playback !)
11523
11524 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
11525
11526         * gst-libs/gst/interfaces/xoverlay.c:
11527           Unref message in doc-example (spotted by Robert McQueen)
11528
11529 2006-10-06  Wim Taymans  <wim@fluendo.com>
11530
11531         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11532         (mpeg1_parse_header), (mpeg1_sys_type_find):
11533         printf fix.
11534
11535 2006-10-06  Wim Taymans  <wim@fluendo.com>
11536
11537         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11538         (close_pad_link):
11539         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
11540         Activate dynamic pads before adding them to the element.
11541
11542 2006-10-06  Michael Smith  <msmith@fluendo.com>
11543
11544         * gst-libs/gst/floatcast/floatcast.h:
11545           Fix obviously-bogus macros; use the correct types.
11546
11547 2006-10-06  Wim Taymans  <wim@fluendo.com>
11548
11549         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11550         (gst_base_rtp_depayload_change_state):
11551         Also call parent state change function to activate pads.
11552
11553         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11554         (mpeg1_parse_header), (mpeg1_sys_type_find):
11555         Add some more debug info in mpeg typefinding.
11556
11557 2006-10-06  Michael Smith  <msmith@fluendo.com>
11558
11559         * ext/theora/theoradec.c: (theora_dec_chain):
11560           Zero byte theora packets are valid and well-defined; don't warn on
11561           them.
11562
11563 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
11564
11565         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
11566         (gst_multi_fd_sink_get_stats), (find_limits),
11567         (gst_multi_fd_sink_queue_buffer):
11568           API: add dropped_buffers to the get-stats GValueArray
11569
11570 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
11571
11572         * ext/alsa/gstalsadeviceprobe.c:
11573         (gst_alsa_device_property_probe_get_values):
11574         * ext/alsa/gstalsasink.c: (set_hwparams):
11575         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
11576         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
11577         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
11578         (gst_ogg_mux_process_best_pad):
11579         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
11580         (gst_ogg_parse_chain):
11581         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
11582         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11583         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
11584         (gst_vorbis_enc_buffer_check_discontinuous):
11585         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
11586         * gst-libs/gst/audio/gstbaseaudiosink.c:
11587         (gst_base_audio_sink_render):
11588         * gst-libs/gst/cdda/gstcddabasesrc.c:
11589         (gst_cdda_base_src_handle_track_seek):
11590         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11591         (gst_base_rtp_depayload_push_full):
11592         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
11593         * gst/audioresample/resample.c: (resample_input_pushthrough):
11594         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
11595         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
11596         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11597         (wavpack_type_find):
11598         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
11599         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11600         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
11601         * tests/check/elements/volume.c: (GST_START_TEST):
11602           Printf format fixes.
11603
11604 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11605
11606         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
11607           Fix a simple mistake (see the docs)
11608           Fixes #359580
11609
11610 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
11611
11612         * docs/plugins/Makefile.am:
11613         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11614         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11615         * docs/plugins/gst-plugins-base-plugins.args:
11616         * docs/plugins/gst-plugins-base-plugins.hierarchy:
11617         * docs/plugins/inspect/plugin-adder.xml:
11618         * docs/plugins/inspect/plugin-alsa.xml:
11619         * docs/plugins/inspect/plugin-audioconvert.xml:
11620         * docs/plugins/inspect/plugin-audiorate.xml:
11621         * docs/plugins/inspect/plugin-audioresample.xml:
11622         * docs/plugins/inspect/plugin-audiotestsrc.xml:
11623         * docs/plugins/inspect/plugin-cdparanoia.xml:
11624         * docs/plugins/inspect/plugin-decodebin.xml:
11625         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
11626         * docs/plugins/inspect/plugin-gdp.xml:
11627         * docs/plugins/inspect/plugin-gnomevfs.xml:
11628         * docs/plugins/inspect/plugin-libvisual.xml:
11629         * docs/plugins/inspect/plugin-ogg.xml:
11630         * docs/plugins/inspect/plugin-pango.xml:
11631         * docs/plugins/inspect/plugin-playbin.xml:
11632         * docs/plugins/inspect/plugin-subparse.xml:
11633         * docs/plugins/inspect/plugin-tcp.xml:
11634         * docs/plugins/inspect/plugin-theora.xml:
11635         * docs/plugins/inspect/plugin-typefindfunctions.xml:
11636         * docs/plugins/inspect/plugin-video4linux.xml:
11637         * docs/plugins/inspect/plugin-videorate.xml:
11638         * docs/plugins/inspect/plugin-videoscale.xml:
11639         * docs/plugins/inspect/plugin-videotestsrc.xml:
11640         * docs/plugins/inspect/plugin-volume.xml:
11641         * docs/plugins/inspect/plugin-vorbis.xml:
11642         * docs/plugins/inspect/plugin-ximagesink.xml:
11643         * docs/plugins/inspect/plugin-xvimagesink.xml:
11644           Add vorbistag element to docs; update version numbers to 0.10.10.1.
11645
11646 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
11647
11648         Patch by: James "Doc" Livingston <doclivingston at gmail com>
11649
11650         * ext/vorbis/Makefile.am:
11651         * ext/vorbis/vorbis.c: (plugin_init):
11652         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
11653         (vorbis_parse_parse_packet), (vorbis_parse_chain):
11654         * ext/vorbis/vorbisparse.h:
11655         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
11656         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
11657         (gst_vorbis_tag_parse_packet):
11658         * ext/vorbis/vorbistag.h:
11659           Add new vorbistag element which derives from vorbisparse
11660           and is essentially the same as well, only that it implements
11661           the GstTagSetter interface and can modify the stream's
11662           vorbiscomment on the fly (#335635).
11663
11664         * tests/check/Makefile.am:
11665         * tests/check/elements/.cvsignore:
11666         * tests/check/elements/vorbistag.c: (setup_vorbistag),
11667         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
11668         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
11669         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
11670           Add unit test for new vorbistag element.
11671
11672 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
11673
11674         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
11675         (vorbis_parse_push_headers), (vorbis_parse_chain):
11676           Set BOS flag in packet structure to fix 'jump depends
11677           on unitialized value' errors in valgrind; various minor
11678           clean-ups.
11679
11680 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
11681
11682         * gst/playback/gstdecodebin.c: (close_pad_link):
11683         Fix typo in a debug statement.
11684
11685         * gst/playback/gstplaybasebin.c: (probe_triggered),
11686         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
11687         (gen_source_element), (source_new_pad), (analyse_source),
11688         (setup_source):
11689         When handling no_more_pads in new_decoded_pad, make sure to treat
11690         subtitle pads correctly. Fixes playback with subtitle files.
11691
11692         Move a recurring message to LOG level.
11693
11694         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
11695         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
11696         which ends up as -1 when cast to an int. Make the logic handle the
11697         max value as an unsigned mask and only change the colorkey when it's
11698         a value we recognise.
11699
11700 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11701
11702         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11703         Removed empty * between paragraphs
11704
11705 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11706
11707         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11708         * gst-libs/gst/rtp/README:
11709         Moved some documentation into .c file
11710
11711 2006-09-29  Wim Taymans  <wim@fluendo.com>
11712
11713         * gst/playback/gstdecodebin.c: (no_more_pads):
11714         Fix compilation.
11715
11716 2006-09-29  Wim Taymans  <wim@fluendo.com>
11717
11718         * gst/playback/gstdecodebin.c: (new_caps):
11719         Remove g_print
11720
11721         * gst/playback/gstplaybin.c:
11722         Add some docs.
11723
11724 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
11725
11726         * tests/check/Makefile.am:
11727           Re-enable cddabasesrc test to see if it works again
11728           now.
11729
11730 2006-09-29  Wim Taymans  <wim@fluendo.com>
11731
11732         * gst/playback/gstplaybasebin.c: (setup_subtitle),
11733         (gen_source_element):
11734         Handle invalid URIs a bit more gracefully.
11735
11736 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
11737
11738         * tests/check/pipelines/oggmux.c:
11739           Remove obsolete comment.
11740
11741 2006-09-29  Michael Smith  <msmith@fluendo.com>
11742
11743         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11744         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
11745         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
11746         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
11747         (gst_ogg_mux_collected):
11748           Commit patch from James "Doc" Livingston, adds proper EOS handling
11749           in oggmux. GStreamer can, for the first time ever, create a valid
11750           Ogg file! Yay!
11751
11752         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
11753         (oggmux_suite):
11754           Reenable tests now that they pass.
11755
11756 2006-09-29  Wim Taymans  <wim@fluendo.com>
11757
11758         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
11759         Stop reading commands when EOF (we read 0) as well.
11760
11761 2006-09-28  Wim Taymans  <wim@fluendo.com>
11762
11763         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
11764         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
11765         (find_dynamic), (unlinked), (close_link):
11766         Implement delayed caps linking needed for element with a lot of
11767         different caps on the src pads that get fixed at runtime.
11768         Improve management of dynamic elements.
11769
11770         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
11771         (group_destroy), (group_commit), (check_queue), (queue_overrun),
11772         (gen_preroll_element), (remove_groups), (unknown_type),
11773         (add_element_stream), (no_more_pads_full), (no_more_pads),
11774         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
11775         (new_decoded_pad), (setup_subtitle), (array_has_value),
11776         (gen_source_element), (source_new_pad), (has_all_raw_caps),
11777         (analyse_source), (remove_decoders), (make_decoder),
11778         (remove_source), (setup_source), (finish_source), (prepare_output),
11779         (gst_play_base_bin_change_state):
11780         * gst/playback/gstplaybasebin.h:
11781         Use more _CAST instead of full type checking casts.
11782         Small cleanups, plug some leaks.
11783         Handle dynamic sources.
11784         Add some helper functions to create lists of strings used for
11785         blacklisting and other stuff.
11786         Refactor some code dealing with analysing the source.
11787         Re-enable sources without pads (like cd:// or other selfcontained
11788         elements).
11789
11790 2006-09-28  Wim Taymans  <wim@fluendo.com>
11791
11792         * gst-libs/gst/audio/gstbaseaudiosink.c:
11793         (gst_base_audio_sink_render):
11794         When we have a timestamp, we can still perform clipping.
11795         When we have no clock, we must play the sample ASAP.
11796
11797 2006-09-28  Wim Taymans  <wim@fluendo.com>
11798
11799         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
11800         Set caps on outgoing buffers.
11801
11802         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
11803         (gst_video_rate_event), (gst_video_rate_chain):
11804         * gst/videorate/gstvideorate.h:
11805         Fix videorate some more. Fixes #357977
11806
11807 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
11808
11809         * tests/check/elements/adder.c: (adder_suite):
11810           Don't set timeout to 6 seconds when we're running
11811           in valgrind ... (and how is 6 seconds longer than
11812           the default anyway?)
11813
11814 2006-09-28  Wim Taymans  <wim@fluendo.com>
11815
11816         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
11817         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
11818         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
11819         Keep sink and src segment to keep track of time and support more
11820         input formats.
11821         Fix bogus next_offset and run_time calculation, don't understand how
11822         this could have worked before. Fixes #357976.
11823         Remove some unneeded vars.
11824
11825 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
11826
11827         * gst/playback/gstplaybin.c: (remove_sinks):
11828           Only remove visualisation from visbin if there is a visbin (or:
11829           don't throw warnings when closing totem without playing a file).
11830
11831 2006-09-27  Wim Taymans  <wim@fluendo.com>
11832
11833         * gst-libs/gst/audio/gstbaseaudiosink.c:
11834         (gst_base_audio_sink_render):
11835         Add some more info in a WARNING.
11836
11837         * gst-libs/gst/audio/gstbaseaudiosrc.c:
11838         (gst_base_audio_src_create):
11839         Handle PAUSE in create function, use new -core addition to
11840         wait for playing. Fixes pausing and resuming capture from an
11841         audiosrc.
11842
11843         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
11844         (gst_ring_buffer_read):
11845         Constify some more.
11846         Caller supports interrupted reads now.
11847
11848 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
11849
11850         * tests/check/Makefile.am:
11851           Another attempt to make the gen64 buildbot happy.
11852
11853 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
11854
11855         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
11856
11857         * ext/libvisual/visual.c: (gst_visual_clear_actors),
11858         (gst_visual_chain), (gst_visual_change_state):
11859           Libvisual plugin was not passing audio data to libvisual 0.4.0 
11860           correctly. Fixes #357800
11861
11862 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
11863
11864         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
11865           Add timeout to _get_state() so we see which pipeline it is
11866           that causes trouble on the gen64 build bot.
11867
11868 2006-09-27  Wim Taymans  <wim@fluendo.com>
11869
11870         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11871         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
11872         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
11873         (gst_base_rtp_depayload_set_gst_timestamp):
11874         the source pad always uses fixed caps.
11875
11876 2006-09-27  Wim Taymans  <wim@fluendo.com>
11877
11878         * docs/libs/gst-plugins-base-libs-docs.sgml:
11879         * docs/libs/gst-plugins-base-libs-sections.txt:
11880         * gst-libs/gst/audio/gstaudioclock.c:
11881         * gst-libs/gst/audio/gstaudioclock.h:
11882         * gst-libs/gst/audio/gstaudiosink.c:
11883         * gst-libs/gst/audio/gstaudiosink.h:
11884         * gst-libs/gst/audio/gstaudiosrc.c:
11885         * gst-libs/gst/audio/gstbaseaudiosink.c:
11886         (gst_base_audio_sink_render):
11887         * gst-libs/gst/audio/gstbaseaudiosink.h:
11888         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
11889         * gst-libs/gst/audio/gstbaseaudiosrc.h:
11890         * gst-libs/gst/audio/gstringbuffer.h:
11891         Added docs for the audio libs.
11892
11893 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
11894
11895         * tests/check/Makefile.am:
11896           Temporarily disable test that fails on the bots for unknown reasons.
11897
11898 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
11899
11900         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11901         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
11902         Moved AudioCodecType into priv
11903         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
11904
11905 2006-09-25  Wim Taymans  <wim@fluendo.com>
11906
11907         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
11908         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
11909         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
11910         (new_pad):
11911         Cleanups and small leak fixes.
11912         Added Depayloaders to valid list of autopluggable elements.
11913
11914 2006-09-25  Wim Taymans  <wim@fluendo.com>
11915
11916         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11917         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
11918         (gen_video_element), (gen_text_element), (gen_audio_element),
11919         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
11920         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
11921         Detect NO_PREROLL state change returns and disable clock distribution to
11922         the sinks so that sync is disabled.
11923         Avoid some type checking and do simple casts instead.
11924         Small cleanups, fix some FIXMEs.
11925         Be more robust when linking user specified elements, catch an report
11926         errors. Fixes #357404.
11927         Fix some leaks in the error paths.
11928
11929 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
11930
11931         * ChangeLog:
11932           ChangeLog surgery for missing bug-number
11933
11934 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11935
11936         Patch by: Peter Kjellerstedt  <pkj at axis com>
11937
11938         * gst/playback/test.c:
11939           Fix compilation with uClibc and -Werror (#357591).
11940
11941 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11942
11943         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
11944           Parse dates that are followed by a time as well (#357532).
11945
11946         * tests/check/libs/tag.c: (test_vorbis_tags):
11947           Add unit test for this.
11948
11949 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
11950
11951         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
11952         (gst_audio_convert_transform_caps):
11953         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
11954         * gst/videotestsrc/videotestsrc.h:
11955           A few array const-ifications.
11956
11957 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
11958
11959         * tests/check/Makefile.am:
11960           See if this makes the build bots happy.
11961
11962         * tests/check/libs/cddabasesrc.c:
11963           UTF8-ise my name.
11964
11965 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
11966
11967         Patch by: Young-Ho Cha <ganadist at chollian dot net>
11968
11969         * gst/subparse/samiparse.c: (handle_start_font),
11970         (fix_invalid_entities):
11971           More case-insensitivity for certain tags; recognise entities with
11972           decimal codes as special entities as well (#357330).
11973
11974 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
11975
11976         * gst-libs/gst/Makefile.am:
11977           Need to build tag directory before cdda.
11978
11979 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
11980
11981         * docs/libs/gst-plugins-base-libs-sections.txt:
11982         * gst-libs/gst/cdda/Makefile.am:
11983         * gst-libs/gst/cdda/gstcddabasesrc.c:
11984         (gst_cdda_base_src_base_init):
11985         * gst-libs/gst/cdda/gstcddabasesrc.h:
11986         * gst-libs/gst/tag/tag.h:
11987         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
11988         (gst_tag_register_musicbrainz_tags):
11989           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
11990           depend on libgsttag. This is required so we can extract/read tags like
11991           DISCID without depending on libgstcddabasesrc (which used to register
11992           them).
11993
11994         * gst-libs/gst/tag/gstvorbistag.c:
11995           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
11996           tags (also see #347848).
11997
11998         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
11999           Log vorbis comments we are actually writing. Const-ify array.
12000
12001 2006-09-23  Wim Taymans  <wim@fluendo.com>
12002
12003         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
12004         Improve buffering a bit by avoiding a deadlock because we cannot assume
12005         the underrun is always called.
12006
12007 2006-09-23  Wim Taymans  <wim@fluendo.com>
12008
12009         Patch by: Young-Ho Cha <ganadist at chollian dot net>
12010
12011         * gst-libs/gst/riff/riff-ids.h:
12012         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12013         (gst_riff_create_audio_template_caps):
12014         Added MPEG-4 AAC and id and caps. Fixes #357289
12015         Added WMA9 Lossless id.
12016
12017 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
12018
12019         * ext/gnomevfs/gstgnomevfssrc.c:
12020           Fix misleading docs addition.
12021
12022         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12023           Get rid of compiler warning the right way.
12024
12025 2006-09-22  Wim Taymans  <wim@fluendo.com>
12026
12027         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12028         (gst_base_rtp_depayload_finalize),
12029         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
12030         (gst_base_rtp_depayload_push_full),
12031         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
12032         (gst_base_rtp_depayload_process),
12033         (gst_base_rtp_depayload_set_gst_timestamp),
12034         (gst_base_rtp_depayload_queue_release):
12035         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12036         Small cleanups.
12037         Fix some leaks.
12038         Refactored the process method and added methods to push from the process
12039         vmethod.
12040         Use _scale functions.
12041         API: gst_base_rtp_depayload_push_ts
12042         API: gst_base_rtp_depayload_push
12043
12044         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12045         timestamps are uint.
12046
12047 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
12048
12049         * gst-libs/gst/interfaces/xoverlay.c:
12050           Remove unused statement from doc example.
12051
12052 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
12053
12054         * gst-libs/gst/interfaces/videoorientation.c:
12055         (gst_video_orientation_iface_init),
12056         (gst_video_orientation_get_hflip),
12057         (gst_video_orientation_get_vflip),
12058         (gst_video_orientation_get_hcenter),
12059         (gst_video_orientation_get_vcenter),
12060         (gst_video_orientation_set_hflip),
12061         (gst_video_orientation_set_vflip),
12062         (gst_video_orientation_set_hcenter),
12063         (gst_video_orientation_set_vcenter):
12064           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
12065           in ChangeLog)
12066
12067 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
12068
12069         * tests/check/Makefile.am:
12070         * tests/check/elements/.cvsignore:
12071         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
12072         (create_rgb_conversions), (rgb_conversion_free),
12073         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
12074         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
12075           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
12076           but disable for now since it doesn't pass (something wrong with
12077           RGBA somewhere).
12078
12079 2006-09-21  Wim Taymans  <wim@fluendo.com>
12080
12081         * gst/playback/gstplaybasebin.c: (group_commit),
12082         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
12083         (queue_out_of_data), (gen_preroll_element),
12084         (preroll_remove_overrun), (probe_triggered):
12085         Refactor handling of overrun detection.
12086         Separate handling of group completion and deadlock detection when doing
12087         network buffering. This should fix some deadlocks that were not detected
12088         because the group was completed.
12089         Add more comments, improve debugging.
12090
12091 2006-09-21  Wim Taymans  <wim@fluendo.com>
12092
12093         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12094         * tests/check/libs/audio.c:
12095         Some more compilation fixes.
12096
12097 2006-09-21  Wim Taymans  <wim@fluendo.com>
12098
12099         * gst-libs/gst/audio/gstringbuffer.c:
12100         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
12101         (gst_ring_buffer_read):
12102         Early morning compilation fix.
12103
12104 2006-09-20  Wim Taymans  <wim@fluendo.com>
12105
12106         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12107         * tests/check/elements/multifdsink.c: (GST_START_TEST):
12108         * tests/check/elements/videorate.c: (GST_START_TEST):
12109         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
12110         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
12111         Fix some warnings.
12112
12113 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12114
12115         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12116         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12117         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12118           Handcrafted merge to help CVS understanding what I changed and what
12119           not.
12120
12121 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12122
12123         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12124         (gst_xvimagesink_get_times):
12125           change colorkey behaviour back according to #354773 comment 6/7
12126
12127 2006-09-19  Michael Smith  <msmith@fluendo.com>
12128
12129         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12130         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
12131         (gst_multi_fd_sink_recover_client),
12132         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
12133         (gst_multi_fd_sink_get_property):
12134         * gst/tcp/gstmultifdsink.h:
12135           Implement stubbed out properties unit-type, units-soft-max,
12136           units-max, to allow specifying maximum sizes in units other than
12137           buffers.
12138           Fixes #355935
12139
12140 2006-09-19  Wim Taymans  <wim@fluendo.com>
12141
12142         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12143         (gst_riff_create_audio_template_caps):
12144         Reorder the audio formats a bit for clarity.
12145         Detect and create caps for MSGSM and MSN (WAV49).
12146         Fixes #356596.
12147
12148         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12149         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12150         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12151         Small cleanups, move error handling out of normal flow for clarity.
12152
12153 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12154
12155         * docs/libs/gst-plugins-base-libs-docs.sgml:
12156         * docs/libs/gst-plugins-base-libs.types:
12157         * gst-libs/gst/interfaces/Makefile.am:
12158         * gst-libs/gst/interfaces/videoorientation.c:
12159         (gst_video_orientation_get_type),
12160         (gst_video_orientation_iface_init),
12161         (gst_video_orientation_get_hflip),
12162         (gst_video_orientation_get_vflip),
12163         (gst_video_orientation_get_hcenter),
12164         (gst_video_orientation_get_vcenter),
12165         (gst_video_orientation_set_hflip),
12166         (gst_video_orientation_set_vflip),
12167         (gst_video_orientation_set_hcenter),
12168         (gst_video_orientation_set_vcenter):
12169         * gst-libs/gst/interfaces/videoorientation.h:
12170           API: Add new interface to control video orientation (fixes #354908)
12171
12172 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12173
12174         * gst/videotestsrc/gstvideotestsrc.c:
12175           Use G_UNLIKELY in _create and log one more detail.
12176           
12177         (gst_video_test_src_get_times), (gst_video_test_src_create):
12178         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12179           Use gst_util_uint64_scale_int in _get_times().
12180
12181 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12182
12183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
12184           Give better warning message (add object and detail).
12185
12186 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12187
12188         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12189         (gst_xvimagesink_get_times):
12190           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
12191           #354773), use gst_util_uint64_scale_int in _get_times()
12192
12193 2006-09-18  Michael Smith  <msmith@fluendo.com>
12194
12195         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
12196           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
12197           always true, leading to dropping all timestamps.
12198
12199 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12200
12201         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
12202         (gst_visual_chain), (gst_visual_change_state):
12203           update to work also with libvisual 0.4 API, fix double unref (#355914)
12204           
12205         * tools/gst-launch-ext.1.in:
12206         * tools/gst-visualise.1.in:
12207           remove references to old man-pages
12208
12209         * tests/examples/seek/seek.c: (main):
12210           add real meadi-buttons, add tool-tips for the seek-options, arrange
12211           seek options in a table
12212
12213 2006-09-18  Michael Smith  <msmith@fluendo.com>
12214
12215         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
12216         (gst_ogg_mux_push_buffer):
12217           Don't generate out-of-order timestamps from oggmux, instead clamp
12218           output timestamps to be >= the previously output ts.
12219           Fixes #355595
12220
12221 2006-09-18  Michael Smith  <msmith@fluendo.com>
12222
12223         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12224         (gst_multi_fd_sink_class_init):
12225           Updates, fixes, and typo corrections for multifdsink. No functional
12226           changes.
12227
12228 2006-09-17  Michael Smith  <msmith@fluendo.com>
12229
12230         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
12231           Don't crash on truncated files - check that we got an 8 byte buffer
12232           before trying to memcmp it.
12233
12234 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
12235
12236         * gst/playback/gstplaybasebin.c: (get_active_source):
12237           Make stream-switching appear instant to the application
12238           (ie. make sure that a g_object_get on 'current-foo' returns
12239           the stream previously set with g_object_set(). Totem needs
12240           this to update stream-related meta-info (like audio-codec)
12241           correctly when switching streams.
12242
12243 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
12244
12245         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
12246         (gst_alsa_mixer_ensure_track_list):
12247           Try harder to guess which mixer track is the master mixer
12248           track (instead of just taking the first one that has a pvolume).
12249           Fixes #342228.
12250
12251 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12252
12253         reviewed by: <delete if not using a buddy>
12254
12255         * gst-libs/gst/audio/audio.h:
12256         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
12257
12258 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12259
12260         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
12261         (gst_audio_convert_transform_caps):
12262           Get structure-name just once.
12263
12264 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12265
12266         * tests/check/elements/audioresample.c: (GST_START_TEST):
12267         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12268         * tests/check/elements/volume.c: (GST_START_TEST):
12269         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
12270         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
12271         (test_pipeline), (GST_START_TEST):
12272         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
12273         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
12274           Fix big batch of compiler warnings.
12275
12276 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12277
12278         * ext/gnomevfs/gstgnomevfssrc.c:
12279           Add docs about icydemux usage in connection with gnomevfssrc
12280
12281         * ext/libvisual/visual.c:
12282         * ext/ogg/gstoggaviparse.c:
12283         * ext/ogg/gstoggdemux.c:
12284         * ext/ogg/gstoggmux.c:
12285         * ext/ogg/gstoggparse.c:
12286         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12287         * gst-libs/gst/audio/gstaudiosink.c:
12288         * gst-libs/gst/audio/gstaudiosrc.c:
12289         * gst/audiorate/gstaudiorate.c:
12290           More G_OBJECT macro fixing.
12291
12292         * gst/audiotestsrc/gstaudiotestsrc.h:
12293           Fix wrong info in header due to copy & paste
12294
12295 2006-09-15  Wim Taymans  <wim@fluendo.com>
12296
12297         * gst-libs/gst/audio/gstbaseaudiosink.c:
12298         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
12299         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12300         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
12301         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
12302         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12303         Do the delay calculation in the source/sink base classes as this is
12304         specific for the capture/playback mode.
12305         Try to fixate a bit better, like round depth up to a multiple of 8
12306         bigger than width.
12307         Handle underruns correctly by marking DISCONT on buffers and adjusting
12308         timestamps to handle the gap.
12309         Set offset/offset_end correctly on buffers.
12310
12311         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
12312         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
12313         (gst_ring_buffer_read):
12314         Remove resync and underrun recovery from the ringbuffer.
12315         Fix ringbuffer read code on under/overrun.
12316
12317 2006-09-15  Wim Taymans  <wim@fluendo.com>
12318
12319         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12320         (gst_play_base_bin_init), (fill_buffer), (check_queue),
12321         (queue_threshold_reached), (gst_play_base_bin_set_property),
12322         (gst_play_base_bin_get_property):
12323         * gst/playback/gstplaybasebin.h:
12324         Don't use a 0 low watermark when buffering, it is catching starvation
12325         way too late. Instead, use a 3 second queue with 30 and 95
12326         percent low/high watermarks. 
12327         Added queue-min-threshold property to configure low watermark.
12328         Use new _buffering message API.
12329         Make queue_threshold variable big enough to store a uint64 time value.
12330         API: playbin::queue-min-threshold property.
12331
12332 2006-09-15  Wim Taymans  <wim@fluendo.com>
12333
12334         * configure.ac:
12335         We require 0.10.10.1 now because of _wait_preroll().
12336
12337         * gst-libs/gst/audio/gstbaseaudiosink.c:
12338         (gst_base_audio_sink_render):
12339         Use gst_base_sink_wait_preroll().
12340
12341 2006-09-15  Wim Taymans  <wim@fluendo.com>
12342
12343         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
12344         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
12345         Use DEBUG_OBJECT more.
12346
12347 === release 0.10.10 ===
12348
12349 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
12350
12351         patch by: Michael Smith <msmith at fluendo dot com>
12352
12353         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
12354         (gst_multi_fd_sink_client_queue_buffer),
12355         (gst_multi_fd_sink_new_client):
12356         * tests/check/elements/multifdsink.c: (GST_START_TEST),
12357         (multifdsink_suite):
12358           Fix implementation of sync-method 'next-keyframe'
12359           Closes #354594
12360
12361 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
12362
12363         patch by: Wim Taymans <wim at fluendo dot com>
12364
12365         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
12366         This patch removes the RANDOM flag that was incorrectly introduced with
12367         revision 1.91.  Fixes #354590
12368
12369 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
12370
12371         * tests/check/Makefile.am:
12372           Random variation in Makefile line to see if it makes the
12373           gen64-base-full bot any happier.
12374
12375 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
12376
12377         * tests/check/pipelines/oggmux.c: (oggmux_suite):
12378           Disable test that fails at the moment (killed after timeout).
12379
12380 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
12381
12382         Patch by: James Livingston  <doclivingston at gmail.com>
12383
12384         * tests/check/Makefile.am:
12385         * tests/check/pipelines/.cvsignore:
12386         * tests/check/pipelines/oggmux.c: (get_page_codec),
12387         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
12388         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
12389         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
12390         (test_theora_vorbis), (oggmux_suite):
12391           Add simple unit test for oggmux from #337026 with checking for the
12392           EOS flags disabled for the time being.
12393
12394 2006-09-04  Wim Taymans  <wim@fluendo.com>
12395
12396         patch by: Alessandro Dessina <alessandro nnva org>
12397
12398         * ext/ogg/gstoggmux.c:
12399         Add cmml caps to oggmux. Fixes #353912
12400
12401 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
12402
12403         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12404           Returning a return value often helps. In this case, we
12405           don't need the return value anyway, so just get rid of it.
12406           Should make build bots much happier.
12407
12408 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
12409
12410         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
12411         (paint_get_structure), (gst_video_test_src_get_size),
12412         (gst_video_test_src_smpte), (gst_video_test_src_snow),
12413         (gst_video_test_src_unicolor), (paint_setup_AYUV),
12414         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
12415         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
12416         * gst/videotestsrc/videotestsrc.h:
12417           Add support for AYUV and the various RGBA formats. Initialise
12418           fields of paintinfo structs allocated on the stack.
12419
12420         * tests/check/elements/videotestsrc.c: (right_shift_colour),
12421         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
12422         (check_rgb_buf), (videotestsrc_suite):
12423           Add unit tests for videotestsrc's RGB output.
12424
12425 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
12426
12427         * gst/videotestsrc/gstvideotestsrc.c:
12428         (gst_video_test_src_pattern_get_type),
12429         (gst_video_test_src_set_pattern):
12430         * gst/videotestsrc/gstvideotestsrc.h:
12431         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
12432         (gst_video_test_src_black), (gst_video_test_src_white),
12433         (gst_video_test_src_red), (gst_video_test_src_green),
12434         (gst_video_test_src_blue):
12435         * gst/videotestsrc/videotestsrc.h:
12436           Add more uni-colour patterns ("white", "red", "green", and "blue").
12437
12438 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
12439
12440         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
12441           Fix stride for YVYU, should be word-aligned (#353658).
12442
12443 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
12444
12445         * gst/adder/gstadder.c: (gst_adder_src_event):
12446           Fix build.
12447
12448 2006-08-31  Edward Hervey  <edward@fluendo.com>
12449
12450         * gst/adder/gstadder.c: (forward_event_func),
12451         (gst_adder_src_event), (gst_adder_collected),
12452         (gst_adder_change_state):
12453         * gst/adder/gstadder.h:
12454         Remember the start position asked in the incoming seeks, so we can
12455         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
12456         of assuming it will always be 0).
12457
12458 2006-08-31  Edward Hervey  <edward@fluendo.com>
12459
12460         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
12461         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
12462         (gst_ogg_demux_loop):
12463         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
12464
12465 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
12466
12467         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12468         (gst_ffmpegcsp_get_unit_size):
12469           Return FALSE instead of returning a random false unit
12470           size when the format isn't known/supported (even if
12471           this shouldn't happen under normal circumstances).
12472
12473 2006-08-29  Wim Taymans  <wim@fluendo.com>
12474
12475         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
12476
12477         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
12478         (gst_gnome_vfs_src_start):
12479         Try harder to get the size from a uri by using _info_uri() when
12480         _info_from_handle() does not give us enough info. 
12481         Also follow symlinks when getting the size.
12482         Partially Fixes #332864.
12483
12484 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
12485
12486         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
12487
12488         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
12489         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
12490         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
12491         (gst_alsa_mixer_set_record):
12492         * ext/alsa/gstalsamixertrack.c:
12493         (gst_alsa_mixer_track_update_alsa_capabilities),
12494         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
12495         (gst_alsa_mixer_track_update):
12496         * ext/alsa/gstalsamixertrack.h:
12497           Improve and fix mixer track handling, in particular better handling
12498           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
12499           separate track objects for tracks that have both capture and playback
12500           volume (and label them differently as well so they're not mistakenly
12501           assumed to be duplicates); classify mixer tracks that only affect
12502           the audible volume of something (rather than the capture volume)
12503           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
12504           for capture tracks to correspond to alsa-pswitch alsa-cswitch
12505           (following the meaning documented in the mixer interface header
12506           file); add support for alsa's exclusive cswitch groups; update/sync
12507           state/flags better if mixer settings are changed by another
12508           application. Fixes #336075.
12509
12510 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
12511
12512         * gst/playback/gstplaybin.c:
12513           Improve docs: add section about BUFFERING messages sent by playbin.
12514
12515 2006-08-29  Michael Smith  <msmith@fluendo.com>
12516
12517         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
12518         (gst_vorbis_enc_buffer_check_discontinuous),
12519         (gst_vorbis_enc_chain):
12520           Ignore explicit DISCONT marked on buffers (which is often spurious,
12521           particularly when using multiple segments), in favour of solely
12522           using the timestamps/durations.
12523
12524 2006-08-29  Edward Hervey  <edward@fluendo.com>
12525
12526         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12527         Don't rely on incoming buffers offset anymore, since it is completely
12528         broken when using multiple segments.
12529         Instead convert the incoming buffers timestamp to running time, and
12530         then convert that value to the offsets.
12531         Also inform GstSegment of the last outputted stop position, which is
12532         needed if we received several segments with an unknown stop value.
12533
12534 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12535
12536         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
12537           fix buffer unreffing on a header push failure
12538
12539 2006-08-28  Wim Taymans  <wim@fluendo.com>
12540
12541         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
12542         (gst_audio_rate_chain):
12543         Make the metadata of the buffer writable before changing its
12544         flags.
12545
12546 2006-08-28  Wim Taymans  <wim@fluendo.com>
12547
12548         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12549         (gst_audio_rate_setcaps), (gst_audio_rate_init),
12550         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
12551         (gst_audio_rate_chain), (gst_audio_rate_change_state):
12552         Fix audiorate some more.
12553         Reset and resync counters on flush and READY.
12554         Handle the DISCONT flag correctly.
12555         Use GstSegment to track position.
12556         Fail when not negotiated.
12557         Fixes #353234.
12558
12559 2006-08-25  Michael Smith  <msmith@fluendo.com>
12560
12561         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
12562           Fix spelling.
12563           Remove accidently included debug line.
12564
12565 2006-08-25  Wim Taymans  <wim@fluendo.com>
12566
12567         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
12568         Small cleanups.
12569         If a buffer is received with no caps, make the buffer metadata
12570         writable and set the caps, making sure that we don't screw up the
12571         refcounts.
12572
12573 2006-08-25  Michael Smith  <msmith@fluendo.com>
12574
12575         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
12576         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
12577           Fix memory leaks and misleading debug messages, add a couple of
12578           comments.
12579
12580         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
12581         (gst_multi_fd_sink_render):
12582           Do not use gst_buffer_make_writable() in a basesink render method,
12583           as it may incorrectly unref the buffer. Instead, use convoluted
12584           dance to avoid copying the buffer except when we need to.
12585
12586 2006-08-25  Michael Smith  <msmith@fluendo.com>
12587
12588         * ext/vorbis/vorbisenc.c:
12589         (gst_vorbis_enc_buffer_check_discontinuous):
12590           Allow very small discontinuities in the timestamps. These we can't
12591           do anything useful with anyway (because vorbis's timestamps have
12592           only sample granularity), and are commonly produced by elements with
12593           minor bugs. Allow up to 1/2 a sample out.
12594           Fixes #351742.
12595
12596 2006-08-24  Wim Taymans  <wim@fluendo.com>
12597
12598         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
12599         (play_scrub_toggle_cb), (main):
12600         Add a checkbox to enable play scrubbing. Makes it possible to disable
12601         normal scrubbing.
12602
12603 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
12604
12605         * tests/check/elements/.cvsignore:
12606           make buildbot happy
12607
12608 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
12609
12610         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
12611         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
12612         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
12613         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
12614         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
12615         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
12616         (gst_ogm_text_parse_strip_trailing_zeroes),
12617         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
12618         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
12619           Refactor ogm parse, do better input checking, misc. clean-ups.
12620           Cache incoming events and push them once the source pad has
12621           been created. Don't pass unterminated strings to sscanf().
12622           Strip trailing zeroes from subtitle text output, since they
12623           are not valid UTF-8. Don't push vorbiscomment packets on
12624           the subtitle text pad. Output perfect streams if possible.
12625
12626 2006-08-23  Wim Taymans  <wim@fluendo.com>
12627
12628         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
12629         Waits for tasks to settle down so that we clean up correctly for 
12630         valgrind.
12631
12632 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
12633
12634         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
12635           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
12636           actually return return value in taglists_are_equal.
12637
12638 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
12639
12640         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
12641           Fix crash due to broken bitstream parsing on x86-64: can't make
12642           any assumptions about sizeof(struct) due to alignment/packing
12643           differences on different architectures. Fixes #351790.
12644
12645 2006-08-22  Wim Taymans  <wim@fluendo.com>
12646
12647         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
12648         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
12649         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
12650         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
12651         (gst_riff_parse_info):
12652         Protect public functions against bad input.
12653         Do some cleanups.
12654         Fix documentation.
12655
12656 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
12657
12658         * gst-libs/gst/riff/riff-ids.h:
12659         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
12660           Add voxware audio IDs (even if we can't play it) (#351795).
12661
12662 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
12663
12664         * gst-libs/gst/riff/riff-media.c:
12665         (gst_riff_create_video_template_caps),
12666         (gst_riff_create_audio_template_caps),
12667         (gst_riff_create_iavs_template_caps):
12668           Const-ify some arrays and use G_N_ELEMENTS instead
12669           of wasting oodles of RAM on terminator bits.
12670
12671 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
12672
12673         * gst-libs/gst/tag/gstvorbistag.c:
12674         (gst_tag_list_to_vorbiscomment_buffer):
12675         * tests/check/libs/tag.c: (GST_START_TEST):
12676           And the same for _to_vorbiscomment_buffer(): allow
12677           id_data_len == 0 for speex.
12678
12679 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
12680
12681         * configure.ac:
12682         * docs/plugins/Makefile.am:
12683         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12684         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12685         * docs/plugins/inspect/plugin-gdp.xml:
12686         * gst/gdp/Makefile.am:
12687         * tests/check/Makefile.am:
12688           Move GDP plugin to -base from -bad.  Closes #347783.
12689
12690 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
12691
12692         * gst-libs/gst/tag/gstvorbistag.c:
12693         (gst_tag_list_from_vorbiscomment_buffer):
12694           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
12695           Also add some checks to make sure we don't memcmp() beyond the end of
12696           vorbiscomment buffer if the ID to check for is larger than the buffer.
12697
12698         * tests/check/libs/tag.c: (GST_START_TEST):
12699           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
12700
12701 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
12702
12703         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
12704         (gst_vorbis_enc_set_metadata):
12705           Use vorbis comment utility functions from libgsttag
12706           instead of re-inventing the wheel (partially fixes #347091).
12707
12708 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
12709
12710         * tests/check/elements/audioconvert.c: (GST_START_TEST):
12711         Fix leaks. Wait for state transitions that might happen ASYNC, as well
12712         as some that won't.
12713
12714 2006-08-21  Wim Taymans  <wim@fluendo.com>
12715
12716         * docs/libs/Makefile.am:
12717         * docs/libs/gst-plugins-base-libs-sections.txt:
12718         * docs/libs/gst-plugins-base-libs.types:
12719         Don't try to GObject scan the netbuffer as it's not a GObject.
12720         Fixes #351308.
12721
12722         * gst-libs/gst/netbuffer/gstnetbuffer.c:
12723         * gst-libs/gst/netbuffer/gstnetbuffer.h:
12724         Document GstNetBuffer.
12725
12726 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
12727
12728         * tests/check/elements/audioconvert.c: (GST_START_TEST),
12729         (audioconvert_suite):
12730           Add testcase for caps-size-explosion
12731
12732 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12733
12734         * gst/audioconvert/gstaudioconvert.c:
12735         (gst_audio_convert_get_unit_size), (set_structure_widths):
12736           Lower debug, use g_assert in _get_unit_size
12737
12738         * gst/audioresample/gstaudioresample.c:
12739         (audioresample_get_unit_size):
12740         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12741         (gst_ffmpegcsp_get_unit_size):
12742         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
12743           use g_assert in _get_unit_size
12744
12745 2006-08-18  Wim Taymans  <wim@fluendo.com>
12746
12747         * docs/libs/gst-plugins-base-libs-sections.txt:
12748         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
12749         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
12750         (gst_rtp_buffer_get_payload_buffer):
12751         * gst-libs/gst/rtp/gstrtpbuffer.h:
12752         Document GstRTPBuffer.
12753         Added function to efficiently strip payload headers.
12754         API: gst_rtp_buffer_get_payload_subbuffer()
12755
12756 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
12757
12758         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12759         (gst_tag_to_vorbis_comments):
12760           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
12761           tags and deserialise them properly as well (#347091).
12762           Add some more gtk-doc blurbs and also some g_return_if_fail().
12763
12764         * tests/check/libs/tag.c: (GST_START_TEST),
12765         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
12766           More tests.
12767
12768 2006-08-17  Wim Taymans  <wim@fluendo.com>
12769
12770         * ext/ogg/Makefile.am:
12771         * ext/ogg/gstogg.c: (plugin_init):
12772         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
12773         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
12774         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
12775         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
12776         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
12777         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
12778         Added ogg-in-avi parser element. Fixes #140139.
12779
12780         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
12781         Fixed a bug in oggdemux debug code.
12782
12783         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12784         (gst_riff_create_audio_template_caps):
12785         Recognise Ogg in the AVI extensible wave format.
12786
12787 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
12788
12789         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
12790           Make buffer durations add up (duration should be next_ts-ts for
12791           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
12792           from CVS.
12793
12794         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
12795         (test_buffer_timestamps), (cddabasesrc_suite):
12796           Add unit test for the above.
12797
12798         * tests/check/Makefile.am:
12799           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
12800           to see what happens.
12801
12802 2006-08-16  Wim Taymans  <wim@fluendo.com>
12803
12804         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
12805         (gst_alsasink_open):
12806         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
12807         (gst_alsasrc_open):
12808         Avoid setting and using a NULL device name.
12809         Print more info when we fail to open a device.
12810
12811 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12812
12813         * docs/libs/gst-plugins-base-libs-sections.txt:
12814         * gst-libs/gst/tag/tag.h:
12815         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
12816           API: add gst_tag_parse_extended_comment() (#351426).
12817
12818         * tests/check/Makefile.am:
12819         * tests/check/libs/.cvsignore:
12820         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
12821           Add unit test for gst_tag_parse_extended_comment().
12822
12823 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12824
12825         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
12826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
12827           Fix leak (#351502).
12828
12829 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12830
12831         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12832         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12833         * docs/plugins/gst-plugins-base-plugins.args:
12834         * gst/playback/gstplaybin.c:
12835           Document playbin.
12836           
12837         * docs/plugins/inspect/plugin-adder.xml:
12838         * docs/plugins/inspect/plugin-alsa.xml:
12839         * docs/plugins/inspect/plugin-audioconvert.xml:
12840         * docs/plugins/inspect/plugin-audiorate.xml:
12841         * docs/plugins/inspect/plugin-audioresample.xml:
12842         * docs/plugins/inspect/plugin-audiotestsrc.xml:
12843         * docs/plugins/inspect/plugin-cdparanoia.xml:
12844         * docs/plugins/inspect/plugin-decodebin.xml:
12845         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12846         * docs/plugins/inspect/plugin-gnomevfs.xml:
12847         * docs/plugins/inspect/plugin-ogg.xml:
12848         * docs/plugins/inspect/plugin-pango.xml:
12849         * docs/plugins/inspect/plugin-playbin.xml:
12850         * docs/plugins/inspect/plugin-subparse.xml:
12851         * docs/plugins/inspect/plugin-tcp.xml:
12852         * docs/plugins/inspect/plugin-theora.xml:
12853         * docs/plugins/inspect/plugin-typefindfunctions.xml:
12854         * docs/plugins/inspect/plugin-video4linux.xml:
12855         * docs/plugins/inspect/plugin-videorate.xml:
12856         * docs/plugins/inspect/plugin-videoscale.xml:
12857         * docs/plugins/inspect/plugin-videotestsrc.xml:
12858         * docs/plugins/inspect/plugin-volume.xml:
12859         * docs/plugins/inspect/plugin-vorbis.xml:
12860         * docs/plugins/inspect/plugin-ximagesink.xml:
12861         * docs/plugins/inspect/plugin-xvimagesink.xml:
12862           Update to CVS version.
12863
12864 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
12865
12866         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12867         (gst_play_bin_set_property), (gst_play_bin_get_property),
12868         (value_list_append_structure_list),
12869         (gst_play_bin_handle_redirect_message),
12870         (gst_play_bin_handle_message):
12871           API: GstPlayBin::connection-speed
12872           Add "connection-speed" property; re-order redirect messages with
12873           multiple redirect locations depending on the minimum bitrate if
12874           that information is available and a connection speed is set
12875           (#350399).
12876
12877 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
12878
12879         * gst/playback/gstplaybin.c:
12880           Update max volume to the same value that the volume element uses.
12881
12882 2006-08-14  Wim Taymans  <wim@fluendo.com>
12883
12884         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
12885         Less uglyness..
12886
12887 2006-08-14  Wim Taymans  <wim@fluendo.com>
12888
12889         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
12890         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
12891         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
12892         Add some more debug info.
12893         Don't crash when a seek failed.
12894         Actually return the result of the seek instead of TRUE.
12895         Ignore multiple BOS pages with the same serial so that we don't create
12896         the same stream multiple times.
12897         Post an error when we fail to do the initial seek.
12898
12899 2006-08-13  Wim Taymans  <wim@fluendo.com>
12900
12901         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
12902         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
12903         Small code cleanup.
12904
12905         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
12906         (gst_alsa_mixer_new):
12907         Remove hack that always set the device to hw:0*.
12908         Properly find the card name for whatever device was configured.
12909         Do some better debugging.
12910         Fixes #350784.
12911
12912         * ext/alsa/gstalsamixerelement.c:
12913         (gst_alsa_mixer_element_set_property),
12914         (gst_alsa_mixer_element_change_state):
12915         Cleanups.
12916         Handle setting of a NULL device name better.
12917
12918 2006-08-11  Wim Taymans  <wim@fluendo.com>
12919
12920         * gst/adder/gstadder.c:
12921         Don't clip float values. Fixes #350900.
12922
12923 2006-08-11  Andy Wingo  <wingo@pobox.com>
12924
12925         * gst/tcp/gsttcp.c: Really fix the build?
12926
12927         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
12928         fixes the build.
12929
12930 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
12931
12932         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
12933           Float caps shouldn't have a "signed" field.
12934
12935 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
12936
12937         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
12938           Implement SEEKING query in its most basic form, so that we can
12939           at least check if we're seekable or not (#350655).
12940
12941 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
12942
12943         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
12944           The checks here are not even close to anything that would
12945           justify MAXIMUM probability, lowering to POSSIBLE until someone
12946           fixes the checks (case at hand: quicktime redirection files
12947           might start with 00 00 01 XX and pass the checks here just
12948           fine, see #350399).
12949
12950 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
12951
12952         Patch by: Sjoerd Simons  <sjoerd at luon net>
12953
12954         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
12955           Better detection for multipart/x-mixed-replace: accept leading
12956           whitespaces before the boundary marker as well (as our very own
12957           multipartmux used to produce) (#349068).
12958
12959 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
12960
12961         Patch by: Young-Ho Cha  <ganadist at chollian net>
12962
12963         * gst-libs/gst/riff/riff-ids.h:
12964         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12965         (gst_riff_create_audio_template_caps):
12966           Detect DTS audio streams (#350157).
12967
12968 2006-08-05  Andy Wingo  <wingo@pobox.com>
12969
12970         * ext/theora/gsttheoraparse.h:
12971         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
12972         (theora_parse_dispose, theora_parse_set_property)
12973         (theora_parse_get_property, theora_parse_munge_granulepos)
12974         (theora_parse_push_buffer, theora_parse_change_state):
12975         API: GstTheoraParse::synchronization-points
12976         Add a property 'synchronization-points' to fix badly synchronized oggs.
12977
12978 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
12979
12980         * tests/check/Makefile.am:
12981         * tests/check/libs/.cvsignore:
12982         * tests/check/libs/audio.c: (structure_contains_channel_positions),
12983         (fixed_caps_have_channel_positions), (GST_START_TEST),
12984         (audio_suite), (main):
12985           Add a few tests for the channel position stuff in libgstaudio.
12986
12987 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
12988
12989         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
12990         (gst_alsa_detect_channels):
12991         * ext/alsa/gstalsasink.c:
12992           Add support for cards that (only) do more than 8 channels,
12993           like the Delta 44 (#345188).
12994
12995         * gst-libs/gst/audio/multichannel.c:
12996         (gst_audio_check_channel_positions):
12997         * gst-libs/gst/audio/multichannel.h:
12998           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
12999           unspecified channel position and cannot be combined with any
13000           of the other audio channel positions; adjust position layout
13001           checks accordingly (#345188).
13002
13003 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13004
13005         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13006           Recognise ancient RealAudio files (see #349779).
13007
13008 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13009
13010         Patch by: Jens Granseuer  <jensgr at gmx net>
13011
13012         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13013           Add typefinder for Interplay's MVE format (#348973).
13014
13015 2006-08-02  Wim Taymans  <wim@fluendo.com>
13016
13017         Patch by: Marcel Moreaux <marcelm at luon dot net>
13018
13019         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13020         (gst_base_rtp_depayload_add_to_queue):
13021         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13022         Handle RTP sequence number rollover.
13023         Disable jitterbuffer by default.
13024
13025 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
13026
13027         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
13028         (audioresample_set_caps):
13029         Don't leak references to the incoming caps. Clean them up when
13030         stopping.
13031
13032         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
13033         (gst_video_scale_finalize):
13034         Don't leak our temporary pixel buffer.
13035
13036         * tests/check/Makefile.am:
13037         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
13038         (GST_START_TEST), (simple_launch_lines_suite):
13039
13040         Fix leaks and re-enable the test for valgrind checking.
13041
13042 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13043
13044         Patch by: Sjoerd Simons  <sjoerd at luon net>
13045
13046         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
13047         (plugin_init):
13048           Add typefind function for multipart/x-mixed-replace (#348916).
13049
13050 2006-07-28  Wim Taymans  <wim@fluendo.com>
13051
13052         * gst/adder/gstadder.c: (gst_adder_setcaps),
13053         (gst_adder_query_duration):
13054         Fix leak in duration query.
13055         Reflow some docs and notes.
13056
13057 2006-07-28  Michael Smith  <msmith@fluendo.com>
13058
13059         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
13060         (vorbisenc_suite):
13061           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
13062           aspect of it.
13063
13064 2006-07-28  Michael Smith  <msmith@fluendo.com>
13065
13066         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
13067         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
13068         (gst_vorbis_enc_push_buffer),
13069         (gst_vorbis_enc_buffer_check_discontinuous),
13070         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
13071         * ext/vorbis/vorbisenc.h:
13072           Handle discontinuities in the input vorbis stream correctly,
13073           so that the output is properly timestamped (and has good granulepos
13074           values). Needs some oggmux fixes too.
13075
13076 2006-07-27  Wim Taymans  <wim@fluendo.com>
13077
13078         patch by: Kai Vehmanen <kv2004 eca cx>
13079
13080         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13081         (gst_base_rtp_depayload_chain),
13082         (gst_base_rtp_depayload_handle_sink_event),
13083         (gst_base_rtp_depayload_change_state):
13084         Don't send multiple newsegments with different formats.
13085         Fixes #348677.
13086
13087 2006-07-26  Wim Taymans  <wim@fluendo.com>
13088
13089         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
13090         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
13091         Make seeking in ogg more accurate again by doing the more correct
13092         granuletime to stream time conversion.
13093
13094 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13095
13096         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
13097         (gst_multi_fd_sink_new_client):
13098           debug a little more understandably
13099           do not use goto as a substitute for break, especially if
13100           break is also being used
13101
13102 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
13103
13104         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
13105         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
13106           Remove GLib-2.6 compatibility cruft.
13107
13108 2006-07-24  Wim Taymans  <wim@fluendo.com>
13109
13110         * gst-libs/gst/audio/gstbaseaudiosink.c:
13111         (gst_base_audio_sink_render):
13112         Don't try to align a sample to an unknown value.
13113
13114 2006-07-24  Wim Taymans  <wim@fluendo.com>
13115
13116         * gst-libs/gst/audio/gstbaseaudiosink.c:
13117         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
13118         When the audio clock is slaved to another clock, never try to align
13119         samples but trust the rate interpolation algorithm.
13120
13121 2006-07-24  Wim Taymans  <wim@fluendo.com>
13122
13123         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13124         Don't try to calculate silence samples, base class does this much
13125         better now.
13126
13127         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13128         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
13129         (gst_ring_buffer_acquire):
13130         Calculate silence samples correctly.
13131
13132         * gst-libs/gst/audio/gstringbuffer.h:
13133         Add _CAST macro.
13134
13135 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
13136
13137         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
13138           Limit search for the first markup tag to the first few kB of
13139           the file. If we don't find one there, it's highly unlikely that
13140           this is an XML(-ish) file.
13141
13142 2006-07-21  Andy Wingo  <wingo@pobox.com>
13143
13144         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
13145         test to the one in vorbisenc. Also commented out.
13146
13147         * tests/check/pipelines/vorbisenc.c: 
13148         (test_discontinuity): New test, commented out until Mike lands
13149         some elite vorbisenc patches.
13150
13151         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
13152         Bufferstraw was actually factored out of these tests. Now we share
13153         code yay.
13154
13155         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
13156         for bufferstraw addition to gstcheck.
13157
13158 2006-07-21  Wim Taymans  <wim@fluendo.com>
13159
13160         * ext/theora/theoradec.c: (clip_buffer):
13161         Better clipping.
13162
13163 2006-07-21  Wim Taymans  <wim@fluendo.com>
13164
13165         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
13166         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
13167         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
13168         Fix leak.
13169         Avoid type casting when we can.
13170
13171         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
13172         Fix mem leak.
13173
13174 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
13175
13176         * ext/alsa/gstalsamixerelement.c:
13177         (gst_alsa_mixer_element_change_state):
13178           Make state change fail if the specified device can't be opened
13179           for some reason.
13180
13181 2006-07-20  Wim Taymans  <wim@fluendo.com>
13182
13183         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
13184         (cb_newpad), (main):
13185         Example of a small audio/video player using decodebin.
13186
13187 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
13188
13189         * gst-libs/gst/riff/riff-ids.h:
13190           Add 'fact' chunk id
13191
13192 2006-07-19  Wim Taymans  <wim@fluendo.com>
13193
13194         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13195         (gst_base_rtp_depayload_chain),
13196         (gst_base_rtp_depayload_change_state):
13197         Don't assert when not negotiated but post a meaningfull 
13198         error message. Fixes #347918.
13199
13200         * gst-libs/gst/rtp/gstbasertppayload.c:
13201         Add comment about better default MTU size.
13202
13203         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
13204         Small cleanups, start docs.
13205
13206 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
13207
13208         Patch by: Martin Szulecki
13209
13210         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
13211           If "device-name" is requested and the device is not
13212           open, try to temporarily open it to obtain this
13213           information (#342494).
13214
13215 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
13216
13217         * gst-libs/gst/tag/gstid3tag.c:
13218           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
13219
13220         * gst-libs/gst/tag/gsttageditingprivate.h:
13221         * gst-libs/gst/tag/gstvorbistag.c:
13222           Some more random const-ifications.
13223
13224 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
13225
13226         * gst-libs/gst/riff/riff-ids.h:
13227         * gst-libs/gst/riff/riff-media.c:
13228         (gst_riff_create_video_template_caps):
13229           Add more FOURCCs (sort list to make stuff easier to find),
13230           add comment what those 16 bytes in struct _gst_riff_strh according to
13231           one avi-dumper are
13232
13233 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
13234
13235         * gst-libs/gst/audio/multichannel.c:
13236         (gst_audio_check_channel_positions),
13237         (gst_audio_fixate_channel_positions):
13238           Const-ify two arrays.
13239
13240 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
13241
13242         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
13243           Fix typo, so that alsasink also advertises 8 channels
13244           if that's supported (tags: can, worms, open, alsa, ph34r).
13245
13246 2006-07-17  Wim Taymans  <wim@fluendo.com>
13247
13248         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
13249         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
13250         *sigh*, when is the compiler going to warn when the comments
13251         are out-of-sync with the code.. Refix case of busted theora
13252         headers with 0 granule pos.
13253
13254 2006-07-14  Wim Taymans  <wim@fluendo.com>
13255
13256         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13257         (gst_base_rtp_depayload_wait),
13258         (gst_base_rtp_depayload_change_state),
13259         (gst_base_rtp_depayload_set_property),
13260         (gst_base_rtp_depayload_get_property):
13261         Fix 99% cpu load by waiting for absolute times on the
13262         clock. Fixes #347300.
13263
13264 2006-07-14  Andy Wingo  <wingo@pobox.com>
13265
13266         * ext/theora/gsttheoraparse.h: 
13267         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
13268         (theora_parse_push_headers, theora_parse_clear_queue)
13269         (theora_parse_drain_queue_prematurely, )
13270         (theora_parse_sink_event, theora_parse_change_state): Queue events
13271         until we initialized our state, like in vorbisparse.
13272
13273         * ext/vorbis/vorbisparse.h: 
13274         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
13275         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
13276         (vorbis_parse_drain_queue_prematurely, )
13277         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
13278         until we have initialized our state. Fixes seeking after an
13279         initial pad block.
13280
13281 2006-07-14  Andy Wingo  <wingo@pobox.com>
13282
13283         Patch by: Iain Holmes <iaingnome@gmail.com>
13284         
13285         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
13286
13287 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
13288
13289         * configure.ac:
13290         Bump nano back to CVS
13291
13292 === release 0.10.9 ===
13293
13294 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
13295
13296         * configure.ac:
13297           releasing 0.10.9, "I walk the line"
13298
13299 2006-07-14  Michael Smith  <msmith@fluendo.com>
13300
13301         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
13302           Move a g_cond_signal to earlier to avoid sometimes deadlocking
13303           (commonly happens when running this test under valgrind) when trying
13304           to remove the buffer probe.
13305
13306 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13307
13308         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
13309         Fix missing g_unlock from the previous commit
13310
13311 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13312
13313         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
13314         (gst_ximagesink_change_state):
13315         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
13316         (gst_xvimagesink_change_state):
13317         Implement a locking order to ensure we always take the object lock
13318         before the x_lock and never vice-versa.
13319
13320 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13321
13322         * gst/playback/gstdecodebin.c: (find_compatibles):
13323         Fix a caps leak when linking (#347304)
13324
13325         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
13326         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
13327         (gst_ximagesink_change_state):
13328         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13329         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
13330         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
13331         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
13332         Don't leak shared memory resources. Use the object lock to protect
13333         against the xcontext disappearing while returning a buffer from the
13334         pipeline. (#347304)
13335
13336 2006-07-12  Edward Hervey  <edward@fluendo.com>
13337
13338         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
13339         (vorbis_handle_comment_packet):
13340         gst_tag_list_merge() returns a new object. Take that into account when
13341         using it. This avoids memleak.
13342         Revert previous commit which is not needed.
13343
13344 2006-07-12  Edward Hervey  <edward@fluendo.com>
13345
13346         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
13347         Reset the decoder in finalize so that all fields get cleared.
13348
13349 2006-07-12  Wim Taymans  <wim@fluendo.com>
13350
13351         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13352         (gst_base_audio_src_set_clock),
13353         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
13354         Don't try to post an error message when setting the clock fails
13355         as this can happen when adding an element to a bin which will then
13356         deadlock. Fixes #347296.
13357
13358 2006-07-12  Edward Hervey  <edward@fluendo.com>
13359
13360         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
13361         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
13362         (vorbis_handle_type_packet):
13363         Post tag messages on the bus even if we're not initialized.
13364         If we're not initialized, we still postpone the event pushing of tags.
13365
13366 2006-07-12  Wim Taymans  <wim@fluendo.com>
13367
13368         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13369         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13370         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
13371         Revert last two changes that broke the freeze.
13372
13373 2006-07-12  Wim Taymans  <wim@fluendo.com>
13374
13375         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13376         basesink calculates silence sample correctly for us.
13377
13378 2006-07-12  Wim Taymans  <wim@fluendo.com>
13379
13380         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13381         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
13382         Calculate correct silence samples so we don't fill our ringbuffer
13383         with noise.
13384
13385 2006-07-12  Edward Hervey  <edward@fluendo.com>
13386
13387         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13388         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
13389         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
13390         * ext/vorbis/vorbisdec.h:
13391         Delay sending events (newsegment, tags) until the decoder is properly
13392         initialized.
13393         Fixes #347295
13394
13395 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
13396
13397         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
13398         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
13399           Patch from #347221 adding a test for audioconvert
13400           channel remappings.
13401
13402 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
13403
13404         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
13405         (gst_ssa_parse_parse_line):
13406           Don't include the terminating NUL in the buffer size,
13407           it's only there for extra paranoia (would add random
13408           '*' characters at the end of each subtitle since the
13409           terminator itself is not valid UTF-8 technically).
13410           Also fix indenting after boilerplate macro.
13411
13412 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
13413
13414         * gst/playback/gstdecodebin.c: (close_pad_link):
13415           Also emit 'unknown-type' signal (which should really be
13416           called unhandled-type) if we found potential decoders/demuxers
13417           in the registry but none of them worked in the end (as in the
13418           case where the plugins don't exist any longer but are still
13419           listed in the registry). Fixes #329798.
13420
13421 2006-07-08  Andy Wingo  <wingo@pobox.com>
13422
13423         * theoraparse.c (theora_parse_push_buffer)
13424         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
13425         Add some more debugging. Fix granulepos reconstruction in the face
13426         of discontinuities.
13427
13428 2006-07-06  Wim Taymans  <wim@fluendo.com>
13429
13430         * gst-libs/gst/audio/gstbaseaudiosink.c:
13431         (gst_base_audio_sink_class_init),
13432         (gst_base_audio_sink_provide_clock):
13433         Use gobject_class instead of G_OBJECT_CLASS (klass)
13434
13435         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13436         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
13437         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
13438         (gst_base_audio_src_get_time),
13439         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
13440         (gst_base_audio_src_create_ringbuffer):
13441         Fix latency and buffer-time constants and properties ala basesink.
13442         Implement pull based scheduling. Fixes #346527.
13443         Set default blocksize in GstBaseSrc to 0, we default to pushing out
13444         one segment.
13445         Refuse slaving to another clock instead of silently not working.
13446         Only provide a clock when we are actually able to do so.
13447         Various small cleanups and compiler hints.
13448
13449 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13450
13451         Patch by: Lutz Mueller <lutz at topfrose de>
13452
13453         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
13454         (plugin_init):
13455           Add typefinding for text/html (#346581).
13456
13457 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13458
13459         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
13460         (xml_check_first_element), (xml_type_find), (smil_type_find):
13461           Fix SMIL typefinding, make xml_check_first_element() more
13462           useful.
13463
13464 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13465
13466         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
13467         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
13468         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
13469         * gst/playback/gstplaybasebin.h:
13470           Protect list of elements with a subtitle-encoding property and
13471           the subtitle encoding member itself with a lock of their own
13472           instead of using the object lock. This prevents a dead-lock in
13473           the element-remove callback in some circumstances when shutting
13474           down playbin.
13475
13476 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
13477
13478         * win32/common/libgsttag.def:
13479         Export some new functions.
13480         * win32/vs6/libgstogg.dsp:
13481         Add a link to libgsttag-0.10.lib.
13482
13483 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
13484
13485         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
13486           Some const-ification.
13487
13488 2006-07-04  Wim Taymans  <wim@fluendo.com>
13489
13490         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
13491         Improve checking if we are dealing with a stream. Added some
13492         more uris that need buffering.
13493
13494 2006-07-03  Edward Hervey  <edward@fluendo.com>
13495
13496         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
13497         Remove unused variable.
13498
13499 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13500
13501         * Makefile.am:
13502           include lcov.mak
13503         * configure.ac:
13504           add GCOV_LIBS to GST_LIBS
13505
13506 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
13507
13508         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
13509
13510         * ext/alsa/gstalsasrc.c:
13511           Add 32 bps to template caps and increase channels range
13512           from [1,2] to [1,MAX]. See #346326.
13513
13514 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
13515
13516         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13517           Recognise 'WMVA' video codec fourcc (#345879).
13518           
13519 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
13520          
13521         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
13522           Fixed nasty memory leak
13523
13524 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13525
13526         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
13527         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
13528           fix logging
13529
13530 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
13531
13532         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13533         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
13534         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
13535         Protect remove_fakesink using a mutex, so that we don't try and
13536         remove the fakesink simultaneously from multiple threads.
13537
13538         When going from READY to PAUSED, restore the fakesink, so that
13539         it is there when decodebin gets reused.
13540
13541 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
13542
13543         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
13544         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13545         * gst-libs/gst/rtp/gstbasertppayload.c:
13546         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13547         * gst/tcp/gstmultifdsink.c:
13548         * gst/tcp/gsttcpclientsink.c:
13549         * gst/tcp/gsttcpclientsrc.c:
13550         * gst/tcp/gsttcpserversink.c:
13551         * gst/tcp/gsttcpserversrc.c:
13552         * gst/videorate/gstvideorate.c:
13553         * gst/videotestsrc/gstvideotestsrc.c:
13554         * sys/v4l/gstv4ljpegsrc.c:
13555         * sys/v4l/gstv4lmjpegsink.c:
13556         * sys/v4l/gstv4lsrc.c:
13557         * tests/examples/seek/scrubby.c:
13558         * tests/examples/seek/seek.c:
13559           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
13560
13561 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13562
13563         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
13564           Second field in GEnumValue shouldn't be a description,
13565           but a stringified version of the enum value.
13566
13567 2006-06-22  Wim Taymans  <wim@fluendo.com>
13568
13569         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
13570         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
13571         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
13572         Avoid type checking in buffer casts.
13573         Avoid caps copy in buffer_alloc when we can.
13574         Use pad_peer_accept.
13575
13576 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13577
13578         * gst-libs/gst/tag/tag.h:
13579           Oops, make that 'Since: 0.10.9'.
13580
13581 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13582
13583         * docs/libs/gst-plugins-base-libs-sections.txt:
13584         * gst-libs/gst/tag/tag.h:
13585         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
13586         (gst_tag_image_type_get_type):
13587           API: add GstTagImageType enum to describe images contained
13588           in image tags (#345641).
13589
13590 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13591
13592         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
13593           Fix warnings with gst-inspect: "buffers-min" property
13594           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
13595           typo in property description.
13596
13597 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13598
13599         Patch by: Cody Russell <bratsche at gnome org>
13600
13601         * gst/audioresample/gstaudioresample.c:
13602         (gst_audioresample_class_init):
13603         * gst/playback/gststreamselector.c:
13604         (gst_stream_selector_class_init):
13605         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
13606         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
13607         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
13608         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
13609         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
13610         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
13611         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
13612         * gst/videotestsrc/gstvideotestsrc.c:
13613         (gst_video_test_src_class_init):
13614         * gst/volume/gstvolume.c: (gst_volume_class_init):
13615           Avoid unnecessary class cast check in class_init
13616           functions (#337747).
13617
13618 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
13619
13620         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
13621         (gst_text_overlay_video_chain):
13622           g_markup_escape_text() REALLY doesn't like non-UTF8 input
13623           and doesn't validate its input either (and neither did
13624           textoverlay it seems). Let's do that then and fix #345206.
13625
13626 2006-06-19  Wim Taymans  <wim@fluendo.com>
13627
13628         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13629         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
13630         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
13631         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
13632         (find_syncframe), (find_limits), (assign_value),
13633         (count_burst_unit), (gst_multi_fd_sink_new_client),
13634         (gst_multi_fd_sink_handle_client_write),
13635         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
13636         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
13637         (gst_multi_fd_sink_change_state):
13638         * gst/tcp/gstmultifdsink.h:
13639         Added shiny new burst-on-connect methods.
13640         Add properties to control the minimal amount of data queued.
13641         Small cleanups.
13642         API: bytes-min property
13643         API: time-min property
13644         API: buffers-min property
13645         API: burst-unit property
13646         API: burst-value property
13647         API: add-full signal
13648
13649         * gst/tcp/gsttcp-marshal.list:
13650         Added new marshaller code for the new signal.
13651
13652         * tests/check/elements/multifdsink.c: (GST_START_TEST),
13653         (multifdsink_suite):
13654         Added testcases for new burst methods.
13655
13656 2006-06-19  Edward Hervey  <edward@fluendo.com>
13657
13658         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
13659         Implement clipping for accurate seeking.
13660         Closes #345225
13661
13662 2006-06-19  Wim Taymans  <wim@fluendo.com>
13663
13664         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
13665
13666         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
13667         (gst_video_scale_transform):
13668         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
13669
13670 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
13671
13672         * configure.ac:
13673           Fix --disable-external (can't set conditionals conditionally,
13674           #343602).
13675
13676 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13677
13678         * tests/check/elements/audioresample.c: (test_reuse),
13679         (audioresample_suite):
13680           Add test case for bug #342789 fixed below.
13681
13682 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13683
13684         * gst/audioresample/gstaudioresample.c:
13685         (gst_audioresample_class_init), (gst_audioresample_init),
13686         (audioresample_start), (audioresample_stop),
13687         (gst_audioresample_set_property), (gst_audioresample_get_property):
13688           Implement GstBaseTransform::start and ::stop so that audioresample
13689           can clear its internal state properly and be reused instead of
13690           causing non-negotiated errors with playbin under some circumstances
13691           (#342789).
13692
13693         * tests/check/elements/audioresample.c: (setup_audioresample),
13694         (cleanup_audioresample):
13695           Need to set element state here so that ::start and ::stop are
13696           called.
13697
13698 2006-06-16  Wim Taymans  <wim@fluendo.com>
13699
13700         Patch by: Young-Ho Cha <ganadist at chollian dot net>
13701
13702         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
13703         Parse extra data better, apparently it's right behind
13704         the normal strf header size. Fixes #343500.
13705
13706 2006-06-16  Wim Taymans  <wim@fluendo.com>
13707
13708         * ext/alsa/gstalsasink.c: (set_hwparams):
13709         If we fail to set the buffer_time and period_time alsa
13710         parameters, post a warning and leave alsa select a 
13711         default instead of failing. Fixes #342085
13712
13713 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13714
13715         * docs/libs/gst-plugins-base-libs-sections.txt:
13716         * gst-libs/gst/cdda/gstcddabasesrc.h:
13717           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
13718           out in the header file and shouldn't be listed in the docs.
13719
13720         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
13721           Must dereference pointer to fourcc in the debug statement.
13722
13723 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
13724
13725         * docs/libs/Makefile.am:
13726         * docs/libs/gst-plugins-base-libs-docs.sgml:
13727         * docs/libs/gst-plugins-base-libs-sections.txt:
13728         * docs/libs/gst-plugins-base-libs.types:
13729         add remaining symbols into correct setions
13730         
13731         * gst-libs/gst/audio/gstringbuffer.c:
13732         fix incomplete docs
13733         
13734         * gst-libs/gst/audio/gstringbuffer.h:
13735         comment out not yet implemented function
13736         
13737         
13738         * gst-libs/gst/floatcast/floatcast.h:
13739         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13740         add short descriptions
13741         
13742         
13743         * gst-libs/gst/interfaces/propertyprobe.c:
13744         fix return value docs   
13745         
13746         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
13747         simplify debug logging
13748         
13749         * gst-libs/gst/riff/riff-read.h:
13750         sync function prototype and docs
13751         
13752         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
13753         remove left over symbol
13754
13755 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13756
13757         * autogen.sh:
13758         * configure.ac:
13759         * docs/Makefile.am:
13760           Use GST_PLUGIN_DOCS macro in configure.ac, add
13761           --enable-plugin-docs default to autogen.sh and use
13762           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
13763
13764 2006-06-15  Wim Taymans  <wim@fluendo.com>
13765
13766         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
13767         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
13768         (gst_ogg_demux_loop):
13769         Combine GstFlowReturn from the source pads to give a
13770         meaningfull result to the upstream peer or to stop the
13771         processing task in case of errors.
13772
13773 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13774
13775         * gst/playback/gststreaminfo.c: (cb_probe):
13776           Try GST_TAG_CODEC as fallback when extracting the
13777           codec name; more debug info.
13778
13779 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13780
13781         * ext/ogg/Makefile.am:
13782         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13783           Extract language tags from ogm subtitle streams, so that
13784           the subtitle menu choices are labelled correctly in
13785           Totem (fixes #344708).
13786
13787 2006-06-14  Wim Taymans  <wim@fluendo.com>
13788
13789         Patch by: Alessandro Decina <alessandro at nnva dot org>
13790
13791         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
13792         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
13793         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
13794         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
13795         Fix various leaks. Fixes #343699.
13796         Add x-smoke mime type.
13797
13798 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13799
13800         * gst-libs/gst/riff/riff-ids.h:
13801           Add IDs for 'bext' chunks (see #343837).
13802
13803 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
13804
13805         Patch by: Young-Ho Cha  <ganadist at chollian net>
13806
13807         * gst/subparse/samiparse.c: (sami_context_pop_state),
13808         (handle_start_font), (end_sami_element):
13809           Honour font face tags in SAMI subtitles (#344503).
13810
13811 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13812
13813         * po/POTFILES.in:
13814           add missing files containing translatable strings
13815
13816 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13817
13818         * docs/libs/tmpl/.cvsignore:
13819           we don't want those *.sgml files in CVS either
13820
13821 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13822
13823         * docs/libs/.cvsignore:
13824         * tests/check/elements/.cvsignore:
13825         * tests/check/libs/.cvsignore:
13826           ignore more
13827
13828 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13829
13830         * docs/libs/Makefile.am:
13831           also commiting the changed Makefile.am (added more libs to the
13832           doc-build)
13833
13834 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13835
13836         * docs/libs/gst-plugins-base-libs-docs.sgml:
13837         * docs/libs/gst-plugins-base-libs-sections.txt:
13838         * docs/libs/gst-plugins-base-libs.types:
13839           first batch of reordering things, add index & hierarchy
13840
13841 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13842
13843         * configure.ac:
13844           use GST_PKG_CHECK_MODULES, cleans up output
13845
13846 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
13847
13848         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
13849           Add support for burn:// URIs (#343385); const-ify things a bit,
13850           use G_N_ELEMENTS instead of hard-coded array size.
13851
13852 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
13853
13854         Patch by: Young-Ho Cha  <ganadist at chollian net>
13855
13856         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
13857           Fix up broken entities before passing them to libxml *sigh*.
13858           (#343303).
13859           
13860 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13861
13862         * configure.ac:
13863           back to TRUNK
13864
13865 === release 0.10.8 ===
13866
13867 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
13868
13869         * configure.ac:
13870           releasing 0.10.8, "Moar gij ziet mij nie"
13871
13872 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13873
13874         * configure.ac:
13875         * po/af.po:
13876         * po/az.po:
13877         * po/cs.po:
13878         * po/en_GB.po:
13879         * po/hu.po:
13880         * po/it.po:
13881         * po/nb.po:
13882         * po/nl.po:
13883         * po/or.po:
13884         * po/sq.po:
13885         * po/sr.po:
13886         * po/sv.po:
13887         * po/uk.po:
13888         * po/vi.po:
13889         * win32/common/config.h:
13890           0.10.7.2 prerelease
13891
13892 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13893
13894         * docs/libs/tmpl/gstaudio.sgml:
13895         * docs/libs/tmpl/gstcolorbalance.sgml:
13896         * docs/libs/tmpl/gstmixer.sgml:
13897         * docs/libs/tmpl/gstringbuffer.sgml:
13898         * docs/libs/tmpl/gsttuner.sgml:
13899         * docs/libs/tmpl/gstxoverlay.sgml:
13900         * gst-libs/gst/audio/audio.c:
13901         * gst-libs/gst/audio/gstringbuffer.c:
13902         * gst-libs/gst/interfaces/colorbalance.c:
13903         * gst-libs/gst/interfaces/mixer.c:
13904         * gst-libs/gst/interfaces/tuner.c:
13905         * gst-libs/gst/interfaces/xoverlay.c:
13906           move last template doc snippets to source code and delete them
13907
13908 2006-06-06  Michael Smith  <msmith@fluendo.com>
13909
13910         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
13911         (theora_parse_drain_queue):
13912           Mark DELTA_UNIT on non-keyframes.
13913
13914 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
13915
13916         * gst-libs/gst/audio/gstbaseaudiosink.c:
13917         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
13918         * gst-libs/gst/audio/gstbaseaudiosink.h:
13919         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
13920         (gst_ring_buffer_samples_done):
13921         * gst-libs/gst/audio/gstringbuffer.h:
13922         Document better the fact that latency_time and buffer_time are values
13923         stored in microseconds, and not the usual GStreamer nanoseconds.
13924         Change the variables (compatibly) that store them from GstClockTime 
13925         to guint64 to make it more clear that they're not storing clock times.
13926         Also, remove the bogus property description that says the user can
13927         specify -1 to get the default value, since that's never been the case.
13928
13929         When computing the default segment size for the ring buffer, make it
13930         an integer number of samples.
13931
13932         When the sub-class indicates a delay greater than the number of
13933         samples we've written return 0 from the audio sink get_time method.
13934
13935 2006-06-02  Michael Smith  <msmith@fluendo.com>
13936
13937         * tests/check/elements/audioconvert.c: (set_channel_positions),
13938         (get_float_mc_caps), (get_int_mc_caps):
13939         * tests/check/elements/audioresample.c:
13940         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
13941         * tests/check/elements/videorate.c:
13942         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
13943         * tests/check/elements/volume.c:
13944         * tests/check/elements/vorbisdec.c:
13945         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
13946           Don't busy-wait in tests; this was causing test timeouts very
13947           frequently when running under valgrind.
13948
13949 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13950
13951         * gst/tcp/README:
13952         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
13953         (gst_multi_fd_sink_remove_client_link),
13954         (gst_multi_fd_sink_client_queue_caps),
13955         (gst_multi_fd_sink_client_queue_buffer),
13956         (gst_multi_fd_sink_handle_client_write),
13957         (gst_multi_fd_sink_render):
13958         * gst/tcp/gstmultifdsink.h:
13959           make multifdsink properly deal with streamheader:
13960           - streamheader is taken from caps
13961           - buffers marked with IN_CAPS are not sent
13962           - streamheaders are sent, on connection, from the caps of the
13963             buffer where the client gets positioned to
13964           - further streamheader changes are done every time the client
13965             will receive a buffer with different caps
13966         * tests/check/elements/multifdsink.c: (GST_START_TEST),
13967         (gst_multifdsink_create_streamheader):
13968           add tests for this
13969
13970 2006-06-02  Michael Smith  <msmith@fluendo.com>
13971
13972         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
13973           Reinstate limit on channel count. Vorbis does not define the meaning
13974           of > 6 channels, so they're just independent channels. Gstreamer
13975           currently has no mechanism to represent N independent channels.
13976
13977 2006-06-02  Michael Smith  <msmith@fluendo.com>
13978
13979         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
13980           Don't arbitrarily restrict channel counts and rate in vorbis.
13981           In terms of effects likely on real-world files, this fixes 96kHz
13982           playback of vorbis.
13983
13984 2006-06-02  Michael Smith  <msmith@fluendo.com>
13985
13986         * gst/audioconvert/audioconvert.c: (float):
13987           More correct float->int conversion.
13988
13989 2006-06-02  Michael Smith  <msmith@fluendo.com>
13990
13991         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
13992           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
13993           value. Fixes g-critical on trying to play back ogg containing
13994           unknown codec.
13995
13996 2006-06-02  Wim Taymans  <wim@fluendo.com>
13997
13998         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
13999         (setup_source):
14000         * gst/playback/gstplaybasebin.h:
14001         Make the subtitle detection work from any thread so we don't
14002         deadlock. Fixes #343397.
14003
14004 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14005
14006         * gst/volume/Makefile.am:
14007           Seriously, it's not *that* hard to get compilation right.  Even
14008           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
14009
14010 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14011
14012         * gst/volume/gstvolume.c: (volume_choose_func),
14013         (volume_update_real_volume), (gst_volume_class_init),
14014         (gst_volume_init), (volume_process_float), (volume_process_int16),
14015         (volume_process_int16_clamp), (volume_set_caps),
14016         (volume_transform_ip), (plugin_init):
14017         * gst/volume/gstvolume.h:
14018         rewrite the passthrough check, split _int16 and _int16_clamp, fix
14019         another property desc., remove unused param from process function
14020         
14021         * tests/check/elements/volume.c: (volume_suite):
14022         reactivate the passthrough test
14023
14024 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14025
14026         * ext/alsa/gstalsamixerelement.h:
14027         * ext/alsa/gstalsamixeroptions.h:
14028         * ext/alsa/gstalsamixertrack.h:
14029         * ext/gnomevfs/gstgnomevfssink.h:
14030         * ext/gnomevfs/gstgnomevfssrc.h:
14031         * ext/theora/gsttheoradec.h:
14032         * ext/theora/gsttheoraenc.h:
14033         * ext/theora/gsttheoraparse.h:
14034         * ext/vorbis/vorbisparse.h:
14035         * gst-libs/gst/audio/gstaudioclock.h:
14036         * gst-libs/gst/audio/gstaudiofilter.h:
14037         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14038         * gst/audioconvert/gstaudioconvert.h:
14039         * gst/audioresample/gstaudioresample.h:
14040         * gst/audiotestsrc/gstaudiotestsrc.h:
14041         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
14042         * gst/playback/gststreamselector.h:
14043         * gst/tcp/gstmultifdsink.h:
14044         * gst/tcp/gsttcpclientsink.h:
14045         * gst/tcp/gsttcpclientsrc.h:
14046         * gst/tcp/gsttcpserversink.h:
14047         * gst/tcp/gsttcpserversrc.h:
14048         * gst/videorate/gstvideorate.h:
14049         * gst/videoscale/gstvideoscale.h:
14050         * gst/videotestsrc/gstvideotestsrc.h:
14051         * gst/volume/gstvolume.h:
14052         * sys/v4l/gstv4ljpegsrc.h:
14053         * sys/v4l/gstv4lmjpegsink.h:
14054         * sys/v4l/gstv4lmjpegsrc.h:
14055         * sys/v4l/gstv4lsrc.h:
14056         * sys/ximage/ximagesink.h:
14057         * sys/xvimage/xvimagesink.h:
14058         * tests/old/testsuite/alsa/sinesrc.h:
14059         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
14060
14061 2006-05-31  Wim Taymans  <wim@fluendo.com>
14062
14063         * ext/libvisual/visual.c: (gst_visual_reset),
14064         (gst_visual_sink_setcaps), (gst_visual_sink_event),
14065         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
14066         Handle DISCONT.
14067         Use running time before doing QoS.
14068         Handle mono too.
14069
14070 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14071
14072         * docs/libs/Makefile.am:
14073           set a magic variable to indicate we know the docs are incomplete
14074
14075 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
14076
14077         * win32/common/libgstvideo.def:
14078           export gst_video_calculate_display_ratio
14079         * win32/vs6/libgstvideoscale.dsp:
14080           add link to libgstvideo-0.10.lib
14081
14082 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
14083
14084         * gst/playback/gstplaybasebin.c: (gen_source_element):
14085           Throw a more comprehensible error for rtsp:// URIs (rather
14086           than erroring out with a negotiation error later on) until
14087           we fix playbin to handle rtspsrc etc.
14088
14089 2006-05-30  Wim Taymans  <wim@fluendo.com>
14090
14091         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
14092         (gst_text_overlay_text_event):
14093         Added some FIXMEs.
14094
14095 2006-05-30  Wim Taymans  <wim@fluendo.com>
14096
14097         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
14098         (gst_adder_request_new_pad), (gst_adder_release_pad):
14099         * gst/adder/gstadder.h:
14100         Implement release_request_pad.
14101         Make padcounter atomic.
14102
14103         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
14104         Added check for release_pad in adder.
14105
14106 2006-05-30  Wim Taymans  <wim@fluendo.com>
14107
14108         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
14109         Fix build again.
14110
14111 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14112
14113         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14114         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
14115         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
14116         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
14117         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
14118         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
14119         (gst_ogg_demux_bisect_forward_serialno),
14120         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
14121         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
14122           add more debugging
14123           clean up printf formats for granulepos and serialno
14124
14125 2006-05-30  Michael Smith  <msmith@fluendo.com>
14126
14127         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
14128         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
14129         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
14130         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
14131         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
14132         * ext/vorbis/vorbisenc.h:
14133           Multi-channel caps negotiation, so we can do proper multichannel
14134           vorbis encoding, negotiated through audioconvert.
14135
14136 2006-05-30  Wim Taymans  <wim@fluendo.com>
14137
14138         * tests/check/elements/adder.c: (test_event_message_received),
14139         (test_play_twice_message_received), (GST_START_TEST),
14140         (adder_suite):
14141         Added check to show that #339935 is fixed with ongoing
14142         adder and collectpads fixes.
14143
14144 2006-05-29  Wim Taymans  <wim@fluendo.com>
14145
14146         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
14147         Don't leak pad name.
14148
14149 2006-05-29  Wim Taymans  <wim@fluendo.com>
14150
14151         * gst/adder/gstadder.c: (gst_adder_query_duration),
14152         (forward_event_func), (forward_event), (gst_adder_src_event):
14153         Fix adder seeking.
14154         Make query/seeking code threadsafe.
14155
14156         * tests/check/Makefile.am:
14157         * tests/check/elements/adder.c: (test_event_message_received),
14158         (GST_START_TEST), (test_play_twice_message_received):
14159         Fix adder test case.
14160
14161 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
14162
14163         Patch by: Young-Ho Cha  <ganadist at chollian net>
14164
14165         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14166         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
14167         (set_encoding_element), (decodebin_element_added_cb),
14168         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
14169         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
14170         * gst/playback/gstplaybasebin.h:
14171           Add 'subtitle-encoding' property to playbin, so applications can
14172           force a subtitle encoding for non-UTF8 subtitles (#342268).
14173
14174         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
14175         (gst_sub_parse_set_property):
14176           Rename recently-added 'encoding' property to 'subtitle-encoding'
14177           (so it can be proxied by playbin/decodebin in a generic way
14178           with less danger of false positives).
14179
14180 2006-05-29  Michael Smith  <msmith@fluendo.com>
14181
14182         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
14183         (append_with_other_format), (set_structure_widths),
14184         (gst_audio_convert_transform_caps):
14185           Patch from #341562: give more specific audio caps in get_caps, so
14186           that basetransform  can make better decisions on what caps to
14187           negotiate.
14188
14189 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14190
14191         * tests/check/elements/volume.c:
14192         make it compile again
14193
14194 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14195
14196         * tests/check/elements/volume.c: (volume_suite):
14197         disable test until #343196 gets resolved
14198
14199 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14200
14201         * gst/adder/gstadder.c: (gst_adder_get_type):
14202         Make it easier to copy&paste
14203         
14204         * gst/volume/Makefile.am:
14205         * gst/volume/gstvolume.c: (volume_update_real_volume),
14206         (gst_volume_set_volume), (gst_volume_set_mute),
14207         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
14208         (volume_transform_ip), (volume_update_mute),
14209         (volume_update_volume):
14210         * gst/volume/gstvolume.h:
14211         Add own debug category, move duplicate code to helper function, fix
14212         property texts, add more comments and prepare ffor liboil-goodness
14213         
14214         * tests/check/Makefile.am:
14215         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
14216         add test for mute and passtrough case, be a bit more verbose to track
14217         failure
14218         
14219         * tests/check/generic/states.c: (GST_START_TEST):
14220         catch elements that fail to instantiate
14221
14222 2006-05-28  Edward Hervey  <edward@fluendo.com>
14223
14224         * tests/check/pipelines/simple-launch-lines.c:
14225         * tests/check/pipelines/theoraenc.c:
14226         * tests/check/pipelines/vorbisenc.c:
14227         Comment out tests using parse_launch() if core was built without
14228         parsing capabilities.
14229
14230 2006-05-27  Edward Hervey  <edward@fluendo.com>
14231
14232         * tests/check/Makefile.am:
14233         Extra bonus points for whoever explains to ensonic that you are meant
14234         to test unit tests thoroughly before commiting them, especially if
14235         you know it's going to break.
14236         De-activated element/adder tests.
14237
14238 2006-05-27  Edward Hervey  <edward@fluendo.com>
14239
14240         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14241         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
14242         Marking caps conversion issues as GST_WARNING is way too verbose,
14243         Moving them to GST_LOG.
14244
14245 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
14246
14247         * README:
14248           Replace current README (containing the release notes from
14249           some 0.9.x version) with a proper README taken from the core.
14250
14251 2006-05-26  Wim Taymans  <wim@fluendo.com>
14252
14253         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
14254         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
14255         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
14256         (vorbis_dec_change_state):
14257         Small cleanups.
14258         Add some FIXMEs
14259         Clip output samples to segment boundaries.
14260
14261 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
14262
14263         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14264         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
14265         Improve the errors produced on bad output, including some human
14266         readable description strings.
14267         Handle the (theoretical for ximagesink) case where the XServer 
14268         has a different idea about the size required for a particular 
14269         frame and gives us too small a memory allocation.
14270
14271 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
14272
14273         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14274         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
14275         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
14276         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14277         Improve the errors produced on bad output, including some human 
14278         readable description strings.
14279         Handle RGB Xv formats properly by transforming them into our 
14280         big-endian caps description.
14281         Use gst_caps_truncate to ensure that we never try and choose a
14282         non-fixed caps in buffer_alloc.
14283         Handle the case where the XServer has a different idea about the size
14284         required for a particular frame and gives us too small a memory
14285         allocation.
14286         Use -1 to indicate 'no image format', because 0 is a valid XServer
14287         image format number.
14288         Put RGB Xv formats at the end of the caps, so that we always prefer
14289         YUV format frames.
14290         Iterate the available Xv Encodings to determine the maximum width and
14291         height, and then return that in our caps.
14292         (Closes #315312, #337544)
14293
14294 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
14295
14296         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
14297         When there is only one unfinished pad and it receives an event that
14298         doesn't match our requirements, we need to set alldone=FALSE so that
14299         the fakesink is not removed yet.
14300
14301 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
14302
14303         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
14304           Use gst_type_find_helper_for_buffer() to find the type
14305           of stream from the first packet.
14306
14307         * configure.ac:
14308           Bump requirements to core CVS (needed for vorbis
14309           typefinding to work).
14310
14311 2006-05-24  Edward Hervey  <edward@fluendo.com>
14312
14313         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
14314         Added the 'prfl' atom type which MQV (no, it's not a typo) files
14315         contain.  Else they play perfectly fine with qtdemux.
14316
14317 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
14318
14319         * ext/theora/theoradec.c:
14320         * ext/theora/theoraenc.c:
14321         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
14322         * gst/audiorate/gstaudiorate.c:
14323           make more debug catagories static
14324         
14325         * tests/check/Makefile.am:
14326         * tests/check/elements/adder.c: (message_received),
14327         (test_event_message_received), (GST_START_TEST),
14328         (test_play_twice_message_received), (adder_suite):
14329           added test case for using element twice, extra bonus points for anyone
14330           who can make these test run reliably
14331
14332 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
14333
14334         * ext/theora/theoradec.c: (theora_dec_chain):
14335           Make work with time-stamped input buffers that do not
14336           have a granulepos in BUFFER_OFFSET_END (like theora
14337           buffers coming from matroskademux). Fixes #342448.
14338
14339 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
14340
14341         Patch by: Peter Kjellerstedt  <pkj at axis com>
14342
14343         * gst/tcp/Makefile.am:
14344           fdstresstest doesn't need Gtk+, fix compilation if 
14345           gtk is not available (#342566).
14346
14347 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14348          
14349         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14350           80 line columns
14351           Removed redundant floor()
14352
14353 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14354
14355         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14356           On second thought, just skip JUNK chunks automatically, so
14357           the caller doesn't have to handle this. Fixes #342345.
14358           Also, return GST_FLOW_UNEXPECTED if we get a short read,
14359           not GST_FLOW_ERROR.
14360
14361 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14362
14363         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14364           Don't bail out on JUNK chunks with a size of 0 (would try to
14365           pull_range 0 bytes before, which sources don't like too much).
14366           See #342345.
14367
14368 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
14369
14370         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
14371         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
14372         Use the gstutil scaling function to preserve 64 bits while calculating
14373         output width and height from the display-aspect-ratio. (A continuation
14374         of #341542)
14375
14376 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
14377
14378         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
14379         (gst_xvimagesink_buffer_alloc):
14380         * sys/xvimage/xvimagesink.h:
14381         When performing buffer allocations, remember the caps and image format
14382         we return so that if the same caps are asked for next time we can
14383         return them immediately without doing any caps intersections.
14384
14385 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14386          
14387         * gst-libs/gst/rtp/README:
14388           Some new documentation
14389         * gst-libs/gst/rtp/gstrtpbuffer.h:       
14390           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
14391         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14392         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
14393           New RTP audio base payloader class. Supports frame or sample based
14394           codecs.  Not enabled in Makefile.am until approved.
14395
14396 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14397
14398         * tests/check/elements/alsa.c: (test_device_property_probe):
14399           Fix test case: don't try to free NULL GValueArray when there
14400           are no devices.
14401
14402 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14403
14404         * tests/check/Makefile.am:
14405         * tests/check/elements/alsa.c: (test_device_property_probe),
14406         (alsa_suite), (main):
14407           Add simple test that runs a device property probe on alsasrc,
14408           alsasink and alsamixer. Disable valgrind check for now (too
14409           many leaks in libasound, and valgrind ignored my suppressions
14410           additions).
14411
14412 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14413
14414         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
14415         (gst_alsa_device_property_probe_probe_property),
14416         (gst_alsa_device_property_probe_needs_probe),
14417         (gst_alsa_device_property_probe_get_values),
14418         (gst_alsa_type_add_device_property_probe_interface):
14419         * ext/alsa/gstalsadeviceprobe.h:
14420         * ext/alsa/gstalsamixerelement.c:
14421         (gst_alsa_mixer_element_init_interfaces):
14422         * ext/alsa/gstalsamixerelement.h:
14423           Clean up and simplify alsa device probing. Make it actually work
14424           for multiple classes. Don't cache results any longer.
14425
14426         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
14427         (gst_alsasink_init):
14428         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
14429         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
14430         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
14431           Make alsasink and alsasrc implement the GstPropertyProbe interface
14432           for device probing (#342181).
14433           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
14434
14435 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14436
14437         * gst/subparse/samiparse.c: (handle_start_font):
14438           Don't ignore return value of strtol (++compiler_happiness).
14439
14440 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
14441
14442         Patch by: Young-Ho Cha  <ganadist chollian net>
14443
14444         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
14445         (gst_sub_parse_class_init), (gst_sub_parse_init),
14446         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
14447         (convert_encoding):
14448         * gst/subparse/gstsubparse.h:
14449           Add 'encoding' property (#341681).
14450
14451         * gst/subparse/samiparse.c: (characters_sami):
14452           Output is pango markup, so we need to escape text
14453           between tags (#342143).
14454
14455 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14456
14457         * gst-libs/gst/audio/multichannel.c:
14458         (gst_audio_check_channel_positions):
14459           It's okay to have caps with channels=1 and a channel position
14460           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
14461           (deinterleavers might want to keep the position in the caps,
14462           so that they can be re-interleaved again properly later).
14463           Leave check for unexpected 2-channel layouts intact for now.
14464
14465 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14466
14467         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
14468         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
14469         basesrc can do its job correctly.
14470
14471 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14472
14473         * ext/alsa/Makefile.am:
14474         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
14475         (gst_alsa_detect_formats), (get_channel_free_structure),
14476         (caps_add_channel_configuration), (gst_alsa_detect_channels),
14477         (gst_alsa_probe_supported_formats):
14478         * ext/alsa/gstalsa.h:
14479         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
14480           Refactor and improve caps probing code: probe signedness
14481           when we probe the supported formats/widths; set endianness
14482           to the one we actually probed for (ie. cpu endianness).
14483           
14484         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
14485         (gst_alsasrc_close):
14486         * ext/alsa/gstalsasrc.h:
14487           Implement caps probing for alsasrc.
14488
14489 2006-05-15  Wim Taymans  <wim@fluendo.com>
14490
14491         * ext/theora/theoradec.c: (gst_theora_dec_reset),
14492         (theora_dec_src_query), (theora_dec_src_event),
14493         (theora_dec_sink_event), (theora_handle_comment_packet),
14494         (theora_handle_data_packet), (theora_dec_change_state):
14495         Cleanups, add some G_LIKELY.
14496         Use segment helpers instead of our own wrong code.
14497         Clear queued buffers on seek and READY.
14498
14499         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
14500         (vorbis_dec_convert), (vorbis_dec_src_query),
14501         (vorbis_dec_src_event), (vorbis_dec_sink_event),
14502         (vorbis_handle_comment_packet), (vorbis_dec_push),
14503         (vorbis_handle_data_packet), (vorbis_dec_chain),
14504         (vorbis_dec_change_state):
14505         * ext/vorbis/vorbisdec.h:
14506         Remove old useless packetno variable.
14507         Do position query properly.
14508         Add some G_LIKELY.
14509         Do cleanup of queued buffers in new helper function
14510         and use it.
14511
14512 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14513
14514         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
14515           Query supported sample rates. Fixes #341732.
14516
14517 2006-05-15  Julien MOUTTE  <julien@moutte.net>
14518
14519         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
14520         (gst_decode_bin_change_state): Make decodebin reusable
14521         when going from PAUSE_TO_READY and then back to PAUSED.
14522         Fixes #331678.
14523
14524 2006-05-15  Wim Taymans  <wim@fluendo.com>
14525
14526         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
14527         (vorbis_dec_convert), (vorbis_dec_src_query),
14528         (vorbis_dec_sink_query), (vorbis_dec_src_event),
14529         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
14530         (vorbis_dec_clean_queued), (vorbis_dec_push),
14531         (vorbis_handle_data_packet), (vorbis_dec_change_state):
14532         Cleanups. Use refcounting and DEBUG_OBJECT.
14533         Reset segment on flush, use code methods instead of our
14534         own wrong version.
14535         Fix potential memleak.
14536
14537 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14538
14539         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
14540         (gst_alsasink_init):
14541         * ext/alsa/gstalsasink.h:
14542           Don't leak allocated snd_output_t structure if there's
14543           more than one alsasink instance at a time (#341873).
14544           Also fix GObject macros in header file.
14545           
14546 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14547
14548         * gst/subparse/gstsubparse.c:
14549         (gst_sub_parse_data_format_autodetect):
14550           Don't use libxml functions in the typefinding code.
14551
14552 2006-05-15  Wim Taymans  <wim@fluendo.com>
14553
14554         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14555         Fix seeking performance in the case where a non-header 
14556         packet has a 0 granulepos (busted theora case). 
14557         Fixes #341719
14558         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
14559          the first place, you limelight stealer you)
14560
14561 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14562
14563         * gst/subparse/gstsubparse.c:
14564         (gst_sub_parse_data_format_autodetect):
14565           Improve SAMI typefinding: handle case where there are
14566           whitespaces or newlines in front of the first <SAMI>
14567           tag (#169936).
14568
14569 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14570
14571         * configure.ac:
14572           Build video4linux plugin even if there's no XVIDEO, just
14573           without implementing the GstXOverlay interface (#334002).
14574          
14575 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14576
14577         * configure.ac:
14578         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
14579         (plugin_init):
14580           Add tentative support for libvisual-0.4 (#336881).
14581
14582 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14583
14584         Patch by: Young-Ho Cha <ganadist at chollian net>
14585
14586         * gst/subparse/samiparse.c: (handle_start_font):
14587           Need to map "silver" colour explicitly (#169936).
14588
14589 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14590
14591         Patch by: Young-Ho Cha  <ganadist at chollian net>
14592
14593         * gst/subparse/Makefile.am:
14594         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
14595         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
14596         (gst_sub_parse_format_autodetect), (feed_textbuf),
14597         (gst_subparse_type_find), (plugin_init):
14598         * gst/subparse/gstsubparse.h:
14599         * gst/subparse/samiparse.c:
14600         * gst/subparse/samiparse.h:
14601           Add support for SAMI subtitles (#169936).
14602
14603 2006-05-14  Michael Smith  <msmith@fluendo.com>
14604
14605         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
14606           Fix #341696: crash when mixing L+R+C to mono or stereo.
14607         * tests/check/Makefile.am:
14608         * tests/check/elements/audioconvert.c: (set_channel_positions),
14609         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
14610         (audioconvert_suite):
14611           Add test for the above, including some generic framework bits for
14612           testing multichannel things.
14613
14614 === release 0.10.7 ===
14615
14616 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
14617
14618         * configure.ac:
14619           releasing 0.10.7, "Leave the gun"
14620
14621 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
14622
14623         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
14624         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
14625         Fix the build.
14626
14627 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
14628
14629         * docs/libs/gst-plugins-base-libs-docs.sgml:
14630         * docs/libs/gst-plugins-base-libs-sections.txt:
14631         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
14632         * gst-libs/gst/video/video.h:
14633         * gst/videoscale/Makefile.am:
14634         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
14635         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
14636         * tests/check/Makefile.am:
14637         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
14638         (main):
14639           Fix integer overflow problem with pixel-aspect-ratio calculations
14640           in videoscale and xvimagesink (#341542)
14641
14642 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
14643
14644         * gst-libs/gst/tag/gstid3tag.c:
14645           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
14646
14647 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
14648
14649         * win32/MANIFEST:
14650           update win32 files listing
14651
14652 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14653
14654         patch by: Sjoerd Simons (sjoerd@luon.net)
14655
14656         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14657         (group_create), (group_destroy), (add_stream),
14658         (gst_play_base_bin_get_property),
14659         (gst_play_base_bin_get_streaminfo_value_array):
14660         * gst/playback/gstplaybasebin.h:
14661           API: GstPlayBaseBin::stream-info-value-array property
14662           use a more bindings-friendly way of exposing streaminfo
14663           using a GValueArray.  Tested in ipython.
14664           Closes #341114
14665
14666 2006-05-11  Wim Taymans  <wim@fluendo.com>
14667
14668         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
14669         (queue_underrun_cb), (queue_filled_cb):
14670         Also catch queue underruns but don't do anything yet.
14671         Refactor and comment queue enlarging code a bit.
14672
14673         * gst/playback/gstplaybasebin.c: (queue_overrun),
14674         (queue_threshold_reached), (queue_out_of_data),
14675         (gen_preroll_element):
14676         If a queue over/underruns check that we don't create nasty
14677         deadlocks when the min-threshold is not reached but the
14678         max-bytes is. In those cases disable max-bytes when we
14679         know that the queue is fed timed data.
14680         Add more comments.
14681
14682 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
14683
14684         * gst/playback/gstplaybin.c: (gen_audio_element):
14685           Make playbin automatically plug an 'audioresample'
14686           element before the audio sink as well. This solves
14687           problems with sinks that only accept a very specific
14688           sample rate, like esdsink (e.g. #340379).
14689
14690 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
14691
14692         * gst/playback/gstplaybasebin.c: (gen_source_element):
14693           Make http sources send special headers so that we receive
14694           icecast metadata if the http stream is an icecast stream
14695           (otherwise the server will just ignore them). This also
14696           means that from now on users will need the 'icydemux'
14697           element from gst-plugins-good installed if they want to
14698           listen to icecast radio streams. (#341432, #333657).
14699
14700 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14701
14702         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
14703         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
14704           remove stupid example from docs - it should come with a simple
14705           C program instead.
14706           Clean up/fix docs
14707         * tests/check/elements/multifdsink.c: (wait_bytes_served),
14708         (fail_if_can_read), (GST_START_TEST),
14709         (gst_multifdsink_create_streamheader), (multifdsink_suite):
14710           add a test for changing streamheader which exposes a bug in
14711           multifdsink
14712
14713 2006-05-11  Michael Smith  <msmith@fluendo.com>
14714
14715         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
14716         (gst_gnome_vfs_src_received_headers_callback):
14717         * ext/gnomevfs/gstgnomevfssrc.h:
14718           Don't set icy-caps unless we have a sane interval value. Move
14719           interval to a local variable; we never use it outside this function.
14720
14721 2006-05-11  Wim Taymans  <wim@fluendo.com>
14722
14723         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
14724         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
14725         Register special buffer types along with the objects so
14726         that they are not registered at runtime from N different
14727         streaming threads since they are not threadsafe.
14728
14729 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14730
14731         * tests/check/elements/multifdsink.c: (wait_bytes_served),
14732         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
14733           add two more tests, one doing streamheader
14734
14735 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14736
14737         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
14738           clean up the bufqueue when shutting down
14739         * tests/check/Makefile.am:
14740         * tests/check/elements/multifdsink.c: (setup_multifdsink),
14741         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
14742         (main):
14743           add a test for the leak that was just fixed
14744
14745 2006-05-10  Wim Taymans  <wim@fluendo.com>
14746
14747         * gst/adder/gstadder.c: (gst_adder_setcaps),
14748         (gst_adder_query_duration), (gst_adder_query), (forward_event),
14749         (gst_adder_src_event), (gst_adder_sink_event),
14750         (gst_adder_class_init), (gst_adder_finalize),
14751         (gst_adder_request_new_pad), (gst_adder_collected):
14752         * gst/adder/gstadder.h:
14753         Updated some docs. Added comments and FIXMEs all over the place.
14754         Improve debugging info.
14755         Fix leak on finalize by not calling the parent.
14756         Implement duration query.
14757         Make event forwarding threadsafe.
14758         Correctly send NEWSEGMENT at start and after flush.
14759         Handle EOS correctly.
14760         Post error when not negotiated.
14761
14762         * tests/check/elements/adder.c: (GST_START_TEST):
14763         Added FIXME in the test.
14764
14765 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14766
14767         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
14768         (gst_text_overlay_halign_get_type),
14769         (gst_text_overlay_wrap_mode_get_type):
14770         * ext/theora/theoradec.c: (theora_handle_type_packet),
14771         (theora_handle_data_packet):
14772         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
14773         (theora_enc_sink_setcaps), (theora_enc_chain):
14774         * gst-libs/gst/cdda/gstcddabasesrc.c:
14775         (gst_cdda_base_src_mode_get_type):
14776         * gst/audiotestsrc/gstaudiotestsrc.c:
14777         (gst_audiostestsrc_wave_get_type):
14778         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
14779         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
14780         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
14781         (gst_sync_method_get_type), (gst_unit_type_get_type),
14782         (gst_client_status_get_type):
14783         * gst/videoscale/gstvideoscale.c:
14784         (gst_video_scale_method_get_type):
14785         * gst/videotestsrc/gstvideotestsrc.c:
14786         (gst_video_test_src_pattern_get_type):
14787         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
14788         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
14789         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
14790         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
14791         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
14792         (paint_setup_RGB565), (paint_setup_xRGB1555):
14793           Const-ify GEnumValue and GFlagsValue arrays. Use
14794           GST_ROUND_UP_* macros instead of home-made ones.
14795
14796 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14797
14798         * configure.ac:
14799           Require core CVS for the new newsegment stuff.
14800
14801 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14802
14803         Patch by: Sjoerd Simons  <sjoerd at luon net>
14804
14805         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
14806           Register nick for enum value (#341160).
14807
14808 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
14809
14810         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
14811         (plugin_init):
14812          backout typefind patch #340375
14813          
14814         * tests/check/elements/adder.c: (message_received),
14815         (GST_START_TEST), (adder_suite):
14816           redo, signal-handling of test
14817
14818 2006-05-09  Wim Taymans  <wim@fluendo.com>
14819
14820         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
14821         (gst_adder_collected):
14822         * gst/adder/gstadder.h:
14823         Remove bogus segment merging and forwarding, we don't
14824         care about timestamps anyway and we just produce a
14825         continuous stream. 
14826         Also create a nice NEWSEGMENT event when we start.
14827         Use _scale_int some more.
14828
14829 2006-05-09  Edward Hervey  <edward@fluendo.com>
14830
14831         * tests/icles/stress-xoverlay.c:
14832         Fix if core was built without parsing support.
14833
14834 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14835
14836         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14837           Add SEDG (Samsung MPEG-4) fourcc.
14838
14839 2006-05-09  Edward Hervey  <edward@fluendo.com>
14840
14841         * tests/icles/stress-xoverlay.c:
14842         * tests/examples/volume/volume.c:
14843         Fix if core was built without parsing support.
14844
14845         * tests/examples/seek/seek.c:
14846         Disable the parse_launch example if core was built without parsing
14847         support.
14848
14849 2006-05-08  Edward Hervey  <edward@fluendo.com>
14850
14851         * autogen.sh: (CONFIGURE_DEF_OPT): 
14852         libtoolize on Darwin/MacOSX is called glibtoolize
14853
14854 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14855
14856         * tests/check/Makefile.am:
14857         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
14858           Disable the adder test, until the build-slaves posses the kindness to 
14859           either like it or to give valid reason for not doing so 
14860
14861 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14862
14863         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
14864         (adder_suite):
14865           Shuffle NULL state change around and raise timeout more
14866
14867 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14868
14869         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
14870         (mp4_type_find), (plugin_init):
14871           Add typefind to distinguish between "audio/x-m4a" and new type
14872           "video/mp4". Fixes #340375
14873
14874         * tests/check/elements/adder.c: (adder_suite):
14875           Raise timeout to make buildbot happy
14876
14877 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14878
14879         * gst/adder/gstadder.c: (gst_adder_sink_event),
14880         (gst_adder_request_new_pad), (gst_adder_change_state):
14881         * gst/adder/gstadder.h:
14882         * tests/check/Makefile.am:
14883         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
14884         (adder_suite), (main):
14885           Add sink-event handling to adder. It tries to merge incomming
14886           newsegment-events. Added test to check if segment_done is comming
14887           through. Fixes #340060
14888
14889 2006-05-05  Andy Wingo  <wingo@pobox.com>
14890
14891         * ext/theora/theoraparse.c (gst_theora_parse_init)
14892         (theora_parse_src_convert, theora_parse_src_query):
14893         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
14894         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
14895         query functions on the source pads of the theora and vorbis parse
14896         elements. Fixes position querying when doing a remux.
14897
14898 2006-05-05  Michael Smith  <msmith@fluendo.com>
14899
14900         * ext/theora/theoraparse.c: (parse_granulepos),
14901         (theora_parse_drain_queue_prematurely),
14902         (theora_parse_queue_buffer), (theora_parse_sink_event):
14903           Fix flushing.
14904           Fix invalid granulepos outputs when starting with a non-keyframe.
14905
14906 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
14907
14908         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
14909         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
14910         Rearrange MPEG system stream detection, fixing some memleaks in the
14911         process.
14912         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
14913         they clean up their data correctly.
14914         Remove unused ogganx caps and move the 'is_annodex' check to inside
14915         the 'is_ogg' if statement.
14916
14917 2006-05-05  Wim Taymans  <wim@fluendo.com>
14918
14919         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
14920         Properly remove ghostpads. Fixes #340392
14921
14922 2006-05-04  David Schleef  <ds@schleef.org>
14923
14924         * gst/typefind/gsttypefindfunctions.c:
14925
14926 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
14927
14928         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
14929         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
14930
14931         When typefinding an MP3 in push-based mode, don't penalise the
14932         probability down to 74% when we found 5 valid frames just because we
14933         can't peek the end of the file.
14934
14935         Make the probability for detecting MPEG Transport Streams based on the
14936         number of sequential headers we successfully detected.
14937
14938 2006-05-03  Wim Taymans  <wim@fluendo.com>
14939
14940         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14941         (vorbis_dec_push), (vorbis_dec_chain):
14942         Still produce an error when we receive an empty packet.
14943
14944 2006-05-03  Wim Taymans  <wim@fluendo.com>
14945
14946         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
14947         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
14948         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
14949         Mark buffers with DISCONT after seek and after activating new
14950         chains.
14951
14952         * ext/theora/gsttheoradec.h:
14953         * ext/theora/theoradec.c: (gst_theora_dec_reset),
14954         (theora_get_query_types), (theora_dec_sink_event),
14955         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
14956         (theora_dec_change_state):
14957         Fix frame counter.
14958         Detect and mark DISCONT buffers.
14959
14960         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
14961         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
14962         (vorbis_dec_change_state):
14963         * ext/vorbis/vorbisdec.h:
14964         Use GstSegment.
14965         Detect and mark DISCONT buffers.
14966         Don't crash on 0 sized buffers.
14967
14968 2006-05-03  Wim Taymans  <wim@fluendo.com>
14969
14970         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
14971         (volume_transform_ip):
14972         Increase "volume" property to 10.0. Fixes #340369.
14973         Set the process function to NULL when capsnego fails so that
14974         we properly error out.
14975
14976 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
14977
14978         * gst/playback/gstplaybin.c: (add_sink):
14979         * gst/playback/test.c: (main):
14980         * gst/playback/test5.c: (dump_element_stats):
14981         * gst/playback/test6.c: (main):
14982           free caps using gst_caps_unref, don't leak caps-strings
14983
14984 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
14985
14986         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
14987         (plugin_init):
14988           Refine musepack typefinding a bit. Return MAXIMUM
14989           probability when we detect stream version 7 to make
14990           sure the mpeg audio typefinder doesn't trump us.
14991
14992 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
14993
14994         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
14995           Protect against unexpected NULL strf_data buffer.
14996
14997 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14998
14999         * tests/check/elements/audioconvert.c: (verify_convert),
15000         (GST_START_TEST):
15001           interpret the out[] buffer in the order the bytes are actually
15002           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
15003           Other tests should use BYTE_ORDER since the array is filled in
15004           with actual values
15005
15006 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15007
15008         * tests/check/elements/audioconvert.c: (verify_convert),
15009         (GST_START_TEST):
15010           when a test fails, give an indication of which it is
15011
15012 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15013
15014         * gst-libs/gst/cdda/gstcddabasesrc.c:
15015           compile fix; strtol() needs <stdlib.h>
15016
15017 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15018
15019         * ext/alsa/gstalsamixerelement.c:
15020         * ext/alsa/gstalsasrc.c:
15021         * ext/cdparanoia/gstcdparanoiasrc.c:
15022         * ext/gnomevfs/gstgnomevfssink.c:
15023         * ext/gnomevfs/gstgnomevfssrc.c:
15024         * ext/ogg/gstoggdemux.c:
15025         * ext/ogg/gstoggmux.c:
15026         * ext/ogg/gstoggparse.c:
15027         * ext/ogg/gstogmparse.c:
15028         * ext/pango/gstclockoverlay.c:
15029         * ext/pango/gsttextoverlay.c:
15030         * ext/pango/gsttextrender.c:
15031         * ext/pango/gsttimeoverlay.c:
15032         * ext/theora/theoradec.c:
15033         * ext/theora/theoraenc.c:
15034         * ext/vorbis/vorbisdec.c:
15035         * ext/vorbis/vorbisenc.c:
15036         * gst-libs/gst/audio/gstaudiofilter.c:
15037         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
15038         * gst/audioconvert/gstaudioconvert.c:
15039         * gst/audiorate/gstaudiorate.c:
15040         * gst/audioresample/gstaudioresample.c:
15041         * gst/audiotestsrc/gstaudiotestsrc.c:
15042         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15043         * gst/playback/gstdecodebin.c:
15044         * gst/playback/gstplaybin.c:
15045         * gst/playback/gststreamselector.c:
15046         * gst/subparse/gstsubparse.c:
15047         * gst/tcp/gstmultifdsink.c:
15048         * gst/tcp/gsttcpclientsink.c:
15049         * gst/tcp/gsttcpclientsrc.c:
15050         * gst/tcp/gsttcpserversink.c:
15051         * gst/tcp/gsttcpserversrc.c:
15052         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15053         * gst/videorate/gstvideorate.c:
15054         * gst/videoscale/gstvideoscale.c:
15055         * gst/videotestsrc/gstvideotestsrc.c:
15056         * gst/volume/gstvolume.c:
15057         * sys/v4l/gstv4ljpegsrc.c:
15058         * sys/v4l/gstv4lmjpegsink.c:
15059         * sys/v4l/gstv4lmjpegsrc.c:
15060         * sys/v4l/gstv4lsrc.c:
15061         * sys/ximage/ximagesink.c:
15062         * sys/xvimage/xvimagesink.c:
15063         * tests/check/libs/cddabasesrc.c:
15064           make GstElementDetails const
15065
15066 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15067
15068         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
15069         (gst_adder_init):
15070           send events from src-pad to all sink-pads fixes #338657
15071
15072 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15073
15074         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
15075         (alsasink_parse_spec):
15076           query width capabilities from alsa, fixes #338919
15077
15078 2006-04-28  Wim Taymans  <wim@fluendo.com>
15079
15080         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
15081         (gst_multi_fd_sink_remove_client_link):
15082         * gst/tcp/gstmultifdsink.h:
15083         Fix race condition in multifdsink that can lead to spurious 
15084         duplicate clients. this patch adds a new signal that is fired when
15085         multifdsink has removed all references to the fd.
15086         Fixes #339574.
15087         Updated documentation.
15088         API: client-fd-removed signal added
15089
15090 2006-04-28  Michael Smith  <msmith@fluendo.com>
15091
15092         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
15093           When asking g_value_array_new to prealloc elements, we may as well
15094           ask for the right number of elements.
15095
15096 2006-04-28  Wim Taymans  <wim@fluendo.com>
15097
15098         * gst-libs/gst/audio/gstbaseaudiosink.c:
15099         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
15100         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15101         patch to make timestamp checking more tollerant to rounding 
15102         errors given that real discontinuities are to be marked on
15103         buffers. Fixes some asf files and #338778.
15104         Also avoid some crashers when we receive an event in the 
15105         NULL state.
15106
15107 2006-04-28  Michael Smith  <msmith@fluendo.com>
15108
15109         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
15110         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
15111         (gst_gnome_vfs_src_get_property),
15112         (gst_gnome_vfs_src_send_additional_headers_callback),
15113         (gst_gnome_vfs_src_received_headers_callback),
15114         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
15115         (gst_gnome_vfs_src_stop):
15116         * ext/gnomevfs/gstgnomevfssrc.h:
15117           Remove ICY handling (mostly) from gnomevfssrc, in favour of
15118           proper shared support within icydemux.
15119
15120 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15121
15122         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
15123         (gst_video_rate_swap_prev), (gst_video_rate_chain):
15124           fix up docs
15125           fix a leak when no caps negotiated
15126           fix counting of input frames
15127         * tests/check/elements/.cvsignore:
15128         * tests/check/elements/videorate.c: (assert_videorate_stats),
15129         (GST_START_TEST), (videorate_suite):
15130           add tests for these
15131
15132 2006-04-28  Wim Taymans  <wim@fluendo.com>
15133
15134         * gst-libs/gst/audio/gstringbuffer.c:
15135         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
15136         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
15137         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
15138         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
15139         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
15140         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
15141         (gst_ring_buffer_commit), (gst_ring_buffer_read),
15142         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
15143         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
15144         Check arguments passed to public functions instead of
15145         crashing.
15146
15147 2006-04-28  Wim Taymans  <wim@fluendo.com>
15148
15149         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
15150         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
15151         GstBaseAudioSrc must be live or it does not work.
15152
15153         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
15154         Don't set live to TRUE as this is the default in the parentclass.
15155
15156 2006-04-28  Wim Taymans  <wim@fluendo.com>
15157
15158         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
15159         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
15160         Videoscale doesn't pass on pixel-aspect ratio. Handle all
15161         fixation cases better. Fixes #338991
15162
15163 2006-04-28  Wim Taymans  <wim@fluendo.com>
15164
15165         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
15166         Handle 0/1 framerate correctly Fixes #331901.
15167
15168 2006-04-28  Wim Taymans  <wim@fluendo.com>
15169
15170         * tests/check/elements/audioconvert.c: (get_float_caps),
15171         (GST_START_TEST), (audioconvert_suite):
15172         Added check for correct clipping when doing float samples
15173         in audioconvert.
15174
15175 2006-04-28  Wim Taymans  <wim@fluendo.com>
15176
15177         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
15178         (gst_video_rate_chain):
15179         Print more debugging info.
15180
15181 2006-04-28  Wim Taymans  <wim@fluendo.com>
15182
15183         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
15184         (resample_set_state_from_caps):
15185         Add support for other formats audioresample can handle such as
15186         32 bits in and float and 64 bits float. Fixes #301759
15187
15188 2006-04-28  Wim Taymans  <wim@fluendo.com>
15189
15190         * gst/audioconvert/audioconvert.c: (float):
15191         correctly clip float samples > 1.0. Fixes #338718
15192
15193 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
15194
15195         Patch by: Young-Ho Cha  <ganadist at chollian net>
15196
15197         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
15198         (gst_text_overlay_render_text):
15199           Don't strip newlines from the text. Also, center lines
15200           within multi-line paragraphs (#339405).
15201
15202 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
15203
15204         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
15205           Fix wavpack typefinding to work in more cases (don't peek
15206           for chunks of multiple hundred kBs at once, but process
15207           things step-by-step in smaller units). Fixes #339786.
15208
15209 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15210
15211         * configure.ac:
15212           back to HEAD
15213
15214 === release 0.10.6 ===
15215
15216 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
15217
15218         * configure.ac:
15219           releasing 0.10.6, "Chao"
15220
15221 2006-04-26  David Schleef  <ds@schleef.org>
15222
15223         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
15224           Fixes #338897.
15225
15226 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15227
15228         * configure.ac:
15229         * win32/common/config.h:
15230           new prerelease
15231
15232 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15233
15234         patch by: Wim Taymans
15235
15236         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
15237         (gst_ogg_demux_perform_seek):
15238           make sure correct newsegments are sent, so that the decoder
15239           and the demuxer agree on timestamps.  Fixes playback of a lot
15240           of Ogg files that do not start from 0.  Fixes #339833.
15241
15242 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15243
15244         Patch by: Edward Hervey  <edward@fluendo.com>
15245
15246         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
15247         * tests/check/Makefile.am:
15248         * tests/check/elements/videorate.c: (assert_videorate_stats),
15249         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
15250         (videorate_suite), (main):
15251           Fix an infinite loop if frames are passed in with wrongly ordered
15252           timestamps.  Fixes #339013.
15253
15254 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15255
15256         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
15257
15258         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
15259           fix typefinding on some ISO files.  Fixes #339212.
15260
15261 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15262
15263         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
15264
15265         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15266           add another H264 fourcc.  Fixes #339047.
15267
15268 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15269
15270         Patch by: Jan Schmidt
15271
15272         * gst/playback/gststreamselector.c:
15273         (gst_stream_selector_bufferalloc):
15274           Restore old StreamSelector behaviour.
15275           Fixes #338419.
15276
15277 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15278
15279         * configure.ac:
15280         * win32/common/config.h:
15281           prerelease
15282
15283 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
15284
15285         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
15286
15287         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15288         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
15289           Fix some memory leaks: on finalize, free buffers left in the queue
15290           before destroying the queue; in _push(), unref rtp_buf even if
15291           the process vfunc returned a NULL buffer as output buffer (#337548);
15292           demote some recuring debug messages to LOG level.
15293
15294 2006-04-11  Wim Taymans  <wim@fluendo.com>
15295
15296         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15297         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15298         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
15299         (gst_ogg_demux_loop):
15300         More cleanups.
15301         Respect segment stop when emiting EOS or SEGMENT_DONE.
15302         Fixes (#337945).
15303
15304 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
15305
15306         * gst/playback/gststreamselector.c:
15307         (gst_stream_selector_get_property):
15308           Don't leak pad name.
15309
15310 2006-04-10  Michael Smith  <msmith@fluendo.com>
15311
15312         * tests/check/Makefile.am:
15313         * tests/check/gst-plugins-base.supp:
15314           Suppress an old libtheora bug (fixed in more recent versions), so 
15315           that FC4 buildslaves can pass.
15316
15317 2006-04-10  Wim Taymans  <wim@fluendo.com>
15318
15319         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15320         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
15321         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
15322         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
15323         (gst_ogg_demux_loop):
15324         Don't leak events.
15325         Remember what error we got when finding chains, if we
15326         were shutdown, that would not be an error.
15327
15328 2006-04-10  Wim Taymans  <wim@fluendo.com>
15329
15330         * gst-libs/gst/audio/gstbaseaudiosink.c:
15331         (gst_base_audio_sink_event):
15332         Starting the ringbuffer when we did not acquire it can cause
15333         a deadlock, is pointless and causes nasty things for
15334         subclasses. 
15335         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
15336
15337 2006-04-10  Wim Taymans  <wim@fluendo.com>
15338
15339         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15340         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
15341         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15342         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15343         (gst_ogg_demux_deactivate_current_chain),
15344         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
15345         (gst_ogg_demux_bisect_forward_serialno),
15346         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
15347         Add some more debugging.
15348
15349 2006-04-10  Wim Taymans  <wim@fluendo.com>
15350
15351         * ext/theora/theoradec.c: (theora_dec_src_event),
15352         (theora_handle_data_packet):
15353         Some more debug info.
15354
15355         * tests/examples/seek/seek.c: (start_seek), (main):
15356         Print element messages too.
15357
15358 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
15359
15360         * gst/audioresample/debug.h:
15361           replace debug macros with variable number of parameters
15362           by a simple alias to gstreamer standard debug macros 
15363          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
15364           supported by MSVC 6.0 and 7.1)
15365         * gst/audioresample/resample.h:
15366           define M_PI and rint for WIN32
15367         * win32/common/libgstaudio.def:
15368         * win32/common/libgstriff.def:
15369         * win32/common/libgsttag.def:
15370         * win32/common/libgstvideo.def:
15371           add new exported functions
15372         * win32/vs6:
15373           update project files
15374
15375 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15376
15377         * ext/alsa/gstalsamixeroptions.c:
15378         (gst_alsa_mixer_options_class_init):
15379         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
15380         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
15381         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
15382         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
15383         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
15384         * gst-libs/gst/audio/gstaudiofilter.c:
15385         (gst_audio_filter_class_init):
15386         * gst-libs/gst/audio/gstaudiosink.c:
15387         (gst_audioringbuffer_class_init):
15388         * gst-libs/gst/audio/gstaudiosrc.c:
15389         (gst_audioringbuffer_class_init):
15390         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
15391         * gst-libs/gst/interfaces/colorbalancechannel.c:
15392         (gst_color_balance_channel_class_init):
15393         * gst-libs/gst/interfaces/mixeroptions.c:
15394         (gst_mixer_options_class_init):
15395         * gst-libs/gst/interfaces/mixertrack.c:
15396         (gst_mixer_track_class_init):
15397         * gst-libs/gst/interfaces/tunerchannel.c:
15398         (gst_tuner_channel_class_init):
15399         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
15400         * gst-libs/gst/netbuffer/gstnetbuffer.c:
15401         (gst_netbuffer_class_init):
15402         * gst-libs/gst/rtp/gstbasertppayload.c:
15403         (gst_basertppayload_class_init):
15404         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15405         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
15406         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15407         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
15408         * gst/playback/gststreamselector.c:
15409         (gst_stream_selector_class_init):
15410         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
15411         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
15412         * sys/v4l/gstv4lcolorbalance.c:
15413         (gst_v4l_color_balance_channel_class_init):
15414         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
15415         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
15416         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
15417         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
15418         (gst_v4l_tuner_norm_class_init):
15419         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
15420         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
15421         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
15422         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
15423
15424 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15425
15426         * ext/pango/gsttextrender.h:
15427         * gst-libs/gst/audio/gstaudiosink.h:
15428         * gst-libs/gst/audio/gstaudiosrc.h:
15429         * gst-libs/gst/audio/gstbaseaudiosink.h:
15430         * gst-libs/gst/audio/gstbaseaudiosrc.h:
15431         * gst-libs/gst/audio/gstringbuffer.h:
15432         * gst-libs/gst/rtp/gstbasertpdepayload.h:
15433         * gst-libs/gst/rtp/gstbasertppayload.h:
15434         * gst-libs/gst/video/gstvideofilter.h:
15435         * gst-libs/gst/video/gstvideosink.h:
15436         * gst/playback/gstplaybasebin.h:
15437         * gst/tcp/gstmultifdsink.h:
15438         * sys/v4l/gstv4lelement.h:
15439         Fix broken GObject macros
15440
15441 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15442
15443         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
15444         More debug to trace why my USB headset is not working with gst
15445
15446 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
15447
15448         * gst/playback/gstplaybasebin.c: (group_destroy):
15449         Clean up our group elements properly in the case where it never 
15450         got committed - it still got added unconditionally to the bin.
15451
15452 2006-04-07  Wim Taymans  <wim@fluendo.com>
15453
15454         * ext/theora/theoradec.c: (theora_dec_sink_event),
15455         (theora_handle_data_packet), (theora_dec_chain):
15456         Unref unhandled events.
15457         Protect against empty buffers.
15458         Perform QoS on running time.
15459
15460 2006-04-07  Michael Smith  <msmith@fluendo.com>
15461
15462         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
15463         (gst_vorbis_enc_chain):
15464           Remove leaks from vorbisenc.
15465           Mostly minor changes, the only significant one is that now the
15466           buffers we set as 'streamheader' on the caps are copies of the
15467           original buffers, to avoid circular refcounting problems.
15468
15469 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
15470
15471         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
15472           Don't remove our mute-probe if someone else already did so.
15473           Don't set a 2nd one if there is already one pending on the pad.
15474
15475         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
15476         (do_playbin_seek):
15477           When a seek fails, ensure that playbin is still set back to playing.
15478           
15479         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
15480         (mpeg_ts_type_find), (plugin_init):
15481           Add a typefind function for mpeg-ts streams. (Closes: #336617)
15482
15483 2006-04-06  Andy Wingo  <wingo@pobox.com>
15484
15485         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
15486         (gst_video_rate_init): Caps-related parameters should not be reset
15487         by a flush -- move their inits to the instance init function.
15488         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
15489         is not OK, just return the result.
15490
15491         * gst/audiotestsrc/gstaudiotestsrc.c
15492         (gst_audio_test_src_class_init)
15493         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
15494         broken by Stefan's commit on 24 March.
15495
15496         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
15497         buffers being pushed out. Fixes oggmux ! multifdsink.
15498
15499 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
15500
15501         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
15502         (gst_vorbis_dec_init), (vorbis_dec_finalize):
15503         * ext/vorbis/vorbisdec.h:
15504         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
15505         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
15506         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
15507         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
15508         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
15509         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
15510         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
15511         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
15512         (gst_vorbis_enc_buffer_from_packet),
15513         (gst_vorbis_enc_buffer_from_header_packet),
15514         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
15515         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
15516         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
15517         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
15518         (gst_vorbis_enc_change_state):
15519         * ext/vorbis/vorbisenc.h:
15520           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
15521           vorbisenc adhere to the official nomenclature; use boilerplate
15522           macro.
15523
15524 2006-04-04  Andy Wingo  <wingo@pobox.com>
15525
15526         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
15527         Whoops, fix bug introduced. Bad hacker!
15528         
15529         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
15530         Properly handle the case where you get EOS before any buffers are
15531         received. Use gst_buffer_make_metadata_writable where appropriate.
15532
15533         * ext/theora/theoradec.c (theora_handle_data_packet): This value
15534         is often negative -- make it signed so as not to wrap around.
15535         Fixes segfaults introduced on 9 March.
15536
15537 2006-04-03  Wim Taymans  <wim@fluendo.com>
15538
15539         * ext/theora/gsttheoradec.h:
15540         * ext/theora/theoradec.c: (theora_dec_src_event):
15541         Don't try to store a gdouble in a gboolean.
15542         Small cleanups.
15543
15544 2006-04-03  Michael Smith  <msmith@fluendo.com>
15545
15546         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
15547           Oggmux sucks.
15548           Make it suck slightly less by writing out the final page.
15549           Still can't encode a vorbis-in-ogg file correctly, though.
15550
15551 2006-04-03  Andy Wingo  <wingo@pobox.com>
15552
15553         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
15554         a g_print.
15555
15556         * ext/theora/theora.c (plugin_init): Register theoraparse.
15557
15558         * ext/theora/gsttheoraparse.h: 
15559         * ext/theora/theoraparse.c: New files implementing a theora
15560         parser. Now we can properly remux ogg/theora+vorbis, yay.
15561
15562         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
15563
15564 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15565
15566         * gst/audiotestsrc/gstaudiotestsrc.c:
15567           Fixed the sample pipeline (see #323798)
15568
15569 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15570
15571         * configure.ac:
15572         * win32/common/config.h:
15573         * win32/common/config.h.in:
15574           use AS_VERSION and AS_NANO
15575           more cleanups
15576
15577 2006-03-31  Andy Wingo  <wingo@pobox.com>
15578
15579         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
15580         uninitialized variable return that would happen.
15581         
15582         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
15583         uninitialized variable return that would never happen.
15584
15585         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
15586         (vorbis_parse_sink_event): Add an event function to flush our
15587         state on a seek, and to drain buffers on a premature EOS.
15588         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
15589         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
15590         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
15591         (vorbis_parse_drain_queue): Queue up buffers until we can set
15592         their timestamps and granulepos values.
15593
15594         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
15595         and keep track of data needed for deriving granulepos and
15596         timestamps for buffers.
15597
15598 2006-03-29  Wim Taymans  <wim@fluendo.com>
15599
15600         Patch by: j^ <j at bootlab dot org>
15601
15602         * ext/alsa/gstalsamixerelement.c:
15603         (gst_alsa_mixer_element_class_init):
15604         * ext/alsa/gstalsasink.c:
15605         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
15606         * ext/ogg/gstoggdemux.c:
15607         * ext/ogg/gstoggmux.c:
15608         * ext/ogg/gstoggparse.c:
15609         * ext/pango/gstclockoverlay.c:
15610         * ext/pango/gsttextoverlay.c:
15611         * ext/pango/gsttextrender.c:
15612         * ext/pango/gsttimeoverlay.c:
15613         * ext/theora/theoradec.c:
15614         * ext/theora/theoraenc.c:
15615         * ext/vorbis/vorbisdec.c:
15616         * ext/vorbis/vorbisenc.c:
15617         * gst/audioconvert/gstaudioconvert.c:
15618         * gst/subparse/gstsubparse.c:
15619         * gst/tcp/gstmultifdsink.c:
15620         * gst/tcp/gsttcpclientsink.c:
15621         * gst/tcp/gsttcpclientsrc.c:
15622         * gst/tcp/gsttcpserversink.c:
15623         * gst/tcp/gsttcpserversrc.c:
15624           better/unified long descriptions
15625           Fixes #336477
15626
15627 2006-03-29  Wim Taymans  <wim@fluendo.com>
15628
15629         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
15630         (stop_seek):
15631         Don't let double and triple clicks mess up our state.
15632
15633 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
15634
15635         * gst/playback/gstplaybin.c: (gen_video_element),
15636         (gen_text_element), (gen_audio_element), (gen_vis_element):
15637           Error out gracefully when we can't create any of the usual
15638           conversion elements for some reason. Also, don't try to
15639           create an audioscale (sic) element that's not used anyway.
15640
15641 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
15642
15643         * gst/playback/gstplaybasebin.c: (setup_source):
15644           Don't post RESOURCE_NOT_FOUND error when we can't find a source
15645           element for a particular protocol, that's confusing for users.
15646           Instead, post a RESOURCE_FAILED error, so that our own error
15647           message is actually shown in totem etc. (#336303).
15648
15649 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
15650
15651         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
15652
15653         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
15654         (gst_gnome_vfs_src_get_icy_metadata):
15655           Fix some minor memory leaks (#336194).
15656
15657 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
15658
15659         * ext/gnomevfs/gstgnomevfs.c:
15660         (gst_gnome_vfs_location_to_uri_string):
15661         * ext/gnomevfs/gstgnomevfs.h:
15662         * ext/gnomevfs/gstgnomevfssink.c:
15663         (gst_gnome_vfs_sink_set_property):
15664         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
15665           Make gnomevfssink accept filenames as well as URIs for the
15666           "location" property, just like gnomevfssrc does (and
15667           filesrc/filesink do) (#336190).
15668
15669 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
15670
15671         * tests/check/generic/clock-selection.c: (GST_START_TEST):
15672           set to NULL before unreffing, fixes a valgrind leak.
15673           Why was this not triggering the error that an object needs to
15674           be NULL before unreffing ?
15675         * win32/common/config.h:
15676           update
15677
15678 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
15679
15680         * gst/subparse/gstsubparse.c: (convert_encoding),
15681         (gst_sub_parse_change_state):
15682         * gst/subparse/gstsubparse.h:
15683           Text subtitle files may or may not be UTF-8. If it's not, we
15684           don't really want to see '?' characters in place of non-ASCII
15685           characters like accented characters. So let's assume the input
15686           is UTF-8 until we come across text that is clearly not. If it's
15687           not UTF-8, we don't really know what it is, so try the following:
15688           (a) see whether the GST_SUBTITLE_ENCODING environment variable
15689           is set; if not, check (b) if the current locale encoding is
15690           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
15691           the current locale encoding is UTF-8 and the environment variable
15692           was not set to any particular encoding. Not perfect, but better
15693           than nothing (and better than before, I think) (fixes #172848).
15694
15695 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
15696
15697         * configure.ac:
15698           update core requirement to 0.10.4.1 because of async_playback
15699           vmethod on GstBaseSink
15700
15701 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15702
15703         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
15704         * gst/adder/gstadder.c: (gst_adder_init):
15705         use DEBUG_FUNCPTR for collectpads
15706
15707 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15708
15709         * docs/plugins/Makefile.am:
15710         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
15711         * docs/plugins/gst-plugins-base-plugins-sections.txt:
15712         * ext/cdparanoia/gstcdparanoiasrc.c:
15713         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
15714         (gst_gnome_vfs_sink_class_init):
15715         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
15716         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
15717         * ext/ogg/gstoggmux.c:
15718         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
15719         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
15720         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
15721         * ext/pango/gsttextoverlay.c:
15722         * ext/pango/gsttextrender.c:
15723         * ext/theora/theoradec.c:
15724         * ext/theora/theoraenc.c:
15725         * ext/vorbis/vorbisdec.c:
15726         * ext/vorbis/vorbisenc.c:
15727         * gst-libs/gst/audio/gstaudiofilter.c:
15728         (gst_audio_filter_base_init):
15729         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
15730         (gst_audio_filter_template_base_init):
15731         * gst/adder/gstadder.c: (gst_adder_get_type):
15732         * gst/adder/gstadder.h:
15733         * gst/audioconvert/gstaudioconvert.c:
15734         * gst/audiotestsrc/gstaudiotestsrc.c:
15735         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
15736         (gst_audio_test_src_create):
15737         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15738         * gst/playback/gstdecodebin.c:
15739         * gst/playback/gstplaybin.c:
15740         * gst/playback/gststreamselector.c:
15741         (gst_stream_selector_base_init):
15742         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
15743         * gst/volume/gstvolume.c:
15744         * sys/v4l/gstv4lmjpegsink.c:
15745         * sys/v4l/gstv4lmjpegsrc.c:
15746         * tests/check/libs/cddabasesrc.c:
15747         * tests/old/examples/gob/gst-identity2.gob:
15748           Add docs for adder, use GST_ELEMENT_DETAILS macro,
15749           define GstElementDetails at the top
15750
15751 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
15752
15753         * win32/common/libgstinterfaces.def:
15754         Add a lot of export functions for gst-python
15755         * win32/vs6/libgstinterfaces.dsp:
15756         Add a missing include folder in the project configuration
15757         
15758 2006-03-23  Wim Taymans  <wim@fluendo.com>
15759
15760         * gst-libs/gst/audio/gstbaseaudiosrc.c:
15761         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
15762         (gst_base_audio_src_change_state):
15763         Fix audio sources, forgot to make the ringbuffer
15764         startable...
15765
15766 2006-03-23  Wim Taymans  <wim@fluendo.com>
15767
15768         * gst-libs/gst/audio/gstbaseaudiosrc.c:
15769         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
15770         (gst_base_audio_src_change_state):
15771         unparent instead of unref the ringbuffer.
15772
15773 2006-03-23  Wim Taymans  <wim@fluendo.com>
15774
15775         * gst-libs/gst/audio/gstbaseaudiosink.c:
15776         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
15777         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
15778         Implement new async_play vmethod to start slaving and allow
15779         playback start in case of async PLAY state changes. 
15780
15781         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
15782         Enable QoS with new method in base class.
15783
15784 2006-03-23  Wim Taymans  <wim@fluendo.com>
15785
15786         Patch by: Julien MOUTTE <julien at moutte dot net>
15787
15788         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
15789         (gst_video_test_src_do_seek), (gst_video_test_src_create):
15790         Partially handle 0 framerate, only EOS after the first frame
15791         is missing.
15792
15793 2006-03-23  Wim Taymans  <wim@fluendo.com>
15794
15795         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
15796
15797         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
15798         (gst_riff_create_video_template_caps):
15799         * gst/ffmpegcolorspace/avcodec.h:
15800         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15801         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
15802         (gst_ffmpegcsp_avpicture_fill):
15803         * gst/ffmpegcolorspace/imgconvert.c:
15804         Patch for support of YVU9 AVI files (#334822)
15805
15806 2006-03-22  Edward Hervey  <edward@fluendo.com>
15807
15808         * docs/design/design-decodebin.txt:
15809         Added design document for new decodebin
15810         (Target Caps): text/x-pango-markup is also a default target caps.
15811
15812 2006-03-22  Wim Taymans  <wim@fluendo.com>
15813
15814         * gst-libs/gst/audio/gstbaseaudiosink.c:
15815         (gst_base_audio_sink_dispose):
15816         Since we _parent the ringbuffer, we also need to
15817         _unparent instead of a plain _unref.
15818
15819 2006-03-22  Wim Taymans  <wim@fluendo.com>
15820
15821         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
15822         (stop_seek), (scrub_toggle_cb), (main):
15823         Add scrub checkbox.
15824
15825 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15826
15827         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
15828         (gst_ogg_parse_chain):
15829           Fix very inefficient usage of linked lists (#335365).
15830
15831 2006-03-21  Edward Hervey  <edward@fluendo.com>
15832
15833         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15834         * gst/playback/gstplaybin.c: (handoff):
15835         * gst/playback/gststreamselector.c:
15836         (gst_stream_selector_set_property):
15837         gcc 4.1 unreferenced pointer fixes.
15838         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
15839         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
15840         gst_buffer_ref() now takes a GstBuffer*.
15841
15842 2006-03-20  Julien MOUTTE  <julien@moutte.net>
15843
15844         * sys/xvimage/xvimagesink.c:
15845         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
15846         by Jan Schmidt.
15847
15848 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
15849
15850         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
15851         (id3v1_type_find), (apetag_type_find), (plugin_init):
15852           Can't do tag preferences via probability, as tags would then
15853           lose against types that are recognised with MAXIMUM probability
15854           (like .wav); so let all tag typefinders return MAXIMUM themselves
15855           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
15856           that we can prefer APE to ID3v1 (fixes #335028).
15857           
15858 2006-03-17  Wim Taymans  <wim@fluendo.com>
15859
15860         * gst-libs/gst/audio/gstbaseaudiosink.c:
15861         (gst_base_audio_sink_change_state):
15862         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
15863         (gst_ring_buffer_may_start):
15864         * gst-libs/gst/audio/gstringbuffer.h:
15865         Only start playback if we are playing.
15866         should fix #330748.
15867
15868 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
15869
15870         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15871         * win32/common/config.h:
15872           Revert accidental commits to these files.
15873
15874 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
15875
15876         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
15877
15878         * tests/Makefile.am:
15879           Don't try to build tests in tests/icles if we
15880           don't have X (#323852)
15881
15882 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
15883
15884         * gst-libs/gst/tag/gstid3tag.c:
15885           Add TXXX frame identifiers for replaygain stuff as used
15886           by some taggers (see #323721).
15887
15888 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
15889
15890         * gst/playback/gststreamselector.c:
15891         (gst_stream_selector_set_property),
15892         (gst_stream_selector_bufferalloc):
15893           Preserve the existing buggy streamselector behaviour by performing
15894           a fallback buffer allocation when downstream isn't linked yet.
15895           This should really be fixed in playbin by blocking pads until it's
15896           linked them.
15897           Also, use gst_pad_alloc_buffer instead of
15898           gst_pad_alloc_buffer_and_set.
15899
15900 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
15901
15902         * gst-libs/gst/tag/gstid3tag.c:
15903           Don't crash on unknown ID3v2 TXXX frames.
15904           
15905 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
15906
15907         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
15908           Chain up to the parent finalize method.
15909           Add 32-bit sample size to the template caps.
15910
15911         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
15912         (gst_riff_create_video_template_caps):
15913           Add the fourcc that the VMWare codec uses.
15914           
15915         * gst/playback/gststreamselector.c:
15916         (gst_stream_selector_set_property),
15917         (gst_stream_selector_bufferalloc),
15918         (gst_stream_selector_request_new_pad):
15919           For the active pad, forward buffer-alloc requests, otherwise
15920           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
15921           having to memcpy every frame when used by playbin.
15922
15923         * gst/tcp/gstmultifdsink.c:
15924         (gst_multi_fd_sink_handle_client_write):
15925           Get negotiated caps from the sink pad, rather than the sink
15926           pad's peer.
15927
15928 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
15929
15930         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
15931         
15932         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
15933           Don't forget to set src->callbacks_pushed to FALSE again when
15934           popping them, otherwise re-activation in a different mode won't
15935           work (#334620).
15936
15937 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
15938
15939         Patch by: Sebastien Moutte  <sebastien moutte net>
15940
15941         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
15942         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
15943         (gst_ffmpeg_smpfmt_to_caps):
15944           Replace __VA_ARGS__ caps creation macros with varargs functions.
15945           Makes things compile on MSVC (#320765), looks nicer, and we can
15946           tell the compiler to check for the NULL terminator.
15947
15948 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15949
15950         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
15951
15952         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15953           Make sure the buffer we copy into is really always big
15954           enough, this time for real (#333488).
15955           
15956 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15957
15958         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15959           Add support for 24bpp DIB (#305279).
15960
15961 2006-03-14  Wim Taymans  <wim@fluendo.com>
15962
15963         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
15964         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
15965         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
15966         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
15967         (gst_video_scale_init), (gst_video_scale_src_event):
15968         Re-enable QoS after the release.
15969         Rework videoscale to use the base class src_event handler.
15970
15971 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15972
15973         * configure.ac:
15974           back to CVS.
15975
15976 === release 0.10.5 ===
15977
15978 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
15979
15980         * configure.ac:
15981           releasing 0.10.5, "Net"
15982
15983 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
15984
15985         * docs/plugins/Makefile.am:
15986           Part of previous cdparanoiasrc docs fixes, forgot to commit.
15987           
15988 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
15989
15990         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
15991         * docs/plugins/gst-plugins-base-plugins-sections.txt:
15992         * docs/plugins/gst-plugins-base-plugins.hierarchy:
15993           Add cdparanoiasrc to docs.
15994
15995         * gst-libs/gst/cdda/gstcddabasesrc.c:
15996           More GstCddaBaseSrc docs.
15997
15998 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
15999
16000         * docs/libs/gst-plugins-base-libs-sections.txt:
16001         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
16002         * gst-libs/gst/tag/tag.h:
16003           API: libgsttag: new method gst_tag_from_id3_user_tag().
16004
16005 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16006
16007         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16008           NULL-terminate array of mpeg4 video file extensions.
16009           Fixes crash on PPC (#334226).
16010
16011 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16012
16013         * ext/gnomevfs/gstgnomevfssrc.c:
16014         (gst_gnome_vfs_src_check_get_range):
16015           gnome_vfs_uri_is_local() alone is not a good indicator
16016           whether we can operate in pull-mode with a specific URI,
16017           as it returns FALSE for file:// URIs that point to an
16018           NFS-mounted path. Be more conservative here: whitelist
16019           local files, blacklist http URIs and use the old
16020           mechanism for anything else (fixes #334216).
16021
16022 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
16023
16024         * configure.ac:
16025           back to trunk
16026
16027 === release 0.10.4 ===
16028
16029 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
16030
16031         * configure.ac:
16032           releasing 0.10.4, "Power"
16033
16034 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
16035
16036         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16037         Disable max-lateness by setting it to -1 for now, so that 
16038         we can bed QoS stuff in thoroughly between now and the next
16039         release.
16040
16041 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
16042
16043         Patch by: Fabrizio Gennari
16044
16045         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16046           Make sure we don't read beyond the palette buffer in case of
16047           broken or manipulated files (#333488)
16048
16049 2006-03-10  Edward Hervey  <edward@fluendo.com>
16050
16051         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16052         Fix for variable not initialized.
16053
16054 2006-03-09  Wim Taymans  <wim@fluendo.com>
16055
16056         * ext/libvisual/visual.c: (gst_visual_get_type),
16057         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
16058         (gst_visual_chain):
16059         Small cleanups.
16060
16061         * ext/theora/gsttheoradec.h:
16062         * ext/theora/theoradec.c: (gst_theora_dec_init),
16063         (gst_theora_dec_reset), (_theora_granule_time),
16064         (theora_dec_src_convert), (theora_dec_sink_convert),
16065         (theora_dec_src_query), (theora_dec_src_event),
16066         (theora_dec_sink_event), (theora_handle_comment_packet),
16067         (theora_handle_header_packet), (theora_dec_push),
16068         (theora_handle_data_packet), (theora_dec_chain),
16069         (theora_dec_change_state):
16070         Add simple QoS.
16071
16072 2006-03-09  Wim Taymans  <wim@fluendo.com>
16073
16074         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
16075         (audiocast_register_listener), (gst_gnome_vfs_src_start):
16076         Some cleanups.
16077
16078 2006-03-09  Wim Taymans  <wim@fluendo.com>
16079
16080         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
16081         Don't try to activate NULL chains.
16082
16083 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16084
16085         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16086           Fix invalid memory access to region before peek'd data (#332964).
16087
16088 2006-03-09  Wim Taymans  <wim@fluendo.com>
16089
16090         Patch by: Christophe Fergeau
16091
16092         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
16093         * ext/pango/gsttextrender.c: (gst_text_render_init):
16094         * gst/adder/gstadder.c: (gst_adder_init):
16095         Don't leak padtemplates, closes #333510.
16096
16097 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16098
16099         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
16100           Fix invalid memory access: make sure string passed to
16101           regexec() is NUL-termianted.
16102
16103 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16104
16105         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
16106         (mp3_type_find):
16107           Refactor mpeg/audio typefinding to make it more maintainable
16108           and easier to fine-tune. Make probing into middle of the file
16109           work properly (fixes #333900, also see #152688).
16110
16111 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16112
16113         * gst/typefind/gsttypefindfunctions.c:
16114         (utf8_type_find_have_valid_utf8_at_offset):
16115           Remove part from previous commit that was bogus:
16116           g_utf8_validate() does in fact not accept embedded
16117           zeroes, so we don't need to check for those (thanks
16118           to Mike for the hint).
16119
16120 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16121
16122         * gst/typefind/gsttypefindfunctions.c:
16123         (utf8_type_find_count_embedded_zeroes),
16124         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
16125           Make plain/text typefinder more conservative: firstly, check
16126           for embedded zeroes, which are perfectly valid UTF-8 characters,
16127           but also a fairly good sign that something is not a plain text
16128           file; secondly, probe into the middle of the file if possible.
16129           If we can't probe into the middle, limit the probability value
16130           to be returned to TYPE_FIND_POSSIBLE (see #333900).
16131
16132 2006-03-08  Michael Smith  <msmith@fluendo.com>
16133
16134         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16135           Make typefind function name for mpeg4 video unique.
16136
16137 2006-03-08  Wim Taymans  <wim@fluendo.com>
16138
16139         * ext/libvisual/visual.c: (gst_visual_init),
16140         (gst_visual_clear_actors), (gst_visual_dispose),
16141         (gst_visual_reset), (gst_visual_src_setcaps),
16142         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
16143         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
16144         (gst_visual_chain), (gst_visual_change_state):
16145         Cleanups, post nice errors.
16146         Handle sink and src events.
16147         Implement simple QoS.
16148
16149         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16150         Use new basesink methods to configure max-lateness.
16151         Small doc update.
16152
16153         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16154         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
16155         Debug statement cleanups.
16156
16157         * gst/volume/gstvolume.c: (gst_volume_class_init):
16158         Simple cleanup.
16159
16160 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16161
16162         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
16163         (gst_text_overlay_init), (gst_text_overlay_set_property),
16164         (gst_text_overlay_get_property):
16165           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
16166           as string type properties, but mark them deprecated. Add
16167           'halignment' and 'valignment' properties that use enums
16168           instead of strings.
16169
16170 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16171
16172         Patch by: Fabrizio Gennari
16173
16174         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16175           Allow palettes with less than 256 colours in AVI files
16176           (#333488)
16177
16178 2006-03-07  Julien MOUTTE  <julien@moutte.net>
16179
16180         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
16181         (gst_text_overlay_video_event): Fix wrong EOS handling on text
16182         pad. We were releasing the queued text buffer when we should keep
16183         it until video pad gets EOS or discard the text buffer because it's
16184         too old. That was eating the last subtitle buffer. Add some more
16185         debug.
16186
16187 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16188
16189         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
16190         (gst_text_overlay_video_chain):
16191           Fix invalid memory access (we can't access a buffer after it's been
16192           pushed downstream without taking a reference); fix memory leak (if
16193           there's no text to render, bail out before allocating stuff).
16194
16195 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16196
16197         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
16198         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
16199         * ext/pango/gsttextoverlay.h:
16200           If input is plain text, escape it before passing it to
16201           pango_layout_set_markup().
16202
16203 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16204
16205         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
16206           Don't ignore flow return from gst_pad_push().
16207
16208 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16209
16210         Patch by: Fabrizio Gennari
16211
16212         * ext/libvisual/visual.c: (gst_visual_getcaps),
16213         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
16214         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
16215         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
16216         (gst_vorbisenc_convert_sink):
16217         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
16218         (gst_audio_duration_from_pad_buffer):
16219         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
16220         (gst_audio_filter_chain):
16221         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16222         (gst_base_rtp_depayload_setcaps):
16223         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
16224         (gst_video_get_size):
16225         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
16226           Don't leak references returned by gst_pad_get_parent()
16227           (#333663)
16228
16229 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
16230
16231         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
16232           change location param details
16233         * gst/volume/gstvolume.c: (plugin_init):
16234           correct plugin description
16235
16236 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16237
16238         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
16239         (gst_gnome_vfs_src_check_get_range):
16240           Override GstBaseSrc::check_get_range() in order to avoid opening
16241           the resource just to check whether we can operate in pull-mode or
16242           not - we can predict that pretty well from the URI alone. Should
16243           fix problems with last.fm (#331690). (Requires latest core CVS).
16244
16245 2006-03-06  Wim Taymans  <wim@fluendo.com>
16246
16247         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
16248         (gst_video_sink_class_init):
16249         Throw away frames that are later than 20 ms.
16250
16251 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16252
16253         Patch by: Fabrizio Gennari
16254
16255         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
16256           Set depth on WMA caps (#333545)
16257
16258 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16259
16260         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
16261         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
16262           put Theora BOS pages before others.  This hardcodes
16263           the Ogg/Theora I profile, but hey.
16264
16265 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16266
16267         * ext/ogg/README:
16268           updated with some examples
16269         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
16270         (granulepos_add), (theora_buffer_from_packet):
16271         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
16272         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
16273         (gst_vorbisenc_chain):
16274           implement strategy from ext/ogg/README
16275         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
16276         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
16277         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
16278         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
16279           Fix muxer so that oggz-validate is happy with all streams;
16280           except for no eos mark, and the BOS page ordering
16281         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
16282         (check_buffer_granulepos):
16283         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
16284           update tests to check for OFFSET being set as requested
16285           fixed type of granulepos, it's not a ClockTime
16286
16287 2006-03-05  Julien MOUTTE  <julien@moutte.net>
16288
16289         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
16290         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
16291         Check that the xvimage we are creating has a correct size
16292         before returning it. (#314897)
16293
16294 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
16295
16296         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16297           Give id3 and ape tag typefinders a rank slightly higher
16298           than PRIMARY to ensure they're always run before any of
16299           the other typefinders (in particular wav and mp3) (#324186).
16300
16301 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
16302
16303         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16304           Add support for '3IVD' fourcc (#333403).
16305
16306 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
16307
16308         * configure.ac:
16309           Bump requirements to GStreamer CVS for the new error enum.
16310
16311         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
16312           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
16313           space left on the device (fixes #333352).
16314
16315 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
16316
16317         * win32/vs6:
16318           add a project file for libgstvolume
16319           update the workspace
16320
16321 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16322
16323         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
16324         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
16325         (GST_START_TEST):
16326           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
16327           Set IN_CAPS on header buffers
16328
16329 2006-03-02  Wim Taymans  <wim@fluendo.com>
16330
16331         * docs/plugins/Makefile.am:
16332         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16333         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16334         Add audioresample to docs.
16335
16336         * gst/audioconvert/gstaudioconvert.c:
16337         Add revision date.
16338
16339         * gst/audioresample/gstaudioresample.c:
16340         (gst_audioresample_base_init), (gst_audioresample_class_init),
16341         (gst_audioresample_init), (gst_audioresample_dispose),
16342         (audioresample_get_unit_size), (audioresample_transform_caps),
16343         (resample_set_state_from_caps), (audioresample_transform_size),
16344         (audioresample_set_caps), (audioresample_event),
16345         (audioresample_do_output), (audioresample_transform),
16346         (audioresample_pushthrough), (gst_audioresample_set_property),
16347         (gst_audioresample_get_property), (plugin_init):
16348         * gst/audioresample/gstaudioresample.h:
16349         Added docs.
16350         Small code cleanups.
16351
16352 2006-03-02  Wim Taymans  <wim@fluendo.com>
16353
16354         * docs/plugins/Makefile.am:
16355         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16356         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16357         Added videoscale to docs.
16358
16359         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
16360         (gst_video_rate_swap_prev), (gst_video_rate_event),
16361         (gst_video_rate_chain):
16362         Fix typo in docs.
16363
16364         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
16365         (gst_video_scale_init), (gst_video_scale_prepare_size),
16366         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
16367         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
16368         * gst/videoscale/gstvideoscale.h:
16369         Added docs, examples.
16370         Some code cleanups.
16371         Post errors instead of g_warning.
16372
16373 2006-03-02  Wim Taymans  <wim@fluendo.com>
16374
16375         * docs/libs/gst-plugins-base-libs-docs.sgml:
16376         * docs/libs/gst-plugins-base-libs-sections.txt:
16377         * docs/libs/gst-plugins-base-libs.types:
16378         * docs/plugins/Makefile.am:
16379         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16380         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16381         Added some more docs to libs and plugins.
16382
16383         * gst-libs/gst/audio/gstringbuffer.c:
16384         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
16385         * gst-libs/gst/audio/gstringbuffer.h:
16386         Document ringbuffer some more.
16387
16388         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
16389         (gst_video_rate_setcaps), (gst_video_rate_reset),
16390         (gst_video_rate_init), (gst_video_rate_flush_prev),
16391         (gst_video_rate_swap_prev), (gst_video_rate_event),
16392         (gst_video_rate_chain), (gst_video_rate_change_state):
16393         * gst/videorate/gstvideorate.h:
16394         Fix videorate to use segments.
16395         Make it work with 0/1 framerates (closes #331903)
16396         Handle EOS correctly.
16397         Added docs.
16398
16399 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
16400
16401         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
16402         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
16403         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
16404           In state change function, first chain up to parent class,
16405           then handle downwards state change stuff. Remove some
16406           commented out cruft from 0.8 code.
16407
16408 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
16409
16410         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
16411         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
16412         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
16413         (gst_ogm_parse_chain):
16414           Don't remove/re-add source pad if the new caps are the same as
16415           the old caps anyway (#333042). When removing source pad, don't
16416           unref it afterwards - we didn't ref it when adding. Sprinkle some
16417           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
16418           after using gst_pad_get_parent(). Return downstream flow return
16419           value in chain function.
16420
16421 2006-03-02  Wim Taymans  <wim@fluendo.com>
16422
16423         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16424         * docs/plugins/gst-plugins-base-plugins.args:
16425         * docs/plugins/gst-plugins-base-plugins.hierarchy:
16426         * docs/plugins/gst-plugins-base-plugins.interfaces:
16427         * docs/plugins/gst-plugins-base-plugins.signals:
16428         Fix hierarchy, added some more elements to the docs.
16429
16430         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16431         (gst_ffmpegcsp_get_type):
16432         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
16433         Fix docs for ffmpegcolorspace.
16434
16435 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
16436
16437         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
16438         (apetag_type_find), (ape_type_find), (plugin_init):
16439           Some typefinding fine-tuning:
16440           - rank ID3/APE tags in order of preference via probabilities, so that
16441             ID3v2 > APEv2 > APEv1 > ID3v1.
16442           - three or four bytes don't really justify MAXIMUM probability,
16443             change those to 'very likely' (musepack and monkeysaudio).
16444
16445 2006-03-01  Wim Taymans  <wim@fluendo.com>
16446
16447         * docs/plugins/Makefile.am:
16448         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16449         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16450         * ext/alsa/gstalsamixer.c:
16451         * ext/alsa/gstalsamixer.h:
16452         * ext/alsa/gstalsamixerelement.c:
16453         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
16454         * ext/alsa/gstalsamixerelement.h:
16455         * ext/alsa/gstalsasink.c:
16456         * ext/alsa/gstalsasink.h:
16457         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
16458         (gst_alsasrc_init):
16459         * ext/alsa/gstalsasrc.h:
16460         Added alsa docs.
16461         Small code cleanups.
16462
16463 2006-03-01  Wim Taymans  <wim@fluendo.com>
16464
16465         * ext/theora/Makefile.am:
16466         Dist new header too,
16467
16468 2006-03-01  Wim Taymans  <wim@fluendo.com>
16469
16470         * docs/plugins/Makefile.am:
16471         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16472         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16473         * ext/gnomevfs/gstgnomevfssink.h:
16474         * ext/gnomevfs/gstgnomevfssrc.h:
16475         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16476         * ext/vorbis/vorbisdec.h:
16477         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
16478         * ext/vorbis/vorbisenc.h:
16479         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
16480         (vorbis_parse_chain), (vorbis_parse_change_state):
16481         * ext/vorbis/vorbisparse.h:
16482         * gst/audioconvert/gstaudioconvert.h:
16483         * gst/tcp/gsttcpserversink.h:
16484         * gst/videotestsrc/gstvideotestsrc.c:
16485         * gst/videotestsrc/gstvideotestsrc.h:
16486         * gst/volume/gstvolume.c:
16487         * gst/volume/gstvolume.h:
16488         Fix some more docs.
16489         Added docs for vorbisdec and vorbisparse.
16490         Fix vorbisparse.
16491
16492 2006-03-01  Wim Taymans  <wim@fluendo.com>
16493
16494         * docs/plugins/Makefile.am:
16495         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16496         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16497         * ext/pango/gstclockoverlay.h:
16498         * ext/pango/gsttextoverlay.h:
16499         * ext/pango/gsttextrender.h:
16500         * ext/pango/gsttimeoverlay.h:
16501         * ext/theora/gsttheoradec.h:
16502         * ext/theora/gsttheoraenc.h:
16503         * ext/theora/theoradec.c:
16504         * ext/theora/theoraenc.c:
16505         * gst/audioconvert/gstaudioconvert.h:
16506         * gst/audiotestsrc/gstaudiotestsrc.h:
16507         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
16508         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
16509         * gst/tcp/gstmultifdsink.h:
16510         Updated/added documentation.
16511
16512         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
16513         (gst_text_overlay_halign_get_type),
16514         (gst_text_overlay_wrap_mode_get_type),
16515         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
16516         (gst_text_overlay_init), (gst_text_overlay_set_property),
16517         (gst_text_overlay_get_property):
16518         Fix up properties to be enums instead of string to make bindings,
16519         introspection and automatic GUI creation possible.
16520         Add getters for the properties.
16521
16522 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
16523
16524         * gst/audiotestsrc/gstaudiotestsrc.c:
16525           added defines of M_PI and M_PI_2
16526         * gst/ffmpegcolorspace/avcodec.h:
16527           removed #include "stdint.h" for win32 as _stdint.h is 
16528           autogenerated to win32/common
16529         * win32/common/libgstaudio.def:
16530         * win32/common/libgsttag.def:
16531           added some exports
16532         * win32/vs6:
16533           some project files bugs corrected
16534         * win32/vs7:
16535           project files are reset to the default vs7 configuration 
16536           (they link to msvcr71.dll using default optimizations)
16537           
16538 2006-02-28  Wim Taymans  <wim@fluendo.com>
16539
16540         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
16541         Fix some docs.
16542
16543 2006-02-28  Edward Hervey  <edward@fluendo.com>
16544
16545         * ext/alsa/gstalsasrc.c:
16546         Set proper class on the ElementDetails:
16547         Source/Audio instead of Src/Audio/
16548
16549 2006-02-28  Edward Hervey  <edward@fluendo.com>
16550
16551         * gst/videoscale/vs_scanline.c:
16552         (vs_scanline_resample_nearest_RGBA):
16553         Revert optimization in videoscale. It should go in liboil and have
16554         an appropriate liboil function.
16555
16556 2006-02-28  Wim Taymans  <wim@fluendo.com>
16557
16558         * gst-libs/gst/audio/gstbaseaudiosink.c:
16559         (gst_base_audio_sink_provide_clock):
16560         Don't try to provide a clock in the NULL state.
16561
16562 2006-02-28  Wim Taymans  <wim@fluendo.com>
16563
16564         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
16565         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
16566         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16567         (gst_ogg_demux_deactivate_current_chain),
16568         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
16569         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
16570         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
16571         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
16572         Use GstSegment infrastructure to remove duplicated code
16573         and handle more seek cases correctly.
16574
16575 2006-02-28  Wim Taymans  <wim@fluendo.com>
16576
16577         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16578         (gst_ffmpegcsp_transform):
16579         Don't ignore return code from ffmpeg convert function.
16580
16581         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
16582         Split out some long statements to ease debugging.
16583
16584 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
16585
16586         * ext/libvisual/visual.c: (gst_visual_init),
16587         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
16588         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
16589         being able to renegotiate the size. Instead, use the negotiation
16590         algorithm from the goom plugin to pick an initial output caps. 
16591
16592         Also, allow theoretical libvisual plugins that might support non-GL 
16593         output even if they also do GL.
16594
16595 2006-02-26  Julien MOUTTE  <julien@moutte.net>
16596
16597         * ext/libvisual/visual.c: (gst_visual_init),
16598         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
16599         (plugin_init): Load only non GL plugins. Fix some memleaks and 
16600         possible negotiation issues.
16601
16602 2006-02-25  Julien MOUTTE  <julien@moutte.net>
16603
16604         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
16605
16606 2006-02-24  Michael Smith  <msmith@fluendo.com>
16607
16608         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
16609         (cmml_type_find), (plugin_init):
16610           Fix CMML type find function to not require a specific minor version
16611           of the CMML header.
16612
16613           Add an MPEG4 video elementary stream typefind function.
16614
16615 2006-02-04  Michael Smith  <msmith@fluendo.com>
16616
16617         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
16618         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
16619         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16620         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
16621         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
16622         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
16623           Annodex support in ogg demuxer. Doesn't do very much without the
16624           other annodex patches (to come).
16625
16626 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16627
16628         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
16629
16630         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16631           Pick up palette for MS video v1 (#327028)
16632
16633 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16634
16635         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16636         (gst_ffmpegcsp_caps_remove_format_info),
16637         (gst_ffmpegcsp_get_unit_size):
16638           The 'palette_data' field from incoming RGB caps shouldn't be
16639           proxied on outgoing YUV caps; also, restrict unit size
16640           adjustment in case of paletted data only to the unit that
16641           actually has a palette. Fixes #330711.
16642
16643 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16644
16645         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16646         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
16647         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
16648         (gst_ffmpegcsp_get_unit_size):
16649           Plug some memory leaks.
16650
16651 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16652
16653         * sys/ximage/Makefile.am:
16654         * sys/xvimage/Makefile.am:
16655           Add some _CFLAGS and _LIBS that seem to be missing
16656           and/or required for Cygwin (see #317048).
16657
16658 2006-02-22  Wim Taymans  <wim@fluendo.com>
16659
16660         * ext/alsa/gstalsasrc.c:
16661         Fix description as pointed out by caugier.
16662
16663 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
16664
16665         Reviewed by : Edward Hervey  <edward@fluendo.com>
16666
16667         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
16668         (qt_type_find):
16669         Better 3gp typefinding (#331526).
16670
16671 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
16672
16673         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
16674           Don't send EOS event here, the base class will send one for us.
16675
16676         * gst/playback/gstplaybasebin.c: (prepare_output):
16677           Subpictures without video stream aren't allowed either.
16678         
16679         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
16680           Fix debug statement copy'n'paste-o.
16681
16682 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
16683
16684         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
16685           Fix issues with mixer keeping state when muting/unmuting
16686           and when changing the volume whilst muted (see #331763
16687           and #331765).
16688
16689 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
16690
16691         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
16692         (parse_subrip), (gst_sub_parse_format_autodetect):
16693           Set right caps given that we send escaped text. Also,
16694           honour <i></i>, <b></b> and <u></u> markers that can be found
16695           in .srt files (fixes #310202).
16696
16697 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
16698
16699         * gst-libs/gst/audio/mixerutils.c:
16700         (element_factory_rank_compare_func):
16701           Make order in which elements are tried more determinable.
16702
16703 2006-02-20  Julien MOUTTE  <julien@moutte.net>
16704
16705         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
16706         (remove_element_chain), (cleanup_decodebin),
16707         (gst_decode_bin_change_state): Make decodebin reusable by
16708         fixing remove_element_chain first and then introduce a
16709         cleaner in state change to ->NULL. (Closes #331678)
16710
16711 2006-02-19  Wim Taymans  <wim@fluendo.com>
16712
16713         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
16714         use 0666 mask when creating files so umask gets applied
16715         correctly. Fixes #331295.
16716
16717 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
16718
16719         * gst/subparse/Makefile.am:
16720         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
16721         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
16722         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
16723         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
16724         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
16725         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
16726         * gst/subparse/gstssaparse.h:
16727         * gst/subparse/gstsubparse.c: (plugin_init):
16728           Add very basic parser for SSA subtitle streams (as often
16729           found in matroska files).
16730
16731 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
16732
16733         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
16734           That should be text/x-pango-markup, not text/x-pango-layout.
16735
16736 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16737
16738         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
16739         Polishing.
16740
16741 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16742
16743         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
16744         (gst_text_overlay_finalize), (gst_text_overlay_init),
16745         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
16746         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
16747         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
16748         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
16749         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
16750         Fix state change deadlock.
16751
16752 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16753
16754         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
16755         (gst_text_overlay_finalize), (gst_text_overlay_init),
16756         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
16757         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
16758         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
16759         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
16760         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
16761         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
16762         and subtitles files.
16763
16764 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16765
16766         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
16767         should be considered as raw.
16768
16769 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16770
16771         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
16772         (cb_probe):
16773         * gst/playback/gststreaminfo.h: Introduce language informations.
16774
16775 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
16776
16777         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
16778         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
16779         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
16780         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
16781         Set shared memory segments to be deleted as soon as we have attached,
16782         that way they get cleaned up automatically if we crash.
16783
16784 2006-02-18  Julien MOUTTE  <julien@moutte.net>
16785
16786         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
16787         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
16788         functions are called with lock held.
16789
16790 2006-02-18  Julien MOUTTE  <julien@moutte.net>
16791
16792         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
16793         (gst_text_overlay_finalize), (gst_text_overlay_init),
16794         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
16795         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
16796         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
16797         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
16798         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
16799         (gst_text_overlay_change_state): Refactoring of textoverlay
16800         without collectpads. This now supports sparse subtitles coming
16801         from a demuxer instead of a sub file. Seeking is still broken 
16802         though. Need to discuss with wtay some more on how to handle
16803         seeking correctly.
16804         * ext/pango/gsttextoverlay.h:
16805         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
16806         subtitles coming from the demuxer.
16807
16808 2006-02-17  Wim Taymans  <wim@fluendo.com>
16809
16810         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
16811         (gst_vorbisenc_convert_sink):
16812         Use some more scaling functions.
16813
16814 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
16815
16816         * ext/cdparanoia/gstcdparanoiasrc.c:
16817         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
16818         (gst_cd_paranoia_paranoia_callback),
16819         (gst_cd_paranoia_src_signal_is_being_watched),
16820         (gst_cd_paranoia_src_read_sector):
16821         * ext/cdparanoia/gstcdparanoiasrc.h:
16822           Add back 'transport-error' and 'uncorrected-error' signals and
16823           make them actually be fired when bad stuff happens (#319340).
16824
16825 2006-02-17  Wim Taymans  <wim@fluendo.com>
16826
16827         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
16828         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
16829         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
16830         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
16831         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
16832         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
16833         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
16834         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
16835         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
16836         (gst_ring_buffer_clear):
16837         Small cleanups.
16838         Added some G_LIKELY.
16839
16840 2006-02-17  Wim Taymans  <wim@fluendo.com>
16841
16842         * gst-libs/gst/audio/TODO:
16843         Update TODO
16844
16845         * gst-libs/gst/audio/gstbaseaudiosink.c:
16846         (gst_base_audio_sink_get_offset):
16847         When trying to play samples ASAP and we don't have a
16848         previous sample, try to play at position 0 instead of
16849         an invalid position.
16850
16851 2006-02-17  Wim Taymans  <wim@fluendo.com>
16852
16853         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
16854         (gst_alsasink_reset):
16855         Also release lock when we get an error in _reset();
16856         fix an error message.
16857
16858 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
16859
16860         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
16861         (gst_alsasink_init), (get_channel_free_structure),
16862         (caps_add_channel_configuration), (gst_alsasink_getcaps),
16863         (gst_alsasink_close):
16864         * ext/alsa/gstalsasink.h:
16865           Add support for more than 2 channels (#326720).
16866
16867 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
16868
16869         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
16870           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
16871           with 4 or 6 channels, assume a default channel layout to make things
16872           work (not sure there's anything else we can do in those cases).
16873
16874 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
16875
16876         * gst-libs/gst/audio/multichannel.c:
16877           Minor docs fix.
16878
16879         * gst-libs/gst/riff/Makefile.am:
16880         * gst-libs/gst/riff/riff-ids.h:
16881         * gst-libs/gst/riff/riff-media.c:
16882         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
16883           Add support for WAVEFORMATEX, eg. PCM audio with more than two
16884           channels and a channel layout map.
16885           
16886 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
16887
16888         Reviewed by Edward Hervey  <edward@fluendo.com>
16889
16890         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
16891         C-level optimization of the RGBA nearest neighbour function.
16892         Eventually this might end up in liboil with vectorized versions.
16893
16894 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
16895
16896         * gst-libs/gst/audio/multichannel.c:
16897         (gst_audio_get_channel_positions):
16898           When we have more than 2 channels, but no channel layout is
16899           specified in the caps, return some default channel layout
16900           to the caller and warn about about a possibly buggy element
16901           (could be buggy filtercaps as well of course) (#317038).
16902
16903 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
16904
16905         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
16906           Add gst-libs/gst/cdda to list of lib search paths.
16907
16908 2006-02-15  Andy Wingo  <wingo@pobox.com>
16909
16910         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
16911         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
16912         to the Lord Jesus that I do not have to touch the ogg muxer ever
16913         again.
16914
16915 2006-02-15  Edward Hervey  <edward@fluendo.com>
16916
16917         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16918         quicktime movie files can also contain 'uuid' atoms.
16919
16920 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
16921
16922         * gst/audioconvert/plugin.c: (plugin_init):
16923           Register the GstAudioChannelPosition enum type with the type
16924           system in the plugin_init function, so that it is known before
16925           any element actually makes use of multi-channel stuff. This is
16926           required for example if one wants to be able to deserialise/use
16927           a caps string with channel positions before any pipeline has
16928           been setup and started, like with gst-launch.
16929
16930 2006-02-14  Wim Taymans  <wim@fluendo.com>
16931
16932         * gst-libs/gst/audio/gstringbuffer.c:
16933         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
16934         (gst_ring_buffer_samples_done), (wait_segment),
16935         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
16936         Add some compiler G_(UN_)LIKELY help.
16937         SIGNAL the ringbuffer waiters when going to PAUSED as well to
16938         make sure they can exit their functions. Should fix #330748
16939
16940 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16941
16942         * Makefile.am:
16943         * configure.ac:
16944         * win32/MANIFEST:
16945         * win32/common/_stdint.h:
16946           Windows does not have long long; copy the generated _stdint.h
16947         * win32/common/interfaces-enumtypes.c:
16948         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
16949         (gst_mixer_track_flags_get_type),
16950         (gst_tuner_channel_flags_get_type):
16951         * win32/common/multichannel-enumtypes.c:
16952         (gst_audio_channel_position_get_type):
16953           update
16954
16955 2006-02-13  Wim Taymans  <wim@fluendo.com>
16956
16957         * gst-libs/gst/audio/gstbaseaudiosink.c:
16958         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
16959         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
16960         Always sync on first sample we receive when starting.
16961
16962 2006-02-13  Wim Taymans  <wim@fluendo.com>
16963
16964         * gst/playback/gstplaybin.c: (gen_vis_element):
16965         Update vis bin docs.
16966         Move queue after tee so we don't queue video buffers but
16967         audio samples instead. Fixes problems where the video queue
16968         is filled and the audio queue empty.
16969
16970 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
16971
16972         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
16973           No need to push an EOS event here, GstBaseSrc will do that for us
16974           when we return FLOW_UNEXPECTED.
16975           
16976 2006-02-12  Wim Taymans  <wim@fluendo.com>
16977
16978         * gst-libs/gst/audio/gstbaseaudiosink.c:
16979         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
16980         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
16981         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
16982         Use scale functions when possible.
16983         Fix error messages.
16984         Free clockid when after waiting for EOS.
16985         Use G_(UN_)LIKLY when it makes sense.
16986         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
16987
16988 2006-02-12  Edward Hervey  <edward@fluendo.com>
16989
16990         * gst/playback/gstplaybasebin.c: (prepare_output): 
16991         Remove stray semi-colon (fixes #330888).
16992
16993 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
16994
16995         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
16996         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
16997         Fix up the XShm call testing so that we catch errors, and don't
16998         cause new ones by attempting to detach from a segment we failed
16999         to attach to. Fixes #312439.
17000
17001 2006-02-10  Edward Hervey  <edward@fluendo.com>
17002
17003         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17004         Added flv file typefind (video/x-flv).
17005
17006 2006-02-10  Edward Hervey  <edward@fluendo.com>
17007
17008         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17009         (gst_riff_create_video_template_caps):
17010         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
17011         Also added the caps to the default set of riff video caps.
17012
17013 2006-02-09  Andy Wingo  <wingo@pobox.com>
17014
17015         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
17016         time and the end time of the last packet in the page.
17017         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
17018         on the pages in our queue, set the duration as well. Reflow a
17019         debug statement.
17020         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
17021         Fixes bad muxing order.
17022
17023 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17024
17025         * gst-libs/gst/rtp/gstbasertppayload.c:
17026         (gst_basertppayload_setcaps), (gst_basertppayload_push):
17027           update seqnum before setting it on the packet; this makes sure
17028           that the timestamp and seqnum properties match after pushing
17029           a buffer
17030
17031 2006-02-09  Andy Wingo  <wingo@pobox.com>
17032
17033         * gst-libs/gst/audio/gstringbuffer.c
17034         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
17035         overflow after 13.5 hours of recording. Kapow!
17036
17037         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
17038         the buffer size -- we don't care about underrun/overrun reporting
17039         right now, just need to return a useful value.
17040
17041 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
17042
17043         * configure.ac:
17044           Back to CVS
17045
17046 === release 0.10.3 ===
17047
17048 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
17049
17050         * configure.ac:
17051           releasing 0.10.3, "Under Pressure"
17052
17053 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17054
17055         * configure.ac:
17056         Drat. Bump libtool version number for new API.
17057         Prelease 0.10.2.3 (of 0.10.3)
17058
17059 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17060
17061         * configure.ac:
17062         * win32/common/config.h:
17063         0.10.2.2 prerelease (of 0.10.3).
17064
17065 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17066
17067         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
17068           Revert Andy's newsegment change pending a more correct
17069           fix.
17070
17071 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17072
17073         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17074         (qt_type_find), (plugin_init):
17075           detect more files as 3gp
17076           group and reorder the iso file formats
17077
17078 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17079
17080         * ext/vorbis/vorbis.c: (plugin_init):
17081           Register musicbrainz tags, so apps don't have to.
17082
17083 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17084
17085         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
17086         (gst_tag_to_vorbis_tag):
17087           Make sure we called gst_tag_register_musicbrainz_tags()
17088           before possibly mapping a vorbiscomment string from/to a
17089           musicbrainz tag.
17090
17091 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17092
17093         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
17094           In case we can't find the required number of consecutive
17095           mpeg audio frames to positively identify an MPEG audio
17096           stream, check if there's at least a valid mpeg audio
17097           frame right at offset 0 and if so suggest mpeg/audio
17098           caps with a very low probability (#153004).
17099
17100 2006-02-07  Andy Wingo  <wingo@pobox.com>
17101
17102         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
17103         a TIME segment if we get timestamped buffers. Requires recent
17104         fixes in core to work properly.
17105
17106 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17107
17108         * gst/playback/gstplaybasebin.c: (prepare_output):
17109           Don't print the URI as part of the error message, it
17110           makes error dialogs look rather ugly, especially if
17111           the URI is very long or has characters in it that
17112           need escaping.
17113
17114 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17115
17116         * gst/playback/gstplaybasebin.c: (prepare_output):
17117           Error out if we have only text or subtitles, but nothing
17118           else. Also error out if we have subtitles but no video
17119           stream.
17120
17121 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17122
17123         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17124           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
17125           Post an error message on the bus when we encounter an
17126           error, which will hopefully be more meaningful than the
17127           'Internal Flow Error' message users get to see if we
17128           just return GST_FLOW_ERROR.
17129
17130 2006-02-07  Andy Wingo  <wingo@pobox.com>
17131
17132         * configure.ac (GST_MAJORMINOR): Update core version req to
17133         0.10.2.2, for the collectpads API addition (#330244).
17134
17135 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
17136
17137         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
17138           Return FALSE from plugin_init() when GnomeVFS can't
17139           be initialised for some reason (#328423).
17140
17141 2006-02-06  Julien MOUTTE  <julien@moutte.net>
17142
17143         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
17144         Stick to seeking theory until i find the bug.
17145         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
17146
17147 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17148
17149         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17150         (theora_enc_finalize), (theora_enc_sink_setcaps),
17151         (theora_set_header_on_caps), (theora_enc_chain),
17152         (theora_enc_change_state):
17153         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
17154           Make theoraenc and the tests leak free. Like, really.
17155
17156 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17157
17158         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17159         (theora_enc_finalize), (theora_enc_sink_setcaps):
17160           Add a finalize method to ensure we clean up state even if
17161           someone omitted the state change back to NULL.
17162
17163         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
17164         (gst_vorbisenc_chain):
17165           Free some more leaked bits.
17166
17167         * tests/check/pipelines/theoraenc.c: (start_pipeline),
17168         (stop_pipeline):
17169           Wait for state changes to happen if they're ASYNC.
17170
17171           This ought to teach those fancy pants buildbots a lesson.
17172
17173 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17174
17175         * gst-libs/gst/tag/gstid3tag.c:
17176           Add mapping for ID3 International Standard Recording Code
17177           tag "TSRC"
17178
17179 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17180
17181         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
17182           Don't leak tag names.
17183
17184 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17185
17186         * docs/libs/gst-plugins-base-libs-docs.sgml:
17187         * docs/libs/gst-plugins-base-libs-sections.txt:
17188         * gst-libs/gst/tag/gstid3tag.c:
17189         * gst-libs/gst/tag/gstvorbistag.c:
17190         * gst-libs/gst/tag/tags.c:
17191           Split libgsttag docs into multiple sections.
17192
17193 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17194
17195         * docs/libs/Makefile.am:
17196         * docs/libs/gst-plugins-base-libs-docs.sgml:
17197         * docs/libs/gst-plugins-base-libs-sections.txt:
17198         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
17199         * gst-libs/gst/tag/gstvorbistag.c:
17200         * gst-libs/gst/tag/tag.h:
17201         * gst-libs/gst/tag/tags.c:
17202           Add libgsttag to the docs.
17203
17204 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17205
17206         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
17207         (gst_text_overlay_init), (gst_text_overlay_src_event),
17208         (gst_text_overlay_collected): Fix clockoverlay.
17209
17210 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17211
17212         * docs/libs/compiling.sgml:
17213           Fix typo: it's pkg-config, not pkg-gconfig
17214
17215         * docs/libs/gst-plugins-base-libs-docs.sgml:
17216         * docs/libs/gst-plugins-base-libs-sections.txt:
17217         * docs/libs/tmpl/gstgconf.sgml:
17218           There is no libgstgconf in 0.10, remove it
17219           from the docs.
17220
17221 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17222
17223         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
17224         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
17225         (gst_text_overlay_src_event), (gst_text_overlay_collected):
17226         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
17227         (gst_sub_parse_class_init), (gst_sub_parse_init),
17228         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
17229         (parse_mpsub), (parser_state_init), (handle_buffer),
17230         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
17231         * gst/subparse/gstsubparse.h: Introduce seeking code.
17232
17233 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17234
17235         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
17236           Add comment about LANGUAGE tag inconsistency (we want
17237           ISO-639-1, but extract three-letter identifiers?)
17238
17239         * po/POTFILES.in:
17240           Add two translatable files.
17241
17242 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17243
17244         * gst-libs/gst/tag/Makefile.am:
17245         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
17246         * gst-libs/gst/tag/tag.h:
17247         * gst-libs/gst/tag/tags.c:
17248         (gst_tag_register_musicbrainz_tags_internal),
17249         (gst_tag_register_musicbrainz_tags):
17250           Forward-port some tags stuff from the 0.8 branch. This is
17251           mostly the addition of musicbrainz tags and their mapping
17252           to vorbistags, and a vorbistag mapping of the language tag.
17253
17254 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17255
17256         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
17257         refactoring.
17258
17259 2006-02-04  David Schleef  <ds@schleef.org>
17260
17261         * ext/ogg/gstoggmux.c:
17262         * gst/typefind/gsttypefindfunctions.c:
17263           Add Dirac typefinding and add dirac format to oggmux.
17264
17265 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
17266
17267         * gst/playback/gstdecodebin.c: (try_to_link_1):
17268           Don't put essential function call into
17269           g_return_*() macro, otherwise it'll all be
17270           replaced by NOOPs when compiling with
17271           G_DISABLE_CHECKS defined.
17272
17273 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
17274
17275         * ext/ogg/gstoggdemux.c:
17276         * ext/ogg/gstoggparse.c:
17277         * gst/tcp/gsttcpserversink.c:
17278         * sys/v4l/v4lsrc_calls.c:
17279         * sys/v4l/v4lsrc_calls.h:
17280         Just make it compile with --disable-gst-debug.
17281
17282 2006-02-03  Wim Taymans  <wim@fluendo.com>
17283
17284         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
17285         (gst_alsasink_class_init), (gst_alsasink_init),
17286         (gst_alsasink_write), (gst_alsasink_reset):
17287         * ext/alsa/gstalsasink.h:
17288         Add lock to protect alsa calls.
17289         Implement reset to flush samples ASAP, does not work
17290         with dmix though.
17291
17292 2006-02-02  Wim Taymans  <wim@fluendo.com>
17293
17294         * gst-libs/gst/audio/gstbaseaudiosink.c:
17295         (gst_base_audio_sink_provide_clock):
17296         Ugh.. getting late I guess...
17297
17298 2006-02-02  Wim Taymans  <wim@fluendo.com>
17299
17300         * gst-libs/gst/audio/gstbaseaudiosink.c:
17301         (gst_base_audio_sink_provide_clock),
17302         (gst_base_audio_sink_set_property),
17303         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
17304         Don't try to provide a clock when we are not negotiated since
17305         we might not be able to make it run.
17306
17307 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
17308
17309         * gst/playback/gstdecodebin.c: (try_to_link_1):
17310           Unlinking two source pads is ... hard.
17311
17312 2006-02-02  Wim Taymans  <wim@fluendo.com>
17313
17314         * gst-libs/gst/audio/TODO:
17315         Updated.
17316
17317         * gst-libs/gst/audio/gstbaseaudiosink.c:
17318         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
17319         On EOS, wait till the last sample is played before posting EOS.
17320
17321 2006-02-01  Philippe Kalaf <burger at speedy dot org>
17322
17323         Patch by: Kai Vehmanen
17324         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17325           Adds ability to enable newsegment bypass by setting queue_delay to
17326           zero. Also avoid thread being started if queue_delay is zero.
17327
17328 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17329
17330         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
17331           Make test work again by connecting fakesinks to each decoded pad,
17332           which makes the pipeline wait until each fakesink has a buffer
17333           queued before going to PAUSED state. At that point we know the
17334           decodebin pads are negotiated.
17335
17336 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17337
17338         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
17339         (gst_cdda_base_src_handle_event):
17340         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
17341           Pass unhandled queries to the parent class's query function.
17342
17343 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17344
17345         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
17346         (gst_ogg_pad_src_query):
17347         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
17348         * ext/theora/theoradec.c: (theora_dec_src_query),
17349         (theora_dec_sink_query):
17350         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
17351         (vorbis_dec_sink_query):
17352         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
17353         (gst_vorbisenc_sink_query):
17354         * gst/adder/gstadder.c: (gst_adder_query):
17355           Pass unhandled queries upstream instead of just
17356           dropping them (#326447). Also, fix supported
17357           query types list for some elements.
17358
17359 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17360
17361         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
17362         (paris_type_find), (ilbc_type_find), (plugin_init):
17363           Fix typefinding for audio/x-au, audio/x-paris and
17364           audio/iLBC-sh. We cannot use the START_WITH macros
17365           here, because there can only be one typefind factory
17366           with the same name (caps), so the second one would
17367           replace the first one and the first one would never
17368           be called when doing typefinding (see #161712).
17369           
17370
17371 2006-01-31  Wim Taymans  <wim@fluendo.com>
17372
17373         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
17374         (vorbis_handle_header_packet), (vorbis_dec_push),
17375         (vorbis_handle_data_packet):
17376         Use scale_int when we can, add some more scaling.
17377         Check packettype before parsing it.
17378
17379 2006-01-31  Wim Taymans  <wim@fluendo.com>
17380
17381         * ext/theora/theoradec.c: (_theora_granule_time),
17382         (theora_dec_src_convert), (theora_dec_sink_convert):
17383         Call right _scale functions.
17384         Use parameter instead of some other random value.
17385
17386 2006-01-31  Wim Taymans  <wim@fluendo.com>
17387
17388         * ext/theora/theoradec.c: (_theora_granule_frame),
17389         (_theora_granule_time), (_inc_granulepos),
17390         (theora_dec_src_convert), (theora_dec_sink_convert),
17391         (theora_handle_type_packet), (theora_handle_data_packet),
17392         (theora_dec_chain):
17393         Use higher precision timestamps calculation.
17394         Convert some other conversions to _scale.
17395
17396 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
17397
17398         * gst/audiotestsrc/gstaudiotestsrc.c:
17399         (gst_audio_test_src_create_sine_table), (plugin_init):
17400         * gst/volume/gstvolume.c: (plugin_init):
17401           initialize gst_controller before using
17402
17403 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
17404
17405         * tests/check/pipelines/theoraenc.c:
17406         * tests/check/pipelines/vorbisenc.c:
17407         Define constant using G_GINT64_CONSTANT to avoid errors when
17408         passing it around - otherwise it gets truncated to 32 bits.
17409
17410         Fixes failing tests.
17411
17412 2006-01-31  Andy Wingo  <wingo@pobox.com>
17413
17414         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
17415         caps being set doesn't have a framerate value. Basically a stopgap
17416         measure.
17417
17418         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
17419         technically correct enough to put into core though.
17420         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
17421         DURATION. Fixes theoraenc ! oggmux.
17422
17423         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
17424         fraction, not double.
17425
17426 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
17427
17428         * win32/vs7:
17429         add vs7 project files created by Sergey Scobich
17430
17431 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
17432
17433         * win32/vs8:
17434         add vs8 project files created by Sergey Scobich
17435         
17436 2006-01-30  Andy Wingo  <wingo@pobox.com>
17437
17438         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
17439         timestamp + duration, not just timestamp -- ogg pages should be
17440         ordered by stop time. Necessary fix given the change in vorbis
17441         timestamps.
17442
17443         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
17444         (gst_theora_enc_init): Pull the granule shift out of the encoder.
17445         (granulepos_add): New function, handles the messiness of adjusting
17446         granulepos values.
17447         (theora_buffer_from_packet):
17448         (theora_enc_chain):
17449         (theora_enc_sink_event): Use granulepos_add, not +.
17450
17451         * tests/check/pipelines/theoraenc.c
17452         (check_buffer_granulepos_from_starttime): Just check the frame
17453         count, not the actual granulepos -- we can't dictate to the
17454         encoder when it should be placing keyframes.
17455
17456 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17457
17458         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
17459           SERVICE_NOT_AVAILABLE happens for example when you're trying to
17460           play an http:// stream from a server that's not serving
17461
17462 2006-01-30  Andy Wingo  <wingo@pobox.com>
17463
17464         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
17465         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
17466         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
17467         available.
17468
17469         * ext/theora/gsttheoraenc.h:
17470         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
17471         although theoraenc was timestamping correctly. Added handling of
17472         streams that start with nonzero timestamps.
17473
17474         * tests/check/Makefile.am:
17475         * tests/check/pipelines/theoraenc.c: New file, basically does same
17476         tests as vorbisenc.
17477
17478         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
17479
17480 2006-01-30  Wim Taymans  <wim@fluendo.com>
17481
17482         * gst-libs/gst/audio/gstaudiosink.c:
17483         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
17484         (gst_audioringbuffer_pause):
17485         Implement pause that does not wait for completion.
17486
17487         * gst-libs/gst/audio/gstbaseaudiosink.c:
17488         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17489         Don't drop buffers when going to PAUSED but perform preroll on
17490         remaining samples now that core base class supports this.
17491
17492         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
17493         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
17494         (gst_ring_buffer_commit):
17495         Pause should not signal waiters.
17496         Implement return value of _commit correctly.
17497
17498 2006-01-30  Andy Wingo  <wingo@pobox.com>
17499
17500         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
17501
17502         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
17503         updated to timestamp from the first sample, not the last.
17504         (gst_vorbisenc_buffer_from_header_packet): New function, takes
17505         special care of granulepos and timestamp for header packets.
17506         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
17507         when the first buffer has a nonzero timestamp.
17508
17509         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
17510         (GstVorbisEnc.subgranule_offset): New members. Take care of the
17511         case when the first audio buffer we get has a nonzero timestamp.
17512         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
17513         properly timestamp vorbis buffers with the time of the first
17514         sample, not the last.
17515         
17516         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
17517         vorbis_granule_time_copy -- now it takes the granule/subgranule
17518         offset into account.
17519
17520         * tests/check/pipelines/vorbisenc.c: New test for correctness of
17521         timestamps, durations, and granulepos on buffers produced by
17522         vorbisenc.
17523
17524 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
17525
17526         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17527         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
17528           Patch from Eric Jonas to support conversions to/from UYVY 
17529           (Fixes: #324626)
17530
17531 2006-01-30  Julien MOUTTE  <julien@moutte.net>
17532
17533         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
17534         (setup_subtitle), (setup_source), (set_active_source):
17535         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
17536         (gen_text_element), (gen_audio_element), (gen_vis_element),
17537         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
17538
17539 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
17540
17541         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
17542         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
17543                 use gst_guint64_to_gdouble to be compliant with vs6
17544         * gst/playback/gstdecodebin.c: (try_to_link_1)
17545         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
17546                 use G_GINT64_CONSTANT for int64 constants
17547         * win32/common/libgstinterfaces.def:
17548                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
17549         * win32/vs6:
17550                 update and add new project files
17551                 
17552 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17553
17554         * Makefile.am:
17555         * win32/MANIFEST:
17556         * win32/common/interfaces-enumtypes.c:
17557         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
17558         (gst_mixer_track_flags_get_type),
17559         (gst_tuner_channel_flags_get_type):
17560         * win32/common/interfaces-enumtypes.h:
17561         * win32/common/multichannel-enumtypes.c:
17562         (gst_audio_channel_position_get_type):
17563         * win32/common/multichannel-enumtypes.h:
17564           add a win32-update rule like in core, and copy over enumtypes files
17565
17566 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17567
17568         * win32/MANIFEST:
17569         * win32/common/config.h:
17570         * win32/common/config.h.in:
17571           add config files just like in core
17572
17573 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
17574
17575         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
17576           Make gcc-4.1 happy (part of #327357).
17577
17578 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
17579
17580         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
17581         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
17582         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
17583         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
17584         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
17585         (gst_alsasrc_unprepare), (gst_alsasrc_read):
17586           Update all error messages.  All of them should either use
17587           the default translated message, or actually provide a
17588           translatable string.
17589           Make the string for channel count problems meaningful.
17590
17591 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
17592
17593         * sys/v4l/v4l_calls.c: (gst_v4l_open):
17594           check for and throw RESOURCE_BUSY
17595
17596 2006-01-27  David Schleef  <ds@schleef.org>
17597
17598         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
17599           checked in this change -- it requires liboil features not
17600           in 0.3.6.  Revert parts.
17601
17602 2006-01-27  David Schleef  <ds@schleef.org>
17603
17604         * REQUIREMENTS:
17605         * configure.ac: update liboil requirement to 0.3.6
17606         * gst/videoscale/Makefile.am:
17607         * gst/videoscale/vs_scanline.c: liboilify
17608
17609 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
17610
17611         * ext/libvisual/visual.c: (get_buffer):
17612           When pad_alloc returns a GstFlowReturn other
17613           than GST_FLOW_OK, make sure it is passed upstream.
17614
17615 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
17616
17617         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
17618         (gst_alsasink_class_init):
17619           Free the device name string.
17620
17621         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
17622         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
17623         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
17624           Don't remove a pad from the collectpads structure until it
17625           is released - it's a request pad, and may receive data again
17626           if the element gets moved back to PLAYING state.
17627
17628         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
17629           Ensure we turn on double buffering on the Xv port, and
17630           set the colour key to something dark and mysterious that
17631           isn't black.
17632
17633 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17634
17635         * ext/alsa/gstalsaplugin.c: (plugin_init):
17636         * ext/cdparanoia/gstcdparanoiasrc.c:
17637         (gst_cd_paranoia_src_base_init), (plugin_init):
17638         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
17639         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
17640           - a library should not call setlocale. see "Libraries" node in
17641             gettext manual
17642           - make sure all plugins that use translation do bindtextdomain
17643             to point to the localedir
17644         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
17645         (setup_sinks), (plugin_init):
17646           all this, and check for NULL when creating sinks
17647
17648 2006-01-27  Julien MOUTTE  <julien@moutte.net>
17649
17650         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
17651         (plugin_init): Make typefinding of subtitles work again.
17652
17653 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
17654
17655         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
17656         (mp3_type_frame_length_from_header), (mp3_type_find),
17657         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
17658         (plugin_init):
17659           Backport a bunch of typefinding fixes from the 0.8 branch.
17660           Also, improve wavpack typefinding: if we can't peek the
17661           entire wavpack block, try to parse the bits we can get and
17662           see if we find what we're looking for in those.
17663
17664 2006-01-26  Julien MOUTTE  <julien@moutte.net>
17665
17666         * sys/ximage/ximagesink.c:
17667         (gst_ximagesink_calculate_pixel_aspect_ratio):
17668         * sys/xvimage/xvimagesink.c:
17669         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
17670         more cases of pixel aspect ratio.
17671
17672 2006-01-26  Edward Hervey  <edward@fluendo.com>
17673
17674         * gst/playback/gstdecodebin.c: (pad_probe):
17675         Also consider the flush-start and tag events as unblockers
17676         for the pad probes.
17677
17678 2006-01-26  Julien MOUTTE  <julien@moutte.net>
17679
17680         * gst/playback/gstplaybin.c: (gst_play_bin_init),
17681         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
17682         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
17683         On the fly visualisation switch, works disabling, enabling as
17684         well but it won't be able to enable vis in a playbin that was
17685         created with no visualisation.
17686
17687 2006-01-25  Wim Taymans  <wim@fluendo.com>
17688
17689         * gst-libs/gst/audio/gstbaseaudiosink.c:
17690         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17691         Undo previous commit that returned WRONG_STATE sooner, it breaks 
17692         resume after pause.
17693
17694 2006-01-25  Wim Taymans  <wim@fluendo.com>
17695
17696         * gst-libs/gst/audio/gstbaseaudiosink.c:
17697         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
17698         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
17699         Improve debugging.
17700         Post error when caps cannot be parsed.
17701         Resync on discontinuity in the stream.
17702         Clip samples to segment boundaries.
17703         return WRONG_STATE sooner when we are flushing.
17704
17705         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
17706         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
17707         Make audiosrc operate in TIME.
17708         Set TIMESTAMP and DURATION on buffers.
17709
17710 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
17711
17712         * tests/examples/seek/seek.c: (main):
17713           Output tag messages as well.
17714
17715 2006-01-23  Edward Hervey  <edward@fluendo.com>
17716
17717         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
17718         (free_pad_probes), (remove_fakesink), (pad_probe),
17719         (close_pad_link), (gst_decode_bin_change_state):
17720         Replace GstPadBlockCallback with pad probes that detect
17721         first buffer AND eos before removing fakesink.
17722         Fixes hang with demuxers doing EOS while pre-rolling.
17723         Solves #328279
17724
17725 2006-01-23  Andy Wingo  <wingo@pobox.com>
17726
17727         * ext/alsa/gstalsasink.c:
17728         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17729         (gst_base_rtp_depayload_setcaps),
17730         (gst_base_rtp_depayload_add_to_queue),
17731         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
17732         
17733         Patch by: Jens Granseuer <jensgr at gmx dot net>
17734
17735 2006-01-22  Julien MOUTTE  <julien@moutte.net>
17736
17737         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
17738         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
17739         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
17740         frames. We might get a frame destroyed after changing state to
17741         NULL, adding a safety check on xcontext.
17742
17743 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
17744
17745         * gst-libs/gst/interfaces/xoverlay.c:
17746           Fix prepare-xwindow-id code example in the docs - we need to
17747           ignore all messages that aren't element messages as well.
17748           
17749 2006-01-21  Julien MOUTTE  <julien@moutte.net>
17750
17751         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
17752           I think one day i'll completely undestand how caps negotiation
17753           is supposed to work. This refactoring handles buffer_alloc
17754           called with caps we can't handle. We definitely don't want a
17755           set_caps with those caps, so we define and allocate a buffer
17756           we would like to receive.
17757
17758 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
17759
17760         * gst/playback/gstplaybasebin.c: (setup_source):
17761           Free iterator when done.
17762
17763 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
17764
17765         * gst-libs/gst/audio/gstbaseaudiosink.c:
17766         (gst_base_audio_sink_render):
17767           Fix playback of non-synchronised streams by assuming a rate
17768           of 1.0 instead of a random one.
17769
17770           Makes this work again:
17771
17772           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
17773           endianness=(int)4321, signed=(boolean)true, width=(int)16,
17774           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
17775           audioresample ! alsasink
17776
17777 === release 0.10.2 ===
17778
17779 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
17780
17781         * configure.ac:
17782           releasing 0.10.2, "Then the devil is six"
17783
17784 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17785
17786         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
17787         * gst/playback/gststreamselector.c:
17788         (gst_stream_selector_set_property):
17789           Comment out broken code that connects to the state-changed signal.
17790           At this point, changing current stream selection is broken, but 
17791           stuff like gst-launch playbin current-audio=1 works and filters
17792           to the chosen stream.
17793
17794 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17795
17796         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17797           Fix #327216 (null dereference in vorbisdec)
17798
17799 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
17800
17801         * ext/theora/theoradec.c: (theora_handle_comment_packet):
17802           Post taglist actually on bus instead of just freeing it
17803           (fixes #327114 and totem bug #327080).
17804
17805         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
17806           Use gst_element_found_tags_for_pad(), so that the tags
17807           are sent downstream as an event as well.
17808
17809 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
17810
17811         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
17812         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
17813         (gst_ximagesink_buffer_alloc):
17814         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
17815         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
17816         (gst_xvimagesink_buffer_alloc):
17817           move all regularly occurring messages to GST_LOG level
17818           add some more object logs
17819
17820 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17821
17822         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
17823           fix a silly segfault
17824
17825 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
17826
17827         * docs/libs/gst-plugins-base-libs-docs.sgml:
17828         * docs/libs/gst-plugins-base-libs-sections.txt:
17829         * gst-libs/gst/audio/mixerutils.c:
17830         * gst-libs/gst/audio/mixerutils.h:
17831           Add docs for mixerutils stuff.
17832
17833 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
17834
17835         * gst/playback/gstplaybasebin.c: (setup_source):
17836           Fix playback for sources that emit raw audio or
17837           raw video streams (e.g.: cd audio sources) (#325984).
17838
17839 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17840
17841         * gst-libs/gst/audio/mixerutils.c:
17842         (gst_audio_mixer_filter_do_filter):
17843           actually save the element we create
17844
17845 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
17846
17847         * gst-libs/gst/cdda/gstcddabasesrc.c:
17848         (gst_cdda_base_src_handle_track_seek):
17849           No need to post a tag message on the bus when seeking
17850           within the same track, only post it when the current
17851           track changes.
17852
17853 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
17854
17855         * gst/playback/gstplaybasebin.c: (group_destroy),
17856         (probe_triggered), (new_decoded_pad), (mute_group_type),
17857         (set_active_source):
17858         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
17859         * gst/playback/gststreamselector.c:
17860         (gst_stream_selector_base_init),
17861         (gst_stream_selector_set_property),
17862         (gst_stream_selector_request_new_pad):
17863           Reenable stream selection. These mechanisms need a complete overhaul
17864           in the face of 0.8->0.10 changes though.
17865
17866 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
17867
17868         * ext/ogg/gstoggdemux.c:
17869           Change the pad template to src_%d to match the pads that 
17870           are created from it. decodebin needs this information in order
17871           to decide that oggdemux is capable of producing multiple pads
17872           (and hence needs queues inserted).
17873
17874         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
17875         (gst_ogg_mux_collected):
17876           Make debug output more useful by using GST_PTR_FORMAT.
17877
17878 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17879
17880         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17881
17882         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
17883           Set depth and width for alaw/mulaw (fixes #326601).
17884
17885 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17886
17887         * tests/icles/Makefile.am:
17888           don't build the tests if we don't have the libs
17889
17890 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
17891
17892         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
17893         (gst_cd_paranoia_paranoia_callback):
17894           Don't try to free NULL pointers.
17895
17896 2006-01-10  Edward Hervey  <edward@fluendo.com>
17897
17898         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
17899         (gst_audio_rate_change_state), (plugin_init):
17900         Add debugging category.
17901         Fix type issues.
17902         Add case for incoming buffers without valid offset/offset_end.
17903
17904 2006-01-10  Michael Smith  <msmith@fluendo.com>
17905
17906         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
17907           Don't leak GCond in audio sources.
17908
17909 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
17910
17911         * gst/playback/gstplaybin.c: (gen_audio_element):
17912           Don't leak an autoaudiosink/alsasink when we generate
17913           a new audio element. (old code, I guess)
17914
17915 2006-01-10  Michael Smith  <msmith@fluendo.com>
17916
17917         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
17918           Support float audio in audiorate.
17919           Use width rather than depth for selecting sample width.
17920
17921 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
17922
17923         * gst/videotestsrc/videotestsrc.h:
17924           Use GLib types here (that way we don't have to include the
17925           generated _stdint.h header, which makes life easier for win32
17926           folks that don't use autotools for the build) (#325990, patch
17927           by: Sergey Scobich).
17928
17929 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
17930
17931         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
17932         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
17933         (gst_ring_buffer_pause), (wait_segment):
17934         * gst-libs/gst/audio/gstringbuffer.h:
17935           Name (private) union, makes Forte compiler happy (this time
17936           for real) (#324900).
17937
17938 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
17939
17940         * gst-libs/gst/audio/Makefile.am:
17941           Link against libgstinterfaces, needed for mixer
17942           and property probe stuff.
17943
17944 2006-01-09  Edward Hervey  <edward@fluendo.com>
17945
17946         * gst-libs/gst/Makefile.am:
17947
17948 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
17949
17950         * gst-libs/gst/audio/Makefile.am:
17951         * gst-libs/gst/audio/mixerutils.c:
17952         (gst_audio_mixer_filter_do_filter),
17953         (gst_audio_mixer_filter_check_element),
17954         (gst_audio_mixer_filter_probe_feature),
17955         (element_factory_rank_compare_func),
17956         (gst_audio_default_registry_mixer_filter):
17957         * gst-libs/gst/audio/mixerutils.h:
17958           Add gst_audio_default_registry_mixer_filter() utility
17959           function.
17960
17961 2006-01-03  Michael Smith  <msmith@fluendo.com>
17962
17963         * gst/audioresample/resample.h:
17964           As before, but for o_buf
17965
17966 2006-01-03  Michael Smith  <msmith@fluendo.com>
17967
17968         * gst/audioresample/resample.h:
17969           Declare struct _ResampleState.buffer as unsigned char *, not void *,
17970           since we do arithmetic on it.
17971
17972 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
17973
17974         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
17975         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
17976         (gst_ring_buffer_pause), (wait_segment):
17977         * gst-libs/gst/audio/gstringbuffer.h:
17978           Sun's Forte compiler doesn't seem to like anonymous structs,
17979           so use same setup as in GstBaseSrc (fixes #324900).
17980
17981 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
17982
17983         * configure.ac:
17984         * gst/volume/Makefile.am:
17985         * gst/volume/demo.c:
17986           move old example to tests/examples/volume/volune.c
17987         * tests/examples/Makefile.am:
17988         * tests/examples/seek/seek.c: (main):
17989           change window-close event from "delete-event" to "destroy"
17990         * tests/examples/volume/Makefile.am:
17991         * tests/examples/volume/volume.c: (value_changed_callback),
17992         (setup_gui), (message_received), (eos_message_received), (main):
17993           fix event handling and bus usage
17994
17995 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
17996
17997         * gst/audiotestsrc/gstaudiotestsrc.c:
17998         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
17999         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
18000         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
18001         (gst_audio_test_src_create_square),
18002         (gst_audio_test_src_create_saw),
18003         (gst_audio_test_src_create_triangle),
18004         (gst_audio_test_src_create_silence),
18005         (gst_audio_test_src_create_white_noise),
18006         (gst_audio_test_src_create_pink_noise),
18007         (gst_audio_test_src_init_sine_table),
18008         (gst_audio_test_src_create_sine_table),
18009         (gst_audio_test_src_change_wave),
18010         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
18011         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
18012         * gst/audiotestsrc/gstaudiotestsrc.h:
18013           update to basesrc changes, implement segmented seeking and eos
18014           handling, add a 'sine-tab' waveform for performance critical playback
18015
18016 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18017
18018         * po/POTFILES.in:
18019           ... and this time the other modified file that I missed last time.
18020
18021 2005-12-29  Michael Smith  <msmith@fluendo.com>
18022
18023         * gst/playback/gstdecodebin.c: (new_pad):
18024           Fix non-C89 variable declaration not at the start of a block. Should
18025           help some compilers.
18026
18027 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18028
18029         * tests/check/Makefile.am:
18030           And now fix 'make distcheck' (builddir != srcdir)
18031
18032 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18033
18034         * configure.ac:
18035         * ext/cdparanoia/Makefile.am:
18036         * ext/cdparanoia/gstcdparanoia.c:
18037         * ext/cdparanoia/gstcdparanoia.h:
18038         * ext/cdparanoia/gstcdparanoiasrc.c:
18039         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
18040         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
18041         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
18042         (gst_cd_paranoia_paranoia_callback),
18043         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
18044         (gst_cd_paranoia_src_set_property),
18045         (gst_cd_paranoia_src_get_property), (plugin_init):
18046         * ext/cdparanoia/gstcdparanoiasrc.h:
18047           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
18048           plugin again (there are still fixes required to playbin to make
18049           cdda:// uris work there).
18050
18051 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18052
18053         * tests/check/Makefile.am:
18054           Fix test case compilation.
18055
18056 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18057
18058         * gst-libs/gst/cdda/gstcddabasesrc.c:
18059         (gst_cdda_base_src_update_duration),
18060         (gst_cdda_base_src_calculate_cddb_id):
18061           An integer is not a string. Fix access to uninitialised variable.
18062
18063         * tests/check/Makefile.am:
18064           Add cddabasesrc unit test; also actually enable the vorbis test.
18065
18066         * tests/check/generic/states.c:
18067           Blacklist new cd audio elements as well.
18068
18069         * tests/check/libs/cddabasesrc.c:
18070           Unit test for GstCddaBaseSrc (discid calculation mostly).
18071
18072 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18073
18074         * docs/libs/Makefile.am:
18075         * docs/libs/gst-plugins-base-libs-docs.sgml:
18076         * docs/libs/gst-plugins-base-libs-sections.txt:
18077         * docs/libs/gst-plugins-base-libs.types:
18078           Add docs for libgstcdda/GstCddaBaseSrc.
18079
18080         * gst-libs/gst/interfaces/mixertrack.h:
18081           Do one struct member per line with a semicolon at the end, that way
18082           even gtk-doc might parse it without complaining.
18083
18084 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18085
18086         * configure.ac:
18087         * gst-libs/gst/Makefile.am:
18088         * gst-libs/gst/cdda/Makefile.am:
18089         * gst-libs/gst/cdda/base64.c:
18090         * gst-libs/gst/cdda/base64.h:
18091         * gst-libs/gst/cdda/gstcddabasesrc.c:
18092         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
18093         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
18094         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
18095         (gst_cdda_base_src_get_property),
18096         (gst_cdda_base_src_get_track_from_sector),
18097         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
18098         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
18099         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
18100         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
18101         (gst_cdda_base_src_uri_get_protocols),
18102         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
18103         (gst_cdda_base_src_uri_handler_init),
18104         (gst_cdda_base_src_setup_interfaces),
18105         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
18106         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
18107         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
18108         (gst_cdda_base_src_add_tags),
18109         (gst_cdda_base_src_add_index_associations),
18110         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
18111         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
18112         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
18113         (gst_cdda_base_src_create):
18114         * gst-libs/gst/cdda/gstcddabasesrc.h:
18115         * gst-libs/gst/cdda/sha1.c:
18116         * gst-libs/gst/cdda/sha1.h:
18117           Add new libgstcdda with GstCddaBaseSrc class.
18118
18119 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18120
18121         * ext/gnomevfs/gstgnomevfssink.h:
18122           Use GstBaseSinkClass as parent_class member for class struct, not
18123           GstBaseSink.
18124
18125 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18126
18127         Patch by: Michael Benes
18128
18129         * gst/videotestsrc/gstvideotestsrc.c:
18130         (gst_video_test_src_class_init), (gst_video_test_src_start):
18131           Add start method to reset running time and number of frames sent
18132           when starting up (fixes #324696)
18133
18134 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18135
18136         * docs/plugins/Makefile.am:
18137         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18138         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18139         * docs/plugins/gst-plugins-base-plugins.args:
18140         * docs/plugins/gst-plugins-base-plugins.hierarchy:
18141         * docs/plugins/gst-plugins-base-plugins.signals:
18142           Add docs stuff for gnomevfssrc and gnomevfssink.
18143
18144         * ext/gnomevfs/gstgnomevfssrc.c:
18145           Fix example pipeline in gtk-doc blurb.
18146
18147 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18148
18149         * ext/gnomevfs/Makefile.am:
18150         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
18151         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
18152         (gst_gnome_vfs_handle_get_type), (plugin_init):
18153         * ext/gnomevfs/gstgnomevfs.h:
18154         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
18155         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
18156         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
18157         (gst_gnome_vfs_sink_set_property),
18158         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
18159         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
18160         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
18161         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
18162         (gst_gnome_vfs_sink_uri_get_type),
18163         (gst_gnome_vfs_sink_uri_get_protocols),
18164         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
18165         (gst_gnome_vfs_sink_uri_handler_init):
18166         * ext/gnomevfs/gstgnomevfssink.h:
18167           Port gnomevfssink; add gtk-doc blurb.
18168
18169         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
18170         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
18171         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
18172         (gst_gnome_vfs_src_uri_get_type),
18173         (gst_gnome_vfs_src_uri_get_protocols),
18174         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
18175         (gst_gnome_vfs_src_uri_handler_init),
18176         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
18177         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
18178         (gst_gnome_vfs_src_send_additional_headers_callback),
18179         (gst_gnome_vfs_src_received_headers_callback),
18180         (gst_gnome_vfs_src_push_callbacks),
18181         (gst_gnome_vfs_src_pop_callbacks),
18182         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
18183         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
18184         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
18185         * ext/gnomevfs/gstgnomevfssrc.h:
18186           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
18187           file; add gtk-doc blurb with example pipelines.
18188
18189 === release 0.10.1 ===
18190
18191 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
18192
18193         * configure.ac:
18194           releasing 0.10.1, "Dobro Dedek"
18195
18196 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
18197
18198         * gst/typefind/gsttypefindfunctions.c:
18199         iLBC30 and iLBC20 added to typefind.
18200
18201 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18202
18203         * gst-libs/gst/audio/gstbaseaudiosink.c:
18204         (gst_base_audio_sink_class_init):
18205         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18206         (gst_base_audio_src_class_init):
18207           update strings, values are in microseconds
18208           change the default sink buffer time to something that is smaller
18209           (to help software volume mixing have a slightly lower delay) but
18210           still be acceptable on Wim's laptop
18211
18212 2005-12-20  Edward Hervey  <edward@fluendo.com>
18213
18214         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
18215         Made a quack, forgot to add DUCK to the riff video template.
18216
18217 2005-12-19  Edward Hervey  <edward@fluendo.com>
18218
18219         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
18220         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
18221         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
18222         (gst_ogm_parse_chain):
18223         Make sure pads are initialized correctly.
18224         * gst-libs/gst/riff/riff-ids.h:
18225         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18226         (gst_riff_create_video_template_caps):
18227         Add a whole bunch of FOURCC <=> MimeType.
18228         Extend the riff video pad template to support the newly added fourcc.
18229
18230 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
18231
18232         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
18233         (gst_ogg_demux_activate_chain):
18234           Extra debug output when activating/deactivating chains.
18235
18236         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
18237         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
18238         (unlinked):
18239           Remove a queue from our list when it becomes unlinked.
18240           Don't add queues to elements in class 'Demux' if they
18241           can only produce one pad 
18242
18243 2005-12-18  Julien MOUTTE  <julien@moutte.net>
18244
18245         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
18246         (gst_video_sink_get_type): Add a debug category.
18247
18248 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
18249
18250         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18251         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
18252           Handle downstream newsegment by sending our own newsegment before the
18253           next buffer to be released. (#323900)
18254
18255 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
18256
18257         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18258         (gst_base_rtp_depayload_set_gst_timestamp):
18259           add queue delay to new segment as well (as opposed to just the first
18260           buffer). (bug #322347)
18261
18262 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
18263
18264         * ext/libvisual/visual.c: (make_valid_name):
18265           change some char* into char[]
18266         * gst/audiotestsrc/gstaudiotestsrc.c:
18267         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
18268         (gst_audio_test_src_create):
18269         * gst/audiotestsrc/gstaudiotestsrc.h:
18270           prepare to handle EOS and SEGMENT_DONE
18271
18272 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
18273
18274         * tests/check/generic/states.c: (GST_START_TEST):
18275           Blacklist cdparanoia element in state test.
18276
18277 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
18278
18279           Patch by: Benjamin Pineau
18280
18281         * gst/tcp/gsttcp.c:
18282         * gst/tcp/gsttcpclientsink.c:
18283         * gst/tcp/gsttcpserversink.c:
18284         * gst/tcp/gsttcpserversrc.c:
18285           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
18286
18287 2005-12-15  Michael Smith  <msmith@fluendo.com>
18288
18289         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
18290         (gst_video_rate_chain):
18291           Fix timestamping for videorate when the first buffer it sees has a
18292           non-zero timestamp. Fix some misleading debug output.
18293
18294 2005-12-15  Michael Smith  <msmith@fluendo.com>
18295
18296         * gst/audioresample/gstaudioresample.c:
18297           Don't leak all input buffers to audioresample.
18298
18299 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
18300
18301         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
18302           Don't operate on empty text buffers. Strip newlines and
18303           tabs only from the end of the text, but leave them intact
18304           in the middle. Fix typo in gtk-doc description.
18305
18306 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
18307
18308         * gst/playback/gstplaybasebin.c:
18309         * gst/playback/gstplaybin.c: (handoff):
18310           Make sure the video frame buffer we return to apps via the
18311           "frame" property always has caps set on it. Modify
18312           _gst_gvalue_set_object() macro to handle NULL objects
18313           gracefully too.
18314
18315 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
18316
18317         * gst/audiotestsrc/gstaudiotestsrc.c:
18318         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
18319         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
18320         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
18321         (gst_audio_test_src_create):
18322         * gst/audiotestsrc/gstaudiotestsrc.h:
18323         Adjust to some recent api changes and add wtays new cool seeking
18324         capabillities
18325
18326 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
18327
18328         * ext/alsa/Makefile.am:
18329         * ext/alsa/gstalsadeviceprobe.c:
18330         * ext/alsa/gstalsadeviceprobe.h:
18331           Helper functions to add device probing via the GstPropertyProbe
18332           interface to a class.
18333
18334         * ext/alsa/gstalsamixer.h:
18335           Comment out GST_ALSA_MIXER, it returns a struct that's not
18336           used.
18337
18338         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
18339           Add some debug info. 
18340
18341         * ext/alsa/gstalsamixerelement.c:
18342         (gst_alsa_mixer_element_interface_supported),
18343         (gst_implements_interface_init),
18344         (gst_alsa_mixer_element_init_interfaces),
18345         (gst_alsa_mixer_element_class_init),
18346         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
18347         (gst_alsa_mixer_element_set_property),
18348         (gst_alsa_mixer_element_get_property),
18349         (gst_alsa_mixer_element_change_state):
18350         * ext/alsa/gstalsamixerelement.h:
18351           Add 'device' and 'device-name' properties. Add GstPropertyProbe
18352           for device handling (gnome-volume-control will need that).
18353
18354 2005-12-12  Christian Schaller  <uraeus@gnome.org>
18355
18356         * ext/Makefile.am: fix cdparanoia entry
18357         * gst-plugins-base.spec.in: add cdparanoia
18358
18359 2005-12-12  Michael Smith  <msmith@fluendo.com>
18360
18361         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18362           Use the correct function to free list of typefind factories.
18363
18364 2005-12-12  Wim Taymans  <wim@fluendo.com>
18365
18366         * gst/videotestsrc/gstvideotestsrc.c:
18367         (gst_video_test_src_class_init), (gst_video_test_src_init),
18368         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
18369         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
18370         (gst_video_test_src_create):
18371         * gst/videotestsrc/gstvideotestsrc.h:
18372         Implement seeking in videotestsrc.
18373         Small cleanups.
18374
18375 2005-12-12  Wim Taymans  <wim@fluendo.com>
18376
18377         * ext/cdparanoia/Makefile.am:
18378         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
18379         (gst_paranoia_endian_get_type), (_do_init),
18380         (cdparanoia_class_init), (cdparanoia_init),
18381         (cdparanoia_set_property), (cdparanoia_get_property),
18382         (cdparanoia_do_seek), (cdparanoia_is_seekable),
18383         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
18384         (cdparanoia_convert), (cdparanoia_get_query_types),
18385         (cdparanoia_query), (cdparanoia_set_index),
18386         (cdparanoia_uri_set_uri):
18387         * ext/cdparanoia/gstcdparanoia.h:
18388         Partially ported cdparanoia now that basesrc can support a
18389         plugin like this..
18390
18391 2005-12-12  Wim Taymans  <wim@fluendo.com>
18392
18393         * tests/examples/seek/scrubby.c: (main):
18394         Set higher priority for bus events so they don't get reordered with
18395         gtk gui events.
18396
18397         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
18398         (flush_toggle_cb), (main):
18399         Added checkbox to disable flushing seeks. 
18400         Disable scrubbing when doing non flushing seeks.
18401
18402 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
18403
18404         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
18405         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
18406         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
18407         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
18408           Implement some sort of event handling that doesn't rely on
18409           g_return_if_fail; make sure we always push the last chunk of an 
18410           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
18411           state change function; remove some old cruft. Seeking is still
18412           rather unlikely to work though.
18413
18414         * tools/.cvsignore:
18415           Ignore more.
18416
18417 2005-12-11  Julien MOUTTE  <julien@moutte.net>
18418
18419         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
18420         Fixed a leak of the current image reference when cleaning up.
18421         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
18422
18423 2005-12-09  Michael Smith  <msmith@fluendo.com>
18424
18425         * tools/Makefile.am:
18426         * tools/gst-launch-ext-m.m:
18427           Remove gst-launch-ext. It doesn't work, and is no longer
18428           particularly useful.
18429
18430 2005-12-08  Luca Ognibene  <luogni@tin.it>
18431
18432         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18433           don't pass random values to ogmparse convert function.
18434           Make seeking possible in the exile1.ogm file.
18435
18436 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
18437
18438         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
18439         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
18440           Work around refcount problem with g_value_set_object() that occur
18441           if the core has been compiled against GLib-2.6 (g_value_set_object()
18442           will only g_object_ref() the element, but the caller will
18443           gst_object_unref() it and bad things will happen due to the way
18444           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
18445           totem for people on FC4 using Thomas's 0.10 RPMs.
18446           
18447 2005-12-07  Edward Hervey  <edward@fluendo.com>
18448
18449         Time to welcome ogm to 0.10 :)
18450         
18451         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
18452         (gst_ogg_pad_typefind):
18453         Oggdemux can now properly typefind elements with dynamic pads.
18454         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18455         Properly set caps on src pad, and set caps on outgoing buffers.
18456
18457 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18458
18459         * ext/alsa/gstalsamixer.h:
18460         * ext/alsa/gstalsamixerelement.h:
18461         * ext/alsa/gstalsamixeroptions.h:
18462         * ext/alsa/gstalsamixertrack.h:
18463         * ext/alsa/gstalsasink.c:
18464         * ext/alsa/gstalsasink.h:
18465         * ext/alsa/gstalsasrc.c:
18466         * ext/alsa/gstalsasrc.h:
18467         * ext/cdparanoia/gstcdparanoia.h:
18468         * ext/gnomevfs/gstgnomevfsuri.h:
18469         * ext/ogg/gstoggdemux.c:
18470         * ext/ogg/gstoggmux.c:
18471         * ext/pango/gsttextoverlay.h:
18472         * ext/theora/theoradec.c:
18473         * ext/theora/theoraenc.c:
18474         * ext/vorbis/vorbisdec.h:
18475         * ext/vorbis/vorbisenc.c:
18476         * ext/vorbis/vorbisenc.h:
18477         * ext/vorbis/vorbisparse.h:
18478         * gst-libs/gst/audio/gstaudioclock.h:
18479         * gst-libs/gst/audio/gstaudiosink.c:
18480         * gst-libs/gst/audio/gstaudiosink.h:
18481         * gst-libs/gst/audio/gstaudiosrc.c:
18482         * gst-libs/gst/audio/gstaudiosrc.h:
18483         * gst-libs/gst/audio/gstbaseaudiosink.c:
18484         * gst-libs/gst/audio/gstbaseaudiosink.h:
18485         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18486         * gst-libs/gst/audio/gstbaseaudiosrc.h:
18487         * gst-libs/gst/audio/gstringbuffer.h:
18488         * gst-libs/gst/audio/multichannel.h:
18489         * gst-libs/gst/floatcast/floatcast.h:
18490         * gst-libs/gst/interfaces/colorbalance.c:
18491         * gst-libs/gst/interfaces/colorbalance.h:
18492         * gst-libs/gst/interfaces/colorbalancechannel.h:
18493         * gst-libs/gst/interfaces/mixer.h:
18494         * gst-libs/gst/interfaces/mixeroptions.h:
18495         * gst-libs/gst/interfaces/mixertrack.h:
18496         * gst-libs/gst/interfaces/navigation.h:
18497         * gst-libs/gst/interfaces/propertyprobe.h:
18498         * gst-libs/gst/interfaces/tuner.h:
18499         * gst-libs/gst/interfaces/tunerchannel.h:
18500         * gst-libs/gst/interfaces/tunernorm.h:
18501         * gst-libs/gst/interfaces/xoverlay.h:
18502         * gst-libs/gst/netbuffer/gstnetbuffer.h:
18503         * gst-libs/gst/riff/riff-ids.h:
18504         * gst-libs/gst/riff/riff-media.h:
18505         * gst-libs/gst/riff/riff-read.h:
18506         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18507         * gst-libs/gst/rtp/gstbasertppayload.c:
18508         * gst-libs/gst/rtp/gstbasertppayload.h:
18509         * gst-libs/gst/rtp/gstrtpbuffer.c:
18510         * gst-libs/gst/rtp/gstrtpbuffer.h:
18511         * gst-libs/gst/tag/gsttageditingprivate.h:
18512         * gst-libs/gst/tag/gstvorbistag.c:
18513         (gst_tag_list_from_vorbiscomment_buffer):
18514         * gst-libs/gst/tag/tag.h:
18515         * gst-libs/gst/video/video.h:
18516         * gst/adder/gstadder.c:
18517         * gst/adder/gstadder.h:
18518         * gst/audioconvert/audioconvert.c:
18519         * gst/audioconvert/audioconvert.h:
18520         * gst/audioconvert/gstaudioconvert.c:
18521         * gst/audioconvert/gstchannelmix.c:
18522         * gst/audioconvert/gstchannelmix.h:
18523         * gst/audiorate/gstaudiorate.c:
18524         * gst/audioresample/buffer.h:
18525         * gst/audioresample/functable.h:
18526         * gst/audioresample/gstaudioresample.c:
18527         * gst/audioresample/resample.h:
18528         * gst/ffmpegcolorspace/avcodec.h:
18529         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18530         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
18531         * gst/ffmpegcolorspace/imgconvert.c:
18532         * gst/ffmpegcolorspace/imgconvert_template.h:
18533         * gst/playback/gstdecodebin.c:
18534         * gst/playback/gstplaybasebin.h:
18535         * gst/playback/gstplaybin.c:
18536         * gst/playback/gststreaminfo.h:
18537         * gst/tcp/gstfdset.c:
18538         * gst/tcp/gstfdset.h:
18539         * gst/tcp/gstmultifdsink.c:
18540         * gst/tcp/gstmultifdsink.h:
18541         * gst/tcp/gsttcp.h:
18542         * gst/tcp/gsttcpclientsrc.c:
18543         * gst/tcp/gsttcpclientsrc.h:
18544         * gst/tcp/gsttcpplugin.h:
18545         * gst/tcp/gsttcpserversink.c:
18546         * gst/tcp/gsttcpserversrc.c:
18547         * gst/typefind/gsttypefindfunctions.c:
18548         * gst/videorate/gstvideorate.c:
18549         * gst/videotestsrc/gstvideotestsrc.h:
18550         * gst/videotestsrc/videotestsrc.h:
18551         * sys/v4l/gstv4lcolorbalance.h:
18552         * sys/v4l/gstv4ltuner.h:
18553         * sys/v4l/gstv4lxoverlay.h:
18554         * sys/v4l/v4l_calls.h:
18555         * sys/v4l/videodev_mjpeg.h:
18556         * tests/check/elements/audioconvert.c:
18557         * tests/check/elements/audioresample.c:
18558         * tests/check/elements/audiotestsrc.c:
18559         * tests/check/elements/videotestsrc.c:
18560         * tests/check/elements/volume.c:
18561         * tests/examples/seek/scrubby.c:
18562         * tests/examples/seek/seek.c:
18563           expand tabs
18564
18565 === release 0.10.0 ===
18566
18567 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18568
18569         * configure.ac:
18570           releasing 0.10.0, "Mont-d'or"
18571
18572 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
18573
18574         * tests/examples/seek/Makefile.am:
18575         Build fix for when gtk is not available.
18576
18577 2005-12-05  Andy Wingo  <wingo@pobox.com>
18578
18579         * ext/libvisual/visual.c: (get_buffer):
18580         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
18581         * ext/pango/gsttextrender.c: (gst_text_render_chain):
18582         * ext/theora/theoradec.c: (theora_handle_data_packet):
18583         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
18584         (theora_enc_chain):
18585         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
18586         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
18587         Update for alloc_buffer changes.
18588
18589 2005-12-05  Andy Wingo  <wingo@pobox.com>
18590
18591         patch by: Kai Vehmanen <kv2004 eca cx>
18592         
18593         * gst-libs/gst/rtp/gstbasertpdepayload.c
18594         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
18595
18596 2005-12-04  Andy Wingo  <wingo@pobox.com>
18597
18598         patch by: Sebastien Cote <sebas642 yahoo ca>
18599         
18600         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
18601         Fixes #319172.
18602
18603 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
18604
18605         * docs/plugins/Makefile.am:
18606         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18607         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18608         * docs/plugins/gst-plugins-base-plugins.hierarchy:
18609         * ext/pango/gstclockoverlay.c:
18610         * ext/pango/gsttextoverlay.c: 
18611         * ext/pango/gsttextrender.c:
18612         * ext/pango/gsttimeoverlay.c:
18613           Add gtk-doc blurbs to pango elements.
18614
18615 2005-12-02  Wim Taymans  <wim@fluendo.com>
18616
18617         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
18618         * gst/audioresample/buffer.h:
18619         * gst/audioresample/gstaudioresample.c:
18620         * gst/audioresample/gstaudioresample.h:
18621         * gst/audioresample/resample.c: (resample_input_flush),
18622         (resample_input_pushthrough), (resample_input_eos),
18623         (resample_get_output_size_for_input),
18624         (resample_get_input_size_for_output), (resample_get_output_size),
18625         (resample_get_output_data):
18626         * gst/audioresample/resample.h:
18627         * gst/audioresample/resample_ref.c: (resample_scale_ref):
18628         Fix audioresample, seek torture, new segments, reverse negotiation
18629         etc.. work fine.
18630
18631 2005-12-02  Wim Taymans  <wim@fluendo.com>
18632
18633         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
18634         Small cleanups.
18635
18636 2005-12-02  Wim Taymans  <wim@fluendo.com>
18637
18638         * gst/audioconvert/gstaudioconvert.c:
18639         (gst_audio_convert_transform):
18640         Post errors.
18641
18642 === release 0.9.7 ===
18643
18644 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18645
18646         * configure.ac:
18647           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
18648
18649 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18650
18651         * Makefile.am:
18652         * po/hu.po:
18653         * win32/MANIFEST:
18654         * win32/gst.sln:
18655           add win32 MANIFEST file
18656           do something to the hungarian translation
18657
18658 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
18659
18660         * ext/Makefile.am:
18661           Add $(PANGO_DIR) to SUBDIRS
18662
18663         * ext/pango/gstclockoverlay.c:
18664         * ext/pango/gsttimeoverlay.c:
18665           Fix and improve element descriptions.
18666
18667 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18668
18669         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18670         * docs/plugins/inspect/plugin-libvisual.xml:
18671         * docs/plugins/inspect/plugin-pango.xml:
18672           add pango plugin to docs
18673
18674 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18675
18676         * configure.ac:
18677         * ext/Makefile.am:
18678           moved pango to base
18679
18680 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18681
18682         * configure.ac:
18683         * tests/Makefile.am:
18684         * tests/icles/.cvsignore:
18685         * tests/icles/Makefile.am:
18686         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
18687         (close_display), (resize_window), (move_window), (create_window),
18688         (terminate_playback), (pause_playback), (start_playback), (main):
18689           add stress test for xoverlay from Julien
18690
18691 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18692
18693         * docs/libs/tmpl/gstcolorbalance.sgml:
18694         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18695         * gst-libs/gst/rtp/gstbasertppayload.c:
18696         * gst-libs/gst/rtp/gstrtpbuffer.c:
18697         * gst-libs/gst/rtp/gstrtpbuffer.h:
18698           Do burger's rename for rtp payloaders and depayloaders
18699
18700 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18701
18702         * win32/:
18703           add Visual Studio 6 build files
18704
18705 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18706
18707         * docs/libs/gst-plugins-base-libs-docs.sgml:
18708         * docs/libs/gst-plugins-base-libs-sections.txt:
18709         * docs/libs/tmpl/gstaudio.sgml:
18710         * docs/libs/tmpl/gstringbuffer.sgml:
18711         * gst-libs/gst/interfaces/xoverlay.c:
18712         * gst-libs/gst/video/gstvideofilter.c:
18713         * gst-libs/gst/video/gstvideosink.c:
18714           update documentation
18715
18716 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18717
18718         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
18719         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
18720         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
18721         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
18722         (gst_multi_fd_sink_get_stats),
18723         (gst_multi_fd_sink_remove_client_link),
18724         (gst_multi_fd_sink_handle_client_read),
18725         (gst_multi_fd_sink_client_queue_data),
18726         (gst_multi_fd_sink_client_queue_caps),
18727         (gst_multi_fd_sink_client_queue_buffer),
18728         (gst_multi_fd_sink_new_client),
18729         (gst_multi_fd_sink_handle_client_write),
18730         (gst_multi_fd_sink_recover_client),
18731         (gst_multi_fd_sink_queue_buffer),
18732         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
18733         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
18734         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
18735         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
18736         * gst/tcp/gstmultifdsink.h:
18737         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
18738         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
18739         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
18740         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
18741         (gst_tcp_client_sink_set_property),
18742         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
18743         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
18744         * gst/tcp/gsttcpclientsink.h:
18745         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
18746         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
18747         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
18748         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
18749         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
18750         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
18751         * gst/tcp/gsttcpclientsrc.h:
18752         * gst/tcp/gsttcpplugin.c: (plugin_init):
18753         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
18754         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
18755         (gst_tcp_server_sink_finalize),
18756         (gst_tcp_server_sink_handle_server_read),
18757         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
18758         (gst_tcp_server_sink_set_property),
18759         (gst_tcp_server_sink_get_property),
18760         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
18761         * gst/tcp/gsttcpserversink.h:
18762         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
18763         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
18764         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
18765         (gst_tcp_server_src_set_property),
18766         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
18767         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
18768         * gst/tcp/gsttcpserversrc.h:
18769           more borgifying
18770
18771 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18772
18773         * docs/plugins/Makefile.am:
18774         * docs/plugins/gst-plugins-base-plugins.args:
18775         * docs/plugins/inspect/plugin-libvisual.xml:
18776         * gst/audioconvert/plugin.h:
18777         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
18778         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
18779         (gst_audio_rate_setcaps), (gst_audio_rate_init),
18780         (gst_audio_rate_chain), (gst_audio_rate_set_property),
18781         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
18782         (plugin_init):
18783         * gst/audiotestsrc/gstaudiotestsrc.c:
18784         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
18785         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
18786         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
18787         (gst_audio_test_src_get_query_types),
18788         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
18789         (gst_audio_test_src_create_square),
18790         (gst_audio_test_src_create_saw),
18791         (gst_audio_test_src_create_triangle),
18792         (gst_audio_test_src_create_silence),
18793         (gst_audio_test_src_create_white_noise),
18794         (gst_audio_test_src_init_pink_noise),
18795         (gst_audio_test_src_generate_pink_noise_value),
18796         (gst_audio_test_src_create_pink_noise),
18797         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
18798         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
18799         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
18800         (plugin_init):
18801         * gst/audiotestsrc/gstaudiotestsrc.h:
18802         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
18803         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
18804         (gst_sub_parse_init), (gst_sub_parse_formats),
18805         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
18806         (convert_encoding), (get_next_line),
18807         (gst_sub_parse_data_format_autodetect),
18808         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
18809         (gst_sub_parse_loop), (gst_sub_parse_chain),
18810         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
18811         (plugin_init):
18812         * gst/subparse/gstsubparse.h:
18813         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
18814         (gst_video_rate_base_init), (gst_video_rate_class_init),
18815         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
18816         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
18817         (gst_video_rate_init), (gst_video_rate_event),
18818         (gst_video_rate_chain), (gst_video_rate_set_property),
18819         (gst_video_rate_get_property), (gst_video_rate_change_state),
18820         (plugin_init):
18821         * gst/videoscale/gstvideoscale.c:
18822         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
18823         (gst_video_scale_src_template_factory),
18824         (gst_video_scale_sink_template_factory),
18825         (gst_video_scale_get_type), (gst_video_scale_base_init),
18826         (gst_video_scale_class_init), (gst_video_scale_init),
18827         (gst_video_scale_set_property), (gst_video_scale_get_property),
18828         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
18829         (gst_video_scale_prepare_size), (parse_caps),
18830         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
18831         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
18832         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
18833         (plugin_init):
18834         * gst/videoscale/gstvideoscale.h:
18835         * gst/videotestsrc/gstvideotestsrc.c:
18836         (gst_video_test_src_pattern_get_type),
18837         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
18838         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
18839         (gst_video_test_src_set_pattern),
18840         (gst_video_test_src_set_property),
18841         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
18842         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
18843         (gst_video_test_src_event), (gst_video_test_src_get_times),
18844         (gst_video_test_src_create), (plugin_init):
18845         * gst/videotestsrc/gstvideotestsrc.h:
18846         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
18847         (gst_video_test_src_smpte), (gst_video_test_src_snow),
18848         (gst_video_test_src_black):
18849         * gst/videotestsrc/videotestsrc.h:
18850           borgify further
18851           clean up docs a little
18852
18853 2005-11-30  Wim Taymans  <wim@fluendo.com>
18854
18855         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18856         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
18857         (gst_basertppayload_event), (gst_basertppayload_push),
18858         (gst_basertppayload_change_state):
18859         * gst-libs/gst/rtp/gstbasertppayload.h:
18860         closed #320644.
18861
18862 2005-11-30  Julien MOUTTE  <julien@moutte.net>
18863
18864         * docs/libs/gst-plugins-base-libs-docs.sgml:
18865         * docs/libs/gst-plugins-base-libs-sections.txt:
18866         * gst-libs/gst/video/gstvideofilter.c:
18867         * gst-libs/gst/video/gstvideosink.c:
18868         * gst-libs/gst/video/gstvideosink.h: Adding docs.
18869
18870 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18871
18872         * LICENSE:
18873           move
18874         * po/af.po:
18875         * po/az.po:
18876         * po/cs.po:
18877         * po/en_GB.po:
18878         * po/hu.po:
18879         * po/it.po:
18880         * po/nb.po:
18881         * po/nl.po:
18882         * po/or.po:
18883         * po/sq.po:
18884         * po/sr.po:
18885         * po/sv.po:
18886         * po/uk.po:
18887         * po/vi.po:
18888         * Makefile.am:
18889           update
18890         * scripts/autoplugins.sh:
18891           remove
18892
18893 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18894
18895         * Makefile.am:
18896         * configure.ac:
18897         * examples/Makefile.am:
18898         * examples/capsfilter/Makefile.am:
18899         * examples/capsfilter/capsfilter1.c:
18900         * examples/gob/Makefile.am:
18901         * examples/gob/gst-identity2.gob:
18902         * examples/indexing/.cvsignore:
18903         * examples/indexing/Makefile.am:
18904         * examples/indexing/indexmpeg.c:
18905         * examples/seeking/.cvsignore:
18906         * examples/seeking/Makefile.am:
18907         * examples/seeking/cdparanoia.c:
18908         * examples/seeking/cdplayer.c:
18909         * examples/seeking/chained.c:
18910         * examples/seeking/scrubby.c:
18911         * examples/seeking/seek.c:
18912         * examples/stats/Makefile.am:
18913         * examples/stats/mp2ogg.c:
18914         * examples/switch/.cvsignore:
18915         * examples/switch/Makefile.am:
18916         * examples/switch/switcher.c:
18917         * tests/Makefile.am:
18918         * tests/check/generic/.cvsignore:
18919         * tests/check/pipelines/.cvsignore:
18920         * tests/examples/Makefile.am:
18921         * tests/examples/seek/Makefile.am:
18922           reorganize stuff under tests/
18923
18924 2005-11-30  Edward Hervey  <edward@fluendo.com>
18925
18926         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
18927         Go away you stupid GstStaticPadTemplate memleak.
18928
18929 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18930
18931         * gst-libs/gst/net/Makefile.am:
18932         * gst-libs/gst/net/README:
18933         * gst-libs/gst/net/gstnetbuffer.c:
18934         * gst-libs/gst/net/gstnetbuffer.h:
18935           this was moved to "netbuffer"
18936
18937 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18938
18939         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
18940         (gst_video_filter_class_init), (gst_video_filter_init):
18941         * gst-libs/gst/video/gstvideofilter.h:
18942           borgify name to bring in line with other classes
18943
18944 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18945
18946         * gst/audioscale/.cvsignore:
18947         * gst/audioscale/Makefile.am:
18948         * gst/audioscale/README:
18949         * gst/audioscale/audioscale.vcproj:
18950         * gst/audioscale/dtof.c:
18951         * gst/audioscale/dtos.c:
18952         * gst/audioscale/functable.c:
18953         * gst/audioscale/gstaudioscale.c:
18954         * gst/audioscale/gstaudioscale.h:
18955         * gst/audioscale/private.h:
18956         * gst/audioscale/resample.c:
18957         * gst/audioscale/resample.h:
18958         * gst/audioscale/test.c:
18959           remove
18960
18961 2005-11-30  Edward Hervey  <edward@fluendo.com>
18962
18963         * gst-libs/gst/netbuffer/Makefile.am:
18964         really, really tired
18965
18966 2005-11-30  Edward Hervey  <edward@fluendo.com>
18967
18968         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18969         Update for new GstTypeFindFactory _register()
18970
18971 2005-11-30  Edward Hervey  <edward@fluendo.com>
18972
18973         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
18974         Let's not override libgstnet from core for no reason...
18975         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
18976         Ok, maybe not so quick next time.
18977
18978 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18979
18980         * configure.ac:
18981         * gst-libs/gst/Makefile.am:
18982           moved gst-libs/gst/net to netbuffer through CVS surgery
18983           remove old directory
18984           updating build to accomodate
18985           (#322257)
18986
18987 2005-11-29  Andy Wingo  <wingo@pobox.com>
18988
18989         * pkgconfig/gstreamer-plugins-base.pc.in:
18990         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
18991         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
18992         (#322257).
18993
18994 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
18995
18996         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
18997         3rd time's the charm. Correct ref-counting for discarded buffers.
18998
18999 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19000
19001         * gst/playback/gststreamselector.c:
19002         (gst_stream_selector_class_init),
19003         (gst_stream_selector_set_property),
19004         (gst_stream_selector_get_property),
19005         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19006         Fix ref-counting
19007
19008 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
19009
19010         * gst/subparse/gstsubparse.c: (feed_textbuf):
19011           Don't access already unref'ed buffer.
19012
19013 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19014
19015         * gst/playback/gststreamselector.c:
19016         (gst_stream_selector_class_init), (gst_stream_selector_init),
19017         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
19018         (gst_stream_selector_get_property),
19019         (gst_stream_selector_get_linked_pad),
19020         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19021         * gst/playback/gststreamselector.h:
19022         Add the active-pad property for playbin to use shortly. Ignore buffers
19023         from any other pad, returning GST_FLOW_NOT_LINKED
19024
19025 2005-11-29  Julien MOUTTE  <julien@moutte.net>
19026
19027         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
19028         patch from bug #322704 (Alessandro Decina).
19029
19030 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19031
19032         * gst-libs/gst/audio/Makefile.am:
19033           folded audiofilter into the audio library
19034
19035 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19036
19037         * gst/videoscale/gstvideoscale.h:
19038         * gst/videoscale/gstvideoscale.c:
19039           remove unimplemented scale methods
19040
19041 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
19042
19043         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
19044           Don't leak caps.
19045
19046 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19047
19048         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
19049         (gst_ximagesink_setcaps):
19050         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19051         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
19052         happens (only visible on ximagesink but bug is in xv too) set_caps was
19053         destroying the internal x[v]image used to memcpy non locally alloced
19054         buffers so that it got renewed on next _chain. The issue is that 
19055         _expose will try to put that image as it reffed it in _put.
19056         Using gst_buffer_unref instead of destroy fixes it !
19057
19058 2005-11-28  Edward Hervey  <edward@fluendo.com>
19059
19060         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
19061         (try_to_link_1), (queue_filled_cb):
19062         Better use of the queues. Start with a small size queue and only increase
19063         the size of the queues when the other queues are empty.
19064
19065 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19066
19067         * gst-libs/gst/video/Makefile.am:
19068           compile in copied-over videofilter into the video library
19069         * gst-libs/gst/video/videosink.h:
19070           rename the header to gstvideosink.h since it's a base GstObject class
19071         * sys/ximage/ximagesink.h:
19072         * sys/xvimage/xvimagesink.h:
19073           use the new header
19074
19075 2005-11-28  Wim Taymans  <wim@fluendo.com>
19076
19077         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
19078         * gst/playback/gstplaybasebin.h:
19079         Prepare to handle errors betters.
19080
19081         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
19082         Set sinks to PAUSED first before adding and linking them so that
19083         we don't interrupt dataflow.
19084
19085 2005-11-28  Wim Taymans  <wim@fluendo.com>
19086
19087         * gst-libs/gst/audio/TODO:
19088         Updated TODO
19089
19090         * gst-libs/gst/audio/gstaudiosink.c:
19091         (gst_audioringbuffer_open_device),
19092         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
19093         (gst_audioringbuffer_release):
19094         Small cleanups.
19095
19096         * gst-libs/gst/audio/gstbaseaudiosink.c:
19097         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
19098         (gst_base_audio_sink_change_state):
19099         Slave to the master clock when going to PLAYING and unslave when
19100         going to PAUSED.
19101
19102         * gst-libs/gst/audio/gstringbuffer.c:
19103         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
19104         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
19105         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
19106         (gst_ring_buffer_clear_all), (wait_segment),
19107         (gst_ring_buffer_commit), (gst_ring_buffer_read),
19108         (gst_ring_buffer_advance):
19109         * gst-libs/gst/audio/gstringbuffer.h:
19110         Add some docs and cleanups.
19111
19112 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19113
19114         * sys/xvimage/xvimagesink.c:
19115         (gst_xvimagesink_navigation_send_event): Fix navigation events
19116         coordinates translation with pixel aspect ratios.
19117
19118 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19119
19120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
19121         Use calculated video geometry from _setcaps instead of buffer
19122         caps to respect pixel aspect ratio. (fixes #322388)
19123
19124 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19125
19126         * docs/libs/tmpl/gstcolorbalance.sgml:
19127         * docs/libs/tmpl/gstmixer.sgml:
19128         * docs/libs/tmpl/gstxoverlay.sgml:
19129         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
19130         interface.
19131
19132 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19133
19134         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
19135         Refuse to create an XvImage if we can't find the format.
19136
19137 2005-11-28  Edward Hervey  <edward@fluendo.com>
19138
19139         * gst-libs/gst/riff/riff-media.c:
19140         (gst_riff_create_audio_template_caps):
19141         Add ATRAC3 to the list of riff-possible audio caps.
19142         I know we still don't have a plugin for atrac3, but it's saner to output
19143         that than a cryptic mimetype.
19144
19145 2005-11-27  Edward Hervey  <edward@fluendo.com>
19146
19147         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
19148         Don't try to create a zero-sized subbuffer.
19149
19150 2005-11-27  Julien MOUTTE  <julien@moutte.net>
19151
19152         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
19153         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
19154         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
19155         (gst_ximagesink_expose): Fixed a tricky race.
19156         * sys/ximage/ximagesink.h:
19157         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19158         (gst_xvimagesink_expose): Fixed a tricky race.
19159         * sys/xvimage/xvimagesink.h:
19160
19161 2005-11-27  Edward Hervey  <edward@fluendo.com>
19162
19163         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19164         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
19165         Remove unused properties, and add queues between demuxers and decoders
19166         so that a lot more files can preroll properly.
19167
19168 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19169
19170         * gst-libs/gst/net/Makefile.am:
19171         * gst-libs/gst/rtp/Makefile.am:
19172         * gst-libs/gst/tag/Makefile.am:
19173           remove silly include
19174         * gst/tags/Makefile.am:
19175         * gst/tags/gsttagediting.c:
19176         * gst/tags/gsttageditingprivate.h:
19177         * gst/tags/tagedit.vcproj:
19178           remove directory, is as good as empty
19179
19180 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19181
19182         * configure.ac:
19183           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
19184         * gst-libs/Makefile.am:
19185         * gst-libs/gst/audio/Makefile.am:
19186         * gst-libs/gst/interfaces/Makefile.am:
19187         * gst-libs/gst/net/Makefile.am:
19188         * gst-libs/gst/riff/Makefile.am:
19189         * gst-libs/gst/rtp/Makefile.am:
19190         * gst-libs/gst/tag/Makefile.am:
19191         * gst-libs/gst/video/Makefile.am:
19192           and use them
19193
19194 2005-11-27  Julien MOUTTE  <julien@moutte.net>
19195
19196         * docs/libs/tmpl/gstcolorbalance.sgml:
19197         * docs/libs/tmpl/gstmixer.sgml:
19198         * docs/libs/tmpl/gstxoverlay.sgml:
19199         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
19200         * sys/ximage/ximagesink.h:
19201         * sys/xvimage/xvimagesink.h: More and more documentation.
19202
19203 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19204
19205         * docs/libs/gst-plugins-base-libs-docs.sgml:
19206         * docs/libs/gst-plugins-base-libs-sections.txt:
19207         * docs/libs/tmpl/gstcolorbalance.sgml:
19208         * docs/libs/tmpl/gstmixer.sgml:
19209         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
19210         to documentation.
19211
19212 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19213
19214         * docs/plugins/Makefile.am:
19215         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19216         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19217         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
19218
19219 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19220
19221         * docs/plugins/Makefile.am:
19222         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19223         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19224         * docs/plugins/inspect/plugin-adder.xml:
19225         * docs/plugins/inspect/plugin-alsa.xml:
19226         * docs/plugins/inspect/plugin-audioconvert.xml:
19227         * docs/plugins/inspect/plugin-audiorate.xml:
19228         * docs/plugins/inspect/plugin-audioresample.xml:
19229         * docs/plugins/inspect/plugin-audiotestsrc.xml:
19230         * docs/plugins/inspect/plugin-decodebin.xml:
19231         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
19232         * docs/plugins/inspect/plugin-gnomevfs.xml:
19233         * docs/plugins/inspect/plugin-ogg.xml:
19234         * docs/plugins/inspect/plugin-playbin.xml:
19235         * docs/plugins/inspect/plugin-subparse.xml:
19236         * docs/plugins/inspect/plugin-tcp.xml:
19237         * docs/plugins/inspect/plugin-theora.xml:
19238         * docs/plugins/inspect/plugin-typefindfunctions.xml:
19239         * docs/plugins/inspect/plugin-video4linux.xml:
19240         * docs/plugins/inspect/plugin-videorate.xml:
19241         * docs/plugins/inspect/plugin-videoscale.xml:
19242         * docs/plugins/inspect/plugin-videotestsrc.xml:
19243         * docs/plugins/inspect/plugin-volume.xml:
19244         * docs/plugins/inspect/plugin-vorbis.xml:
19245         * docs/plugins/inspect/plugin-ximagesink.xml:
19246         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
19247         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
19248
19249 2005-11-26  Edward Hervey  <edward@fluendo.com>
19250
19251         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
19252         Properly return GstFlowReturn from gst_pad_push in chain functions.
19253
19254 2005-11-25  Michael Smith  <msmith@fluendo.com>
19255
19256         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
19257         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
19258         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
19259         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
19260           Handle various conditions better when we don't understand a stream.
19261           Removes a heap of CRITICALs on ogg streams containing unknown data.
19262
19263 2005-11-24  Andy Wingo  <wingo@pobox.com>
19264
19265         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
19266         Be threadsafe.
19267
19268 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19269
19270         * configure.ac: back to HEAD
19271
19272 === release 0.9.6 ===
19273
19274 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19275
19276         * configure.ac:
19277           releasing 0.9.6, "White Eight"
19278
19279 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19280
19281         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
19282         * docs/plugins/inspect/plugin-sine.xml:
19283           remove sinesrc some more
19284
19285 2005-11-23  Wim Taymans  <wim@fluendo.com>
19286
19287         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
19288         If we are reading too slowly, jump forward in the ringbuffer
19289         instead of blocking.
19290
19291 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19292
19293         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
19294         (gst_visual_chain):
19295         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
19296         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
19297         (gst_videorate_chain):
19298         * gst/videotestsrc/gstvideotestsrc.c:
19299         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
19300         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
19301         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
19302         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
19303         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19304         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19305           Updates for API changes
19306
19307 2005-11-23  Wim Taymans  <wim@fluendo.com>
19308
19309         * gst-libs/gst/audio/gstbaseaudiosink.c:
19310         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
19311         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19312         Fix for calibration API change.
19313
19314 2005-11-23  Michael Smith <msmith@fluendo.com>
19315
19316         * gst-libs/gst/audio/multichannel.c:
19317         (gst_audio_get_channel_positions),
19318         (gst_audio_set_channel_positions),
19319         (gst_audio_set_structure_channel_positions_list),
19320         (gst_audio_fixate_channel_positions):
19321           Use gst_value_array_*() functions on value arrays, not
19322           gst_value_list_*().
19323
19324 2005-11-23  Edward Hervey  <edward@fluendo.com>
19325
19326         * autogen.sh:
19327         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
19328         Fixes autogen
19329
19330 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19331
19332         * check/Makefile.am:
19333         * check/elements/videotestsrc.c: (setup_videotestsrc),
19334         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
19335         (main):
19336           add a test for videotestsrc
19337
19338 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19339
19340         * gst/sine/.cvsignore:
19341         * gst/sine/Makefile.am:
19342         * gst/sine/gstsinesrc.c:
19343         * gst/sine/gstsinesrc.h:
19344         * gst/sine/sinesrc.vcproj:
19345           and remove sinesrc from the repository.  Closes #321446
19346
19347 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19348
19349         * configure.ac:
19350         * gst-plugins-base.spec.in:
19351           remove sinesrc from the build
19352
19353 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19354
19355         * check/Makefile.am:
19356         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
19357         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
19358         (main):
19359           add a test for audiotestsrc, testing all waves.  Even seems
19360           leak-free at first glance, nice job Stefan
19361
19362 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19363
19364         * po/af.po:
19365         * po/az.po:
19366         * po/cs.po:
19367         * po/en_GB.po:
19368         * po/hu.po:
19369         * po/it.po:
19370         * po/nb.po:
19371         * po/nl.po:
19372         * po/or.po:
19373         * po/sq.po:
19374         * po/sr.po:
19375         * po/sv.po:
19376         * po/uk.po:
19377         * po/vi.po:
19378           Translation string updates
19379
19380         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
19381         (gst_v4lsrc_set_caps):
19382         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19383         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19384         * sys/v4l/v4lsrc_calls.h:
19385           Improve v4lsrc, by making it work again.
19386
19387 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19388
19389         * ext/libvisual/visual.c: (gst_visual_chain):
19390           Fix the fps calculations.
19391
19392         * gst/ffmpegcolorspace/avcodec.h:
19393           Move structure element for clarity
19394
19395         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
19396         * gst-libs/gst/interfaces/tunernorm.h:
19397         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
19398         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
19399         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
19400         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
19401         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
19402         (gst_v4lmjpegsrc_getcaps):
19403         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
19404         (gst_v4lsrc_set_caps):
19405         * sys/v4l/gstv4lsrc.h:
19406         * sys/v4l/v4l_calls.c: (gst_v4l_open):
19407         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19408         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19409         * sys/v4l/v4lsrc_calls.h:
19410           Fractional framerates...
19411
19412 2005-11-22  Wim Taymans  <wim@fluendo.com>
19413
19414         * gst-libs/gst/audio/gstbaseaudiosink.c:
19415         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
19416         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19417         And we provide a clock by default, of course...
19418
19419 2005-11-22  Wim Taymans  <wim@fluendo.com>
19420
19421         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
19422         This clock can be slaved to a master clock now.
19423
19424         * gst-libs/gst/audio/gstbaseaudiosink.c:
19425         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
19426         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
19427         (gst_base_audio_sink_set_clock),
19428         (gst_base_audio_sink_set_property),
19429         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
19430         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19431         * gst-libs/gst/audio/gstbaseaudiosink.h:
19432         Handle slaving the internal clock to the clock selected in the
19433         pipeline.
19434         Add property to make the basesink not provide a clock.
19435
19436         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19437         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
19438         (gst_base_rtp_depayload_wait):
19439         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19440         We can use the clock in GstElement, no need to store it ourselves.
19441
19442 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19443
19444         * docs/libs/tmpl/gstaudio.sgml:
19445           update
19446         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
19447         (gst_paranoia_endian_get_type):
19448         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
19449         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
19450         * gst/audiotestsrc/gstaudiotestsrc.c:
19451         (gst_audiostestsrc_wave_get_type):
19452         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
19453         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
19454         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
19455         (gst_sync_method_get_type), (gst_unit_type_get_type),
19456         (gst_client_status_get_type), (gst_multifdsink_class_init),
19457         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
19458         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
19459         (gst_multifdsink_get_property):
19460         * gst/tcp/gstmultifdsink.h:
19461         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
19462         * gst/videotestsrc/gstvideotestsrc.c:
19463         (gst_videotestsrc_pattern_get_type):
19464           remove deprecated properties
19465           fix up enums to correctly have short lowercase dashed nicks
19466
19467 2005-11-22  Michael Smith <msmith@fluendo.com>
19468
19469         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
19470         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
19471           Add underscore.
19472
19473 2005-11-22  Michael Smith <msmith@fluendo.com>
19474
19475         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
19476         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
19477           Use utility method for scaling clocktime for fractional framerates.
19478
19479 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19480
19481         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
19482         (gst_visual_chain):
19483         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19484         * ext/theora/theoradec.c: (theora_handle_type_packet):
19485         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
19486         (theora_enc_chain):
19487         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19488         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
19489         * gst-libs/gst/video/video.h:
19490         * gst/ffmpegcolorspace/avcodec.h:
19491         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19492         (gst_ffmpeg_caps_to_pixfmt):
19493         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19494         (gst_ffmpegcsp_set_caps):
19495         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
19496         (gst_videorate_setcaps), (gst_videorate_blank_data),
19497         (gst_videorate_chain):
19498         * gst/videotestsrc/gstvideotestsrc.c:
19499         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
19500         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
19501         (gst_videotestsrc_event), (gst_videotestsrc_create):
19502         * gst/videotestsrc/gstvideotestsrc.h:
19503         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
19504         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
19505         (gst_ximagesink_get_times), (gst_ximagesink_init):
19506         * sys/ximage/ximagesink.h:
19507         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19508         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
19509         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
19510         * sys/xvimage/xvimagesink.h:
19511           Convert elements to use fractions for their framerate.
19512           V4L elements to come later tonight.
19513
19514 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19515
19516         * gst-libs/gst/audio/audio.c:
19517         * gst-libs/gst/audio/audio.h:
19518           remove some deprecated functions
19519
19520 2005-11-22  Andy Wingo  <wingo@pobox.com>
19521
19522         * Update for gst_tag_setter API changes.
19523
19524 2005-11-22  Andy Wingo  <wingo@pobox.com>
19525
19526         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
19527         (gst_ogg_demux_perform_seek):
19528         * ext/theora/theoradec.c (theora_dec_sink_event):
19529         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
19530         update-funcnames.
19531
19532 2005-11-22  Wim Taymans  <wim@fluendo.com>
19533
19534         * examples/seeking/seek.c: (main):
19535         Give higher priority to bus signals than the gtk events
19536         to fix a race condition in the segment looping.
19537
19538 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19539
19540         * ext/theora/Makefile.am:
19541         * ext/vorbis/Makefile.am:
19542         * gst-libs/gst/tag/Makefile.am:
19543         * gst-plugins-base.spec.in:
19544           Rename libgsttagedit to libgsttag (#322117).
19545
19546 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19547
19548         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
19549         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
19550           Call gst_x_overlay_prepare_xwindow_id() to give applications
19551           a final chance to set their own xwindow id before the video
19552           sink creates its own window.
19553
19554 2005-11-22  Julien MOUTTE  <julien@moutte.net>
19555
19556         * sys/xvimage/xvimagesink.c:
19557         (gst_xvimagesink_navigation_send_event): Handle navigation
19558         events correcly with borders if applicable.
19559
19560 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19561
19562         Patch by: Luca Ognibene
19563
19564         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19565         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
19566         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19567         (gst_ffmpegcsp_caps_remove_format_info):
19568         * gst/ffmpegcolorspace/imgconvert.c:
19569         * gst/ffmpegcolorspace/imgconvert_template.h:
19570           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
19571           #318353); use gst_structure_has_name().
19572
19573 2005-11-22  Julien MOUTTE  <julien@moutte.net>
19574
19575         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
19576         (gst_ximagesink_class_init): Add debug macros on functions.
19577         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
19578         (gst_xvimagesink_xwindow_draw_borders),
19579         (gst_xvimagesink_xvimage_put),
19580         (gst_xvimagesink_xwindow_update_geometry),
19581         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
19582         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
19583         (gst_xvimagesink_xcontext_clear),
19584         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
19585         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
19586         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
19587         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
19588         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
19589         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
19590         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
19591         expose while being PAUSED, out of data flow navigation events, etc..
19592
19593 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19594
19595         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
19596         * gst-libs/gst/audio/audio.h:
19597           fix prototype - wondering why the test worked regardless
19598
19599 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
19600
19601         * check/Makefile.am:
19602         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
19603         * gst-libs/gst/audio/audio.h:
19604           add a method that returns a proper GstClockTime
19605
19606 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19607
19608         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
19609         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
19610         * gst-libs/gst/interfaces/xoverlay.h:
19611           Remove everything having to do with the desired size; add 
19612           gst_x_overlay_prepare_xwindow_id() function; remove the
19613           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
19614           post a message on the bus instead (#321816).
19615
19616         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
19617         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
19618         (gst_xvimagesink_xoverlay_init):
19619           Remove desired size stuff (#321816).
19620
19621 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19622
19623         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19624         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
19625         (mpeg_video_type_find), (mpeg_video_stream_type_find):
19626           Terminate vararg functions with NULL instead of 0 to 
19627           make gcc4 happy.
19628
19629 2005-11-21  Andy Wingo  <wingo@pobox.com>
19630
19631         patch by: Sebastien Cote <sebas642@yahoo.ca>
19632         
19633         * gst-libs/gst/rtp/gstrtpbuffer.h: 
19634         * gst-libs/gst/rtp/gstrtpbuffer.c
19635         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
19636
19637 2005-11-21  Andy Wingo  <wingo@pobox.com>
19638
19639         * gst/playback/gstplaybin.c (gen_audio_element) 
19640         (gen_video_element): Use the new MISSING_PLUGIN core error
19641         category. Closes #320060.
19642
19643         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
19644         * gst/videorate/gstvideorate.c (gst_videorate_event):
19645         * ext/theora/theoradec.c (theora_dec_sink_event): 
19646         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
19647         stream lock.
19648
19649         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
19650         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
19651         stream lock changes.
19652
19653 2005-11-21  Wim Taymans  <wim@fluendo.com>
19654
19655         * gst-libs/gst/audio/gstbaseaudiosink.c:
19656         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
19657         (gst_base_audio_sink_provide_clock),
19658         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
19659         (gst_base_audio_sink_change_state):
19660         * gst/audioresample/gstaudioresample.c:
19661         Segment update fix.
19662
19663 2005-11-21  Andy Wingo  <wingo@pobox.com>
19664
19665         * *.h:
19666         * *.c: Ran scripts/update-macros. Oh yes.
19667
19668 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19669
19670         * sys/ximage/Makefile.am:
19671         * sys/ximage/ximage.c:
19672           Rename ximage plugin to ximagesink (#321426) (Don't forget to
19673           remove your old libgstximage.* manually if necessary).
19674
19675 2005-11-21  Michael Smith <msmith@fluendo.com>
19676
19677         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
19678           Minimal fix for bug #320200: set the min/max bitrate in the correct
19679           units. A better fix would be to upgrade to the RATEMANAGE2
19680           interface, rather than using the deprecated interface used here, but
19681           that would require an update in our libvorbis dependency (to 1.1),
19682           which is probably undesirable.
19683
19684 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19685
19686         * ext/libvisual/visual.c: (get_buffer):
19687         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19688         (gst_base_audio_src_fixate):
19689         * gst/audioconvert/gstaudioconvert.c:
19690         (gst_audio_convert_fixate_caps):
19691         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
19692         * gst/audiotestsrc/gstaudiotestsrc.c:
19693         (gst_audiotestsrc_src_fixate):
19694         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
19695         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
19696         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
19697         * gst/videotestsrc/gstvideotestsrc.c:
19698         (gst_videotestsrc_src_fixate):
19699         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
19700         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
19701           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
19702           (#322027)
19703
19704
19705 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19706
19707         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19708         (gst_riff_create_iavs_caps):
19709         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
19710         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
19711         (gst_riff_parse_info):
19712         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
19713         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
19714         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
19715           Fixes for GST_FOURCC_FORMAT API change.
19716
19717 2005-11-21  Andy Wingo  <wingo@pobox.com>
19718
19719         patch by: Alessandro Dessina <alessandro nnva org>
19720
19721         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
19722         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
19723         (gst_ogg_parse_chain):
19724         * ext/theora/theoraenc.c (theora_set_header_on_caps):
19725         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
19726         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
19727         gst_value_list calls on arrays. Fixes #321962.
19728
19729 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19730
19731         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
19732         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
19733         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
19734         * gst/adder/gstadder.c: (gst_adder_init),
19735         (gst_adder_request_new_pad), (gst_adder_collected),
19736         (gst_adder_change_state):
19737           Update for gst_collectpads_foo() to gst_collect_pads_foo()
19738           API change.
19739
19740 2005-11-21  Michael Smith <msmith@fluendo.com>
19741
19742         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
19743         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
19744           Properly handle pad_push return values.
19745
19746 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
19747
19748         * gst-libs/gst/tag/Makefile.am:
19749         * gst-libs/gst/tag/gstvorbistag.c:
19750         (gst_tag_list_to_vorbiscomment_buffer):
19751           Remove obsolete vorbistag element and debug category.
19752
19753         * gst/playback/gstplaybasebin.c: (check_queue):
19754           Don't divide by 0 when queue-threshold is 0.
19755
19756         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
19757           Don't modify an existing pixel-aspect-ratio if we fail to read
19758           a new one.
19759
19760 2005-11-20  Wim Taymans  <wim@fluendo.com>
19761
19762         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
19763         (gst_vorbisenc_push_packet):
19764         GST_PAD_IS_USABLE is gone, use the return value of
19765         the push or pad_alloc_buffer instead.
19766
19767 2005-11-18  Julien MOUTTE  <julien@moutte.net>
19768
19769         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
19770         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
19771         (gst_ximagesink_ximage_destroy),
19772         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
19773         (gst_ximagesink_xwindow_new),
19774         (gst_ximagesink_xwindow_update_geometry),
19775         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
19776         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
19777         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
19778         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
19779         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
19780         (gst_ximagesink_navigation_send_event),
19781         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
19782         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
19783         (gst_ximagesink_finalize), (gst_ximagesink_init),
19784         (gst_ximagesink_class_init):
19785         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
19786         This new version brings correct software scaling, non flickering
19787         window while resizing, pixel aspect ratio handling, usage of
19788         hardware buffer pools, out of data flow event thread for 
19789         navigation and handling of expose events even when being PAUSED,
19790         a new property to keep video aspect ratio when resizing, etc...
19791
19792 2005-11-18  Julien MOUTTE  <julien@moutte.net>
19793
19794         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
19795         (gst_videoscale_fixate_caps): Introduce back caps fixate with
19796         handling of PAR.
19797
19798 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
19799
19800         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
19801         Unsetting IS_SINK flag from the fakesink, so decodebin
19802         never behaves as a sink.
19803
19804 2005-11-17  Wim Taymans  <wim@fluendo.com>
19805
19806         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19807         (gst_base_audio_src_change_state):
19808         Fix the audiosrc base class again, we did not unflush.
19809
19810 2005-11-17  Julien MOUTTE  <julien@moutte.net>
19811
19812         * examples/seeking/seek.c: (make_dv_pipeline),
19813         (make_vorbis_theora_pipeline), (make_avi_pipeline),
19814         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
19815         to ogg/vorbis/theora pipeline.
19816
19817 2005-11-17  Wim Taymans  <wim@fluendo.com>
19818
19819         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
19820         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
19821         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
19822         Fix EOS on multiple streams.
19823         More debugging.
19824
19825 2005-11-16  Wim Taymans  <wim@fluendo.com>
19826
19827         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
19828         (gst_ogg_demux_perform_seek):
19829         Segment done must include stream time.
19830
19831         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
19832         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
19833         (gst_ogg_mux_change_state):
19834         Fix ogg muxer again.
19835
19836 2005-11-16  Wim Taymans  <wim@fluendo.com>
19837
19838         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
19839         Fix compile again.
19840
19841 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
19842
19843         * ext/libvisual/visual.c: (gst_visual_init):
19844         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
19845         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
19846         (gst_ogg_parse_chain):
19847         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
19848         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
19849         * ext/theora/theoradec.c: (gst_theora_dec_init):
19850         * ext/theora/theoraenc.c: (gst_theora_enc_init):
19851         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
19852         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
19853         * gst/adder/gstadder.c: (gst_adder_class_init),
19854         (gst_adder_dispose):
19855         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
19856         * gst/subparse/gstsubparse.c: (gst_subparse_init):
19857         * gst/videorate/gstvideorate.c: (gst_videorate_init):
19858           Fix a whole set of pad template leaks
19859
19860 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
19861
19862         * check/generic/states.c: (GST_START_TEST):
19863           fix the test so that it only checks for elements that are part of
19864           this source module
19865
19866 2005-11-16  Michael Smith <msmith@fluendo.com>
19867
19868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
19869         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
19870         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
19871         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
19872         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
19873         (gst_ogg_mux_change_state):
19874           Fix leaking collectpads.
19875
19876 2005-11-16  Edward Hervey  <edward@fluendo.com>
19877
19878         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
19879         (gst_videorate_event), (gst_videorate_chain):
19880         Handle segment seeks
19881
19882 2005-11-16  Wim Taymans  <wim@fluendo.com>
19883
19884         * gst-libs/gst/audio/gstbaseaudiosink.c:
19885         (gst_base_audio_sink_provide_clock),
19886         (gst_base_audio_sink_change_state):
19887         Set ringbuffer to non-flushing when going to PAUSED, set to
19888         flushing again when going to READY.
19889
19890         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
19891         (gst_ring_buffer_stop):
19892         Start in flushing mode by default.
19893         Don't set flushing in the _stop method, let the app call
19894         this explicitly.
19895
19896 2005-11-16  Julien MOUTTE  <julien@moutte.net>
19897
19898         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
19899         * gst-libs/gst/video/videosink.h: Add helper function needed
19900         for video sinks.
19901
19902 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
19903
19904         * gst/videoscale/gstvideoscale.c:
19905         (gst_videoscale_handle_src_event):
19906           Don't leak reference to pad parent.
19907
19908 2005-11-16  Wim Taymans  <wim@fluendo.com>
19909
19910         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
19911         Set ringbuffer to flushing when stopping so that we don't
19912         block on wait_segment anymore and livelock.
19913
19914 2005-11-16  Wim Taymans  <wim@fluendo.com>
19915
19916         * examples/seeking/seek.c: (send_event), (do_seek),
19917         (loop_toggle_cb), (segment_done), (main):
19918         Added looping checkbox.
19919
19920 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
19921
19922         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
19923         (gst_ogg_demux_init):
19924         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
19925         (gst_vorbis_dec_init):
19926           revert unrefs, they don't pass make check
19927
19928 2005-11-15  Johan Dahlin  <johan@gnome.org>
19929
19930         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
19931         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
19932         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
19933         (gst_vorbis_dec_init):
19934         Fix pad template leaks. 
19935
19936 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
19937
19938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
19939           Make state change function thread safe.
19940
19941 2005-11-15  Edward Hervey  <edward@fluendo.com>
19942
19943         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
19944         (gst_ogg_demux_class_init):
19945         Implement GstElement::send_event, so we can send seek events
19946         in GST_STATE_READY
19947
19948 2005-11-14  Julien MOUTTE  <julien@moutte.net>
19949
19950         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
19951         Discovered how to take away flickering while resizing the
19952         window. Please don't put that in ximagesink, refactoring in
19953         progress.
19954
19955 2005-11-14  Michael Smith <msmith@fluendo.com>
19956
19957         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
19958         (gst_multifdsink_render):
19959           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
19960
19961 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
19962
19963         * gst/playback/gstplaybin.c: (gen_audio_element):
19964           Use autoaudiosink, it tends to be more widely available than
19965           autoaudiiosink.
19966           
19967 2005-11-14  Andy Wingo  <wingo@pobox.com>
19968
19969         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
19970         as well if it is available. Fixes #316442.
19971
19972 2005-11-14  Michael Smith <msmith@fluendo.com>
19973
19974         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
19975         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
19976         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
19977         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
19978         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
19979         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
19980         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
19981         (gst_vorbisenc_change_state):
19982           Fix a small memory leak in vorbisenc.
19983           Fix large memory leaks in oggmux, also fix lots of state change
19984           bugs in oggmux.
19985
19986 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19987
19988         * gst/videotestsrc/gstvideotestsrc.c:
19989         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
19990         (gst_videotestsrc_src_fixate):
19991           move fixation to a fixate function
19992           remove negotiate function, basesrc's is good enough
19993           fixes a bug for check when using the element alone
19994
19995 2005-11-13  Edward Hervey  <edward@fluendo.com>
19996
19997         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
19998         (key_toggle_cb), (main):
19999         Added checkboxes for adding/removing the accurate and key_unit seek
20000         flags.
20001
20002 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20003
20004         * configure.ac: back to HEAD
20005
20006 === release 0.9.5 ===
20007
20008 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20009
20010         * configure.ac:
20011           releasing 0.9.5, "No No Kia"
20012
20013 2005-11-11  Edward Hervey  <edward@fluendo.com>
20014
20015         * examples/seeking/seek.c: (make_parselaunch_pipeline):
20016         Added parse-launch syntax seeking mode for the seeking example.
20017         This should help stress-test even more cases.
20018         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
20019
20020 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20021
20022         * sys/xvimage/xvimagesink.c:
20023         (gst_xvimagesink_navigation_send_event):
20024           Check whether peer pad exists before sending navigation events
20025           to it.
20026
20027 2005-11-11  Michael Smith <msmith@fluendo.com>
20028
20029         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
20030         (gst_vorbisenc_buffer_from_packet):
20031         * ext/vorbis/vorbisenc.h:
20032           Set duration on encoded buffers. This allows oggmux's
20033           max_page_delay parameter to actually work.
20034
20035 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20036
20037         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20038         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
20039         (gst_ffmpegcsp_avpicture_fill):
20040         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20041         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
20042           Make palettes work again (see #132341). Use our own macros
20043           for rounding up.
20044
20045 2005-11-10  Andy Wingo  <wingo@pobox.com>
20046
20047         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
20048         string doober.
20049
20050 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20051
20052         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20053         (gst_ffmpegcsp_transform_caps):
20054           Prefer passthrough in transform_caps
20055
20056 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20057
20058         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
20059           check for ALSA errors properly, instead of relying on ALSA's
20060           error strings to serve to the user.
20061
20062 2005-11-10  Wim Taymans  <wim@fluendo.com>
20063
20064         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
20065         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
20066         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
20067         Modernise the seek code.
20068
20069 2005-11-10  Michael Smith <msmith@fluendo.com>
20070         
20071         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
20072         (setup_substreams), (set_active_source):
20073           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
20074           trying to go to NULL if we failed to read a file.
20075
20076 2005-11-10  Wim Taymans  <wim@fluendo.com>
20077
20078         * gst/audiotestsrc/gstaudiotestsrc.c:
20079         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
20080         (gst_audiotestsrc_create):
20081         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20082         (gst_sinesrc_get_times), (gst_sinesrc_create):
20083         * gst/videotestsrc/gstvideotestsrc.c:
20084         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
20085         (gst_videotestsrc_create):
20086         The base class can now sync for us.
20087
20088 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20089
20090         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
20091           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
20092           name=source autoprobe=false autoprobe-fps=false copy-mode=1
20093           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
20094           format=(fourcc)I420" ! xvimagesink
20095
20096 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
20097
20098         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20099         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
20100         (gst_sinesrc_newsegment):
20101           Send newsegment event in TIME format, set duration if
20102           num-buffers is set, fix duration querying.
20103
20104 2005-11-10  Michael Smith <msmith@fluendo.com>
20105
20106         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20107         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20108         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20109         (gst_ogg_mux_collected):
20110          Fix EOS handling, partially. Now forwarding an EOS event once we have
20111          EOS on all pads works correctly. However, we still don't properly set
20112          EOS on the actual ogg stream pages.
20113
20114 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
20115
20116         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
20117           Set elements to NULL state before disposing of them.
20118
20119 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
20120
20121         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20122
20123         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20124         (gst_base_rtp_depayload_init),
20125         (gst_base_rtp_depayload_set_gst_timestamp):
20126         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20127           We need to send a newsegment event for each instance, not
20128           just for the first instance of this class (get rid of
20129           static variable in function). (#321011).
20130           
20131 2005-11-08  Michael Smith <msmith@fluendo.com>
20132
20133         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20134         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
20135         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
20136         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
20137           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
20138           This makes us mux things correctly according to the ogg muxing
20139           rules. Still not handling EOS correctly right now, though.
20140
20141 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20142
20143         * gst/audioconvert/gstaudioconvert.c:
20144           Fix typo in docs. 
20145
20146 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20147
20148         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
20149         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
20150           Initialise segment_stop to GST_CLOCK_TIME_NONE when
20151           creating a new chain; should fix live streaming. Also
20152           add more debug output and fix a typo.
20153
20154 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
20155
20156         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20157
20158         * gst/volume/gstvolume.c: (volume_set_caps):
20159           Fix compilation on Solaris with Forte. (#320923)
20160
20161 2005-11-08  Wim Taymans  <wim@fluendo.com>
20162
20163         * gst-libs/gst/audio/gstbaseaudiosink.c:
20164         (gst_base_audio_sink_render):
20165         No need to do a typecheck.
20166
20167 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20168
20169         * ext/alsa/gstalsa.h:
20170           We register a debug category, so let's use it.
20171
20172 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
20173
20174         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20175         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
20176         Fixed a small problem.
20177
20178 2005-11-04  Wim Taymans  <wim@fluendo.com>
20179
20180         * examples/seeking/Makefile.am:
20181         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
20182         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
20183         (make_playerbin_pipeline), (format_value), (update_scale),
20184         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
20185         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
20186         (print_usage), (main):
20187         Added app for playback speed testing.
20188
20189         * examples/seeking/seek.c: (dynamic_link),
20190         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
20191         (make_mpeg_pipeline), (do_seek), (set_update_scale),
20192         (message_received), (main):
20193         Updated seek example.
20194
20195 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
20196
20197         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20198         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20199         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
20200         (gst_base_rtp_depayload_set_clock):
20201         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20202         Don't sleep on the bench (system clock) when you have a nice 
20203         comfortable bed (Gstreamer clock) to sleep on.
20204
20205 2005-11-03  Wim Taymans  <wim@fluendo.com>
20206
20207         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20208         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
20209         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
20210         Handle the case where a pad_block failed.
20211
20212 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
20213
20214         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
20215
20216         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20217         (gst_base_rtp_depayload_add_to_queue),
20218         (gst_base_rtp_depayload_push),
20219         (gst_base_rtp_depayload_set_gst_timestamp),
20220         (gst_base_rtp_depayload_queue_release):
20221           Fixes some bugs in the depayloader's queuing/de-queueing code.
20222
20223 2005-10-31  Michael Smith <msmith@fluendo.com>
20224
20225         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
20226         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20227         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
20228           Patch from Alessandro Decina <alessandro@nnva.org>.
20229           Make oggdemux only find the final time in a chain, not per-pad,
20230           since the per-pad information can be very expensive to locate, and
20231           it isn't used anywhere. This makes reading a file containing
20232           OggSkeleton reasonably fast.
20233           Also, make chain finding work when there are logical bitstreams that
20234           can't be decoded. Fixes #319110.
20235
20236 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20237
20238         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20239         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20240         (gst_base_rtp_depayload_chain),
20241         (gst_base_rtp_depayload_add_to_queue),
20242         (gst_base_rtp_depayload_push),
20243         (gst_base_rtp_depayload_set_gst_timestamp),
20244         (gst_base_rtp_depayload_queue_release),
20245         (gst_base_rtp_depayload_start_thread),
20246         (gst_base_rtp_depayload_set_property),
20247         (gst_base_rtp_depayload_get_property):
20248         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20249         Some random fixes, to fullfill the desires of thomas.
20250
20251 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20252
20253         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20254         (gst_base_rtp_depayload_add_to_queue),
20255         (gst_base_rtp_depayload_push):
20256         Fixed the queueing algorithm.
20257
20258 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20259
20260         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20261         (gst_base_rtp_depayload_push):
20262         A small fix
20263
20264 2005-10-31  Wim Taymans  <wim@fluendo.com>
20265
20266         * gst-libs/gst/audio/gstringbuffer.h:
20267         Don't break ABI.
20268
20269         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20270         (gst_ffmpeg_caps_to_pixfmt):
20271         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20272         (gst_ffmpegcsp_set_caps):
20273         Some more comments.
20274         Handle missing required caps fields better.
20275
20276 2005-10-31  Wim Taymans  <wim@fluendo.com>
20277
20278         * gst-libs/gst/audio/gstbaseaudiosink.c:
20279         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
20280         (gst_base_audio_sink_render):
20281         * gst-libs/gst/audio/gstringbuffer.c:
20282         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
20283         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
20284         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
20285         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
20286         (gst_ring_buffer_read):
20287         * gst-libs/gst/audio/gstringbuffer.h:
20288         Add flushing mode to the ringbuffer so that it in all cases does
20289         not try to handle more audio. This makes sure it does not try to
20290         block anymore when flushing and fixes a livelock.
20291
20292 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
20293
20294         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
20295         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
20296         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
20297           Explicitly check for -1 values before doing a conversion
20298           and always map them to -1. (#315545)
20299
20300 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
20301
20302         * gst/playback/gstplaybin.c: (gen_video_element):
20303           first try autovideosink, then xvimagesink, then error out
20304         * po/POTFILES.in:
20305           add translatable file
20306         * po/af.po:
20307         * po/az.po:
20308         * po/cs.po:
20309         * po/en_GB.po:
20310         * po/hu.po:
20311         * po/it.po:
20312         * po/nb.po:
20313         * po/nl.po:
20314         * po/or.po:
20315         * po/sq.po:
20316         * po/sr.po:
20317         * po/sv.po:
20318         * po/uk.po:
20319         * po/vi.po:
20320           update translations
20321
20322 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
20323
20324         * gst-libs/gst/rtp/gstbasedepayload.c:
20325         * gst-libs/gst/rtp/gstbasedepayload.h:
20326           Minor cleanups
20327
20328 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
20329
20330         * gst/playback/.cvsignore:
20331         * gst/playback/decodetest.c:
20332         * gst/playback/test3.c:
20333           Port these two tests as well.
20334
20335 2005-10-27  Wim Taymans  <wim@fluendo.com>
20336
20337         * ext/theora/theoradec.c: (theora_dec_src_query),
20338         (theora_dec_sink_event):
20339         * ext/theora/theoraenc.c: (theora_enc_sink_event),
20340         (theora_enc_change_state):
20341         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
20342         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
20343         Take proper locks when handling events.
20344
20345 2005-10-27  Wim Taymans  <wim@fluendo.com>
20346
20347         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
20348         (gst_adder_change_state):
20349         Fix timestamps and fix deadlock when stopping the collectpads.
20350
20351 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
20352
20353         * gst-libs/gst/rtp/gstrtpbuffer.h:
20354         Declaring the payload types as strings too so that they can be used
20355         in the padtemplate inialization.
20356
20357 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
20358
20359         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
20360
20361         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20362         (gst_base_rtp_depayload_class_init):
20363         Fixes a small but nasty bug. The derived elements no longer segfaults
20364         on finalization.
20365
20366 2005-10-26  Michael Smith <msmith@fluendo.com>
20367
20368         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
20369           When clearing an audioconvert context, set tmpbufsize to zero, so
20370           we'll allocate it again later if required.
20371           This fixes audioconvert re-negotiating formats, which previously
20372           segfaulted with a NULL destination buffer.
20373
20374 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
20375
20376         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20377         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
20378         (gst_base_rtp_depayload_set_gst_timestamp),
20379         (gst_base_rtp_depayload_queue_release):
20380         Fixed a smalll memleak.
20381
20382 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
20383         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20384         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
20385         (gst_base_rtp_depayload_finalize),
20386         (gst_base_rtp_depayload_setcaps),
20387         (gst_base_rtp_depayload_add_to_queue),
20388         (gst_base_rtp_depayload_push),
20389         (gst_base_rtp_depayload_set_gst_timestamp),
20390         (gst_base_rtp_depayload_queue_release),
20391         (gst_base_rtp_depayload_thread),
20392         (gst_base_rtp_depayload_change_state):
20393         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20394         Changed the C++ comments to C comments
20395
20396 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
20397
20398         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
20399         * gst/tcp/gsttcpclientsrc.h:
20400         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
20401         * gst/tcp/gsttcpserversrc.h:
20402           Remove unused 'curoffset' structure member.
20403
20404 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
20405
20406         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20407         (gst_base_rtp_depayload_base_init),
20408         (gst_base_rtp_depayload_finalize):
20409         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20410         * gst-libs/gst/rtp/gstbasertppayload.h:
20411           The pad-template on the sinkpad should be set by the derived classes.
20412           Also added some useful macros.
20413
20414 2005-10-24  Wim Taymans  <wim@fluendo.com>
20415
20416         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
20417         Correctly flush decoder samples even if we could not
20418         copy them to an output buffer. Fixes #319618.
20419
20420 2005-10-24  Julien MOUTTE  <julien@moutte.net>
20421
20422         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
20423         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
20424         the caps against our xcontext caps.
20425
20426 2005-10-24  Wim Taymans  <wim@fluendo.com>
20427
20428         * gst-libs/gst/audio/gstbaseaudiosink.c:
20429         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
20430         Remove g_print
20431         Use sync property from baseclass to disable sync.
20432
20433 2005-10-24  Wim Taymans  <wim@fluendo.com>
20434
20435         * gst-libs/gst/audio/gstbaseaudiosink.c:
20436         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
20437         Buffers with no timestamps get aligned with previous buffers or
20438         on underrun, played ASAP.
20439
20440 2005-10-24  Julien MOUTTE  <julien@moutte.net>
20441
20442         * gst-libs/gst/video/video.h:
20443         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20444         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
20445         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
20446         here comes my change on caps for framerate and geometry range.
20447         We are now accepting 1 to MAXINT for width and height, and from
20448         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
20449         to be blended correctly in videomixer.
20450
20451 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
20452
20453         * configure.ac:
20454           back to HEAD
20455
20456 === release 0.9.4 ===
20457
20458 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20459
20460         * NEWS:
20461         * RELEASE:
20462         * configure.ac:
20463           releasing 0.9.4, "Velociraptor"
20464
20465 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20466
20467         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
20468         * po/POTFILES.in:
20469           STOPPED -> FAILED
20470
20471 2005-10-21  Wim Taymans  <wim@fluendo.com>
20472
20473         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20474         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
20475         (pad_blocked), (close_pad_link), (new_pad):
20476         Don't try to remove elements twice.
20477
20478 2005-10-21  Wim Taymans  <wim@fluendo.com>
20479
20480         * ext/theora/theoradec.c: (theora_dec_src_query),
20481         (theora_dec_sink_event):
20482         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20483         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
20484         (vorbis_handle_data_packet):
20485         * ext/vorbis/vorbisdec.h:
20486         Fix old naming.
20487
20488         * gst-libs/gst/audio/gstbaseaudiosink.c:
20489         (gst_base_audio_sink_render):
20490         Don't try to sync on buffers without a timestamp.
20491
20492 2005-10-21  Wim Taymans  <wim@fluendo.com>
20493
20494         * ext/theora/theoradec.c: (theora_dec_src_query),
20495         (theora_dec_sink_event):
20496         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20497         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
20498         (vorbis_handle_data_packet):
20499         * ext/vorbis/vorbisdec.h:
20500         Fix old naming.
20501
20502 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20503
20504         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
20505         (gst_vorbisenc_src_query):
20506           Implement position and duration queries.
20507
20508         * gst/playback/test3.c: (update_scale), (main):
20509           Fix for async state changes and print nicer output.
20510
20511 2005-10-20  Wim Taymans  <wim@fluendo.com>
20512
20513         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
20514         (dump_element_stats), (main):
20515         * gst/playback/test6.c: (main):
20516         Fix tests again
20517
20518 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20519
20520         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
20521         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
20522           Don't use functions for position queries when handling
20523           duration queries.
20524
20525 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20526
20527         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20528         (vorbis_handle_data_packet), (vorbis_dec_chain),
20529         (vorbis_dec_change_state):
20530         * ext/vorbis/vorbisdec.h:
20531           Vorbis streams can be embedded in other container formats
20532           than ogg, container formats where the demuxer might set 
20533           timestamps on encoded vorbis buffers instead of those silly 
20534           granulepos thingies. In short: make vorbisdec handle 
20535           timestamps on incoming buffers as well.
20536
20537 2005-10-20  Wim Taymans  <wim@fluendo.com>
20538
20539         * gst/playback/gstplaybasebin.c: (group_destroy),
20540         (gst_play_base_bin_change_state):
20541         Fix leak.
20542         Handle case where playbasebin is now ASYNC because
20543         decodebin is.
20544
20545 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
20546
20547         * gst/audioconvert/Makefile.am:
20548         * gst/audioconvert/bufferframesconvert.c:
20549         * gst/audioconvert/plugin.c: (plugin_init):
20550         * gst/audioconvert/plugin.h:
20551           And bye bye buffer-frames-convert
20552
20553 2005-10-19  Wim Taymans  <wim@fluendo.com>
20554
20555         * check/elements/audioconvert.c:
20556         * docs/libs/tmpl/gstaudio.sgml:
20557         * docs/libs/tmpl/gstcolorbalance.sgml:
20558         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20559         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
20560         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
20561         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
20562         * gst-libs/gst/audio/audio.h:
20563         * gst/audioconvert/audioconvert.h:
20564         * gst/audioconvert/gstaudioconvert.c:
20565         (gst_audio_convert_parse_caps):
20566         * gst/volume/gstvolume.c:
20567         Bye bye buffer-frames.
20568
20569 2005-10-19  Wim Taymans  <wim@fluendo.com>
20570
20571         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
20572         (query_positions_elems), (query_positions_pads), (update_scale),
20573         (do_seek), (set_update_scale), (message_received), (main):
20574         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
20575         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
20576         (gst_ogg_demux_loop):
20577         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
20578         * ext/theora/theoradec.c: (theora_dec_src_query),
20579         (theora_dec_sink_event):
20580         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20581         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
20582         * gst/adder/gstadder.c: (gst_adder_query):
20583         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
20584         * gst/playback/test3.c: (update_scale):
20585         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
20586         (dump_element_stats), (main):
20587         * gst/playback/test6.c: (main):
20588         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
20589         Query API update.
20590
20591 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
20592
20593         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
20594         (xml_check_first_element), (xml_type_find), (smil_type_find),
20595         (plugin_init):
20596           Add typefinding for SMIL and for generic XML. Based on patch by
20597           Akos Maroy (#308663).
20598
20599 2005-10-18  Wim Taymans  <wim@fluendo.com>
20600
20601         * gst/playback/Makefile.am:
20602         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20603         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
20604         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
20605         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
20606         (gst_decode_bin_change_state):
20607         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20608         (gst_play_bin_send_event_to_sink):
20609         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
20610         (dump_element_stats), (main):
20611         * gst/playback/test6.c: (main):
20612         Make playbin async, it'll commit state to paused when all streams
20613         are detected.
20614         Remove ugly hack.
20615         Added test6.c to show async behaviour.
20616
20617 2005-10-18  Wim Taymans  <wim@fluendo.com>
20618
20619         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
20620         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
20621         Fix for segment-start/stop API change.
20622
20623 2005-10-18  Wim Taymans  <wim@fluendo.com>
20624
20625         * check/Makefile.am:
20626         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
20627         (main):
20628         Add future test for clock selection.
20629
20630 2005-10-18  Wim Taymans  <wim@fluendo.com>
20631
20632         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
20633         (gst_alsasink_close):
20634         Set handle to NULL.
20635
20636         * gst-libs/gst/audio/gstringbuffer.c:
20637         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
20638         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
20639         (gst_ring_buffer_start), (gst_ring_buffer_pause),
20640         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
20641         (gst_ring_buffer_read):
20642         More debug info.
20643
20644 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
20645
20646         * gst/audiotestsrc/Makefile.am:
20647         * gst/sine/Makefile.am:
20648         * gst/volume/Makefile.am:
20649           fix broken build of controllerized plugins
20650
20651 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
20652
20653         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20654
20655         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20656         (gst_riff_create_video_template_caps):
20657           Add support for Indeo-3 (IV32).
20658
20659 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20660
20661         * configure.ac:
20662           rewrite
20663
20664 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20665
20666         * gst-libs/gst/video/video.c: (gst_video_get_size):
20667         * gst/audiotestsrc/gstaudiotestsrc.c:
20668           doc updates
20669
20670 2005-10-17  Andy Wingo  <wingo@pobox.com>
20671
20672         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
20673         with the collectpads change.
20674         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
20675
20676         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
20677
20678         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
20679
20680         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
20681         alloc_buffer flow return to callers.
20682         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
20683         change. Fix some memleaks in theoraenc.
20684
20685         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
20686         in strange circumstance.
20687
20688 2005-10-17  Julien MOUTTE  <julien@moutte.net>
20689
20690         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20691         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
20692         from caps, let's use the caps...
20693
20694 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20695
20696         * configure.ac:
20697           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
20698
20699 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20700
20701         * gst-libs/gst/interfaces/Makefile.am:
20702           fix silly typo
20703
20704 2005-10-16  Andy Wingo  <wingo@pobox.com>
20705
20706         * gst/playback/gstdecodebin.c
20707         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
20708         function!
20709         (try_to_link_1): Increase kraziness level.
20710
20711 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20712
20713         * configure.ac:
20714           restructure like the core one
20715         * gst-libs/gst/audio/Makefile.am:
20716         * gst-libs/gst/interfaces/Makefile.am:
20717         * gst-libs/gst/net/Makefile.am:
20718         * gst-libs/gst/riff/Makefile.am:
20719         * gst-libs/gst/rtp/Makefile.am:
20720         * gst-libs/gst/tag/Makefile.am:
20721         * gst-libs/gst/video/Makefile.am:
20722           use correct linker flags, now the libs are properly versioned
20723         * check/elements/audioconvert.c: (verify_convert):
20724         * ext/alsa/gstalsaplugin.c:
20725         * ext/cdparanoia/gstcdparanoia.c:
20726         * ext/gnomevfs/gstgnomevfs.c:
20727         * ext/libvisual/visual.c:
20728         * ext/ogg/gstogg.c:
20729         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
20730         * ext/theora/theora.c:
20731         * ext/vorbis/vorbis.c:
20732         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
20733         * gst-libs/gst/tag/gsttagediting.c:
20734         * gst-libs/gst/video/video.c:
20735         * gst/adder/gstadder.c:
20736         * gst/audioconvert/plugin.c:
20737         * gst/audiorate/gstaudiorate.c:
20738         * gst/audioresample/gstaudioresample.c:
20739         * gst/audioresample/resample_ref.c: (resample_scale_ref):
20740         * gst/audioscale/gstaudioscale.c:
20741         * gst/audioscale/resample.c:
20742         * gst/audiotestsrc/gstaudiotestsrc.c:
20743         * gst/ffmpegcolorspace/gstffmpeg.c:
20744         * gst/playback/gstdecodebin.c: (close_pad_link):
20745         * gst/playback/gstplaybin.c: (gen_video_element),
20746         (gen_audio_element):
20747         * gst/sine/gstsinesrc.c:
20748         * gst/subparse/gstsubparse.c:
20749         * gst/tags/gsttagediting.c:
20750         * gst/tcp/gsttcpplugin.c:
20751         * gst/typefind/gsttypefindfunctions.c:
20752         * gst/videorate/gstvideorate.c:
20753         * gst/videoscale/gstvideoscale.c:
20754         * gst/videotestsrc/gstvideotestsrc.c:
20755         * gst/volume/gstvolume.c:
20756         * sys/v4l/gstv4l.c:
20757         * sys/ximage/ximage.c:
20758         * sys/xvimage/xvimagesink.c:
20759           fix up defines
20760
20761 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
20762
20763         * ext/vorbis/vorbisenc.c:
20764         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
20765         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
20766         (gst_tag_to_vorbis_comments):
20767           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
20768
20769 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
20770
20771         * examples/stats/mp2ogg.c:
20772         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20773           typo fixes
20774
20775 2005-10-13  Michael Smith <msmith@fluendo.com>
20776
20777         * ext/ogg/gstoggmux.c:
20778           Use magic glib macros to define constants as 64 bit, to ensure
20779           appropriate vararg passing.
20780
20781 2005-10-13  Michael Smith <msmith@fluendo.com>
20782
20783         * ext/ogg/gstoggmux.c:
20784         * gst/audioconvert/audioconvert.c: (float):
20785           Don't use LL suffix, as it's not portable, and neither of these
20786           uses required it anyway.
20787
20788 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
20789
20790         * examples/indexing/indexmpeg.c: (main):
20791         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
20792         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
20793         (cdparanoia_convert), (cdparanoia_query):
20794         * ext/cdparanoia/gstcdparanoia.h:
20795         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20796         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
20797         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
20798         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
20799         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
20800         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
20801         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
20802         (gst_multifdsink_render), (gst_multifdsink_start),
20803         (gst_multifdsink_stop):
20804         * gst/tcp/gstmultifdsink.h:
20805         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
20806         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
20807         (gst_tcpclientsink_stop):
20808         * gst/tcp/gsttcpclientsink.h:
20809         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
20810         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
20811         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
20812         * gst/tcp/gsttcpclientsrc.h:
20813         * gst/tcp/gsttcpserversink.h:
20814         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
20815         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
20816         (gst_tcpserversrc_stop):
20817         * gst/tcp/gsttcpserversrc.h:
20818         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
20819         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
20820         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
20821           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
20822           moved bitshift from macro to enum definition
20823
20824 2005-10-12  Wim Taymans  <wim@fluendo.com>
20825
20826         * examples/seeking/Makefile.am:
20827         Oops.
20828
20829 2005-10-12  Wim Taymans  <wim@fluendo.com>
20830
20831         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
20832         (gst_ring_buffer_read), (gst_ring_buffer_clear):
20833         Don't assert on normal stuff.
20834
20835         * gst/playback/gstplaybin.c: (do_playbin_seek):
20836         API fix.
20837
20838 2005-10-12  Wim Taymans  <wim@fluendo.com>
20839
20840         * check/pipelines/simple_launch_lines.c: (run_pipeline):
20841         * examples/seeking/Makefile.am:
20842         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
20843         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
20844         (do_seek), (set_update_scale), (message_received), (main):
20845         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
20846         (gst_ring_buffer_read), (gst_ring_buffer_clear):
20847         Update for _get_state() API change.
20848
20849 2005-10-11  Wim Taymans  <wim@fluendo.com>
20850
20851         * gst-libs/gst/audio/gstbaseaudiosink.c:
20852         (gst_base_audio_sink_render):
20853         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20854         (gst_base_audio_src_create):
20855         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
20856         (gst_ring_buffer_read):
20857         Cleanups.
20858         Commit and read from ringbuffer in samples rather than bytes.
20859
20860 2005-10-11  Wim Taymans  <wim@fluendo.com>
20861
20862         * gst-libs/gst/audio/gstbaseaudiosink.c:
20863         (gst_base_audio_sink_render):
20864         Respect segment rate and accum when scheduling samples.
20865
20866 2005-10-11  Julien MOUTTE  <julien@moutte.net>
20867
20868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
20869         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
20870         EOS correctly, that needs more work.
20871
20872 2005-10-11  Wim Taymans  <wim@fluendo.com>
20873
20874         * check/generic/states.c: (GST_START_TEST):
20875         remove old property.
20876
20877         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
20878         (gst_ogg_demux_perform_seek):
20879         * ext/theora/theoradec.c: (theora_dec_sink_event):
20880         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20881         (vorbis_handle_data_packet):
20882         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20883         (gst_base_rtp_depayload_set_gst_timestamp):
20884         * gst/videorate/gstvideorate.c: (gst_videorate_event):
20885         Update for newsegment API change.
20886
20887 2005-10-11  Michael Smith <msmith@fluendo.com>
20888
20889         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
20890         (do_playbin_seek), (gst_play_bin_send_event):
20891           Override send_event differently, so that we can takes bits of
20892           functionality from GstPipeline (special handling for seeks,
20893           including pausing/resuming, and resetting stream time) and still get
20894           the appropriate behaviour of only forwarding event to a single sink,
20895           rather than all of them.
20896           Unfortunately requires a lot of code duplication, but the
20897           alternatives are equally ugly in the end.
20898
20899 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20900
20901         * check/elements/audioconvert.c: (setup_audioconvert),
20902         (cleanup_audioconvert), (get_int_caps), (verify_convert),
20903         (GST_START_TEST), (audioconvert_suite):
20904           clean up tests a little, fix some leaks.
20905
20906 2005-10-10  Wim Taymans  <wim@fluendo.com>
20907
20908         * ext/alsa/gstalsasink.c:
20909         Also allow unsigned int.
20910
20911         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20912         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
20913         Small cleanup
20914
20915 2005-10-10  Wim Taymans  <wim@fluendo.com>
20916
20917         * check/pipelines/simple_launch_lines.c: (run_pipeline):
20918         Small update, use API as stated in design docs.
20919
20920         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
20921         (update_scale), (do_seek), (seek_cb), (set_update_scale),
20922         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
20923         (message_received), (main):
20924         Updated seek example for GOption. Some usability improvements.
20925
20926 2005-10-10  Wim Taymans  <wim@fluendo.com>
20927
20928         * gst/audioconvert/audioconvert.h:
20929         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
20930         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
20931         Alloc temp storage somewhere else where we can do it more
20932         portable.
20933
20934 2005-10-10  Wim Taymans  <wim@fluendo.com>
20935
20936         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
20937         (gst_tcpserversrc_start):
20938         Don't block in accept while doing the state change, move
20939         to poll and make cancellable.
20940
20941 2005-10-09  Philippe Khalaf <burger@speedy.org>
20942
20943         * gst-libs/gst/rtp/rtpbasedepayload.c:
20944         Set timestamp and add queue delay to timestamp
20945         * gst-libs/gst/rtp/rtpbuffer.h:
20946         Set correct payload type for h263
20947
20948 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
20949
20950         * gst/audiotestsrc/gstaudiotestsrc.c:
20951         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
20952         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
20953         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
20954         (gst_audiotestsrc_create_triangle),
20955         (gst_audiotestsrc_create_silence),
20956         (gst_audiotestsrc_create_white_noise),
20957         (gst_audiotestsrc_init_pink_noise),
20958         (gst_audiotestsrc_generate_pink_noise_value),
20959         (gst_audiotestsrc_create_pink_noise),
20960         (gst_audiotestsrc_change_wave):
20961         * gst/audiotestsrc/gstaudiotestsrc.h:
20962           fixed typo, added pink noise
20963
20964 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
20965
20966         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
20967         (plugin_init):
20968           Add wavpack and spc typefind functions from 0.8 branch.
20969
20970 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
20971
20972         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
20973         (ar_type_find), (msdos_type_find), (plugin_init):
20974           Add typefind functions for tar archives, ar archives,
20975           RAR archives, and msdos-executables (dlls, exe, etc.).
20976           Some of those would be wrongly identified as mpeg
20977           streams of some sort before (#315550).
20978
20979 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
20980
20981         * configure.ac:
20982         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20983         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20984         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
20985         * gst/audiotestsrc/Makefile.am:
20986         * gst/audiotestsrc/gstaudiotestsrc.c:
20987         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
20988         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
20989         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
20990         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
20991         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
20992         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
20993         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
20994         (gst_audiotestsrc_create_silence),
20995         (gst_audiotestsrc_create_white_noise),
20996         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
20997         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
20998         (gst_audiotestsrc_start), (plugin_init):
20999         * gst/audiotestsrc/gstaudiotestsrc.h:
21000           add new plugin and element
21001         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
21002           use gobject_class
21003
21004 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21005
21006         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
21007         (gst_adder_init), (gst_adder_request_new_pad),
21008         (gst_adder_change_state):
21009           Add query function to source pad, so adder reports the correct
21010           time/sample position when queried (#315457); fix state change
21011           function; use GST_DEBUG_FUNCPTR() for pad functions.
21012
21013 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21014
21015         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
21016           Fix leaks in typefind registration
21017           Clean up the gratuitous commenting and whitespacing a little
21018
21019 2005-10-08  Wim Taymans  <wim@fluendo.com>
21020
21021         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
21022         Only actually wait for the thread to be stopped if it's 
21023         running.
21024
21025 2005-10-08  Wim Taymans  <wim@fluendo.com>
21026
21027         * gst-libs/gst/audio/gstbaseaudiosink.c:
21028         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
21029         If we receive EOS we can start playback of what we had.
21030
21031 2005-10-08  Wim Taymans  <wim@fluendo.com>
21032
21033         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21034         (gst_multifdsink_finalize), (multifdsink_hash_remove),
21035         (gst_multifdsink_stop):
21036         Fix crasher when going to NULL multiple times.
21037
21038 2005-10-06  Wim Taymans  <wim@fluendo.com>
21039
21040         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
21041         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
21042         * gst-libs/gst/audio/gstbaseaudiosrc.h:
21043         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
21044         patch from Edgard Lima <edgard.lima@indt.org.br>
21045         Fixed gstbaseaudiosrc adding ring buffer sync to it.
21046
21047 2005-10-06  Wim Taymans  <wim@fluendo.com>
21048
21049         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21050         Report the FLOW_RETURN as string in the error message.
21051
21052         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
21053         Don't assert when clearing an unnegotiated buffer.
21054
21055 2005-10-04  Michael Smith <msmith@fluendo.com>
21056
21057         * gst/playback/gstplaybasebin.c: (group_destroy),
21058         (gen_preroll_element), (remove_groups), (setup_source):
21059         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
21060         (setup_sinks), (gst_play_bin_send_event),
21061         (gst_play_bin_change_state):
21062           Set state to NULL before removing from bin. Fix refcounting.
21063
21064 2005-10-04  Michael Smith <msmith@fluendo.com>
21065
21066         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21067           Correct refcounting in send_event() function. Previously was wrong
21068           if the first sink was unable to handle the event.
21069
21070 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21071
21072         * configure.ac:
21073           back to development
21074
21075 === release 0.9.3 ===
21076
21077 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21078
21079         * configure.ac:
21080           Releasing 0.9.3, "De Facto"
21081
21082 2005-10-03  Andy Wingo  <wingo@pobox.com>
21083
21084         * gst/playback/gstdecodebin.c (try_to_link_1)
21085         (remove_element_chain): set element to NULL before removing it.
21086
21087 2005-10-02  Johan Dahlin  <johan@gnome.org>
21088
21089         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
21090         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
21091         MT safe.
21092
21093 2005-10-02  Andy Wingo  <wingo@pobox.com>
21094
21095         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
21096         (gst_ring_buffer_prepare_read): 
21097         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
21098         Demote to LOG.
21099
21100 2005-09-29  Wim Taymans  <wim@fluendo.com>
21101
21102         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
21103         * ext/theora/theoradec.c: (theora_handle_data_packet):
21104         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21105         Propagate error codes from alloc_buffer too.
21106
21107 2005-09-29  Wim Taymans  <wim@fluendo.com>
21108
21109         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
21110         We use fixed caps.
21111
21112         * gst/playback/Makefile.am:
21113         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21114         (dump_element_stats), (main):
21115         Added example stream introspection code.
21116
21117 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
21118
21119         * gst/adder/gstadder.c: (gst_adder_collected):
21120           fix adder for float elements
21121
21122 2005-09-28  Wim Taymans  <wim@fluendo.com>
21123
21124         * gst-libs/gst/audio/gstbaseaudiosink.c:
21125         (gst_base_audio_sink_class_init),
21126         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
21127         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21128         (gst_base_audio_src_class_init),
21129         (gst_base_audio_src_provide_clock):
21130         get_clock -> provide_clock
21131
21132 2005-09-28  Andy Wingo  <wingo@pobox.com>
21133
21134         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
21135         and unlocking.
21136
21137         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
21138         unlocking.
21139
21140         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
21141         Actually add the pad template.
21142         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
21143
21144         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
21145         I'm at it...
21146
21147         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
21148         from fdsrc. Get caps in create() instead of start() so it can be
21149         interrupted. Interruption somewhat untested.
21150
21151         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
21152         Proper EOS handling.
21153
21154 2005-09-27  Andy Wingo  <wingo@pobox.com>
21155
21156         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
21157
21158         * gst/tcp/gsttcpserversrc.c: Cleaned up.
21159
21160         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
21161
21162         * gst/tcp/gsttcp.h: 
21163         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
21164         out of tcpclientsrc.c. Cancellable.
21165         (gst_tcp_socket_read): Made private, cancellable, with better
21166         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
21167         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
21168         whole buffer, and better diagnostics.
21169         (gst_tcp_gdp_read_caps): Same.
21170
21171         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
21172
21173 2005-09-26  Andy Wingo  <wingo@pobox.com>
21174
21175         * gst/sine/gstsinesrc.h:
21176         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
21177         change the 'sync' property to 'is-live' and implement it halfway,
21178         update for controller api change.
21179
21180         * gst/volume/gstvolume.c (volume_transform_ip): Update for
21181         controller api change.
21182
21183 2005-09-24  Wim Taymans  <wim@fluendo.com>
21184
21185         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
21186         * gst-libs/gst/audio/gstaudiosink.c:
21187         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
21188         (gst_audioringbuffer_stop):
21189         * gst-libs/gst/audio/gstbaseaudiosink.c:
21190         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
21191         (gst_base_audio_sink_change_state):
21192         * gst-libs/gst/audio/gstbaseaudiosink.h:
21193         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
21194         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
21195         (gst_ring_buffer_commit), (gst_ring_buffer_read):
21196         * gst-libs/gst/audio/gstringbuffer.h:
21197         Fix sync again. Moved sample alignment to basesink.
21198
21199 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21200
21201         * docs/plugins/Makefile.am:
21202         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21203         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21204         * gst/volume/gstvolume.c:
21205           add/fix docs
21206         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
21207         * gst-libs/gst/audio/audio.h:
21208           add conversion macros for frames <-> clocktime
21209
21210 2005-09-23  David Schleef  <ds@schleef.org>
21211
21212         * gst/audioresample/Makefile.am:
21213         * gst/audioresample/debug.h:
21214         * gst/audioresample/gstaudioresample.c:
21215         * gst/audioresample/resample.c: Convert to using gst debugging
21216
21217 2005-09-22  Wim Taymans  <wim@fluendo.com>
21218
21219         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21220         (gst_play_bin_send_event):
21221         Only seek on one sink, the first one that succeeds.
21222
21223 2005-09-22  Michael Smith <msmith@fluendo.com>
21224
21225         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
21226         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
21227         Don't flush encoder state unless we have an initialised encoder.
21228         Clear out encoder state on PAUSED_TO_READY.
21229
21230 2005-09-22  Wim Taymans  <wim@fluendo.com>
21231
21232         * gst-libs/gst/rtp/gstbasertppayload.c:
21233         (gst_basertppayload_class_init), (gst_basertppayload_init),
21234         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21235         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21236         (gst_basertppayload_is_filled), (gst_basertppayload_push),
21237         (gst_basertppayload_set_property),
21238         (gst_basertppayload_get_property),
21239         (gst_basertppayload_change_state):
21240         * gst-libs/gst/rtp/gstbasertppayload.h:
21241         Added max-ptime to control amount of data in the rtp packets.
21242
21243 2005-09-21  Andy Wingo  <wingo@pobox.com>
21244
21245         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
21246         thingies.
21247
21248         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
21249         can be called multiple times, dogs.
21250
21251 2005-09-21  Wim Taymans  <wim@fluendo.com>
21252
21253         * gst-libs/gst/rtp/gstbasertppayload.c:
21254         (gst_basertppayload_class_init), (gst_basertppayload_init),
21255         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21256         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21257         (gst_basertppayload_push), (gst_basertppayload_get_property),
21258         (gst_basertppayload_change_state):
21259         Allow 0 ssrc too.
21260
21261 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
21262
21263         * docs/libs/compiling.sgml:
21264           fixing typos
21265
21266 2005-09-20  Wim Taymans  <wim@fluendo.com>
21267
21268         * gst-libs/gst/rtp/gstbasertppayload.c:
21269         (gst_basertppayload_class_init), (gst_basertppayload_init),
21270         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21271         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21272         (gst_basertppayload_push), (gst_basertppayload_set_property),
21273         (gst_basertppayload_get_property),
21274         (gst_basertppayload_change_state):
21275         * gst-libs/gst/rtp/gstbasertppayload.h:
21276         Added property to configure sequence number offsets.
21277
21278 2005-09-20  Wim Taymans  <wim@fluendo.com>
21279
21280         * gst-libs/gst/rtp/gstbasertppayload.c:
21281         (gst_basertppayload_class_init), (gst_basertppayload_init),
21282         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21283         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21284         (gst_basertppayload_push), (gst_basertppayload_set_property),
21285         (gst_basertppayload_get_property),
21286         (gst_basertppayload_change_state):
21287         * gst-libs/gst/rtp/gstbasertppayload.h:
21288         Make timestamp offset configurable.
21289
21290 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21291
21292         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21293           fix wrong pop/unref
21294
21295 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
21296
21297         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21298
21299         * gst-libs/gst/interfaces/propertyprobe.c:
21300         (gst_property_probe_probe_property_name),
21301         (gst_property_probe_needs_probe_name),
21302         (gst_property_probe_get_values_name),
21303         (gst_property_probe_probe_and_get_values_name):
21304           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
21305           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
21306
21307 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21308
21309         * check/Makefile.am:
21310           have some tests be disabled for valgrinding
21311         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
21312         (GST_START_TEST):
21313         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
21314           Fix A Leak.  Chain To Parent Finalize.
21315
21316 2005-09-19  Wim Taymans  <wim@fluendo.com>
21317
21318         * examples/seeking/seek.c: (make_wav_pipeline), (main):
21319         Fixed wav pipeline.
21320
21321 2005-09-19  Wim Taymans  <wim@fluendo.com>
21322
21323         * gst-libs/gst/rtp/gstbasertppayload.c:
21324         (gst_basertppayload_class_init), (gst_basertppayload_init),
21325         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21326         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21327         (gst_basertppayload_push), (gst_basertppayload_get_property),
21328         (gst_basertppayload_change_state):
21329         Posting ERROR and WARNING messages is good.
21330
21331 2005-09-19  Wim Taymans  <wim@fluendo.com>
21332
21333         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21334         (gst_base_rtp_depayload_add_to_queue),
21335         (gst_base_rtp_depayload_push),
21336         (gst_base_rtp_depayload_set_gst_timestamp),
21337         (gst_base_rtp_depayload_queue_release):
21338         This one was not supposed to go in.
21339
21340 2005-09-19  Wim Taymans  <wim@fluendo.com>
21341
21342         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21343         Fix for bus API.
21344
21345         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21346         (gst_base_rtp_depayload_chain),
21347         (gst_base_rtp_depayload_add_to_queue),
21348         (gst_base_rtp_depayload_push),
21349         (gst_base_rtp_depayload_set_gst_timestamp),
21350         (gst_base_rtp_depayload_queue_release):
21351         Some cleanups.
21352
21353         * gst-libs/gst/rtp/gstbasertppayload.c:
21354         (gst_basertppayload_class_init), (gst_basertppayload_init),
21355         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
21356         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
21357         (gst_basertppayload_get_property),
21358         (gst_basertppayload_change_state):
21359         Added debugging category.
21360
21361 2005-09-18  David Schleef  <ds@schleef.org>
21362
21363         * gst/playback/gstdecodebin.c: free plugin list correctly
21364         * gst/playback/gstplaybin.c: emit warning if autovideosink
21365           and autoaudiosink can't be found (instead of segfaulting)
21366
21367 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21368
21369         * check/elements/audioconvert.c: (GST_START_TEST):
21370           try out 24 bit conversion
21371
21372 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21373
21374         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21375         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
21376         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
21377         * ext/vorbis/vorbisenc.h:
21378           Fix EOS handling.  Still needs a fix in the ogg muxer to
21379           mark the last page as eos.
21380
21381 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21382
21383         * common/gtk-doc-plugins.mak:
21384         * docs/plugins/Makefile.am:
21385         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21386         * gst/ffmpegcolorspace/Makefile.am:
21387         * gst/ffmpegcolorspace/avcodec.h:
21388         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21389         * gst/tcp/gstmultifdsink.c:
21390           fix up ffmpegcolorspace docs; extract header
21391
21392 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21393
21394         * common/gtk-doc-plugins.mak:
21395         * docs/plugins/Makefile.am:
21396         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21397         * ext/theora/Makefile.am:
21398         * ext/theora/gsttheoraenc.h:
21399         * ext/theora/theoraenc.c:
21400         * ext/vorbis/vorbisenc.c:
21401           pick up signals and args for vorbis; add some docs for vorbis
21402
21403 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21404
21405         * common/gstdoc-scangobj:
21406         * common/gtk-doc-plugins.mak:
21407         * docs/libs/Makefile.am:
21408         * docs/plugins/gst-plugins-base-plugins.args:
21409         * docs/plugins/gst-plugins-base-plugins.hierarchy:
21410         * docs/plugins/gst-plugins-base-plugins.interfaces:
21411         * docs/plugins/gst-plugins-base-plugins.prerequisites:
21412         * docs/plugins/gst-plugins-base-plugins.signals:
21413           only scanobj stuff from our source module.  Not sure yet
21414           if that's correct, given the hierarchy stuff :)
21415
21416 2005-09-15  Wim Taymans  <wim@fluendo.com>
21417
21418         * gst/audioconvert/gstaudioconvert.c:
21419         And enable 24 bits mode as well..
21420
21421 2005-09-15  Wim Taymans  <wim@fluendo.com>
21422
21423         * gst-libs/gst/rtp/Makefile.am:
21424         * gst-libs/gst/rtp/gstbasertppayload.c:
21425         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
21426         (gst_basertppayload_class_init), (gst_basertppayload_init),
21427         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
21428         (gst_basertppayload_chain), (gst_basertppayload_set_options),
21429         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
21430         (gst_basertppayload_set_property),
21431         (gst_basertppayload_get_property),
21432         (gst_basertppayload_change_state):
21433         * gst-libs/gst/rtp/gstbasertppayload.h:
21434         Added rtp payloader base class.
21435
21436 2005-09-15  Andy Wingo  <wingo@pobox.com>
21437
21438         * configure.ac (plugindir): Remove the EOL matcher from the
21439         regexp, as it causes me problems. Libtool? Make? Who knows?
21440
21441 2005-09-14  David Schleef  <ds@schleef.org>
21442
21443         * check/generic/states.c: 
21444         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
21445         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
21446           Fixes for changes in registry API.
21447
21448         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
21449           to GST_PLUGIN_LDFLAGS.
21450         * ext/libvisual/visual.c: Make the library shut up.
21451         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
21452         * gst-libs/gst/audio/gstaudiofilter.c: same
21453
21454 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21455
21456         * docs/plugins/Makefile.am:
21457         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21458         * docs/plugins/inspect/plugin-libvisual.xml:
21459         * docs/plugins/tmpl/element-tcpserversink.sgml:
21460         * ext/theora/theoraenc.c:
21461           add libvisual plugin and theoraenc element to docs
21462
21463 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21464
21465         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21466         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21467         * ext/theora/theoraenc.c:
21468           add theoraenc
21469
21470 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
21471
21472         * gst/audioconvert/Makefile.am:
21473           Audioconvert derives from GstBaseTransform and should
21474           link to the library with our base elements to avoid
21475           unresolved symbols. Makes things work with MinGW (#316160)
21476
21477         * gst/playback/test4.c: (main):
21478           Fix MinGW build problem and use g_usleep() instead of 
21479           sleep() (#316162)
21480
21481 2005-09-12  Wim Taymans  <wim@fluendo.com>
21482
21483         * gst/audioconvert/audioconvert.c: (float),
21484         (audio_convert_prepare_context), (audio_convert_convert):
21485         * gst/audioconvert/audioconvert.h:
21486         Cleanups, speedups, simplifications, added back support
21487         for 24 bits.
21488
21489 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21490
21491         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21492         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21493         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
21494         * docs/plugins/tmpl/element-tcpserversink.sgml:
21495         * gst/ffmpegcolorspace/gstffmpeg.c:
21496         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21497         * gst/videotestsrc/gstvideotestsrc.c:
21498         * gst/volume/gstvolume.c:
21499           add more elements to the docs
21500
21501 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
21502
21503         * check/Makefile.am:
21504         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
21505         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
21506           Add extra tests for basetransform based components. 
21507           Comment out the test_element_negotiation test until we decide
21508           if it's testing correct behaviour.
21509         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
21510         (gst_visual_chain), (gst_visual_change_state):
21511           Slightly more correct but still bogus timestamping.
21512           Fix state change function.
21513         * gst/audioconvert/gstaudioconvert.c:
21514         (gst_audio_convert_class_init):
21515         * gst/audioresample/gstaudioresample.c:
21516         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21517         (gst_ffmpegcsp_class_init):
21518         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
21519         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
21520         (gst_videoscale_prepare_image):
21521         * gst/volume/gstvolume.c: (gst_volume_class_init),
21522         (volume_transform_ip):
21523           Basetransform updates. Enable passthrough modes.
21524         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
21525         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
21526         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
21527           Negotiation fix that allows the window to return to the original
21528           size and renegotiate passthrough upstream. Extra debug output.
21529
21530 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21531
21532         * gst/sine/gstsinesrc.c:
21533         * gst/volume/gstvolume.c:
21534           fix up header include
21535
21536 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
21537
21538         * gst-libs/gst/audio/gstbaseaudiosink.c:
21539         (gst_base_audio_sink_render):
21540         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
21541         * gst/volume/gstvolume.c: (gst_volume_class_init),
21542         (volume_transform):
21543           fixing lost sync, some more debugging
21544
21545 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
21546
21547         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
21548         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
21549         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
21550         (gst_xvimagesink_check_xshm_calls):
21551           Fix compilation when XShm is not available.
21552
21553 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
21554
21555         * ext/libvisual/visual.c: (gst_visual_dispose),
21556         (gst_visual_getcaps), (gst_visual_src_setcaps),
21557         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
21558         (gst_visual_change_state):
21559           Finish fixing up libvisual plugin so that it runs. 
21560
21561 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
21562
21563         * ext/vorbis/vorbisenc.c:
21564         * gst-libs/gst/tag/gstvorbistag.c:
21565           gsttaginterface.h -> gsttagsetter.h
21566
21567 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
21568
21569         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
21570           added another test that failes for me (test is not active by default)
21571
21572 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21573
21574         * configure.ac:
21575           v4l2 is no longer in gst-plugins-base
21576
21577 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
21578
21579         * configure.ac:
21580           In the output at the end, don't show the first plugin on the same
21581           line as "Core plug-ins, always built:".
21582           Indent the output as for other plugin categories
21583         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
21584           #define that can be used to not use peer buffer_alloc functions for
21585           test purposes.
21586         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
21587         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
21588         (gst_ximagesink_show_frame):
21589         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
21590         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
21591         (gst_xvimagesink_show_frame):
21592           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
21593           fails gracefully instead of XError aborting or deadlocking.
21594
21595 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
21596
21597         * ext/libvisual/Makefile.am:
21598           link against gst-base-libs
21599
21600 2005-09-06  David Schleef  <ds@schleef.org>
21601
21602         * configure.ac: Enable libvisual plugin.
21603         * ext/libvisual/Makefile.am:
21604         * ext/libvisual/visual.c: Fixes to make it compile.
21605
21606 === release 0.9.2 ===
21607
21608 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21609
21610         * NEWS:
21611         * RELEASE:
21612         * configure.ac:
21613         * docs/random/ChangeLog-0.8:
21614           releasing 0.9.2, "Spoon"
21615
21616 2005-09-05  Michael Smith <msmith@fluendo.com>
21617
21618         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
21619           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
21620           that in the vorbisenc element.
21621
21622 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
21623
21624         * common/gtk-doc-plugins.mak:
21625         * docs/plugins/Makefile.am:
21626           fix distcheck
21627         * gst/audioresample/resample.c:
21628           fix wrong docstring
21629
21630 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
21631
21632         * common/gst-xmlinspect.py:
21633         * common/gtk-doc-plugins.mak:
21634           only inspect plugins for this given package
21635           require gst-python 0.9
21636
21637 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21638
21639         * Makefile.am:
21640         * autogen.sh:
21641         * common/gst-xmlinspect.py:
21642         * configure.ac:
21643         * docs/Makefile.am:
21644         * docs/plugins/inspect/plugin-alsa.xml:
21645         * docs/plugins/inspect/plugin-audioresample.xml:
21646         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
21647         * docs/plugins/inspect/plugin-ogg.xml:
21648         * docs/plugins/tmpl/element-gnomevfssink.sgml:
21649         * docs/plugins/tmpl/element-multifdsink.sgml:
21650         * docs/plugins/tmpl/element-tcpserversink.sgml:
21651         * docs/plugins/tmpl/element-vorbisenc.sgml:
21652         * gst-plugins-base.spec.in:
21653           various doc-related updates
21654
21655 2005-08-31  Wim Taymans  <wim@fluendo.com>
21656
21657         * gst-libs/gst/audio/gstbaseaudiosink.c:
21658         (gst_base_audio_sink_render):
21659         Resync if the buffer timestamps drift more than a 10th 
21660         of a second.
21661
21662 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
21663
21664         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
21665         (gst_v4lsrc_get_property):
21666           The 'timestamp-offset' property is registered as an int64, so
21667           let's use g_value_{set|get}_int64() in our setter and getter
21668           functions (makes it work and fixes warnings with gst-inspect).
21669
21670 2005-08-30  Wim Taymans  <wim@fluendo.com>
21671
21672         * check/elements/audioconvert.c: (setup_audioconvert):
21673         * check/elements/audioresample.c: (setup_audioresample):
21674         * check/elements/volume.c: (setup_volume):
21675         Fix checks.
21676
21677 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21678
21679         * common/gtk-doc-plugins.mak:
21680         * common/plugins.xsl:
21681         * docs/plugins/Makefile.am:
21682           make module a param
21683
21684 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
21685
21686         * examples/seeking/seek.c: (make_mp3_pipeline),
21687         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
21688         (play_cb), (pause_cb), (stop_cb):
21689           update the example
21690
21691 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
21692
21693         * gst/volume/gstvolume.c: (gst_volume_class_init),
21694         (volume_transform):
21695           do not update controlled params, if buffer has no timestamp
21696
21697 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
21698
21699         * configure.ac:
21700         * gst/sine/Makefile.am:
21701         * gst/volume/Makefile.am:
21702           controllerized elements also need to link against controller-libs ;)
21703
21704 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
21705
21706         * docs/libs/tmpl/gstcolorbalance.sgml:
21707         * docs/libs/tmpl/gstgconf.sgml:
21708         * docs/libs/tmpl/gstmixer.sgml:
21709         * docs/libs/tmpl/gstringbuffer.sgml:
21710         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21711         (gst_sinesrc_create):
21712         * gst/volume/gstvolume.c: (gst_volume_class_init),
21713         (volume_transform):
21714           controllerized two audio plugins
21715
21716 2005-08-29  Andy Wingo  <wingo@pobox.com>
21717
21718         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
21719         (vorbis_handle_data_packet): Fix some int overflow errors.
21720
21721         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
21722         -1.
21723         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
21724         valid.
21725         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
21726         if it's valid. Fixed streaming-mode playback.
21727
21728         * check/elements/volume.c (cleanup_volume): Fix for running
21729         CK_FORK=no.
21730
21731         * check/elements/audioconvert.c: Convert from native endian, not
21732         little endian.
21733
21734 2005-08-29  Michael Smith <msmith@fluendo.com>
21735
21736         * ext/ogg/Makefile.am:
21737         * ext/ogg/gstogg.c: (plugin_init):
21738         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
21739         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
21740         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
21741         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
21742         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
21743         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
21744         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
21745         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
21746         Add an ogg parser element.
21747
21748 2005-08-28  Andy Wingo  <wingo@pobox.com>
21749
21750         * Updates for two-arg init from GST_BOILERPLATE_FULL.
21751
21752 2005-08-26  Wim Taymans  <wim@fluendo.com>
21753
21754         * gst/audioconvert/audioconvert.c: (if), (float),
21755         (audio_convert_get_func_index), (check_default),
21756         (audio_convert_clean_fmt), (audio_convert_prepare_context),
21757         (audio_convert_clean_context), (audio_convert_get_sizes),
21758         (audio_convert_convert):
21759         Cleanups.
21760
21761 2005-08-26  Wim Taymans  <wim@fluendo.com>
21762
21763         * gst/audioconvert/audioconvert.c: (if), (float),
21764         (audio_convert_get_func_index), (check_default),
21765         (audio_convert_clean_fmt), (audio_convert_prepare_context),
21766         (audio_convert_clean_context), (audio_convert_get_sizes),
21767         (audio_convert_convert):
21768         More elegant and working temp buffer selection algo.
21769
21770 2005-08-26  Wim Taymans  <wim@fluendo.com>
21771
21772         * gst/audioconvert/audioconvert.c: (if), (float),
21773         (audio_convert_get_func_index), (check_default),
21774         (audio_convert_clean_fmt), (audio_convert_prepare_context),
21775         (audio_convert_clean_context), (audio_convert_get_sizes),
21776         (get_temp_buffer), (audio_convert_convert):
21777         Use realloc else we lose our original data.
21778
21779 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
21780
21781         * gst/audioresample/gstaudioresample.c:
21782           use base class' newsegment to properly timestamp
21783
21784 2005-08-26  Wim Taymans  <wim@fluendo.com>
21785
21786         * gst/audioconvert/audioconvert.c: (if), (float),
21787         (audio_convert_get_func_index), (check_default),
21788         (audio_convert_clean_fmt), (audio_convert_prepare_context),
21789         (audio_convert_clean_context), (audio_convert_get_sizes),
21790         (get_temp_buffer), (audio_convert_convert):
21791         * gst/audioconvert/gstaudioconvert.c:
21792         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
21793         (gst_audio_convert_transform_caps),
21794         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
21795         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
21796         Oops, allocate enough space to perform the channel mix.
21797
21798 2005-08-26  Wim Taymans  <wim@fluendo.com>
21799
21800         * gst/audioconvert/Makefile.am:
21801         * gst/audioconvert/audioconvert.c: (if), (float),
21802         (audio_convert_get_func_index), (check_default),
21803         (audio_convert_clean_fmt), (audio_convert_prepare_context),
21804         (audio_convert_clean_context), (audio_convert_get_sizes),
21805         (get_temp_buffer), (audio_convert_convert):
21806         * gst/audioconvert/audioconvert.h:
21807         * gst/audioconvert/gstaudioconvert.c:
21808         (gst_audio_convert_class_init), (gst_audio_convert_init),
21809         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
21810         (gst_audio_convert_get_unit_size),
21811         (gst_audio_convert_transform_caps),
21812         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
21813         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
21814         * gst/audioconvert/gstaudioconvert.h:
21815         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
21816         (gst_channel_mix_fill_identical),
21817         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
21818         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
21819         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
21820         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
21821         (gst_channel_mix_mix):
21822         * gst/audioconvert/gstchannelmix.h:
21823         Cleanups, librarify a bit, optimize, better negotiation and more.
21824
21825 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
21826
21827         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
21828         Another from MikeS:
21829         During typefinding, don't support negative offsets
21830         (offsets from the end of the stream) in our typefind->peek() function
21831         - nothing embedded in ogg ever needs them. However, we need to recognise
21832         those requests and reject them, otherwise we return invalid pointers.
21833
21834 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
21835
21836         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
21837         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
21838         (vorbisdec_finalize), (vorbis_handle_type_packet):
21839           Big shout-out to MikeS for fixing this giant memory leak.
21840           Huzzah!
21841
21842 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21843
21844         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
21845         (audio_convert_get_unit_size):
21846           plug some leaks
21847
21848 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21849
21850         * check/Makefile.am:
21851         * check/elements/audioconvert.c: (setup_audioconvert),
21852         (cleanup_audioconvert), (get_int_caps), (verify_convert),
21853         (GST_START_TEST), (audioconvert_suite), (main):
21854           add a test for audioconvert
21855         * gst/audioresample/gstaudioresample.c:
21856         * gst/audioresample/gstaudioresample.h:
21857           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
21858           note that for buffers of 1/3 sec this means DURATION(c) is 
21859           one nanosecond more than for a and b
21860
21861 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21862
21863         * check/Makefile.am:
21864         * check/elements/audioresample.c: (setup_audioresample),
21865         (cleanup_audioresample), (fail_unless_perfect_stream),
21866         (test_perfect_stream_instance), (GST_START_TEST),
21867           add a check for audioresample
21868         (audioresample_suite), (main):
21869         * check/elements/volume.c: (GST_START_TEST):
21870           remove unused method
21871         * gst/audioresample/gstaudioresample.c:
21872           set correct buffer parameters since we're changing them
21873         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21874           add some debug
21875
21876 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
21877
21878         * gst/audioresample/debug.c:
21879         * gst/audioresample/gstaudioresample.c:
21880           add room for extra overlap samples when asked to transform size
21881           protect against possible mem corruption and check for discrepancies
21882           between written size and outbuffer's size so we can warn for
21883           potential problems
21884         * gst/audioresample/resample.c: (resample_init),
21885         (resample_get_output_size_for_input), (resample_get_output_size),
21886         (resample_set_n_channels), (resample_set_format):
21887           set debug level based on RESAMPLE_DEBUG env var
21888           make sure that get_output_size* returns a whole number of
21889           sample_size
21890           set sample_size each time either channel or format is set
21891         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
21892         * gst/audioresample/resample_functable.c:
21893         (resample_scale_functable):
21894         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21895           remove r->sample_size, it's done in resample.c now
21896           add some debugging to the ref implementation
21897           make sure we only give back bytes that are wholes of the sample
21898           size
21899
21900 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
21901         * gst/playback/gstplaybasebin.c: (fill_buffer):
21902         Revert unpopular change for GST_MESSAGE_SRC to GObject.
21903
21904 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
21905
21906         * gst/volume/gstvolume.c:
21907           made set_caps function static
21908
21909 2005-08-24  Wim Taymans  <wim@fluendo.com>
21910
21911         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21912         (gst_vorbisenc_change_state):
21913         Stop leaking taglists.
21914
21915 2005-08-24  Wim Taymans  <wim@fluendo.com>
21916
21917         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
21918         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
21919         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
21920         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
21921         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
21922         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
21923         Parse seeking events better.
21924         Unref static caps.
21925         Generate correct newsegment events, fixes seeking in live oggs.
21926
21927         * ext/theora/theoradec.c: (theora_dec_src_query),
21928         (theora_dec_src_event), (theora_dec_src_getcaps),
21929         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
21930         Use newsegment values to report correct play time.
21931
21932         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21933         (vorbis_dec_src_event), (vorbis_dec_sink_event):
21934         * ext/vorbis/vorbisdec.h:
21935         Parse and use newsegment values to report correct play time.
21936
21937         * gst-libs/gst/audio/gstbaseaudiosink.c:
21938         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
21939         Clear ringbuffer on flush.
21940         Use newsegment values to calculate playback time.
21941
21942         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
21943         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
21944         Basesink does newsegment calculations for us now.
21945
21946 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21947
21948         * check/Makefile.am:
21949         * configure.ac:
21950           add core's plugins to the mix so that playbin works
21951         * check/generic/states.c: (GST_START_TEST):
21952           set a 0 timeout on pipelines, so they don't force the next
21953           state change
21954         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
21955         (gst_play_base_bin_change_state):
21956           remove the crappy error handling and do GST error handling
21957
21958 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21959
21960         * check/Makefile.am:
21961         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
21962           add same test as to core, it bitches out on playbin atm.
21963
21964 2005-08-24  Wim Taymans  <wim@fluendo.com>
21965
21966         * configure.ac:
21967         Remove audioscale.
21968
21969 2005-08-24  Wim Taymans  <wim@fluendo.com>
21970
21971         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
21972         (gst_videoscale_prepare_size), (parse_caps),
21973         (gst_videoscale_set_caps), (gst_videoscale_get_size),
21974         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
21975         (gst_videoscale_transform):
21976         * gst/videoscale/gstvideoscale.h:
21977         Refactor, make use of BaseTranform really well.
21978
21979 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21980
21981         * configure.ac:
21982           compile audioresample
21983         * gst/audioresample/Makefile.am:
21984         * gst/audioresample/buffer.c:
21985         * gst/audioresample/functable.c:
21986         * gst/audioresample/gstaudioresample.c:
21987         * gst/audioresample/gstaudioresample.h:
21988         * gst/audioresample/resample.c:
21989         (resample_get_output_size_for_input):
21990         * gst/audioresample/resample.h:
21991         * gst/audioresample/resample_chunk.c:
21992         * gst/audioresample/resample_functable.c:
21993         * gst/audioresample/resample_ref.c:
21994           port to use basetransform; doesn't work in all cases yet
21995
21996 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21997
21998         * gst/audioconvert/gstaudioconvert.c:
21999         (gst_audio_convert_class_init), (gst_audio_convert_init),
22000         (audio_convert_get_unit_size), (audio_convert_transform_caps),
22001         (audio_convert_fixate_caps), (audio_convert_set_caps),
22002         (audio_convert_transform),
22003         (gst_audio_convert_buffer_to_default_format),
22004         (gst_audio_convert_buffer_from_default_format),
22005         (gst_audio_convert_channels):
22006         * gst/audioconvert/gstchannelmix.c:
22007         * gst/audioconvert/gstchannelmix.h:
22008           port to basetransform
22009         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22010         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
22011         (gst_ffmpegcsp_get_unit_size):
22012         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22013         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
22014           fix for basetransform changes
22015
22016 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
22017
22018         * check/Makefile.am:
22019           Add CHECK_CFLAGS and LDFLAGS
22020
22021         * gst/playback/gstplaybasebin.c: (fill_buffer):
22022           GST_MESSAGE_SRC became a GObject
22023
22024 2005-08-24  Wim Taymans  <wim@fluendo.com>
22025
22026         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
22027         (gst_ring_buffer_clear_all):
22028         * gst-libs/gst/audio/gstringbuffer.h:
22029         Added function to clear the ringbuffer.
22030
22031 2005-08-24  Andy Wingo  <wingo@pobox.com>
22032
22033         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
22034         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
22035         of _open and _close.
22036
22037         * sys/v4l/gstv4lxoverlay.h:
22038         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
22039         an Xv connection here, instead of all the time. Make Xv only be
22040         loaded if you axe for it. Kindof a workaround for buggy behaviour
22041         of Xv when using remote xservers (XvQueryExtension would block).
22042         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
22043         replace the _open and _close public API. Only start the xv
22044         connection if necessary.
22045         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
22046
22047 2005-08-23  David Schleef  <ds@schleef.org>
22048
22049         * gst/audioresample/Makefile.am: Leet audioresampling code
22050         * gst/audioresample/buffer.c:
22051         * gst/audioresample/buffer.h:
22052         * gst/audioresample/debug.c:
22053         * gst/audioresample/debug.h:
22054         * gst/audioresample/functable.c:
22055         * gst/audioresample/functable.h:
22056         * gst/audioresample/gstaudioresample.c:
22057         * gst/audioresample/gstaudioresample.h:
22058         * gst/audioresample/resample.c:
22059         * gst/audioresample/resample.h:
22060         * gst/audioresample/resample_chunk.c:
22061         * gst/audioresample/resample_functable.c:
22062         * gst/audioresample/resample_ref.c:
22063
22064 2005-08-23  Wim Taymans  <wim@fluendo.com>
22065
22066         * examples/seeking/seek.c: (make_vorbis_pipeline),
22067         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
22068         Small seek updates.
22069
22070 2005-08-23  Andy Wingo  <wingo@pobox.com>
22071
22072         * gst-libs/gst/audio/gstbaseaudiosrc.c
22073         (gst_base_audio_src_fixate): Only fixate endianness if it is
22074         present in the caps.
22075
22076 2005-08-22  Andy Wingo  <wingo@pobox.com>
22077
22078         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
22079         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
22080         device-name property.
22081
22082         * gst-libs/gst/audio/gstaudiosrc.h:
22083         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
22084         close_device in the ring buffer, like gstaudiosink.
22085
22086         * ext/alsa/gstalsamixer.h:
22087         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
22088         macro to implement the interface without much code. Cleanups. 
22089
22090         * ext/alsa/gstalsasrc.h:
22091         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
22092         READY.
22093
22094         * ext/alsa/Makefile.am: Add new files.
22095         * ext/alsa/gstalsamixerelement.c: 
22096         * ext/alsa/gstalsamixerelement.c: Split element code out from
22097         mixer code so that alsasrc can be a mixer too.
22098
22099 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22100
22101         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22102         (GST_START_TEST):
22103         * check/elements/vorbisdec.c: (setup_vorbisdec),
22104         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
22105         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22106         (vorbis_handle_identification_packet),
22107         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
22108         (vorbis_handle_header_packet), (vorbis_dec_push),
22109         (vorbis_dec_chain):
22110           use the setup/teardown methods to save code.  save code is good.
22111
22112 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22113
22114         * check/Makefile.am:
22115           add ext dir for plugins
22116           add vorbisdec test conditionally
22117         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22118         (GST_START_TEST), (volume_suite):
22119           add a test with wrong caps
22120         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
22121         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
22122           add a vorbisdec test
22123         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
22124         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
22125           clean up debug output
22126         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
22127           yay, fix a segfault/security issue in vorbisdec
22128           gst-launch fakesrc ! vorbisdec wasn't happy
22129         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
22130         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
22131         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
22132         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
22133         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
22134         (gst_vorbisenc_set_metadata), (get_constraints_string),
22135         (update_start_message), (gst_vorbisenc_setup),
22136         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
22137         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
22138         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
22139         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
22140         * ext/vorbis/vorbisenc.h:
22141           march in line
22142         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22143         (gst_ffmpegcsp_transform):
22144           have the kow come home
22145         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
22146           debug my func ptr
22147         * gst/volume/gstvolume.c: (volume_set_caps):
22148           add a debug
22149
22150 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22151
22152         * Makefile.am:
22153         * check/.cvsignore:
22154         * check/Makefile.am:
22155         * check/elements/.cvsignore:
22156         * check/elements/volume.c: (chain_func), (event_func),
22157         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
22158         (main):
22159         * configure.ac:
22160           add unit test structure for gst-plugins-base
22161           add a test for volume
22162         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
22163         (gst_volume_set_volume), (gst_volume_get_volume),
22164         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
22165         (volume_funcfind), (volume_process_float), (volume_process_int16),
22166         (volume_set_caps), (volume_transform), (volume_update_mute),
22167         (volume_update_volume), (volume_set_property),
22168         (volume_get_property):
22169           document a little; use basetransform vmethod _set_caps
22170
22171 2005-08-19  Andy Wingo  <wingo@pobox.com>
22172
22173         * ext/alsa/gstalsamixertrack.h:
22174         * ext/alsa/gstalsamixertrack.c:
22175         * ext/alsa/gstalsamixeroptions.h:
22176         * ext/alsa/gstalsamixeroptions.c:
22177         * ext/alsa/gstalsamixer.h:
22178         * ext/alsa/gstalsamixer.c: Port to 0.9.
22179
22180         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
22181         Remove gstalsa.c and alsaclock. No more cruft here.
22182         
22183 2005-08-18  Wim Taymans  <wim@fluendo.com>
22184
22185         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22186         (gst_base_rtp_depayload_chain),
22187         (gst_base_rtp_depayload_add_to_queue),
22188         (gst_base_rtp_depayload_push),
22189         (gst_base_rtp_depayload_queue_release):
22190         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22191         Fix for RTPBuffer changes.
22192
22193         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
22194         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
22195         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
22196         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
22197         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
22198         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
22199         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
22200         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
22201         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
22202         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
22203         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
22204         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
22205         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
22206         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
22207         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
22208         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
22209         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
22210         (gst_rtpbuffer_get_payload):
22211         * gst-libs/gst/rtp/gstrtpbuffer.h:
22212         Don't subclass GstBuffer but add methods and helper functions
22213         to construct and manipulate RTP packets in regular GstBuffers.
22214
22215 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
22216
22217         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
22218           moved statement below switch
22219         * gst/volume/gstvolume.c: (gst_volume_class_init):
22220           added debug ptr
22221
22222 2005-08-16  Wim Taymans  <wim@fluendo.com>
22223
22224         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22225         (gst_base_audio_src_change_state):
22226         Open and close device in READY<->NULL state change.
22227
22228 2005-08-16  Andy Wingo  <wingo@pobox.com>
22229
22230         * examples/seeking/Makefile.am: Don't compile non-compiling
22231         compiled objects with the compiler.
22232
22233         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
22234         elements.
22235
22236 2005-08-12  Philippe Khalaf <burger@speedy.org>
22237         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22238         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22239           Made a thread to release the queue.
22240           Removed timestamp conversion for now.
22241
22242 2005-08-10  Philippe Khalaf <burger@speedy.org>
22243         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22244         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22245           Added rtp timestamp -> gst timestamp conversion.
22246           Fixed several problems with queue.
22247
22248 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
22249
22250         * gst-libs/gst/audio/gstaudioclock.h:
22251         * gst-libs/gst/audio/gstaudiofilter.h:
22252         * gst-libs/gst/audio/gstaudiosink.h:
22253         * gst-libs/gst/audio/gstaudiosrc.h:
22254         * gst-libs/gst/audio/gstbaseaudiosink.h:
22255         * gst-libs/gst/audio/gstbaseaudiosrc.h:
22256         * gst-libs/gst/audio/gstringbuffer.h:
22257         * gst-libs/gst/net/gstnetbuffer.h:
22258         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22259         * gst-libs/gst/rtp/gstrtpbuffer.h:
22260           Add padding (you will need to rebuild gst-plugins-base,
22261           gst-plugins and all applications afterwards!)
22262
22263 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
22264
22265         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
22266         (gst_riff_parse_chunk):
22267           Fix bug in debug message and add some more debug messages.
22268
22269 2005-08-08  Edward Hervey  <edward@fluendo.com>
22270
22271         * gst-libs/gst/riff/riff-media.c:
22272         backported updates since branch
22273
22274 2005-08-08  Andy Wingo  <wingo@pobox.com>
22275
22276         * gst-libs/gst/audio/gstbaseaudiosink.c
22277         (gst_base_audio_sink_change_state): Open the device in NULL->READY
22278         like good elements should. Close on READY->NULL too.
22279
22280         * gst-libs/gst/audio/gstaudiosink.c
22281         (gst_audioringbuffer_open_device,
22282         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
22283         (gst_audioringbuffer_release): Updates for new ring buffer API,
22284         hook into the new audio sink api.
22285
22286         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
22287         (GstAudioSinkClass.close): Just open and close the device -- no
22288         resource allocation or configuration.
22289         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
22290         vmethods, handle device setup and resource allocation.
22291
22292         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
22293         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
22294         base class API.
22295
22296         * gst-libs/gst/audio/gstringbuffer.h
22297         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
22298         New vmethods.
22299
22300         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
22301         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
22302         New API functions. The device should be opened before acquiring
22303         and closed after releasing.
22304
22305 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
22306
22307         * gst-libs/gst/interfaces/mixer.h:
22308           Reset padding to GST_PADDING.
22309
22310 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22311
22312         * gst/playback/gstplaybin.c: (remove_sinks):
22313           Remove visualization from parent explicitely; works around some
22314           apparent refcount issue that I haven't tracked down yet.
22315
22316 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22317
22318         * ext/alsa/gstalsasink.c: (set_hwparams):
22319           Assign debug category, add negotiation debug msgs.
22320
22321 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22322
22323         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
22324           Fix error code for file-not-found to NOT_FOUND.
22325
22326 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22327
22328         * common/gtk-doc-plugins.mak:
22329         * docs/plugins/Makefile.am:
22330         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22331         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22332           renamed to actual element names, so much nicer to look at
22333         * docs/plugins/tmpl/gstmultifdsink.sgml:
22334           remove
22335         * docs/plugins/tmpl/multifdsink.sgml:
22336         * docs/plugins/tmpl/tcpserversink.sgml:
22337           add
22338         * ext/alsa/gstalsa.c:
22339         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
22340         * ext/ogg/gstoggmux.c:
22341         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
22342         * gst/playback/gstdecodebin.c:
22343         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
22344         * gst/tcp/gsttcpserversink.c:
22345           various fixes and documentation additions
22346
22347 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22348
22349         * common/Makefile.am:
22350         * common/gstdoc-scangobj:
22351         * common/gtk-doc-plugins.mak:
22352         * common/gtk-doc.mak:
22353           add a custom scangobj that uses the registry
22354           add a custom gtk-doc-plugins.mak that uses it
22355           some doc build fixes
22356         * configure.ac:
22357         * docs/Makefile.am:
22358         * docs/plugins/Makefile.am:
22359         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22360         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22361         * docs/plugins/gst-plugins-base-plugins.types:
22362         * docs/plugins/tmpl/gstmultifdsink.sgml:
22363           add docs for one element, multifdsink
22364         * gst/adder/gstadder.h:
22365         * gst/volume/gstvolume.h:
22366           don't privatize enum
22367         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
22368         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
22369         (gst_sync_method_get_type), (gst_client_status_get_type),
22370         (gst_multifdsink_class_init),
22371         (gst_multifdsink_client_queue_buffer),
22372         (gst_multifdsink_handle_client_write):
22373         * gst/tcp/gstmultifdsink.h:
22374         * gst/tcp/gsttcp.h:
22375         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
22376         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
22377         (gst_tcpclientsink_render):
22378         * gst/tcp/gsttcpclientsink.h:
22379         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
22380         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
22381         (gst_tcpclientsrc_start):
22382         * gst/tcp/gsttcpclientsrc.h:
22383         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
22384         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
22385         * gst/tcp/gsttcpserversrc.h:
22386         * gst/typefind/gsttypefindfunctions.c:
22387           remove superfluous Type stuff
22388
22389 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22390
22391         * gst/playback/gstplaybin.c: (gen_video_element):
22392           Enable videoscale.
22393
22394 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22395
22396         * gst-libs/gst/gconf/gconf.c:
22397         * gst-libs/gst/gconf/gconf.h:
22398           Fix some Andy Problem [tm].
22399
22400 2005-08-04  Andy Wingo  <wingo@pobox.com>
22401
22402         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
22403         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
22404         (gst_ffmpegcsp_get_size): Adapt to API changes.
22405
22406         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
22407         Implement an in-place do-nothing transform.
22408
22409 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22410
22411         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
22412         (gst_ximagesink_renegotiate_size):
22413           Do not set new window sizes yet if we prepare a new buffer size
22414           for upstream renegotiation (software scaling) at some point in the
22415           future, because this new size waqs not actually accepted yet. Once
22416           accepted, renegotiation later on will set the new sizes just fine.
22417           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
22418           embedding testcase.
22419
22420 2005-08-03  Andy Wingo  <wingo@pobox.com>
22421
22422         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
22423         (gst_ximagesink_buffer_alloc): 
22424         Protect the height, width, and desired_caps with the pool_lock.
22425         Fixes videotestsrc ! queue ! ximagesink.
22426
22427 2005-08-02  Edward Hervey  <edward@fluendo.com>
22428
22429         * gst/volume/gstvolume.c:
22430         include left from controller cleanup
22431
22432 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
22433         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
22434           Stop collectpads before calling the parent state
22435           change function on PAUSED->READY.
22436
22437 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
22438         * configure.ac:
22439           When testing for X libs, use the X CFlags 
22440         * gst/adder/gstadder.c: (gst_adder_change_state):
22441           Stop the collectpads before calling parent state change function
22442           on PAUSED->READY, otherwise we deadlock deactivating pads.
22443
22444 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
22445
22446         * configure.ac:
22447         * docs/libs/tmpl/gstcolorbalance.sgml:
22448         * docs/libs/tmpl/gstmixer.sgml:
22449         * examples/Makefile.am:
22450         * gst/sine/Makefile.am:
22451         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
22452         (gst_sinesrc_set_property), (plugin_init):
22453         * gst/sine/gstsinesrc.h:
22454         * gst/volume/Makefile.am:
22455         * gst/volume/gstvolume.c: (gst_volume_set_volume),
22456         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
22457         (volume_process_float), (volume_process_int16),
22458         (volume_set_property), (plugin_init):
22459         * gst/volume/gstvolume.h:
22460           deactivate and remove dparams (libgstcontrol)
22461
22462 2005-07-29  Wim Taymans  <wim@fluendo.com>
22463
22464         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
22465         Convert me to BaseTransform!! help..
22466
22467 2005-07-29  Andy Wingo  <wingo@pobox.com>
22468
22469         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
22470         sinks.
22471
22472         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
22473         support of both endiannesses.
22474
22475 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
22476
22477         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
22478           Fix confusing debug message (s/event/query/)
22479
22480 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
22481
22482         * gst/videotestsrc/videotestsrc.h:
22483           Use "_stdint.h" instead of <stdint.h>
22484
22485 2005-07-27  Wim Taymans  <wim@fluendo.com>
22486
22487         * ext/vorbis/Makefile.am:
22488         Revert wrong commit.
22489
22490 2005-07-27  Wim Taymans  <wim@fluendo.com>
22491
22492         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
22493         More compilation fixen.
22494
22495 2005-07-27  Wim Taymans  <wim@fluendo.com>
22496
22497         * gst-libs/gst/audio/gstbaseaudiosink.c:
22498         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
22499         (gst_base_audio_sink_create_ringbuffer),
22500         (gst_base_audio_sink_change_state):
22501         Fix compilation.
22502
22503 2005-07-27  Wim Taymans  <wim@fluendo.com>
22504
22505         * examples/seeking/seek.c: (setup_dynamic_link),
22506         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
22507         (query_positions_elems), (query_positions_pads), (do_seek):
22508         Update seek example.
22509
22510         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
22511         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
22512         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
22513         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
22514         (gst_ogg_demux_handle_event),
22515         (gst_ogg_demux_deactivate_current_chain),
22516         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
22517         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
22518         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
22519         (gst_ogg_demux_loop):
22520         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
22521         * ext/theora/theoradec.c: (theora_dec_src_event),
22522         (theora_dec_src_getcaps), (theora_dec_sink_event),
22523         (theora_dec_push), (theora_dec_chain):
22524         * ext/vorbis/Makefile.am:
22525         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
22526         (vorbis_dec_sink_event), (vorbis_dec_push),
22527         (vorbis_handle_data_packet):
22528         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
22529         (gst_vorbisenc_chain):
22530         * gst/playback/gststreaminfo.c: (cb_probe):
22531         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
22532         * gst/videorate/gstvideorate.c: (gst_videorate_event):
22533         * gst/videoscale/gstvideoscale.c:
22534         (gst_videoscale_handle_src_event):
22535         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
22536         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
22537         (gst_ximagesink_navigation_send_event):
22538         * sys/xvimage/xvimagesink.c:
22539         (gst_xvimagesink_navigation_send_event):
22540         Various event updates and cleanups
22541
22542 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22543
22544         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
22545           Fix segfault for I420/YV12.
22546
22547 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22548
22549         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
22550           Report bitrate.
22551
22552 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22553
22554         * gst/playback/gstplaybin.c: (gen_video_element),
22555         (gen_audio_element):
22556           Switch to auto*sink elements as default sinks; add volume element
22557           so that volume control in totem works.
22558
22559 2005-07-21  Wim Taymans  <wim@fluendo.com>
22560
22561         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
22562         * gst/playback/gstplaybin.c: (setup_sinks),
22563         (gst_play_bin_change_state):
22564         Refcount fix and more comments.
22565
22566 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22567
22568         * sys/ximage/Makefile.am:
22569         * sys/ximage/ximage.c: (plugin_init):
22570         * sys/ximage/ximagesink.c:
22571         Prepare for adding ximagesrc, rename of plugin to ximage etc.
22572         
22573
22574 2005-07-21  Wim Taymans  <wim@fluendo.com>
22575
22576         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
22577         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
22578         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
22579         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
22580         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
22581         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
22582         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
22583         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
22584         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
22585         Generate correct disconts for live chained oggs.
22586
22587         * gst-libs/gst/audio/gstbaseaudiosink.c:
22588         (gst_base_audio_sink_render),
22589         (gst_base_audio_sink_create_ringbuffer),
22590         (gst_base_audio_sink_change_state):
22591         Handle discont math correctly.
22592
22593         * gst/playback/gstplaybin.c: (add_sink):
22594         Some small debug cleanup.
22595
22596 2005-07-21  Wim Taymans  <wim@fluendo.com>
22597
22598         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
22599         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
22600         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
22601         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
22602         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
22603         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
22604         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
22605         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
22606         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
22607         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
22608         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
22609         (gst_ogg_demux_change_state), (gst_ogg_print):
22610         Reorganize code to send the right disconts when in streaming
22611         mode.
22612
22613 2005-07-20  Andy Wingo  <wingo@pobox.com>
22614
22615         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
22616         fix (?), fixes a seggie mcfalterson (#310894).
22617
22618 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22619
22620         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
22621         (gst_ogg_mux_set_header_on_caps):
22622         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
22623         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
22624         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
22625         * gst-libs/gst/audio/multichannel.c:
22626         (gst_audio_set_channel_positions),
22627         (gst_audio_set_structure_channel_positions_list):
22628         * gst/playback/gstdecodebin.c: (dynamic_create):
22629         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
22630         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
22631           Fixes for API changes in core.
22632
22633 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22634
22635         * gst/playback/gstplaybasebin.c: (fill_buffer):
22636           Use _new_custom() so we can set custom message types for buffering
22637           messages.
22638
22639 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22640
22641         * configure.ac:
22642         * gst-libs/gst/Makefile.am:
22643         * gst-libs/gst/gconf/.cvsignore:
22644         * gst-libs/gst/gconf/Makefile.am:
22645         * gst-libs/gst/gconf/test-gconf.c:
22646         * pkgconfig/Makefile.am:
22647         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
22648         * pkgconfig/gstreamer-gconf.pc.in:
22649           Remove gconf stuff, use gconf elements instead from now on.
22650
22651 2005-07-20  Wim Taymans  <wim@fluendo.com>
22652
22653         * gst-libs/gst/audio/TODO:
22654         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
22655         (gst_audio_clock_get_internal_time):
22656         * gst-libs/gst/audio/gstaudioclock.h:
22657         * gst-libs/gst/audio/gstbaseaudiosink.c:
22658         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
22659         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
22660         (gst_base_audio_sink_render),
22661         (gst_base_audio_sink_create_ringbuffer),
22662         (gst_base_audio_sink_change_state):
22663         Make sure the audio clock always returns an increasing value.
22664
22665 2005-07-19  Andy Wingo  <wingo@pobox.com>
22666
22667         * gst/videotestsrc/: Cleanups.
22668
22669 2005-07-19  Wim Taymans  <wim@fluendo.com>
22670
22671         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
22672         Better debugging.
22673
22674 2005-07-19  Wim Taymans  <wim@fluendo.com>
22675
22676         * examples/seeking/seek.c: (make_dv_pipeline),
22677         (make_vorbis_theora_pipeline), (query_rates),
22678         (query_positions_elems), (query_positions_pads), (do_seek):
22679         Make correct DV pipeline.
22680
22681 2005-07-18  Andy Wingo  <wingo@pobox.com>
22682
22683         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
22684         default. Also because it's the only thing that really works. (This
22685         is used in the GConf elements).
22686         Use AS_LIBTOOL_TAGS.
22687
22688 2005-07-18  Wim Taymans  <wim@fluendo.com>
22689
22690         * gst/playback/gstdecodebin.c: (remove_element_chain):
22691         * gst/playback/gstplaybin.c: (add_sink):
22692         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
22693         (gst_stream_info_set_mute):
22694         * gst/playback/gststreamselector.c:
22695         (gst_stream_selector_get_linked_pad),
22696         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
22697         More leak and compile fixes.
22698
22699 2005-07-18  Wim Taymans  <wim@fluendo.com>
22700
22701         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
22702         (query_rates), (query_positions_elems), (query_positions_pads),
22703         (do_seek), (seek_cb), (stop_seek):
22704         Updated seek example. 
22705
22706         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
22707         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
22708         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
22709         * gst/playback/gstplaybin.c: (add_sink):
22710         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
22711         (gst_stream_info_set_mute):
22712         Some refcount leak fixes.
22713
22714 2005-07-16  Wim Taymans  <wim@fluendo.com>
22715
22716         * gst-libs/gst/audio/gstbaseaudiosink.c:
22717         (gst_base_audio_sink_render):
22718         Align samples even if we have roundoff errors in the 
22719         timestamp conversion.
22720
22721 2005-07-16  Wim Taymans  <wim@fluendo.com>
22722
22723         * docs/libs/tmpl/gstringbuffer.sgml:
22724         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
22725         (query_rates), (query_positions_elems), (query_positions_pads),
22726         (update_scale), (do_seek):
22727         Updated seek example.
22728
22729         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
22730         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
22731         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
22732         (gst_ogg_demux_loop):
22733         Push out correct discont values.
22734
22735         * ext/theora/theoradec.c: (theora_dec_src_convert),
22736         (theora_dec_sink_convert), (theora_dec_src_getcaps),
22737         (theora_dec_sink_event), (theora_handle_type_packet),
22738         (theora_handle_header_packet), (theora_dec_push),
22739         (theora_handle_data_packet), (theora_dec_chain),
22740         (theora_dec_change_state):
22741         Better timestamping.
22742
22743         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
22744         (vorbis_dec_sink_event), (vorbis_dec_push),
22745         (vorbis_handle_data_packet), (vorbis_dec_chain):
22746         * ext/vorbis/vorbisdec.h:
22747         Better timestamping.
22748
22749         * gst-libs/gst/audio/gstbaseaudiosink.c:
22750         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
22751         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
22752         Handle syncing on timestamps instead of sample offsets. Make
22753         use of DISCONT values as described in design docs.
22754
22755         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22756         (gst_base_audio_src_get_time):
22757         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
22758         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
22759         (gst_ring_buffer_read):
22760         * gst-libs/gst/audio/gstringbuffer.h:
22761         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
22762         (gst_ximagesink_show_frame):
22763         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
22764         Correcly convert buffer timestamp to stream time.
22765
22766 2005-07-16  Wim Taymans  <wim@fluendo.com>
22767
22768         * gst/audioconvert/gstaudioconvert.c:
22769         (gst_audio_convert_get_buffer):
22770         Timestamp buffers correctly.
22771
22772         * gst/playback/gstplaybin.c: (gen_video_element):
22773         Make internal fakesink silent.
22774
22775 2005-07-15  Wim Taymans  <wim@fluendo.com>
22776
22777         * gst/ffmpegcolorspace/Makefile.am:
22778         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22779         (gst_ffmpegcsp_caps_remove_format_info),
22780         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
22781         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
22782         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
22783         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
22784         Ported ffmpegcolorspace to basetransform.
22785
22786         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
22787         * gst/volume/gstvolume.c: (volume_transform):
22788         Ported to new API.
22789
22790 2005-07-14  Wim Taymans  <wim@fluendo.com>
22791
22792         * gst/videotestsrc/Makefile.am:
22793         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
22794         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
22795         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
22796         (gst_videotestsrc_init), (gst_videotestsrc_event),
22797         (gst_videotestsrc_create), (gst_videotestsrc_start),
22798         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
22799         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
22800         (gst_videotestsrc_get_property):
22801         * gst/videotestsrc/gstvideotestsrc.h:
22802         Make videotestsrc a pushsrc.
22803
22804 2005-07-14  Wim Taymans  <wim@fluendo.com>
22805
22806         * gst/tcp/gstfdset.c: (gst_fdset_free):
22807         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
22808         (gst_multifdsink_add), (gst_multifdsink_remove),
22809         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22810         (gst_multifdsink_remove_client_link),
22811         (gst_multifdsink_client_queue_data),
22812         (gst_multifdsink_client_queue_caps),
22813         (gst_multifdsink_client_queue_buffer),
22814         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22815         (gst_multifdsink_stop):
22816         * gst/tcp/gstmultifdsink.h:
22817         0.8 backporting.
22818
22819         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
22820         Also draw image when not from a pool.
22821
22822 2005-07-14  Wim Taymans  <wim@fluendo.com>
22823
22824         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
22825         (mute_stream), (silence_stream):
22826         Small debug additions.
22827
22828 2005-07-14  Wim Taymans  <wim@fluendo.com>
22829
22830         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
22831         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
22832         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
22833         Better error recovery, ignore unconnected pads and
22834         non-fatal errors.
22835
22836 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22837
22838         * docs/libs/tmpl/gstaudio.sgml:
22839         * docs/libs/tmpl/gstcolorbalance.sgml:
22840         * docs/libs/tmpl/gstgconf.sgml:
22841         * docs/libs/tmpl/gstmixer.sgml:
22842         * docs/libs/tmpl/gstringbuffer.sgml:
22843         * docs/libs/tmpl/gsttuner.sgml:
22844         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22845         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
22846         (gst_tcpclientsrc_class_init):
22847         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
22848         (gst_tcpserversrc_class_init):
22849         * sys/v4l/gstv4lelement.c:
22850           more autistic cleanliness in functions/names/defines
22851
22852 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22853
22854         * configure.ac:
22855           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
22856           added manually to each Makefile.am so we are sure it goes
22857           *last* and doesn't add -L flags before linking in libs of our
22858           own, like, say, internal .la libs, that then accidentally pick
22859           up the installed copy.
22860         * docs/libs/Makefile.am:
22861         * ext/alsa/Makefile.am:
22862         * ext/cdparanoia/Makefile.am:
22863         * ext/gnomevfs/Makefile.am:
22864         * ext/libvisual/Makefile.am:
22865         * ext/ogg/Makefile.am:
22866         * ext/theora/Makefile.am:
22867         * ext/vorbis/Makefile.am:
22868         * gst-libs/gst/video/Makefile.am:
22869         * gst/adder/Makefile.am:
22870         * gst/audioconvert/Makefile.am:
22871         * gst/audiorate/Makefile.am:
22872         * gst/audioscale/Makefile.am:
22873         * gst/ffmpegcolorspace/Makefile.am:
22874         * gst/playback/Makefile.am:
22875         * gst/sine/Makefile.am:
22876         * gst/subparse/Makefile.am:
22877         * gst/tags/Makefile.am:
22878         * gst/tcp/Makefile.am:
22879         * gst/typefind/Makefile.am:
22880         * gst/videorate/Makefile.am:
22881         * gst/videoscale/Makefile.am:
22882         * gst/videotestsrc/Makefile.am:
22883         * gst/volume/Makefile.am:
22884         * sys/v4l/Makefile.am:
22885         * sys/ximage/Makefile.am:
22886         * sys/xvimage/Makefile.am:
22887           adapt properly to this change. This should make sure that
22888           plugins and libs properly link to the as-yet-uninstalled
22889           copies of stuff like libgstinterfaces and libgstvideo
22890
22891 2005-07-13  Andy Wingo  <wingo@pobox.com>
22892
22893         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
22894         (gst_v4lsrc_fixate): Fixate on format as well.
22895
22896         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
22897         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
22898         buffer points to it.
22899         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
22900         rather just doing X calls ourselves. Also fixes a memleak.
22901
22902 2005-07-12  Andy Wingo  <wingo@pobox.com>
22903
22904         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
22905         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
22906         (gst_v4lsrc_create): Re-add the copy-mode property, default to
22907         TRUE to avoid deadlocks if an element holds on to our buffers.
22908
22909 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22910
22911         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22912         (gst_sinesrc_init), (gst_sinesrc_create),
22913         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
22914         (gst_sinesrc_start):
22915         * gst/sine/gstsinesrc.h:
22916           removing num-buffers property before moving it
22917
22918 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
22919
22920         * configure.ac:
22921           use overridable ERROR_CFLAGS
22922         * docs/libs/gst-plugins-base-libs.types:
22923         * docs/libs/tmpl/gstringbuffer.sgml:
22924         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
22925         (gst_alsasink_class_init):
22926         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
22927         (gst_alsasrc_class_init):
22928         * gst-libs/gst/audio/audio.h:
22929         * gst-libs/gst/audio/gstaudioclock.h:
22930         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
22931         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
22932         (gst_audio_filter_link), (gst_audio_filter_init),
22933         (gst_audio_filter_chain), (gst_audio_filter_set_property),
22934         (gst_audio_filter_get_property),
22935         (gst_audio_filter_class_add_pad_templates):
22936         * gst-libs/gst/audio/gstaudiofilter.h:
22937         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
22938         (gst_audio_filter_template_get_type),
22939         (gst_audio_filter_template_base_init),
22940         (gst_audio_filter_template_class_init),
22941         (gst_audio_filter_template_init),
22942         (gst_audio_filter_template_set_property),
22943         (gst_audio_filter_template_get_property), (plugin_init),
22944         (gst_audio_filter_template_setup),
22945         (gst_audio_filter_template_filter),
22946         (gst_audio_filter_template_filter_inplace):
22947         * gst-libs/gst/audio/gstaudiosink.c:
22948         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
22949         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
22950         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
22951         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
22952         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
22953         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
22954         * gst-libs/gst/audio/gstaudiosink.h:
22955         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
22956         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
22957         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
22958         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
22959         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
22960         (gst_audio_src_class_init), (gst_audio_src_init),
22961         (gst_audio_src_create_ringbuffer):
22962         * gst-libs/gst/audio/gstaudiosrc.h:
22963         * gst-libs/gst/audio/gstbaseaudiosink.c:
22964         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
22965         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
22966         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
22967         (gst_base_audio_sink_set_property),
22968         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
22969         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
22970         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
22971         (gst_base_audio_sink_create_ringbuffer),
22972         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
22973         * gst-libs/gst/audio/gstbaseaudiosink.h:
22974         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22975         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
22976         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
22977         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
22978         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
22979         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
22980         (gst_base_audio_src_event), (gst_base_audio_src_create),
22981         (gst_base_audio_src_create_ringbuffer),
22982         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
22983         * gst-libs/gst/audio/gstbaseaudiosrc.h:
22984         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
22985         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
22986         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
22987         (gst_ring_buffer_debug_spec_caps),
22988         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
22989         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
22990         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
22991         (gst_ring_buffer_start), (gst_ring_buffer_pause),
22992         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
22993         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
22994         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
22995         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
22996         (gst_ring_buffer_clear):
22997         * gst-libs/gst/audio/gstringbuffer.h:
22998         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
22999         (gst_video_sink_class_init), (gst_video_sink_get_type):
23000         * gst-libs/gst/video/videosink.h:
23001         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
23002         (gst_multifdsink_class_init),
23003         (gst_multifdsink_handle_client_write),
23004         (gst_multifdsink_change_state):
23005         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23006         (gst_tcpclientsink_setcaps):
23007         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23008         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
23009         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
23010         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
23011         (gst_ximagesink_send_pending_navigation),
23012         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
23013         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
23014         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
23015         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
23016         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
23017         (gst_xvimagesink_send_pending_navigation),
23018         (gst_xvimagesink_navigation_send_event),
23019         (gst_xvimagesink_set_xwindow_id),
23020         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
23021         (gst_xvimagesink_get_type):
23022         more macro splitting
23023
23024 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23025
23026         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
23027           plug a memleak, allows me to import 1479 albums in one go
23028           in jamboree
23029         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23030         (vorbis_handle_type_packet), (vorbis_dec_chain),
23031         (vorbis_dec_change_state):
23032           fix some format strings
23033
23034 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23035
23036         * docs/libs/tmpl/gstcolorbalance.sgml:
23037         * docs/libs/tmpl/gstmixer.sgml:
23038         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
23039         (gst_alsasink_set_property), (gst_alsasink_get_property):
23040         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
23041         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
23042           add device property
23043
23044 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23045
23046         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
23047         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
23048         (audiocast_register_listener), (audiocast_thread_run),
23049         (gst_gnomevfssrc_send_additional_headers_callback),
23050         (gst_gnomevfssrc_received_headers_callback),
23051         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
23052         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
23053         (gst_gnomevfssrc_get_size):
23054           add/clean up debugging
23055         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
23056           cleanups
23057
23058 2005-07-07  Andy Wingo  <wingo@pobox.com>
23059
23060         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
23061         framerate. Need to get a handle on when exactly this function is
23062         called, tho.
23063
23064         * sys/v4l/v4lsrc_calls.h:
23065         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
23066         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
23067         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
23068
23069         * sys/v4l/v4l_calls.h: Cast to V4lElement.
23070         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
23071         v4lelements are sources.
23072
23073         * sys/v4l/gstv4lxoverlay.h:
23074         * sys/v4l/gstv4lxoverlay.c:
23075         * sys/v4l/gstv4ltuner.h:
23076         * sys/v4l/gstv4ltuner.c: Header loc fixen.
23077         
23078         * sys/v4l/gstv4lsrc.h:
23079         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
23080         PushSrc/BaseSrc. Removed most sync-related properties, videorate
23081         or something should handle that. Made a live source.
23082
23083         * sys/v4l/gstv4lelement.h:
23084         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
23085         signals. Some cleanups.
23086
23087         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
23088
23089         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
23090         stuff.
23091
23092         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
23093         stuff.
23094
23095         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
23096
23097 2005-07-07  Wim Taymans  <wim@fluendo.com>
23098
23099         * ext/theora/theoradec.c: (theora_get_query_types),
23100         (theora_dec_src_getcaps), (theora_dec_push):
23101         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
23102         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
23103         Remove deprecated/unused query types.
23104
23105 2005-07-06  Wim Taymans  <wim@fluendo.com>
23106
23107         * ext/alsa/Makefile.am:
23108         * ext/alsa/gstalsaplugin.c: (plugin_init):
23109         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
23110         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
23111         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
23112         (gst_alsasrc_class_init), (gst_alsasrc_init),
23113         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
23114         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
23115         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
23116         (gst_alsasrc_reset):
23117         * ext/alsa/gstalsasrc.h:
23118         * gst-libs/gst/audio/Makefile.am:
23119         * gst-libs/gst/audio/gstaudiosink.c:
23120         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23121         (gst_audioringbuffer_start):
23122         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
23123         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
23124         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
23125         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
23126         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
23127         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
23128         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
23129         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
23130         * gst-libs/gst/audio/gstaudiosrc.h:
23131         * gst-libs/gst/audio/gstbaseaudiosink.c:
23132         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
23133         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
23134         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
23135         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23136         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
23137         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
23138         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
23139         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
23140         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
23141         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
23142         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
23143         (gst_baseaudiosrc_change_state):
23144         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23145         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
23146         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
23147         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
23148         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
23149         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
23150         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
23151         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
23152         * gst-libs/gst/audio/gstringbuffer.h:
23153         Added audiosource base classes.
23154         Ported alsasrc, still very basic.
23155
23156 2005-07-06  Wim Taymans  <wim@fluendo.com>
23157
23158         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
23159         (theora_dec_push), (theora_handle_data_packet):
23160         Prepare for better timestamp fix later.
23161
23162         * gst/audioconvert/gstaudioconvert.c:
23163         List most accurate caps first
23164
23165         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
23166         Use proper pad task function.
23167
23168         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23169         (gst_xvimagesink_show_frame):
23170         Fix deadlock when alloc failed.
23171
23172 2005-07-05  Andy Wingo  <wingo@pobox.com>
23173
23174         * ext/gnomevfs/gstgnomevfssrc.c:
23175         * gst/sine/gstsinesrc.c:
23176         * gst/tcp/gsttcpserversrc.c:
23177         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
23178
23179         * sys/v4l/: Port from 0.8.
23180
23181         * Many files: Null if we got it....
23182
23183 2005-07-05  Andy Wingo  <wingo@pobox.com>
23184
23185         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
23186         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
23187         Signedness fixes.
23188
23189 2005-07-05  Wim Taymans  <wim@fluendo.com>
23190
23191         * configure.ac:
23192         * gst/tcp/Makefile.am:
23193         * gst/tcp/README:
23194         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
23195         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
23196         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
23197         (is_sync_frame), (gst_multifdsink_handle_client_write),
23198         (gst_multifdsink_render), (gst_multifdsink_start),
23199         (gst_multifdsink_stop), (gst_multifdsink_change_state):
23200         * gst/tcp/gstmultifdsink.h:
23201         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
23202         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
23203         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
23204         * gst/tcp/gsttcp.h:
23205         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23206         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
23207         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
23208         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
23209         * gst/tcp/gsttcpclientsink.h:
23210         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
23211         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
23212         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
23213         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
23214         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
23215         * gst/tcp/gsttcpclientsrc.h:
23216         * gst/tcp/gsttcpplugin.c: (plugin_init):
23217         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
23218         * gst/tcp/gsttcpserversink.h:
23219         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
23220         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
23221         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
23222         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
23223         (gst_tcpserversrc_stop):
23224         * gst/tcp/gsttcpserversrc.h:
23225         * gst/tcp/gsttcpsink.c:
23226         * gst/tcp/gsttcpsink.h:
23227         * gst/tcp/gsttcpsrc.c:
23228         * gst/tcp/gsttcpsrc.h:
23229         Ported tcp plugins to 0.9. 
23230         
23231
23232 2005-07-05  Andy Wingo  <wingo@pobox.com>
23233
23234         * gst/playback/gstplaybasebin.c (fill_buffer):
23235         message_new_application fixen.
23236
23237         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
23238         Style fix.
23239
23240 2005-07-04  Wim Taymans  <wim@fluendo.com>
23241
23242         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
23243         Set caps on output buffer.
23244
23245 2005-07-04  Andy Wingo  <wingo@pobox.com>
23246
23247         * ext/gnomevfs/gstgnomevfssrc.c
23248         (gst_gnomevfssrc_received_headers_callback) 
23249         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
23250         hopefully.
23251
23252         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
23253         No refcount leakage.
23254
23255         * configure.ac: Enable -Werror.
23256         
23257         * ext/theora/theoradec.c (theora_dec_src_getcaps):
23258         * gst/audioconvert/bufferframesconvert.c
23259         (buffer_frames_convert_fixate):
23260         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
23261         (gst_audio_convert_fixate):
23262         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
23263         (gst_sinesrc_create): Fixate func changes.
23264         
23265         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23266         (gst_ximagesink_buffer_alloc): Unused var.
23267
23268 2005-07-01  Andy Wingo  <wingo@pobox.com>
23269
23270         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
23271         getcaps to do explicit caps. Needs to be done in all decoders,
23272         possibly via a base class.
23273
23274         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
23275
23276         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
23277         caps on the sink pad, just rely on the pad template. Also, setting
23278         ANY caps on a pad is not valid because the caps are not fixed.
23279
23280         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
23281         caps on the buffer, and get the width from the desired_caps if
23282         they're set.
23283         (gst_ximagesink_renegotiate_size): Implement via setting the
23284         desired_caps on the ximagesink.
23285         (gst_ximagesink_setcaps): Only reset the width of the player if it
23286         wasn't already set. Not sure if this is right.
23287         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
23288
23289         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
23290         that the user wants. NULL unless the window has been resized.
23291
23292         * gst/volume/gstvolume.c (volume_transform): Adapt to
23293         basetransform refcount changes.
23294         
23295 2005-07-01  Andy Wingo  <wingo@pobox.com>
23296
23297         * gst/videoscale/gstvideoscale.c:
23298         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
23299         from BaseTransform, implements a transform_caps. Removed dead code
23300         including some PAR stuff that was never reached -- should probably
23301         be added back somehow.
23302
23303 2005-07-01  Andy Wingo  <wingo@pobox.com>
23304
23305         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
23306         come later.
23307
23308 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23309
23310         * configure.ac:
23311         * docs/libs/Makefile.am:
23312         * docs/libs/gst-plugins-libs.types:
23313         * ext/alsa/Makefile.am:
23314         * ext/alsa/gstalsamixer.h:
23315         * ext/alsa/gstalsamixeroptions.h:
23316         * ext/alsa/gstalsamixertrack.h:
23317         * gst-libs/gst/Makefile.am:
23318         * gst-libs/gst/colorbalance/.cvsignore:
23319         * gst-libs/gst/colorbalance/Makefile.am:
23320         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
23321         * gst-libs/gst/colorbalance/colorbalance.c:
23322         * gst-libs/gst/colorbalance/colorbalance.h:
23323         * gst-libs/gst/colorbalance/colorbalance.vcproj:
23324         * gst-libs/gst/colorbalance/colorbalancechannel.c:
23325         * gst-libs/gst/colorbalance/colorbalancechannel.h:
23326         * gst-libs/gst/interfaces/Makefile.am:
23327         * gst-libs/gst/interfaces/colorbalance.c:
23328         (gst_color_balance_class_init):
23329         * gst-libs/gst/interfaces/colorbalance.h:
23330         * gst-libs/gst/interfaces/interfaces-marshal.list:
23331         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
23332         * gst-libs/gst/interfaces/mixer.h:
23333         * gst-libs/gst/interfaces/mixeroptions.h:
23334         * gst-libs/gst/interfaces/navigation.c:
23335         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
23336         * gst-libs/gst/interfaces/tuner.h:
23337         * gst/volume/Makefile.am:
23338         * gst/volume/gstvolume.c:
23339         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
23340         * sys/ximage/Makefile.am:
23341         * sys/ximage/ximagesink.c:
23342         * sys/xvimage/Makefile.am:
23343         * sys/xvimage/xvimagesink.c:
23344           fold in all interfaces into an interfaces dir, preserving CVS
23345           history
23346
23347 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23348
23349         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
23350           Fix build after riff changes.
23351
23352 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23353
23354         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
23355         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
23356         (gst_riff_create_video_template_caps),
23357         (gst_riff_create_audio_template_caps),
23358         (gst_riff_create_iavs_template_caps):
23359         * gst-libs/gst/riff/riff-media.h:
23360         * gst-libs/gst/riff/riff-read.h:
23361         * gst-libs/gst/riff/riff.c: (gst_riff_init):
23362           Add gst_riff_init() to initialize the debug category, instead
23363           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
23364
23365 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23366
23367         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
23368           Oops, I shouldn't apply hacks.
23369
23370 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23371
23372         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
23373           Remove pad_loop function which doesn't work.
23374
23375 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23376
23377         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
23378           Send EOS when deactivating.
23379         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
23380         (check_queue), (queue_threshold_reached), (queue_out_of_data),
23381         (gen_preroll_element), (probe_triggered), (mute_stream),
23382         (silence_stream), (new_decoded_pad), (setup_substreams),
23383         (set_active_source):
23384         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
23385         (remove_sinks), (add_sink):
23386         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
23387           Change for new probe API.
23388
23389 2005-06-29  Wim Taymans  <wim@fluendo.com>
23390
23391         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
23392         * gst-libs/gst/audio/gstbaseaudiosink.c:
23393         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
23394         (gst_baseaudiosink_change_state):
23395         * gst-libs/gst/audio/gstbaseaudiosink.h:
23396         * gst-libs/gst/audio/gstringbuffer.c:
23397         (gst_ringbuffer_set_callback):
23398         Fix compilation error.
23399         Ringbuffer starts out as not running.
23400         Free our clock in dispose.
23401         When releasing the ringbuffer we need to renegotiate so
23402         clear the pad caps.
23403
23404 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
23405
23406         * autogen.sh:
23407         * configure.ac:
23408         * docs/Makefile.am:
23409         * docs/libs/Makefile.am:
23410         * docs/libs/gst-plugins-libs-docs.sgml:
23411         * docs/libs/gst-plugins-libs-sections.txt:
23412         * docs/libs/gst-plugins-libs.types:
23413         * docs/libs/tmpl/gstaudio.sgml:
23414         * docs/libs/tmpl/gstcolorbalance.sgml:
23415         * docs/libs/tmpl/gstringbuffer.sgml:
23416         * gst-libs/gst/audio/gstringbuffer.c:
23417         (gst_ringbuffer_set_callback):
23418           reinstate gtk-doc docs for plugin libs
23419
23420 2005-06-28  Wim Taymans  <wim@fluendo.com>
23421
23422         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23423         (gst_ogg_demux_init):
23424         Removed pad loop function.
23425
23426 2005-06-28  Wim Taymans  <wim@fluendo.com>
23427
23428         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
23429         If we're building a chain we are not in an error case
23430         when we queue a buffer.
23431
23432 2005-06-28  Andy Wingo  <wingo@pobox.com>
23433
23434         * *.c: Don't cast to GstObject before reffing/unreffing.
23435
23436 2005-06-27  Andy Wingo  <wingo@pobox.com>
23437
23438         * gst/videotestsrc/gstvideotestsrc.c
23439         (gst_videotestsrc_activate_push): Activation API changes.
23440
23441         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
23442         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
23443         they have refs on the decodebin.
23444
23445         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
23446         parent class.
23447         (gst_ogg_pad_typefind): Don't leak a pad ref.
23448         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
23449         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
23450         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
23451
23452 2005-06-27  Edward Hervey  <edward@fluendo.com>
23453
23454         * ext/theora/theoradec.c: (theora_dec_change_state): 
23455         re-arranged call to parent's state change in order to avoid locks (or
23456         worse).
23457
23458 2005-06-26  Edward Hervey  <edward@fluendo.com>
23459
23460         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
23461         2nd argument of 'unknow-type' signal is a GstCaps and not a
23462         GstMiniObject
23463
23464 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
23465         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
23466           Set the worker thread's running flag to TRUE before starting the
23467           thread.
23468         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
23469           Catch a failure to add typefind to the bin.
23470
23471 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23472
23473         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23474         (gst_sinesrc_init), (gst_sinesrc_create),
23475         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
23476         (gst_sinesrc_start):
23477         * gst/sine/gstsinesrc.h:
23478           add num-buffers and timestamp-offset properties
23479         * gst/videotestsrc/gstvideotestsrc.c:
23480         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
23481         (gst_videotestsrc_get_property):
23482           add timestamp-offset property
23483
23484 2005-06-23  Christian Schaller  <uraeus@gnome.org>
23485
23486         * configure.ac: add videorate
23487         * gst-plugins-base.spec.in: add videorate
23488
23489 2005-06-23  Wim Taymans  <wim@fluendo.com>
23490
23491         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
23492         (gst_videorate_getcaps), (gst_videorate_setcaps),
23493         (gst_videorate_event), (gst_videorate_chain):
23494         Fixed videorate, fixating an already fixated caps is not
23495         an error.
23496
23497 2005-06-23  Wim Taymans  <wim@fluendo.com>
23498
23499         * ext/ogg/README:
23500         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
23501         Buffer on caps is not boxed anymore.
23502
23503 2005-06-22  Wim Taymans  <wim@fluendo.com>
23504
23505         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23506         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23507         Set buffers on caps as miniobjects and not as boxed.
23508
23509 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23510
23511         * configure.ac:
23512           back to HEAD
23513
23514 === release 0.9.1 ===
23515
23516 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23517
23518         * .cvsignore:
23519         * NEWS:
23520         * README:
23521         * RELEASE:
23522         * configure.ac:
23523         * po/af.po:
23524         * po/az.po:
23525         * po/cs.po:
23526         * po/en_GB.po:
23527         * po/hu.po:
23528         * po/it.po:
23529         * po/nb.po:
23530         * po/nl.po:
23531         * po/or.po:
23532         * po/sq.po:
23533         * po/sr.po:
23534         * po/sv.po:
23535         * po/uk.po:
23536         * po/vi.po:
23537           updates for release
23538
23539 2005-06-09  Andy Wingo  <wingo@pobox.com>
23540
23541         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
23542         
23543 2005-06-09  Andy Wingo  <wingo@pobox.com>
23544
23545         * configure.ac:
23546         * gst-libs/gst/Makefile.am:
23547         * gst-libs/gst/net/Makefile.am:
23548         Add gstnet to build.
23549
23550 2005-06-09  Andy Wingo  <wingo@pobox.com>
23551
23552         * gst-libs/gst/gconf/gconf.c:
23553         * gst/playback/test.c:
23554         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
23555         fixes.
23556
23557         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
23558
23559         * ext/theora/theoraenc.c (theora_enc_chain): 
23560         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
23561
23562         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
23563         RealPad.
23564
23565 2005-06-02  Wim Taymans  <wim@fluendo.com>
23566
23567         * gst-libs/gst/net/Makefile.am:
23568         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
23569         * pkgconfig/gstreamer-libs.pc.in:
23570         Added net stuff, version net lib.
23571
23572 2005-06-02  Wim Taymans  <wim@fluendo.com>
23573
23574         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23575         (query_rates), (query_positions_elems), (query_positions_pads),
23576         (do_seek):
23577         Updated seek example.
23578
23579 2005-06-02  Andy Wingo  <wingo@pobox.com>
23580
23581         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
23582         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
23583         list.
23584
23585         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
23586         remove the typefind, the bin dispose will do it for us. When it's
23587         removed and unreffed, the signal handler will be disconnected,
23588         too.
23589         (unlinked): It's too difficult to disconnect from unlinked
23590         handlers, as they are on pads not elements. Just punt if the pads
23591         aren't grandkids of the bin.
23592
23593 2005-06-02  Wim Taymans  <wim@fluendo.com>
23594
23595         * ext/ogg/README:
23596         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23597         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
23598         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
23599         * ext/theora/theoradec.c: (theora_dec_src_query),
23600         (theora_handle_data_packet):
23601         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
23602         (theora_enc_chain):
23603         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23604         (vorbis_handle_data_packet):
23605         * gst/audioconvert/bufferframesconvert.c:
23606         (buffer_frames_convert_chain):
23607         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23608         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
23609         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
23610         (gst_ffmpegcsp_chain):
23611         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
23612         (gst_videorate_getcaps), (gst_videorate_setcaps),
23613         (gst_videorate_event), (gst_videorate_chain):
23614         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
23615         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
23616         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23617         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
23618         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
23619         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
23620         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
23621         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
23622         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
23623         Cleanups and buffer alloc.
23624
23625 2005-05-31  Wim Taymans  <wim@fluendo.com>
23626
23627         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
23628         Don't try to call the delay method when the device is not
23629         opened.
23630
23631 2005-05-31  Wim Taymans  <wim@fluendo.com>
23632
23633         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
23634         Get actual segment size and buffer size after opening
23635         the device.
23636
23637 2005-05-30  Wim Taymans  <wim@fluendo.com>
23638
23639         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
23640         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
23641         Also FLUSH upstream, makes the loop function exit faster.
23642         
23643         * ext/theora/theoradec.c: (theora_dec_src_query):
23644         Some more debug info in the query.
23645         
23646         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23647         (gst_ximagesink_setcaps):
23648         Release lock on par error, better error reporting.
23649
23650 2005-05-26  Wim Taymans  <wim@fluendo.com>
23651
23652         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23653         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
23654         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
23655         Clear chains in READY
23656         Queue packets until the chain is activated.
23657
23658 2005-05-25  Wim Taymans  <wim@fluendo.com>
23659
23660         * gst-libs/gst/audio/gstaudiosink.c:
23661         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23662         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
23663         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
23664         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
23665         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
23666         (gst_audiosink_create_ringbuffer):
23667         * gst-libs/gst/audio/gstbaseaudiosink.c:
23668         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
23669         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
23670         (gst_baseaudiosink_set_property), (build_linear_format),
23671         (debug_spec_caps), (debug_spec_buffer),
23672         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
23673         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
23674         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
23675         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
23676         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
23677         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
23678         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
23679         (gst_ringbuffer_play), (gst_ringbuffer_pause),
23680         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
23681         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
23682         (wait_segment), (gst_ringbuffer_commit),
23683         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
23684         (gst_ringbuffer_clear):
23685         Various small cleanups.
23686
23687         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23688         (gst_audio_convert_change_state):
23689         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
23690         No need to take the locks anymore.
23691
23692 2005-05-25  Wim Taymans  <wim@fluendo.com>
23693
23694         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
23695         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
23696         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
23697         (type_found):
23698         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
23699         (group_destroy), (group_commit), (queue_overrun),
23700         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
23701         (mute_stream), (new_decoded_pad), (setup_substreams),
23702         (setup_source), (mute_group_type), (set_active_source),
23703         (gst_play_base_bin_change_state):
23704         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
23705         (gen_video_element), (gen_text_element), (gen_audio_element),
23706         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
23707         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
23708         (gst_stream_info_dispose), (gst_stream_info_set_mute):
23709         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
23710         Some playbin cleanups mostly refcounting sloppyness.
23711
23712 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23713
23714         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
23715           Work with streaming input.
23716
23717 2005-05-25  Wim Taymans  <wim@fluendo.com>
23718
23719         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23720         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
23721         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
23722         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
23723         No need to take the STREAM lock anymore.
23724
23725 2005-05-25  Wim Taymans  <wim@fluendo.com>
23726
23727         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
23728         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
23729         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
23730         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
23731         (gst_ogg_demux_sink_activate):
23732         * ext/theora/theoradec.c: (theora_dec_src_event),
23733         (theora_handle_comment_packet), (theora_dec_chain),
23734         (theora_dec_change_state):
23735         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23736         (vorbis_handle_data_packet), (vorbis_dec_chain),
23737         (vorbis_dec_change_state):
23738         Remove STREAM locks as they are taken in core now.
23739         Never set bogus granulepos on vorbis/theora.
23740         Fix leaks in theoradec tag parsing.
23741
23742 2005-05-25  Wim Taymans  <wim@fluendo.com>
23743
23744         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
23745         Fix memleaks, GST_BUFFER_DATA() is not freed.
23746
23747 2005-05-25  Wim Taymans  <wim@fluendo.com>
23748
23749         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
23750         Open non-blocking, set to blocking mode afterwards to avoid
23751         lockups when audio device is busy.
23752
23753 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23754
23755         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
23756           This can't be good.
23757
23758 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23759
23760         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
23761         (gst_audio_convert_chain), (gst_audio_convert_link_src),
23762         (gst_audio_convert_setcaps):
23763           Implement instant setup switching.
23764
23765 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23766
23767         * gst/playback/gstplaybasebin.c: (probe_triggered):
23768           Fix missing unlock.
23769         * gst/playback/gstplaybin.c: (add_sink):
23770           First add, then link (otherwise pad link fails).
23771
23772 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23773
23774         * examples/Makefile.am:
23775         fix buildbot (make distcheck)
23776
23777 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23778
23779         * gst/playback/gstplaybin.c: (gen_vis_element):
23780           Remove some wrong code. Doesn't work yet.
23781
23782 2005-05-19  Wim Taymans  <wim@fluendo.com>
23783
23784         * gst-libs/gst/net/Makefile.am:
23785         * gst-libs/gst/net/README:
23786         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
23787         (gst_netbuffer_class_init), (gst_netbuffer_init),
23788         (gst_netbuffer_finalize), (gst_netbuffer_copy),
23789         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
23790         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
23791         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
23792         * gst-libs/gst/net/gstnetbuffer.h:
23793         Added buffer subclass to store extra to/from addresses for
23794         network sources/sinks.
23795
23796 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23797
23798         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
23799           Don't lock an unassigned variable.
23800
23801 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23802
23803         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
23804           Increase buffer for video, decrease buffer for other media types.
23805         * gst/playback/gstplaybin.c: (gen_video_element),
23806         (gen_audio_element):
23807           Change names for debugging purposes.
23808
23809 2005-05-18  Wim Taymans  <wim@fluendo.com>
23810
23811         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23812         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
23813         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
23814         (gst_ffmpegcsp_chain):
23815         Enable buffer alloc passthrough if the source and dest
23816         formats are the same.
23817
23818 2005-05-17  Wim Taymans  <wim@fluendo.com>
23819
23820         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
23821         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
23822         (gst_ogg_demux_chain_unlocked):
23823         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23824         (gst_audio_convert_caps_remove_format_info),
23825         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
23826         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
23827         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23828         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
23829         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
23830         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
23831         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
23832         (gst_ffmpegcsp_get_property):
23833         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
23834         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
23835         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
23836         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
23837         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
23838         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
23839         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
23840         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
23841         Leak fixes in oggdemux.
23842         Some cleanups in audioconvert.
23843         Make passthrough work along with buffer_alloc etc.
23844         Make buffer_alloc and buffer recycling actually work in
23845         xvimagesink.
23846
23847 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
23848
23849         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
23850           make the compiler happy
23851
23852 2005-05-17  Wim Taymans  <wim@fluendo.com>
23853
23854         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
23855         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
23856         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
23857         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
23858         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
23859         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
23860         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
23861         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
23862         (gst_xvimagesink_set_xwindow_id):
23863         * sys/xvimage/xvimagesink.h:
23864         Port xvimagesink to new MiniObject.
23865
23866 2005-05-17  Wim Taymans  <wim@fluendo.com>
23867
23868         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
23869         (gst_audiofilter_chain):
23870         * gst-libs/gst/audio/gstaudiosink.c:
23871         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23872         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
23873         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
23874         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
23875         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
23876         (gst_audiosink_create_ringbuffer):
23877         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23878         (gst_audio_convert_caps_remove_format_info),
23879         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
23880         (gst_audio_convert_fixate), (gst_audio_convert_channels):
23881         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23882         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
23883         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
23884         Fix passthrough in ffmpegcolorspace.
23885         Fix memset in audiosink on wrong memory.
23886
23887 2005-05-16  David Schleef  <ds@schleef.org>
23888
23889         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
23890         to GstMiniObject.
23891
23892 2005-05-16  David Schleef  <ds@schleef.org>
23893
23894         Port from GstData to GstMiniObject.
23895         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
23896         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
23897         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
23898         (gst_ogg_mux_collected):
23899         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
23900         * ext/theora/theoradec.c: (theora_handle_comment_packet),
23901         (theora_handle_data_packet):
23902         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
23903         (theora_set_header_on_caps), (theora_enc_chain):
23904         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23905         (vorbis_handle_comment_packet):
23906         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23907         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
23908         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
23909         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
23910         * gst/audioconvert/gstaudioconvert.c:
23911         (gst_audio_convert_get_buffer):
23912         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
23913         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
23914         (mute_stream), (silence_stream):
23915         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
23916         * gst/volume/gstvolume.c: (volume_transform):
23917         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
23918         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
23919         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
23920         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
23921         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
23922         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
23923         (gst_ximagesink_buffer_alloc):
23924         * sys/ximage/ximagesink.h:
23925
23926 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23927
23928         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
23929         (fill_buffer), (check_queue), (queue_threshold_reached),
23930         (queue_out_of_data):
23931         * gst/playback/gstplaybasebin.h:
23932           Post buffer-fullness on the bus.
23933
23934 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23935
23936         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
23937         (try_to_link_1):
23938         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
23939         (group_commit), (probe_triggered), (setup_source),
23940         (gst_play_base_bin_change_state):
23941         * gst/playback/gstplaybasebin.h:
23942         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
23943         (gst_play_bin_init), (remove_sinks), (setup_sinks),
23944         (gst_play_bin_change_state):
23945           Move setup_output_pads into a virtual function, remove
23946           group-switch (no longer needed) and redirect (handled by bus
23947           now) signals.
23948
23949 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23950
23951         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23952         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
23953         (get_active_group), (get_building_group), (group_destroy),
23954         (group_commit), (check_queue), (queue_overrun),
23955         (queue_threshold_reached), (queue_out_of_data),
23956         (gen_preroll_element), (remove_groups), (unknown_type),
23957         (add_element_stream), (no_more_pads), (probe_triggered),
23958         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
23959         (setup_substreams), (setup_source), (finish_source),
23960         (prepare_output), (muted_group_change_state),
23961         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23962         (gst_play_base_bin_change_state):
23963         * gst/playback/gstplaybasebin.h:
23964         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
23965         (gst_play_bin_init), (gst_play_bin_set_property),
23966         (gen_video_element), (gen_text_element), (gen_audio_element),
23967         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
23968         (gst_play_bin_change_state):
23969         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
23970         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
23971         (stream_info_change_state), (gst_stream_info_set_mute),
23972         (gst_stream_info_get_property):
23973         * gst/playback/gststreaminfo.h:
23974         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
23975         (gst_stream_selector_get_linked_pad),
23976         (gst_stream_selector_getcaps),
23977         (gst_stream_selector_get_linked_pads),
23978         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
23979         * gst/playback/gststreamselector.h:
23980           Rough port of playbin. Needs some more work, but is mostly done,
23981           and uses a few locks in important places, which should make stuff
23982           like chain-switches clean. Still uses GST_STATE() in a few places,
23983           which isn't all that good an idea, subtitles/elements disabled
23984           because no elements to test with and thus probably broken, query
23985           and event handling moved to GstBin, internal thread removed
23986           alltogether because the pipeline does that for us now. Can play
23987           Ogg/Vorbis files. Haven't tested anything else yet.
23988
23989 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23990
23991         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
23992           Do no-more-pads (needed for autoplugging).
23993
23994 2005-05-10  Andy Wingo  <wingo@pobox.com>
23995
23996         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
23997         message to the bus with the tags. Still not sent downstream tho.
23998
23999         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
24000         get_parent.
24001         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
24002         avoid refcounting hassles.
24003
24004 2005-05-09  Andy Wingo  <wingo@pobox.com>
24005
24006         * gst/volume/Makefile.am:
24007         * gst/volume/demo.c
24008         * gst/volume/gstvolume.h
24009         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
24010         basetransform. Probably need an audio filter base class.
24011
24012 2005-05-09  Wim Taymans  <wim@fluendo.com>
24013
24014         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
24015         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
24016         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
24017         (gst_vorbisenc_chain):
24018         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24019         (gst_audio_convert_caps_remove_format_info),
24020         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24021         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24022         Make caps writable before writing to it.
24023         Fix negotiation in audioconvert some more.
24024
24025 2005-05-09  Wim Taymans  <wim@fluendo.com>
24026
24027         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24028         (gst_videorate_getcaps), (gst_videorate_setcaps),
24029         (gst_videorate_event), (gst_videorate_chain):
24030         Better negotiation.
24031
24032 2005-05-09  Wim Taymans  <wim@fluendo.com>
24033
24034         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24035         (gst_videorate_getcaps), (gst_videorate_setcaps),
24036         (gst_videorate_blank_data), (gst_videorate_init),
24037         (gst_videorate_event), (gst_videorate_chain),
24038         (gst_videorate_change_state):
24039         Port videorate, do a better job at negotiation while we're at
24040         it.
24041
24042 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
24043
24044         * configure.ac:
24045           Disable libvisual
24046
24047         * examples/Makefile.am:
24048         * gst-libs/gst/audio/Makefile.am:
24049         * gst-libs/gst/riff/Makefile.am:
24050         * gst-libs/gst/tag/Makefile.am:
24051         * gst-libs/gst/video/Makefile.am:
24052           Fixups for missing variables.
24053
24054 2005-05-09  Wim Taymans  <wim@fluendo.com>
24055
24056         * examples/seeking/seek.c: (make_theora_pipeline),
24057         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
24058         (query_rates), (query_positions_elems), (query_positions_pads),
24059         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
24060         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
24061         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
24062         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
24063         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
24064         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
24065         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24066         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
24067         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
24068         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
24069         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
24070         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
24071         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
24072         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
24073         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
24074         (theora_dec_src_convert), (theora_dec_sink_convert),
24075         (theora_dec_src_query), (theora_dec_sink_query),
24076         (theora_dec_src_event), (theora_dec_sink_event),
24077         (theora_handle_comment_packet), (theora_handle_type_packet),
24078         (theora_handle_header_packet), (theora_handle_data_packet),
24079         (theora_dec_chain):
24080         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
24081         (vorbis_dec_convert), (vorbis_dec_src_query),
24082         (vorbis_dec_sink_query), (vorbis_dec_src_event),
24083         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24084         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24085         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
24086         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
24087         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
24088         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
24089         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24090         (gst_play_bin_query):
24091         * gst/playback/test3.c: (update_scale):
24092         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
24093         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
24094         * gst/subparse/gstsubparse.c: (gst_subparse_init):
24095         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24096         (gst_videotestsrc_src_query):
24097         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
24098         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
24099         (paint_hline_YUV9):
24100         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
24101         Port to new query API.
24102         Updated seek.
24103         Cleanups in x[v]imagesink
24104
24105 2005-05-09  Andy Wingo  <wingo@pobox.com>
24106
24107         * ext/alsa/gstalsasink.h:
24108         * ext/gnomevfs/gstgnomevfssrc.c:
24109         (gst_gnomevfssrc_get_icy_metadata):
24110         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
24111         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
24112         * ext/theora/theoradec.c (theora_dec_src_query)
24113         (theora_dec_src_event, theora_dec_sink_event)
24114         (theora_handle_comment_packet, theora_handle_data_packet):
24115         * ext/theora/theoraenc.c (theora_enc_chain):
24116         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
24117         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
24118         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
24119         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
24120         (qt_type_find):
24121         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
24122         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
24123         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
24124         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
24125         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
24126         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
24127         (paint_setup_xBGR8888, paint_setup_RGBx8888)
24128         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
24129         (paint_setup_RGB565, paint_setup_xRGB1555):
24130         * gst/videotestsrc/videotestsrc.h:
24131         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
24132         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
24133         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
24134         GCC4 fixes.
24135         
24136         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
24137         gst_pad_query_position. Fixes oggdemux.
24138
24139 2005-05-08  David Schleef  <ds@schleef.org>
24140
24141         * configure.ac: Require liboil.
24142         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
24143         a few more.
24144         * gst/videotestsrc/videotestsrc.c:
24145         * gst/videotestsrc/videotestsrc.h:
24146
24147 2005-05-06  Wim Taymans  <wim@fluendo.com>
24148
24149         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24150         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24151         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24152         Well, unreffing a buffer right before pushing it is asking
24153         for trouble..
24154
24155 2005-05-06  Christian Schaller  <uraeus@gnome.org>
24156
24157         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
24158
24159 2005-05-06  Wim Taymans  <wim@fluendo.com>
24160
24161         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24162         (gst_audio_convert_caps_remove_format_info),
24163         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24164         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24165         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24166         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24167         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24168         * gst/sine/Makefile.am:
24169         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
24170         (gst_sinesrc_class_init), (gst_sinesrc_init),
24171         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
24172         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
24173         (gst_sinesrc_update_freq):
24174         * gst/sine/gstsinesrc.h:
24175         * gst/tcp/gstmultifdsink.c:
24176         * sys/xvimage/xvimagesink.c:
24177         Fixed negotiation wrt _peer_get_caps()
24178         Some cleanups.
24179
24180
24181 2005-05-06  Wim Taymans  <wim@fluendo.com>
24182
24183         * gst-libs/gst/audio/gstaudiosink.c:
24184         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24185         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24186         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24187         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24188         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24189         (gst_audiosink_create_ringbuffer):
24190         * gst-libs/gst/audio/gstbaseaudiosink.c:
24191         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24192         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24193         (gst_baseaudiosink_set_property), (build_linear_format),
24194         (debug_spec_caps), (debug_spec_buffer),
24195         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24196         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24197         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24198         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24199         * gst-libs/gst/audio/gstbaseaudiosink.h:
24200         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24201         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24202         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24203         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24204         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24205         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24206         (wait_segment), (gst_ringbuffer_commit),
24207         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24208         (gst_ringbuffer_clear):
24209         * gst-libs/gst/audio/gstringbuffer.h:
24210         Make the base audiosink return an error when there is no
24211         audiobuffer negotiated.
24212
24213 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24214
24215         * ext/Makefile.am:
24216         Disable cdparanoia until someone ports it!
24217
24218 2005-05-06  Wim Taymans  <wim@fluendo.com>
24219
24220         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24221         (gst_ogg_demux_sink_activate):
24222         And revert after wingo's revert.. sigh..
24223
24224 2005-05-05  Andy Wingo  <wingo@pobox.com>
24225
24226         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
24227         GObject.
24228         * configure.ac: Return audiorate and subparse from the ghetto.
24229         Re-enable -Wall -Werror.
24230         * gst/subparse/gstsubparse.c:
24231         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
24232         or chain-based. Cleaned up a bit. Not tested.
24233         
24234 2005-05-05  Christian Schaller <christian@fluendo.com> 
24235
24236         * Makefile.am: remove stuff that is not building
24237         * configure.ac: remove stuff that is not building
24238         * examples/Makefile.am: remove stuff that is not building
24239         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
24240         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
24241         * sys/Makefile.am: remove stuff that is not building
24242         * testsuite/Makefile.am: remove stuff that is not building
24243
24244 2005-05-05  Andy Wingo  <wingo@pobox.com>
24245
24246         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
24247         * gst-libs/gst/tag/gstvorbistag.c:
24248         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
24249         * gst/adder/gstadder.h:
24250         * gst/audioconvert/gstchannelmix.c:
24251         (gst_audio_convert_fill_one_other):
24252         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
24253         (gst_audiorate_init), (gst_audiorate_chain):
24254         * gst/playback/gstplaybasebin.c: (setup_source):
24255         * gst/playback/test3.c: (update_scale):
24256         Some GCC4 fixes
24257         
24258         * po/af.po:
24259         * po/az.po:
24260         * po/cs.po:
24261         * po/en_GB.po:
24262         * po/hu.po:
24263         * po/it.po:
24264         * po/nb.po:
24265         * po/nl.po:
24266         * po/or.po:
24267         * po/sq.po:
24268         * po/sr.po:
24269         * po/sv.po:
24270         * po/uk.po:
24271         * po/vi.po: Foo
24272
24273 2005-05-05  Wim Taymans  <wim@fluendo.com>
24274
24275         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24276         (gst_audio_convert_caps_remove_format_info),
24277         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
24278         (gst_audio_convert_change_state), (gst_audio_convert_channels):
24279         * gst/videotestsrc/gstvideotestsrc.c:
24280         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
24281         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
24282         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
24283         (gst_videotestsrc_init), (gst_videotestsrc_loop):
24284         Don't ignore _push() return values.
24285         Make sure no processing is done when shutting down.
24286         Videotestsrc pad activation fix.
24287
24288 2005-05-05  Wim Taymans  <wim@fluendo.com>
24289
24290         * gst/adder/Makefile.am:
24291         * gst/adder/gstadder.c: (gst_adder_setcaps),
24292         (gst_adder_class_init), (gst_adder_init),
24293         (gst_adder_request_new_pad), (gst_adder_collected),
24294         (gst_adder_change_state):
24295         * gst/adder/gstadder.h:
24296         Ported adder as an example of a mixer element using
24297         collect pads. Needs more negotiation work.
24298
24299 2005-05-05  Wim Taymans  <wim@fluendo.com>
24300
24301         * ext/theora/theoradec.c: (_inc_granulepos),
24302         (theora_dec_src_event), (theora_dec_sink_event),
24303         (theora_handle_comment_packet), (theora_handle_type_packet),
24304         (theora_handle_header_packet), (theora_handle_data_packet),
24305         (theora_dec_chain):
24306         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24307         (gst_theora_enc_init), (theora_enc_sink_setcaps),
24308         (theora_push_buffer), (theora_push_packet),
24309         (theora_enc_sink_event), (theora_enc_chain),
24310         (theora_enc_change_state), (theora_enc_set_property),
24311         (theora_enc_get_property):
24312         Added stream lock to decoder so that we can serialize
24313         the discont event.
24314         More theoraenc porting, recover from errors, do clean
24315         shutdown.
24316
24317 2005-05-05  Wim Taymans  <wim@fluendo.com>
24318
24319         * ext/ogg/Makefile.am:
24320         * ext/ogg/README:
24321         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24322         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
24323         (gst_ogg_print):
24324         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24325         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
24326         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
24327         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24328         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
24329         (gst_ogg_mux_change_state):
24330         Ported ogg muxer.
24331
24332 2005-05-05  Wim Taymans  <wim@fluendo.com>
24333
24334         * docs/design-audiosinks.txt:
24335         * gst-libs/gst/audio/TODO:
24336         * gst-libs/gst/audio/gstaudiosink.c:
24337         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24338         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24339         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24340         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24341         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24342         (gst_audiosink_create_ringbuffer):
24343         * gst-libs/gst/audio/gstbaseaudiosink.c:
24344         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24345         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24346         (gst_baseaudiosink_set_property), (build_linear_format),
24347         (debug_spec_caps), (debug_spec_buffer),
24348         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24349         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24350         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24351         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24352         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24353         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24354         (gst_ringbuffer_release), (gst_ringbuffer_play),
24355         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24356         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
24357         (gst_ringbuffer_set_sample), (wait_segment),
24358         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
24359         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
24360         More work on the audiosink, mostly debugging and a race in
24361         shutdown.
24362
24363 2005-04-28  Wim Taymans  <wim@fluendo.com>
24364
24365         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24366         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
24367         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
24368         (vorbis_dec_src_query), (vorbis_dec_src_event),
24369         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24370         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24371         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
24372         Don't crap out when seeking back to position 0.
24373
24374 2005-04-28  Wim Taymans  <wim@fluendo.com>
24375
24376         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
24377         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
24378         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
24379         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
24380         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
24381         Make audio sink configurable, use alsasink as default.
24382
24383 2005-04-28  Wim Taymans  <wim@fluendo.com>
24384
24385         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
24386         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24387         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24388         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
24389         (vorbis_dec_change_state):
24390         * ext/vorbis/vorbisdec.h:
24391         Refactor, use STREAM_LOCK.
24392
24393 2005-04-28  Wim Taymans  <wim@fluendo.com>
24394
24395         * ext/theora/theoradec.c: (_inc_granulepos),
24396         (theora_dec_sink_event), (theora_handle_comment_packet),
24397         (theora_handle_type_packet), (theora_handle_header_packet),
24398         (theora_handle_data_packet), (theora_dec_chain),
24399         (theora_dec_change_state):
24400         Refactor a bit, use STREAM_LOCK.
24401
24402 2005-04-28  Wim Taymans  <wim@fluendo.com>
24403
24404         * ext/alsa/Makefile.am:
24405         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
24406         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
24407         (gst_alsa_link), (gst_alsa_close_audio):
24408         * ext/alsa/gstalsaplugin.c: (plugin_init):
24409         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
24410         (gst_alsasink_dispose), (gst_alsasink_base_init),
24411         (gst_alsasink_class_init), (gst_alsasink_init),
24412         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
24413         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
24414         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
24415         (gst_alsasink_reset):
24416         * ext/alsa/gstalsasink.h:
24417         Implement alsasink with simple open/write/close API. 
24418         Make alsa dir build by disabling compilation of code.
24419
24420 2005-04-28  Wim Taymans  <wim@fluendo.com>
24421
24422         * gst-libs/gst/audio/Makefile.am:
24423         * gst-libs/gst/audio/audio.h:
24424         * gst-libs/gst/audio/audioclock.c:
24425         * gst-libs/gst/audio/audioclock.h:
24426         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
24427         (gst_audio_clock_class_init), (gst_audio_clock_init),
24428         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
24429         * gst-libs/gst/audio/gstaudioclock.h:
24430         * gst-libs/gst/audio/gstaudiosink.c:
24431         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24432         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24433         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24434         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24435         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24436         (gst_audiosink_create_ringbuffer):
24437         * gst-libs/gst/audio/gstbaseaudiosink.c:
24438         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24439         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24440         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
24441         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
24442         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24443         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24444         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24445         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24446         * gst-libs/gst/audio/gstbaseaudiosink.h:
24447         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24448         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
24449         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24450         (gst_ringbuffer_release), (gst_ringbuffer_play),
24451         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24452         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
24453         (gst_ringbuffer_set_sample), (wait_segment),
24454         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
24455         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
24456         * gst-libs/gst/audio/gstringbuffer.h:
24457         Make ringbuffer faster and more simple by removing the locks
24458         in the playback thread.
24459         Add sample accurate playback based on buffer sample offsets.
24460         Make the baseaudiosink provide a clock.
24461         Parse caps in the base class.
24462         Correctly handle seeking, flushing and state changes.
24463
24464 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24465
24466         * configure.ac:
24467         * gst/audioconvert/Makefile.am:
24468         * gst/audioscale/Makefile.am:
24469           Fix part of the build.  Come on guys, autogen didn't even work :)
24470
24471 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24472
24473         * configure.ac:
24474         * gst-libs/gst/Makefile.am:
24475         * gst-libs/gst/media-info/.cvsignore:
24476         * gst-libs/gst/media-info/Makefile.am:
24477         * gst-libs/gst/media-info/README:
24478         * gst-libs/gst/media-info/media-info-priv.c:
24479         * gst-libs/gst/media-info/media-info-priv.h:
24480         * gst-libs/gst/media-info/media-info-test.c:
24481         * gst-libs/gst/media-info/media-info.c:
24482         * gst-libs/gst/media-info/media-info.h:
24483         * gst-libs/gst/media-info/media-info.vcproj:
24484         * pkgconfig/Makefile.am:
24485         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
24486         * pkgconfig/gstreamer-media-info.pc.in:
24487           Remove media-info, which is also successed by playbin (see Totem
24488           implementation).
24489
24490 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24491
24492         * configure.ac:
24493         * examples/Makefile.am:
24494         * examples/gstplay/.cvsignore:
24495         * examples/gstplay/Makefile.am:
24496         * examples/gstplay/player.c:
24497         * gst-libs/gst/Makefile.am:
24498         * gst-libs/gst/play/.cvsignore:
24499         * gst-libs/gst/play/Makefile.am:
24500         * gst-libs/gst/play/play.c:
24501         * gst-libs/gst/play/play.h:
24502         * gst-libs/gst/play/play.vcproj:
24503         * pkgconfig/Makefile.am:
24504         * pkgconfig/gstreamer-play-uninstalled.pc.in:
24505         * pkgconfig/gstreamer-play.pc.in:
24506           Remove libgstplay, playbin is now the official successor.
24507
24508 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24509
24510         * configure.ac:
24511         * gst-libs/gst/Makefile.am:
24512         * gst-libs/gst/xwindowlistener/Makefile.am:
24513         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
24514         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
24515           Remove deprecated xwindowlistener (I've moved xwindowlistening
24516           in the v4l/v4l2 plugins over to serverside).
24517
24518 2005-04-25  David Schleef  <ds@schleef.org>
24519
24520         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
24521         to examples/dynparams.  Examples do not belong interspersed with
24522         source code.
24523         * examples/dynparams/demo-dparams.c:
24524         * gst/sine/Makefile.am:
24525         * gst/sine/demo-dparams.c:
24526
24527 2005-04-25  David Schleef  <ds@schleef.org>
24528
24529         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
24530         * gst-libs/gst/audio/Makefile.am:
24531         * gst-libs/gst/riff/Makefile.am:
24532         * gst-libs/gst/tag/Makefile.am:
24533         * gst-libs/gst/video/Makefile.am:
24534         * gst-libs/gst/xwindowlistener/Makefile.am:
24535
24536         Convert to 0.9 API, seems to work:
24537         * sys/ximage/Makefile.am:
24538         * sys/ximage/ximagesink.c:
24539
24540 2005-04-24  David Schleef  <ds@schleef.org>
24541
24542         Link plugins against libraries:
24543         * ext/alsa/Makefile.am:
24544         * gst/tcp/Makefile.am:
24545
24546         Remove asm code that should be in liboil
24547         * gst/videoscale/Makefile.am:
24548         * gst/videoscale/videoscale_x86_asm.s:
24549
24550         gettext wants these checked in:
24551         * po/af.po:
24552         * po/az.po:
24553         * po/cs.po:
24554         * po/en_GB.po:
24555         * po/hu.po:
24556         * po/it.po:
24557         * po/nb.po:
24558         * po/nl.po:
24559         * po/or.po:
24560         * po/sq.po:
24561         * po/sr.po:
24562         * po/sv.po:
24563         * po/uk.po:
24564         * po/vi.po:
24565
24566 2005-04-24  David Schleef  <ds@schleef.org>
24567
24568         Convert gst_main() to g_main_loop_run()
24569         * gst/playback/decodetest.c: (main):
24570         * gst/playback/test2.c: (main):
24571         * gst/playback/test3.c: (main):
24572         * gst/playback/test4.c: (main):
24573
24574         Link plugins against libraries:
24575         * ext/libvisual/Makefile.am:
24576         * sys/xvimage/Makefile.am:
24577
24578 2005-04-24  David Schleef  <ds@schleef.org>
24579
24580         * configure.ac: Remove idct and resample libs
24581         * gst-libs/gst/Makefile.am: same
24582
24583         Remove usage of gst_library_load():
24584         * ext/alsa/gstalsaplugin.c: (plugin_init):
24585         * ext/libvisual/visual.c: (plugin_init):
24586         * ext/ogg/gstogg.c: (plugin_init):
24587         * ext/theora/theora.c: (plugin_init):
24588         * ext/vorbis/vorbis.c: (plugin_init):
24589         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
24590         * gst/audioscale/gstaudioscale.c:
24591         * gst/adder/gstadder.c: (plugin_init):
24592         * gst/audioconvert/plugin.c: (plugin_init):
24593         * sys/ximage/ximagesink.c: (plugin_init):
24594         * sys/xvimage/xvimagesink.c: (plugin_init):
24595         * gst/tcp/gsttcpplugin.c: (plugin_init):
24596
24597         Link plugins against libraries:
24598         * ext/ogg/Makefile.am:
24599         * ext/theora/Makefile.am:
24600         * ext/vorbis/Makefile.am:
24601         * gst/audioconvert/Makefile.am:
24602
24603         Create proper libraries:
24604         * gst-libs/gst/riff/Makefile.am:
24605         * gst-libs/gst/audio/Makefile.am:
24606         * gst-libs/gst/video/Makefile.am:
24607
24608         Move resample library to audioscale plugin directory:
24609         * gst-libs/gst/resample/Makefile.am:
24610         * gst-libs/gst/resample/README:
24611         * gst-libs/gst/resample/dtof.c:
24612         * gst-libs/gst/resample/dtos.c:
24613         * gst-libs/gst/resample/functable.c:
24614         * gst-libs/gst/resample/private.h:
24615         * gst-libs/gst/resample/resample.c:
24616         * gst-libs/gst/resample/resample.h:
24617         * gst-libs/gst/resample/resample.vcproj:
24618         * gst-libs/gst/resample/test.c:
24619         * gst/audioscale/Makefile.am:
24620         * gst/audioscale/README:
24621         * gst/audioscale/dtof.c:
24622         * gst/audioscale/dtos.c:
24623         * gst/audioscale/functable.c:
24624         * gst/audioscale/private.h:
24625         * gst/audioscale/resample.c:
24626         * gst/audioscale/resample.h:
24627         * gst/audioscale/test.c:
24628
24629         Move tagedit library to gst-libs:
24630         * gst-libs/gst/tag/Makefile.am:
24631         * gst-libs/gst/tag/gstid3tag.c:
24632         * gst-libs/gst/tag/gsttagediting.c:
24633         * gst-libs/gst/tag/gsttageditingprivate.h:
24634         * gst-libs/gst/tag/gstvorbistag.c:
24635         * gst/tags/Makefile.am:
24636         * gst/tags/gstid3tag.c:
24637         * gst/tags/gstvorbistag.c:
24638
24639         Fix for core changes:
24640         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24641         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
24642         (gst_sinesrc_getrange):
24643
24644 2005-04-23  David Schleef  <ds@schleef.org>
24645
24646         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
24647         in gst-plugins in a long time, and properly belongs in liboil.
24648         * gst-libs/gst/idct/Makefile.am:
24649         * gst-libs/gst/idct/README:
24650         * gst-libs/gst/idct/dct.h:
24651         * gst-libs/gst/idct/doieee:
24652         * gst-libs/gst/idct/fastintidct.c:
24653         * gst-libs/gst/idct/floatidct.c:
24654         * gst-libs/gst/idct/idct.c:
24655         * gst-libs/gst/idct/idct.h:
24656         * gst-libs/gst/idct/idtc.vcproj:
24657         * gst-libs/gst/idct/ieeetest.c:
24658         * gst-libs/gst/idct/intidct.c:
24659
24660 2005-04-20  Wim Taymans  <wim@fluendo.com>
24661
24662         * docs/design-audiosinks.txt:
24663         * gst-libs/gst/audio/Makefile.am:
24664         * gst-libs/gst/audio/TODO:
24665         * gst-libs/gst/audio/gstaudiosink.c:
24666         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24667         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24668         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
24669         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24670         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24671         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
24672         (gst_audiosink_class_init), (gst_audiosink_init),
24673         (gst_audiosink_create_ringbuffer):
24674         * gst-libs/gst/audio/gstaudiosink.h:
24675         * gst-libs/gst/audio/gstbaseaudiosink.c:
24676         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
24677         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
24678         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
24679         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
24680         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
24681         (gst_baseaudiosink_create_ringbuffer),
24682         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24683         * gst-libs/gst/audio/gstbaseaudiosink.h:
24684         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24685         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
24686         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
24687         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24688         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
24689         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24690         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
24691         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
24692         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
24693         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
24694         * gst-libs/gst/audio/gstringbuffer.h:
24695         An attempt at a set of audio base classes together with some
24696         design docs.
24697
24698 2005-04-20  Wim Taymans  <wim@fluendo.com>
24699
24700         * gst/audioconvert/Makefile.am:
24701         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24702         (gst_audio_convert_caps_remove_format_info),
24703         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
24704         (gst_audio_convert_channels):
24705         Link against audio libs.
24706         Fix audio convert plugin.
24707
24708 2005-04-20  Wim Taymans  <wim@fluendo.com>
24709
24710         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
24711         (gst_ogg_demux_sink_activate):
24712         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
24713         (theora_set_header_on_caps), (theora_enc_sink_event),
24714         (theora_enc_chain):
24715         Fix theora encoder.
24716
24717 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24718
24719         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
24720         * gst/playback/gstdecodebin.c: (find_compatibles):
24721           Work with staticpadtemplates in elementfactories.
24722
24723 2005-04-12  Wim Taymans  <wim@fluendo.com>
24724
24725         * gst/playback/README:
24726         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
24727         (compare_ranks), (print_feature), (gst_decode_bin_init),
24728         (dynamic_create), (dynamic_free), (find_compatibles),
24729         (mimetype_is_raw), (close_pad_link), (got_redirect),
24730         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
24731         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
24732         (gst_decode_bin_change_state):
24733         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24734         (gst_play_base_bin_init), (group_destroy), (group_commit),
24735         (check_queue), (queue_overrun), (queue_threshold_reached),
24736         (queue_out_of_data), (gen_preroll_element), (unknown_type),
24737         (new_decoded_pad), (setup_subtitle), (gen_source_element),
24738         (got_redirect), (setup_source), (play_base_eos),
24739         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
24740         (gst_play_base_bin_remove_element):
24741         * gst/playback/gstplaybasebin.h:
24742         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24743         (gst_play_bin_init), (gst_play_bin_dispose),
24744         (gst_play_bin_set_property), (gen_video_element),
24745         (gen_text_element), (gen_audio_element), (remove_sinks),
24746         (gst_play_bin_send_event):
24747         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
24748         (stream_info_change_state), (gst_stream_info_set_mute):
24749         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
24750         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
24751         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
24752         (gst_stream_selector_chain):
24753         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
24754         (main):
24755         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
24756         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
24757         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
24758         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
24759         Raw and crude port of decodebin. 
24760         Make playbin compile.
24761
24762 2005-04-06  Wim Taymans  <wim@fluendo.com>
24763
24764         * ext/gnomevfs/Makefile.am:
24765         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
24766         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
24767         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
24768         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
24769         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
24770         (gst_gnomevfssrc_stop):
24771         * ext/ogg/Makefile.am:
24772         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
24773         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
24774         * ext/theora/Makefile.am:
24775         * ext/theora/theoradec.c: (_inc_granulepos),
24776         (theora_dec_sink_event), (theora_dec_chain):
24777         * ext/vorbis/Makefile.am:
24778         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
24779         (vorbis_dec_sink_event), (vorbis_dec_chain):
24780         * gst-libs/gst/audio/Makefile.am:
24781         * sys/xvimage/Makefile.am:
24782         Make gnomevfssrc extend the source base class.
24783         Fix linking against libs in various plugins.
24784
24785 2005-04-06  Andy Wingo  <wingo@pobox.com>
24786
24787         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
24788         GST_BASE_LIBS.
24789
24790         * configure.ac: Add check and AC_SUBST for libgstbase.
24791
24792 2005-03-31  Wim Taymans  <wim@fluendo.com>
24793
24794         * examples/seeking/Makefile.am:
24795         * examples/seeking/cdparanoia.c: (main):
24796         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
24797         (play_cb), (pause_cb), (stop_cb), (main):
24798         * examples/seeking/playbin.c:
24799         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
24800         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
24801         (make_sid_pipeline), (make_vorbis_pipeline),
24802         (make_theora_pipeline), (make_vorbis_theora_pipeline),
24803         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
24804         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
24805         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
24806         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
24807         (stop_cb), (main):
24808         * examples/seeking/spider_seek.c:
24809         * examples/seeking/vorbisfile.c:
24810         * ext/gnomevfs/Makefile.am:
24811         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
24812         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
24813         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
24814         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
24815         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
24816         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
24817         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
24818         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
24819         * ext/ogg/README:
24820         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
24821         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
24822         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
24823         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
24824         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
24825         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
24826         (gst_ogg_pad_event), (gst_ogg_pad_reset),
24827         (gst_ogg_demux_factory_filter), (compare_ranks),
24828         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
24829         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
24830         (gst_ogg_chain_new), (gst_ogg_chain_free),
24831         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
24832         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
24833         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
24834         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
24835         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
24836         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
24837         (gst_ogg_demux_get_prev_page),
24838         (gst_ogg_demux_deactivate_current_chain),
24839         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
24840         (gst_ogg_demux_bisect_forward_serialno),
24841         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
24842         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
24843         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
24844         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
24845         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
24846         (gst_ogg_demux_change_state), (gst_ogg_print):
24847         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24848         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
24849         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24850         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
24851         (gst_ogg_mux_loop):
24852         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24853         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
24854         (theora_dec_src_convert), (theora_dec_sink_convert),
24855         (theora_dec_src_query), (theora_dec_src_event),
24856         (theora_dec_sink_event), (theora_dec_chain),
24857         (theora_dec_change_state):
24858         * ext/theora/theoraenc.c: (gst_theora_enc_init),
24859         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
24860         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
24861         (theora_enc_change_state):
24862         * ext/vorbis/Makefile.am:
24863         * ext/vorbis/oggvorbisenc.c:
24864         * ext/vorbis/oggvorbisenc.h:
24865         * ext/vorbis/vorbis.c: (plugin_init):
24866         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
24867         (vorbis_dec_src_query), (vorbis_dec_src_event),
24868         (vorbis_dec_sink_event), (vorbis_dec_chain),
24869         (vorbis_dec_change_state):
24870         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24871         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
24872         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
24873         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
24874         (gst_vorbisenc_change_state):
24875         * ext/vorbis/vorbisenc.h:
24876         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
24877         * gst-libs/gst/audio/audioclock.c:
24878         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24879         (gst_audiofilter_init), (gst_audiofilter_chain):
24880         * gst-libs/gst/audio/testchannels.c: (main):
24881         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
24882         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
24883         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
24884         (gmip_find_track_streaminfo), (gmip_find_track_format):
24885         * gst-libs/gst/media-info/media-info.c:
24886         (gst_media_info_read_idler):
24887         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
24888         (gst_play_get_all_by_interface):
24889         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
24890         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
24891         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
24892         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
24893         (gst_riff_parse_info):
24894         * gst-libs/gst/riff/riff-read.h:
24895         * gst-libs/gst/riff/riff.c: (plugin_init):
24896         * gst-libs/gst/video/Makefile.am:
24897         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
24898         (gst_videosink_class_init), (gst_videosink_get_type):
24899         * gst-libs/gst/video/videosink.h:
24900         * gst/audioconvert/bufferframesconvert.c:
24901         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
24902         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
24903         * gst/audioconvert/channelmixtest.c: (main):
24904         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24905         (gst_audio_convert_chain),
24906         (gst_audio_convert_caps_remove_format_info),
24907         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
24908         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
24909         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
24910         (gst_audio_convert_buffer_to_default_format),
24911         (gst_audio_convert_buffer_from_default_format),
24912         (gst_audio_convert_channels):
24913         * gst/audioconvert/gstchannelmix.h:
24914         * gst/ffmpegcolorspace/avcodec.h:
24915         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24916         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
24917         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
24918         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
24919         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
24920         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
24921         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
24922         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
24923         (mpeg_video_type_find), (mpeg_video_stream_type_find),
24924         (dv_type_find):
24925         * gst/videotestsrc/gstvideotestsrc.c:
24926         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
24927         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
24928         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
24929         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
24930         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
24931         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
24932         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
24933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
24934         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
24935         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
24936         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
24937         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
24938         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
24939         (gst_xvimagesink_navigation_send_event),
24940         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
24941         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
24942         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
24943         * sys/xvimage/xvimagesink.h:
24944         Plugin port to 0.9, ogg/theora playback should work in the seek
24945         example now.
24946         Removed old examples.
24947         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
24948         explained in 0.9 TODO doc.
24949
24950
24951 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24952
24953         * autogen.sh:
24954         * configure.ac:
24955         * ext/Makefile.am:
24956         * gst/Makefile.am:
24957         * po/POTFILES.in:
24958         * po/af.po:
24959         * po/az.po:
24960         * po/cs.po:
24961         * po/en_GB.po:
24962         * po/hu.po:
24963         * po/it.po:
24964         * po/nb.po:
24965         * po/nl.po:
24966         * po/or.po:
24967         * po/sq.po:
24968         * po/sr.po:
24969         * po/sv.po:
24970         * po/uk.po:
24971         * po/vi.po:
24972         * sys/Makefile.am:
24973         * testsuite/Makefile.am:
24974           remove a whole bunch of plugins.  This module now contains a set
24975           of free reference plugins/elements as agreed.
24976
24977 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
24978
24979         * configure.ac:
24980           hunting season on 0.9 is now OPEN
24981
24982 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24983
24984         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
24985           Kick the hell out of gcc for not warning me about a symbol conflict.
24986
24987 2005-02-22  Luca Ognibene  <luogni@tin.it>
24988
24989         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
24990
24991         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
24992           Don't leak caps string (fixes #168134)
24993
24994         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
24995         (gst_jpegenc_init), (gst_jpegenc_finalize),
24996         (gst_jpegenc_change_state):
24997           Don't leak line buffers and context struct (fixes #168133).
24998
24999 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
25000
25001         * configure.ac:
25002         * ext/dirac/gstdiracdec.cc:
25003         (gst_diracdec_chain):
25004           Since dirac 0.5.0 the framerate in dirac is expressed as a
25005           rational number. Fix build and up requirement to 0.5.0, and
25006           also pass parameters to gst_diracdec_link in the right order
25007           (fixes #167959).
25008
25009 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
25010
25011         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
25012         * ext/faad/gstfaad.h:
25013         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
25014         certain invalid muxed streams, where some packets will contain 
25015         junk after decoder data. Partially fixes #149158.
25016
25017 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
25018         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
25019           Make sure we only write to writable buffers
25020
25021 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
25022
25023         * gst-libs/gst/riff/riff-media.c:
25024         (gst_riff_create_audio_caps_with_data):
25025           Do actually fix invalid RIFF fmt header values for alaw
25026           and mulaw audio instead of just saying so.
25027
25028         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
25029           Give gst_riff_create_audio_caps_with_data() a chance to
25030           fix up broken format header fields before extracting any
25031           parameters from the header. (fixes #167633)
25032
25033 2005-02-19  Martin Holters  <martin.holters@gmx.de>
25034
25035         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25036
25037         * gst/audioconvert/bufferframesconvert.c:
25038         (buffer_frames_convert_link):
25039           Don't leak othercaps. (fixes #167878)
25040
25041 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
25042
25043         * configure.ac:
25044         * ext/libvisual/visual.c: (gst_visual_srclink),
25045         (gst_visual_change_state):
25046           Support libvisual 0.2.0.
25047
25048 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
25049
25050         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
25051         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
25052           Use same rowstrides for I420 as used everywhere else.
25053
25054 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
25055
25056         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
25057           Declare variables at beginning of block and make gcc-2.95 happy
25058           (fixes # 167482, patch by Gergely Nagy).
25059           
25060         * gst/tcp/gsttcpclientsrc.c:
25061         * gst/tcp/gsttcpclientsrc.h:
25062           Move some includes into the header, so that struct sockaddr_in is
25063           defined when it should be defined on FreeBSD as well (fixes
25064           #167483).
25065           
25066         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
25067           Don't pass uninitialised values to setsockopt() here either.
25068
25069 2005-02-17  Luca Ognibene  <luogni at tin dot it>
25070
25071         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25072
25073         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
25074           Don't pass uninitialised values to setsockopt(). (fixes #167704)
25075
25076 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25077
25078         * gst/playback/gstplaybin.c: (add_sink):
25079           Invert bin_add/link order to workaround deadlock in opt.
25080
25081 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25082
25083         * gst/modplug/gstmodplug.cc:
25084           Add missing break causing position queries to fail.
25085
25086 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25087
25088         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
25089           Granpos can apparently be -1, which screws up calculations...
25090
25091 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
25092
25093         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25094         (gst_ximagesink_send_pending_navigation),
25095         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
25096         (gst_ximagesink_init):
25097         * sys/ximage/ximagesink.h:
25098         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25099         (gst_xvimagesink_send_pending_navigation),
25100         (gst_xvimagesink_navigation_send_event),
25101         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
25102         * sys/xvimage/xvimagesink.h:
25103           Use a mutex protected list to marshal navigation
25104           events into the stream thread from whichever thread
25105           sends them.
25106
25107 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
25108
25109         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
25110           Display current position and track length; misc. clean-ups.
25111           
25112         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
25113         (speed_init), (speed_chain):
25114           Add query function, so that the stream length and current position
25115           get adjusted when queried (note that current position queries may
25116           still be wrong if the audio sink returns values based on buffer
25117           timestamps instead of passing on the query).
25118
25119 2005-02-13  Benjamin Otte  <otte@gnome.org>
25120
25121         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
25122         (gst_audio_convert_channels):
25123           create channel conversion matrix when linking
25124         * gst/audioconvert/.cvsignore:
25125         * gst/audioconvert/Makefile.am:
25126         * gst/audioconvert/channelmixtest.c: (main):
25127           add (ugly) test that ensures stereo <=> mono conversion works
25128           correctly
25129
25130 2005-02-13  Benjamin Otte  <otte@gnome.org>
25131
25132         * gst/audioconvert/gstchannelmix.h:
25133           include missing header file
25134         * gst/audioconvert/gstchannelmix.c:
25135         (gst_audio_convert_fill_compatible):
25136           use same sign for both channels when converting to/from compatible
25137           channel. Previously used different signs made the signals cancel
25138           each other out and appear like silence. (fixes #167269)
25139
25140 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25141
25142         * gst/ffmpegcolorspace/avcodec.h:
25143         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
25144         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
25145         (gst_ffmpegcsp_avpicture_fill):
25146         * gst/ffmpegcolorspace/imgconvert.c:
25147           Convert to and from YV12 (fixes #156379).
25148
25149 2005-02-12  Julien MOUTTE  <julien@moutte.net>
25150
25151         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
25152         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
25153         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
25154         (gst_ximagesink_expose), (gst_ximagesink_set_property),
25155         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
25156         methods from chain and negotiation and vice versa (Fixes #166142).
25157         * sys/ximage/ximagesink.h: Add stream_lock.
25158         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25159         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25160         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25161         (gst_xvimagesink_expose): Check for xcontext before trying to link.
25162
25163 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25164
25165         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
25166           Don't send "Hey! You gave me a NULL pointer you naughty person" as
25167           error message when we can't open the DVD device (when dvdnav_open()
25168           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
25169           the above). Send something more useful instead (fixes #167117).
25170
25171 2005-02-11  Julien MOUTTE  <julien@moutte.net>
25172
25173         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
25174         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
25175         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25176         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25177         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
25178         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
25179         methods from chain and negotiation and vice versa (Fixes #166142).
25180         Fix a possible bug of images in the buffer pool being discarded because
25181         we are looking at the wrong geometry.
25182         * sys/xvimage/xvimagesink.h: Add stream_lock.
25183
25184 2005-02-11  David Schleef  <ds@schleef.org>
25185
25186         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
25187         unsigned int. (fixes #167128)
25188
25189 2005-02-11  David Schleef  <ds@schleef.org>
25190
25191         * gst/librfb/Makefile.am: Testing stuff before committing is
25192           for wimps... and people with fast machines.  Fix stupid
25193           mistake.
25194
25195 2005-02-11  David Schleef  <ds@schleef.org>
25196
25197         * configure.ac: Pull in librfb from my CVS tree, because it is
25198           too small and annoying to be separate.  Move rfbsrc plugin
25199           to gst/.
25200         * ext/Makefile.am:
25201         * ext/librfb/Makefile.am:
25202         * ext/librfb/gstrfbsrc.c:
25203         * gst/librfb/Makefile.am:
25204         * gst/librfb/gstrfbsrc.c:
25205         * gst/librfb/rfb.c:
25206         * gst/librfb/rfb.h:
25207         * gst/librfb/rfbbuffer.c:
25208         * gst/librfb/rfbbuffer.h:
25209         * gst/librfb/rfbbytestream.c:
25210         * gst/librfb/rfbbytestream.h:
25211         * gst/librfb/rfbcontext.h:
25212         * gst/librfb/rfbdecoder.c:
25213         * gst/librfb/rfbdecoder.h:
25214         * gst/librfb/rfbutil.h:
25215
25216 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
25217
25218         * gst/speed/Makefile.am:
25219         * gst/speed/demo-mp3.c: (main):
25220         * gst/speed/filter.func:
25221         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
25222         (speed_class_init), (speed_init), (speed_chain_int16),
25223         (speed_chain_float32), (speed_chain), (speed_set_property),
25224         (speed_get_property), (speed_change_state):
25225         * gst/speed/gstspeed.h:
25226           Fix speed element and make it chain-based (fixes #156467),
25227           and make it handle more than one channel.
25228
25229 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
25230
25231         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
25232         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
25233         (gst_dtsdec_chain), (gst_dtsdec_change_state):
25234         * ext/dts/gstdtsdec.h:
25235           Don't clobber the stack constructing the channels array.
25236           Make the element chain-based. DTS tracks can now be played.
25237           
25238 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
25239
25240         * gst-libs/gst/audio/multichannel.h:
25241         * gst-libs/gst/gconf/gconf.h:
25242         * gst-libs/gst/idct/idct.h:
25243         * gst-libs/gst/media-info/media-info-priv.h:
25244         * gst-libs/gst/play/play.h:
25245         * gst-libs/gst/resample/private.h:
25246         * gst-libs/gst/resample/resample.h:
25247         * gst-libs/gst/riff/riff-ids.h:
25248         * gst-libs/gst/video/video.h:
25249         * gst-libs/gst/video/videosink.h:
25250           Add G_BEGIN_DECLS and G_END_DECLS around headers where
25251           missing, so that they work when included from C++ code.
25252
25253 2005-02-09  David Schleef  <ds@schleef.org>
25254
25255         * testsuite/gst-lint: Check for non-statically scoped
25256           parent_class variables.  This won't be a problem once
25257           plugins are loaded with RTLD_LOCAL.
25258
25259 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25260
25261         * ext/mplex/gstmplexibitstream.cc:
25262           gcc madness.
25263
25264 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25265
25266         * ext/ogg/gstogmparse.c:
25267         * gst/debug/gstnavigationtest.c:
25268           Die, thou faulty symbol pollutors (non-static parent_class).
25269
25270 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25271
25272         * ext/mplex/gstmplexibitstream.cc:
25273           Fix event handling (#165525).
25274
25275 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25276
25277         * ext/mikmod/gstmikmod.c:
25278         * gst/modplug/gstmodplug.cc:
25279           Add missing endianness to template (fixes #165509).
25280
25281 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25282
25283         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
25284           Fix wrong order of reading of optional bytes (#165290).
25285
25286 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25287
25288         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25289           Implement FILLER event awareness.
25290
25291 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25292
25293         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
25294           Fix track calculations (#166208).
25295
25296 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
25297
25298         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25299
25300         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
25301         * ext/libpng/gstpngenc.c:
25302           Fix byte-order, use proper fixed caps. Fixes #164197.
25303
25304 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
25305
25306         * configure.ac:
25307           Add dvdlpcmdec 
25308
25309         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
25310         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
25311           Don't push buffers if the src pad isn't negotiated yet.
25312           
25313         * gst/audioconvert/gstaudioconvert.c:
25314         (gst_audio_convert_buffer_to_default_format),
25315         (gst_audio_convert_buffer_from_default_format):
25316           Add support for 24-bit width.
25317
25318         * gst/dvdlpcmdec/.cvsignore:
25319         * gst/dvdlpcmdec/Makefile.am:
25320         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
25321         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
25322         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
25323         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
25324         (plugin_init):
25325         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
25326           New decoder for rearranging DVD LPCM into our audio/x-raw-int
25327           format. Needs support for the channels maps if someone can find 
25328           a DVD LPCM track with > 2 channels.
25329
25330         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
25331         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
25332         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
25333         * gst/mpegstream/gstdvddemux.h:
25334         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
25335         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
25336         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
25337         * gst/mpegstream/gstmpegdemux.h:
25338         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
25339         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
25340         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
25341         (gst_mpeg_parse_handle_src_query),
25342         (gst_mpeg_parse_handle_src_event):
25343           Use audio/x-dvd-lpcm for LPCM output.
25344           Add DTS output.
25345
25346 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
25347
25348         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25349
25350         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
25351         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
25352           Add BGRA handling (#165736).
25353
25354 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
25355
25356         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25357
25358         * gst/law/alaw-decode.c: (alawdec_link):
25359         * gst/law/alaw-encode.c: (alawenc_link):
25360         * gst/law/mulaw-decode.c: (mulawdec_link):
25361         * gst/law/mulaw-encode.c: (mulawenc_link):
25362           Fix caps memleaks (#166600).
25363
25364 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
25365
25366         * ext/tarkin/mem.h:
25367         * ext/tarkin/wavelet.h:
25368         * ext/tarkin/yuv.h:
25369         * gst/ffmpegcolorspace/avcodec.h:
25370           Include "_stdint.h" instead of <stdint.h>. Fixes build on
25371           systems that don't have stdint.h, like Solaris9 (fixes #166631).
25372
25373 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25374
25375         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
25376         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
25377         (gst_xvimagesink_change_state):
25378           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
25379           Xv video (and thereby regenerate Xv colourkey) in clear() so
25380           that PLAY -> READY -> PLAY works (fixes #162504).
25381
25382 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25383
25384         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
25385           Switch to list instead of range, since MJPEG-devices really just
25386           support decimations, not any size.
25387
25388 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
25389         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
25390         (gst_mpeg2dec_reset), (free_all_buffers),
25391         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
25392         * ext/mpeg2dec/gstmpeg2dec.h:
25393           The libmpeg2 user-allocated buffer management is awkward, 
25394           to say the least. Hopefully this fixes things.
25395
25396 2005-02-04  Andy Wingo  <wingo@pobox.com>
25397
25398         * gst/audioconvert/bufferframesconvert.c
25399         (buffer_frames_convert_fixate): New function, fixates to 256
25400         frames per buffer by default. (Much better than 1.)
25401         (buffer_frames_convert_init): Set the fixate function for both src
25402         and sink pad.
25403         (buffer_frames_convert_link): After success setting nonfixed caps,
25404         get the negotiated caps so we can know how many buffer-frames it
25405         will be. No idea how this worked at all before.
25406
25407 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
25408
25409         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
25410         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
25411         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
25412         (handle_sequence), (handle_picture):
25413         * ext/mpeg2dec/gstmpeg2dec.h:
25414           Rearrange buffer tracking and refcounting and refactor
25415           a little for readability. 
25416
25417 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
25418         * sys/v4l/gstv4l.c: (plugin_init):
25419         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
25420         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
25421         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
25422         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
25423         * sys/v4l/gstv4ljpegsrc.h:
25424         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
25425         * sys/v4l/v4l_calls.h:
25426         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
25427         (gst_v4lsrc_get_fps):
25428         * sys/v4l/v4lsrc_calls.h:
25429           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
25430           you jpeg inside rgb frames" driver.
25431           Don't error in the v4lsrc link function, just return 
25432           REFUSED.
25433
25434 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25435
25436         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
25437         (gst_qcamsrc_open):
25438           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
25439
25440 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25441
25442         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
25443           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
25444
25445 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25446
25447         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
25448           Reset negotiated state on PAUSED->READY.
25449
25450 2005-02-02  David Schleef  <ds@schleef.org>
25451
25452         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
25453         whereever possible.  (Fixes #165997)
25454         * examples/capsfilter/capsfilter1.c: (main):
25455         * examples/dynparams/filter.c: (create_ui):
25456         * examples/seeking/cdparanoia.c: (get_track_info), (main):
25457         * examples/seeking/chained.c: (main):
25458         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
25459         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
25460         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
25461         (make_mpeg_pipeline), (make_mpegnt_pipeline):
25462         * examples/seeking/spider_seek.c: (make_spider_pipeline):
25463         * examples/switch/switcher.c: (main):
25464         * ext/dv/demo-play.c: (main):
25465         * ext/faad/gstfaad.c: (gst_faad_change_state):
25466         * ext/mad/gstmad.c: (gst_mad_chain):
25467         * ext/smoothwave/demo-osssrc.c: (main):
25468         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
25469         (gst_gconf_render_bin_from_description),
25470         (gst_gconf_get_default_audio_sink),
25471         (gst_gconf_get_default_video_sink),
25472         (gst_gconf_get_default_audio_src),
25473         (gst_gconf_get_default_video_src),
25474         (gst_gconf_get_default_visualization_element):
25475         * gst/level/demo.c: (main):
25476         * gst/level/plot.c: (main):
25477         * gst/playback/gstplaybin.c: (gen_video_element),
25478         (gen_audio_element):
25479         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
25480         * gst/playondemand/demo-mp3.c: (setup_pipeline):
25481         * gst/sine/demo-dparams.c: (main):
25482         * gst/spectrum/demo-osssrc.c: (main):
25483         * gst/speed/demo-mp3.c: (main):
25484         * gst/volume/demo.c: (main):
25485         * testsuite/embed/embed.c: (main):
25486
25487 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
25488
25489         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
25490         (gst_tcpclientsink_finalize):
25491         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
25492         (gst_tcpclientsrc_finalize):
25493         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
25494         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
25495         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
25496         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
25497           Don't leak the hostname when shutting down.
25498           In tcpserversrc, take a copy of the default hostname.
25499
25500 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25501
25502         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
25503           Set caps to systemstream=TRUE.
25504
25505 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25506
25507         * testsuite/Makefile.am:
25508           Fix more OSX buildbots.
25509
25510 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
25511
25512         * ext/mpeg2dec/gstmpeg2dec.c:
25513           Don't send things to NULL PAD_PEERs
25514
25515         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
25516           Copy-on-write the incoming buffer.
25517
25518         * gst/mpegstream/gstdvddemux.h:
25519         * gst/mpegstream/gstmpegclock.h:
25520         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
25521         (normal_seek), (gst_mpeg_demux_handle_src_event):
25522         * gst/mpegstream/gstmpegdemux.h:
25523         * gst/mpegstream/gstmpegpacketize.h:
25524         * gst/mpegstream/gstmpegparse.c:
25525         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
25526         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
25527         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
25528         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
25529         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
25530         * gst/mpegstream/gstmpegparse.h:
25531         * gst/mpegstream/gstrfc2250enc.h:
25532           Various changes to the way time is computed that make seeking and
25533           total time estimation much better here.
25534           Use G_BEGIN/END_DECLS instead of __cplusplus
25535
25536         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
25537           Use gst_buffer_stamp instead of only copying the TIMESTAMP
25538
25539 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25540
25541         * gst/subparse/gstsubparse.c:
25542           Fix OSX buildbot.
25543
25544 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
25545
25546         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
25547         (theora_enc_chain), (theora_enc_change_state):
25548         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
25549         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
25550         (gst_vorbisenc_change_state):
25551         * ext/vorbis/vorbisenc.h:
25552           Set granulepos and timestamp correctly for streams not
25553           starting at 0, taking into account the initial delay.
25554
25555 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
25556
25557         * gst/mpegstream/gstdvddemux.c:
25558           Add audio/x-dts to audio pad template caps
25559
25560 2005-01-30  David Schleef  <ds@schleef.org>
25561
25562         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
25563         (create_context), (gst_polypsink_link): Fix silly endianness
25564         bug.  Add some debugging.  Remove float from caps; it doesn't
25565         work.  Attempt to get remote audio working.
25566
25567 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25568
25569         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
25570           Add 3IV2 fourcc.
25571
25572 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25573
25574         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
25575         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
25576         (gst_avi_demux_stream_data):
25577         * gst/avi/gstavidemux.h:
25578           Invert DIB images. Fixes #132341.
25579
25580 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25581
25582         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25583         (gst_ffmpegcsp_chain):
25584           D'oh, reference the palette data, not the palette structure.
25585           Fixes color distortion in #132341.
25586
25587 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25588
25589         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
25590           PAR can be non-fixed when not provided as argument (#162626).
25591
25592 2005-01-29  David Moore  <dcm@acm.org>
25593
25594         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25595
25596         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25597         (gst_qtdemux_loop_header):
25598           Re-apply patch from #142272 that allows non-seekable sources,
25599           re-proposed by Daniel Drake <dsd@gentoo.org>.
25600
25601 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25602
25603         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
25604           Use the src template for creating the src pad (#162330).
25605
25606 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25607
25608         * configure.ac:
25609         * ext/musepack/Makefile.am:
25610         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
25611         (gst_musepackdec_init), (gst_musepackdec_dispose),
25612         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
25613         (gst_musepack_stream_init), (gst_musepackdec_loop),
25614         (gst_musepackdec_change_state):
25615         * ext/musepack/gstmusepackdec.cpp:
25616         * ext/musepack/gstmusepackdec.h:
25617         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
25618         (gst_musepack_reader_read), (gst_musepack_reader_seek),
25619         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
25620         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
25621         * ext/musepack/gstmusepackreader.cpp:
25622         * ext/musepack/gstmusepackreader.h:
25623           Update to 1.1 API (#165446).
25624
25625 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25626
25627         * ext/Makefile.am:
25628           Unbreak buildbot.
25629
25630 2005-01-28  Andy Wingo  <wingo@pobox.com>
25631
25632         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
25633         to reflect a different dubious internet source. Add a reference
25634         and some commentary.
25635
25636 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25637
25638         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25639         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
25640         * gst/playback/gststreamselector.h:
25641           Be more selective when we're redoing caps negotiation from
25642           within the chain function on a stream change.
25643
25644 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25645
25646         * configure.ac:
25647         * ext/Makefile.am:
25648         * ext/amrnb/Makefile.am:
25649         * ext/amrnb/amrnb.c: (plugin_init):
25650         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
25651         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
25652         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
25653         (gst_amrnbdec_state_change):
25654         * ext/amrnb/amrnbdec.h:
25655         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
25656         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
25657         (gst_amrnbparse_init), (gst_amrnbparse_formats),
25658         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
25659         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
25660         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
25661         * ext/amrnb/amrnbparse.h:
25662           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
25663         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
25664           Add AMR-NB/-WB raw formats.
25665         * ext/alsa/gstalsa.c: (gst_alsa_link):
25666           Keep valid time when changing format.
25667         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25668         (qtdemux_parse_trak):
25669           Add some more format-specific options (#140141, #143555, #155163).
25670
25671 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25672
25673         * gst/matroska/matroska-demux.c:
25674         (gst_matroska_demux_parse_blockgroup):
25675           Fix logic error in timing of subtitle stream synchronization.
25676         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
25677           Add skip-chunk, which is found in kodak-camera streams.
25678
25679 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
25680
25681         * po/LINGUAS:
25682         * po/vi.po:
25683           Adding Vietnamese translation (submitted by Clytie Siddall)
25684
25685 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25686
25687         * gst/playback/gstdecodebin.c: (try_to_link_1):
25688           Use realpad for signal.
25689
25690 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25691
25692         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
25693           Fix category so decodebin picks it up.
25694
25695 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25696
25697         * ext/mad/Makefile.am:
25698         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
25699         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
25700         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
25701         (found_type), (gst_id3demux_bin_change_state):
25702         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
25703         (gst_id3_tag_init), (gst_id3_tag_handle_event),
25704         (gst_id3_tag_src_link), (gst_id3_tag_chain),
25705         (gst_id3_tag_change_state), (plugin_init):
25706         * ext/mad/gstmad.h:
25707           Add id3demuxbin (which is a simple bin consisting of id3demux
25708           and typefind), take over rank from id3demux, remove typefind
25709           code from id3demux. Makes all broken mp3s that I know of work,
25710           and thereby fixes #152688.
25711
25712 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
25713
25714         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25715
25716         * ext/mad/gstmad.c: (gst_mad_src_event):
25717         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
25718           Allow seeks on audio pad, make mad forward those (#164826).
25719         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
25720           Set duration (#165335).
25721
25722 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25723
25724         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
25725         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
25726         (gst_asf_demux_process_ext_content_desc),
25727         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
25728         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
25729         * gst/asfdemux/gstasfdemux.h:
25730           Improve metadata display, e.g. if the metadata comes before the
25731           streams are loaded (which is perfectly valid).
25732
25733 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25734
25735         * tools/gst-launch-ext-m.m:
25736           Fix AVI/ASF pipelines (#165340).
25737
25738 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
25739         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
25740         build failure on amd64
25741
25742 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
25743
25744         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
25745         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
25746           Check environment variables GST_ID3V2_TAG_ENCODING,
25747           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
25748           list of character encodings to force interpretation of non-unicode
25749           strings stored in an ID3v2 tag to a particular encoding. If none
25750           is specified, try to use current locale's encoding, then fall back
25751           to ISO-8859-1 (which will always succeed). (Resolves #149274)
25752         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
25753         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
25754           Check environment variables GST_ID3V1_TAG_ENCODING,
25755           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
25756           list of character encodings to use in case a string encountered
25757           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
25758           specified, try to use the current locale's encoding, then fall
25759           back to ISO-8859-1 (which will always succeed).
25760
25761 2005-01-25  Benjamin Otte  <otte@gnome.org>
25762
25763         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
25764           - on half framerate, compute the rate in advance so the comparisons
25765             don't compare wrong values
25766           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
25767             behaviour
25768           - don't use mad_header_decode anymore, mad_frame_decode does that
25769             automatically
25770           - when getting rid of consumed bytes, reset the stream's skiplen
25771           (fixes #163867)
25772
25773 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
25774
25775         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
25776           Use 1/2 a second for default max_discont, as PES streams from DVB
25777           seem to have larger spacings in the SCR. 
25778           Fix a typo.
25779
25780 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25781
25782         * gst/playback/gstplaybasebin.c: (group_commit):
25783           Notify delayed stream-info availability.
25784
25785 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
25786         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
25787         (gst_a52dec_handle_event), (gst_a52dec_chain):
25788         Add some debug output. Check that a discont has a valid
25789         time associated.
25790         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
25791         (gst_alsa_sink_loop):
25792         Ignore TAG events. A little extra debug for broken timestamps.
25793         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
25794         (dvdnavsrc_change_state):
25795         Ensure we send a discont to engage the link before we send any
25796         other events.
25797         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
25798         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
25799         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
25800         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
25801         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
25802         dvd://title works in totem because typefinding sends a seek that ends
25803         up going back to chapter 1 regardless.
25804         * ext/mpeg2dec/gstmpeg2dec.c:
25805         * ext/mpeg2dec/gstmpeg2dec.h:
25806         Output correct timestamps and handle disconts.
25807         * ext/ogg/gstoggdemux.c: (get_relative):
25808         Small guard against a null dereference.
25809         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
25810         (gst_textoverlay_set_property):
25811         Free memory when done. Don't call gst_event_filler_get_duration on
25812         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
25813         g_warning.
25814         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
25815         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
25816         (gst_sw_srclink), (gst_smoothwave_chain):
25817         Draw solid lines, prettier colours.
25818         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
25819         Add a default palette that'll work for some movies.
25820         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
25821         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
25822         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
25823         * gst/mpegstream/gstdvddemux.h:
25824         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
25825         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
25826         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
25827         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
25828         * gst/mpegstream/gstmpegparse.h:
25829         Use PTM/NAV events when for timestamp adjustment when connected to 
25830         dvdnavsrc. Don't use many discont events where one suffices.
25831         * gst/playback/gstplaybasebin.c: (group_destroy),
25832         (gen_preroll_element), (gst_play_base_bin_add_element):
25833         * gst/playback/gstplaybasebin.h:
25834         Make sure we remove subtitles from the same bin we put them in.
25835         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
25836         (gst_subparse_buffer_format_autodetect),
25837         (gst_subparse_change_state):
25838         Fix some memleaks and invalid accesses.
25839         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
25840         (oggskel_type_find), (cmml_type_find), (plugin_init):
25841         Some typefind functions for Annodex v3.0 files
25842         * gst/wavparse/gstwavparse.h:
25843         GstRiffReadClass is the correct parent class.
25844
25845 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25846
25847         * gst-libs/gst/riff/riff-media.c:
25848         (gst_riff_create_video_caps_with_data):
25849           Add extradata to huffyuv (fixes #165013).
25850         * gst-libs/gst/riff/riff-read.c:
25851         (gst_riff_read_strf_vids_with_data):
25852           Fix extradata extraction if it is in the chunk size.
25853
25854 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
25855
25856         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25857
25858         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
25859         (gst_quarktv_change_state), (gst_quarktv_dispose):
25860           Memory free'ing location fix (#164708).
25861
25862 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25863
25864         * gst/playback/gstplaybasebin.c: (group_commit),
25865         (gen_preroll_element), (probe_triggered), (gen_source_element),
25866         (setup_source), (gst_play_base_bin_change_state),
25867         (gst_play_base_bin_add_element):
25868           Don't block for streams.
25869         * gst/playback/gststreaminfo.c: (stream_info_change_state),
25870         (gst_stream_info_set_mute):
25871           Use gst_pad_set_active_recursive.
25872
25873 2005-01-25  Andy Wingo  <wingo@pobox.com>
25874
25875         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
25876         for #ifndef HAVE_XVIDEO.
25877
25878 2005-01-24  Jeffrey C. Ollie
25879
25880         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
25881
25882         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
25883         * ext/gsm/gstgsmdec.h:
25884         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
25885         * ext/gsm/gstgsmenc.h:
25886         Fix rate to 8kHz as per spec, removes obscure errors when no rate
25887         was given by property. Add proper buffer timestamps and offsets.
25888
25889 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25890
25891         * gst-libs/gst/riff/riff-media.c:
25892         (gst_riff_create_audio_caps_with_data):
25893           Audio can be <8000Hz.
25894
25895 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25896
25897         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
25898           Explicit state change to workaround refcount bugs.
25899
25900 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25901
25902         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
25903         (gst_avimux_riff_get_avi_header):
25904           Fix...
25905
25906 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25907
25908         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
25909         (gst_riff_read_element_data):
25910         * gst-libs/gst/riff/riff-read.h:
25911           Add _peek version (req'ed in CDXA).
25912         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
25913         (gst_cdxaparse_loop):
25914           Fix parsing in playbin.
25915         * gst/playback/gstdecodebin.c: (close_pad_link):
25916           Ignore current_ pads, they cause major annoyance.
25917
25918 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25919
25920         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25921           Safety guard.
25922
25923 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25924
25925         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
25926           Fix padding...
25927
25928 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25929
25930         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
25931           Allow for 0-sized buffers. Fixes length query problems in
25932           starwars.mkv from the testsuite.
25933
25934 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
25935
25936         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
25937         (gst_video_box_i420), (gst_video_box_chain):
25938           Fix row strides for I420 (fixes #163159)
25939           
25940 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25941
25942         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
25943           MPEG2 has a useful rate property, so we can actually use that.
25944           For MPEG-1, continue using the bytes/time properties.
25945
25946 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25947
25948         * gst-libs/gst/riff/riff-media.c:
25949         (gst_riff_create_video_caps_with_data),
25950         (gst_riff_create_video_template_caps):
25951           Add intel-h263.
25952
25953 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25954
25955         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
25956           Fail if caps negotiation fails. Should fix #162184, and should
25957           definately be in there regardless of it fixing the actual bug.
25958         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
25959         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
25960         (gst_avimux_riff_get_avix_header),
25961         (gst_avimux_riff_get_video_header),
25962         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
25963         (gst_avimux_start_file), (gst_avimux_handle_event),
25964         (gst_avimux_change_state):
25965         * gst/avi/gstavimux.h:
25966           Refactor structure writing to use GST_WRITE_UINT macros, add
25967           metadata writing support.
25968
25969 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25970
25971         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
25972           Elements may already be destroyed when this function is called.
25973
25974 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25975
25976         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25977         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
25978           More memory leak fixes (#149162).
25979
25980 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25981
25982         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25983         (gst_qtdemux_add_stream):
25984           Fix two memleaks.
25985
25986 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25987
25988         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
25989           Argh...
25990
25991 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25992
25993         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
25994           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
25995           when fixating to six channels in Totem.
25996
25997 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
25998
25999         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
26000           Fix compile warnings on Solaris 10 buildbot
26001
26002 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26003
26004         * ext/dvdread/dvdreadsrc.c: (_read):
26005           Don't read beyond the last cell in a chapter (fixes 
26006           invalid memory access)
26007
26008 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26009
26010         * ext/dvdread/stream_labels.c:
26011         (dvdreadsrc_get_audio_stream_labels):
26012           Use NULL for an empty GList instead of g_list_alloc(); fix 
26013           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
26014           of GString (easier to bulk free later)
26015
26016 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26017
26018         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26019
26020         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26021         (gst_ffmpeg_pixfmt_to_caps):
26022           Fix BGRA32 caps (#164209).
26023
26024 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26025
26026         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26027
26028         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26029         (gst_ffmpeg_caps_to_pixfmt):
26030           alpha_mask can be RGBA/ABGR. Fixes #164265.
26031
26032 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
26033
26034         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26035
26036         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
26037         (gst_mpeg2dec_alloc_buffer):
26038         * ext/mpeg2dec/gstmpeg2dec.h:
26039           Crop if decoding size is not the actual image size (#163676).
26040
26041 2005-01-17  Steve Baker  <steve@stevebaker.org>
26042
26043         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26044
26045         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
26046         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
26047           Add libsndfile typefind functions (#163309).
26048
26049 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26050
26051         * tools/gst-launch-ext-m.m:
26052           Add .aac, fix .m1v/.m2v (#163891).
26053
26054 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26055
26056         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
26057           Sanity check, don't wait endlessly since the clock might not
26058           actually run at this point (which is a deadlock). Fixes #164069.
26059
26060 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26061
26062         * gst/playback/gstplaybasebin.c: (probe_triggered):
26063           Of course, only pause if group is done...
26064
26065 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26066
26067         * gst/playback/gstplaybasebin.c: (probe_triggered):
26068           Thread safety.
26069
26070 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
26071
26072         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
26073           Don't return state change success when the parent
26074           failed.
26075
26076 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26077
26078         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
26079           Free events (fix memleak in #162905).
26080
26081 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
26082
26083         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26084
26085         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26086         (gst_ffmpeg_caps_to_pixfmt):
26087           Fix for depth = 15. Fixes #161675.
26088
26089 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26090
26091         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
26092           Set FPS correctly, even for webcams and the like.
26093         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
26094           Don error on setting while capturing.
26095
26096 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26097
26098         * ext/dv/gstdvdec.c:
26099         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26100         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26101           I'm a bad boy. using /1001. to force C to do float division
26102           and not integer division (as it did in my last commit)
26103           Thanks to David I. Lehn for pointing this mistake.
26104
26105 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26106
26107         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
26108           Revert Johan's 1.35->1.36 since it breaks compat.
26109
26110 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26111
26112         * ext/dv/gstdvdec.c:
26113         * ext/libfame/gstlibfame.c:
26114         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26115         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26116           replace framerate aproximations by their real value
26117           (24000/1001, 30000/1001, 60000/1001)
26118           Finish fixing bug #164049
26119
26120 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26121
26122         * ext/ogg/gstoggmux.c:
26123           eos/bos debugging
26124         * gst/tcp/gstmultifdsink.c:
26125         * gst/tcp/gstmultifdsink.h:
26126         * gst/tcp/gsttcp.c:
26127         * gst/tcp/gsttcp.h:
26128         * gst/tcp/gsttcpclientsink.c:
26129         * gst/tcp/gsttcpclientsrc.c:
26130         * gst/tcp/gsttcpserversink.c:
26131         * gst/tcp/gsttcpserversrc.c:
26132           improve reusability of elements after state changes and errors
26133           make multifdsink throw away streamheaders when receiving new ones
26134
26135 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26136
26137         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26138           Fix for if items are already in list...
26139
26140 2005-01-12  Benjamin Otte  <otte@gnome.org>
26141
26142         * gst/adder/gstadder.c: (gst_adder_loop):
26143           fix adder a bit so it doesn't screw up with events as much anymore
26144
26145 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
26146
26147         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
26148         (pixbufscale_scale), (gst_pixbufscale_chain):
26149         * ext/gdk_pixbuf/pixbufscale.h:
26150           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
26151           to ensure rowstrides are calculated the same way as 
26152           ffmpegcolorspace
26153           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
26154           that we pick up duration and offset also.
26155
26156 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26157
26158         * gst/avi/gstavimux.c: (gst_avimux_class_init),
26159         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
26160           Reusability fixes.
26161
26162 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26163
26164         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
26165         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
26166         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
26167         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
26168           Update flags when requested.
26169
26170 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26171
26172         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26173           Fix dmix.
26174
26175 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26176
26177         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
26178         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
26179         (probe_triggered), (new_decoded_pad), (gen_source_element),
26180         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
26181         * gst/playback/gstplaybasebin.h:
26182         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
26183         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
26184         (gst_play_bin_change_state):
26185           Implement group-switch signal for use in apps to clear metadata
26186           cache, clean up subtitle, add suburi property instead of # hack,
26187           some error-out fixes.
26188
26189 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26190
26191         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
26192           Debug.
26193         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
26194           If we got a state change in the _get handler, don't return success.
26195
26196 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26197
26198         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
26199         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
26200           Make jpegdec quiet on MJPEG decoding
26201         * gst/asfdemux/README:
26202           Fix mimetypes for MJPEG and H263
26203
26204 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26205
26206         * ext/theora/theoradec.c: (theora_dec_chain):
26207           Fix broken code generation by gcc by swapping arguments.
26208         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
26209           Fix \n in debug.
26210
26211 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26212
26213         * TODO:
26214           delete this file, it is by far outdated
26215         * ext/alsa/gstalsa.1: remove
26216         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
26217         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
26218         (gst_alsa_get_caps):
26219           Add HW probing for supported sample rates. Fixes #161704
26220
26221 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26222
26223         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26224           Don't crash, biatch! :).
26225
26226 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26227
26228         * ext/musepack/gstmusepackreader.cpp:
26229         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
26230           Some work on tags - still doesn't work in playbin...
26231         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26232           Handle events...
26233
26234 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26235
26236         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
26237           Also shove tags on kid pads.
26238
26239 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26240
26241         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
26242           Don't bail on unknown events.
26243         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26244           Don't crash on events before negotiation.
26245         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26246           Send tags on pads, too.
26247         * gst/playback/gststreamselector.c:
26248         (gst_stream_selector_request_new_pad):
26249           Forward events on first pad if no input was selected yet.
26250
26251 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26252
26253         * gst/playback/gstplaybasebin.c: (setup_substreams):
26254           Don't disable streamtype if the stream doesn't exist, since
26255           then playing a video after audio will disable both and nothing
26256           will happen. Fixes the testsuite.
26257
26258 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26259
26260         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
26261         (gst_v4l_xoverlay_set_xwindow_id):
26262         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
26263         (gst_v4l2_xoverlay_set_xwindow_id):
26264           Add debug categories, fix overlay disabling.
26265
26266 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26267
26268         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
26269         * ext/alsa/gstalsa.h:
26270           Add HW probing for period_count/size and buffer_size MIX/MAX
26271           Adjust default/user defined value if out of bounds
26272           Should fix bug #162024
26273
26274 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26275
26276         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
26277           Fix warning (#161191).
26278
26279 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26280
26281         * ext/dvdread/stream_labels.c:
26282         (dvdreadsrc_get_audio_stream_labels):
26283           Fix warning (init the good variable in switch default)
26284
26285 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
26286
26287         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26288
26289         * gst/tta/gstttaparse.c: (gst_tta_src_event):
26290           Fix gcc-2.95 compile (#163485).
26291
26292 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26293
26294         * configure.ac:
26295         * ext/flac/gstflacenc.c: (gst_flacenc_init),
26296         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
26297         (gst_flacenc_tell_callback), (gst_flacenc_chain),
26298         (gst_flacenc_change_state):
26299         * ext/flac/gstflacenc.h:
26300           Update for API change in flac-1.1.1. Update requirement in
26301           configure.ac. Fixes #162974.
26302
26303 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26304
26305         * gst/playback/gstplaybasebin.c: (group_destroy):
26306           Remove hack to get rid of assert and get rid of unlinked
26307           signals properly.
26308
26309 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26310
26311         * gst/playback/gstplaybasebin.c: (setup_source):
26312           Set source to NULL so that resources are free'ed. Fixes issues
26313           with playback of CDDA and similar device-accessing things.
26314
26315 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26316
26317         * testsuite/embed/Makefile.am:
26318           test->noinst, fix make test in buildbot.
26319
26320 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26321
26322         * ext/dvdread/stream_labels.c: new file
26323         * ext/dvdread/stream_labels.h: new file
26324         * ext/dvdread/Makefile.am:
26325         * ext/dvdread/dvdreadsrc.c: (_seek_title):
26326           Extract audio stream label from DVD IFO files.
26327           It only dump them on the console for now, still have to
26328           make playbin aware of them.
26329
26330 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26331
26332         * gst/playback/gstplaybasebin.c: (setup_source):
26333           Fix hanging subs.
26334
26335 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26336
26337         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
26338         (gen_preroll_element), (remove_groups), (setup_subtitle),
26339         (gen_source_element), (setup_source):
26340         * gst/playback/gstplaybasebin.h:
26341           Multiple .sub files is just a stupid idea... Fix some threading
26342           mistakes. Interestingly, external .sub files cause playbin to
26343           hang, I don't know why... Parsing fixes contributed by Fran??ois
26344           Kooman <fkooman@tuxed.net>.
26345
26346 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26347
26348         * testsuite/embed/Makefile.am:
26349           Fix buildbot.
26350
26351 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
26352
26353         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26354
26355         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
26356         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
26357         (gst_pngenc_set_property):
26358         * ext/libpng/gstpngenc.h:
26359           Add compression level property (#163323).
26360
26361 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26362
26363         * configure.ac:
26364         * examples/capsfilter/capsfilter1.c: (main):
26365         * examples/seeking/spider_seek.c: (make_spider_pipeline):
26366         * ext/dvdread/Makefile.am:
26367         * ext/dvdread/demo-play:
26368         * ext/dvdread/demo-play.c:
26369         * gconf/gstreamer.schemas.in:
26370         * gst-libs/gst/gconf/gconf.c:
26371         * sys/v4l/TODO:
26372         * testsuite/Makefile.am:
26373         * testsuite/embed/Makefile.am:
26374         * testsuite/embed/embed.c: (cb_expose), (main):
26375           Remove all references to xvideosink, fix examples (#140845).
26376         * gst/playback/gstplaybasebin.c: (group_destroy):
26377           Apparently, disposal does not unlink - so do explicitely.
26378         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26379           Add debug.
26380
26381 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
26382
26383         * README: fix PKG_CONFIG_PATH instructions, what was there
26384         previously was breaking default search path, not nice. 
26385         Fixes #163358
26386
26387 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26388
26389         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
26390         (gst_audioscale_chain):
26391           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
26392           when resampling - how the ^@$^!@^! is this possible?!?
26393
26394 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26395
26396         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
26397           Reset variables on READY.
26398         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
26399         (gst_matroska_mux_loop):
26400           Require data before writing header.
26401
26402 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
26403
26404         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26405
26406         * ext/mad/gstmad.c: (gst_mad_chain):
26407           Don't call mad_stream_sync() directly after recovering sync.
26408           Fixes #151661.
26409
26410 2005-01-09  Martin Eikermann  <meiker@upb.de>
26411
26412         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26413
26414         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
26415         (snapshot_handler), (gst_snapshot_sinkconnect),
26416         (gst_snapshot_chain):
26417           Allocate resources when required, fix recursive signal emission
26418           and fix caps. Fixes #161667.
26419
26420 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
26421
26422         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26423
26424         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
26425         (gst_pngdec_chain):
26426           Handle only 8-bppc (bits-per-pixel-component) images, better
26427           error handling and correct strides. Fixes #163177.
26428         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
26429         (gst_pngenc_chain):
26430           Better error handling. Fixes #163348.
26431
26432 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26433
26434         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
26435         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
26436         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
26437         (dvdnavsrc_uri_handler_init):
26438           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
26439         * gst/playback/gstplaybasebin.c: (gen_source_element):
26440           Add MMS to streaming URIs.
26441
26442 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26443
26444         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
26445         * sys/xvimage/xvimagesink.c:
26446         (gst_xvimagesink_navigation_send_event):
26447           Check for pad availability before sending event.
26448
26449 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26450
26451         * gst-plugins.spec.in:
26452           Add subparse.
26453
26454 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26455
26456         * configure.ac:
26457           Since we use functions from CVS, up requirement.
26458
26459 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26460
26461         * gst/playback/Makefile.am:
26462         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
26463         (group_destroy), (group_commit), (group_is_muted),
26464         (gen_preroll_element), (add_stream), (unknown_type),
26465         (probe_triggered), (preroll_unlinked), (mute_stream),
26466         (silence_stream), (new_decoded_pad), (setup_substreams),
26467         (setup_source), (get_active_source), (mute_group_type),
26468         (muted_group_change_state), (set_active_source),
26469         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
26470         (play_base_eos), (gst_play_base_bin_change_state):
26471         * gst/playback/gstplaybasebin.h:
26472         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
26473         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
26474         (gst_stream_info_dispose), (stream_info_mute_pad),
26475         (stream_info_change_state), (gst_stream_info_set_mute):
26476         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
26477         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
26478         (gst_stream_selector_init), (gst_stream_selector_dispose),
26479         (gst_stream_selector_get_linked_pad),
26480         (gst_stream_selector_get_caps), (gst_stream_selector_link),
26481         (gst_stream_selector_get_linked_pads),
26482         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
26483         * gst/playback/gststreamselector.h:
26484           Adding stream selection support plus required properties for
26485           applications to use this. Fully fixes #100931.
26486
26487 2005-01-08  Benjamin Otte  <otte@gnome.org>
26488
26489         * gst/games/gstpuzzle.c: (nav_event_handler):
26490           - handle nav events differently: forward every event no matter if it
26491             was handled or not.
26492           - translate events
26493           You can now cheat by using navigationtest ! puzzle and moving the
26494           mouse close to the edge of a tile. ;)
26495
26496 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26497
26498         * configure.ac:
26499         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
26500         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
26501         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
26502         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
26503         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
26504         (gst_ogm_parse_plugin_init):
26505         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
26506         (gst_textoverlay_link), (gst_textoverlay_getcaps),
26507         (gst_textoverlay_event), (gst_textoverlay_video_chain),
26508         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
26509         * ext/pango/gsttextoverlay.h:
26510         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
26511         (gst_matroska_demux_handle_seek_event),
26512         (gst_matroska_demux_sync_streams),
26513         (gst_matroska_demux_parse_blockgroup),
26514         (gst_matroska_demux_subtitle_caps),
26515         (gst_matroska_demux_plugin_init):
26516         * gst/matroska/matroska-ids.h:
26517         * gst/playback/gstdecodebin.c: (close_pad_link):
26518         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
26519         (gen_preroll_element), (remove_groups), (add_stream),
26520         (new_decoded_pad), (setup_subtitles), (gen_source_element),
26521         (setup_source):
26522         * gst/playback/gstplaybasebin.h:
26523         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
26524         * gst/subparse/Makefile.am:
26525         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
26526         (gst_subparse_base_init), (gst_subparse_class_init),
26527         (gst_subparse_init), (gst_subparse_formats),
26528         (gst_subparse_eventmask), (gst_subparse_event),
26529         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
26530         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
26531         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
26532         (parse_mpsub_deinit), (parse_mpsub_init),
26533         (gst_subparse_buffer_format_autodetect),
26534         (gst_subparse_format_autodetect), (gst_subparse_loop),
26535         (gst_subparse_change_state), (gst_subparse_type_find),
26536         (plugin_init):
26537         * gst/subparse/gstsubparse.h:
26538         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
26539         (plugin_init):
26540           Add subtitle support, .sub parser (supports SRT and MPsub),
26541           OGM text support, Matroska UTF-8 text support, deadlock fixes
26542           all over the place, subtitle awareness in decodebin/playbin
26543           and some fixes to textoverlay to handle subtitles in a stream
26544           correctly. Fixes #100931.
26545
26546 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26547
26548         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
26549           Check for pad availability before doing a query on it.
26550
26551 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26552
26553         * ext/dv/gstdvdec.c:
26554           really fix bpp24/32 dvdec caps (classic rgba indeed)
26555         * gst/asfdemux/gstasfdemux.c:
26556         (gst_asf_demux_process_ext_content_desc):
26557           don't send text tags if they are empty (bis repetita)
26558
26559 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26560
26561         * ext/dv/gstdvdec.c:
26562          remove unneeded comment from dvdec
26563           (related to DV 4CC codes in AVI files)
26564           moved them in gstreamer/docs/random/mimetypes
26565         * gst/asfdemux/gstasfdemux.c:
26566         (gst_asf_demux_process_ext_content_desc):
26567          don't send text tags if they are empty
26568          fix mem leak on error path
26569         * gst/ffmpegcolorspace/avcodec.h:
26570         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26571         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
26572         (gst_ffmpegcsp_avpicture_fill):
26573         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
26574         * gst/ffmpegcolorspace/imgconvert_template.h:
26575          adds BGR32 and BGRA32 to ffmpegcolorspace
26576           (still bad colors, fixing it on next commit)
26577           helps with dvdec outputing BGR32
26578
26579 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26580
26581         * ext/dv/gstdvdec.c:
26582          Fix audio caps i just broke (missing ',')
26583         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
26584         (gst_matroska_mux_reset):
26585          Fix typo + add FIXME about old "x-gst-metadata" crap
26586
26587 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26588
26589         * ext/dv/demo-play.c: (main):
26590          xvideosink -> xvimagesink
26591         * ext/dv/gstdvdec.c:
26592          change rgb 32/32 caps to 24/32 (no alpha)
26593          change nb of channels to be a list (2 or 4, not 2)
26594          change sample rate to be a list (32, 44.1, 48 kHz) not a range
26595         * gst/asfdemux/gstasfdemux.c:
26596         (gst_asf_demux_process_ext_content_desc):
26597          Add 'date/year' to extracted metadata list
26598
26599 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26600
26601         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
26602           The return value of fixate_to does not imply that the requested
26603           value was set, so don't assume.
26604
26605 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
26606
26607         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26608
26609         * ext/libpng/gstpngdec.c:
26610         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
26611         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
26612         * ext/libpng/gstpngenc.h:
26613           Alpha support (encoder; #163161), mime fixage.
26614
26615 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
26616
26617         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26618
26619         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
26620         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
26621         (gst_faac_set_property), (gst_faac_get_property):
26622         * ext/faac/gstfaac.h:
26623           Allow for ADTS output (#153434).
26624
26625 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26626
26627         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
26628           Fix against template (#150576).
26629
26630 2005-01-06  Benjamin Otte  <otte@gnome.org>
26631
26632         * gst/games/gstpuzzle.c: (draw_puzzle):
26633           don't draw a puzzle if either width or height of tiles would be 0.
26634
26635 2005-01-06  Benjamin Otte  <otte@gnome.org>
26636
26637         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
26638         (gst_puzzle_class_init), (gst_puzzle_finalize):
26639           no memleaks, please
26640         (gst_puzzle_create), (gst_puzzle_init),
26641         (gst_puzzle_set_property), (gst_puzzle_setup):
26642           change initialization code around so we don't reshuffle on resize
26643         (draw_puzzle):
26644           fix another stupid typo
26645
26646 2005-01-06  Benjamin Otte  <otte@gnome.org>
26647
26648         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
26649           fix stupid typo that borked copying on YUY2
26650
26651 2005-01-06  Benjamin Otte  <otte@gnome.org>
26652
26653         * gst/games/gstpuzzle.c: (draw_puzzle):
26654           fix edges when image sizes aren't multiples of tile sizes
26655
26656 2005-01-06  Benjamin Otte  <otte@gnome.org>
26657
26658         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
26659           make RGB endianness work correctly
26660         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
26661           refactor and fix race with initial shuffling
26662         (nav_event_handler):
26663           allow using the mouse to puzzle
26664         (draw_puzzle):
26665           insist on tiles having width and height as multiples of 4 to get
26666           clean YUV image handling
26667         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
26668         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
26669           s/DEBUG/LOG/ for common messages
26670         (gst_xvimagesink_navigation_send_event):
26671           fix mouse event translation to not include screen PAR
26672         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
26673           fix mouse event translation to actually work
26674
26675 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26676
26677         * gst/asfdemux/gstasfdemux.c:
26678         (gst_asf_demux_process_ext_content_desc):
26679          Extract TrackNumber metadata + clean up code
26680         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
26681          Hope this is the good fix (var used unitialised)
26682
26683 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26684
26685         * ext/faad/gstfaad.c: (gst_faad_chain):
26686           Only increment timestamp if it's valid. Fixes raw AAC streams.
26687
26688 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26689
26690         * configure.ac:
26691         * gst/games/Makefile.am:
26692         * gst/games/gstpuzzle.c:
26693           add a puzzle game with...
26694         * gst/games/gstvideoimage.c:
26695         * gst/games/gstvideoimage.h:
26696           ... full colorspace support (that includes YUV9 and RGB16)) stolen
26697           from videotestsrc and made into something that would be a nice
26698           library for a lot of other plugins.
26699
26700 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26701
26702         * configure.ac:
26703          don't compile faad plugin if a RC of 2.0 is found
26704          Fixes #155346 (and FC1 buildbot)
26705         * gst/asfdemux/gstasfdemux.c:
26706         (gst_asf_demux_process_ext_content_desc):
26707          try to make Solaris compiler happier
26708
26709 2005-01-06  Paul Jack  <pjack@sfaf.org>
26710
26711         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26712
26713         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
26714           Fix segfault (#161667).
26715
26716 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26717
26718         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
26719           Fix framerate reporting.
26720
26721 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26722
26723         * gst-libs/gst/riff/riff-ids.h:
26724         * gst/wavenc/riff.h:
26725          Add AMR (VBR and CBR) ids to riff.h audio codec list
26726         * gst/asfdemux/gstasfdemux.c:
26727         (gst_asf_demux_process_ext_content_desc),
26728         (gst_asf_demux_process_object):
26729           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
26730
26731 2005-01-05  Martin Eikermann  <meiker@upb.de>
26732
26733         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26734
26735         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
26736         (gst_dvd_demux_handle_discont):
26737         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
26738         (gst_mpeg_demux_handle_discont):
26739           Recreate pads on new-media (#160730).
26740         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
26741           Send discont even if manager changes timestamps (#161929).
26742
26743 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
26744
26745         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26746
26747         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
26748           Fix invalid memory access (#159211).
26749
26750 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26751
26752         * examples/gstplay/player.c: (main):
26753           Don't iterate.
26754         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
26755           Add visualizations.
26756         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
26757         (gst_a52dec_handle_frame):
26758           Set duration.
26759         * ext/dvdnav/gst-dvd:
26760           Add audioconvert. Fixes #161325.
26761         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
26762           Explicitely case to gint64. Possible valgrind error.
26763         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
26764         (gst_play_tick_callback), (gst_play_change_state),
26765         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
26766         (gst_play_set_location), (gst_play_get_location),
26767         (gst_play_seek_to_time), (gst_play_set_data_src),
26768         (gst_play_set_video_sink), (gst_play_set_audio_sink),
26769         (gst_play_set_visualization), (gst_play_connect_visualization),
26770         (gst_play_get_framerate), (gst_play_get_all_by_interface),
26771         (gst_play_new):
26772           Use playbin. Fixes #139749 and #147744.
26773         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
26774           Add genre tag.
26775         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
26776         (audioscale_get_type), (gst_audioscale_base_init),
26777         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
26778         (gst_audioscale_getcaps), (gst_audioscale_fixate),
26779         (gst_audioscale_link), (gst_audioscale_get_buffer),
26780         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
26781         (gst_audioscale_init), (gst_audioscale_dispose),
26782         (gst_audioscale_chain), (gst_audioscale_set_property),
26783         (gst_audioscale_get_property), (plugin_init):
26784           Indent properly.
26785         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
26786           Fix LPCM.
26787         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
26788         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
26789         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
26790           Add more metadata (fixes #162656).
26791
26792 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26793
26794         * configure.ac:
26795           back to cvs
26796
26797 === release 0.8.7 ===
26798
26799 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26800
26801         * NEWS:
26802         * RELEASE:
26803         * configure.ac:
26804           releasing 0.8.7, "Hyperspace"
26805
26806 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26807
26808         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
26809
26810         * gst/playback/gstplaybasebin.c:
26811          Fix for #162924 - free caps after use, not before
26812
26813 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
26814
26815         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
26816
26817         * gst/playback/gstplaybasebin.c:
26818         * gst/wavparse/gstwavparse.c:
26819           Fix for #154773 - fixes playback of small .wav files
26820
26821 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
26822
26823         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
26824
26825         * gst/audioscale/gstaudioscale.c:
26826           Fix for #162819 - make audioscale reusable
26827           Fixes playback of more than one file with playbin/totem
26828
26829 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26830
26831         * gst/ffmpegcolorspace/avcodec.h:
26832         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26833         * gst/ffmpegcolorspace/imgconvert.c:
26834           clean up the mess that made me cry and avoid needless duplication
26835
26836 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
26837
26838         * gst/ffmpegcolorspace/imgconvert.c:
26839           give some indication of why we're segfaulting
26840
26841 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26842
26843         * configure.ac:
26844           Fix indentation, fix v4l2 plugin detection.
26845         * ext/Makefile.am:
26846           Fix libmms location (Maciej, use diff -u!).
26847         * ext/alsa/gstalsa.c: (gst_alsa_init):
26848           Initialize caps cache to NULL.
26849         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
26850           Only change state on audiosink if it exists.
26851
26852 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
26853
26854         * gst/matroska/matroska-demux.c:
26855         * gst/matroska/matroska-ids.h:
26856         * gst/matroska/matroska-demux.h:
26857         Fix Vorbis streams failing to decode in some files, where cluster_time
26858         isn't 0, because then it doesn't send codec_priv before actual data.
26859         Remove time-based test and replace it with marker set on beginning of
26860         new stream
26861
26862 2004-12-28  David Schleef  <ds@schleef.org>
26863
26864         Merge patch from Ronald fixing problems with streaming
26865         text.
26866         * ext/cairo/gstcairo.c: (plugin_init):
26867         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
26868         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
26869         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
26870         (gst_textoverlay_font_init), (gst_textoverlay_init),
26871         (gst_textoverlay_set_property):
26872         * ext/cairo/gsttextoverlay.h:
26873
26874 2004-12-27  David Schleef  <ds@schleef.org>
26875
26876         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
26877         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
26878         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
26879         (gst_textoverlay_font_init), (gst_textoverlay_init),
26880         (gst_textoverlay_set_property): Improvements to actually
26881         render text as white on black outline on video, including
26882         font selection and horizontal/vertical alignment.  (Ronald's
26883         christmas present)
26884         * ext/cairo/gsttextoverlay.h:
26885
26886 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
26887
26888         * ext/ogg/gstogg.c:
26889         * ext/ogg/gstogmparse.c:
26890           fix ogm[audio/video]parse plugin registration
26891           (riff won't load if bytestream is already loaded)
26892
26893 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
26894
26895         * gst/audioconvert/gstchannelmix.c:
26896           fix for GLIB < 2.4
26897
26898 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
26899
26900         * Makefile.am:
26901         * configure.ac:
26902           disable docs again until it actually passes make distcheck.
26903
26904 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26905
26906         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
26907         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
26908         (plugin_init):
26909           Add 3GP (variables name Q3GP because they can't start with a
26910           number). Add samr audio fourcc (used in .3gp files), decoder
26911           is work in progress. Also do a GST_WARNING instead of ERROR
26912           in case of unknown nodes, to decrease output.
26913
26914 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
26915
26916         * Makefile.am:
26917           really fix dist
26918
26919 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
26920
26921         * configure.ac:
26922         * ext/speex/gstspeexdec.h:
26923         * ext/speex/gstspeexenc.h:
26924           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
26925           Fix detection code in configure.ac
26926
26927 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26928
26929         * gst/matroska/matroska-demux.c:
26930         (gst_matroska_demux_parse_blockgroup):
26931           Save position, so that queries give proper return values. Don't
26932           know how this could ever have worked before...
26933
26934 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
26935
26936         * configure.ac:
26937           Put additional LAME check inside the conditional.  Fixes #152339
26938
26939 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26940
26941         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26942         (gst_avi_demux_stream_scan):
26943           Add some more debug. Fix logic error when setting movi offset
26944           while reading index.
26945
26946 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26947
26948         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26949         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
26950         (gst_avi_demux_process_next_entry):
26951           Add some debugging. Better detection of broken indexes and the
26952           accompanying index recovery. No infinite loops on state changes
26953           when we're still in our loopfunction.
26954
26955 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26956
26957         * configure.ac:
26958           Fix up.
26959
26960 2004-12-22  Archana Shah  <archana.shah@wipro.com>
26961
26962         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
26963
26964         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
26965           Normalizing the value before setting
26966         (gst_sunaudiomixer_get_volume):
26967           Normalizing the value after getting. Fixes bug# 161980
26968
26969 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
26970
26971         * Makefile.am: Make sure docs gets disted
26972         * docs/Makefile.am: Make sure all needed files get disted
26973         * gst-plugins.spec.in: latest updates
26974
26975 2004-12-22  Wim Taymans  <wim@fluendo.com>
26976
26977         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
26978         Revert patch 1.38 as clock distribution over schedulers does
26979         not work correcly in the core yet.
26980
26981 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
26982
26983         * sys/oss/README: remove this file, which predates my birth
26984           (and which content is by far outdated)
26985
26986 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
26987
26988         * Makefile.am:
26989         * configure.ac:
26990         * docs/Makefile.am:
26991         * docs/libs/Makefile.am:
26992         * docs/libs/gst-plugins-libs-docs.sgml:
26993         * docs/libs/gst-plugins-libs-sections.txt:
26994         * docs/libs/tmpl/gstgconf.sgml:
26995         * docs/upload.mak:
26996         * docs/version.entities.in:
26997           Added boilerplate gtk-doc files for plugin-libs documentation.
26998
26999 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27000
27001         * gst/auparse/gstauparse.c: fix int and float audio caps
27002
27003 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27004
27005         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
27006         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
27007           g_assert() can be a macro, don't use #ifdef inside it.
27008
27009 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
27010
27011         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27012
27013         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
27014         (gst_videorate_init), (gst_videorate_chain),
27015         (gst_videorate_change_state):
27016           Event handling (fixes #159986).
27017
27018 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27019
27020         * gst-libs/gst/riff/riff-media.c:
27021         (gst_riff_create_video_caps_with_data):
27022           Add BLZ0 (Blizzard's version of DivX) fourcc.
27023
27024 2004-12-18  David Schleef  <ds@schleef.org>
27025
27026         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
27027         portability fix.
27028
27029 2004-12-18  David Schleef  <ds@schleef.org>
27030
27031         * gst/tta/ttadec.h: Disable some header code that isn't used
27032         and clearly isn't portable.
27033
27034 2004-12-18  David Schleef  <ds@schleef.org>
27035
27036         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
27037         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27038         (avcodec_get_pix_fmt), (avpicture_layout),
27039         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
27040         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
27041         Fix code to not use GCC extensions (and c99 extensions that
27042         Forte does not like.)
27043
27044 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
27045
27046         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27047
27048         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
27049         (gst_deinterlace_chain):
27050           Rowstride fixes. Fixes #161039.
27051         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
27052         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
27053         (gst_video_crop_getcaps), (gst_video_crop_link),
27054         (gst_video_crop_i420), (gst_video_crop_chain),
27055         (gst_video_crop_change_state):
27056           Rework of negotiation. Actually works now. Fixes #158650.
27057
27058 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27059
27060         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
27061           That was very stupid.
27062
27063 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27064
27065         * gst/matroska/matroska-demux.c:
27066         (gst_matroska_demux_parse_blockgroup):
27067           Fix possible crasher.
27068
27069 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27070
27071         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
27072         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
27073           Lace sizes can be zero.
27074
27075 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27076
27077         * ext/musepack/gstmusepackdec.cpp:
27078           Fetch error return values. Fixes #161624.
27079         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27080           Really EOS.
27081
27082 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27083
27084         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
27085           Work for truncated (unfinished download etc.) files. Fixes #160514.
27086
27087 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27088
27089         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27090           Fix for integer overflow. Makes #156001 not crash. Probably masks
27091           the real bug.
27092
27093 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27094
27095         * gst/ac3parse/gstac3parse.c: (plugin_init):
27096           Parsers never have ranks. Fixes #159651.
27097
27098 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27099
27100         * gst/playback/gstdecodebin.c: (compare_ranks):
27101           make sure the facotries are ordered the same every time even if they
27102           have the same rank by using the name
27103         * gst/playback/gstdecodebin.c: (find_compatibles):
27104           make sure we don't add factories to the list twice
27105
27106 2004-12-16  David Schleef  <ds@schleef.org>
27107
27108         * configure.ac: look for musepack headers as musepack/*.h
27109         (fixes #159847)
27110         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
27111         * ext/musepack/gstmusepackreader.h: same
27112
27113 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27114
27115         * gst-libs/gst/riff/riff-read.c:
27116         (gst_riff_read_strf_auds_with_data):
27117           Read extradata correctly (fixes #155879).
27118
27119 2004-12-16  David Schleef  <ds@schleef.org>
27120
27121         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
27122         audio.  does _not_ attempt or allow conversion unless channels
27123         is 1 or 2.
27124
27125 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27126
27127         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
27128
27129 2004-12-16  David Schleef  <ds@schleef.org>
27130
27131         * gst/audioscale/gstaudioscale.c: the resample library only
27132         handles 1 or 2 channels.  Change caps to compensate.
27133
27134 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27135
27136         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
27137         (gst_matroska_demux_audio_caps):
27138           Some MPEG-AAC hacks, because else it doesn't work...
27139
27140 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27141
27142         * gst-libs/gst/riff/riff-media.c:
27143         (gst_riff_create_video_caps_with_data),
27144         (gst_riff_create_video_template_caps):
27145           Add h264.
27146
27147 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27148
27149         * gst-libs/gst/audio/Makefile.am:
27150           Try to fix buildbot.
27151
27152 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27153
27154         * gst/tcp/gstmultifdsink.c:
27155           Clean up and uniformize debugging.
27156
27157 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
27158
27159         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27160
27161         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27162         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
27163         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
27164         (gst_mpeg_demux_change_state):
27165           Reset on ready. Fixes 160276.
27166
27167 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
27168
27169         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27170
27171         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27172         (gst_ffmpegcsp_pad_link):
27173           Fix memleak (#154815).
27174
27175 2004-12-16  James Bowes  <bowes@cs.dal.ca>
27176
27177         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27178
27179         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
27180         (gst_musicbrainz_init), (gst_musicbrainz_chain),
27181         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
27182         * ext/musicbrainz/gsttrm.h:
27183           Add support for using a proxy server when getting a trm id from
27184           the MusicBrainz database (#149613).
27185
27186 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
27187
27188         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27189
27190         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
27191         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
27192           Fix memleaks (#157233).
27193
27194 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
27195
27196         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27197
27198         * gst-libs/gst/resample/resample.c: (gst_resample_close):
27199         * gst-libs/gst/resample/resample.h:
27200         * gst/audioscale/gstaudioscale.c:
27201           Fix memleak (#159215).
27202
27203 2004-12-16  Toni Willberg  <toniw@iki.fi>
27204
27205         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27206
27207         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
27208         * sys/oss/oss_probe.c: (main):
27209           Check for mono/stereo support (similar to samplerate probing),
27210           fixes #159433. Also add missing copyright header to oss_probe.c.
27211
27212 2004-12-15  David Schleef  <ds@schleef.org>
27213
27214         * configure.ac: add audioresample and cairo plugins.  Remove
27215         HAVE_MMX stuff, because it's not used.
27216         * ext/Makefile.am: same
27217         * ext/audioresample/Makefile.am: You are not ready for an
27218         audio resampling element based on audioresample.
27219         * ext/audioresample/gstaudioresample.c:
27220         * ext/audioresample/gstaudioresample.h:
27221         * ext/cairo/Makefile.am: You are not ready for overlay elements
27222         based on cairo.  Don't look too closely, these elements kinda
27223         suck right now.
27224         * ext/cairo/gstcairo.c: new
27225         * ext/cairo/gsttextoverlay.c: new
27226         * ext/cairo/gsttextoverlay.h: new
27227         * ext/cairo/gsttimeoverlay.c: new
27228         * ext/cairo/gsttimeoverlay.h: new
27229         * gst-libs/gst/media-info/media-info-priv.h: fix compile
27230         problem with compilers that don't support variadic macros.
27231
27232 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
27233
27234         Reviewed by:  David Schleef  <ds@schleef.org>
27235
27236         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
27237         Bala, registering sunaudiosrc (oops!), and cleaning up code a
27238         bit.  Also ran indent-gst.
27239         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
27240         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
27241         (gst_sunaudiosrc_setparams):
27242
27243 2004-12-14  David Schleef  <ds@schleef.org>
27244
27245         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
27246         output rate to 16000.  Should fix #160235.
27247
27248 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27249
27250         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
27251         Add typefinding for mpeg2 pes streams
27252
27253 2004-12-13  David Schleef  <ds@schleef.org>
27254
27255         * configure.ac:  Applied patch from bug #143659, making default
27256         sources and sinks OS-dependent (for Solaris), and added code
27257         for OS/X.
27258         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
27259
27260 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27261
27262         * gst-libs/gst/riff/riff-media.c:
27263           forgot to add h2.64 to avidemux template caps
27264
27265 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27266
27267         * gst/wavenc/riff.h:
27268         * gst-libs/gst/riff/riff-media.c:
27269         * gst-libs/gst/riff/riff-ids.h:
27270         * gst/avi/gstavimux.c
27271         add 4CC code for VideoSoft h264 in AVI (VSSH)
27272           fixes bug #160655
27273         remove s323 from riff, it's quicktime specific :(
27274
27275 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27276
27277         * gst/asfdemux/README
27278         * gst/wavenc/riff.h
27279         * gst-libs/gst/riff/riff-ids.h
27280         * gst-libs/gst/riff/riff-media.c
27281         * gst/qtdemux/qtdemux.c:
27282           add new 4CC codes for h263 related codecs
27283           fixes partially bug #155163
27284
27285 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
27286
27287         * configure.ac: Update polyaudio requirement to 0.7
27288         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
27289
27290 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27291
27292         * gst/interleave/deinterleave.c:
27293         fix my name's spelling! :)
27294
27295 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27296
27297         * AUTHORS ChangeLog
27298         * gst/auparse/gstauparse.c
27299         * gst/interleave/deinterleave.c
27300         * gst/law/:
27301                 alaw-decode.c alaw-encode.c
27302                 mulaw-decode.c mulaw-encode.c
27303         * gst/oneton/gstoneton.c
27304         * sys/osxaudio/:
27305                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
27306         * sys/osxvideo/:
27307                 cocoawindow.h cocoawindow.m
27308                 osxvideosink.h osxvideosink.m
27309
27310         put the same mail address for Zaheer Abbas Merali everywhere
27311
27312 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27313
27314         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
27315           Align by packetsize, and assert that we a packet available before
27316           playing. The first makes webstreams work (they often include
27317           trailing padding data in a packet), the second allows pausing a
27318           ASF stream in totem without getting demux errors afterwards.
27319
27320 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27321
27322         * ext/ogg/gstoggdemux.c: (get_relative):
27323           Check for non-NULL before accessing member (end-of-chain).
27324
27325 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27326
27327         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
27328         (cdparanoia_set_property), (cdparanoia_get_property):
27329         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
27330         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
27331         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
27332         (dvdreadsrc_init), (dvdreadsrc_set_property),
27333         (dvdreadsrc_get_property):
27334         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
27335         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
27336           Synchronize property names where not yet the case. Devices are
27337           now device=X, other versions are deprecated (but still exist).
27338           Also use g_free() unconditionally.
27339         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27340         (setup_source), (gst_play_base_bin_get_property):
27341           Expose source.
27342
27343 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27344
27345         * configure.ac: move GCONF macro outside conditional for the am
27346           conditional. Fixes #160439
27347
27348 2004-12-08  David Schleef  <ds@schleef.org>
27349
27350         * tools/gst-visualise-m.m: Switch to elements that currently
27351         exist.
27352
27353 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27354
27355         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
27356           We love wrong commas.
27357
27358 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27359
27360         * gst/matroska/matroska-demux.c:
27361         (gst_matroska_demux_handle_src_query):
27362           Don't set DEFAULT, unsupported - makes length display incorrectly
27363           in some cases.
27364
27365 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27366
27367         * gst/monoscope/README: remove blurb about files being GPL
27368         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
27369         * gst/monoscope/monoscope.c: Change license to BSD with explanation
27370           monoscope is now effectively LGPL licensed
27371
27372 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27373
27374         * gst/monoscope/README: Update information to be more correct
27375         * gst/monoscope/convolve.c: Relicense to LGPL
27376         * gst/monoscope/convolve.h: Relicense to LGPL
27377
27378 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
27379
27380         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27381           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
27382         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
27383           set default_duration for mpeg1 audio
27384
27385 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27386
27387         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
27388         * ext/alsa/gstalsa.h:
27389           refactor big chunks of the core caps negotiation code to make it
27390           a lot faster, because people claim it's really slow
27391           (actually, just cache the getcaps when the device is opened)
27392
27393 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27394
27395         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
27396         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
27397         (gst_a52dec_handle_frame), (gst_a52dec_chain),
27398         (gst_a52dec_change_state), (plugin_init):
27399         * ext/a52dec/gsta52dec.h:
27400           Do something useful with timestamps. Make chain-based (since
27401           there's really no reason to be loopbased).
27402         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
27403           Update current_byte/frame correctly.
27404
27405 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27406
27407         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
27408         (gst_ape_demux_stream_init):
27409           Forward tags, too.
27410
27411 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27412
27413         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
27414           Let's make sure we're done typefinding when detecting tags.
27415
27416 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27417
27418         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
27419         (gst_ebml_read_init), (gst_ebml_read_use_event),
27420         (gst_ebml_read_element_id), (gst_ebml_peek_id),
27421         (gst_ebml_read_seek), (gst_ebml_read_skip),
27422         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
27423         (gst_ebml_read_master):
27424         * gst/matroska/ebml-read.h:
27425         * gst/matroska/matroska-demux.c:
27426         (gst_matroska_demux_parse_contents),
27427         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
27428           Disgustingly evil hack for working around INTERRUPT events and
27429           their extremely annoying habit of being a pain in the ass. We
27430           simply peek a cluster before reading any of it.
27431
27432 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27433
27434         * ext/musepack/gstmusepackdec.cpp:
27435           There's also floating point libmusepacks.
27436
27437 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27438
27439         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
27440         (gst_faad_chanpos_to_gst), (gst_faad_chain):
27441           Set DURATION even if source buffer didn't. Also use increasing
27442           timestamps.
27443         * gst-libs/gst/riff/riff-media.c:
27444         (gst_riff_create_audio_caps_with_data):
27445           Block_align can have larger values than 8192.
27446
27447 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27448
27449         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
27450         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
27451         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
27452         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
27453           Fix caps.
27454
27455 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27456
27457         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
27458           Fix logic bug.
27459
27460 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27461
27462         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
27463           Yay, another one.
27464
27465 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27466
27467         * ext/esd/esdsink.c: (gst_esdsink_chain):
27468           Make error actually say something useful (fixes #156798).
27469         * gst-libs/gst/riff/riff-media.c:
27470         (gst_riff_create_video_caps_with_data),
27471         (gst_riff_create_video_template_caps):
27472           Add Intel Video 5.0 fourcc (IV50).
27473
27474 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
27475
27476         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
27477         detection on mono and stereo mp3 files.
27478
27479 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27480
27481         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
27482           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
27483           the contained stream).
27484
27485 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27486
27487         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
27488           Oops, remove debug.
27489
27490 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27491
27492         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27493
27494         * gst/law/alaw-decode.c: (alawdec_getcaps):
27495         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
27496           Prevent warnings when negotiating caps (fixes #159338).
27497
27498 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27499
27500         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27501         (gst_ffmpegcsp_chain):
27502           Remove old leftover that shouldn't be there...
27503
27504 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27505
27506         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27507
27508         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
27509           Don't forward DISCONT events (fixes #159684).
27510
27511 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27512
27513         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
27514           Unlink manually since sometimes bin disposal (and therefore
27515           pad unlinking) is delayed, which will cause a new media file
27516           to not be able to start playing instantly.
27517
27518 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27519
27520         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
27521           On mute of an unlinked stream, check for pad availability so
27522           we don't crash on unlinked pad.
27523
27524 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27525
27526         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27527         (gst_avi_demux_massage_index):
27528           Fix quite humiliating bug in omitting 0-sized index chunks but
27529           forgetting to count them for timestamps.
27530
27531 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27532
27533         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
27534           Actually leave the loop if we failed to sync. Don't crash.
27535
27536 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27537
27538         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
27539         (gst_dvd_demux_process_private):
27540         * gst/mpegstream/gstdvddemux.h:
27541           Fix crash (#159759). Doesn't work, though. :-(.
27542
27543 2004-11-28  Benjamin Otte  <otte@gnome.org>
27544
27545         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
27546           more overwriting protection due to modifying channels one by one
27547           instead of all at once
27548
27549 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27550
27551         * gst/audioconvert/gstchannelmix.c:
27552         (gst_audio_convert_fill_normalize):
27553           Normalize using absolute values.
27554
27555 2004-11-28  Julien MOUTTE  <julien@moutte.net>
27556
27557         * configure.ac:
27558         * ext/Makefile.am:
27559         * ext/directfb/Makefile.am:
27560         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
27561         (gst_directfbvideosink_get_pixel_format),
27562         (gst_directfbvideosink_get_format_from_fourcc),
27563         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
27564         (gst_directfbvideosink_sink_link),
27565         (gst_directfbvideosink_change_state),
27566         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
27567         (gst_directfbvideosink_buffer_alloc),
27568         (gst_directfbvideosink_interface_supported),
27569         (gst_directfbvideosink_interface_init),
27570         (gst_directfbvideosink_navigation_send_event),
27571         (gst_directfbvideosink_navigation_init),
27572         (gst_directfbvideosink_set_property),
27573         (gst_directfbvideosink_get_property),
27574         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
27575         (gst_directfbvideosink_base_init),
27576         (gst_directfbvideosink_class_init),
27577         (gst_directfbvideosink_get_type), (plugin_init):
27578         * ext/directfb/directfbvideosink.h: Adding a first version of
27579         directfbvideosink.
27580         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
27581         more.
27582
27583 2004-11-28  Benjamin Otte  <otte@gnome.org>
27584
27585         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
27586           walk the samples backwards if out_channels > in_channels so we don't
27587           overwrite data
27588
27589 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27590
27591         * gst/audioconvert/Makefile.am:
27592         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
27593         (gst_audio_convert_link), (gst_audio_convert_change_state),
27594         (gst_audio_convert_channels):
27595         * gst/audioconvert/gstchannelmix.c:
27596         (gst_audio_convert_unset_matrix),
27597         (gst_audio_convert_fill_identical),
27598         (gst_audio_convert_fill_compatible),
27599         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
27600         (gst_audio_convert_fill_others),
27601         (gst_audio_convert_fill_normalize),
27602         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
27603         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
27604         * gst/audioconvert/gstchannelmix.h:
27605           Implement a channel mixer.
27606
27607 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
27608
27609         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
27610         * ext/alsa/gstalsa.h:
27611         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
27612         Make alsasink actually honor gst_element_set_clock and use that
27613         clock instead of its internal one.
27614
27615 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
27616
27617         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
27618         (gst_play_base_bin_change_state): nullify source and decoder when
27619         going from READY to NULL so that we don't try to do weird stuff with
27620         them when going from NULL to READY
27621         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
27622         instead of g_object_unref
27623         (gen_video_element), (gen_audio_element): more refcounting fixes, now
27624         it should be correct
27625         (gst_play_bin_change_state): don't call remove_sinks if we are
27626         currently disposing the object
27627
27628 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27629
27630         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
27631           Don't forget bass if it's there. Else left channel is silent...
27632
27633 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27634
27635         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
27636         (gst_a52dec_change_state):
27637           Don't do sample adjusting anymore, we use float audio now.
27638         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
27639           Don't fixate to non-existing properties.
27640
27641 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27642
27643         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
27644         (gst_a52dec_change_state):
27645           Advertise that we can do surround sound.
27646
27647 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27648
27649         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
27650           Add buffer-frames=0.
27651         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
27652         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
27653         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
27654         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
27655         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
27656         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
27657         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
27658         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
27659         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
27660         * ext/dvdread/dvdreadsrc.h:
27661           Add seeking, querying for bytes, sectors, title, angle and
27662           chapter. Handle multiple chapters. Relicense to LGPL because
27663           Billy agreed on that (thanks Billy!).
27664
27665 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
27666
27667         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
27668         call parent dispose method
27669
27670 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
27671
27672         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
27673         (gst_audio_clock_get_internal_time):
27674         Fix active <-> inactive transitions: ensure time value always
27675         grows and avoid abrupt value changes.
27676
27677 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
27678
27679         * configure.ac:
27680         * gst/tta/Makefile.am:
27681         * gst/tta/crc32.h:
27682         * gst/tta/filters.h:
27683         * gst/tta/gsttta.c:
27684         * gst/tta/gstttadec.c:
27685         * gst/tta/gstttadec.h:
27686         * gst/tta/gstttaparse.c:
27687         * gst/tta/gstttaparse.h:
27688         * gst/tta/ttadec.h:
27689           added TTA parser and decoder
27690
27691 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27692
27693         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27694         (probe_triggered), (check_queue), (buffer_underrun),
27695         (buffer_running), (buffer_overrun), (gen_source_element),
27696         (setup_source):
27697         * gst/playback/gstplaybasebin.h:
27698           Implement buffering. Needs some more work.
27699
27700 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27701
27702         * ext/theora/theoradec.c: (theora_dec_chain):
27703           Fix ilog mask range overflow.
27704
27705 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27706
27707         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
27708           Don't omit the last (which in case of dmix is the only :) )
27709           channel count. Don't set channels if <= 2.
27710
27711 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
27712
27713         * gst/playback/gstplaybin.c: (gen_video_element),
27714         (gen_audio_element): Removed 2 obsolete comments
27715
27716 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
27717
27718         * ext/vorbis/oggvorbisenc.c
27719         * ext/vorbis/vorbisenc.c :
27720           change description fields of those plugins to differentiate them
27721           (pitivi show Encoders by description, they had the same one)
27722
27723 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
27724
27725         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27726
27727         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
27728         (gst_play_bin_set_property), (gen_video_element),
27729         (gen_audio_element):
27730           Refcounting fixes for provided audio-/videosinks.
27731
27732 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27733
27734         * gst/playback/gstplaybin.c: (gen_video_element),
27735         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
27736           Don't reference all sinks, but only the video- and audiosinks.
27737           The vis. element should be disposed when we're done with it.
27738           We don't have any reason to keep it around. This fixes warnings
27739           when reusing playbin for playing multiple audio files with
27740           vis. enabled. Also release audio device on pause - idea stolen
27741           from Rhythmbox.
27742
27743 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27744
27745         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
27746         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
27747         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
27748         * ext/alsa/gstalsaplugin.c: (plugin_init):
27749         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
27750         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
27751         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
27752         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
27753         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
27754         (gst_faad_change_state), (plugin_init):
27755         * ext/faad/gstfaad.h:
27756         * ext/vorbis/vorbis.c: (plugin_init):
27757         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27758         * gst-libs/gst/audio/Makefile.am:
27759         * gst-libs/gst/audio/audio.c: (plugin_init):
27760         * gst-libs/gst/audio/multichannel.c:
27761         (gst_audio_check_channel_positions),
27762         (gst_audio_get_channel_positions),
27763         (gst_audio_set_channel_positions),
27764         (gst_audio_set_structure_channel_positions_list),
27765         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
27766         (gst_audio_fixate_channel_positions):
27767         * gst-libs/gst/audio/multichannel.h:
27768         * gst-libs/gst/audio/testchannels.c: (main):
27769         * gst/audioconvert/gstaudioconvert.c:
27770         (gst_audio_convert_class_init), (gst_audio_convert_init),
27771         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
27772         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
27773         (gst_audio_convert_fixate), (gst_audio_convert_channels):
27774         * gst/audioconvert/plugin.c: (plugin_init):
27775           Surround sound support.
27776
27777 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27778
27779         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
27780           Fix position for discont if we're close as well. Nitpicking, but
27781           saves a few milliseconds of extra waiting or skipping.
27782
27783 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27784
27785         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
27786           We sometimes need parsers for playback, so add those too.
27787
27788 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27789
27790         * configure.ac:
27791         * gst/apetag/Makefile.am:
27792         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
27793         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
27794         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
27795         (gst_ape_demux_get_src_query_types),
27796         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
27797         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
27798         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
27799         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
27800         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
27801         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
27802         (gst_ape_demux_change_state):
27803         * gst/apetag/apedemux.h:
27804         * gst/apetag/apetag.c: (plugin_init):
27805         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
27806         (plugin_init):
27807           APE v1/2 tag reader plus typefind function.
27808
27809 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27810
27811         * configure.ac:
27812         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
27813         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
27814           Remove hacks for older core. Require newer core version
27815           accordingly.
27816
27817 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27818
27819         * gst/cdxaparse/Makefile.am:
27820         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
27821         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
27822         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
27823         * gst/cdxaparse/gstcdxaparse.h:
27824         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
27825         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
27826         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
27827         (gst_cdxastrip_get_src_query_types),
27828         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
27829         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
27830         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
27831         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
27832         * gst/cdxaparse/gstcdxastrip.h:
27833           SVCD/VCD header stripping separated from CDXA image parsing.
27834         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
27835         (plugin_init):
27836           Add VCD/SVCD header typefinding for VCD/SVCD.
27837         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
27838         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
27839         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
27840         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
27841         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
27842         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
27843         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
27844         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
27845         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
27846         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
27847         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
27848         * sys/vcd/vcdsrc.h:
27849           Fix up, add seeking, querying, URI interface. Works in totem now.
27850
27851 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
27852
27853         * configure.ac:
27854           back to CVS
27855
27856 === release 0.8.6 ===
27857
27858 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
27859
27860         * NEWS:
27861         * RELEASE:
27862         * configure.ac:
27863         * po/af.po:
27864         * po/az.po:
27865         * po/cs.po:
27866         * po/en_GB.po:
27867         * po/hu.po:
27868         * po/it.po:
27869         * po/nb.po:
27870         * po/nl.po:
27871         * po/or.po:
27872         * po/sq.po:
27873         * po/sr.po:
27874         * po/sv.po:
27875         * po/uk.po:
27876           releasing 0.8.6, "IOU Love"
27877
27878 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27879
27880         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27881
27882         * gst/playback/gstplaybasebin.c:
27883           Fix unplayable files error handling.  Fixes #158365
27884
27885 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27886
27887         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27888
27889         * gst/typefind/gsttypefindfunctions.c:
27890           Fix broken mp3 typefinding.  Fixes #158375
27891
27892 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27893
27894         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27895
27896         * ext/ogg/gstoggdemux.c:
27897           Fix sync on broken files.  Fixes #158976
27898
27899 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27900
27901         patch by: Edward Hervey <bilboed@bilboed.com>
27902
27903         * ext/libpng/gstpngenc.c:
27904           Copy over buffer properties.  Fixes #158832
27905
27906 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27907
27908         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
27909
27910         * ext/dvdread/dvdreadsrc.c:
27911           Fixes invalid reads (#158462)
27912
27913 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27914
27915         * sys/v4l/gstv4lsrc.c:
27916         * sys/v4l/gstv4lsrc.h:
27917         * sys/v4l/v4lsrc_calls.c:
27918           Probe less and cache it.  Fixes #159187.
27919
27920 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27921
27922         * gst/videorate/gstvideorate.c:
27923           Handle all video formats. Fixes #159186.
27924
27925 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
27926         * gst/synaesthesia/gstsynaesthesia.c:
27927         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
27928         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
27929         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
27930         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
27931         (gst_synaesthesia_change_state), (plugin_init):
27932         Fix up synaesthesia to work under different samplerates/ buffer sizes.
27933         Force 320x200 output, as that's the only thing the underlying
27934         synaesthesia implementation supports. Still needs to be made
27935         re-entrant.
27936
27937 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27938
27939         * configure.ac:
27940           Fix mpeg2enc configure check (similar to mplex check below).
27941
27942 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
27943
27944         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27945
27946         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27947           Fix for gcc-2.95 (fixes #158221).
27948
27949 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27950
27951         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
27952           Re-add clock distribution hack (until new core is released).
27953           Fixes #158125.
27954
27955 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
27956         * configure.ac:
27957           fix mplex configure check segfaulting on some systems (bug #140994)
27958
27959 2004-11-13  Benjamin Otte  <otte@gnome.org>
27960
27961         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
27962           add debugging
27963         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27964           do a wait when we enter the loop func with no data available to
27965           write instead of getting into an 100% CPU loop by just returning and
27966           being called again by the scheduler
27967
27968 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
27969
27970         * configure.ac:
27971         * ext/libvisual/visual.c: (gst_visual_get_type),
27972         (libvisual_log_handler), (gst_visual_getcaps),
27973         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
27974         (plugin_init):
27975           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
27976         * ext/smoothwave/Makefile.am:
27977         * ext/smoothwave/demo-osssrc.c: (main):
27978         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
27979         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
27980         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
27981         (plugin_init):
27982         * ext/smoothwave/gstsmoothwave.h:
27983           Make gstsmoothwave a working element in the 20th century.
27984
27985         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
27986           Fix incorrect link function
27987
27988 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27989
27990         * gst/volume/gstvolume.c:
27991           Allow buffer-frames=0.
27992
27993 2004-11-12 Iain <iaingnome@gmail.com>
27994
27995         * configure.ac: Check for polypaudio
27996
27997         * ext/Makefile.am: Build the polyp dir
27998
27999         * ext/polyp: The polypsink sources.
28000
28001 2004-10-30 Iain <iaingnome@gmail.com>
28002
28003         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
28004         caps to reflect the new number of channels.
28005
28006 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28007
28008         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28009           Fix for negotiation order problem. This would show when the
28010           ALSA loopfuction was called before any other function. ALSA
28011           wouldn't do anything because we're not negotiated yet, leading
28012           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
28013
28014 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28015
28016         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28017
28018         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
28019           No warnings (#157986).
28020
28021 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28022
28023         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
28024           Prefer apev1/2 and id3v1 (at end of file) over musepack.
28025
28026 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28027
28028         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
28029           Signal no-more-pads (so it works in playbin).
28030
28031 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28032
28033         * ext/musepack/gstmusepackreader.cpp:
28034           Workaround for older core.
28035
28036 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28037
28038         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
28039           Actually test for odd width/height rather than testing whether
28040           a temporary variable that was 0 before we subtracted 1 is now
28041           not equal to zero (which it always is).
28042
28043 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28044
28045         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
28046         Fix compilation if HAVE_XVIDEO is not defined
28047
28048 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28049
28050         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
28051         Fix compilation if HAVE_XVIDEO is not defined
28052
28053 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
28054
28055         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
28056         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
28057         (gst_goom_change_state), (plugin_init):
28058         Use the bytestream adapter so goom doesn't depend on the input
28059         buffer size.
28060         Add a debug category
28061
28062 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28063
28064         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28065           Only set hardware parameters *after* negotiation. Before
28066           negotiation, it will set ANY and that seems to cause crashes
28067           (see e.g. #151288, #153227).
28068
28069 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28070
28071         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
28072           This seems to be antique leftover. It needs to pass error
28073           checking.
28074         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
28075         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
28076         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
28077         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
28078           Fix GstXOverlay implementation (#151059).
28079
28080 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28081
28082         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28083           Don't assert (#157853).
28084
28085 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28086
28087         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
28088           Fix bytes/samples confustion.
28089         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
28090           Fix for underrun (#144389).
28091
28092 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28093
28094         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28095           Disable halfway-seek for pending release (since it needs a new
28096           core release).
28097
28098 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28099
28100         * sys/v4l/gstv4lsrc.c:
28101         * sys/v4l/gstv4lsrc.h:
28102         * sys/v4l/v4lsrc_calls.c:
28103           add autoprobe-fps property so we can separate autoprobing parts
28104
28105 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28106
28107         * sys/v4l/gstv4lsrc.c:
28108         * sys/v4l/v4lsrc_calls.c:
28109         initialise fourcc to catch unset fourcc's, and debug
28110
28111 2004-11-09  Wim Taymans  <wim@fluendo.com>
28112
28113         * gst/playback/README:
28114         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
28115         * gst/playback/gstplaybin.c: (gst_play_bin_init),
28116         (gst_play_bin_dispose), (gst_play_bin_set_property),
28117         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
28118         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
28119         (gst_play_bin_get_formats), (gst_play_bin_convert),
28120         (gst_play_bin_get_query_types), (gst_play_bin_query):
28121         Cleanups and some more documentation.
28122
28123 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
28124
28125         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
28126         (gst_cacasink_init), (gst_cacasink_chain):
28127         * ext/libcaca/gstcacasink.h:
28128         Cacasink inherits from VideoSink, so let that store the clock.
28129
28130 2004-11-09  Wim Taymans  <wim@fluendo.com>
28131
28132         * gst/playback/README:
28133         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
28134         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
28135         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
28136         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
28137         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
28138         (setup_sinks):
28139         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
28140         (gst_stream_info_is_mute), (gst_stream_info_set_property):
28141         * gst/playback/gststreaminfo.h:
28142         Updated README.
28143         Only switch groups if all streams have muted (EOSed).
28144         Send Tags in sync with the stream playback instead of in
28145         the playback/preroll phase.
28146         Some cleanups, free the fakesrc elements.
28147
28148 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28149
28150         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
28151           buffer-frames property was missing
28152         * ext/arts/gst_arts.c:
28153           rate missing from sinkcaps
28154         * ext/audiofile/gstafparse.c:
28155         * ext/audiofile/gstafsink.c:
28156         * ext/audiofile/gstafsrc.c:
28157         * ext/swfdec/gstswfdec.c:
28158           int audio doesn't know buffer-frames
28159         * ext/cdparanoia/gstcdparanoia.c:
28160           int audio doesn't know chunksize either
28161         * ext/nas/nassink.c:
28162           it's endianness, not endianess
28163         * gst-libs/gst/audio/audio.h:
28164           make float standard pad template caps really describe float
28165         * gst/law/mulaw.c: (linear_factory):
28166           signed only, please
28167         * gst/mpegstream/gstdvddemux.c:
28168           widths of 20 are not valid
28169
28170 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28171
28172         Submitted by: Luca Ferretti <elle.uca@infinito.it>
28173
28174         * po/LINGUAS:
28175         * po/it.po:
28176           Add Italian
28177
28178 2004-11-08  Wim Taymans  <wim@fluendo.com>
28179
28180         * gst/playback/README:
28181         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
28182         * gst/playback/gstplaybasebin.c: (probe_triggered),
28183         (gst_play_base_bin_change_state):
28184         Updated README, added more comments for fixmes etc..
28185
28186 2004-11-08  Wim Taymans  <wim@fluendo.com>
28187
28188         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28189         We can remove this hack now.
28190
28191 2004-11-08  Wim Taymans  <wim@fluendo.com>
28192
28193         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
28194         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
28195         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
28196         Only mix AYUV for maximum quality.
28197
28198 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28199
28200         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
28201         (gst_ogg_demux_push), (gst_ogg_pad_push):
28202           Let's act as if we're synchronized now! :).
28203         * ext/theora/theoradec.c: (theora_dec_chain):
28204           Add some debug.
28205
28206 2004-11-08  Wim Taymans  <wim@fluendo.com>
28207
28208         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28209         (gst_alpha_set_property), (gst_alpha_sink_link),
28210         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
28211         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
28212         (gst_alpha_init_params), (gst_alpha_chain):
28213         Implement alpha functions for AYUV too, this increases
28214         accuracy quite a bit.
28215
28216 2004-11-08  Wim Taymans  <wim@fluendo.com>
28217
28218         * gst/ffmpegcolorspace/avcodec.h:
28219         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28220         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
28221         (gst_ffmpegcsp_avpicture_fill):
28222         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28223         (gst_ffmpegcsp_caps_remove_format_info):
28224         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28225         (shrink12), (img_get_alpha_info), (deinterlace_line),
28226         (deinterlace_line_inplace):
28227         * gst/ffmpegcolorspace/imgconvert_template.h:
28228         Added AYUV colorspace and handle RGBA a bit more respectful.
28229
28230 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28231
28232         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28233           Actually always send a discont (cornercase when resending the
28234           same serial-tagged chain twice).
28235
28236 2004-11-08  Julien MOUTTE  <julien@moutte.net>
28237
28238         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
28239         (gst_ximagesink_finalize):
28240         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
28241         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
28242
28243 2004-11-08  Wim Taymans  <wim@fluendo.com>
28244
28245         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
28246         Don't segfault on NULL data.
28247
28248 2004-11-08  Wim Taymans  <wim@fluendo.com>
28249
28250         * gst/playback/gstdecodebin.c: (unlinked):
28251         * gst/playback/gstplay-marshal.list:
28252         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28253         (gst_play_base_bin_init), (group_create), (get_active_group),
28254         (get_building_group), (group_destroy), (group_commit),
28255         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
28256         (add_element_stream), (no_more_pads), (probe_triggered),
28257         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
28258         (state_change), (setup_source), (gst_play_base_bin_get_property),
28259         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
28260         (gst_play_base_bin_link_stream),
28261         (gst_play_base_bin_get_streaminfo):
28262         * gst/playback/gstplaybasebin.h:
28263         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
28264         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
28265         Add support for chained ogg files. Prepare for playlist
28266         support. This patch introduces the concept of pad groups, which
28267         together compose one playable media file.
28268
28269 2004-11-07  David Schleef  <ds@schleef.org>
28270
28271         * testsuite/gst-lint: Check for pad templates that aren't statically
28272         scoped.
28273
28274 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28275
28276         * configure.ac:
28277         * ext/Makefile.am:
28278         * ext/musepack/Makefile.am:
28279         * ext/musepack/gstmusepackdec.cpp:
28280         * ext/musepack/gstmusepackdec.h:
28281         * ext/musepack/gstmusepackreader.cpp:
28282         * ext/musepack/gstmusepackreader.h:
28283           Add musepack decoder.
28284         * ext/faad/gstfaad.c: (gst_faad_base_init):
28285           Make pad templates static.
28286         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28287         (plugin_init):
28288           Add musepack typefinder, make mp3 typefinding work halfway stream,
28289           which doesn't actually work yet because id3demux doesn't implement
28290           _get_length().
28291
28292 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28293
28294         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
28295         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
28296           Fix interrupt event handling (#144436).
28297
28298 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28299
28300         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
28301           Hide unused glory.
28302
28303 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28304
28305         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28306
28307         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
28308           Fix weird caps (#157548).
28309
28310 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28311
28312         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28313
28314         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
28315           Add missing NULL terminator (#157543).
28316
28317 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28318
28319         * gst/tcp/gsttcp.h:
28320         * gst/tcp/gsttcpclientsink.c:
28321         * gst/tcp/gsttcpclientsrc.c:
28322         * gst/tcp/gsttcpserversink.c:
28323         * gst/tcp/gsttcpserversrc.c:
28324           ports can go up to 65535.  Move common defines to gsttcp.h
28325
28326 2004-11-05  Wim Taymans  <wim@fluendo.com>
28327
28328         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
28329         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
28330         Added two more colorspaces.
28331
28332 2004-11-05  Wim Taymans  <wim@fluendo.com>
28333
28334         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28335         (gst_ffmpegcsp_avpicture_fill):
28336         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28337         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
28338         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
28339         More stride fixes.
28340
28341 2004-11-05  Wim Taymans  <wim@fluendo.com>
28342
28343         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
28344         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
28345         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
28346         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
28347         (gst_videomixer_loop):
28348         More stride fixes.
28349
28350 2004-11-05  Benjamin Otte  <otte@gnome.org>
28351
28352         * ext/mad/gstmad.c: (gst_mad_chain):
28353           don't overflow data buffer. Flush not needed sync data when syncing
28354           failed.
28355
28356 2004-11-04  Wim Taymans  <wim@fluendo.com>
28357
28358         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28359         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
28360         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
28361         (gst_alpha_init_params), (gst_alpha_chain),
28362         (gst_alpha_change_state):
28363         Updated the chroma keying algorithm with something more
28364         sophisticated.
28365
28366 2004-11-03  Wim Taymans  <wim@fluendo.com>
28367
28368         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
28369         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
28370         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
28371         Fix stride issues. Does not completely work for odd
28372         heights.
28373
28374 2004-11-03  Wim Taymans  <wim@fluendo.com>
28375
28376         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28377         (gst_alpha_chroma_key), (gst_alpha_chain):
28378         Fix stride issues. Does not completely work for odd
28379         heights.
28380
28381 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
28382
28383         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28384         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
28385         leak fixes
28386
28387 2004-11-03  Wim Taymans  <wim@fluendo.com>
28388
28389         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28390         (gst_ffmpegcsp_avpicture_fill):
28391         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28392         (avpicture_alloc):
28393         * gst/ffmpegcolorspace/imgconvert_template.h:
28394         Use correct _fill function to get correct strides.
28395
28396 2004-11-02  David Schleef  <ds@schleef.org>
28397
28398         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
28399         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
28400         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
28401         Change all g_print()s to debugging.  Add a bunch of consistency
28402         checks.
28403
28404 2004-11-02  Wim Taymans  <wim@fluendo.com>
28405
28406         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
28407         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
28408         (unlinked), (no_more_pads), (close_link):
28409         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
28410         (unknown_type), (add_element_stream), (new_decoded_pad),
28411         (removed_decoded_pad), (setup_source):
28412         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
28413         (gst_stream_info_class_init), (gst_stream_info_init),
28414         (gst_stream_info_new), (gst_stream_info_dispose),
28415         (stream_info_mute_pad), (gst_stream_info_set_property),
28416         (gst_stream_info_get_property):
28417         * gst/playback/gststreaminfo.h:
28418         Fix playback of multiple files.
28419         a slightly different approach to handling dynamic pad removals.
28420         This one only looks at pads that we have linked.
28421
28422 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
28423
28424         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
28425         free" warning from libc.
28426
28427 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28428
28429         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
28430         (get_unconnected_element), (remove_starting_from), (pad_removed),
28431         (close_link):
28432           Implement support for dynamic pad changing. We listen to "live"
28433           pad removals (i.e. while playing) and re-setup autoplugging
28434           after that. Playbasebin/playbin need some more work for this
28435           to finally work, but decodebin supports (and replugs) chained
28436           ogg now.
28437
28438 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
28439
28440         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
28441         (gst_alsa_finalize):
28442         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
28443         (gst_cdaudio_finalize):
28444         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
28445         (cdparanoia_finalize):
28446         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
28447         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
28448         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
28449         (dvdreadsrc_finalize):
28450         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
28451         (gst_flacdec_finalize):
28452         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
28453         (gst_flacenc_finalize):
28454         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
28455         (gst_gnomevfssink_finalize):
28456         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
28457         (gst_gnomevfssrc_finalize):
28458         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
28459         (gst_fameenc_finalize):
28460         * ext/nas/nassink.c: (gst_nassink_class_init),
28461         (gst_nassink_finalize):
28462         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
28463         (gst_sdlvideosink_class_init):
28464         * ext/sndfile/gstsf.c: (gst_sf_dispose):
28465         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
28466         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
28467         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
28468         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
28469         (gst_x_window_listener_dispose):
28470         * gst/audioscale/gstaudioscale.c:
28471         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
28472         (play_on_demand_finalize):
28473         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
28474         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
28475         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
28476         (cdplayer_finalize):
28477         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
28478         (gst_glimagesink_class_init):
28479         * sys/oss/gstosselement.c: (gst_osselement_class_init),
28480         (gst_osselement_finalize):
28481         * sys/oss/gstosssink.c: (gst_osssink_dispose):
28482         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
28483         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
28484           Fixes a bunch of problems with finalize and dispose functions,
28485           either assumptions that dispose is only called once, or not calling
28486           the parent class dispose/finalize function
28487
28488 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
28489
28490         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
28491           added two api precondition guards
28492           use g_strdup with getenv to fix crash when using ENVVAR
28493
28494 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
28495         * ext/esd/esdsink.c: (gst_esdsink_class_init),
28496         (gst_esdsink_finalize):
28497         Use a finalize function, not dispose, and more importantly,
28498         call the parent class finalize function too
28499
28500 2004-11-01  Johan Dahlin  <johan@gnome.org>
28501
28502         * ext/ogg/gstoggdemux.c:
28503         * gst/tags/gstvorbistag.c:
28504         Plug leaks.
28505
28506 2004-10-31  Benjamin Otte  <otte@gnome.org>
28507
28508         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
28509           lotsa memleaks today. But they're all small...
28510
28511 2004-10-31  Benjamin Otte  <otte@gnome.org>
28512
28513         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28514           another memleak crushed
28515
28516 2004-10-31  Benjamin Otte  <otte@gnome.org>
28517
28518         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
28519           fix memleak
28520
28521 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28522
28523         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28524           Hack to prevent crash when going to READY inside signal handler
28525           while this function is active.
28526
28527 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28528
28529         * gst/ffmpegcolorspace/Makefile.am:
28530         * gst/ffmpegcolorspace/avcodec.h:
28531         * gst/ffmpegcolorspace/common.h:
28532         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
28533         * gst/ffmpegcolorspace/dsputil.h:
28534         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
28535         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28536         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
28537         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
28538         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
28539         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
28540         (gst_ffmpegcsp_avpicture_fill):
28541         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
28542         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28543         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
28544         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
28545         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
28546         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
28547         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
28548         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
28549         * gst/ffmpegcolorspace/imgconvert.c:
28550         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
28551         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
28552         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
28553         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
28554         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
28555         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
28556         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
28557         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
28558         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
28559         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
28560         (grow21), (grow22), (grow41), (grow44), (conv411),
28561         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
28562         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
28563         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
28564         (avpicture_free), (is_yuv_planar), (img_convert),
28565         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
28566         (deinterlace_line_inplace), (deinterlace_bottom_field),
28567         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
28568         * gst/ffmpegcolorspace/imgconvert_template.h:
28569         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
28570         * gst/ffmpegcolorspace/mmx.h:
28571         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
28572         (av_fast_realloc), (av_mallocz_static), (av_free_static),
28573         (av_freep), (avcodec_get_context_defaults),
28574         (avcodec_alloc_context), (avcodec_init):
28575           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
28576           handling plus update from ffmpeg CVS. Large clean-up.
28577
28578 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28579
28580         * gst/playback/Makefile.am:
28581           We need the marshallers for decodebin, too.
28582
28583 2004-10-30  David Schleef  <ds@schleef.org>
28584
28585         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
28586           quicktime typefinding work with 64-bit offsets.
28587
28588 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
28589
28590         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
28591           Set EOS on the element when processing an EOS event.
28592         * ext/speex/gstspeexdec.h:
28593         * ext/speex/gstspeexenc.h:
28594           Only keep a const ptr to the mode
28595         * gst-libs/gst/riff/riff-media.c:
28596         (gst_riff_create_audio_caps_with_data),
28597         (gst_riff_create_audio_template_caps):
28598           Allow WMAV3, with up to 6 channels.
28599         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
28600           Don't call gst_pad_set_event_function on a sink pad.
28601         * gst/mpegstream/gstdvddemux.c:
28602         (gst_dvd_demux_get_subpicture_stream),
28603         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
28604           Copy the explicit caps that were set across to the cur_* pads,
28605           instead of trying to use a possibly non-existent negotiated caps.
28606           Reset the type of subpicture pads to UNKNOWN after calling
28607           init_stream, so that the caps get set.
28608
28609 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
28610
28611         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28612
28613         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28614           Don't touch buffer if it is of size 0 (fixes #151064).
28615
28616 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28617
28618         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
28619           Synchronized discont handling.
28620
28621 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28622
28623         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28624         (gst_ogg_demux_push):
28625           Make seeking sort-of exact again (fixes #156387).
28626
28627 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28628
28629         * gst/playback/gstplaybasebin.c: (unknown_type),
28630         (add_element_stream), (new_decoded_pad),
28631         (gst_play_base_bin_change_state):
28632         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
28633         (gst_stream_info_init), (gst_stream_info_new),
28634         (gst_stream_info_dispose), (gst_stream_info_get_property):
28635         * gst/playback/gststreaminfo.h:
28636           Make caps explicitely available. Makes testing for unsupported
28637           types possible. Improves error reporting.
28638
28639 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28640
28641         * gst/audioconvert/gstaudioconvert.c:
28642         (gst_audio_convert_buffer_to_default_format):
28643           Really don't touch read-only buffers (#156563).
28644
28645 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
28646
28647         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28648
28649         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
28650           Fix memleak (#155223).
28651
28652 2004-10-29  Wim Taymans  <wim@fluendo.com>
28653
28654         * gst/tcp/.cvsignore:
28655         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
28656         (gst_multifdsink_class_init), (gst_multifdsink_init),
28657         (gst_multifdsink_add), (gst_multifdsink_remove),
28658         (gst_multifdsink_remove_client_link), (is_sync_frame),
28659         (gst_multifdsink_new_client),
28660         (gst_multifdsink_handle_client_write),
28661         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
28662         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
28663         (gst_multifdsink_get_property):
28664         * gst/tcp/gstmultifdsink.h:
28665         Added burst on connect sync_method, deprecated sync_clients,
28666         streamlined the sync code some more.
28667
28668 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28669
28670         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
28671         (gst_play_base_bin_change_state):
28672           Improve error reporting.
28673
28674 2004-10-28  Wim Taymans  <wim@fluendo.com>
28675
28676         * gst/tcp/Makefile.am:
28677         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
28678         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
28679         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
28680         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
28681         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
28682         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
28683         (gst_fdset_wait):
28684         Added more locks around fdset structures. Fixed/reworked
28685         the poll array resizing code.
28686         Added stress test for fdset.
28687
28688 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28689
28690         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
28691         fix build
28692
28693 2004-10-28  Benjamin Otte  <otte@gnome.org>
28694
28695         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
28696           fix link function to always query channels and query width for
28697           floats
28698         * configure.ac:
28699           add equalizer dir
28700         * gst/equalizer/Makefile.am:
28701         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
28702         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
28703         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
28704         (arg_to_scale), (setup_filter),
28705         (gst_iir_equalizer_compute_frequencies),
28706         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
28707         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
28708         (plugin_init):
28709           add an equalizer
28710
28711 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28712
28713         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
28714
28715         * po/LINGUAS:
28716         * po/nb.po:
28717           Added Norwegian Bokmaal translation
28718
28719 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28720
28721         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
28722           Don't break on options (fixes #156488).
28723
28724 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28725
28726         * configure.ac:
28727         * ext/cdaudio/Makefile.am:
28728         * sys/Makefile.am:
28729           fix build on older automake
28730
28731 2004-10-26  Wim Taymans  <wim@fluendo.com>
28732
28733         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
28734         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
28735         Allow a little margin when negotiating the framerate.
28736
28737 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
28738
28739         * gst/level/gstlevel.c:
28740           synchonised naming of pads and pad-templates
28741
28742 2004-10-26  Wim Taymans  <wim@fluendo.com>
28743
28744         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
28745         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
28746         (_find_streams_check), (gst_ogg_demux_push):
28747         Fix EOS again. Needs to be done in a better way. We should not
28748         remove the pad if there is no new chained stream.
28749
28750 2004-10-26 Iain <iaingnome@gmail.com>
28751
28752         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
28753         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
28754         of the caps.
28755         * gst/interleave/interleave.c (interleave_class_init): Hook up release
28756         pad.
28757         (interleave_release_pad): Remove the pad.
28758         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
28759         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
28760         the set device.
28761         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
28762         attrs
28763         (gst_xvimagesink_xcontext_clear): Free the xcontext.
28764         (gst_xvimagesink_finalize): Free the par.
28765
28766 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28767
28768         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
28769         (gst_avimux_stop_file):
28770           First calculate the rate, and only then use it. Hdr.rate is a
28771           multiple and not a derivative of hdr.scale. Scale is not the
28772           same as blockalign but is solely related to rate.
28773
28774 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28775
28776         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
28777         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
28778           Implement seeking.
28779
28780 2004-10-25  James Henstridge  <james@jamesh.id.au>
28781
28782         Reviewed by:  David Schleef  <ds@schleef.org>
28783
28784         * examples/gstplay/player.c: (got_stream_length), (main):
28785         * examples/seeking/cdplayer.c: (update_scale):
28786         * examples/seeking/seek.c: (format_value), (update_scale):
28787         * examples/seeking/spider_seek.c: (format_value), (update_scale),
28788         (stop_seek):
28789         Build fixes on AMD64.
28790
28791 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28792
28793         reviewed by: Ronald Bultje <rbultje at gnome dot org>
28794
28795         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
28796         Fix for some v4l cards which hang in v4lsrc
28797
28798 2004-10-25  Wim Taymans  <wim@fluendo.com>
28799
28800         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
28801         (gst_ogg_demux_push), (gst_ogg_chains_clear):
28802         Make sure to remove the pad when a new chain is
28803         encountered. Set some vars to NULL so we don't try
28804         to reference freed memory.
28805
28806 2004-10-25  Wim Taymans  <wim@fluendo.com>
28807
28808         * examples/seeking/Makefile.am:
28809         * examples/seeking/cdplayer.c: (update_scale):
28810         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
28811         * examples/seeking/playbin.c: (make_playerbin_pipeline),
28812         (format_value), (update_scale), (iterate), (start_seek),
28813         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
28814         (print_usage), (main):
28815         Added some more examples, update others.
28816
28817 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28818
28819         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
28820         * ext/speex/gstspeexdec.c: (speex_dec_chain):
28821         * ext/theora/theoradec.c: (theora_dec_chain):
28822         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28823           Add codec-name metadata.
28824
28825 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
28826
28827         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28828
28829         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
28830         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
28831         * ext/alsa/gstalsamixertrack.h:
28832         * po/POTFILES.in:
28833           ALSA mixer track label internationalization (#154054).
28834
28835 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28836
28837         * ext/theora/theoradec.c: (theora_dec_chain):
28838           Export bitrate as metadata.
28839
28840 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28841
28842         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
28843         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
28844         * ext/alsa/gstalsamixertrack.h:
28845           Fix names, fix loop.
28846
28847 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28848
28849         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
28850         (speex_dec_convert):
28851           sinkconvert function so oggdemux can get the file length (totem).
28852
28853 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
28854
28855         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28856
28857         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28858           Don't push incomplete packets.
28859         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
28860           Fix MPEG-4 audio typefinding.
28861
28862 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28863
28864         * sys/v4l/Makefile.am:
28865         * sys/v4l/gstv4l.c: (plugin_init):
28866         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
28867         (gst_v4lelement_init), (gst_v4lelement_dispose),
28868         (gst_v4lelement_change_state):
28869         * sys/v4l/gstv4lelement.h:
28870         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
28871         (gst_v4l_xoverlay_close), (idle_refresh),
28872         (gst_v4l_xoverlay_set_xwindow_id):
28873         * sys/v4l/gstv4lxoverlay.h:
28874         * sys/v4l/v4l-overlay_calls.c:
28875         * sys/v4l/v4l_calls.h:
28876         * sys/v4l2/Makefile.am:
28877         * sys/v4l2/gstv4l2.c: (plugin_init):
28878         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
28879         (gst_v4l2element_init), (gst_v4l2element_dispose),
28880         (gst_v4l2element_change_state):
28881         * sys/v4l2/gstv4l2element.h:
28882         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
28883         (gst_v4l2_xoverlay_close), (idle_refresh),
28884         (gst_v4l2_xoverlay_set_xwindow_id):
28885         * sys/v4l2/gstv4l2xoverlay.h:
28886         * sys/v4l2/v4l2-overlay_calls.c:
28887         * sys/v4l2/v4l2_calls.h:
28888           Remove client-side overlay handling, use the X-server v4l plugin
28889           for that. Nicer overlay, less code. Also make the plugin
28890           compileable without X (but then without overlay, obviously).
28891           Makes xwindowlistener obsolete, should we remove that?
28892
28893 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28894
28895         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
28896         (gst_osssrc_src_query):
28897         * sys/oss/gstosssrc.h:
28898           OK, so people want offset in DEFAULT. This time, actually fix all
28899           cases.
28900         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
28901           Add FPS properly.
28902
28903 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28904
28905         * gst/asfdemux/gstasfmux.c:
28906         * gst/avi/gstavimux.c:
28907           Framerate.
28908
28909 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28910
28911         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
28912           Fix properties (channel, norm, frequency).
28913
28914 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28915
28916         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
28917           Flag typo.
28918         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
28919           No warnings.
28920
28921 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28922
28923         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
28924           Fix hang.
28925
28926 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28927
28928         * sys/v4l2/gstv4l2element.h:
28929           Yet Another Hack (tm) for kernel header borkedness.
28930         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
28931         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
28932         (gst_v4l2src_link), (gst_v4l2src_getcaps),
28933         (gst_v4l2src_change_state):
28934         * sys/v4l2/gstv4l2src.h:
28935         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
28936         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
28937           Fix caps, keep track of state, work.
28938
28939 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28940
28941         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
28942           Quiet.
28943
28944 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28945
28946         * sys/oss/gstosssrc.c: (gst_osssrc_get):
28947           Don't mix bytes and samples.
28948
28949 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28950
28951         * ext/ogg/gstoggmux.c:
28952           Basic pad template which accepts OGM tracks, speex, flac, vorbis
28953           and theora. Any is incorrect.
28954         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
28955           Fix caps.
28956         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
28957         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
28958         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
28959         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
28960         * sys/v4l/gstv4lmjpegsrc.h:
28961         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
28962         (gst_v4lsrc_change_state):
28963         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
28964         (gst_v4lmjpegsrc_capture_stop):
28965           Fix caps. Keep track of internal state. Work.
28966
28967 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28968
28969         * ext/Makefile.am:
28970           Fix the build fixes.
28971
28972 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28973
28974         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
28975         (gst_ogg_demux_src_event), (_find_chain_seek),
28976         (gst_ogg_pad_push):
28977           Check for pad availability before using it.
28978         * ext/ogg/gstoggdemux.c: (_find_chain_process):
28979           Fix parsing of chained ogg. Needs more work on the decoder side.
28980
28981 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28982
28983         * gst/spectrum/Makefile.am:
28984         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
28985         (idle_func):
28986           Fix demo and reenable it. Yes, I'm currently playing with audio
28987           analysis tools
28988
28989 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28990
28991         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28992           We love it if files that start at zero work too...
28993
28994 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28995
28996         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
28997           Handle files with missing EOS headers.
28998
28999 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29000
29001         * gst/tcp/gsttcpserversink.c:
29002         (gst_tcpserversink_handle_server_read),
29003         (gst_tcpserversink_init_send):
29004         Zero some variables first (need for accept not to return EINVAL)
29005
29006 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29007
29008         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29009         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29010         * ext/theora/theoradec.c: (theora_dec_sink_convert),
29011         (theora_dec_chain):
29012         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
29013         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
29014           Seeking and querying finetune.
29015
29016 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29017
29018         * configure.ac:
29019         * ext/Makefile.am:
29020         * ext/raw1394/Makefile.am:
29021           fix the build
29022
29023 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29024
29025         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29026           Wrong return.
29027         * gst/playback/Makefile.am:
29028         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
29029         * gst/playback/gstplay-marshal.list:
29030         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
29031           Fix marshallers.
29032
29033 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29034
29035         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
29036           Silence.
29037
29038 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29039
29040         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29041         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29042         (gst_ogg_pad_push):
29043           Yay for non-lineair granulepos in theora.
29044
29045 2004-10-18  Wim Taymans  <wim@fluendo.com>
29046
29047         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
29048         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29049         * ext/dv/gstdvdec.h:
29050         Make sure we renegotiate aspect ratio when the camera switches.
29051
29052 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29053
29054         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29055         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29056           Start at zero.
29057         * ext/theora/theoradec.c: (theora_dec_chain):
29058           Skip headers. Bad idea for chained ogg, but fixes seeking.
29059
29060 2004-10-18  Wim Taymans  <wim@fluendo.com>
29061
29062         * configure.ac:
29063         I swear, this is the last time I touch this.
29064
29065 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29066
29067         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29068         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29069         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
29070           Faster seeking.
29071         * ext/theora/theoradec.c: (theora_dec_sink_convert):
29072           Time-to-default conversion.
29073         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29074           Don't error on unknown packets, just skip. We should probably
29075           read them if we want to support chained ogg.
29076
29077 2004-10-18  Wim Taymans  <wim@fluendo.com>
29078
29079         * configure.ac:
29080         Added cdaudio to wrong list.
29081
29082 2004-10-18  Wim Taymans  <wim@fluendo.com>
29083
29084         * configure.ac:
29085         Revive cdaudio.
29086
29087 2004-10-18  Wim Taymans  <wim@fluendo.com>
29088
29089         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29090         (gst_dvdec_video_link), (gst_dvdec_push):
29091         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
29092         (gst_smokeenc_resync), (gst_smokeenc_chain):
29093         Fix mimetype on smoke encoder.
29094         Add aspect ratio to dvdec. Not sure if these
29095         values are correct though....
29096
29097 2004-10-18  Wim Taymans  <wim@fluendo.com>
29098
29099         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
29100         Fix vorbis property descriptions and ranges.
29101
29102 2004-10-18  Wim Taymans  <wim@fluendo.com>
29103
29104         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29105         Really do nothing when no data is available.
29106         Go to the playing state when the stream is not seekable
29107         instead of failing.
29108
29109 2004-10-18  Wim Taymans  <wim@fluendo.com>
29110
29111         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
29112         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
29113         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
29114         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
29115         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
29116         Added uri handler for cd://
29117         Port to new API.
29118
29119 2004-10-18  Wim Taymans  <wim@fluendo.com>
29120
29121         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29122         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29123         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29124         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
29125         (remove_prerolls), (unknown_type), (add_element_stream),
29126         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
29127         (gst_play_base_bin_remove_element),
29128         (gst_play_base_bin_link_stream):
29129         * gst/playback/gstplaybin.c: (gen_video_element),
29130         (gen_vis_element), (remove_sinks), (setup_sinks):
29131         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
29132         (gst_stream_info_get_type), (gst_stream_info_class_init),
29133         (gst_stream_info_init), (gst_stream_info_new),
29134         (gst_stream_info_dispose), (stream_info_mute_pad),
29135         (gst_stream_info_set_property), (gst_stream_info_get_property):
29136         * gst/playback/gststreaminfo.h:
29137         Add sink padtemplate to decodebin.
29138         Added some more comments.
29139         Make queue size configurable in playbasebin.
29140         Added possibility to use elements as sinks (ex cdaudio).
29141
29142 2004-10-15  Wim Taymans  <wim@fluendo.com>
29143
29144         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
29145         (gst_speexenc_chain):
29146         Fix speex timestamps so that it gets muxed properly.
29147
29148 2004-10-15  Wim Taymans  <wim@fluendo.com>
29149
29150         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
29151         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
29152         (gst_dv1394src_init), (gst_dv1394src_dispose),
29153         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
29154         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
29155         (gst_dv1394src_event), (gst_dv1394src_get_formats),
29156         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
29157         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
29158         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
29159         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
29160         * ext/raw1394/gstdv1394src.h:
29161         Added conversion/query functions.
29162         Update buffer timestamps,
29163         Added signals.
29164         Added uri dv:// so it might play from the firewire in playbin.
29165         Fix a possible leak.
29166         Added debugging.
29167
29168 2004-10-15  Wim Taymans  <wim@fluendo.com>
29169
29170         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
29171         (gst_dv1394src_init), (gst_dv1394src_set_property),
29172         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
29173         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
29174         * ext/raw1394/gstdv1394src.h:
29175         Added AV/C VTR control support needed for some cameras.
29176         Added automatic port detection.
29177         Added properties for selecting the channel.
29178         The configure.ac script is not yet updated to reflect the
29179         new libavc1394 and librom1394 dependencies.
29180
29181 2004-10-15  Wim Taymans  <wim@fluendo.com>
29182
29183         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
29184         (qtdemux_parse), (gst_qtdemux_handle_esds):
29185         An esds box is not a container.
29186         Fix parsing of mp4v boxes.
29187         Do not try to renegotiate fps for each frame. Need to
29188         find a better method. This should fix mp4 playback.
29189
29190 2004-10-14  David Schleef  <ds@schleef.org>
29191
29192         * configure.ac: update for swfdec-0.3 and liboil-0.2
29193         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
29194         * ext/swfdec/gstswfdec.h: same
29195         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
29196         * gst/videotestsrc/videotestsrc.c: same
29197
29198 2004-10-14  Wim Taymans  <wim@fluendo.com>
29199
29200         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
29201         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
29202         (is_sync_frame), (gst_multifdsink_new_client),
29203         (gst_multifdsink_handle_client_write),
29204         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29205         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
29206         Turn warnings into info.
29207         Don't allow a state change in the streaming thread.
29208
29209 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
29210
29211         * ext/vorbis/oggvorbisenc.c:
29212         * ext/vorbis/vorbisdec.c:
29213           fix template sample rate
29214
29215 2004-10-13  Wim Taymans  <wim@fluendo.com>
29216
29217         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
29218         Decoding the header first fixes some problems in resyncing
29219         in more mp3s.
29220
29221 2004-10-12  Wim Taymans  <wim@fluendo.com>
29222
29223         * gst/playback/gstplaybin.c: (gen_video_element),
29224         (gen_vis_element), (remove_sinks), (setup_sinks):
29225         Added vis plugin support, need to configure the vis
29226         element to activate it.
29227
29228 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29229
29230         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
29231         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
29232           Some debug.
29233         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
29234         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
29235         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
29236         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
29237         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
29238         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
29239         * gst/avi/gstavidemux.h:
29240           Support for openDML-2.0 indx/ix## chunks. Support for broken index
29241           recovery (where, if part of the index is broken, we will still read
29242           the rest of the index and recover the broken part by stream
29243           scanning). More broken media support. EOS workarounds. General AVI
29244           braindamage headache recovery. Aspirin included.
29245
29246 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29247
29248         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
29249         (cdparanoia_event), (cdparanoia_query):
29250           Get rid of hideous lead-in.
29251
29252 2004-10-11  Wim Taymans  <wim@fluendo.com>
29253
29254         * gst/playback/gstplaybasebin.c: (setup_source):
29255         Wrong var used to get g_list_next.
29256
29257 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29258
29259         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
29260         (cdparanoia_get), (cdparanoia_open):
29261           Report discid as metadata, add duration.
29262
29263 2004-10-11  Wim Taymans  <wim@fluendo.com>
29264
29265         * gst/playback/gstplaybasebin.c: (setup_source):
29266         Cleanup the previous pipeline a little earlier for the
29267         case that a source element provides raw data.
29268
29269 2004-10-11  Benjamin Otte  <otte@gnome.org>
29270
29271         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
29272           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
29273           consuming the last 128 bytes, even though it was valid mp3 data.
29274
29275 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29276
29277         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
29278         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
29279         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29280         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
29281
29282 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29283
29284         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
29285         Fix for webcams that support only specific width or height
29286
29287 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29288
29289         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29290
29291         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
29292           Fix wrong discont event setup (fixes #154967).
29293
29294 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
29295
29296         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29297
29298         * gst/auparse/gstauparse.c: (gst_auparse_chain):
29299           Error out on invalid data (fixes #154807).
29300
29301 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29302
29303         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29304
29305         * ext/dvdread/dvdreadsrc.c: (_read):
29306           Make titles > 0 work again (fixes #154834).
29307
29308 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29309
29310         * gst-libs/gst/riff/riff-media.c:
29311         (gst_riff_create_video_template_caps):
29312           WMV3 missing in template caps.
29313
29314 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29315
29316         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29317           OK, so the original code was too strict. It makes random AVI files
29318           hang for seconds upon opening, which is unacceptable and is far
29319           beyond the original goal of getting multiple chunks for one-chunk
29320           sounc stream files. So now do just that.
29321
29322 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29323
29324         * gst/playback/gstplaybasebin.c: (setup_source),
29325         (gst_play_base_bin_change_state):
29326           Actually clean up streaminfo if output fails. This would trigger
29327           if, for example, there was no CD in the drive. No preroll, so
29328           a streaminfo structure is created, but the subsequent state change
29329           of the thread fails.
29330         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
29331           Don't change state if parent failed.
29332
29333 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29334
29335         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
29336         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
29337         (gen_video_element), (remove_sinks):
29338           Add small bits of code for screenshot handling.
29339
29340 2004-10-08  Wim Taymans  <wim@fluendo.com>
29341
29342         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
29343         (gen_video_element), (gen_audio_element), (setup_sinks):
29344         Don't assume the user provided sinks are named "sink"...
29345
29346 2004-10-08  Wim Taymans  <wim@fluendo.com>
29347
29348         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
29349         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
29350         (gst_play_base_bin_link_stream):
29351         Do not try to autoplug sources that generate raw streams like
29352         cdparanoia.
29353         disconnect the preroll overrun signal when we don't need it anymore.
29354
29355 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
29356
29357         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
29358         Added reworked patch from #154903 from milosz derezynski (deadchip).
29359
29360 2004-10-08  Wim Taymans  <wim@fluendo.com>
29361
29362         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
29363         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
29364         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
29365         (cdparanoia_convert), (cdparanoia_uri_get_type),
29366         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
29367         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
29368         * ext/cdparanoia/gstcdparanoia.h:
29369         This adds the cdda://<tracknum> uri.
29370
29371 2004-10-08  Wim Taymans  <wim@fluendo.com>
29372
29373         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29374         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29375         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29376         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
29377         (unknown_type), (gst_play_base_bin_remove_element),
29378         (gst_play_base_bin_link_stream):
29379         * gst/playback/gstplaybasebin.h:
29380         * gst/playback/gstplaybin.c: (gst_play_bin_init),
29381         (gst_play_bin_set_property), (gen_video_element),
29382         (gen_audio_element), (setup_sinks):
29383         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
29384         (gst_stream_info_get_type), (gst_stream_info_class_init),
29385         (gst_stream_info_init), (gst_stream_info_new),
29386         (gst_stream_info_dispose), (stream_info_mute_pad),
29387         (gst_stream_info_set_property), (gst_stream_info_get_property):
29388         * gst/playback/gststreaminfo.h:
29389         Reuse the audio and video bins.
29390         Some internal cleanups in the stream selection code.
29391
29392 2004-10-08  Julien MOUTTE  <julien@moutte.net>
29393
29394         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29395         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
29396         * sys/ximage/ximagesink.h:
29397         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29398         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
29399         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
29400         not coming from those elements. Moreover these elements should not keep
29401         the xid they have been given when in NULL state.
29402
29403 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29404
29405         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29406         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
29407         * sys/ximage/ximagesink.h:
29408         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29409         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
29410         * sys/xvimage/xvimagesink.h:
29411           Actually only create a new toplevel window if we're not gonna
29412           embed it right after.
29413
29414 2004-10-07  Wim Taymans  <wim@fluendo.com>
29415
29416         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
29417         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
29418         * gst/playback/gstplaybin.c: (setup_sinks):
29419         Implement muting/unmuting of streams, mute streams that are not
29420         used.
29421
29422 2004-10-07  Wim Taymans  <wim@fluendo.com>
29423
29424         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
29425         (plugin_init):
29426         Added lame audio/x-ac3 typefind function.
29427
29428 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29429
29430         * configure.ac:
29431           bump nano to cvs
29432
29433 === release 0.8.5 ===
29434
29435 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29436
29437         * NEWS:
29438         * RELEASE:
29439         * configure.ac:
29440           releasing 0.8.5, "Take You On"
29441
29442 2004-10-06  Wim Taymans  <wim@fluendo.com>
29443
29444         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
29445         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
29446         (no_more_pads), (close_link), (type_found):
29447         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
29448         * gst/playback/gstplaybin.c: (gen_video_element):
29449         Do not signal the no_more_pads after the first pad when
29450         we are plugging a non dynamic element with multiple
29451         output pads (like swfdec, dvdec, ...).
29452
29453 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
29454
29455         * configure.ac:
29456           bump for prerelease
29457
29458 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29459
29460         * gst/wavparse/gstwavparse.c:
29461           add ATRAC3 to STATIC CAPS to fix a warning
29462
29463         * gst/matroska/ebml-read.c:
29464         * gst-libs/gst/riff/riff-read.c:
29465           fix typos
29466
29467 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29468
29469         * gst-libs/gst/riff/riff-media.c:
29470           generate caps for ATRAC3 audio streams
29471
29472         * gst/realmedia/rmdemux.c:
29473           generate caps for ATRAC3 audio streams
29474
29475 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29476
29477         * gst/wavparse/Makefile.am
29478         * gst/wavparse/riff.h
29479         * gst/wavparse/wavparse.vcproj
29480           riff.h removal (unused and duplication with riff-ids.h)
29481
29482 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29483
29484         * gst/wavparse/gstwavparse.h
29485           remove duplicated defines for audio codec codes
29486
29487         * gst-libs/gst/riff/riff-ids.h
29488         * gst/wavenc/riff.h:
29489           add "4CC" code for ATRAC3 audio streams
29490           add "4CC" code for ITU_G721_ADPCM (unused for now)
29491
29492 2004-10-06  Wim Taymans  <wim@fluendo.com>
29493
29494         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
29495         Actually _do_ negotiation. Pass gdouble as arg instead
29496         of guint64 for the framerate.
29497
29498 2004-10-06  Wim Taymans  <wim@fluendo.com>
29499
29500         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
29501         (find_compatibles), (close_pad_link), (try_to_link_1),
29502         (no_more_pads), (close_link), (type_found):
29503         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
29504         * gst/playback/gstplaybin.c: (gen_video_element),
29505         (gen_audio_element):
29506         Set state on newly added element to READY so that negotiation
29507         can happen ASAP.
29508         Addes some more debug info.
29509         Do not try to plug pads with multiple caps structures or ANY
29510         because it is too dangerous since we do not do dynamic
29511         replugging.
29512
29513 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
29514
29515         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
29516
29517         * po/LINGUAS:
29518         * po/or.po:
29519           add Oriya translation
29520
29521 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29522
29523         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29524           Prevent overwrite of size member. Makes audio sound crappy.
29525
29526 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29527
29528         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
29529         Add rmvb to the list of known RealMedia extensions
29530
29531 2004-10-05  Wim Taymans  <wim@fluendo.com>
29532
29533         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
29534         (mngdec_openstream), (mngdec_closestream),
29535         (mngdec_handle_sink_event), (mngdec_readdata),
29536         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
29537         (mngdec_getcanvasline), (mngdec_refresh),
29538         (gst_mngdec_change_state):
29539         Set the framerate correctly.
29540
29541 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29542
29543         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29544           There was something wrong with the index massaging.
29545
29546 2004-10-04  Wim Taymans  <wim@fluendo.com>
29547
29548         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
29549         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
29550         (gst_smokedec_chain):
29551         * ext/jpeg/gstsmokedec.h:
29552         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
29553         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
29554         * ext/jpeg/gstsmokeenc.h:
29555         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
29556         (smokecodec_decode_new), (smokecodec_info_free),
29557         (smokecodec_set_quality), (smokecodec_get_quality),
29558         (smokecodec_set_threshold), (smokecodec_get_threshold),
29559         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
29560         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
29561         (smokecodec_encode), (smokecodec_parse_id),
29562         (smokecodec_parse_header), (smokecodec_decode):
29563         * ext/jpeg/smokecodec.h:
29564         * ext/jpeg/smokeformat.h:
29565         Updated smoke, new bitstream, allows embedding in ogg.
29566
29567 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29568
29569         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
29570           Fix seeking in some files. All this code is no longer needed (and
29571           actually breaks stuff) because we now synchronize the full index
29572           right when reading the header.
29573
29574 2004-10-04  Wim Taymans  <wim@fluendo.com>
29575
29576         * configure.ac:
29577         configure update for libmng.
29578
29579 2004-10-04  Wim Taymans  <wim@fluendo.com>
29580
29581         * ext/libmng/Makefile.am:
29582         * ext/libmng/gstmng.c: (plugin_init):
29583         * ext/libmng/gstmng.h:
29584         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
29585         (gst_mngdec_base_init), (gst_mngdec_class_init),
29586         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
29587         (gst_mngdec_loop), (gst_mngdec_get_property),
29588         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
29589         (mngdec_closestream), (mngdec_handle_sink_event),
29590         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
29591         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
29592         (gst_mngdec_change_state):
29593         * ext/libmng/gstmngdec.h:
29594         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
29595         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
29596         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
29597         (gst_mngenc_chain), (gst_mngenc_get_property),
29598         (gst_mngenc_set_property):
29599         * ext/libmng/gstmngenc.h:
29600         Added basic MNG decoder. Needs more work. The encoder does
29601         not work yet.
29602
29603 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29604
29605         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
29606         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
29607         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
29608           Don't hang on length=0 chunks. Some negotiation fixes. Signal
29609           no-more-pads.
29610
29611 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
29612
29613         * configure.ac:
29614           you need at least 1.0.4 of speex
29615
29616 2004-10-04 Iain <iaingnome@gmail.com>
29617
29618         * ext/speex/gstspeexdec.h: Revert the includes changes.
29619
29620         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
29621
29622 2004-09-30 Iain <iaingnome@gmail.com>
29623
29624         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
29625         found during init or set as a property instead of hardcoding /dev/audio
29626
29627 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29628
29629         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
29630         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
29631         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
29632         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
29633         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
29634         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
29635         (gst_rmdemux_dump_data):
29636           Use debug category, fix EOS handling. filesrc ! rmdemux now
29637           works.
29638
29639 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29640
29641         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
29642         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
29643         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
29644           Improve allocation, cutting and sorting of the index. How takes a
29645           few seconds instead of minutes.
29646
29647 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
29648
29649         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
29650           fixed compilation
29651
29652 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29653
29654         * gst-libs/gst/riff/riff-media.c:
29655         (gst_riff_create_video_caps_with_data),
29656         (gst_riff_create_video_template_caps):
29657           Add wing commander format mimetype/fourccs.
29658         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29659           Don't crash if some value is 0.
29660
29661 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29662
29663         * gst-libs/gst/riff/riff-media.c:
29664         (gst_riff_create_video_caps_with_data),
29665         (gst_riff_create_video_template_caps):
29666           Add DIB fourcc (raw, palettized 8-bit RGB).
29667         * gst-libs/gst/riff/riff-read.c:
29668         (gst_riff_read_strf_vids_with_data):
29669           Oops, fix strf_data reading bug.
29670         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
29671           Use a non-NULL tag.
29672         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
29673           Time for hacks. Sorry Dave. At least one quicktime movie (a
29674           trailer) that I've encountered contains multiple video tracks.
29675           One of those is the actual video track, the other are one-frame
29676           tracks (images). Unfortunately, the number of frames according
29677           to the trak header is 1 for each, so that doesn't help. So
29678           instead, I look at the duration and discard tracks with a
29679           duration shorter than 20% of the length of the stream. Better
29680           than nothing.
29681
29682 2004-10-01  Christian Schaller <christian@fluendo.com>
29683
29684         * ext/ivorbis/vorbis.c:
29685           Patch from Phil Blundell (Bug 152341)
29686
29687 2004-10-01  Wim Taymans  <wim@fluendo.com>
29688
29689         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
29690         (speex_dec_get_formats), (speex_dec_convert),
29691         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
29692         (speex_dec_chain), (gst_speexdec_get_property),
29693         (gst_speexdec_set_property):
29694         Small cleanups.
29695
29696 2004-10-01  Wim Taymans  <wim@fluendo.com>
29697
29698         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
29699         (gst_wavparse_stream_init), (gst_wavparse_fmt),
29700         (gst_wavparse_other), (gst_wavparse_loop),
29701         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
29702         (gst_wavparse_srcpad_event):
29703         * gst/wavparse/gstwavparse.h:
29704         Added some more debugging info.
29705         Fix the case where the length of the file is 0.
29706         Make sure we seek to sample borders.
29707
29708 2004-10-01  Wim Taymans  <wim@fluendo.com>
29709
29710         * gst/playback/README:
29711         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
29712         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29713         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29714         Add some debug info to decodebin, update README
29715
29716 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29717
29718         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
29719           Don't use g_print(); use GST_DEBUG().
29720
29721 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29722
29723         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
29724         (gst_ogg_mux_queue_pads):
29725           Handle EOS properly.
29726
29727 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
29728
29729         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29730
29731         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
29732         (gst_faad_chain), (gst_faad_change_state):
29733         * ext/faad/gstfaad.h:
29734           Allow playback of raw (unframed) MPEG AAC files (#148993).
29735
29736 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
29737
29738         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29739
29740         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29741           Throw error if we didn't recognize the stream. Fixes #152289.
29742
29743 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29744
29745         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
29746           Fix negotiation.
29747
29748 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
29749
29750         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29751
29752         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29753           Fix memleak.
29754
29755 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
29756
29757         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29758
29759         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
29760           Solve #152805.
29761         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
29762           Solve 152806.
29763
29764 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29765
29766         * gst-libs/gst/riff/riff-media.c:
29767         (gst_riff_create_video_caps_with_data),
29768         (gst_riff_create_audio_caps_with_data):
29769           Add codec_data handling (like asfdemux used to do).
29770         * gst/asfdemux/gstasf.c: (plugin_init):
29771         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
29772         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
29773           Use riff-media for caps creation instead of our own (mostly
29774           broken) copy of its functions.
29775
29776 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29777
29778         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
29779           Don't actually error out if we get another return value than
29780           -EINVAL. Opposite to what I first thought, drivers have random
29781           return values for this, although -EINVAL is the expected return
29782           value. Since this is not fatal, we shouldn't use
29783           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
29784
29785 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29786
29787         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
29788         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
29789         (dvdreadsrc_get_property), (_open), (_seek), (_read),
29790         (dvdreadsrc_get), (dvdreadsrc_open_file),
29791         (dvdreadsrc_change_state):
29792           Fix. Don't do one big huge loop around the whole DVD, that will
29793           cache all data and thus eat sizeof(dvd) (several GB) before we
29794           see something.
29795         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
29796           Actually NULL'ify event after using it.
29797         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
29798         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
29799         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29800         (gst_ebml_read_seek), (gst_ebml_read_skip):
29801           Handle events.
29802         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
29803         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
29804         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
29805           Fix timing (this will probably break if I seek using menus, but
29806           I didn't get there yet). VOBs and normal DVDs should now work.
29807           Add a mpeg2-only pad with high rank so this get autoplugged for
29808           MPEG-2 movies.
29809         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
29810         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
29811         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
29812         (gst_mpeg_demux_get_audio_stream),
29813         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
29814         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
29815           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
29816           MPEG-1 but use dvddemux for MPEG-2.
29817         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
29818         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
29819         (gst_mpeg_parse_parse_packhead):
29820           Timing. Only add pad template if it exists. Add sink template from
29821           class and not from ourselves. This means we will always use the
29822           correct sink template even if it is not the one defined in this
29823           file.
29824
29825 2004-09-29  Wim Taymans  <wim@fluendo.com>
29826
29827         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
29828         (gst_mpeg_demux_parse_pes):
29829         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
29830         Fix playback of mpeg again, timestamps where screwed up by
29831         patch 1.61.
29832
29833 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29834
29835         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
29836           Only return true if we actually filled something in. Prevents
29837           player applications from showing a random length for flac files.
29838         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29839         (gst_riff_read_use_event), (gst_riff_read_handle_event),
29840         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
29841         (gst_riff_read_strf_vids_with_data),
29842         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
29843           OK, ok, so I implemented event handling. Apparently it's normal
29844           that we receive random events at random points without asking
29845           for it.
29846         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
29847         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
29848         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
29849         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
29850         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
29851         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
29852         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
29853         * gst/avi/gstavidemux.h:
29854           Implement non-lineair chunk handling and subchunk processing.
29855           The first solves playback of AVI files where the audio and video
29856           data of individual buffers that we read are not synchronized.
29857           This should not happen according to the wonderful AVI specs, but
29858           of course it does happen in reality. It is also a prerequisite for
29859           the second. Subchunk processing allows us to cut chunks in small
29860           pieces and process each of these pieces separately. This is
29861           required because I've seen several AVI files with incredibly large
29862           audio chunks, even some files with only one audio chunk for the
29863           whole file. This allows for proper playback including seeking.
29864           This patch is supposed to fix all AVI A/V sync issues.
29865         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
29866         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
29867           Work.
29868         * gst/modplug/gstmodplug.cc:
29869           Proper return value setting for the query() function.
29870         * gst/playback/gstplaybasebin.c: (setup_source):
29871           Being in non-playing state (after, e.g., EOS) is not necessarily
29872           a bad thing. Allow for that. This fixes playback of short files.
29873           They don't actually playback fully now, because the clock already
29874           runs. This means that small files (<500kB) with a small length
29875           (<2sec) will still not or barely play. Other files, such as mod
29876           or flx, will work correctly, however.
29877
29878 2004-09-28  Wim Taymans  <wim@fluendo.com>
29879
29880         * ext/speex/gstspeex.c: (plugin_init):
29881         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
29882         (gst_speex_dec_class_init), (speex_dec_get_formats),
29883         (speex_get_event_masks), (speex_get_query_types),
29884         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
29885         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
29886         (gst_speexdec_get_property), (gst_speexdec_set_property),
29887         (speex_dec_change_state):
29888         * ext/speex/gstspeexdec.h:
29889         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
29890         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
29891         (gst_speexenc_base_init), (gst_speexenc_class_init),
29892         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
29893         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
29894         (gst_speexenc_src_query), (gst_speexenc_init),
29895         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
29896         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
29897         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
29898         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
29899         (gst_speexenc_chain), (gst_speexenc_get_property),
29900         (gst_speexenc_set_property), (gst_speexenc_change_state):
29901         * ext/speex/gstspeexenc.h:
29902         Rewrote speex encoder, make sure it can be embedded in ogg.
29903         Implemented speex decoder.
29904
29905 2004-09-28  Christian Schaller <christian@fluendo.com>
29906
29907         * configure.ac:
29908         Remove kioslave plugin. Markey is brewing a new working one
29909         * ext/Makefile.am: Remove kioslave plugin
29910         * ext/kio: remove
29911         * gst-plugins.spec.in: remove kio plugin from spec
29912
29913 2004-09-27  Wim Taymans  <wim@fluendo.com>
29914
29915         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
29916         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
29917         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
29918         (gst_multifdsink_new_client),
29919         (gst_multifdsink_handle_client_write),
29920         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29921         (gst_multifdsink_handle_clients):
29922         * gst/tcp/gstmultifdsink.h:
29923         Make syncing to keyframes actually work for new clients and lagging
29924         clients.
29925
29926 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29927
29928         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
29929         (gst_navigationtest_handle_src_event), (draw_box_planar411),
29930         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
29931         * gst/debug/gstnavigationtest.h:
29932           make navigationtest display button-press and button-release events
29933
29934 2004-09-26 Iain <iaingnome@gmail.com>
29935
29936         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
29937         the channels have received a new media event.
29938         (interleave_buffered_loop): Compresses a new media event on all
29939         channels into one.
29940
29941 2004-09-26 Iain <iaingnome@gmail.com>
29942
29943         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
29944         call the sinkpad's default event handler and not the srcpads. He also
29945         says this is confusing :)
29946         (gst_wavenc_stop_file): Company says that seek events only go upstream
29947         we should send a discontinuous downstream instead.
29948
29949 2004-09-25  Christian Schaller <christian@fluendo.com>
29950
29951         * Update SPEC file to be usable in conjunction with Fedora Core,
29952           Fedora.us and freshrpms packages
29953         * Fix typo in multifilesrc test Makefile
29954
29955 2004-09-24  Wim Taymans  <wim@fluendo.com>
29956
29957         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
29958         Only signal the no_more_pads signal when we have
29959         added the stream to our list.
29960
29961 2004-09-24  Wim Taymans  <wim@fluendo.com>
29962
29963         * gst/playback/gstplaybasebin.c: (remove_prerolls),
29964         (new_decoded_pad):
29965         * gst/playback/gstplaybasebin.h:
29966         * gst/playback/gstplaybin.c: (setup_sinks):
29967         Don't try to preroll or decode more than one audio/video
29968         track.
29969
29970 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29971
29972         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
29973           Throw error if we failed to find a suitable output. This should
29974           throw an error if we successfully set up a pipeline (e.g. because
29975           we recognized a media file) but found no decodable streams in it
29976           (e.g. because it contains only media stream types for which we
29977           have no decoders, or because it's not a media type).
29978
29979 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29980
29981         * ext/dirac/Makefile.am:
29982         * ext/dirac/gstdirac.cc:
29983         * ext/dirac/gstdiracdec.cc:
29984         * ext/dirac/gstdiracdec.h:
29985           Do something. Don't actually know if this works because I don't
29986           have a demuxer yet.
29987         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
29988           Add channels=1 to caps returned from _getcaps().
29989         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
29990         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
29991         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
29992         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
29993         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
29994         (gst_ogm_parse_change_state):
29995           Separate between audio/video so ogmaudioparse actually uses the
29996           audio pad templates. Both audio and video work now, including
29997           autoplugging. Also use sometimes-srcpad hack.
29998         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
29999           Handle events better. Don't hang on infinite loops.
30000         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
30001         (gst_avi_demux_init), (gst_avi_demux_reset),
30002         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30003         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
30004         (gst_avi_demux_change_state):
30005         * gst/avi/gstavidemux.h:
30006           Improve A/V sync. Still not perfect.
30007         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
30008         (gst_ebml_read_skip):
30009           Handle events better.
30010         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
30011         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
30012         (qtdemux_audio_caps):
30013           Add IMA4. Improve event handling. Save offset after a seek when
30014           the headers are at the end of the file so that we don't end up in
30015           an infinite loop.
30016         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
30017           Add low-priority typefind support for files with no length.
30018
30019 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30020
30021         * testsuite/multifilesink/Makefile.am:
30022         fix typo
30023
30024 2004-09-22  Julien MOUTTE  <julien@moutte.net>
30025
30026         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30027         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
30028         mistakes from thaytan's patches.
30029
30030 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30031
30032         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30033           For completeness, XSync in the destroy function as xvimage does.
30034
30035 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30036
30037         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
30038            Correct caps negotiation
30039         * gst/volume/gstvolume.c: (volume_chain_float),
30040         (volume_chain_int16):
30041            Modify debug output to be little more informative
30042         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
30043         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
30044         (gst_xvimagesink_xvimage_destroy):
30045           Add XSync calls after detaching from the shared memory segment to
30046           avoid a crash.
30047
30048 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30049
30050         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
30051         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
30052         * ext/vorbis/vorbis.c: (plugin_init):
30053         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
30054         (gst_vorbisenc_chain):
30055         * ext/vorbis/vorbisenc.h:
30056         remove explicit newmedia support from oggmux and vorbisenc
30057         add debug category to vorbisenc
30058         * gst/multifilesink/gstmultifilesink.c:
30059         (gst_multifilesink_class_init), (gst_multifilesink_init),
30060         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
30061         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
30062         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
30063         (plugin_init):
30064         * gst/multifilesink/gstmultifilesink.h:
30065         add support for streamheader in multifilesink
30066
30067 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30068
30069         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
30070         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
30071         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
30072           Prevent infinite loops. More correct error reporting.
30073         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30074           Error out if negotiation fails.
30075         * gst/playback/gstplaybasebin.c: (setup_source),
30076         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
30077         (gst_play_base_bin_found_tag):
30078           Error/tag forwarding. Pre-roll fixes for source errors on state
30079           changes (e.g. "file does not exist") to prevent hangs.
30080
30081 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30082
30083         * testsuite/multifilesink/Makefile.am:
30084         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
30085         (gst_newmedia_class_init), (gst_newmedia_init),
30086         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30087         (newfile_signal), (test_signal), (main):
30088         * testsuite/multifilesink/multifilesrc_test.c: (main):
30089         * testsuite/multifilesink/oggtheora_test.c:
30090         (gst_newmedia_base_init), (gst_newmedia_class_init),
30091         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30092         (test_format), (newfile_signal), (test_signal), (main):
30093         * testsuite/multifilesink/oggvorbis_test.c:
30094         (gst_newmedia_base_init), (gst_newmedia_class_init),
30095         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30096         (test_format), (newfile_signal), (test_signal), (main):
30097         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
30098         (gst_newmedia_class_init), (gst_newmedia_init),
30099         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30100         (newfile_signal), (test_signal), (main):
30101         New media tests
30102
30103 2004-09-20  Christian Schaller <christian@fluendo.com>
30104
30105         * Fix mikmod license to LGPL as they have relicensed
30106         * Move Dirac and Effectv into LGPL section of README_license
30107
30108 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30109
30110         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
30111         (gst_mad_change_state):
30112           Allow for mp3 rate/channels changes. However, only very
30113           conservatively. Reason that we *have* to enable this is smiply
30114           because the mad find_sync() function is not good enough, it will
30115           regularly sync on random data as valid frames and therefore make
30116           us provide random caps as *final* caps of the stream. The best fix
30117           I could think of is to simply require several of the same stream
30118           changes in a row before we change caps.
30119           The actual testcase that works now is #
30120         * ext/ogg/Makefile.am:
30121         * ext/ogg/gstogg.c: (plugin_init):
30122         * ext/ogg/gstogmparse.c:
30123           OGM support (video only for now; I need an audio sample file).
30124         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30125         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
30126         (gst_asf_demux_add_video_stream):
30127           WMV extradata.
30128         * gst/playback/gstplaybasebin.c: (unknown_type):
30129           Don't error out on single unknown-types after all. It's wrong.
30130           If we found type of video and audio but not of a subtitle stream,
30131           it will still error out (which is unwanted). Will find a better fix
30132           later on.
30133         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
30134         (ogmaudio_type_find), (plugin_init):
30135           OGM support.
30136
30137 2004-09-20  Johan Dahlin  <johan@gnome.org>
30138
30139         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
30140         after setting caps.
30141
30142 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30143
30144         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
30145         * gst/wavenc/gstwavenc.h:
30146         Added newmedia support to wavenc
30147
30148 2004-09-17  Wim Taymans  <wim@fluendo.com>
30149
30150         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
30151         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
30152         (gst_fdset_fd_can_write), (gst_fdset_wait):
30153         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
30154         (gst_multifdsink_init), (gst_multifdsink_add),
30155         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
30156         (gst_multifdsink_remove_client_link),
30157         (gst_multifdsink_client_queue_buffer),
30158         (gst_multifdsink_handle_client_write),
30159         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
30160         (gst_multifdsink_close), (gst_multifdsink_change_state):
30161         * gst/tcp/gstmultifdsink.h:
30162         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
30163         (gst_tcpserversink_removed):
30164         Small cleanups in fdset.c
30165         Use a hastable to map fd to the client structure for faster
30166         lookup in _remove and get_stats.
30167         Added virtual function to close the fds.
30168         Handle clients even when the select/poll call was unblocked because
30169         of a command.
30170         Implement syncing to keyframe in the recovery procedure.
30171
30172 2004-09-16 Iain <iaingnome@gmail.com>
30173
30174         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
30175         try caps.
30176
30177 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30178
30179         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
30180           Caps are only set if the type of the stream is unknown, but this
30181           is initialized in ->init_stream(), so set to UNKNOWN after calling
30182           ->init_stream() so that capsnego starts.
30183
30184 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30185
30186         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30187         (gst_avi_demux_stream_data):
30188           Just hardcode for raw audio then. AVI audio sucks.
30189
30190 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
30191
30192         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
30193         * gst/matroska/matroska-mux.c: (audiosink_templ),
30194         (gst_matroska_mux_audio_pad_link):
30195         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
30196         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
30197
30198 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30199
30200         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30201         (gst_avi_demux_stream_data):
30202           Try to fix a/v sync issues.
30203
30204 2004-09-15  David Schleef  <ds@schleef.org>
30205
30206         * configure.ac: remove NASM check, since we don't use it.  Update
30207         dirac check to 0.4
30208         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
30209         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30210         Initialized variables.
30211         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
30212         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
30213         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
30214         SVQ3 format
30215
30216 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30217
30218         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30219         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
30220         * gst/avi/gstavidemux.h:
30221           Fix for compressed audio (mp3) timestamp generation. How did this
30222           ever work?
30223
30224 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30225
30226         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
30227           Volume is a double not a float.
30228
30229 2004-09-15  Wim Taymans  <wim@fluendo.com>
30230
30231         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
30232         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
30233         Don't close the fd in multifdsink as we didn't open it in the
30234         first place. Some cleanups.
30235
30236 2004-09-15  Wim Taymans  <wim@fluendo.com>
30237
30238         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30239         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30240         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
30241         Fix the case where the muxer would mark pages as delta
30242         frames when they are not (vorbis only ogg).
30243
30244 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30245
30246         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
30247         (gst_play_base_bin_change_state):
30248           Handle the case where we failed to setup a clear pipeline. This
30249           will throw an error (or EOS, another nice case) and if you don't
30250           catch that, the app will wait for the signal forever (and thus
30251           hang).
30252
30253 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30254
30255         * ext/gnomevfs/gstgnomevfssink.c:
30256         (gst_gnomevfssink_uri_get_protocols):
30257         * ext/gnomevfs/gstgnomevfssrc.c:
30258         (gst_gnomevfssrc_uri_get_protocols):
30259         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
30260         * ext/gnomevfs/gstgnomevfsuri.h:
30261           Use _uri_new() instead of _open(), so it doesn't take as long and
30262           Christophe's computer won't hang.
30263         * gst/playback/gstplaybasebin.c: (unknown_type):
30264           Throw error on unknown media type, so apps actually display it.
30265
30266 2004-09-14  Brian Cameron  <brian.cameron@sun.com
30267
30268         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
30269           this script to work on Solaris since bash shell handles echo
30270           differenly than bash.
30271
30272 2004-09-17  Wim Taymans  <wim@fluendo.com>
30273
30274         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
30275         (setup_source), (gst_play_base_bin_set_property),
30276         (gst_play_base_bin_add_element):
30277         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
30278         Some more work on making sure seeking pauses the pipeline and
30279         that changing the uri actually does something.
30280
30281 2004-09-17  Wim Taymans  <wim@fluendo.com>
30282
30283         * gst/tcp/gstfdset.c: (gst_fdset_wait):
30284         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
30285         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
30286         (gst_tcpserversink_close):
30287         Be a bit more paranoid when freeing memory.
30288
30289 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30290
30291         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
30292         (qtdemux_parse_trak):
30293           Don't crash by dividing by zero (see sample movie in #126922).
30294
30295 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30296
30297         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30298           Don't touch non-existing data (fixes crash on file in #140147).
30299
30300 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30301
30302         * gst/playback/gstplaybasebin.c:
30303         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
30304           Handle double disposals, and proper change of URIs.
30305
30306 2004-09-13  Martin Eikermann <meiker@upb.de>
30307
30308         * gst/mpegstream/gstmpegparse.c:
30309           fix synchronistation for streams recorded from digital PCR
30310           fixes bug #119376
30311
30312 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30313
30314         * ext/gnomevfs/Makefile.am:
30315         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30316         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
30317         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
30318         (gst_gnomevfssink_uri_get_type),
30319         (gst_gnomevfssink_uri_get_protocols),
30320         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
30321         (gst_gnomevfssink_uri_handler_init),
30322         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
30323         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
30324         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
30325         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
30326         (gst_gnomevfssrc_uri_get_type),
30327         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
30328         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
30329         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
30330         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
30331         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
30332         * ext/gnomevfs/gstgnomevfsuri.h:
30333           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
30334           of fake URIs to see which this version of Gnome-VFS likes, and
30335           uses that for the Gst-URI interface. Makes playbin support http://
30336           streams. Also fix up some stupid behaviour in gnomevfssrc.
30337
30338 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30339
30340         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
30341         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
30342         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
30343         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
30344           Update mixer (to sync with other sessions) if we try to obtain
30345           a new value. This makes alsamixer work accross applications.
30346         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
30347           Only call sync functions if we're running, else alsalib asserts.
30348         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
30349           Sometimes fails to compile. Possibly a gcc bug.
30350         * gst/playback/gstplaybin.c: (gen_video_element),
30351         (gen_audio_element):
30352           Add a reference to an application-provided object, because we lose
30353           this same reference if we add it to the bin. If we don't do this,
30354           we can only use this object once and thus crash if we go from
30355           ready to playing, back to ready and back to playing again.
30356           Also add an audioscale element because several cheap soundcards -
30357           like mine - don't support all samplerates.
30358         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30359         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
30360           Fix wrong order or PAR calls. Makes automatically obtained PAR
30361           from the X server atually being used.
30362
30363 2004-09-12  David Schleef  <ds@schleef.org>
30364
30365         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
30366         #151887, #152102, #152247.
30367         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
30368         * examples/seeking/cdparanoia.c: same
30369         * examples/seeking/cdplayer.c: same
30370         * examples/seeking/seek.c: same
30371         * examples/seeking/spider_seek.c: same
30372         * examples/seeking/vorbisfile.c: same
30373         * examples/stats/mp2ogg.c: same
30374         * ext/esd/esdsink.c: (gst_esdsink_class_init),
30375         (gst_esdsink_dispose): Dispose of element properly.
30376         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
30377         fixes.
30378         * ext/nas/nassink.c: (gst_nassink_class_init),
30379         (gst_nassink_dispose): Dispose of element correctly.
30380         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
30381         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
30382         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
30383         Fix 64-bit warning.
30384         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
30385         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
30386         Fix 64-bit warning.
30387
30388 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30389
30390         * configure.ac : change speex detection as 1.1.6 now uses
30391           .pc/pkg-config and they changed their headers location.
30392
30393 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
30394
30395         * gst/matroska/matroska-mux.h:
30396         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
30397         (gst_matroska_mux_start), (gst_matroska_mux_finish),
30398         (gst_matroska_mux_write_data):
30399           Write multiple blocks/frames per cluster.
30400                 Write meta-seek information (seek heads).
30401
30402 2004-09-09  Scott Wheeler <wheeler@kde.org>
30403
30404         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
30405         (gst_play_bin_set_property), (gst_play_bin_get_property),
30406         (gen_audio_element), (gen_audio_element):
30407           Add a volume element / property to the pipeline.
30408
30409 2004-09-07  Wim Taymans  <wim@fluendo.com>
30410
30411         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
30412         Copy timestamps from the master pad to the output buffers.
30413
30414 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30415
30416         * ext/raw1394/gstdv1394src.c:
30417           throw errors when applicable
30418
30419 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
30420
30421         * gst/matroska/ebml-ids.h:
30422         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
30423         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
30424         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
30425           automatically convert unix time <-> ebml time when reading/writing
30426           a date, use gst_ebml_write_uint to write CUETIME,
30427           not gst_ebml_write_date.
30428         * gst/matroska/matroska-ids.h:
30429         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
30430         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
30431         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
30432         (gst_matroska_mux_write_data):
30433           Write track and segment UIDs, write muxing date, write
30434           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
30435           Create cues for audio only files.
30436
30437 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30438
30439         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
30440         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
30441           Re-commit ALSA switches.
30442         * gst/adder/gstadder.c: (gst_adder_loop):
30443           64-bit fix (#151416).
30444         * gst/debug/progressreport.c: (gst_progressreport_report):
30445           64-bit fix (#151419).
30446         * gst/matroska/matroska-demux.c:
30447         (gst_matroska_demux_parse_contents):
30448           64-bit fix (#151420).
30449         * gst/playback/test3.c: (update_scale):
30450           64-bit fix (#151421).
30451
30452 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
30453
30454         * configure.ac:
30455           bump nano to cvs
30456
30457 === release 0.8.4 ===
30458
30459 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
30460
30461         * configure.ac: releasing 0.8.4, "Alias"
30462
30463 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
30464
30465         * ext/theora/Makefile.am:
30466           fix makefile.  Fixes #151462.
30467
30468 2004-08-30  Wim Taymans  <wim@fluendo.com>
30469
30470         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
30471         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30472         (gst_multifdsink_remove_client_link),
30473         (gst_multifdsink_client_queue_buffer),
30474         (gst_multifdsink_handle_client_write):
30475         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
30476         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
30477         Fix some memory leaks.
30478
30479 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
30480
30481         Patch by: David Schleef
30482
30483         * configure.ac:
30484         * sys/Makefile.am:
30485           rename our detection macro for V4L2.  Fixes #151236.
30486
30487 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
30488
30489         Patch by: David Schleef
30490
30491         * configure.ac:
30492           check to define LAMEPRESET.  Fixes #151232.
30493
30494 2004-08-27  David Schleef  <ds@schleef.org>
30495
30496         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
30497         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
30498         (gst_glimagesink_fixate):  Move local variable declarations to
30499         make gcc-2.95 happy.
30500
30501 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30502
30503         * configure.ac:
30504           bump nano for prerelease
30505
30506 2004-08-27  David Schleef  <ds@schleef.org>
30507
30508         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
30509         * sys/sunaudio/gstsunaudiosrc.c:
30510         * sys/sunaudio/gstsunaudiosrc.h:
30511
30512 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
30513
30514         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
30515         handle EOS correctly
30516         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
30517         * gst/matroska/matroska-mux.h:
30518         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
30519         VFW compatibility mode
30520
30521 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30522
30523         patch by: Zaheer Abbas Merali
30524
30525         * ext/ogg/gstoggmux.c:
30526         * ext/vorbis/vorbisenc.c:
30527         * ext/vorbis/vorbisenc.h:
30528           handle NEWMEDIA
30529
30530 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
30531
30532         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
30533         fix byte order reversion on little endian machines.
30534         * gst/matroska/matroska-mux.c: (audiosink_templ),
30535         (gst_matroska_mux_audio_pad_link):
30536         add TTA codec to the list of supported codecs.
30537         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
30538         (gst_matroska_mux_start), (gst_matroska_mux_finish),
30539         (gst_matroska_mux_write_data):
30540         * gst/matroska/matroska-mux.h:
30541         write segment duration correctly, write muxing app string, fixes bugs
30542         #140897 and #140898.
30543         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
30544         wait for all pads to be negotiated before starting to mux.
30545
30546 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30547
30548         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
30549         * ext/lame/gstlame.h:
30550         Added new media support to lame
30551
30552 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
30553
30554         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
30555         send vorbis headers at the beginning of a stream, fixes bug #141554.
30556         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
30557         bug #148950.
30558         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
30559         (gst_matroska_demux_plugin_init):
30560         * gst/matroska/matroska-ids.h:
30561         enable demuxing of TTA audio streams, fixes bug #148951.
30562         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
30563         enable typefinding for TTA audio files, fixes bug #148711.
30564         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
30565         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
30566         fixes playback of packed bitstream and xvid with bframes, bug #135407.
30567
30568 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
30569
30570         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30571         (gst_riff_read_element_data), (gst_riff_read_seek),
30572         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
30573         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
30574         <teuf@gnome.org>
30575
30576 2004-08-23 Iain <iaingnome@gmail.com>
30577
30578         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
30579         tags. They appear to be handled differently to normal.
30580         (tag_list_to_id3_tag_foreach): Ditto.
30581
30582 2004-08-22  Wim Taymans  <wim@fluendo.com>
30583
30584         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30585         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
30586         Make sure we never send -1 granulepos.
30587
30588 2004-08-20  Wim Taymans  <wim@fluendo.com>
30589
30590         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30591         (gst_ogg_mux_loop):
30592         I will accept bitchslappings with non sharp objects.
30593
30594 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30595
30596         * configure.ac:
30597         Clean up the test for lame presets
30598
30599 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30600
30601         * configure.ac:
30602         * ext/lame/Makefile.am:
30603         * ext/lame/gstlame.c: (gst_lame_class_init),
30604         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
30605         Only enable lame presets if version of lame has presets in API
30606
30607 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
30608         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
30609         * gst/udp/gstudpsrc.h:
30610           Don't call gst_pad_push in a get function. Fixes #150449
30611
30612 2004-08-18  Wim Taymans  <wim@fluendo.com>
30613
30614         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
30615         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
30616         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
30617         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
30618         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
30619         (gst_fdset_wait):
30620         * gst/tcp/gstfdset.h:
30621         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30622         (gst_multifdsink_client_queue_buffer),
30623         (gst_multifdsink_handle_client_write):
30624         * gst/tcp/gstmultifdsink.h:
30625         Some extra checks in gstfdset.
30626         Only use send() when the fd is a socket. Don't try to
30627         read from write only fds.
30628
30629 2004-08-18  Wim Taymans  <wim@fluendo.com>
30630
30631         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
30632         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
30633         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
30634         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
30635         (gst_fdset_wait):
30636         Add more locking and bounds checking.
30637
30638 2004-08-18  Wim Taymans  <wim@fluendo.com>
30639
30640         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
30641         Realloc test fdset in the lock and right before starting
30642         the poll call. Bump the limit to 4096.
30643
30644 2004-08-17  David Schleef  <ds@schleef.org>
30645
30646         * sys/sunaudio/Makefile.am:
30647         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
30648         of rates and channels.  Make debugging less obnoxious.
30649
30650         Patch from Balamurali Viswanathan implementing a mixer for
30651         Sun audio.  (bug #144091):
30652         * sys/sunaudio/gstsunelement.c:
30653         * sys/sunaudio/gstsunelement.h:
30654         * sys/sunaudio/gstsunmixer.c:
30655         * sys/sunaudio/gstsunmixer.h:
30656
30657 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30658
30659         * gst/audioscale/gstaudioscale.c:
30660         * gst/audioscale/gstaudioscale.h:
30661         made audioscale resample from any sample rate to any sample rate
30662
30663 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30664
30665         * ext/libpng/gstpngdec.c:
30666           error out on unsupported types
30667
30668 2004-08-17  Iain <iaingnome@gmail.com>
30669
30670         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
30671         mid_side and loose_mid_side properties if its a stereo stream.
30672
30673 2004-08-17  Wim Taymans  <wim@fluendo.com>
30674
30675         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
30676         (theora_get_formats), (theora_dec_src_convert),
30677         (theora_dec_sink_convert), (theora_dec_src_query),
30678         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
30679         Add a debug line.
30680
30681 2004-08-17  Wim Taymans  <wim@fluendo.com>
30682
30683         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
30684         (gst_ogg_pad_push):
30685         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
30686         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
30687         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
30688         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
30689         Mark delta units in the muxer.
30690         Try to decode the packet after an out-of-sync error from
30691         libogg.
30692
30693 2004-08-17  Wim Taymans  <wim@fluendo.com>
30694
30695         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
30696         (gst_multifdsink_init), (gst_multifdsink_add),
30697         (gst_multifdsink_client_queue_buffer),
30698         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
30699         * gst/tcp/gstmultifdsink.h:
30700         Added option to send a keyframe to clients as the first buffer.
30701         Make timeout property writable.
30702
30703 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
30704
30705         patch by: Wim Taymans
30706
30707         * gst/tcp/gstfdset.c:
30708         * gst/tcp/gstmultifdsink.c:
30709           fix index comparison, should include 0
30710
30711 2004-08-16  Wim Taymans  <wim@fluendo.com>
30712
30713         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
30714         (gst_fdset_add_fd), (gst_fdset_remove_fd),
30715         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
30716         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
30717         (gst_fdset_wait):
30718           copy when reallocing for poll so the select arguments don't get
30719           changed during the call
30720
30721 2004-08-16  Wim Taymans  <wim@fluendo.com>
30722
30723         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
30724         (gst_theora_enc_class_init), (theora_enc_sink_link),
30725         (theora_buffer_from_packet), (theora_enc_chain):
30726         Fix bug where buffers were not marked as keyframes
30727         correctly.
30728
30729 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30730
30731         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
30732         (gst_lame_preset_get_type), (gst_lame_class_init):
30733         describe the enum values for vbr mode and presets more verbosely
30734
30735 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30736
30737         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
30738         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
30739         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
30740         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
30741         * ext/lame/gstlame.h:
30742         add preset property to lame so it can use lame presets
30743
30744 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30745
30746         * ext/lame/gstlame.c: (gst_lame_get_property):
30747         whoops forgot break, thanks teuf
30748
30749 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30750
30751         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
30752         (gst_lame_class_init), (gst_lame_src_getcaps),
30753         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
30754         (gst_lame_get_property), (gst_lame_setup):
30755         * ext/lame/gstlame.h:
30756         fix lame's broken vbr stuff, allow it to resample if need be, and also
30757         make xing header optional
30758
30759 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30760
30761         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
30762         added getcaps function so samplerate doesnt get fixated to silly values
30763
30764 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30765
30766         * ext/lame/gstlame.c: (gst_lame_src_link):
30767         revert previous fix
30768
30769 2004-08-12  Johan Dahlin  <johan@gnome.org>
30770
30771         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
30772         checks. Doesn't matter what state we are in. Interfaces are a
30773         compile time thing, not runtime. It also broke the python bindings.
30774
30775 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30776
30777         * ext/lame/gstlame.c: (gst_lame_src_link):
30778         made source pad link function check if sinkpad is ok..fixes the problem
30779         where core fixates the output rate of lame stupidly
30780
30781 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30782
30783         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
30784         * sys/v4l/v4l_calls.c:
30785         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
30786           fix fixate function to handle nonsimple caps.
30787           remove bogus check in _link
30788           cleanups
30789
30790 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30791
30792         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
30793         set default compression ratio parameter to 0.0 so bitrate parameter
30794         works :)
30795
30796 2004-08-11  David Schleef  <ds@schleef.org>
30797
30798         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
30799
30800 2004-08-11  David Schleef  <ds@schleef.org>
30801
30802         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
30803         before.
30804
30805 2004-08-11  David Schleef  <ds@schleef.org>
30806
30807         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
30808
30809 2004-08-11  David Schleef  <ds@schleef.org>
30810
30811         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
30812           license field
30813         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
30814         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
30815           LGPL.
30816         * gst/auparse/gstauparse.c: Fix plugin license field.
30817         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
30818         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
30819         * gst/rtp/gstrtp.c: Fix plugin license field.
30820
30821 2004-08-11  Wim Taymans  <wim@fluendo.com>
30822
30823         * gst/tcp/Makefile.am:
30824         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
30825         (ensure_size), (gst_fdset_new), (gst_fdset_free),
30826         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
30827         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
30828         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
30829         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
30830         (gst_fdset_fd_can_write), (gst_fdset_wait):
30831         * gst/tcp/gstfdset.h:
30832         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
30833         (gst_multifdsink_class_init), (gst_multifdsink_init),
30834         (gst_multifdsink_add), (gst_multifdsink_remove),
30835         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
30836         (gst_multifdsink_remove_client_link),
30837         (gst_multifdsink_handle_client_read),
30838         (gst_multifdsink_client_queue_data),
30839         (gst_multifdsink_client_queue_caps),
30840         (gst_multifdsink_client_queue_buffer),
30841         (gst_multifdsink_handle_client_write),
30842         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30843         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
30844         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
30845         (gst_multifdsink_close):
30846         * gst/tcp/gstmultifdsink.h:
30847         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
30848         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
30849         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
30850         (gst_tcpserversink_close):
30851         * gst/tcp/gsttcpserversink.h:
30852         Abstracted away the select call, implemented poll (yes we ran into
30853         the 1024 limit in production).
30854
30855 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
30856
30857         * gst/tcp/gsttcp.c:
30858         * gst/tcp/gsttcpplugin.c:
30859           improve debuggging, remove assert
30860
30861 2004-08-10  Wim Taymans  <wim@fluendo.com>
30862
30863         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
30864         (gst_client_status_get_type), (gst_multifdsink_class_init),
30865         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
30866         (gst_multifdsink_handle_client_read),
30867         (gst_multifdsink_handle_client_write),
30868         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30869         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
30870         (gst_multifdsink_get_property):
30871         * gst/tcp/gstmultifdsink.h:
30872         * gst/tcp/gsttcp-marshal.list:
30873         Starting to prepare for specifying buffer time in other units
30874         than buffers. Expose remove reason in signal.
30875
30876 2004-08-10  Wim Taymans  <wim@fluendo.com>
30877
30878         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30879         (gst_multifdsink_remove), (gst_multifdsink_clear),
30880         (gst_multifdsink_remove_client_link),
30881         (gst_multifdsink_handle_client_read),
30882         (gst_multifdsink_client_queue_data),
30883         (gst_multifdsink_client_queue_buffer),
30884         (gst_multifdsink_handle_client_write),
30885         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
30886         (gst_multifdsink_chain), (gst_multifdsink_close):
30887         * gst/tcp/gstmultifdsink.h:
30888         Added more debugging info. Changed the way clients are
30889         removed from the lists. Fixed a bug where a bad file descriptor
30890         could cause many clients to be removed.
30891
30892 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30893
30894         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
30895           allow all pixel-aspect-ratios, not just 1:1
30896
30897 2004-08-09  David Schleef  <ds@schleef.org>
30898
30899         * sys/glsink/ARB_multitexture.h:  Remove old files.
30900         * sys/glsink/EXT_paletted_texture.h:
30901         * sys/glsink/NV_register_combiners.h:
30902         * sys/glsink/gstgl_nvimage.c:
30903         * sys/glsink/gstgl_pdrimage.c:
30904         * sys/glsink/gstgl_rgbimage.c:
30905         * sys/glsink/gstglsink.c:
30906         * sys/glsink/gstglsink.h:
30907         * sys/glsink/gstglxwindow.c:
30908         * sys/glsink/regcomb_yuvrgb.c:
30909
30910 2004-08-09  David Schleef  <ds@schleef.org>
30911
30912         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
30913         GL sink plugin.  (Bug #147302)
30914
30915         * configure.ac: Test for OpenGL
30916         * sys/Makefile.am: Use test for OpenGL
30917         * sys/glsink/Makefile.am:
30918         * sys/glsink/glimagesink.c: rewrite
30919         * sys/glsink/glimagesink.h: rewrite
30920
30921 2004-08-09  David Schleef  <ds@schleef.org>
30922
30923         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
30924         sane framerates.
30925         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
30926         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
30927         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
30928
30929 2004-08-09  Wim Taymans  <wim@fluendo.com>
30930
30931         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
30932         (gst_multifdsink_add), (gst_multifdsink_get_stats),
30933         (gst_multifdsink_client_remove),
30934         (gst_multifdsink_handle_client_read),
30935         (gst_multifdsink_handle_client_write),
30936         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
30937         Do a bit more logging, make the client_read code more robust.
30938
30939 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
30940
30941         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
30942         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
30943         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
30944         (gst_jpegdec_init), (gst_jpegdec_chain):
30945         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
30946         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
30947           cleanups, debugging fixes and memleak plugging
30948
30949 2004-08-09  Wim Taymans  <wim@fluendo.com>
30950
30951         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
30952         (theora_get_formats), (theora_dec_src_convert),
30953         (theora_dec_sink_convert), (theora_dec_src_query),
30954         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
30955         (theora_dec_change_state):
30956         Don't crash on missing header packets.
30957
30958 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
30959
30960         * po/LINGUAS:
30961         * po/sq.po:
30962           Added Albanian translation (Laurent Dhima)
30963         * po/cs.po:
30964           updated
30965
30966 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
30967
30968         * ext/lame/gstlame.c:
30969           fix/add debugging
30970
30971 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
30972
30973         * sys/ximage/ximagesink.c:
30974         * sys/xvimage/xvimagesink.c:
30975           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
30976
30977 2004-08-06  Wim Taymans  <wim@fluendo.com>
30978
30979         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
30980         (gst_multifdsink_add), (gst_multifdsink_get_stats),
30981         (gst_multifdsink_client_remove),
30982         (gst_multifdsink_handle_client_read),
30983         (gst_multifdsink_handle_client_write),
30984         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
30985         Make sure we don't try to read more from a client that what
30986         ioctl says us or we deadlock.
30987
30988 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
30989
30990         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
30991         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
30992         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
30993           decouple running_time and n_frames so it can handle changing
30994           framerate while running
30995
30996 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
30997
30998         * po/nl.po:
30999         * po/sv.po:
31000           updated translations
31001
31002 2004-08-04  Benjamin Otte  <otte@gnome.org>
31003
31004         * gst/videotestsrc/gstvideotestsrc.c:
31005         (gst_videotestsrc_get_capslist), (generate_capslist),
31006         (plugin_init):
31007           generate the list of supported caps at startup and reuse it instead
31008           of always generating it
31009
31010 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31011
31012         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
31013           whoops, last checkin broke normal build
31014
31015 2004-08-03  Benjamin Otte  <otte@gnome.org>
31016
31017         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
31018         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
31019         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
31020         (gst_alsa_mixer_get_option):
31021         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
31022         (dvdnavsrc_print_event):
31023         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
31024         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
31025         (gst_ogg_mux_pad_unlink):
31026         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
31027         (gst_multipart_mux_pad_unlink):
31028         * gst/videofilter/gstvideobalance.c:
31029         (gst_videobalance_colorbalance_set_value):
31030         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
31031         (gst_videomixer_pad_unlink):
31032         * po/uk.po:
31033         * sys/oss/gstossmixer.c:
31034         * sys/v4l/gstv4lcolorbalance.c:
31035         * sys/v4l/gstv4ltuner.c:
31036         * sys/v4l/v4lsrc_calls.c:
31037         * sys/v4l2/gstv4l2colorbalance.c:
31038         * sys/v4l2/gstv4l2tuner.c:
31039           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
31040
31041 2004-08-03  Benjamin Otte  <otte@gnome.org>
31042
31043         * examples/dynparams/filter.c: (ui_control_create):
31044         * examples/gstplay/player.c: (print_tag):
31045         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
31046         * ext/gdk_pixbuf/gstgdkanimation.c:
31047         (gst_gdk_animation_iter_may_advance):
31048         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
31049         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
31050         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
31051         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
31052         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
31053         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
31054         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
31055         * gst/sine/demo-dparams.c: (main):
31056         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
31057         * testsuite/alsa/formats.c: (create_pipeline):
31058         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
31059           fixes for G_DISABLE_ASSERT and friends
31060         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
31061         (mp3_type_frame_length_from_header), (mp3_type_find),
31062         (plugin_init):
31063           require mp3 typefinding to have at least MIN_HEADERS valid headers
31064           add typefinding for AAC adts files
31065
31066 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
31067
31068         * sys/ximage/ximagesink.c:
31069         (gst_ximagesink_calculate_pixel_aspect_ratio):
31070         * sys/xvimage/xvimagesink.c:
31071         (gst_xvimagesink_calculate_pixel_aspect_ratio):
31072         Make sure we calculate pixel-aspect-ratio using floating point maths
31073
31074 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31075
31076         * po/uk.po:
31077           updated translation
31078
31079 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31080
31081         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31082         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
31083           add debugging for display PAR calculation
31084
31085 2004-08-02  David Schleef  <ds@schleef.org>
31086
31087         * configure.ac: Fix mikmod CFLAGS.
31088
31089 2004-07-27  Benjamin Otte  <otte@gnome.org>
31090
31091         * gst/audioscale/gstaudioscale.c:
31092         - fix templates to only support S16, it's the only format that works
31093         - make caps nego code use try_set_caps_nonfixed and fixation instead
31094         of try_set_caps twice, which is not nice for autopluggers
31095         - change rank to secondary, so autopluggers can pick it up after
31096         audioconvert
31097
31098 2004-08-02  Iain <iain@prettypeople.org>
31099
31100         * gst/interleave/interleave.c (interleave_init),
31101         (interleave_request_new_pad),
31102         (interleave_pad_removed),
31103         (interleave_buffered_loop): Use the real pad count, not the artificial
31104         one.
31105
31106 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31107
31108         * configure.ac: bump nano back to development
31109
31110 === release 0.8.3 ===
31111
31112 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31113
31114         * configure.ac: releasing 0.8.3, "Water"
31115
31116 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31117
31118         * sys/xvimage/xvimagesink.c:
31119         (gst_xvimagesink_calculate_pixel_aspect_ratio),
31120         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
31121         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
31122         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
31123         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
31124         * sys/xvimage/xvimagesink.h:
31125           apply similar PAR fixes as to ximagesink
31126
31127 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31128
31129         patch from: Benjamin Otte
31130
31131         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
31132           add link function to lame.  Fixes #148986.
31133
31134 2004-08-02  Johan Dahlin  <johan@gnome.org>
31135
31136         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
31137         fix debugging log
31138
31139 2004-07-30  David Schleef  <ds@schleef.org>
31140
31141         * gst/videomixer/Makefile.am: Fix things that should have been
31142         fixed in the last checkin.
31143
31144 2004-07-30  David Schleef  <ds@schleef.org>
31145
31146         * gst/multipart/Makefile.am: Fix things that should have been
31147         fixed in the last checkin.
31148
31149 2004-07-30  David Schleef  <ds@schleef.org>
31150
31151         * testsuite/multifilesink/Makefile.am: Fix unused variable.
31152
31153 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31154
31155         * configure.ac:
31156           bump nano for prerelease
31157         * po/af.po:
31158         * po/az.po:
31159         * po/cs.po:
31160         * po/en_GB.po:
31161         * po/hu.po:
31162         * po/nl.po:
31163         * po/sr.po:
31164         * po/sv.po:
31165         * po/uk.po:
31166           updates
31167
31168 2004-07-30  Wim Taymans  <wim@fluendo.com>
31169
31170         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31171         (gst_multifdsink_add), (gst_multifdsink_remove),
31172         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31173         (gst_multifdsink_client_remove),
31174         (gst_multifdsink_handle_client_write),
31175         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31176         * gst/tcp/gstmultifdsink.h:
31177         Recover from a select with a bad file descriptor by removing
31178         the client.
31179
31180 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31181
31182         * configure.ac:
31183           fix requirement of core
31184         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
31185         (gst_play_pipeline_setup):
31186           don't use colorspace element.  do use hermescolorspace element.
31187           make macro to get a colorspace element.
31188           mark strings for translation.
31189         * po/POTFILES.in:
31190           add play.c
31191         * po/af.po:
31192         * po/az.po:
31193         * po/cs.po:
31194         * po/en_GB.po:
31195         * po/hu.po:
31196         * po/nl.po:
31197         * po/sr.po:
31198         * po/sv.po:
31199         * po/uk.po:
31200           update translations
31201
31202 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31203
31204         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
31205         fix default for newmedia flag
31206
31207 2004-07-30  Wim Taymans  <wim@fluendo.com>
31208
31209         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31210         (gst_theora_dec_init), (theora_get_formats),
31211         (theora_dec_src_convert), (theora_dec_sink_convert),
31212         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31213         (theora_dec_chain), (theora_dec_set_property),
31214         (theora_dec_get_property):
31215         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31216         (gst_theora_enc_class_init), (gst_theora_enc_init),
31217         (theora_enc_sink_link), (theora_enc_chain),
31218         (theora_enc_set_property), (theora_enc_get_property):
31219         Added cropping option to theora decoder.
31220         Added border option to theora encoder.
31221
31222 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31223
31224         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
31225         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
31226         (gst_pngenc_set_property):
31227         * ext/libpng/gstpngenc.h:
31228         Added newmedia support to pngenc so now gst-launch-0.8 videotestsrc ! ffmpegcolorspace ! pngenc snapshot=false newmedia=true ! multifilesink location=blah%d.png works as expected
31229
31230 2004-07-30  Wim Taymans  <wim@fluendo.com>
31231
31232         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
31233         (theora_enc_sink_link), (theora_enc_chain),
31234         (theora_enc_set_property), (theora_enc_get_property):
31235         Fix encoding of non-multiple-of-16 video.
31236
31237 2004-07-29  David Schleef  <ds@schleef.org>
31238
31239         * configure.ac: make test for audiofile more strict
31240
31241 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31242
31243         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
31244           give different names to typefind functions
31245
31246 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
31247
31248         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
31249         (gst_ximagesink_calculate_pixel_aspect_ratio),
31250         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
31251         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
31252         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
31253         (gst_ximagesink_get_property), (gst_ximagesink_init):
31254         * sys/ximage/ximagesink.h:
31255           allocate PAR's dynamically.
31256           use autodetected PAR if no object-set PAR is given.
31257           add workaround for directfb's X not setting physical size.
31258           fix to xvimagesink will follow tomorrow.
31259
31260 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31261
31262         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
31263         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
31264         (gst_shout2send_get_type), (gst_shout2send_set_clock),
31265         (gst_shout2send_class_init), (gst_shout2send_init),
31266         (set_shout_metadata), (gst_shout2send_set_metadata),
31267         (gst_shout2send_chain), (gst_shout2send_set_property),
31268         (gst_shout2send_get_property), (gst_shout2send_connect),
31269         (gst_shout2send_change_state):
31270         * ext/shout2/gstshout2.h:
31271         - fix for sending mp3 audio to icecast2 server, if pad link function not
31272         called before PAUSED state
31273         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
31274         - added tagging support for mp3 audio broadcasted
31275         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
31276         debug info
31277
31278 2004-07-28  Wim Taymans  <wim@fluendo.com>
31279
31280         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
31281         (gst_ogg_demux_push):
31282         Return query failure when we don't know the length of
31283         an ogg stream insteda of returning TRUE with a bogus value.
31284
31285 2004-07-28  Wim Taymans  <wim@fluendo.com>
31286
31287         * ext/theora/theoradec.c: (theora_get_formats),
31288         (theora_dec_src_convert), (theora_dec_sink_convert),
31289         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31290         (theora_dec_chain):
31291         Don't screw up the 1 Chroma for 1 luma sample situation when we
31292         have an odd offset/width by adding a black border in those cases.
31293
31294 2004-07-28  Wim Taymans  <wim@fluendo.com>
31295
31296         * ext/theora/theoradec.c: (theora_get_formats),
31297         (theora_dec_src_convert), (theora_dec_sink_convert),
31298         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31299         (theora_dec_chain):
31300         * ext/theora/theoraenc.c: (theora_enc_sink_link):
31301         Added first attempt at cropping of the image as required by the
31302         theora spec. We need more properties in the caps (offset_x,
31303         offset_y,stride) to implement this correctly.
31304
31305 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
31306
31307         * ext/dvdnav/README:
31308           Update the README to use dvddemux
31309         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
31310           Ensure getcaps returns a subset of the template caps
31311         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
31312         (gst_mpeg2subt_init):
31313           Ensure getcaps returns a subset of the template caps
31314         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
31315         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
31316         (gst_dvd_demux_get_subpicture_stream),
31317         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
31318         * gst/mpegstream/gstdvddemux.h:
31319           Set the explicit caps on the current_video pad before pushing
31320           anything
31321         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
31322         (gst_mpeg_demux_get_audio_stream):
31323           Free caps used to gst_pad_set_explicit_caps, which takes a const
31324           GstCaps *
31325
31326 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
31327
31328         * configure.ac: update GStreamer requirement to 0.8.4 because of
31329           GstFraction.
31330
31331 2004-07-28  Wim Taymans  <wim@fluendo.com>
31332
31333         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
31334         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
31335         Add the pad to the element after setting up the caps. This
31336         makes it a lot easier to autoplug.
31337
31338 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31339
31340         * gst/median/gstmedian.c:
31341         * gst/mpeg2subt/gstmpeg2subt.c:
31342         * gst/mpegaudioparse/gstmpegaudioparse.c:
31343         * gst/mpegstream/gstdvddemux.c:
31344         * gst/mpegstream/gstmpegdemux.c:
31345         * gst/mpegstream/gstmpegpacketize.c:
31346         * gst/rtjpeg/gstrtjpeg.c:
31347         * gst/rtjpeg/gstrtjpegdec.c:
31348         * gst/rtjpeg/gstrtjpegenc.c:
31349         * gst/sine/gstsinesrc.c:
31350         * gst/smooth/gstsmooth.c:
31351         * gst/smpte/gstsmpte.c:
31352         * gst/smpte/gstsmpte.h:
31353         * gst/stereo/gststereo.c:
31354         * gst/videofilter/gstgamma.c:
31355         * gst/videofilter/gstvideobalance.c:
31356         * gst/videofilter/gstvideofilter.c:
31357         * gst/videofilter/gstvideoflip.c:
31358         * gst/videoscale/gstvideoscale.c:
31359         * gst/videoscale/videoscale.c:
31360         * gst/videotestsrc/gstvideotestsrc.c:
31361         * gst/videotestsrc/videotestsrc.c:
31362         * gst/wavenc/gstwavenc.c:
31363         * gst/wavparse/gstwavparse.c:
31364           fix local includes and 64 bits constants
31365
31366 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31367
31368         * win32/gst.sln:
31369         * gst-libs/gst/*/*.vcproj:
31370         * gst/*/*.vcproj:
31371           more working plugins
31372
31373 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31374
31375         * testsuite/alsa/Makefile.am:
31376         * testsuite/alsa/srcstate.c:
31377         add test for alsasrc changing state
31378
31379 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31380
31381         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
31382         (gst_silence_get):
31383         * gst/silence/gstsilence.h:
31384         fix silence generation for 16bit raw audio
31385
31386 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31387
31388         * gst/matroska/matroska-demux.c:
31389         (gst_matroska_demux_parse_metadata),
31390         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
31391         * gst/mpegaudio/common.c:
31392         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
31393         (gst_videoscale_getcaps), (gst_videoscale_link),
31394         (gst_videoscale_src_fixate), (gst_videoscale_init),
31395         (gst_videoscale_finalize):
31396         * gst/videoscale/gstvideoscale.h:
31397         * gst/videotestsrc/gstvideotestsrc.c:
31398         (gst_videotestsrc_get_capslist):
31399         * gst/wavenc/gstwavenc.c:
31400         * sys/oss/gstossmixer.c: (fill_labels):
31401         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
31402         (gst_ximagesink_handle_xevents),
31403         (gst_ximagesink_calculate_pixel_aspect_ratio),
31404         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
31405         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
31406         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
31407         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
31408         (gst_ximagesink_init), (gst_ximagesink_class_init):
31409         * sys/ximage/ximagesink.h:
31410         * sys/xvimage/xvimagesink.c:
31411         (gst_xvimagesink_calculate_pixel_aspect_ratio),
31412         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
31413         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
31414         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
31415         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
31416         * sys/xvimage/xvimagesink.h:
31417           first batch of pixel aspect ratio commits.
31418
31419 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31420
31421         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31422         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
31423         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
31424           handle stride, needs work if we want to move stride handling
31425           upstream, but works correctly for our purposes.
31426
31427 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31428
31429         * gst/videoscale/README:
31430           add testing examples
31431         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
31432         (gst_videoscale_chain):
31433         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
31434         (gst_videoscale_get_size):
31435           add get_size function that handles stride like videotestsrc.
31436           fixes conversion for YUV formats for as much as I can test them.
31437
31438 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31439
31440         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31441         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
31442         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31443         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
31444         (gst_xvimagesink_xvimage_put):
31445           further cleanups, logging, error handling and synchronizing
31446
31447 2004-07-27  Wim Taymans  <wim@fluendo.com>
31448
31449         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
31450         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
31451         (gst_videomixer_pad_set_property),
31452         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
31453         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
31454         (gst_videomixer_class_init), (gst_videomixer_init),
31455         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
31456         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
31457         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
31458         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
31459         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
31460         (gst_videomixer_loop), (plugin_init):
31461         Be a nicer negotiation citizen and provide a getcaps function on
31462         the srcpad. This also fixes a crash when resizing.
31463
31464 2004-07-27  Julien MOUTTE  <julien@moutte.net>
31465
31466         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31467         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
31468
31469 2004-07-27  Wim Taymans  <wim@fluendo.com>
31470
31471         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
31472         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
31473         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
31474         (gst_pngenc_set_property):
31475         * ext/libpng/gstpngenc.h:
31476         Added snapshot property to pngenc.
31477         removed g_print from pngdec
31478
31479 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31480
31481         * gst/ac3parse/ac3parse.vcproj
31482         * gst/adder/adder.vcproj
31483         * gst/alpha/alpha.vcproj
31484         * gst/alpha/alphacolor.vcproj
31485         * gst/asfdemux/asf.vcproj
31486         * gst/audioconvert/audioconvert.vcproj
31487         * gst/audiorate/audiorate.vcproj
31488         * gst/audioscale/audioscale.vcproj
31489         * gst/auparse/auparse.vcproj
31490         * gst/avi/avi.vcproj
31491         * gst/cdxaparse/cdxaparse.vcproj
31492         * gst/chart/chart.vcproj
31493         * gst/colorspace/colorspace.vcproj
31494         * gst/cutter/cutter.vcproj
31495         * gst/debug/debug.vcproj
31496         * gst/debug/efence.vcproj
31497         * gst/debug/navigationtest.vcproj
31498         * gst/deinterlace/deinterlace.vcproj
31499         * gst/effectv/effectv.vcproj
31500         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
31501         * gst/filter/filter.vcproj
31502         * gst/flx/flxdec.vcproj
31503         * gst/goom/goom.vcproj
31504         * gst/interleave/interleave.vcproj
31505         * gst/law/alaw.vcproj
31506         * gst/law/mulaw.vcproj
31507         * gst/matroska/matroska.vcproj
31508         * gst/median/median.vcproj
31509         * gst/mixmatrix/mixmatrix.vcproj
31510         * gst/mpeg1sys/mpeg1systemencode.vcproj
31511         * gst/mpeg1videoparse/mp1videoparse.vcproj
31512         * gst/mpeg2sub/mpeg2subt.vcproj
31513         * gst/mpegaudio/mpegaudio.vcproj
31514         * gst/mpegaudioparse/mpegaudioparse.vcproj
31515         * gst/mpegstream/mpegstream.vcproj
31516         * gst/multifilesink/multifilesink.vcproj
31517         * gst/multipart/multipart.vcproj
31518         * gst/oneton/oneton.vcproj
31519         * gst/overlay/overlay.vcproj
31520         * gst/passthrough/passthrough.vcproj
31521         * gst/qtdemux/qtdemux.vcproj
31522         * gst/realmedia/rmdemux.vcproj
31523         * gst/rtjpeg/rtjpeg.vcproj
31524         * gst/rtp/rtp.vcproj
31525         * gst/silence/silence.vcproj
31526         * gst/sine/sinesrc.vcproj
31527         * gst/smooth/smooth.vcproj
31528         * gst/smpte/smpte.vcproj
31529         * gst/spectrum/spectrum.vcproj
31530         * gst/speed/speed.vcproj
31531         * gst/stereo/stereo.vcproj
31532         * gst/switch/switch.vcproj
31533         * gst/tags/tagedit.vcproj
31534         * gst/tcp/tcp.vcproj
31535         * gst/typefind/typefindfunctions.vcproj
31536         * gst/udp/udp.vcproj
31537         * gst/videobox/videobox.vcproj
31538         * gst/videocrop/videocrop.vcproj
31539         * gst/videodrop/videodrop.vcproj
31540         * gst/videofilter/gamma.vcproj
31541         * gst/videofilter/videobalance.vcproj
31542         * gst/videofilter/videofilter.vcproj
31543         * gst/videofilter/videoflip.vcproj
31544         * gst/videoflip/videoflip.vcproj
31545         * gst/videomixer/videomixer.vcproj
31546         * gst/videorate/videorate.vcproj
31547         * gst/videoscale/videoscale.vcproj
31548         * gst/videotestsrc/videotestsrc.vcproj
31549         * gst/virtualdub/virtualdub.vcproj
31550         * gst/volenv/volenv.vcproj
31551         * gst/volume/volume.vcproj
31552         * gst/wavenc/wavenc.vcproj
31553         * gst/wavparse/wavparse.vcproj
31554         * gst/y4m/y4menc.vcproj
31555         * gst-libs/gst/audio/audio.vcproj
31556         * gst-libs/gst/audio/audiofilter.vcproj
31557         * gst-libs/gst/colorbalance/colorbalance.vcproj
31558         * gst-libs/gst/idct/idtc.vcproj
31559         * gst-libs/gst/media-info/media-info.vcproj
31560         * gst-libs/gst/mixer/mixer.vcproj
31561         * gst-libs/gst/navigation/navigation.vcproj
31562         * gst-libs/gst/play/play.vcproj
31563         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
31564         * gst-libs/gst/resample/resample.vcproj
31565         * gst-libs/gst/riff/riff.vcproj
31566         * gst-libs/gst/tuner/tuner.vcproj
31567         * gst-libs/gst/video/video.vcproj
31568         * gst-libs/gst/xoverlay/xoverlay.vcproj
31569           avoid problems with math.h, fix release dependancy
31570           rename GStreamer-0.8.lib to libgstreamer.lib
31571
31572 2004-07-27  Julien MOUTTE  <julien@moutte.net>
31573
31574         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
31575         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
31576         the atom is not available we have to unlock the mutex. Fixes #148023
31577
31578 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31579
31580         * gst-libs/gst/media-info/media-info.h:
31581           issue for a vararg macro with MSVC
31582
31583 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31584
31585         * gst/effectv/effectv.vcproj
31586         * gst-libs/gst/idct/idct.vcproj:
31587         * gst-libs/gst/media-info/media-info.vcproj:
31588         * gst-libs/gst/navigation/navigation.vcproj:
31589         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
31590         * gst-libs/gst/video/video.vcproj:
31591         * gst-libs/gst/xoverlay/xoverlay.vcproj:
31592           fixes for build problems
31593
31594 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31595
31596         * gst-libs/gst/audio/audio.def:
31597         * gst-libs/gst/audio/riff.def:
31598           add some definitions needed by plugins
31599
31600 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31601
31602         * gst/asfdemux/gstasfmux.c
31603           Fix some 64 bits constants to be glib friendly
31604
31605 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31606
31607         * gst/ac3parse/gstac3parse.c
31608         * gst/audioscale/gstaudioscale.c
31609         * gst/auparse/gstauparse.c
31610         * gst/colorspace/gstcolorspace.c
31611         * gst/colorspace/yuv2rgb.h
31612           local include fixes
31613
31614 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31615
31616         * win32/gst.sln
31617           add more plugins to the build
31618
31619 2004-07-26  Julien MOUTTE  <julien@moutte.net>
31620
31621         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31622         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
31623
31624 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
31625
31626         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
31627         (gst_level_set_property), (gst_level_get_property),
31628         (gst_level_base_init), (gst_level_class_init):
31629           add debugging categories.  cleanups.
31630
31631 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
31632
31633         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
31634         (gst_videoscale_planar411), (gst_videoscale_planar400),
31635         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
31636         (gst_videoscale_scale_nearest_str1),
31637         (gst_videoscale_scale_nearest_str2),
31638         (gst_videoscale_scale_nearest_str4),
31639         (gst_videoscale_scale_nearest_16bit),
31640         (gst_videoscale_scale_nearest_24bit):
31641           fixed stride issues
31642           tested with 320x240 -> 321, 322, 324 x240
31643           tested with YV12, I420, YUY2, UYVY
31644           fixed packed422rev (don't think it could have worked before)
31645           by testing with UYVY
31646
31647 2004-07-26  Benjamin Otte  <otte@gnome.org>
31648
31649         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
31650         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
31651         (plugin_init):
31652           add debugging category, add error checks like checking return values
31653           of setup calls, make sure it still works after
31654           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
31655
31656 2004-07-26  Wim Taymans  <wim@fluendo.com>
31657
31658         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
31659         (gst_mpeg_demux_get_audio_stream),
31660         (gst_mpeg_demux_process_private):
31661         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
31662         Check for error codes from the negotiation functions. Make sure
31663         we really set the pad caps when a new pad is created.
31664
31665 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
31666
31667         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
31668         (gst_ffmpeg_caps_to_pix_fmt):
31669         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
31670         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31671         (gst_ffmpegcolorspace_pad_link):
31672           don't make function do two things at the same time without reason.
31673
31674 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31675
31676         * gst/ac3parse/ac3parse.vcproj
31677         * gst/adder/adder.vcproj
31678         * gst/alpha/alpha.vcproj
31679         * gst/alpha/alphacolor.vcproj
31680         * gst/asfdemux/asf.vcproj
31681         * gst/audioconvert/audioconvert.vcproj
31682         * gst/audiorate/audiorate.vcproj
31683         * gst/audioscale/audioscale.vcproj
31684         * gst/auparse/auparse.vcproj
31685         * gst/avi/avi.vcproj
31686         * gst/cdxaparse/cdxaparse.vcproj
31687         * gst/chart/chart.vcproj
31688         * gst/colorspace/colorspace.vcproj
31689         * gst/cutter/cutter.vcproj
31690         * gst/debug/debug.vcproj
31691         * gst/debug/efence.vcproj
31692         * gst/debug/navigationtest.vcproj
31693         * gst/deinterlace/deinterlace.vcproj
31694         * gst/effectv/effectv.vcproj
31695         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
31696         * gst/filter/filter.vcproj
31697         * gst/flx/flxdec.vcproj
31698         * gst/goom/goom.vcproj
31699         * gst/interleave/interleave.vcproj
31700         * gst/law/alaw.vcproj
31701         * gst/law/mulaw.vcproj
31702         * gst/matroska/matroska.vcproj
31703         * gst/median/median.vcproj
31704         * gst/mixmatrix/mixmatrix.vcproj
31705         * gst/mpeg1sys/mpeg1systemencode.vcproj
31706         * gst/mpeg1videoparse/mp1videoparse.vcproj
31707         * gst/mpeg2sub/mpeg2subt.vcproj
31708         * gst/mpegaudio/mpegaudio.vcproj
31709         * gst/mpegaudioparse/mpegaudioparse.vcproj
31710         * gst/mpegstream/mpegstream.vcproj
31711         * gst/multifilesink/multifilesink.vcproj
31712         * gst/multipart/multipart.vcproj
31713         * gst/oneton/oneton.vcproj
31714         * gst/overlay/overlay.vcproj
31715         * gst/passthrough/passthrough.vcproj
31716         * gst/qtdemux/qtdemux.vcproj
31717         * gst/realmedia/rmdemux.vcproj
31718         * gst/rtjpeg/rtjpeg.vcproj
31719         * gst/rtp/rtp.vcproj
31720         * gst/silence/silence.vcproj
31721         * gst/sine/sinesrc.vcproj
31722         * gst/smooth/smooth.vcproj
31723         * gst/smpte/smpte.vcproj
31724         * gst/spectrum/spectrum.vcproj
31725         * gst/speed/speed.vcproj
31726         * gst/stereo/stereo.vcproj
31727         * gst/switch/switch.vcproj
31728         * gst/tags/tagedit.vcproj
31729         * gst/tcp/tcp.vcproj
31730         * gst/typefind/typefindfunctions.vcproj
31731         * gst/udp/udp.vcproj
31732         * gst/videobox/videobox.vcproj
31733         * gst/videocrop/videocrop.vcproj
31734         * gst/videodrop/videodrop.vcproj
31735         * gst/videofilter/gamma.vcproj
31736         * gst/videofilter/videobalance.vcproj
31737         * gst/videofilter/videofilter.vcproj
31738         * gst/videofilter/videoflip.vcproj
31739         * gst/videoflip/videoflip.vcproj
31740         * gst/videomixer/videomixer.vcproj
31741         * gst/videorate/videorate.vcproj
31742         * gst/videoscale/videoscale.vcproj
31743         * gst/videotestsrc/videotestsrc.vcproj
31744         * gst/virtualdub/virtualdub.vcproj
31745         * gst/volenv/volenv.vcproj
31746         * gst/volume/volume.vcproj
31747         * gst/wavenc/wavenc.vcproj
31748         * gst/wavparse/wavparse.vcproj
31749         * gst/y4m/y4menc.vcproj
31750           more plugins supported under windows
31751
31752 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
31753
31754         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
31755         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
31756         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
31757         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
31758         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
31759           Add debugging statements.  Use the sizes as returned by the
31760           *CreateImage calls.
31761
31762 2004-07-26  Johan Dahlin  <johan@gnome.org>
31763
31764         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
31765         the pad is negotiated.
31766
31767         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
31768
31769 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
31770
31771         * gst-libs/gst/colorbalance/colorbalance.vcproj:
31772         * gst-libs/gst/idct/idct.vcproj:
31773         * gst-libs/gst/media-info/media-info.vcproj:
31774         * gst-libs/gst/mixer/mixer.vcproj:
31775         * gst-libs/gst/navigation/navigation.vcproj:
31776         * gst-libs/gst/play/play.vcproj:
31777         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
31778         * gst-libs/gst/resample/resample.vcproj:
31779         * gst-libs/gst/tuner/tuner.vcproj:
31780         * gst-libs/gst/video/video.vcproj:
31781         * gst-libs/gst/xoverlay/xoverlay.vcproj:
31782           more plugins supported under windows
31783
31784 2004-07-25 Iain <iain@prettypeople.org>
31785
31786         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
31787         pad now rather than when the pad is created because state changes wipe
31788         explicit caps (fixes #148043).
31789
31790 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
31791
31792         reviewed by Benjamin Otte  <otte@gnome.org>
31793
31794         * ext/mad/gstmad.c:
31795           fix mad plugin crashing on Sun (fixes #148289)
31796
31797 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
31798
31799         * gst/avi/avi.def:
31800         * gst/avi/avi.vcproj:
31801         * gst/matroska/matroska.def:
31802         * gst/matroska/matroska.vcproj:
31803           remove unused .def files
31804
31805 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
31806
31807         * gst-libs/gst/audio/gstaudiofilter.c:
31808           Clean the local include
31809
31810 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
31811
31812         * win32/gst.sln:
31813         * gst-libs/gst/audio/audio.def:
31814         * gst-libs/gst/audio/audio.vcproj:
31815         * gst-libs/gst/audio/audiofilter.vcproj:
31816         * gst-libs/gst/audio/riff.def:
31817         * gst-libs/gst/audio/riff.vcproj:
31818         * gst-libs/gst/gst-libs.def:
31819         * gst-libs/gst/gst-libs.vcproj:
31820         * gst/avi/avi.vcproj:
31821         * gst/avi/avi.vcproj:
31822           Copy the files where needed after building, cleaner projects
31823
31824 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
31825
31826         * gst/matroska/ebml-write.c:
31827           Fix some 64 bits constants to be glib friendly
31828
31829 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
31830
31831         * win32/gst.sln:
31832         * gst-libs/gst/gst-libs.def:
31833         * gst-libs/gst/gst-libs.vcproj:
31834         * gst/matroska/matroska.def:
31835         * gst/matroska/matroska.vcproj:
31836           Add the preliminary canvas to build plugins on Win32
31837
31838 2004-07-23  Benjamin Otte  <otte@gnome.org>
31839
31840         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31841           don't enfore negotiation from source side, it breaks
31842           sinesrc ! audioconvert ! osssink
31843
31844 2004-07-22  David Schleef  <ds@schleef.org>
31845
31846         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
31847         for ELF files, since they can easily be recognized as audio/mpeg.
31848         (bug #147441)
31849
31850 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
31851
31852         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
31853         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
31854         (gst_videoscale_scale_nearest_24bit),
31855         (gst_videoscale_scale_nearest_16bit):
31856           fix 16bit and 24bit for stride (24bit might need testing)
31857           don't pretend we do more than one algorithm
31858
31859 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31860
31861         * configure.ac:
31862         * gst/Makefile.am:
31863         * gst/multifilesink/Makefile.am:
31864         * gst/multifilesink/gstmultifilesink.c:
31865         (gst_multifilesink_get_formats),
31866         (gst_multifilesink_get_query_types), (_do_init),
31867         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
31868         (gst_multifilesink_init), (gst_multifilesink_dispose),
31869         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
31870         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
31871         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
31872         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
31873         (gst_multifilesink_chain), (gst_multifilesink_change_state),
31874         (gst_multifilesink_uri_get_type),
31875         (gst_multifilesink_uri_get_protocols),
31876         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
31877         (gst_multifilesink_uri_handler_init), (plugin_init):
31878         * gst/multifilesink/gstmultifilesink.h:
31879         * testsuite/Makefile.am:
31880         * testsuite/multifilesink/Makefile.am:
31881         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
31882         (gst_newmedia_class_init), (gst_newmedia_init),
31883         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
31884         (newfile_signal), (test_signal), (main):
31885         multifilesink plugin for creating new files every time a new media
31886         discontinuity event occurs
31887
31888 2004-07-22  Wim Taymans  <wim@fluendo.com>
31889
31890         * gst/alpha/Makefile.am:
31891         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
31892         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
31893         (gst_alpha_color_init), (gst_alpha_color_set_property),
31894         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
31895         (transform), (gst_alpha_color_chain),
31896         (gst_alpha_color_change_state), (plugin_init):
31897         Stupid plugin to to RGBA to AYUV conversion because none of
31898         the colorspace plugins can handle that yet.
31899
31900 2004-07-22  Wim Taymans  <wim@fluendo.com>
31901
31902         * examples/seeking/seek.c: (update_scale), (main):
31903         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
31904         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
31905         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
31906         (gst_decode_bin_init), (gst_decode_bin_dispose),
31907         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
31908         (no_more_pads), (close_link), (type_found),
31909         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
31910         (plugin_init):
31911         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
31912         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
31913         (gst_play_base_bin_dispose), (queue_overrun),
31914         (gen_preroll_element), (remove_prerolls), (unknown_type),
31915         (no_more_pads), (new_stream), (setup_source),
31916         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
31917         (play_base_eos), (gst_play_base_bin_change_state),
31918         (gst_play_base_bin_add_element),
31919         (gst_play_base_bin_remove_element),
31920         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
31921         (gst_play_base_bin_unlink_stream),
31922         (gst_play_base_bin_get_streaminfo):
31923         * gst/playback/gstplaybin.c: (gen_video_element),
31924         (gen_audio_element):
31925         * gst/playback/gststreaminfo.h:
31926         More playback updates, attempt to fix things after the state change
31927         breakage.
31928
31929 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
31930
31931         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
31932         (gst_videoscale_scale_nearest_16bit):
31933           comment algorithm
31934
31935 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
31936
31937         * gst/videotestsrc/gstvideotestsrc.c:
31938         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
31939         (gst_videotestsrc_init), (gst_videotestsrc_get),
31940         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
31941         (gst_videotestsrc_get_property):
31942         * gst/videotestsrc/gstvideotestsrc.h:
31943         * gst/videotestsrc/videotestsrc.c:
31944         * gst/videotestsrc/videotestsrc.h:
31945           cleanup and commenting
31946
31947 2004-07-21  Wim Taymans  <wim@fluendo.com>
31948
31949         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
31950         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
31951         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
31952         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
31953         (_find_chain_get_unknown_part), (_find_streams_check),
31954         (gst_ogg_demux_push), (gst_ogg_pad_push):
31955         * ext/theora/theoradec.c: (theora_get_formats),
31956         (theora_dec_src_convert), (theora_dec_sink_convert),
31957         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31958         (theora_dec_chain):
31959         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
31960         (vorbis_dec_convert), (vorbis_dec_src_query),
31961         (vorbis_dec_src_event), (vorbis_dec_event):
31962         More seeking fixes, oggdemux now supports seeking to time and
31963         uses the downstream element to convert granulepos to time.
31964         Seeking in theora-only ogg files now works.
31965
31966 2004-07-21  Wim Taymans  <wim@fluendo.com>
31967
31968         * ext/theora/theoradec.c: (gst_theora_dec_init),
31969         (theora_get_formats), (theora_get_event_masks),
31970         (theora_get_query_types), (theora_dec_src_convert),
31971         (theora_dec_sink_convert), (theora_dec_src_query),
31972         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
31973         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
31974         (vorbis_get_event_masks), (vorbis_get_query_types),
31975         (gst_vorbis_dec_init), (vorbis_dec_convert),
31976         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
31977         Added query/convert/formats functions to vorbis and theora decoders
31978         so that the outside world can use them too. Fixed seeking on an
31979         ogg/theora/vorbis file by disabling the seeking seeking on the
31980         theora srcpad.
31981
31982 2004-07-21  Julien MOUTTE  <julien@moutte.net>
31983
31984         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
31985         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
31986         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
31987         images creation for both elements. We don't create the image on caps
31988         nego or renego, we just destroy the internal one if present if it does
31989         not match the needs. The chain function takes care of creating a new
31990         image when needed.
31991         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
31992         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
31993         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
31994         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
31995         the image format information. The buffer pool checks for the context
31996         image format and discard images with different formats.
31997         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
31998
31999 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
32000
32001         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32002         (gst_ffmpegcolorspace_chain):
32003           no point in doing any chaining if the pad we want to push from
32004           isn't usable.
32005
32006 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32007
32008         * gst-libs/gst/riff/riff-media.c:
32009         (gst_riff_create_audio_caps_with_data):
32010           Fix double end-to-native symbol conversion (#148021).
32011
32012 2004-07-20  David Schleef  <ds@schleef.org>
32013
32014         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32015         Don't use an Atom that doesn't exist.
32016
32017 2004-07-20  Wim Taymans  <wim@fluendo.com>
32018
32019         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32020         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32021         (gst_multifdsink_client_remove),
32022         (gst_multifdsink_handle_client_write),
32023         (gst_multifdsink_queue_buffer):
32024         * gst/tcp/gstmultifdsink.h:
32025         More multifdsink stats. Avoid deadlock by releasing locks
32026         before sending out a signal.
32027
32028 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
32029
32030         * po/LINGUAS:
32031         * po/hu.po:
32032           added Hungarian translation (Laszlo Dvornik)
32033
32034 2004-07-20  Wim Taymans  <wim@fluendo.com>
32035
32036         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32037         (gst_multifdsink_add), (gst_multifdsink_client_remove),
32038         (gst_multifdsink_handle_client_write),
32039         (gst_multifdsink_queue_buffer):
32040         * gst/tcp/gsttcp-marshal.list:
32041         Fixed the stupid marshal definition.
32042
32043 2004-07-20  Wim Taymans  <wim@fluendo.com>
32044
32045         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32046         (gst_multifdsink_init), (gst_multifdsink_add),
32047         (gst_multifdsink_client_remove),
32048         (gst_multifdsink_handle_client_write),
32049         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
32050         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
32051         (gst_multifdsink_init_send):
32052         * gst/tcp/gstmultifdsink.h:
32053         Added more stats, added timeout for a client, fixed some typos
32054         and added some comments.
32055
32056 2004-07-20  Wim Taymans  <wim@fluendo.com>
32057
32058         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32059         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32060         (gst_multifdsink_client_remove),
32061         (gst_multifdsink_handle_client_write):
32062         * gst/tcp/gstmultifdsink.h:
32063         * gst/tcp/gsttcp-marshal.list:
32064         Added get_stats method that returns a GValueArray of
32065         stats values.
32066
32067 2004-07-19  Benjamin Otte  <otte@gnome.org>
32068
32069         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
32070           make sure longname, description and author are valid UTF-8
32071
32072 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
32073
32074         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
32075         (gst_ximagesink_set_property):
32076         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
32077         (gst_xvimagesink_set_property):
32078           make sure SYNCHRONOUS is respected after getting the X context
32079
32080 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32081
32082         * gst/matroska/matroska-demux.c:
32083         (gst_matroska_demux_handle_src_event),
32084         (gst_matroska_demux_parse_blockgroup):
32085         * gst/matroska/matroska-ids.h:
32086           add BlockReference tag and ignore it to clear out log.
32087           ignore NAVIGATION events to clear out log.
32088
32089 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32090
32091         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
32092         (gst_matroska_demux_add_stream):
32093         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
32094           add debug categories
32095
32096 2004-07-16  Wim Taymans  <wim@fluendo.com>
32097
32098         * ext/libpng/Makefile.am:
32099         * ext/libpng/gstpng.c: (plugin_init):
32100         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
32101         (gst_pngdec_get_type), (gst_pngdec_base_init),
32102         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
32103         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
32104         * ext/libpng/gstpngdec.h:
32105         Added png decoder.
32106
32107 2004-07-16  Julien MOUTTE  <julien@moutte.net>
32108
32109         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
32110         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
32111         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
32112         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
32113         (gst_ximagesink_buffer_alloc):
32114         * sys/ximage/ximagesink.h:
32115         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32116         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32117         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
32118         (gst_xvimagesink_buffer_alloc):
32119         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
32120         again. Using internal data pointer of the x(v)image to store image's
32121         data to be coherent with the buffer alloc mechanism. Investigated the
32122         image destruction code to be sure that everything gets freed correctly.
32123
32124 2004-07-16  Wim Taymans  <wim@fluendo.com>
32125
32126         * gst-libs/gst/riff/riff-read.c:
32127         (gst_riff_read_strf_vids_with_data),
32128         (gst_riff_read_strf_auds_with_data):
32129         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
32130         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
32131         Make sure we don't create 0 sized subbuffers in riff-read.
32132         Signal the no more pads signal after reading the avi header.
32133
32134 2004-07-16  Wim Taymans  <wim@fluendo.com>
32135
32136         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32137         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32138         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32139         (gst_decode_bin_init), (gst_decode_bin_dispose),
32140         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32141         (no_more_pads), (close_link), (type_found),
32142         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32143         (gst_decode_bin_change_state), (plugin_init):
32144         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32145         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32146         (gst_play_base_bin_dispose), (queue_overrun),
32147         (gen_preroll_element), (remove_prerolls), (unknown_type),
32148         (no_more_pads), (new_stream), (setup_source),
32149         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
32150         (play_base_eos), (gst_play_base_bin_change_state),
32151         (gst_play_base_bin_add_element),
32152         (gst_play_base_bin_remove_element),
32153         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32154         (gst_play_base_bin_unlink_stream),
32155         (gst_play_base_bin_get_streaminfo):
32156         * gst/playback/gstplaybasebin.h:
32157         Better error recovery. Added configurable preroll queue size. Faster
32158         detection of no-more-pads.
32159
32160 2004-07-16  Wim Taymans  <wim@fluendo.com>
32161
32162         * gst-libs/gst/video/video.h:
32163         Added 32 bits RGBA. Not sure if we should use another mime-type
32164         for alpha rgb. Currently the presence of the alpha_mask property
32165         signals an alpha channel.
32166
32167 2004-07-16  Wim Taymans  <wim@fluendo.com>
32168
32169         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32170         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
32171         FPS seems to be 0.0 to MAX everywhere else.
32172
32173 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32174
32175         * gst-libs/gst/riff/riff-media.c:
32176         (gst_riff_create_video_caps_with_data):
32177           mp42/mp43 (no caps) exist too.
32178         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
32179           Set pixel_width/height; we've got them in-caps.
32180         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32181         * gst/wavparse/gstwavparse.c: (plugin_init):
32182           Both are valid primary.
32183         * sys/oss/gstossmixer.c:
32184           Remove i18n hack and enable translations.
32185
32186 2004-07-15  Benjamin Otte  <otte@gnome.org>
32187
32188         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32189         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
32190           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
32191
32192 2004-07-15  Benjamin Otte  <otte@gnome.org>
32193
32194         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
32195         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
32196         (gst_alsa_close_audio):
32197           disable some of the debugging code for now. Writing debugging to a
32198           buffer is broken in current alsalib releases.
32199
32200 2004-07-12  Benjamin Otte  <otte@gnome.org>
32201
32202         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
32203           use bufferpools
32204
32205 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
32206
32207         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32208         (theora_dec_src_query), (theora_dec_event):
32209         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
32210           add debugging categories.  Remove \n's.
32211
32212 2004-07-13  Johan Dahlin  <johan@gnome.org>
32213
32214         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
32215         (gst_play_bin_get_property): Impl.
32216
32217 2004-07-13  Wim Taymans  <wim@fluendo.com>
32218
32219         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
32220         When trying to find the stream length, seek back N pages
32221         instead of just one, where N is the number of streams in
32222         the current chain.
32223
32224 2004-07-13  Wim Taymans  <wim@fluendo.com>
32225
32226         * gst-libs/gst/riff/riff-media.c:
32227         (gst_riff_create_audio_caps_with_data),
32228         (gst_riff_create_audio_caps),
32229         (gst_riff_create_audio_template_caps):
32230         * gst-libs/gst/riff/riff-media.h:
32231         * gst-libs/gst/riff/riff-read.c:
32232         (gst_riff_read_strf_vids_with_data),
32233         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
32234         * gst-libs/gst/riff/riff-read.h:
32235         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
32236         (gst_avi_demux_add_stream):
32237         Set codec_data on caps for avidemuxer.
32238
32239 2004-07-12  David Schleef  <ds@schleef.org>
32240
32241         * configure.ac: Fix test for Objective C
32242
32243 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
32244         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
32245         (gst_gdk_pixbuf_chain):
32246           Add svg and pcx to template caps, and ensure that getcaps returns a
32247           subset of the template caps.
32248           Copy each row manually for output, as gdkpixbuf may pad the
32249           rowstride to a 32-bit word boundary.
32250
32251 2004-07-12  Wim Taymans  <wim@fluendo.com>
32252
32253         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
32254         (gst_riff_create_video_template_caps):
32255         Fix the template caps to include some more media types.
32256
32257 2004-07-12  Wim Taymans  <wim@fluendo.com>
32258
32259         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32260         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32261         (compare_ranks), (print_feature), (gst_decode_bin_init),
32262         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32263         (try_to_link_1), (new_pad), (close_link), (type_found),
32264         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32265         (gst_decode_bin_change_state), (plugin_init):
32266         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32267         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32268         (gst_play_base_bin_dispose), (queue_overrun),
32269         (gen_preroll_element), (remove_prerolls), (no_more_pads),
32270         (new_stream), (setup_source), (gst_play_base_bin_set_property),
32271         (gst_play_base_bin_get_property), (play_base_eos),
32272         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
32273         (gst_play_base_bin_remove_element),
32274         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32275         (gst_play_base_bin_unlink_stream),
32276         (gst_play_base_bin_get_streaminfo):
32277         * gst/playback/gstplaybasebin.h:
32278         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32279         (gst_play_bin_class_init), (gst_play_bin_init),
32280         (gst_play_bin_dispose), (gst_play_bin_set_property),
32281         (gst_play_bin_get_property), (gen_video_element),
32282         (gen_audio_element), (remove_sinks), (setup_sinks),
32283         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
32284         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32285         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32286         (gst_play_bin_query), (plugin_init):
32287         * gst/playback/test4.c: (main):
32288         More fixes on reusing of the element.
32289
32290 2004-07-11  Benjamin Otte  <otte@gnome.org>
32291
32292         * ext/mad/gstmad.c: (normal_seek):
32293           allow seeking for other methods than just SET
32294
32295 2004-07-11  Andy Wingo  <wingo@pobox.com>
32296
32297         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
32298         float, "any" caps -> buffer_frames=[0,MAX].
32299
32300         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
32301         doesn't intersect our caps with the template any more. Do it
32302         ourselves.
32303         (interleave_buffered_loop): Use g_newa instead of malloc/free.
32304
32305 2004-07-09  Wim Taymans  <wim@fluendo.com>
32306
32307         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32308         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32309         (compare_ranks), (print_feature), (gst_decode_bin_init),
32310         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32311         (try_to_link_1), (new_pad), (close_link), (type_found),
32312         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32313         (gst_decode_bin_change_state), (plugin_init):
32314         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32315         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32316         (gst_play_base_bin_dispose), (queue_overrun),
32317         (gen_preroll_element), (remove_prerolls), (no_more_pads),
32318         (new_stream), (setup_source), (gst_play_base_bin_set_property),
32319         (gst_play_base_bin_get_property), (play_base_eos),
32320         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
32321         (gst_play_base_bin_remove_element),
32322         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32323         (gst_play_base_bin_unlink_stream),
32324         (gst_play_base_bin_get_streaminfo):
32325         * gst/playback/gstplaybasebin.h:
32326         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32327         (gst_play_bin_class_init), (gst_play_bin_init),
32328         (gst_play_bin_dispose), (gst_play_bin_set_property),
32329         (gst_play_bin_get_property), (gen_video_element),
32330         (gen_audio_element), (remove_sinks), (setup_sinks),
32331         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
32332         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32333         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32334         (gst_play_bin_query), (plugin_init):
32335         * gst/playback/test4.c: (main):
32336         Work on object reuse and seeking.
32337
32338 2004-07-09  Wim Taymans  <wim@fluendo.com>
32339
32340         * examples/seeking/seek.c: (iterate):
32341         Don't consume all CPU in the idle loop.
32342
32343 2004-07-09  Wim Taymans  <wim@fluendo.com>
32344
32345         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
32346         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
32347         Add pad to element *after* setting the pad functions so that
32348         the scheduler can use the correct ones.
32349
32350 2004-07-09  Wim Taymans  <wim@fluendo.com>
32351
32352         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
32353         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
32354         Sync to keyframe after seek
32355
32356 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32357
32358         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
32359         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
32360         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
32361         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
32362         * ext/libvisual/visual.c: (gst_visual_change_state):
32363         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
32364         * ext/theora/theoradec.c: (theora_dec_change_state):
32365         * ext/theora/theoraenc.c: (theora_enc_change_state):
32366         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
32367         * gst-libs/gst/navigation/navigation.c:
32368         * gst/adder/gstadder.c: (gst_adder_change_state):
32369         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
32370         (gst_audio_convert_get_buffer):
32371         * gst/multipart/multipartdemux.c:
32372         (gst_multipart_demux_change_state):
32373         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
32374         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
32375         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
32376         * gst/videoscale/gstvideoscale.c:
32377         (gst_videoscale_handle_src_event):
32378         * gst/volume/gstvolume.c: (volume_chain_int16):
32379           don't assert in state change, this should be done by the base
32380           GstElement class.
32381           various debugging fixes.
32382
32383 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32384
32385         * configure.ac:
32386         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
32387         (gst_play_dispose), (gst_play_set_location),
32388         (gst_play_set_data_src), (gst_play_set_video_sink),
32389         (gst_play_set_audio_sink), (gst_play_set_visualization),
32390         (gst_play_connect_visualization), (gst_play_get_sink_element),
32391         (gst_play_get_all_by_interface):
32392         * gst-libs/gst/play/play.h:
32393           add new method to get elements implementing an interface.
32394           add various error logging
32395
32396 2004-07-08  Wim Taymans  <wim@fluendo.com>
32397
32398         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
32399         (make_mpeg_pipeline), (make_mpegnt_pipeline),
32400         (make_playerbin_pipeline), (query_durations_elems),
32401         (query_durations_pads), (query_positions_elems),
32402         (query_positions_pads), (update_scale), (iterate), (stop_seek),
32403         (main):
32404         Added playbin seeking example.
32405
32406 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32407
32408         * gst-libs/gst/play/play.c: (gst_play_set_location),
32409         (gst_play_set_data_src), (gst_play_set_video_sink),
32410         (gst_play_set_audio_sink), (gst_play_set_visualization),
32411         (gst_play_connect_visualization), (gst_play_get_framerate):
32412           use a macro to look up elements from hash table
32413
32414 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32415
32416         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
32417         (gst_play_get_length_callback), (gst_play_set_location),
32418         (gst_play_seek_to_time), (gst_play_set_data_src),
32419         (gst_play_set_video_sink), (gst_play_set_audio_sink),
32420         (gst_play_set_visualization), (gst_play_connect_visualization),
32421         (gst_play_get_sink_element):
32422         - add debugging info
32423         - fix looking up sink elements by iterating over complete caps
32424         - put everything except for source and autoplugger in a complete bin
32425
32426 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32427
32428         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
32429         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
32430         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
32431         (gst_alsa_sink_write), (gst_alsa_sink_loop):
32432         * ext/alsa/gstalsasink.h:
32433         - add debugging info
32434         - clean up schizophrenia of data/buffer/event
32435         - fix double event unref error
32436
32437 2004-07-08  Wim Taymans  <wim@fluendo.com>
32438
32439         * gst/playback/Makefile.am:
32440         Add headers to noinst
32441
32442 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32443
32444         * tools/gst-launch-ext-m.m:
32445         * tools/gst-launch-ext.1.in:
32446           convert to the third millenium
32447
32448 2004-07-07  David Schleef  <ds@schleef.org>
32449
32450         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
32451
32452 2004-07-07  Wim Taymans  <wim@fluendo.com>
32453
32454         * gst/playback/Makefile.am:
32455         * gst/playback/README:
32456         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32457         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32458         (compare_ranks), (print_feature), (gst_decode_bin_init),
32459         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32460         (try_to_link_1), (new_pad), (close_link), (type_found),
32461         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32462         (plugin_init):
32463         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32464         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32465         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
32466         (gen_preroll_element), (no_more_pads), (new_stream),
32467         (setup_source), (gst_play_base_bin_set_property),
32468         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
32469         (gst_play_base_bin_add_element),
32470         (gst_play_base_bin_remove_element),
32471         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32472         (gst_play_base_bin_unlink_stream),
32473         (gst_play_base_bin_get_streaminfo):
32474         * gst/playback/gstplaybasebin.h:
32475         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32476         (gst_play_bin_class_init), (gst_play_bin_init),
32477         (gst_play_bin_dispose), (gst_play_bin_set_property),
32478         (gst_play_bin_get_property), (gen_video_element),
32479         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
32480         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
32481         (gst_play_bin_get_formats), (gst_play_bin_convert),
32482         (gst_play_bin_get_query_types), (gst_play_bin_query),
32483         (plugin_init):
32484         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
32485         (gst_stream_info_get_type), (gst_stream_info_class_init),
32486         (gst_stream_info_init), (gst_stream_info_new),
32487         (gst_stream_info_dispose), (gst_stream_info_set_property),
32488         (gst_stream_info_get_property):
32489         * gst/playback/gststreaminfo.h:
32490         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
32491         (main):
32492         * gst/playback/test2.c: (main):
32493         * gst/playback/test3.c: (update_scale), (main):
32494         More playbin fixes. Added README. Do better element filtering.
32495         Added base class to preroll media. Added test apps.
32496
32497 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32498
32499         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
32500         * ext/mpeg2dec/gstmpeg2dec.h:
32501           various debugging improvements.  Reset stream to next picture
32502           instead of sequence header, otherwise seeks cannot work.
32503
32504 2004-07-07  Wim Taymans  <wim@fluendo.com>
32505
32506         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
32507         (gst_video_box_class_init), (gst_video_box_set_property),
32508         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
32509         Use pad_alloc where possible.
32510
32511 2004-07-07  Wim Taymans  <wim@fluendo.com>
32512
32513         * sys/oss/gstosselement.c: (gst_osselement_reset),
32514         (gst_osselement_parse_caps):
32515         * sys/oss/gstosselement.h:
32516         * sys/oss/gstosssrc.c: (gst_osssrc_get):
32517         Fix offset on osssrc.
32518
32519 2004-07-07  Wim Taymans  <wim@fluendo.com>
32520
32521         * ext/theora/theora.c: (plugin_init):
32522         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
32523         (theora_dec_src_query), (theora_dec_chain):
32524         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32525         (theora_enc_sink_link), (theora_buffer_from_packet),
32526         (theora_push_packet), (theora_enc_chain):
32527         Fix theora granulepos calculation.
32528         Fix overflow in duration/position calculation.
32529         Bump rank to PRIMARY for theoradec.
32530         Use granulepos of last packet to calculate position.
32531         Set keyframe flag on buffers when needed.
32532
32533 2004-07-06  David Schleef  <ds@schleef.org>
32534
32535         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
32536         serious?  (Fixed, obviously.)
32537
32538 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32539
32540         * po/LINGUAS:
32541         * po/cs.po:
32542           added Czech translation (Miloslav Trmac)
32543
32544 2004-07-05  Wim Taymans  <wim@fluendo.com>
32545
32546         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32547         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32548         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
32549         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32550         (close_link), (type_found), (gst_decode_bin_set_property),
32551         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
32552         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
32553         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
32554         (gst_decode_bin_query), (plugin_init):
32555         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32556         (gst_play_bin_class_init), (gst_play_bin_init),
32557         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
32558         (get_video_element), (new_pad), (setup_source),
32559         (gst_play_bin_set_property), (gst_play_bin_get_property),
32560         (gst_play_bin_change_state), (gst_play_bin_add_element),
32561         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
32562         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32563         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32564         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
32565         * gst/playback/test.c: (main):
32566         More fixes, cleaned up playbin, make it use decodebin. Added
32567         threaded property to playbin.
32568
32569 2004-07-05  Wim Taymans  <wim@fluendo.com>
32570
32571         * configure.ac:
32572         * gst/playback/Makefile.am:
32573         * gst/playback/decodetest.c: (main):
32574         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32575         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32576         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
32577         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32578         (close_link), (type_found), (gst_decode_bin_set_property),
32579         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
32580         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
32581         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
32582         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
32583         (plugin_init):
32584         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32585         (gst_play_bin_class_init), (gst_play_bin_init),
32586         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
32587         (collect_sink_pads), (find_compatibles), (close_pad_link),
32588         (try_to_link_1), (new_pad), (close_link), (type_found),
32589         (setup_source), (gst_play_bin_set_property),
32590         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
32591         (compare_ranks), (gst_play_bin_collect_factories),
32592         (gst_play_bin_change_state), (gst_play_bin_add_element),
32593         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
32594         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32595         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32596         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
32597         * gst/playback/test.c: (main):
32598         Added some playback helper elements and some test apps, very alpha
32599         still.
32600
32601 2004-07-04  Benjamin Otte  <otte@gnome.org>
32602
32603         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
32604           only restart audio when we indeed have an xrun to fix repeated
32605           xruns. Fix suggested by Giuliano Pochini.
32606
32607 2004-07-03  David Schleef  <ds@schleef.org>
32608
32609         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
32610         call to gst_debug_log() if debugging is disabled (bug #145118)
32611
32612 2004-07-03  Benjamin Otte  <otte@gnome.org>
32613
32614         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
32615           use our own functions for restarting the alsa device.
32616         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
32617           I should apply patches myself - use MIN for the third argument, not
32618           the second, this fixes seeking
32619
32620 2004-07-02  David Schleef  <ds@schleef.org>
32621
32622         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
32623         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
32624         do with the logic.
32625
32626 2004-07-02  David Schleef  <ds@schleef.org>
32627
32628         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
32629         output buffers.  Fix logic mistake.  (bug #144866)
32630
32631 2004-07-02  David Schleef  <ds@schleef.org>
32632
32633         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
32634         on X.  (bug #144753)
32635
32636 2004-07-02  David Schleef  <ds@schleef.org>
32637
32638         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
32639         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
32640         (bug #144624)
32641         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
32642         (gst_osselement_rate_probe_check): Add another workaround for
32643         buggy drivers (bug #145336)
32644
32645 2004-07-02  David Schleef  <ds@schleef.org>
32646
32647         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
32648         Most systems don't have MSG_NOSIGNAL.
32649
32650 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32651
32652         * Makefile.am:
32653         * gst-libs/gst/colorbalance/Makefile.am:
32654         * gst-libs/gst/mixer/Makefile.am:
32655         * gst-libs/gst/play/Makefile.am:
32656         * gst-libs/gst/tuner/Makefile.am:
32657           (hopefully) fix both install and dist and make error message useful.
32658           needs testing across automakes.
32659
32660 2004-07-02  Benjamin Otte  <otte@gnome.org>
32661
32662         * ext/ogg/gstogg.c: (plugin_init):
32663           we require bytestream now
32664         * ext/ogg/gstoggdemux.c:
32665           huge diff to implement chain setup in a fast and generic way. This
32666           improves tag reading and startup of huge files (read: Theora videos)
32667           quite a bit. It probably contains bugs, too, so please test.
32668           Seeking is not improved to the fast method.
32669
32670 2004-06-29  Wim Taymans  <wim@fluendo.com>
32671
32672         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
32673         * ext/ogg/gstoggmux.c:
32674         Fix memleak in oggdemux when running unconnected pads.
32675         doc update in mux, start working on keyframe mode.
32676
32677 2004-06-29  Benjamin Otte  <otte@gnome.org>
32678
32679         * sys/oss/gstosssink.c:
32680         * sys/oss/gstosssrc.c:
32681           advertise correct template caps - we indeed do non-native endianness
32682           and 8bit audio has no endianness
32683         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
32684         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
32685           avoid (wrong) duplications in getcaps function and return
32686           template caps
32687
32688 2004-06-29  Wim Taymans  <wim@fluendo.com>
32689
32690         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
32691         (gst_multifdsink_class_init), (gst_multifdsink_add),
32692         (gst_multifdsink_remove), (gst_multifdsink_clear),
32693         (gst_multifdsink_client_remove),
32694         (gst_multifdsink_handle_client_read),
32695         (gst_multifdsink_client_queue_data),
32696         (gst_multifdsink_client_queue_caps),
32697         (gst_multifdsink_client_queue_buffer),
32698         (gst_multifdsink_handle_client_write),
32699         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
32700         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
32701         (gst_multifdsink_init_send), (gst_multifdsink_close):
32702         Fix wrong GList iteration that could crash the server when
32703         more then 2 clients disconnect at the same time. Read all the
32704         pending commands in one batch to recover from command storms under
32705         very heavy load.
32706
32707 2004-06-28  Wim Taymans  <wim@fluendo.com>
32708
32709         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
32710         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
32711         (gst_videomixer_pad_set_property),
32712         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
32713         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
32714         (gst_videomixer_class_init), (gst_videomixer_init),
32715         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
32716         (pad_zorder_compare), (gst_videomixer_sort_pads),
32717         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
32718         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
32719         (gst_videomixer_update_queues), (gst_videomixer_loop),
32720         (plugin_init):
32721         Avoid divide by zero, choose masterpad as the pad with the highest
32722         framerate.
32723
32724 2004-06-27  Julien Moutte  <julien@moutte.net>
32725
32726         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
32727         (gst_ximagesink_xwindow_new):
32728         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
32729         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
32730         function directly. We might want to call it from somewhere else one day.
32731
32732 2004-06-27  Julien Moutte  <julien@moutte.net>
32733
32734         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
32735         (gst_ximagesink_xwindow_new):
32736         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
32737         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
32738         window decorations.
32739
32740 2004-06-27  Wim Taymans  <wim@fluendo.com>
32741
32742         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
32743         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
32744         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
32745         (gst_dvdec_set_property), (gst_dvdec_get_property):
32746         * ext/dv/gstdvdec.h:
32747         Implement drop_factor property to lower the framerate with
32748         a factor.
32749
32750 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32751
32752         * gst-libs/gst/colorbalance/Makefile.am:
32753         * gst-libs/gst/mixer/Makefile.am:
32754         * gst-libs/gst/play/Makefile.am:
32755         * gst-libs/gst/tuner/Makefile.am:
32756           unbreak Company's fix that didn't install the -enum.h files
32757
32758 2004-06-27  Wim Taymans  <wim@fluendo.com>
32759
32760         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
32761         (gst_dvdec_change_state):
32762         * ext/dv/gstdvdec.h:
32763         Fix timestamp, duration and offset of the buffers.
32764
32765 2004-06-27  Wim Taymans  <wim@fluendo.com>
32766
32767         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
32768         (gst_multifdsink_class_init), (gst_multifdsink_add),
32769         (gst_multifdsink_remove), (gst_multifdsink_clear),
32770         (gst_multifdsink_client_remove),
32771         (gst_multifdsink_handle_client_read),
32772         (gst_multifdsink_client_queue_data),
32773         (gst_multifdsink_client_queue_caps),
32774         (gst_multifdsink_client_queue_buffer),
32775         (gst_multifdsink_handle_client_write),
32776         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
32777         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
32778         (gst_multifdsink_init_send), (gst_multifdsink_close):
32779         * gst/tcp/gstmultifdsink.h:
32780         * gst/tcp/gsttcpserversink.c:
32781         (gst_tcpserversink_handle_server_read),
32782         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
32783         More multifdsink fixes, more recovery policy fixes.
32784         Removed stupid g_print
32785
32786 2004-06-26  Wim Taymans  <wim@fluendo.com>
32787
32788         * gst/tcp/Makefile.am:
32789         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
32790         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
32791         (gst_multifdsink_class_init), (gst_multifdsink_init),
32792         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
32793         (gst_multifdsink_handle_client_read),
32794         (gst_multifdsink_client_queue_data),
32795         (gst_multifdsink_client_queue_caps),
32796         (gst_multifdsink_client_queue_buffer),
32797         (gst_multifdsink_handle_client_write),
32798         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
32799         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
32800         (gst_multifdsink_chain), (gst_multifdsink_set_property),
32801         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
32802         (gst_multifdsink_close), (gst_multifdsink_change_state):
32803         * gst/tcp/gstmultifdsink.h:
32804         * gst/tcp/gsttcpplugin.c: (plugin_init):
32805         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
32806         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
32807         (gst_tcpserversink_handle_server_read),
32808         (gst_tcpserversink_handle_select),
32809         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
32810         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
32811         * gst/tcp/gsttcpserversink.h:
32812         Added multifdsink, made tcpserversink a subclass of fdsink, removed
32813         one of the locks, added recovery policy to multifdsink.
32814
32815 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32816
32817         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
32818           fix decision for when getting frames with same timestamp
32819         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
32820         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
32821         (gst_v4lsrc_get_property):
32822         * sys/v4l/gstv4lsrc.h:
32823           add latency offset property
32824
32825 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32826
32827         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
32828         (plugin_init):
32829           fix debugging. add category.
32830
32831 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32832
32833         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
32834           fix wrong offsets
32835
32836 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32837
32838         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
32839         (gst_alsa_src_get_time), (gst_alsa_src_loop),
32840         (gst_alsa_src_change_state):
32841           return a time that is in sync with the element's processing
32842
32843 2004-06-25  Wim Taymans  <wim@fluendo.com>
32844
32845         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
32846         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
32847         (gst_tcpserversink_client_remove),
32848         (gst_tcpserversink_handle_client_read),
32849         (gst_tcpserversink_client_queue_data),
32850         (gst_tcpserversink_client_queue_caps),
32851         (gst_tcpserversink_client_queue_buffer),
32852         (gst_tcpserversink_handle_client_write),
32853         (gst_tcpserversink_queue_buffer),
32854         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
32855         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
32856         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
32857         (gst_tcpserversink_close):
32858         * gst/tcp/gsttcpserversink.h:
32859         Serversink rewrite. Really do non blocking writes to clients and
32860         maintain an internal queue to handle slower clients while not
32861         disturbing fast clients.
32862
32863 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
32864
32865         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
32866           better debug, don't override OFFSET and OFFSET_END
32867
32868 2004-06-25  Iain <iain@prettypeople.org>
32869
32870         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
32871         name=source for the wavparse pipeline.
32872
32873 2004-06-24  Johan Dahlin  <johan@gnome.org>
32874
32875         * ext/theora/theoraenc.c (theora_enc_chain): Call
32876         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
32877         streamheader caps are set correctly.
32878
32879 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
32880
32881         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
32882         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
32883           respect minimum bitrate; same could be done for max bitrate
32884
32885 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
32886
32887         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
32888         (gst_vorbisenc_setup):
32889           fix sample rate range
32890
32891 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
32892
32893         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
32894         (gst_oggvorbisenc_setup):
32895         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
32896         (gst_vorbisenc_setup):
32897           resolve ambiguities in code and description
32898
32899 2004-06-24  Wim Taymans  <wim@fluendo.com>
32900
32901         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
32902         * ext/alsa/gstalsa.h:
32903         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
32904         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
32905         Use alsa trigger_tstamp to get the timestamp of the first
32906         sample in the buffer for more precise sync. Some cleanups.
32907
32908 2004-06-24  Wim Taymans  <wim@fluendo.com>
32909
32910         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
32911         (gst_audiorate_init), (gst_audiorate_chain),
32912         (gst_audiorate_set_property), (gst_audiorate_get_property):
32913         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
32914         (gst_videorate_chain):
32915         Added some logging, fixed an overflow bug in videorate.
32916
32917 2004-06-24  Benjamin Otte  <otte@gnome.org>
32918
32919         * ext/kio/Makefile.am:
32920           fix for builddir != srcdir and distcheck
32921
32922 2004-06-24  Benjamin Otte  <otte@gnome.org>
32923
32924         * gst-libs/gst/colorbalance/Makefile.am:
32925         * gst-libs/gst/mixer/Makefile.am:
32926         * gst-libs/gst/play/Makefile.am:
32927         * gst-libs/gst/tuner/Makefile.am:
32928         * gst/tcp/Makefile.am:
32929         * sys/dxr3/Makefile.am:
32930           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
32931           tarball.
32932           Also add all *.list files that were missing.
32933         * Makefile.am:
32934           add a distcheck hook to ensure the above doesn't happen again.
32935
32936 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
32937
32938         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
32939
32940 2004-06-23  Colin Walters  <walters@redhat.com>
32941
32942         * m4/Makefile.am: Distribute gst-fionread.m4.
32943
32944 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
32945
32946         * configure.ac: back to dev
32947
32948 2004-06-23  Wim Taymans  <wim@fluendo.com>
32949
32950         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
32951         (gst_alsa_xrun_recovery):
32952         * ext/alsa/gstalsa.h:
32953         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
32954         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
32955         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
32956         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
32957         (gst_alsa_src_loop):
32958         Add clock to alsasrc. Take new capture timestamp when
32959         restarting after an overrun. Split up some functions between
32960         alsasrc and alsasink.
32961
32962 === release 0.8.2 ===
32963
32964 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
32965
32966         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
32967         (gst_alsa_change_state), (gst_alsa_update_avail),
32968         (gst_alsa_xrun_recovery):
32969         * ext/alsa/gstalsa.h:
32970         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
32971           merge back changes from release
32972
32973 2004-06-23  Wim Taymans  <wim@fluendo.com>
32974
32975         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
32976         (gst_audiorate_init), (gst_audiorate_chain),
32977         (gst_audiorate_set_property), (gst_audiorate_get_property):
32978         Implement sample dropping and notify
32979
32980 2004-06-22  Wim Taymans  <wim@fluendo.com>
32981
32982         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32983         (theora_enc_sink_link), (theora_buffer_from_packet),
32984         (theora_push_packet), (theora_enc_chain):
32985         Some cleanups, make sure the timestamps are correct.
32986
32987 2004-06-22  Wim Taymans  <wim@fluendo.com>
32988
32989         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
32990         (gst_alsa_change_state), (gst_alsa_update_avail),
32991         (gst_alsa_xrun_recovery):
32992         * ext/alsa/gstalsa.h:
32993         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
32994         Cleanups, take queued samples into account when reporting
32995         the time.
32996
32997 2004-06-22  Wim Taymans  <wim@fluendo.com>
32998
32999         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33000         (gst_videorate_init):
33001         Initialize the property as well.
33002
33003 2004-06-22  Wim Taymans  <wim@fluendo.com>
33004
33005         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33006         (gst_videorate_init), (gst_videorate_chain),
33007         (gst_videorate_set_property), (gst_videorate_get_property):
33008         Add property to make videorate silent.
33009         Add property to prefer new frames over old ones.
33010
33011 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33012
33013         * sys/osxvideo/Makefile.am:
33014         Workaround so that the osxvideo .so file gets linked with the
33015         Cocoa, OpenGL and QuickTime frameworks
33016
33017 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33018
33019         * sys/osxaudio/Makefile.am:
33020         Workaround so that the osxaudio .so file gets linked with the
33021         CoreAudio framework
33022
33023 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33024
33025         * configure.ac:
33026         Whoops, my fault...fixed build issues
33027
33028 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33029
33030         * configure.ac:
33031         Add objective-c support if running in Darwin/Mac OS X
33032         * sys/Makefile.am:
33033         * sys/osxvideo:
33034         * sys/osxvideo/Makefile.am:
33035         * sys/osxvideo/osxvideosink.h:
33036         * sys/osxvideo/osxvideosink.m:
33037         * sys/osxvideo/cocoawindow.h:
33038         * sys/osxvideo/cocoawindow.m:
33039         Add osxvideosink, a cocoa-based osx video sink
33040
33041
33042 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
33043         * ext/dvdnav/gst-dvd:
33044         Grab the gconf key from the right spot
33045         * gst/debug/gstnavseek.c: (gst_navseek_init),
33046         (gst_navseek_segseek), (gst_navseek_handle_src_event),
33047         (gst_navseek_chain):
33048         * gst/debug/gstnavseek.h:
33049           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
33050           and loop parameters of a segment seek.
33051         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
33052         (gst_videotestsrc_get_event_masks),
33053         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
33054         * gst/videotestsrc/gstvideotestsrc.h:
33055           Add seeking support to videotestsrc
33056           Initialise the timestamp_offset variable.
33057
33058 2004-06-18  Wim Taymans  <wim@fluendo.com>
33059
33060         * ext/sidplay/gstsiddec.cc:
33061         Fix negotiation and set correct end offset.
33062
33063 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33064
33065         * configure.ac: branch and prerelease
33066
33067 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33068
33069         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
33070         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
33071         (gst_tcpclientsrc_init_receive):
33072         * gst/tcp/gsttcpclientsrc.h:
33073           read caps when connecting to server for GDP so we set them correctly
33074
33075 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33076
33077         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33078           notify drops and duplicates
33079         * gst/videoscale/videoscale.c: (videoscale_get_structure):
33080           no good reason to limit ourselves to 100x100
33081
33082 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33083
33084         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33085         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
33086         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33087         (gst_v4lsrc_get_property):
33088         * sys/v4l/gstv4lsrc.h:
33089         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33090         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
33091         (gst_v4l_set_audio):
33092         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
33093         (gst_v4lsrc_try_capture):
33094         * sys/v4l/v4lsrc_calls.h:
33095           change try_palette to more general try_capture
33096           add autoprobe option so we can turn off autoprobing
33097           various fixes
33098
33099 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33100
33101         * configure.ac:
33102           add videorate
33103         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
33104         (gst_ximagesink_class_init):
33105         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
33106         (gst_xvimagesink_class_init):
33107           run them as finalize, not dispose, since dispose can be invoked
33108           multiple times
33109
33110 2004-06-17  Wim Taymans  <wim@fluendo.com>
33111
33112         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
33113         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
33114         * ext/alsa/gstalsa.h:
33115         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
33116         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
33117         (gst_alsa_src_change_state):
33118         * ext/alsa/gstalsasrc.h:
33119         Make the xrun code timestamp and offset the buffers correctly.
33120         moved the clock to the base class, use alsa methods to get time.
33121         Do correct timestamping on outgoing buffers.
33122
33123 2004-06-17  Wim Taymans  <wim@fluendo.com>
33124
33125         * gst/audiorate/Makefile.am:
33126         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
33127         (gst_audiorate_base_init), (gst_audiorate_class_init),
33128         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
33129         (gst_audiorate_set_property), (gst_audiorate_get_property),
33130         (gst_audiorate_change_state), (plugin_init):
33131         Added an audiorate converter that fills in gaps.
33132
33133 2004-06-17  Johan Dahlin  <johan@gnome.org>
33134
33135         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
33136
33137 2004-06-16  Wim Taymans  <wim@fluendo.com>
33138
33139         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
33140         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33141         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33142         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33143         (gst_v4lsrc_get_property):
33144         * sys/v4l/gstv4lsrc.h:
33145         Added a copy mode to v4lsrc where it will output a copied version
33146         of its internal hardware buffer.
33147         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
33148         can't | them.
33149
33150 2004-06-16  Wim Taymans  <wim@fluendo.com>
33151
33152         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33153         Timestamp fixes.
33154
33155 2004-06-16  Wim Taymans  <wim@fluendo.com>
33156
33157         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33158         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33159         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33160         (gst_v4lsrc_get_property):
33161         * sys/v4l/gstv4lsrc.h:
33162         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
33163         Added a sync mode enum property to control v4lsrc timestamp method
33164         Removed the use-fixed-fps property and moved functionality in
33165         the enum.
33166         Don't error on an error value from v4l-conf, it might not always
33167         be a real error.
33168
33169 2004-06-16  Wim Taymans  <wim@fluendo.com>
33170
33171         * gst/videorate/Makefile.am:
33172         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
33173         (gst_videorate_base_init), (gst_videorate_class_init),
33174         (gst_videorate_getcaps), (gst_videorate_link),
33175         (gst_videorate_init), (gst_videorate_chain),
33176         (gst_videorate_set_property), (gst_videorate_get_property),
33177         (gst_videorate_change_state), (plugin_init):
33178         Added a video timestamp corrector.
33179
33180 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33181
33182         fixed a potential leak with previous commit
33183
33184         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
33185
33186 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33187
33188         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
33189         Added missing refcount, fixes bug #144425
33190         Cheers Tim for finding the bug
33191
33192 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33193
33194         * sys/v4l/gstv4l.c: (plugin_init):
33195         * sys/v4l/gstv4lcolorbalance.c:
33196         * sys/v4l/gstv4lcolorbalance.h:
33197         * sys/v4l/gstv4lelement.c:
33198         * sys/v4l/gstv4lelement.h:
33199         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
33200         * sys/v4l/gstv4lmjpegsink.h:
33201         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
33202         * sys/v4l/gstv4lmjpegsrc.h:
33203         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
33204         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
33205         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
33206         * sys/v4l/gstv4lsrc.h:
33207         * sys/v4l/gstv4ltuner.c:
33208         * sys/v4l/gstv4ltuner.h:
33209         * sys/v4l/gstv4lxoverlay.c:
33210         * sys/v4l/gstv4lxoverlay.h:
33211         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
33212         (gst_v4l_set_window), (gst_v4l_enable_overlay):
33213         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33214         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
33215         (gst_v4l_set_audio):
33216         * sys/v4l/v4l_calls.h:
33217         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
33218         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
33219         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
33220         (gst_v4lmjpegsink_playback_init),
33221         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
33222         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
33223         (gst_v4lmjpegsink_playback_stop),
33224         (gst_v4lmjpegsink_playback_deinit):
33225         * sys/v4l/v4lmjpegsink_calls.h:
33226         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
33227         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
33228         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
33229         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
33230         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
33231         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
33232         * sys/v4l/v4lmjpegsrc_calls.h:
33233         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
33234         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
33235         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
33236         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
33237         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
33238         (gst_v4lsrc_try_palette):
33239         * sys/v4l/v4lsrc_calls.h:
33240           bunch of paranoia cleanups
33241
33242 2004-06-14  David Schleef  <ds@schleef.org>
33243
33244         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
33245         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
33246         Send discont events and change timestamps appropriately when
33247         we get a seek event.  (bug #144240)
33248         * ext/cdparanoia/gstcdparanoia.h:
33249
33250 2004-06-14  Benjamin Otte  <otte@gnome.org>
33251
33252         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
33253           snd_pcm_hw_params_set_rate  since the latter fails for no good
33254           reason on some setups.
33255
33256 2004-06-14  David Schleef  <ds@schleef.org>
33257
33258         * gst/volume/demo.c: (value_changed_callback): exp10() is not
33259         standard.  Thank you for playing.
33260
33261 2004-06-14  Wim Taymans  <wim@fluendo.com>
33262
33263         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
33264         Patch 1.3 broke the ordering of the colorspace info and
33265         made the plugin basically work by coincidence, reordered
33266         the info.
33267
33268 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33269
33270         * ext/lame/gstlame.c:
33271         * ext/mad/gstmad.c:
33272           sync caps.  Make sure mad can only output a list of rates, not
33273           a full range.  In the future, have three caps lists for each of the
33274           mpeg versions.  Change mpegversion to a double as well.
33275
33276 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33277
33278         * gst/volume/.cvsignore:
33279         * gst/volume/Makefile.am:
33280         * gst/volume/demo.c: (value_changed_callback), (idler),
33281         (setup_gui), (main):
33282           added small demo app
33283
33284 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
33285         * ext/esd/esdsink.c: (gst_esdsink_change_state):
33286         * ext/esd/esdsink.h:
33287         Close the esd connection on pause, because esd will just wait -
33288         blocking all other esd clients indefinitely.
33289
33290 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
33291
33292         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
33293           previous commit with GST_DEBUG
33294
33295 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
33296
33297         * configure.ac:
33298           add a header check for a dvdread header in dvdnav.  Fixes #133002
33299
33300 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33301
33302         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
33303         * gst/tcp/gsttcpclientsink.h:
33304         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
33305         * gst/tcp/gsttcpclientsrc.h:
33306         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
33307         (gst_tcpserversink_handle_server_read),
33308         (gst_tcpserversink_init_send):
33309         * gst/tcp/gsttcpserversink.h:
33310         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
33311         * gst/tcp/gsttcpserversrc.h:
33312         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
33313         version of IP)
33314
33315 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33316
33317         * configure.ac:
33318         Added ogg library so that OSX detects libtheora properly
33319
33320 2004-06-11  Wim Taymans  <wim@fluendo.com>
33321
33322         * ext/theora/theoradec.c: (theora_dec_chain),
33323         (theora_dec_change_state):
33324         Don't try to decode frames before we received a keyframe.
33325
33326 2004-06-11  Wim Taymans  <wim@fluendo.com>
33327
33328         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
33329         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
33330         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33331         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
33332         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
33333         Added property to set the maximum delay of a page.
33334
33335 2004-06-10  Wim Taymans  <wim@fluendo.com>
33336
33337         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
33338         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
33339         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33340         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
33341         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
33342         Added max-delay property to control the maximum amount
33343         of data to put in one page.
33344
33345 2004-06-10  Wim Taymans  <wim@fluendo.com>
33346
33347         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33348         (gst_theora_enc_init), (theora_enc_sink_link),
33349         (theora_buffer_from_packet), (theora_enc_set_property),
33350         (theora_enc_get_property):
33351         Set duration on encoded buffer, added some more properties
33352
33353 2004-06-10  Wim Taymans  <wim@fluendo.com>
33354
33355         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
33356         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33357         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
33358         * ext/theora/theoraenc.c: (theora_enc_chain):
33359         Fix refcounting bugs
33360
33361 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33362
33363         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
33364         (gst_asf_demux_loop), (gst_asf_demux_process_file),
33365         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
33366         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
33367         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
33368         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
33369         (gst_asf_demux_change_state):
33370         * gst/asfdemux/gstasfdemux.h:
33371           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
33372           feels like. I think we should set a new requirement for demuxers
33373           from now on to implement sane loop functions, data loops, query
33374           and seek functions before first commit into CVS. And this commit
33375           fixes all of the above.
33376
33377 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
33378
33379         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
33380           vorbis comments are properly encoded in UTF-8 before adding them
33381           to a GstTagList
33382
33383 2004-06-09  Benjamin Otte  <otte@gnome.org>
33384
33385         * ext/alsa/gstalsa.c: (add_channels):
33386           handle min <= max correctly
33387         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
33388         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
33389           add fixation functions so we fixate correctly. No preferring of alaw
33390           anymore because it's the first structure.
33391         * ext/alsa/gstalsa.h:
33392         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
33393         (gst_alsa_hw_params_dump):
33394           add functions to ease debugging in alsalib
33395         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
33396         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
33397         (gst_alsa_start_audio):
33398           only specify hw params if we really setup a format (fixes #134007 -
33399           or at least works around it)
33400
33401 2004-06-09  Wim Taymans  <wim@fluendo.com>
33402
33403         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
33404         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
33405         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
33406         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
33407         (gst_ogg_mux_loop):
33408         Use stream caps to setup the initial pages in the ogg stream.
33409         Correctly set the streamheader caps on the srcpad.
33410
33411 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
33412
33413         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
33414         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
33415         (gst_v4lsrc_getcaps):
33416         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33417         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
33418           add querying of fps lists for webcams.  Negotiating to a framerate
33419           now works.
33420
33421 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33422
33423         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
33424         (theora_push_buffer), (theora_push_packet),
33425         (theora_set_header_on_caps), (theora_enc_chain):
33426           mark buffers and put on streamheader, raw theora streaming
33427           now works too, whee
33428
33429 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33430
33431         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
33432         (gst_tcp_gdp_read_caps):
33433           do a looping read for caps and GDP headers too
33434
33435 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33436
33437         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33438         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
33439           return EOS instead of NULL in _get
33440
33441 2004-06-08  Wim Taymans  <wim@fluendo.com>
33442
33443         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
33444         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
33445         (gst_tcp_gdp_write_caps):
33446         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33447         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
33448         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
33449         Memory leak fixes
33450
33451 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33452
33453         * ext/vorbis/Makefile.am:
33454         * ext/vorbis/vorbis.c: (plugin_init):
33455         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
33456         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
33457         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
33458         (vorbis_parse_change_state):
33459         * ext/vorbis/vorbisparse.h:
33460           adding a vorbisparse element that marks the buffers, streaming
33461           raw vorbis using GDP now works, whee
33462
33463 2004-06-08  Wim Taymans  <wim@fluendo.com>
33464
33465         * ext/jpeg/Makefile.am:
33466         * ext/jpeg/README:
33467         * ext/jpeg/gstjpeg.c: (plugin_init):
33468         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
33469         (gst_smokedec_base_init), (gst_smokedec_class_init),
33470         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
33471         * ext/jpeg/gstsmokedec.h:
33472         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
33473         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
33474         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
33475         (gst_smokeenc_resync), (gst_smokeenc_chain),
33476         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
33477         * ext/jpeg/gstsmokeenc.h:
33478         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
33479         (smokecodec_flush_destination), (smokecodec_term_destination),
33480         (smokecodec_init_source), (smokecodec_fill_input_buffer),
33481         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
33482         (smokecodec_term_source), (smokecodec_encode_new),
33483         (smokecodec_decode_new), (smokecodec_info_free),
33484         (smokecodec_set_quality), (smokecodec_get_quality),
33485         (smokecodec_set_threshold), (smokecodec_get_threshold),
33486         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
33487         (find_best_size), (abs_diff), (put), (smokecodec_encode),
33488         (smokecodec_parse_header), (smokecodec_decode):
33489         * ext/jpeg/smokecodec.h:
33490         Added a new simple jpeg based codec
33491
33492 2004-06-08  Wim Taymans  <wim@fluendo.com>
33493
33494         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33495         (gst_multipart_mux_loop):
33496         Fix memory leak
33497
33498 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33499
33500         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33501         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
33502         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
33503         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
33504         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33505         * gst/tcp/gsttcpserversink.h:
33506           take streamheader into account
33507
33508 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33509
33510         * gst/level/Makefile.am:
33511         * gst/level/gstlevel.c: (gst_level_class_init):
33512           clean up marshal generation
33513
33514 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33515
33516         * gst/tcp/Makefile.am:
33517         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
33518         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
33519         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
33520         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
33521         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
33522         (gst_tcpclientsrc_get_property):
33523         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
33524         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
33525         (gst_tcpserversink_handle_client_read),
33526         (gst_tcpserversink_handle_client_write),
33527         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
33528         * gst/tcp/gsttcpserversink.h:
33529           add signals client-added and client-removed
33530         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
33531         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
33532         (gst_tcpserversrc_get_property):
33533         uniformized, change default protocol to NONE
33534         * gst/tcp/gsttcp-marshal.list: added
33535 2004-06-07  Benjamin Otte  <otte@gnome.org>
33536
33537         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33538           handle discont events if they happen before caps nego
33539
33540 2004-06-07  Wim Taymans  <wim@fluendo.com>
33541
33542         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
33543         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
33544         (gst_multipart_demux_plugin_init):
33545         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33546         (gst_multipart_mux_init), (gst_multipart_mux_loop),
33547         (gst_multipart_mux_change_state):
33548         Small updates, fix a memleak
33549
33550 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
33551
33552         * configure.ac: OSS portability
33553         * ext/arts/gst_arts.c: idem
33554         * sys/oss/gstosselement.c: idem
33555         * sys/oss/gstossmixer.c: idem
33556         * sys/oss/gstosssink.c: idem
33557         * sys/oss/gstosssrc.c: idem
33558         * sys/oss/oss_probe.c: idem
33559           - check for soundcard.h in different places for some BSD
33560
33561 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
33562
33563         * AUTHORS:
33564         Add me to the authors file
33565         * configure.ac:
33566         Increase the libdv requirement to >= version 0.100
33567         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
33568         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
33569         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
33570         * ext/dv/gstdvdec.h:
33571         Add support for the new_media flag when sending DISCONT events
33572         Make the querying work when video pad is not linked
33573
33574 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
33575
33576         reviewed by Benjamin Otte  <otte@gnome.org>
33577
33578         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
33579           create a NULL-initialized array of pads, so we don't think they
33580           exist already. (fixes #143130)
33581
33582 2004-06-07  Benjamin Otte  <otte@gnome.org>
33583
33584         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
33585         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
33586         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
33587           don't use // coments
33588
33589 2004-06-07  Benjamin Otte  <otte@gnome.org>
33590
33591         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
33592           cast to GstClockTime to get higher granularity
33593         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33594           use gst_element_set_time_delay to get the exact time
33595         * ext/mad/gstmad.c: (gst_mad_chain):
33596           use the negotiated rate instead of the current frame's rate which
33597           might be wrong because of bit errors. This avoids emitting totally
33598           bogus timestamps and screwing sync.
33599         (fixes #143454)
33600
33601 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
33602
33603         reviewed by Benjamin Otte  <otte@gnome.org>
33604
33605         * gst/adder/gstadder.c: (gst_adder_loop):
33606           properly error out when no negotiation has happened yet. (fixes
33607           #143032)
33608
33609 2004-06-06  Benjamin Otte  <otte@gnome.org>
33610
33611         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
33612           forward correctly transformed offset in discont events. Based on
33613           patch by Arwed v. Merkatz. (fixes #142851)
33614
33615 2004-06-06  David Schleef  <ds@schleef.org>
33616
33617         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
33618         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
33619         problems on several systems.
33620
33621 2004-06-06  Benjamin Otte  <otte@gnome.org>
33622
33623         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
33624           use explicit caps on the srcpad
33625         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
33626           properly error out if caps couldn't be set (fixes #142764)
33627
33628 2004-06-06  Benjamin Otte  <otte@gnome.org>
33629
33630         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
33631         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
33632         (gst_alsa_start_audio):
33633           - don't call set_periods_integer anymore, it breaks the
33634           configuration randomly
33635           - call snd_pcm_hw_params_set_access directly instead of using masks
33636           - don't fail if the sw_params can't be set, just use the default
33637           params and hope it works. Alsalib has weird issues when you touch
33638           sw_params and does no proper error reporting about what failed.
33639         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33640         (gst_alsa_close_audio):
33641           make our alsa debugging go via gst debugging and not conditionally
33642           defined
33643         * ext/alsa/gstalsa.h:
33644           add ALSA_DEBUG_FLUSH macro
33645         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
33646         (plugin_init):
33647           wrap alsa errors to be printed via the gst debugging system and not
33648           spammed to stderr
33649
33650 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33651
33652         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
33653         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
33654         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
33655         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
33656         (qtdemux_parse_trak):
33657         * gst/qtdemux/qtdemux.h:
33658           Bitch. Also known as seeking, querying & co.
33659         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
33660         (gst_osssink_change_state):
33661         * sys/oss/gstosssink.h:
33662           Resyncing is for weenies, this hack is no longer needed and was
33663           broken anyway (since it - unintendedly - always leaves resync to
33664           TRUE).
33665
33666 2004-06-05  Andrew Turner <zxombie@hotpop.com>
33667
33668         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
33669         * gst/tcp/gsttcpclientsrc.h: idem
33670           - define MSG_NOSIGNAL if not done
33671           - include unistd.h for off_t
33672           (fixes #143749)
33673
33674 2004-06-05  Benjamin Otte  <otte@gnome.org>
33675
33676         * configure.ac:
33677         * ext/kio/Makefile.am:
33678           check for qt's moc preprocessor explicitly and use it
33679
33680 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33681
33682         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
33683           don't get a signal for EPIPE on socket writes
33684           (somebody check if this works on other platforms)
33685
33686 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33687
33688         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
33689         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
33690           check error condition on available samples correctly
33691
33692 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33693
33694         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
33695           avoid a segfault
33696         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
33697         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
33698         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
33699         (gst_tcpserversrc_gdp_read_header):
33700          use ssize_t over size_t since the former is signed and thus the
33701          check for error codes can work
33702
33703 2004-06-02  Wim Taymans  <wim@fluendo.com>
33704
33705         reviewed by: Johan
33706
33707         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33708         (gst_multipart_mux_loop):
33709         Oops
33710
33711 2004-06-02  Wim Taymans  <wim@fluendo.com>
33712
33713         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33714         (gst_multipart_mux_init), (gst_multipart_mux_loop),
33715         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
33716         (gst_multipart_mux_change_state):
33717         Added configurable boundary specifier, added the value as a
33718         caps field as well.
33719
33720 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33721
33722         * gst/tcp/gsttcp.c:
33723         * gst/tcp/gsttcpclientsrc.c:
33724         * gst/tcp/gsttcpclientsrc.h:
33725         * gst/tcp/gsttcpserversrc.c:
33726           - portability fix, to compile on OSX
33727             (fixes #143146)
33728
33729         * sys/osxaudio/gstosxaudioelement.c:
33730         * sys/osxaudio/gstosxaudiosink.c:
33731         * sys/osxaudio/gstosxaudiosrc.c:
33732           - compilation warnings on OSX
33733             (fixes #143153)
33734
33735 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
33736
33737         * ext/vorbis/vorbisdec.c : sign warning fixes
33738
33739         * gst-libs/gst/mixer/mixertrack.c :
33740           do no use defines which are glib 2.4 specific
33741
33742 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
33743
33744         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
33745           buffer since libflac doesn't expect it (reports a sync error when
33746           it encounters that)
33747
33748
33749 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
33750
33751         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
33752         * gst-libs/gst/mixer/mixertrack.c:
33753         (gst_mixer_track_get_property), (get_mixer_track_init),
33754         (get_mixer_track_get_property): Added property accessors
33755         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
33756         * gst-libs/gst/mixer/mixeroptions.c:
33757         (gst_mixer_options_get_values): Added
33758         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
33759         * gst-libs/gst/mixer/mixer.c: Fixed comment
33760
33761
33762 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33763
33764         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
33765           improve error messages on open
33766
33767
33768 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
33769
33770         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
33771           check if v4l-conf is in path
33772
33773 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
33774
33775         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
33776           change assert to a more readable error message
33777
33778 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
33779
33780         * gst-libs/gst/tuner/tunerchannel.h:
33781           - add a freq_multiplicator field to make the conversion
33782             between internal frequency unit and Hz
33783         * sys/v4l/gstv4lelement.c:
33784         * sys/v4l2/gstv4l2element.c:
33785           - change default video device to /dev/video0
33786         * sys/v4l/v4l_calls.c:
33787         * sys/v4l2/v4l2_calls.c:
33788           - we only expose frequency to the user in Hz instead of
33789             bastard v4lX unit (either 62.5kHz or 62.5Hz)
33790
33791 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
33792         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
33793           Initialise b_o_s and e_o_s variables
33794         * gst-libs/gst/riff/riff-media.c:
33795         (gst_riff_create_video_caps_with_data):
33796           Add some unusual fourcc's from mplayer avi's
33797         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
33798           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
33799           autoplugging.
33800
33801 2004-05-28  Wim Taymans  <wim@fluendo.com>
33802
33803         * configure.ac:
33804         * gst/alpha/Makefile.am:
33805         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
33806         (gst_alpha_get_type), (gst_alpha_base_init),
33807         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
33808         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
33809         (gst_alpha_chroma_key), (gst_alpha_chain),
33810         (gst_alpha_change_state), (plugin_init):
33811         A plugin to add an alpha channel to I420 video. Can optionally do
33812         chroma keying.
33813         * gst/multipart/Makefile.am:
33814         * gst/multipart/multipart.c: (plugin_init):
33815         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
33816         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
33817         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
33818         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
33819         (gst_multipart_demux_change_state),
33820         (gst_multipart_demux_plugin_init):
33821         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
33822         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
33823         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
33824         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
33825         (gst_multipart_mux_pad_unlink),
33826         (gst_multipart_mux_request_new_pad),
33827         (gst_multipart_mux_handle_src_event),
33828         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
33829         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
33830         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
33831         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
33832         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
33833         send multipart jpeg images to a browser.
33834         * gst/videobox/Makefile.am:
33835         * gst/videobox/README:
33836         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
33837         (gst_video_box_get_type), (gst_video_box_base_init),
33838         (gst_video_box_class_init), (gst_video_box_init),
33839         (gst_video_box_set_property), (gst_video_box_get_property),
33840         (gst_video_box_sink_link), (gst_video_box_i420),
33841         (gst_video_box_ayuv), (gst_video_box_chain),
33842         (gst_video_box_change_state), (plugin_init):
33843         Crops or adds borders around an image. can do alpha channel
33844         borders as well.
33845         * gst/videomixer/Makefile.am:
33846         * gst/videomixer/README:
33847         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
33848         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
33849         (gst_videomixer_pad_get_sink_event_masks),
33850         (gst_videomixer_pad_get_property),
33851         (gst_videomixer_pad_set_property),
33852         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
33853         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
33854         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
33855         (gst_videomixer_base_init), (gst_videomixer_class_init),
33856         (gst_videomixer_init), (gst_videomixer_request_new_pad),
33857         (gst_videomixer_handle_src_event),
33858         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
33859         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
33860         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
33861         (gst_videomixer_loop), (gst_videomixer_get_property),
33862         (gst_videomixer_set_property), (gst_videomixer_change_state),
33863         (plugin_init):
33864         Generic video mixer plugin, can handle multiple inputs all with
33865         different framerates and video sizes. Is fully alpha channel
33866         aware.
33867
33868 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33869
33870         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
33871           Select first track as master track. Not sure how else to handle
33872           that...
33873         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
33874           Discard discont events. Should fix #142962.
33875
33876 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33877
33878         * ext/alsa/Makefile.am:
33879         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
33880         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
33881         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
33882         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
33883         (gst_alsa_mixer_get_option):
33884         * ext/alsa/gstalsamixer.h:
33885         * ext/alsa/gstalsamixeroptions.c:
33886         (gst_alsa_mixer_options_get_type),
33887         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
33888         (gst_alsa_mixer_options_new):
33889         * ext/alsa/gstalsamixeroptions.h:
33890         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
33891         * ext/alsa/gstalsamixertrack.h:
33892           Add enumerations (as GstMixerOptions). Make correct distinction
33893           between input/output tracks. Add capture/playback private flag.
33894           Use flag to decide on whether to set capture or playback volumes
33895           or switches. Use playback and record switches.
33896         * gst-libs/gst/mixer/Makefile.am:
33897         * gst-libs/gst/mixer/mixer-marshal.list:
33898         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
33899         (gst_mixer_set_option), (gst_mixer_get_option),
33900         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
33901         (gst_mixer_volume_changed), (gst_mixer_option_changed):
33902         * gst-libs/gst/mixer/mixer.h:
33903         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
33904         (gst_mixer_options_class_init), (gst_mixer_options_init),
33905         (gst_mixer_options_dispose):
33906         * gst-libs/gst/mixer/mixeroptions.h:
33907           Add GstMixerOptions.
33908         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
33909           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
33910           broken device detection on computers with multiple OSS sound
33911           cards.
33912
33913 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33914
33915         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
33916           fixate nicely even when the peer is not negotiating
33917
33918 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33919
33920         * gst/audioconvert/gstaudioconvert.c:
33921         (gst_audio_convert_parse_caps):
33922           make sure we don't allow depth > width
33923         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
33924           fixate endianness to G_BYTE_ORDER as default
33925         * gst/audioscale/gstaudioscale.c:
33926           we don't handle another endianness as host-endianness
33927
33928 2004-05-25  David Schleef  <ds@schleef.org>
33929
33930         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
33931
33932 2004-05-24  Benjamin Otte  <otte@gnome.org>
33933
33934         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
33935         (gst_oggvorbisenc_setup):
33936           properly fail when we can't setup the vorbis encoder due to
33937           unsupported settings
33938         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
33939         (gst_vorbisenc_setup):
33940           same
33941         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
33942           fix case where warnings occured when one pad was unlinked while the
33943           other's link function was called
33944
33945 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33946
33947         * gst/tcp/Makefile.am:
33948           use GST_ENABLE_NEW
33949
33950 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33951
33952         * gst-libs/gst/resample/private.h:
33953           don't use optimizations that are #if 0'ed
33954
33955 2004-05-24  Wim Taymans  <wim@fluendo.com>
33956
33957         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
33958         Fix potential division by zero error and hopefully get
33959         the position query right to get correct timestamps on avi
33960         audio.
33961
33962 2004-05-24  Wim Taymans  <wim@fluendo.com>
33963
33964         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
33965         (gst_videoscale_scale_nearest_str2),
33966         (gst_videoscale_scale_nearest_str4),
33967         (gst_videoscale_scale_nearest_32bit),
33968         (gst_videoscale_scale_nearest_24bit),
33969         (gst_videoscale_scale_nearest_16bit):
33970         Fix the scaling algorithm and avoid a buffer overflow.
33971         removed the while loop in the scaling function as it
33972         was used for point sampling only.
33973
33974 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
33975
33976         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
33977         (gst_id3_tag_class_init), (gst_id3_tag_init),
33978         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
33979         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
33980         (gst_id3_tag_send_tag_event):
33981           lots of fixes to make id3mux work and id3demux work correctly
33982
33983 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
33984
33985         * ext/Makefile.am:
33986           add rules to build shout2send (was removed by accident
33987           when this module was no more marked experimental/broken)
33988
33989 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33990
33991         * ext/shout2/gstshout2.c:
33992         * ext/shout2/gstshout2.h:
33993           adding a "connection problem" signal to shout2send
33994           (fixes #142954)
33995
33996 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
33997
33998         * ext/kio/kioreceiver.cpp:
33999         * ext/kio/kioreceiver.h:
34000           fix sign comparison issues
34001
34002 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34003
34004         * gst/cdxaparse/gstcdxaparse.c:
34005         * gst/cdxaparse/gstcdxaparse.h:
34006           some renaming
34007           add some checks/sanity
34008           prepare for seek addition
34009
34010         * sys/sunaudio/gstsunaudio.c:
34011           remove exported dupe init function
34012
34013 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
34014
34015         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
34016         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
34017           Fix format conversion and position querying.
34018         * gst/debug/progressreport.c: (gst_progressreport_report):
34019           Don't output a bogus total value that we didn't query.
34020         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
34021           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
34022           only a blank window after xine has been used.
34023
34024 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34025
34026         * m4/as-arts.m4:
34027           sync with upstream version to fix test on FC2
34028           readd with -ko to preserve Id header
34029
34030 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34031
34032         * configure.ac:
34033           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
34034         * gst/tcp/gsttcpclientsrc.c: idem
34035         * gst/tcp/gsttcpserversink.c: idem
34036         * gst/tcp/gsttcpserversrc.c: idem
34037         * m4/gst-fionread.m4: idem
34038
34039         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
34040
34041         * configure.ac: enable speex plugin for speex 1.1.5+
34042         * ext/speex/gstspeexenc.c: fix cast warning
34043
34044         * ext/esd/README: fix typo
34045
34046 2004-05-20  David Schleef  <ds@schleef.org>
34047
34048         * configure.ac: Minor cosmetic change to convince the buildbot to
34049         reautogen.
34050         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
34051         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
34052         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
34053         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
34054         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
34055         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
34056         More hacking.  Plays audio now.
34057
34058 2004-05-20  David Schleef  <ds@schleef.org>
34059
34060         * configure.ac:
34061         * sys/Makefile.am:
34062
34063 2004-05-20  David Schleef  <ds@schleef.org>
34064
34065         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
34066         * sys/osxaudio/gstosxaudio.c:
34067         * sys/osxaudio/gstosxaudioelement.c:
34068         * sys/osxaudio/gstosxaudioelement.h:
34069         * sys/osxaudio/gstosxaudiosink.c:
34070         * sys/osxaudio/gstosxaudiosink.h:
34071         * sys/osxaudio/gstosxaudiosrc.c:
34072         * sys/osxaudio/gstosxaudiosrc.h:
34073
34074 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34075
34076         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
34077         (gst_vorbisenc_chain):
34078           put the codec headers on the caps as streamheader as well as
34079           pushing them out
34080
34081 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34082
34083         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
34084         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
34085         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
34086         split up push_packet into two functions
34087
34088 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34089
34090         * gst/tcp/.cvsignore:
34091           ignore enums
34092         * gst/tcp/Makefile.am:
34093         * gst/tcp/README:
34094         * gst/tcp/gsttcp.c:
34095         * gst/tcp/gsttcp.h:
34096         * gst/tcp/gsttcpclientsink.c:
34097         * gst/tcp/gsttcpclientsink.h:
34098         * gst/tcp/gsttcpclientsrc.c:
34099         * gst/tcp/gsttcpclientsrc.h:
34100         * gst/tcp/gsttcpplugin.c:
34101         * gst/tcp/gsttcpserversink.c:
34102         * gst/tcp/gsttcpserversink.h:
34103         * gst/tcp/gsttcpserversrc.c:
34104         * gst/tcp/gsttcpserversrc.h:
34105           add new tcp elements
34106
34107 2004-05-19  Wim Taymans  <wim@fluendo.com>
34108
34109         * gst/law/mulaw-conversion.c: (mulaw_encode):
34110         Fix overflow bug in ulaw encoding.
34111
34112 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34113
34114         * ext/mad/gstmad.c: (gst_mad_handle_event):
34115           don't unref the event twice
34116
34117 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34118
34119         * configure.ac:
34120           remove -Wno-sign-compare
34121
34122 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34123
34124         * configure.ac:
34125           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
34126           if you want to work against glib 2.2 and 2.4
34127
34128 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34129
34130         * gst/tcp/Makefile.am:
34131         * gst/tcp/gsttcp.c:
34132         * gst/tcp/gsttcp.h:
34133         * gst/tcp/gsttcpsink.h:
34134         * gst/tcp/gsttcpsrc.h:
34135           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
34136
34137 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34138
34139         * gst/debug/tests.c: (md5_get_value):
34140           fix segfault on gst-inspect
34141
34142 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34143
34144         * gst/debug/testplugin.c:
34145         * gst/debug/tests.c:
34146         * gst/debug/tests.h:
34147           add new extensible and configurable testing element. Current tests
34148           include buffer count, stream length, timestamp/duration matching and
34149           md5.
34150         * gst/debug/Makefile.am:
34151         * gst/debug/gstdebug.c: (plugin_init):
34152           add infrastructure for new element
34153
34154 2004-05-19  Johan Dahlin  <johan@gnome.org>
34155
34156         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
34157         ending of the array. Fixes gst-inspect segfault on ppc.
34158
34159 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34160
34161         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
34162
34163         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
34164
34165 2004-05-18  David Schleef  <ds@schleef.org>
34166
34167         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
34168         warnings (bugs, actually) noticed by gcc but not forte.
34169
34170 2004-05-18  David Schleef  <ds@schleef.org>
34171
34172         * sys/sunaudio/Makefile.am:
34173         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
34174
34175 2004-05-18  David Schleef  <ds@schleef.org>
34176
34177         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
34178         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
34179         to allow qtdemux to use non-seekable streams. (bug #142272)
34180
34181 2004-05-18  David Schleef  <ds@schleef.org>
34182
34183         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
34184         (gst_resample_sinc_ft_float): Remove use of static temporary
34185         buffer.  This code was obviously not supposed to last long, but
34186         it's stuck in our ABI, so it required a little hack to make it
34187         ABI-compatible.  Fixes #142585.
34188         * gst-libs/gst/resample/resample.h: same.
34189
34190 2004-05-18  David Schleef  <ds@schleef.org>
34191
34192         * configure.ac: Add sunaudio
34193         * examples/Makefile.am: make gstplay depend on gconf
34194         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
34195         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
34196         (convert_table_lookup), (img_convert): remove c99-isms
34197         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
34198           unsigned, to fix a warning on Solaris
34199         * gst/mpeg1sys/systems.c: bcopy->memcpy
34200         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
34201         * sys/Makefile.am: Add sunaudio
34202
34203 2004-05-18  Wim Taymans  <wim@fluendo.com>
34204
34205         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
34206         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
34207         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
34208         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
34209         (gst_ogg_mux_loop):
34210         Fix an ugly memleak where the muxer didn't flush enough ogg
34211         pages. This also resulted in badly muxed ogg files.
34212
34213 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34214
34215         * gst/asfdemux/asfheaders.c :
34216         * gst/asfdemux/asfheaders.h :
34217         * gst/asfdemux/gstasfdemux.c :
34218           - fix ASF_OBJ_PADDING guid
34219           - add 3 new object guids (language list, metadata,
34220             extended stream properties)
34221           - add a function to parse extended header objects
34222
34223 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34224
34225         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
34226           remove leftover debugging g_print
34227
34228 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34229
34230         * ext/mad/gstmad.c: (gst_mad_handle_event):
34231           Fix for when the first format in a discont event is not a
34232           byte-based one. Should fix #137710.
34233
34234 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34235
34236         * m4/a52.m4 : fix compilation with -Wall -Werror
34237         * m4/libfame.m4 : idem
34238         * m4/libmikmod.m4 : idem
34239
34240 2004-05-17  Benjamin Otte  <otte@gnome.org>
34241
34242         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34243           signal the new tags before giving up the reference
34244
34245 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34246
34247         * ext/shout2/gstshout2.c:
34248           use application/ogg instead of application/x-ogg (patch by Patrick
34249           Guimond, fixes #142432)
34250         * sys/oss/gstosselement.c: (gst_osselement_reset),
34251         (gst_osselement_sync_parms):
34252           don't set fragment size unless specified (fixes #142493)
34253
34254 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34255
34256         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
34257           fixes #142664
34258
34259 2004-05-17  Benjamin Otte  <otte@gnome.org>
34260
34261         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
34262           compute offsets correctly for internal buffers so timestamps are set
34263           correctly when we can't seek. Also handle cases where there are no
34264           offsets. (based on a patch by David Moore, fixes #142507)
34265
34266 2004-05-17  Benjamin Otte  <otte@gnome.org>
34267
34268         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34269           use correct variable when determining amount of data to skip so we
34270           don't skip into the void and segfault
34271
34272 2004-05-16  Benjamin Otte  <otte@gnome.org>
34273
34274         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
34275           Hi, I'm a memleak
34276
34277 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34278
34279         * gst/asfdemux/gstasfdemux.c:
34280           - fix a mem leak and always propagate tags
34281           - add WMV3 to known video codecs (but no decoder yet)
34282           - replace "surplus data" at end of audio header for what
34283             it is : codec specific data
34284           - fix a typo
34285
34286 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
34287
34288         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
34289
34290         * gst-libs/gst/audio/audioclock.c:
34291           Fix wrong return type (#142205).
34292
34293 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34294
34295         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
34296           Ignore CRCs by default (fixes #142566).
34297
34298 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34299
34300         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
34301         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
34302         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
34303         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
34304         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
34305         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
34306           Fix for cases where we fail to attach to a mixer.
34307
34308 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34309
34310         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
34311           Don't touch events after not owning them anymore.
34312         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
34313         (gst_wavparse_fmt), (gst_wavparse_other),
34314         (gst_wavparse_handle_seek), (gst_wavparse_loop),
34315         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
34316         (gst_wavparse_srcpad_event):
34317         * gst/wavparse/gstwavparse.h:
34318           Add seeking, fix querying.
34319
34320 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34321
34322         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34323           - process comments even if they don't end with \0\0
34324             g_convert would ignore them if present and works well without them
34325
34326 2004-05-16  Benjamin Otte  <otte@gnome.org>
34327
34328         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
34329           simplify caps
34330
34331 2004-05-16  Benjamin Otte  <otte@gnome.org>
34332
34333         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34334           don't write to memory we might not write to - g_convert does that
34335           for us anyway (fixes #142613)
34336         (gst_asf_demux_audio_caps):
34337           comment out gst_util_dump_mem
34338
34339 2004-05-16  Benjamin Otte  <otte@gnome.org>
34340
34341         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34342           compute correct expected timestamps after seek (broken since
34343           last commit)
34344         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
34345           rename element and debugging category to gdkpixbufscale
34346
34347 2004-05-16  Benjamin Otte  <otte@gnome.org>
34348
34349         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34350           add error checking to snd_pcm_delay and remove duplicate call to
34351           snd_pcm_delay that caused issues (see inline code comments)
34352         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
34353           make more readable and fix return value when snd_pcm_delay fails
34354         (fixes #142586)
34355
34356 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
34357         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
34358         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
34359         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
34360         (gst_pixbufscale_link), (gst_pixbufscale_init),
34361         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
34362         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
34363         (gst_pixbufscale_get_property), (pixbufscale_init):
34364         * ext/gdk_pixbuf/pixbufscale.h:
34365         Add these files I forgot earlier
34366
34367 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
34368         * ext/gdk_pixbuf/Makefile.am:
34369         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
34370         * ext/gdk_pixbuf/gstgdkpixbuf.h:
34371         Add new pixbufscale element to scale RGB video
34372         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
34373         and HYPER interpolation correctly.
34374         * ext/theora/theoraenc.c: (theora_enc_chain),
34375         Discard buffer and return if explicit caps could not be set
34376         (theora_enc_get_property):
34377         Make _get return kbps for the bitrate consistent with
34378         the _set function.
34379
34380
34381 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34382
34383         * ext/libvisual/visual.c: (gst_visual_chain):
34384           add missing visual_audio_analyze
34385
34386 2004-05-14  David Schleef  <ds@schleef.org>
34387
34388         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
34389         is killed while we're playing.
34390         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
34391         gst_element_no_more_pads().
34392
34393 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34394
34395         * gst-libs/gst/riff/riff-read.c :
34396           - fix INFO tag extraction in RIFF/AVI files
34397             because gst_event_unref (event) also freed taglist
34398           - avoid a mem leak
34399
34400 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34401
34402         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
34403         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
34404
34405         * gst/auparse/gstauparse.c :
34406           - add code (commented for now) to support audio/x-adpcm on src pad
34407             (we have no decoder for those layout yet)
34408
34409         * gst/cdxaparse/gstcdxaparse.c :
34410         * gst/cdxaparse/gstcdxaparse.h :
34411           - partial rewrite using RiffRead (ripped iain's wavparse code)
34412
34413         * gst/rtp/gstrtpL16enc.c : typo
34414         * gst/rtp/gstrtpgsmenc.c : typo
34415
34416 2004-05-13  Benjamin Otte  <otte@gnome.org>
34417
34418         * configure.ac:
34419           check for exact version of libvisual, it's not supposed to be
34420           API/ABI stable yet
34421
34422 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34423
34424         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
34425           signal no-more-pads
34426
34427 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
34428
34429         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
34430         Report which format was used for GST_FORMAT_DEFAULT
34431         * gst/debug/Makefile.am:
34432         * gst/debug/gstdebug.c: (plugin_init):
34433         * gst/debug/progressreport.c: (gst_progressreport_base_init),
34434         (gst_progressreport_class_init), (gst_progressreport_init),
34435         (gst_progressreport_report), (gst_progressreport_set_property),
34436         (gst_progressreport_get_property), (gst_progressreport_chain),
34437         (gst_progressreport_plugin_init):
34438         Add progressreport element for testing.
34439
34440 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
34441
34442         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
34443         * sys/v4l/gstv4lsrc.h:
34444         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
34445         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
34446         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
34447         (gst_v4lsrc_grab_frame):
34448           add more debugging
34449           send a discont at start
34450
34451 2004-05-12  Colin Walters  <walters@redhat.com>
34452
34453         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
34454         inflooping if we can't find a chunk.  Or in other words, don't blow
34455         chunks if we don't have a chunk to blow.
34456
34457 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
34458         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
34459         Remove old debug output
34460         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
34461         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
34462         (gst_dvdec_set_property), (gst_dvdec_get_property):
34463         Change the quality setting to an enum, so it works from gst-launch
34464         Don't renegotiate a non-linked pad. Allows audio only decoding.
34465         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
34466         (gst_deinterlace_link), (gst_deinterlace_init):
34467         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
34468         (gst_videodrop_link):
34469         Some caps negotiation fixes
34470
34471 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34472
34473         * ext/tarkin/gsttarkin.c :
34474           - Change RANK from NONE to PRIMARY
34475         * ext/gdk_pixbuf/gstgdkpixbuf.c :
34476           - Change RANK from NONE to MARGINAL
34477         * ext/divx/gstdivxenc.c :
34478           - Change RANK from PRIMARY to NONE (encoder/spider issue)
34479
34480 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
34481
34482         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
34483         (gst_vorbisenc_push_packet):
34484           copy a function that was added between 1.0 and 1.0.1 until we
34485           depend on worthwhile features of post-1.0
34486
34487 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34488
34489         * configure.ac:
34490           enable shout2 by default
34491         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
34492         (gst_shout2send_base_init), (gst_shout2send_init),
34493         (gst_shout2send_connect), (gst_shout2send_change_state):
34494         * ext/shout2/gstshout2.h:
34495           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
34496           #142262)
34497         * ext/theora/theora.c: (plugin_init):
34498           don't set rank on encoders
34499
34500 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
34501
34502         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
34503           Use codec_data property instead of flag1 and flag2 for wma
34504
34505 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34506
34507         * gst/cdxaparse/gstcdxaparse.c :
34508           - Add mpegversion to CAPS to make it link
34509           - Rank is as GST_RANK_SECONDARY instead of NONE
34510         * gst/auparse/gstauparse.c :
34511           - Document all audio encoding we can encounter from Solaris 9
34512             headers and libsndfile information.
34513           - Increase max. rate from 48000 to 192000 (to match other elements)
34514           - Don't try to play junk data between header and samples
34515
34516 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34517
34518         * ext/libvisual/visual.c: (gst_visual_getcaps):
34519           use the right caps depending on endianness (I hope)
34520         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
34521           use GST_RANK_NONE for all non-decoding elements or spider gets
34522           mighty confused
34523
34524 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34525
34526         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34527           Fix some odd cases and fix BE metadata parsing of unicode16 text.
34528
34529 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34530
34531         * gst/switch/gstswitch.c: (gst_switch_release_pad),
34532         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
34533         (gst_switch_loop), (gst_switch_get_type):
34534           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
34535           HEADERS. Had to be said.
34536
34537 2004-05-10  David Schleef  <ds@schleef.org>
34538
34539         * configure.ac: Add prototype Dirac support.
34540         * ext/Makefile.am:
34541         * ext/dirac/Makefile.am:
34542         * ext/dirac/gstdirac.cc:
34543         * ext/dirac/gstdiracdec.cc:
34544
34545 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34546
34547         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
34548         (gst_auparse_init), (gst_auparse_chain),
34549         (gst_auparse_change_state):
34550           Hack around spider. Remove me some day please.
34551
34552 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34553
34554         * gst/auparse/gstauparse.c: (gst_auparse_chain):
34555           Fix for some uninitialized variables in previous patch, also
34556           makes it work. Fixes #142286 while we're at it.
34557
34558 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34559
34560         * gst/auparse/gstauparse.c:
34561                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
34562                 only unsupported formats are ADPCM/CCITT G.72x
34563                 reviewed by Ronald
34564         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
34565
34566 2004-05-10  Wim Taymans  <wim@fluendo.com>
34567
34568         * ext/vorbis/Makefile.am:
34569         * ext/vorbis/README:
34570         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
34571         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
34572         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
34573         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
34574         (gst_oggvorbisenc_convert_sink),
34575         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
34576         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
34577         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
34578         (get_constraints_string), (update_start_message),
34579         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
34580         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
34581         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
34582         * ext/vorbis/oggvorbisenc.h:
34583         * ext/vorbis/vorbis.c: (plugin_init):
34584         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
34585         (raw_caps_factory), (gst_vorbisenc_class_init),
34586         (gst_vorbisenc_init), (gst_vorbisenc_setup),
34587         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
34588         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
34589         * ext/vorbis/vorbisenc.h:
34590         Added a raw vorbis encoder to be used with the oggmuxer.
34591         We still need the old encoder for some gnome applications,
34592         read the README to find out how that works.
34593         The raw encoder is called "rawvorbisenc" until 0.9.
34594
34595 2004-05-10  Wim Taymans  <wim@fluendo.com>
34596
34597         * ext/ogg/gstogg.c: (plugin_init):
34598         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
34599         (gst_ogg_print):
34600         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
34601         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
34602         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
34603         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
34604         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
34605         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
34606         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
34607         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
34608         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
34609         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
34610         Added an ogg muxer.
34611         Small typo fixes in the demuxer.
34612
34613 2004-05-10  Wim Taymans  <wim@fluendo.com>
34614
34615         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34616         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
34617         (theora_enc_change_state), (theora_enc_set_property),
34618         (theora_enc_get_property):
34619         Mark the last packet with an EOS flag which is not really needed
34620         in gstreamer.
34621         Do some better video framerate initialisation.
34622         Update the buffer timestamp.
34623
34624 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
34625
34626         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
34627         Return the result of the parent state change call
34628
34629 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34630
34631         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
34632         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
34633         * gst/law/alaw-encode.c : (idem)
34634         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
34635         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
34636         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
34637
34638 2004-05-09  Benjamin Otte  <otte@gnome.org>
34639
34640         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34641           don't use a fixed buffer size when writing variable length data to
34642           it. Fixes memory corruption and makes alsasrc work
34643
34644 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34645
34646         * ext/gnomevfs/gstgnomevfssink.c:
34647         (_gst_boolean_allow_overwrite_accumulator),
34648         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
34649           Run glib's default signal handler (??) in RUN_CLEANUP rather than
34650           RUN_LAST, and don't use that to set the accumulator value because
34651           then it's always FALSE.
34652
34653 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34654
34655         * gst-libs/gst/riff/riff-media.c:
34656         (gst_riff_create_video_caps_with_data),
34657         (gst_riff_create_audio_caps),
34658         (gst_riff_create_audio_template_caps):
34659         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34660           Fix for unaligned RIFF files (i.e. where all the chunks together
34661           in a LIST chunk are not of the same size as the size given in
34662           the LIST chunk header). Fixes several odd WAVE files. Also fix
34663           ADPCM (block_align property) in audio, so that wavparse based
34664           on this works now as it used to stand-alone.
34665
34666 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
34667
34668         reviewed by Benjamin Otte  <otte@gnome.org>
34669
34670         * ext/a52dec/gsta52dec.c:
34671         * ext/divx/gstdivxdec.c:
34672         * ext/divx/gstdivxenc.c:
34673         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
34674         * ext/faac/gstfaac.c: (gst_faac_base_init):
34675         * ext/faad/gstfaad.c: (gst_faad_base_init):
34676         * ext/ivorbis/vorbisfile.c:
34677         * ext/lame/gstlame.c:
34678         * ext/libfame/gstlibfame.c:
34679         * ext/mpeg2enc/gstmpeg2enc.cc:
34680         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
34681         * ext/sidplay/gstsiddec.cc:
34682         * ext/speex/gstspeexdec.c:
34683         * ext/speex/gstspeexenc.c:
34684         * ext/xvid/gstxviddec.c:
34685         * ext/xvid/gstxvidenc.c:
34686           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
34687           (fixes #142193)
34688
34689 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34690
34691         * ext/alsa/gstalsa.c: (device_list),
34692         (gst_alsa_class_probe_devices):
34693         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
34694           Fix alsa oddness in mixer after the combination of using mixer
34695           in source/sink elements and using hw:x,y instead of just hw:x.
34696
34697 2004-05-09  Benjamin Otte  <otte@gnome.org>
34698
34699         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
34700         (gst_wavparse_create_sourcepad):
34701           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
34702           sourcepads
34703
34704 2004-05-09  Benjamin Otte  <otte@gnome.org>
34705
34706         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34707           allow discont events before caps nego
34708
34709 2004-05-08  Benjamin Otte  <otte@gnome.org>
34710
34711         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
34712           don't leak events
34713
34714 2004-05-08  Benjamin Otte  <otte@gnome.org>
34715
34716         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
34717         (gst_level_change_state), (gst_level_init):
34718         * gst/level/gstlevel.h:
34719           figure out if we're initialized directly instead of keeping a
34720           variable that's wrong in 90% of cases
34721           don't initialize pads and then leak them and use a new unitialized
34722           pad. (fixes #142084)
34723           these were bugs so n00bish I didn't find them for an hour :/
34724
34725 2004-05-08 Iain <iain@prettypeople.org>
34726
34727         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
34728         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
34729         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
34730         return the length that was read.
34731         (gst_riff_read_strf_auds): Allow fmt tags as well.
34732
34733 2004-05-07  David Schleef  <ds@schleef.org>
34734
34735         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
34736         signed char assumption in faad.h.
34737
34738 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34739
34740         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
34741           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
34742
34743 2004-05-07  Colin Walters  <walters@redhat.com>
34744
34745         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
34746         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
34747         function.
34748         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
34749         Add dispose function.
34750
34751 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
34752         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
34753           Fix caps nego and pad templates. RGB mode caps should
34754           work now.
34755         * ext/dvdnav/gst-dvd:
34756           Move mpeg2dec inside the thread because otherwise the
34757           queue rejects cap changes mid-stream
34758         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
34759         (gst_mpeg2dec_flush_decoder):
34760           For mpeg2dec > 0.4.0, call the flush function instead of
34761           manually extracting all in-flight frames.
34762         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
34763         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
34764           Change mime type video/dv go video/x-dv to match the
34765           rest of gst-plugins
34766
34767 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34768
34769         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
34770         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
34771         (gst_alsa_sink_class_init):
34772         * ext/alsa/gstalsasink.h:
34773         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
34774         (gst_alsa_src_class_init):
34775         * ext/alsa/gstalsasrc.h:
34776           Make alsasink/src a subclass of alsamixer so that mixer stuff
34777           shows up in gst-rec. Needs some finetuning.
34778
34779 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34780
34781         * ext/lame/gstlame.c: (gst_lame_chain):
34782           simplify
34783         * ext/mad/gstmad.c: (gst_mad_handle_event):
34784           fix event leak
34785         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
34786           be able to detect mp3 files < 4096 bytes
34787
34788 2004-05-06  Wim Taymans  <wim@fluendo.com>
34789
34790         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34791         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
34792         (theora_enc_set_property), (theora_enc_get_property):
34793         Also encode the first frame, cleanup some code.
34794
34795 2004-05-06  Wim Taymans  <wim@fluendo.com>
34796
34797         * ext/mpeg2enc/gstmpeg2enc.cc:
34798         Forward events first before deciding that negotiation was
34799         not performed.
34800
34801 2004-05-06  Wim Taymans  <wim@fluendo.com>
34802
34803         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
34804         First process the events before deciding that negotiation
34805         was not performed.
34806
34807 2004-05-06  Wim Taymans  <wim@fluendo.com>
34808
34809         * ext/theora/Makefile.am:
34810         * ext/theora/theora.c: (plugin_init):
34811         * ext/theora/theoradec.c: (theora_dec_change_state):
34812         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
34813         (gst_theora_enc_class_init), (gst_theora_enc_init),
34814         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
34815         (theora_enc_chain), (theora_enc_change_state),
34816         (theora_enc_set_property), (theora_enc_get_property):
34817         Added a theora encoder, grouped the encoder and decoder into the
34818         same plugin.
34819
34820 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
34821
34822         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
34823         (gst_jpegenc_chain):
34824         fix DURATION on outgoing buffers
34825         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
34826         debug using time formats
34827         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
34828         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
34829         (gst_xvimagesink_sink_link):
34830         windows with width/height 0 generate X errors, so don't allow them
34831
34832 2004-05-05  Wim Taymans  <wim@fluendo.com>
34833
34834         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
34835         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
34836         (gst_mpeg2dec_negotiate_format):
34837         * ext/mpeg2dec/gstmpeg2dec.h:
34838           removed the static pad template so that we can add the
34839           more accurate framerate value to the caps.
34840
34841
34842 2004-05-04  Benjamin Otte  <otte@gnome.org>
34843
34844         * configure.ac:
34845           check for kdemacros.h, too (should fix #141821)
34846         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
34847           don't crash if no header was sent, but nicely error out (fixes part
34848           of #141554)
34849
34850 2004-05-04  Wim Taymans  <wim@fluendo.com>
34851
34852         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
34853         parent dispose function to avoid segfault on destroy.
34854
34855 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
34856
34857         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
34858         (plugin_init):
34859         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
34860         (gst_xvimagesink_sink_link):
34861         clean up debugging caps
34862         also recreate xvimage when format has changed
34863
34864 2004-05-04  Benjamin Otte  <otte@gnome.org>
34865
34866         * ext/libvisual/Makefile.am:
34867         * ext/libvisual/visual.c: (gst_visual_class_init),
34868         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
34869         (gst_visual_srclink), (gst_visual_chain),
34870         (gst_visual_change_state), (plugin_init):
34871           use a GstAdapter to correctly adapt buffer sizes - allows using a
34872           framerate
34873
34874 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
34875
34876         * sys/v4l/gstv4lelement.h:
34877         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
34878         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
34879         (gst_v4lsrc_buffer_free):
34880         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
34881         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
34882         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
34883         (gst_v4lsrc_requeue_frame):
34884         move some debugging categories around
34885         query for fps index and set accordingly if found
34886
34887 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34888
34889         * ext/lame/gstlame.c:
34890         correct defaults that lame_init puts out of range
34891
34892 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
34893
34894         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
34895         (gst_divxenc_class_init):
34896         fix range since -1 is the default
34897         * gst/mpeg1sys/gstmpeg1systemencode.c:
34898         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
34899         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
34900         (gst_rtjpegdec_chain):
34901         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
34902         (gst_rtjpegenc_chain):
34903         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
34904         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
34905         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
34906         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
34907         * sys/v4l/gstv4lsrc.c:
34908         * sys/v4l/v4l_calls.c: (gst_v4l_open):
34909         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
34910         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
34911         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
34912         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
34913           remove gst_info calls
34914
34915 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
34916
34917         * Makefile.am:
34918         * po/af.po:
34919         * po/az.po:
34920         * po/en_GB.po:
34921         * po/nl.po:
34922         * po/sr.po:
34923         * po/sv.po:
34924           Updated translations
34925
34926 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
34927
34928         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
34929           refactor/comment code
34930
34931 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34932
34933         * gst/asfdemux/Makefile.am:
34934         * gst/asfdemux/asfheaders.c:
34935         * gst/asfdemux/asfheaders.h:
34936         * gst/asfdemux/gstasf.c: (plugin_init):
34937         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
34938         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
34939         (gst_asf_demux_setup_pad):
34940         * gst/asfdemux/gstasfdemux.h:
34941         * gst/asfdemux/gstasfmux.c:
34942         * gst/asfdemux/gstasfmux.h:
34943           Add tagging support to demuxer, split out registration in its own
34944           file instead of in demux (hacky), and prevent having some tables
34945           in our memory multiple times (in asfheaders.h).
34946
34947 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34948
34949         * gst/matroska/matroska-demux.c:
34950         (gst_matroska_demux_parse_metadata):
34951         * gst/matroska/matroska-ids.h:
34952           Basic tag reading support.
34953
34954 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34955
34956         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
34957           Really detect ac-3 audio.
34958         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
34959           really detect matroska files (off-by-1).
34960
34961 2004-04-30  David Schleef  <ds@schleef.org>
34962
34963         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
34964         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
34965         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
34966         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
34967         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
34968         hackage -- parse a lot more atoms, extract a few tags.  One might even
34969         mistake this for tag support.  Maybe it is.
34970         * gst/qtdemux/qtdemux.h:
34971
34972 2004-04-30  Colin Walters  <walters@verbum.org>
34973
34974         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
34975
34976 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
34977
34978         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
34979         (gst_ffmpegcolorspace_getcaps):
34980           remove broken nego fix
34981
34982 2004-04-30  Benjamin Otte  <otte@gnome.org>
34983
34984         * configure.ac:
34985         * ext/Makefile.am:
34986         * ext/libvisual/Makefile.am:
34987         * ext/libvisual/visual.c:
34988           add initial support for libvisual (http://libvisual.sourceforge.net)
34989           libvisual is still quite alpha, so expect crashes in there :)
34990
34991 2004-04-29  David Schleef  <ds@schleef.org>
34992
34993         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
34994         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
34995         up qtdemux to make it spit out codec_data.  Do _not_ look at this
34996         code; you will no longer respect me.
34997
34998 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34999
35000         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
35001         * ext/alsa/gstalsa.h :
35002         change alsa pcm device discovery to find more than 1 device
35003         per card. code review by Ronald.
35004
35005 2004-04-29  David Schleef  <ds@schleef.org>
35006
35007         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
35008         Add a check for a driver bug on FreeBSD.  (bug #140565)
35009
35010 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
35011
35012         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
35013         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35014         (gst_jpegenc_getcaps):
35015           move format setting to inner loop
35016         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35017         (gst_ffmpegcolorspace_getcaps):
35018           use GST_PAD_CAPS if available so that we use already negotiated
35019           caps
35020         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35021         (qtdemux_parse_moov), (qtdemux_parse):
35022           extra debugging
35023         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
35024         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
35025           move hardcoded path to DEFINE
35026
35027 2004-04-28  David Schleef  <ds@schleef.org>
35028
35029         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
35030         (bug #140064)
35031
35032 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35033
35034         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
35035           Don't probe for playback device if we're a source element. Fixes
35036           #139658.
35037
35038 2004-04-29  Benjamin Otte  <otte@gnome.org>
35039
35040         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
35041         (gst_id3_tag_chain):
35042           rewrite buffer offset
35043
35044 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35045
35046         * configure.ac:
35047         * ext/Makefile.am:
35048         * ext/dts/Makefile.am:
35049         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
35050         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
35051         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
35052         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
35053         (gst_dtsdec_loop), (gst_dtsdec_change_state),
35054         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
35055         (plugin_init):
35056         * ext/dts/gstdtsdec.h:
35057           New DTS decoder.
35058         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
35059         (gst_faad_srcconnect):
35060           Add ESDS atom handling (.m4a).
35061
35062 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35063
35064         * ext/divx/gstdivxdec.c: (plugin_init):
35065           Remove comment that makes no sense.
35066         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
35067           Fix for obvious typo that resulted in warnings during gst-register.
35068         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
35069         (gst_xviddec_sink_link):
35070           Fix caps negotiation a bit better.
35071         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
35072           We call this 'codec_data', not 'esds'.
35073
35074 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35075
35076         * gst/monoscope/gstmonoscope.c:
35077           make sure we only provide 256x128
35078         * gst/monoscope/monoscope.c: (monoscope_init):
35079           assert size of 256x128
35080
35081 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35082
35083         * Makefile.am:
35084         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
35085         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
35086           fixate to max width and height of device
35087
35088 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35089
35090         * Makefile.am:
35091         * sys/v4l/gstv4l.c:
35092         * sys/v4l/gstv4lsrc.c:
35093         * sys/v4l/v4l_calls.c:
35094         * sys/v4l/v4lsrc_calls.c:
35095           fix for qc-usb driver which fakes having more than one buffer
35096           by handing the same buffer twice, which confused GStreamer's/v4lsrc
35097           buffer_free override
35098           add debugging
35099
35100 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35101
35102         * Makefile.am:
35103         * gst/videotestsrc/gstvideotestsrc.c:
35104         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
35105         (gst_videotestsrc_init), (gst_videotestsrc_get),
35106         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
35107         * gst/videotestsrc/gstvideotestsrc.h:
35108           add num-buffers property
35109
35110         2004-04-26  Benjamin Otte  <otte@gnome.org>
35111
35112         * ext/mad/gstid3tag.c: (plugin_init):
35113           set id3mux rank to NONE so it doesn't confuse spider
35114           require audio/mpeg,mpegversion=1 in id3mux
35115
35116 2004-04-26  Benjamin Otte  <otte@gnome.org>
35117
35118         * configure.ac:
35119           detect faad correctly as non-working if it's indeed non-working
35120
35121 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
35122
35123         * Makefile.am:
35124         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35125         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
35126         fix _getcaps so it only negotiates to its supported format
35127
35128 2004-04-25  Benjamin Otte  <otte@gnome.org>
35129
35130         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35131           fix memleak
35132
35133 2004-04-23  Benjamin Otte  <otte@gnome.org>
35134
35135         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
35136           audio/x-raw-int with height rules! not. Now it's depth.
35137
35138 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35139
35140         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
35141         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
35142         (gst_wavparse_loop):
35143           Missing variable initialization. Add handling of DVI ADPCM. Fix
35144           mis-parsing of LIST chunks. This works around a bug where we mis-
35145           parse non-aligning LIST chunks (so LIST chunks where the contents
35146           don't align with the actual LIST size). The correct fix is to use
35147           rifflib, I'm not going to fix wavparse - too much work. All this
35148           fixes #104878.
35149
35150 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
35151
35152         reviewed by Benjamin Otte  <otte@gnome.org>
35153
35154         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
35155           fix shoutcast not working (fixes #140844)
35156
35157 2004-04-22  Benjamin Otte  <otte@gnome.org>
35158
35159         * ext/hermes/gsthermescolorspace.c:
35160         (gst_hermes_colorspace_caps_remove_format_info):
35161         * gst/colorspace/gstcolorspace.c:
35162         (gst_colorspace_caps_remove_format_info):
35163         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35164         (gst_ffmpegcolorspace_caps_remove_format_info):
35165           s/gst_caps_simplify/gst_caps_do_simplify/
35166
35167 2004-04-22  Benjamin Otte  <otte@gnome.org>
35168
35169         * gst-libs/gst/riff/riff-media.c:
35170         (gst_riff_create_video_caps_with_data):
35171           mpegversion is an int
35172         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
35173           don't try to create pad templates with NULL caps, use any caps
35174           instead.
35175
35176 2004-04-20  David Schleef  <ds@schleef.org>
35177
35178         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
35179         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
35180         (bug #140384)
35181
35182 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
35183
35184         reviewed by David Schleef
35185
35186         * ext/mad/gstid3tag.c: Add stdlib.h
35187         * gst/rtp/gstrtpgsmenc.c: same
35188         * gst/tags/gstid3tag.c: same
35189         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
35190         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
35191         GST_DISABLE_LOADSAVE use.
35192         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
35193         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
35194         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
35195         atol(3)).
35196         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
35197         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
35198         strtoul(3)).
35199         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
35200         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
35201         $(ID3_CFLAGS).
35202         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
35203         $(LIBFAME_CFLAGS).
35204
35205 2004-04-20  David Schleef  <ds@schleef.org>
35206
35207         * gst/realmedia/rmdemux.c:  This was supposed to part of the
35208         last checkin.  Same idea.
35209
35210 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
35211
35212         reviewed by David Schleef
35213
35214         * configure.ac: bump required gstreamer version to 0.8.1.1
35215         because of following changes [--ds]
35216
35217         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
35218         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
35219         (gst_riff_read_header):  Use GST_READ_UINT*
35220         macros to access possibly unaligned memory.
35221
35222         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
35223         (mp3_type_find):  Use GST_READ_UINT*
35224         macros to access possibly unaligned memory.
35225         (mp3_type_find, mpeg1_parse_header, qt_type_find)
35226         (speex_type_find): Likewise
35227
35228         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
35229
35230         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
35231         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
35232         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
35233         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
35234         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
35235         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
35236         macros to access possibly unaligned memory.
35237
35238         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
35239         Likewise.
35240
35241         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
35242         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
35243
35244         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
35245         Likewise.
35246
35247         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
35248         (gst_mpeg2subt_chain_subtitle): Likewise.
35249
35250         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
35251         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
35252         Likewise.
35253
35254         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
35255         Likewise.
35256
35257         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
35258         Likewise.
35259
35260         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
35261         Likewise.
35262
35263 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35264
35265         * configure.ac:
35266           update required version of GStreamer because of GST_TIME_FORMAT
35267
35268 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35269
35270         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
35271           remove leftover g_print
35272         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
35273           don't try setting only a subset of the caps. We don't want to kill
35274           autoplugging on purpose
35275
35276 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35277
35278         * sys/ximage/ximagesink.c: (plugin_init):
35279         * sys/xvimage/xvimagesink.c: (plugin_init):
35280           add debugging categories
35281
35282 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35283
35284         * po/en_GB.po:
35285         * po/LINGUAS:
35286           Adding en_GB translation (Gareth Owen)
35287
35288 2004-04-20  David Schleef  <ds@schleef.org>
35289
35290         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
35291         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
35292         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
35293         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
35294         A number of new features and hacks to extract the esds atom and
35295         put it into the caps.  (bug #137724)
35296
35297 2004-04-19  David Schleef  <ds@schleef.org>
35298
35299         * gconf/Makefile.am: Fix for non-GNU make
35300         * gst-libs/gst/Makefile.am: Change directory order to handle
35301         GstPlay linking with gstinterfaces
35302         * gst-libs/gst/audio/make_filter: make use of tr portable
35303         * gst-libs/gst/play/Makefile.am: Add intended \
35304         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
35305         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
35306         function prototype instead of void *.
35307         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
35308         macro.
35309         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35310         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
35311         * gst/videofilter/make_filter: make use of tr portable
35312         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
35313
35314 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
35315
35316         * po/LINGUAS:
35317         * po/uk.po:
35318           Added Ukrainian translation (Maxim V. Dziumanenko)
35319
35320 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35321
35322         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
35323         (gst_gsmdec_link), (gst_gsmdec_chain):
35324           Fix capsnego, simplify chain function slightly.
35325         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
35326           Add GSM.
35327
35328 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35329
35330         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
35331         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
35332         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
35333           Hack to make wavparse work with spider (always -> sometimes pad).
35334           Fixes #135862 && #140411.
35335
35336 2004-04-18  Benjamin Otte  <otte@gnome.org>
35337
35338         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
35339         (gst_osselement_rate_probe_check),
35340         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
35341           get rid of \n in debug output
35342
35343 2004-04-17  Iain <iain@prettypeople.org>
35344
35345         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
35346         not just EOS.
35347
35348 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35349
35350         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
35351         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
35352         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
35353         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
35354         (gst_id3_tag_src_link), (gst_id3_tag_chain),
35355         (gst_id3_tag_change_state), (plugin_init):
35356           deprecate id3tag element and replace with id3demux/id3mux.
35357           great side effect: this ugly file is now even uglier, yay!
35358         * ext/mad/gstmad.h:
35359           remove non-available function
35360           update for new get_type
35361
35362 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35363
35364         * configure.ac:
35365           require mpeg2dec >= 0.4.0
35366
35367 2004-04-17  Benjamin Otte  <otte@gnome.org>
35368
35369         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35370         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
35371         (gst_xvimagesink_set_xwindow_id):
35372           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
35373           assorted cleanup fixes.
35374
35375 2004-04-16  David Schleef  <ds@schleef.org>
35376
35377         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
35378         * sys/xvimage/xvimagesink.h: same
35379
35380 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
35381
35382         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
35383           Fix GST_ELEMENT_ERROR with (NULL)
35384
35385 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35386
35387         * gst-libs/gst/riff/riff-media.c:
35388         (gst_riff_create_video_caps_with_data):
35389           Add div[3456] as fourccs for DivX 3 (fixes #140137).
35390
35391 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35392
35393         * gst-libs/gst/riff/riff-media.c:
35394         (gst_riff_create_video_caps_with_data),
35395         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
35396         (gst_riff_create_video_template_caps),
35397         (gst_riff_create_audio_template_caps):
35398         * gst-libs/gst/riff/riff-media.h:
35399         * gst-libs/gst/riff/riff-read.c:
35400         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
35401         * gst-libs/gst/riff/riff-read.h:
35402         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
35403           Add MS RLE support. I added some functions to read out strf chunks
35404           into strf chunks and the data behind it. This is usually color
35405           palettes (as in RLE, but also in 8-bit RGB). Also use those during
35406           caps creation. Lastly, add ADPCM (similar to wavparse - which
35407           should eventually be rifflib based).
35408         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
35409         (gst_matroska_demux_init), (gst_matroska_demux_reset):
35410         * gst/matroska/matroska-demux.h:
35411           Remove placeholders for some prehistoric tagging system. Didn't add
35412           support for any tag system really anyway.
35413         * gst/qtdemux/qtdemux.c:
35414           Add support for audio/x-m4a (MPEG-4) through spider.
35415         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
35416         (gst_wavparse_loop):
35417           ADPCM support (#135862). Increase max. buffer size because we
35418           cannot split buffers for ADPCM (screws references) and I've seen
35419           files with 2048 byte chunks. 4096 seems safe for now.
35420
35421 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
35422
35423         * configure.ac: bump nano to 1
35424
35425 === release 0.8.1 ===
35426
35427 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
35428
35429         * configure.ac: releasing 0.8.1, "Comforting Sounds"
35430
35431 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35432
35433         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
35434           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
35435           Fixes #140058
35436
35437 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
35438
35439         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
35440           lower rank of dvddemux so that it's not used for mpeg playback.
35441
35442 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35443
35444         * configure.ac:
35445           save libs correctly when checking mad
35446
35447 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
35448
35449         * ext/mad/gstid3tag.c: (plugin_init):
35450           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
35451
35452 2004-04-13  David Schleef  <ds@schleef.org>
35453
35454         * common/m4/gst-feature.m4: Call -config scripts with
35455         --plugin-libs if it is supported.
35456         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
35457         JPEG images are image/jpeg.
35458         * gst/debug/Makefile.am:
35459         * gst/debug/negotiation.c: (gst_negotiation_class_init),
35460         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
35461         (gst_negotiation_update_caps), (gst_negotiation_get_property),
35462         (gst_negotiation_plugin_init): Add a property that acts like
35463         filter caps.
35464         * testsuite/gst-lint:  Move license checking to be a standard
35465         test.
35466
35467 2004-04-13  David Schleef  <ds@schleef.org>
35468
35469         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
35470         patch from Sebastien Cote (bug #139958)
35471
35472 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35473
35474         * examples/gstplay/Makefile.am:
35475         * examples/gstplay/player.c: (main):
35476           make the commandline player example use gconf settings
35477
35478 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35479
35480         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
35481         (gst_cacasink_sinkconnect), (gst_cacasink_init),
35482         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
35483           init/end library during state transition, not object
35484           creation/disposal.  get rid of custom dispose handler.
35485
35486
35487 2004-04-12  Christian Schaller <Uraeus@gnome.org>
35488
35489         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
35490         be a symlink
35491
35492 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35493
35494         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
35495           Handle JUNK chunks inside data section. Prevents warnings.
35496
35497 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35498
35499         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
35500         (gst_riff_create_video_template_caps):
35501           Add MS video v1.
35502         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
35503         (gst_avi_demux_stream_data):
35504           Add support for "rec-list" chunks.
35505
35506 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35507
35508         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
35509           Fix another codecname mismatch.
35510
35511 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35512
35513         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
35514           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
35515           so that MJPEG plays back.
35516
35517 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35518
35519         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
35520         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
35521         * gst/mpeg1videoparse/gstmp1videoparse.h:
35522           Fix for some slight mis-cuts in buffer parsing, and for some
35523           potential overflows or faults-causers. Adds disconts. Also fixes
35524           #139105 while we're at it.
35525
35526 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35527
35528         * configure.ac:
35529         * sys/v4l2/gstv4l2element.h:
35530           Workaround for missing struct v4l2_buffer declaration in Suse 9
35531           and Mandrake 10 linux/videodev2.h header file (#135919).
35532
35533 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35534
35535         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
35536           Bail out if no filename was given.
35537
35538 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35539
35540         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
35541         (gst_v4l2_fourcc_from_structure):
35542           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
35543           Y41B somewhere).
35544
35545 2004-04-09  Benjamin Otte  <otte@gnome.org>
35546
35547         * ext/gnomevfs/gstgnomevfssink.c:
35548         (_gst_boolean_allow_overwrite_accumulator),
35549         (gst_gnomevfssink_class_init):
35550           fix erase signal - if any handler returns false the file will not be
35551           overwritten. If no handler is connected, the file will not be
35552           overwritten either.
35553           renamed signal to "allow-overwrite"
35554         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
35555           free string when adding it to ID3 failed
35556         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35557           unref event when done
35558         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35559           free caps
35560         * gst/typefind/gsttypefindfunctions.c:
35561         (mpeg_video_stream_type_find):
35562           fix invalid read
35563
35564 2004-04-08  David Schleef  <ds@schleef.org>
35565
35566         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35567         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
35568
35569 2004-04-08  David Schleef  <ds@schleef.org>
35570
35571         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
35572         we don't support (bug #139532)
35573
35574 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
35575
35576         * ext/mad/gstmad.c: (gst_mad_handle_event),
35577         (gst_mad_check_caps_reset), (gst_mad_chain),
35578         (gst_mad_change_state):
35579           only set explicit caps if they haven't been set before for
35580           this stream.  MPEG-audio sample rate/channels aren't allowed
35581           to change in-stream.
35582           Fixes #139382
35583
35584 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35585
35586         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
35587         (_gst_boolean_did_something_accumulator),
35588         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
35589         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
35590         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
35591         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
35592         (gst_gnomevfssink_change_state):
35593           Fix erase signal. Don't erase by default. Remove handoff signal.
35594           Remove erase property. Don't segfault. General cleanup.
35595
35596 2004-04-07  Benjamin Otte  <otte@gnome.org>
35597
35598         * gst-libs/gst/gconf/test-gconf.c: (main):
35599           add missing gst_init
35600
35601 2004-04-07  Benjamin Otte  <otte@gnome.org>
35602
35603         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
35604           free the mutexes, too
35605
35606 2004-04-07  Benjamin Otte  <otte@gnome.org>
35607
35608         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
35609           actually free the URI string
35610         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
35611           compute offset correctly when passing discont events
35612         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
35613           don't leak discont events
35614         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
35615           add some missing breaks so caps aren't copied randomly
35616         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
35617           if we realloc memory, we better use it
35618
35619 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35620
35621         * ext/mad/gstmad.c: (normal_seek):
35622           fix GST_FORMAT_TIME usage
35623
35624 2004-04-05  David Schleef  <ds@schleef.org>
35625
35626         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
35627         a deprecated function (hack!)
35628
35629 2004-04-05  Benjamin Otte  <otte@gnome.org>
35630
35631         * ext/esd/esdmon.c: (gst_esdmon_get):
35632           fix nonterminated vararg and memleak
35633
35634 2004-04-05  Benjamin Otte  <otte@gnome.org>
35635
35636         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
35637         (gst_ladspa_init), (gst_ladspa_force_src_caps),
35638         (gst_ladspa_set_property), (gst_ladspa_get_property),
35639         (gst_ladspa_instantiate), (gst_ladspa_activate),
35640         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
35641           clean up debugging
35642
35643 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
35644
35645         reviewed by Benjamin Otte  <otte@gnome.org>
35646
35647         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
35648           check for broken LADSPA parameters (fixes #138635)
35649
35650 2004-04-05  Benjamin Otte  <otte@gnome.org>
35651
35652         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
35653           advertise buffer-frames correctly on sinkpads
35654
35655 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35656
35657         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
35658         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
35659         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
35660         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
35661         (gst_mad_check_caps_reset), (gst_mad_chain):
35662         add more debugging, only reset caps when we're not in error state
35663
35664 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35665
35666         * ext/mad/gstmad.c: add debugging category, comment + cleanups
35667
35668 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
35669
35670         reviewed by Benjamin Otte  <otte@gnome.org>
35671
35672         * configure.ac:
35673           fix == in test(1) operator
35674
35675 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
35676
35677         reviewed by Benjamin Otte  <otte@gnome.org>
35678
35679         * configure.ac:
35680           fix --export-symblos-regex to a working regex.
35681
35682 2004-04-04  Benjamin Otte  <otte@gnome.org>
35683
35684         * sys/oss/.cvsignore:
35685           add for oss_probe
35686
35687 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
35688
35689         reviewed by Benjamin Otte  <otte@gnome.org>
35690
35691         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
35692           add missing 'new_media' argument (fixes #138168)
35693         * gst/matroska/matroska-demux.c:
35694         (gst_matroska_demux_handle_seek_event):
35695           add vararg terminator (fixes #138169)
35696
35697 2004-04-02  David Schleef  <ds@schleef.org>
35698
35699         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
35700         disted (bug #138914)
35701
35702 2004-04-01  Benjamin Otte  <otte@gnome.org>
35703
35704         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
35705         (gst_alsa_close_audio):
35706           handle case better where a soundcard can't pause
35707         * ext/ogg/gstoggdemux.c:
35708           don't crash when we get events but don't have pads yet
35709
35710 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
35711
35712         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
35713           throw an error if we couldn't probe any caps.
35714
35715 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
35716
35717         * ext/dvdnav/gst-dvd:
35718         Add a really simple sample DVD player
35719
35720 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
35721
35722         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
35723         (gst_a52dec_push), (gst_a52dec_handle_event),
35724         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
35725         (gst_a52dec_change_state):
35726         * ext/a52dec/gsta52dec.h:
35727           Use a debug category, Output timestamps correctly
35728           Emit tag info, Handle events, tell liba52dec about cpu
35729           capabilities so it can use MMX etc.
35730         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
35731           Fix a crasher accessing invalid memory
35732         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
35733         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
35734         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
35735         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
35736         (dvdnavsrc_query):
35737           Some support for byte-format seeking.
35738           Small fixes for still frames and menu button overlays
35739         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
35740         (gst_mpeg2dec_alloc_buffer):
35741           Use a debug category. Adjust the report level of several items to
35742           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
35743           so it doesn't lose the GstBuffer pointer
35744         * gst/debug/Makefile.am:
35745         * gst/debug/gstdebug.c: (plugin_init):
35746         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
35747         (gst_navseek_base_init), (gst_navseek_class_init),
35748         (gst_navseek_init), (gst_navseek_seek),
35749         (gst_navseek_handle_src_event), (gst_navseek_set_property),
35750         (gst_navseek_get_property), (gst_navseek_chain),
35751         (gst_navseek_plugin_init):
35752         * gst/debug/gstnavseek.h:
35753           Add the navseek debug element for seeking back and forth in a
35754           video stream using arrow keys.
35755         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
35756         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
35757         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
35758         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
35759         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
35760         (gst_mpeg2subt_parse_header), (gst_get_nibble),
35761         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
35762         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
35763         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
35764         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
35765         * gst/mpeg2sub/gstmpeg2subt.h:
35766           Pretty much a complete rewrite. Now a loopbased element. May still
35767           require work to properly synchronise subtitle buffers.
35768         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
35769         (gst_dvd_demux_send_subbuffer):
35770         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
35771           Don't attempt to create subbuffers of size 0
35772           Reduce a couple of error outputs to warnings.
35773         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
35774         (gst_y4mencode_chain):
35775         Output the y4m frame header correctly.
35776
35777 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
35778
35779         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
35780           throw errors instead of allowing SIGFPE
35781
35782 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
35783
35784         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
35785         (gst_gconf_render_bin_from_key):
35786           leak plugging and style fixing
35787
35788 2004-03-31  David Schleef  <ds@schleef.org>
35789
35790         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
35791         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
35792         (bug #138225)
35793         * gst/debug/Makefile.am:
35794         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
35795         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
35796         plugin.
35797         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
35798         (gst_negotiation_base_init), (gst_negotiation_class_init),
35799         (gst_negotiation_init), (gst_negotiation_getcaps),
35800         (gst_negotiation_pad_link), (gst_negotiation_chain),
35801         (gst_negotiation_set_property), (gst_negotiation_get_property),
35802         (gst_negotiation_plugin_init):  New element to talk about random
35803         negotiation things happening in a pipeline.
35804
35805 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
35806
35807         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
35808           fix integer addition with help of Stefan Kost
35809
35810 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
35811
35812         * po/nl.po: updated Dutch translation (Elros Cyriatan)
35813
35814 2004-03-30  David Schleef  <ds@schleef.org>
35815
35816         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
35817         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
35818         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
35819         (bug #137504)
35820         * ext/mpeg2dec/gstmpeg2dec.h:
35821
35822 2004-03-30  David Schleef  <ds@schleef.org>
35823
35824         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
35825
35826 2004-03-30  David Schleef  <ds@schleef.org>
35827
35828         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
35829         Michael Petullo) to handle .mov
35830
35831 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35832
35833         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
35834         (gst_osselement_rate_check_rate):
35835           probe caps correctly for sound cards that only support one format
35836
35837 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35838
35839         * ext/kio/kiosrc.cpp: (process_events):
35840           update handling event processing if inside KDE - untested
35841
35842 2004-03-29  David Schleef  <ds@schleef.org>
35843
35844         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
35845         by 2 to not interfere with other colorspaces.
35846         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
35847         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
35848         one to not interfere with ffmpeg_colorspace.
35849
35850 2004-03-29  David Schleef  <ds@schleef.org>
35851
35852         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
35853         aren't in the caps.
35854         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
35855         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
35856
35857 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35858
35859         * gst-libs/gst/riff/riff-media.c:
35860           fail on error, don't try to set stuff on NULL caps
35861
35862 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35863
35864         * configure.ac:
35865         * ext/Makefile.am:
35866         * ext/kio/Makefile.am:
35867         * ext/kio/kioreceiver.cpp:
35868         * ext/kio/kioreceiver.h:
35869         * ext/kio/kiosrc.cpp:
35870         * ext/kio/kiosrc.h:
35871           add experimental kiosrc plugin
35872         * ext/alsa/gstalsaplugin.c: (plugin_init):
35873           initialize debugging category only when we're sure registering the
35874           plugins worked.
35875
35876 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
35877
35878         * examples/gstplay/player.c: (main):
35879         * gst-libs/gst/play/play.c: (gst_play_class_init),
35880         (gst_play_set_location), (gst_play_set_data_src),
35881         (gst_play_set_video_sink), (gst_play_set_audio_sink),
35882         (gst_play_set_visualization), (gst_play_connect_visualization):
35883           check return values of element_set_state and return FALSE where
35884           failed
35885
35886 2004-03-29  Benjamin Otte  <otte@gnome.org>
35887
35888         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
35889           try harder to check if an event is really a discont
35890
35891 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
35892
35893         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
35894         * po/az.po:
35895
35896 2004-03-28  Benjamin Otte  <otte@gnome.org>
35897
35898         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
35899         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
35900         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
35901           get rid of non-standard "..." ranges in case statements.
35902
35903 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
35904
35905         * gst/mpegstream/gstmpegdemux.c:
35906         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
35907         specific functionality split to the new dvddemux element.
35908         * gst/mpegstream/gstdvddemux.c:
35909         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
35910         streams, derived from mpegdemux.
35911         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
35912         up. SCR based timestamp rewriting can be turned off (will probably
35913         completely disappear soon).
35914         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
35915         hacking. General cleanup. All printf statements replaced by
35916         debugging messages. Almost complete libdvdnav support.
35917         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
35918         by events. New properties for audio and subpicture languages.
35919         (dvdnavsrc_update_highlight): Now uses events.
35920         (dvdnavsrc_user_op): Cleaned up.
35921         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
35922         based). Lots of cleanup, and propper support for most libdvdnav
35923         events.
35924         (dvdnavsrc_make_dvd_event): New function.
35925         (dvdnavsrc_make_dvd_nav_packet_event): New function.
35926         (dvdnavsrc_make_clut_change_event): New function.
35927
35928 2004-03-26  Benjamin Otte  <otte@gnome.org>
35929
35930         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
35931           fix bug where typefinding would claim it's theora whenever less then
35932           7 bytes of data were available
35933
35934 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35935
35936         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
35937         (gst_alawdec_base_init), (gst_alawdec_class_init),
35938         (gst_alawdec_init), (gst_alawdec_chain):
35939         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
35940         (gst_alawenc_base_init), (gst_alawenc_class_init),
35941         (gst_alawenc_init), (gst_alawenc_chain):
35942         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
35943         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
35944         (gst_mulawdec_init), (gst_mulawdec_chain):
35945         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
35946         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
35947         (gst_mulawenc_init), (gst_mulawenc_chain):
35948           Fix capsnego in all four, remove the unused property functions and
35949           simplify the chain functions slightly. I guess we could use macros
35950           or something similar for those, since the code is so similar, but
35951           I'm currently too lazy...
35952
35953 2004-03-24  David Schleef  <ds@schleef.org>
35954
35955         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
35956         (gst_osselement_close_audio), (gst_osselement_probe_caps),
35957         (gst_osselement_get_format_structure),
35958         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
35959         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
35960         (gst_osselement_rate_int_compare): Add code to handle rate probing
35961         (bug #120883)
35962         * sys/oss/gstosselement.h: same
35963         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
35964         Use rate probing provided by osselement.
35965         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
35966
35967 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35968
35969         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
35970         (gst_xvidenc_get_property):
35971           ulong/int mess-up.
35972
35973 2004-03-24  David Schleef  <ds@schleef.org>
35974
35975         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
35976         (gst_speexdec_init):
35977         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
35978         (gst_speexenc_init):  Create the pad template correctly (from
35979         the static pad template, not a NULL pointer.)
35980
35981 2004-03-25  Benjamin Otte  <otte@gnome.org>
35982
35983         * gst/debug/Makefile.am:
35984         * gst/debug/breakmydata.c:
35985           add element that quasi-randomly changes bytes in the stream.
35986           Intended use is robustness checking of demuxers and decoders in
35987           media tests.
35988
35989 2004-03-24  Benjamin Otte  <otte@gnome.org>
35990
35991         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
35992         (gst_alsa_probe_hw_params):
35993         * ext/alsa/gstalsa.h:
35994           debugging output fixes
35995
35996 2004-03-24  Benjamin Otte  <otte@gnome.org>
35997
35998         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
35999           don't g_return_if_fail if element is PLAYING, fail silently as every
36000           other element.
36001         * gst/effectv/gstquark.c: (gst_quarktv_chain):
36002           only fix needed for cast lvalue issues in gst-plugins
36003         * gst/volenv/gstvolenv.c: (gst_volenv_init):
36004           add proxy_getcaps
36005
36006 2004-03-24  Benjamin Otte  <otte@gnome.org>
36007
36008         * gst/level/gstlevel.c: (gst_level_init):
36009           add proxying getcaps function, so level doesn't advertise impossible
36010           caps
36011
36012 2004-03-24  David Schleef  <ds@schleef.org>
36013
36014         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36015         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
36016         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
36017         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
36018         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
36019         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
36020         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
36021         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
36022         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
36023         messages.  Divide the chunk size by the compression ratio
36024         (needed for MACE audio)
36025
36026 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36027
36028         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36029           Fix buffer overflow read error.
36030
36031 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36032
36033         * ext/alsa/gstalsa.h:
36034           Remove unused entry.
36035         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36036           Add cinepak.
36037         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
36038         (gst_videodrop_link), (gst_videodrop_chain):
36039           Fix, sort of. Was horribly broken with new capsnego. Bah...
36040
36041 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
36042
36043         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
36044         (plugin_init):
36045         Add a monkeysaudio typefind function
36046
36047 2004-03-23  Johan Dahlin  <johan@gnome.org>
36048
36049         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
36050         (gst_play_video_fixate): Check so the structure has the field
36051         before trying to fixate them, this makes it possible to have
36052         fakesinks for video and audio output without printing errors on
36053         the output console.
36054
36055 2004-03-22  David Schleef  <ds@schleef.org>
36056
36057         * sys/oss/Makefile.am:
36058         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
36059         (check_rate), (add_rate):  Rate probing test app.
36060
36061 2004-03-21  Benjamin Otte  <otte@gnome.org>
36062
36063         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
36064         (_fixate_caps_to_int), (gst_audio_convert_fixate):
36065           add a fixation function that pretty much does the right thing (fixes
36066           #137556)
36067
36068 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
36069
36070         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
36071
36072 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
36073
36074         reviewed by: Benjamin Otte  <otte@gnome.org>
36075
36076         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
36077           terminate gst_event_new_discontinuous correctly (fixes parts of
36078           #137711)
36079
36080 2004-03-19  David Schleef  <ds@schleef.org>
36081
36082         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
36083         since it doesn't depend on X, and it's part of our ABI.
36084
36085 2004-03-19  Iain <iain@prettypeople.org>
36086
36087         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
36088         is_int in the structure, not the local variable.
36089
36090 2004-03-19  David Schleef  <ds@schleef.org>
36091
36092         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
36093         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
36094         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
36095         Improvements in caps negotiation.
36096
36097 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36098
36099         * po/LINGUAS:
36100         * po/af.po:
36101           adding Afrikaans (Petri Jooste)
36102
36103 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36104
36105         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36106         (gst_ffmpegcolorspace_chain):
36107         throw error instead of g_critical (#137588)
36108
36109 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36110
36111         * Makefile.am:
36112         * configure.ac:
36113           dist common and m4 correctly
36114         * po/sv.po:
36115
36116 2004-03-17  David Schleef  <ds@schleef.org>
36117
36118         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
36119         (bug #137348)
36120
36121 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36122
36123         * po/LINGUAS:
36124         * po/sv.po:
36125           adding Swedish translation (Christian Rose)
36126
36127 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36128
36129         * Makefile.am: use release.mak
36130
36131 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36132
36133         * common/ChangeLog:
36134         * common/gst-autogen.sh:
36135           add some explanation about the version detection
36136         * configure.ac:
36137           fix X check
36138
36139 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36140
36141         * configure.ac: bump nano to 1
36142
36143 === release 0.8.0 ===
36144
36145 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36146
36147         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
36148
36149 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36150
36151         * configure.ac:
36152           update libtool version
36153         * gst-libs/gst/media-info/Makefile.am:
36154           actually use libtool version
36155
36156 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36157
36158         * configure.ac: fix speex detection to work with 1.0 but not 1.1
36159
36160 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36161
36162         * configure.ac:
36163         * gst-plugins.spec.in:
36164         * pkgconfig/Makefile.am:
36165         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
36166         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
36167         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
36168         * pkgconfig/gstreamer-libs.pc.in:
36169         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
36170         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36171         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
36172         * pkgconfig/gstreamer-plugins.pc.in:
36173           remove @VERSION@ from some of the pc files since core and plugins
36174           are decoupled.
36175           created gstreamer-plugins.pc as it's a better name, but keeping
36176           -libs around for now to get fixes upstream done first.
36177
36178 2004-03-15  Julien MOUTTE <julien@moutte.net>
36179
36180         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
36181         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
36182         * gst-libs/gst/play/play.h:
36183
36184 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36185
36186         * *.c, *.cc: don't mix tabs and spaces
36187
36188 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36189
36190         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
36191           use the new ffmpegcolorspace
36192         * gst-plugins.spec.in:
36193           package new colorspace and media-info
36194         * configure.ac:
36195         * pkgconfig/Makefile.am:
36196           fix some more disting issues
36197         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
36198         * pkgconfig/gstreamer-media-info.pc.in:
36199           generate media-info pc files
36200
36201 2004-03-15  Johan Dahlin  <johan@gnome.org>
36202
36203         * *.h: Revert indenting
36204
36205 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36206
36207         * configure.ac:
36208           adding ffmpegcolorspace element
36209         * gst/ffmpegcolorspace/Makefile.am:
36210         * gst/ffmpegcolorspace/avcodec.h:
36211         * gst/ffmpegcolorspace/common.h:
36212         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
36213         * gst/ffmpegcolorspace/dsputil.h:
36214         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
36215         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
36216         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
36217         (gst_ffmpeg_caps_to_pix_fmt):
36218         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
36219         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36220         (gst_ffmpegcolorspace_caps_remove_format_info),
36221         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
36222         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
36223         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
36224         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
36225         (gst_ffmpegcolorspace_set_property),
36226         (gst_ffmpegcolorspace_get_property),
36227         (gst_ffmpegcolorspace_register):
36228         * gst/ffmpegcolorspace/imgconvert.c:
36229         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
36230         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
36231         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
36232         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
36233         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
36234         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
36235         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
36236         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
36237         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
36238         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
36239         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
36240         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
36241         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
36242         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
36243         (img_get_alpha_info), (deinterlace_line),
36244         (deinterlace_line_inplace), (deinterlace_bottom_field),
36245         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
36246         * gst/ffmpegcolorspace/imgconvert_template.h:
36247         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
36248         * gst/ffmpegcolorspace/mmx.h:
36249         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
36250           adding ffmpegcolorspace element supplied by Ronald after cleaning
36251           up and pulling in the right bits of upstream source.
36252           I'm sure a better C/compiler wizard could do some cleaning up (for
36253           example use GLIB's malloc stuff), but as a first pass this
36254           works very well
36255
36256 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36257
36258         * ext/alsa/gstalsa.h:
36259           I assume Ronald forgot to commit the change to have cardname
36260           as a struct member.  Expect some public spanking at the next
36261           opportunity.
36262
36263 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36264
36265         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
36266         (gst_alsa_open_audio), (gst_alsa_close_audio):
36267         * ext/alsa/gstalsa.c:
36268           Don't open the device if we're a mixer (= padless).
36269         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
36270         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
36271         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
36272           Open mixer during state change rather than during object
36273           initialization. Also, get a device name. Currently in a somewhat
36274           hackish fashion, but I didn't really find something better.
36275
36276 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36277
36278         * *.c, *.h: run gst-indent
36279
36280 2004-03-14  Benjamin Otte  <otte@gnome.org>
36281
36282         * gst/modplug/gstmodplug.cc:
36283         * gst/modplug/gstmodplug.h:
36284           set correct timestamps on outgoing buffers
36285
36286 2004-03-14  Benjamin Otte  <otte@gnome.org>
36287
36288         * gst/modplug/gstmodplug.cc:
36289           handle events - don't do crap when a discont arrives that's not
36290           necessary
36291           This allows correct loading and playback of mods in Rhythmbox
36292
36293 2004-03-14  Benjamin Otte  <otte@gnome.org>
36294
36295         * configure.ac:
36296         * gst-libs/gst/gconf/Makefile.am:
36297         * pkgconfig/Makefile.am:
36298           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
36299           they get rebuilt properly
36300         * configure.ac:
36301           when checking for vorbis, try pkgconfig first.
36302         * gst/modplug/gstmodplug.cc:
36303           add fixate function
36304
36305 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36306
36307         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
36308           Fix for obvious mistake, where we first shift the offset and then
36309           read a samplesize element assuming the old offset. Note that this
36310           part still has something weird, i.e. my movies containing those
36311           don't actually play well, but at least there's something that looks
36312           like sound now.
36313
36314 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
36315         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
36316         (plugin_init):
36317         Add a typefind function for speex format
36318
36319 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36320
36321         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
36322         (gst_asf_demux_setup_pad):
36323           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
36324           instead of 0. Reason is simple: some elements have a fps range
36325           of 1-max instead of 0-max. So now ASF video actually works.
36326
36327 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36328
36329         * po/LINGUAS:
36330         * po/sr.po:
36331           adding serbian as a language
36332
36333 2004-03-13  Benjamin Otte  <otte@gnome.org>
36334
36335         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
36336           return taglist correctly from _get function, don't gst_pad_push it.
36337           (fixes #137042)
36338
36339 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
36340         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36341
36342 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36343
36344         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
36345         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
36346         (gst_alsa_mixer_track_new):
36347         * ext/alsa/gstalsamixertrack.h:
36348           Fix ancient leftovers... MixerTrack is a GObject.
36349
36350 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36351
36352         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36353         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
36354           Don't block during probing...
36355
36356 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36357
36358         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
36359         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
36360         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
36361         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
36362         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
36363         (gst_alsa_open_audio), (gst_alsa_close_audio):
36364         * ext/alsa/gstalsa.h:
36365           Add propertyprobe interface implementation, add some device-name
36366           property, all this so that it looks good in gnome-volume-control.
36367
36368 2004-03-12  David Schleef  <ds@schleef.org>
36369
36370         * configure.ac: the Hermes library controls hermescolorspace, not
36371         colorspace.
36372         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
36373         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
36374         not /* */
36375         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
36376         * ext/sdl/sdlvideosink.h: ditto.
36377         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
36378
36379 2004-03-12  Benjamin Otte  <otte@gnome.org>
36380
36381         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
36382         (gst_x_overlay_got_xwindow_id):
36383         * gst-libs/gst/xoverlay/xoverlay.h:
36384           replace XID with unsigned long to get rid of the xlibs dependency in
36385           XOverlay (fixes #137004)
36386
36387 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
36388         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
36389         (gst_agingtv_setup):
36390         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
36391         (gst_dicetv_base_init), (gst_dicetv_class_init),
36392         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
36393         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
36394         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
36395         (gst_edgetv_setup), (gst_edgetv_rgb32):
36396         * gst/effectv/gsteffectv.c:
36397         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
36398         (gst_quarktv_set_property):
36399         * gst/effectv/gstrev.c: (gst_revtv_get_type),
36400         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
36401         (gst_revtv_setup), (gst_revtv_rgb32):
36402         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
36403         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
36404         (gst_shagadelictv_init), (gst_shagadelictv_setup),
36405         (gst_shagadelictv_rgb32):
36406         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
36407         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
36408         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
36409         * gst/effectv/gstwarp.c:
36410         Port everything that can be ported to videofilter and fix up the caps.
36411         Can someone with a big-endian machine please check these?
36412
36413 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36414
36415         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
36416         (gst_osssink_chain), (gst_osssink_change_state):
36417           Latest fixes for A/V sync, audio playback and such. This is about
36418           all... MPEG playback issues are mostly related to the async build-
36419           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
36420
36421 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
36422
36423         patch from: Stephane Loeuillet
36424
36425         * configure.ac:
36426           use pkg-config for some libraries, falling back to the old .m4 way
36427           (fixes #131270)
36428         * m4/libdv.m4:
36429           removed
36430
36431 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
36432
36433         * configure.ac:
36434         * tools/Makefile.am:
36435         * tools/Makefile.in:
36436         * tools/gst-launch-ext-m.m:
36437         * tools/gst-launch-ext.1.in:
36438         * tools/gst-visualise-m.m:
36439         * tools/gst-visualise.1:
36440         * tools/gst-visualise.1.in:
36441           reorganizing generation of script tools
36442
36443 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36444
36445         * ext/divx/gstdivxdec.c:
36446           Downgrade priority. We prefer ffdec_mpeg4.
36447         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
36448         (gst_faad_chain), (gst_faad_change_state):
36449           Fix capsnego. Doesn't work for some sounds because we don't have
36450           a 5:1 to stereo element.
36451         * ext/xvid/gstxvid.c: (plugin_init):
36452           Add priority.
36453         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
36454         (gst_osssink_change_state):
36455           Add discont handling.
36456
36457 2004-03-09  Colin Walters  <walters@verbum.org>
36458
36459         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
36460         conversion.
36461
36462 2004-03-09  Benjamin Otte  <otte@gnome.org>
36463
36464         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
36465           the signals take 2 arguments
36466
36467 2004-03-09  David Schleef  <ds@schleef.org>
36468
36469         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
36470         (gst_alsa_fixate): Add fixate function.  (bug #136686)
36471         * ext/alsa/gstalsa.h:
36472         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
36473
36474 2004-03-09  Benjamin Otte  <otte@gnome.org>
36475
36476         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
36477         (gst_mikmod_change_state):
36478         * ext/mikmod/gstmikmod.h:
36479           make mikmod's loop function not loop infinitely and call
36480           gst_element_yield anymore
36481         * gst/modplug/gstmodplug.cc:
36482           fix pad negotiation (fixes #136590)
36483
36484 2004-03-09  David Schleef  <ds@schleef.org>
36485
36486         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
36487         doesn't conflict with the internal colorspace plugin.
36488         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
36489         satisfy the crappy-ass shell shipped by a certain vendor.
36490         * gst/videofilter/make_filter: same (bug #135299)
36491
36492 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36493
36494         * configure.ac: bump nano to 1
36495
36496 === release 0.7.6 ===
36497
36498 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36499
36500         * configure.in: releasing 0.7.6, "There"
36501
36502 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36503
36504         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36505         * pkgconfig/gstreamer-play.pc.in:
36506           synchronize the two
36507
36508 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36509
36510         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
36511         (cdparanoia_open), (cdparanoia_event):
36512           fix/add error handling
36513         * po/POTFILES.in:
36514           add cdparanoia source
36515         * tools/Makefile.am:
36516           make scripts executable
36517
36518 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36519
36520         * configure.ac:
36521         * ext/vorbis/Makefile.am:
36522         * sys/Makefile.am:
36523           remove id3types, vorbisfile and xvideosink from the build (#133783)
36524
36525 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36526
36527         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
36528           Fix metadata read crash (#136537).
36529
36530 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36531
36532         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
36533         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
36534           adding mime types, fixing the one-stop function
36535
36536 2004-03-08  Christian Schaller <Uraeus@gnome.org>
36537
36538         * ext/nas/nassink.c and /ext/nas/nassink.h:
36539         More NAS love from Arwed von Merkatz
36540         So lets all sing 'Can you feel the NAS tonight'
36541
36542 2004-03-08  Christian Schaller <Uraeus@gnome.org>
36543
36544         * tools/gst-launch-ext.in:
36545         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
36546
36547 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36548
36549         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
36550         (gst_mpeg2dec_init):
36551         remove the user_data pad for now, because it is being used in
36552         fixating causing MPEG playback to fixate on 1000 Hz for playback.
36553         If someone knows how to fix this properly, please do.
36554
36555 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36556
36557         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
36558         (gst_osssink_get_time):
36559         add a warning, IMO this won't get triggered anymore, remove later
36560
36561 2004-03-07  David Schleef  <ds@schleef.org>
36562
36563         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
36564         format (bug #136470)
36565
36566 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36567
36568         * gst-libs/Makefile.am:
36569         * gst-libs/gst/media-info/Makefile.am:
36570         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
36571         (error_callback), (gst_media_info_error_create),
36572         (gst_media_info_error_element), (gmip_init), (gmip_reset),
36573         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
36574         * gst-libs/gst/media-info/media-info-priv.h:
36575         * gst-libs/gst/media-info/media-info-test.c: (main):
36576         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
36577         (gst_media_info_class_init), (gst_media_info_instance_init),
36578         (gst_media_info_set_source), (gst_media_info_read_with_idler),
36579         (gst_media_info_read_idler), (gst_media_info_read):
36580         * gst-libs/gst/media-info/media-info.h:
36581         fixed, should work now
36582
36583 2004-03-07  Christian Schaller <Uraeus@gnome.org>
36584
36585         * ext/nas/nassink.c:
36586         A bunch of NAS fixes from Arwed von Merkatz
36587
36588 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36589
36590         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
36591         (qtdemux_parse_trak):
36592           Fix crash (j might be greater than n_samples, in which case we're
36593           writing outside the allocated space for the array) and memleak.
36594
36595 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36596
36597         * sys/oss/gstosssink.c: (gst_osssink_chain):
36598           And another caller that couldn't handle delay < 0 (unsigned
36599           integer overflow). Video now continues playing on an audio
36600           buffer underrun, and the clock continues working. Audio still
36601           stalls.
36602
36603 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36604
36605         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
36606         (gst_osssink_get_time):
36607           get_delay() may return values lower than 0. In those cases, we
36608           should not actually cast to *unsigned* int64, that will break
36609           stuff horribly. In my case, it screwed up A/V sync in movies
36610           in totem rather badly.
36611
36612 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
36613
36614         * ext/faac/gstfaac.c: (gst_faac_chain):
36615         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
36616         * ext/libpng/gstpngenc.c: (user_write_data):
36617         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
36618         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
36619         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
36620         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
36621         Fix several misuse of gst_buffer_merge (it doesn't take ownership
36622         of any buffer), should fix some leaks. I hope I didn't unref buffers
36623         that shouldn't be...
36624
36625 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
36626
36627         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
36628         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
36629         (error_callback), (gmi_reset), (gmi_seek_to_track),
36630         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
36631         (gmip_find_type_post), (gmip_find_stream_post),
36632         (gmip_find_track_streaminfo_post):
36633         * gst-libs/gst/media-info/media-info-priv.h:
36634         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
36635         (info_print), (main):
36636         * gst-libs/gst/media-info/media-info.c:
36637         (gst_media_info_error_create), (gst_media_info_error_element),
36638         (gst_media_info_instance_init), (gst_media_info_get_property),
36639         (gst_media_info_new), (gst_media_info_set_source),
36640         (gst_media_info_read_idler), (gst_media_info_read):
36641         * gst-libs/gst/media-info/media-info.h:
36642           first pass at making this work again.  This seems to work on
36643           tagged ogg/vorbis and mp3 files.
36644
36645 2004-03-06  Benjamin Otte  <otte@gnome.org>
36646
36647         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
36648           fix huge leak: gst_buffer_merge doesn't unref the first argument
36649           itself.
36650
36651 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
36652
36653         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
36654           report layer/mode/emphasis
36655
36656 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
36657
36658         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
36659
36660 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
36661
36662         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
36663           signal serial
36664
36665 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
36666
36667         * ext/vorbis/vorbis.c: (plugin_init):
36668         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
36669         (gst_vorbis_dec_init), (vorbis_dec_event):
36670         add debug category
36671         make vorbisdec handle _BYTE and _TIME queries
36672
36673 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
36674
36675         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
36676           from the xing header
36677
36678 2004-03-06  Benjamin Otte  <otte@gnome.org>
36679
36680         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
36681         (gst_audio_convert_link), (gst_audio_convert_change_state),
36682         (gst_audio_convert_buffer_from_default_format):
36683           do conversions from/to float correctly, fix some caps nego errors,
36684           export correct supported caps in template and getcaps, use correct
36685           caps in try_set_caps functions
36686
36687 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
36688
36689         For some reason, I only committed a ChangeLog entry yesterday and
36690         not the corresponding code...
36691         * ext/mad/gstmad.c: Fix detection of Xing headers
36692         * gst/tags/gstid3tag.c: Changes to support TLEN tags
36693
36694 2004-03-06  Benjamin Otte  <otte@gnome.org>
36695
36696         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
36697         (gst_ogg_demux_src_query):
36698           make sure to handle the case where there's no current chain
36699           gracefully.
36700
36701 2004-03-05  David Schleef  <ds@schleef.org>
36702
36703         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
36704         Add fixate function. (bug #131128)
36705         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
36706         (gst_sdlvideosink_fixate):  Add fixate function.
36707         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
36708         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
36709         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
36710         Fix missing break that was causing ulaw to be interpreted as
36711         raw int.
36712
36713 2004-03-05  David Schleef  <ds@schleef.org>
36714
36715         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
36716         Fix code that ignores return value of gst_buffer_merge().
36717         (bug #114560)
36718         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
36719         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
36720         * testsuite/gst-lint:  Check for above.
36721
36722 2004-03-05  David Schleef  <ds@schleef.org>
36723
36724         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
36725         caps and throw an element error.  (bug #136334)
36726
36727 2004-03-05  David Schleef  <ds@schleef.org>
36728
36729         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
36730         (gst_faad_chain): Fix negotiation.
36731         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
36732         key and button events.
36733         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
36734         dung heap of code.
36735         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
36736         depends on gconf
36737         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
36738         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
36739         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
36740         function to encourage better negotiation, particularly between
36741         audioconvert and osssink.
36742         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
36743         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
36744         more important.
36745         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
36746         typefinding.
36747         * gst/vbidec/vbiscreen.c:  Add glib header
36748         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
36749
36750 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
36751
36752         * ext/mad/gstmad.c: Fix detection of Xing headers
36753         * gst/tags/gstid3tag.c: Changes to support TLEN tags
36754
36755 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
36756
36757         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
36758         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
36759           debug updates
36760
36761 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
36762
36763         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
36764         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
36765         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
36766         files, and report the parsed length as a GST_TAG_DURATION tag.
36767         * gst/tags/gstid3tag.c: support TLEN (duration) tag
36768
36769 2004-03-05  Benjamin Otte  <otte@gnome.org>
36770
36771         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
36772           convert channels correctly. convert correctly to unsigned.
36773
36774 2004-03-05  Julien MOUTTE <julien@moutte.net>
36775
36776         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
36777         we have a window before clearing it.
36778
36779 2004-03-05  Julien MOUTTE <julien@moutte.net>
36780
36781         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
36782         have a window before clearing it.
36783
36784 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36785
36786         * gconf/gstreamer.schemas.in:
36787         * gst-libs/gst/gconf/Makefile.am:
36788           version installation path the same way as for 0.6
36789         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
36790         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
36791         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36792           remove comment that was fixed
36793
36794 2004-03-05  David Schleef  <ds@schleef.org>
36795
36796         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
36797         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
36798         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
36799         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
36800         Add prototype code for handling seeking and querying.
36801
36802 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36803
36804         * examples/gstplay/player.c: (main):
36805           Initialize variables to NULL. Prevents a segfault because the
36806           (uninitialized) variable is not NULL, resulting in a crash on
36807           trying to reach error->message.
36808
36809 2004-03-05  Benjamin Otte  <otte@gnome.org>
36810
36811         * gst/audioconvert/gstaudioconvert.c:
36812         (gst_audio_convert_buffer_to_default_format):
36813         make float=>int conversion work correctly even in cornercases.
36814
36815 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
36816
36817         * debian/README.Debian:
36818         * debian/build-deps:
36819         * debian/changelog:
36820         * debian/control:
36821         * debian/control.in:
36822         * debian/copyright:
36823         * debian/gstreamer-a52dec.files:
36824         * debian/gstreamer-aa.files:
36825         * debian/gstreamer-alsa.files:
36826         * debian/gstreamer-alsa.manpages:
36827         * debian/gstreamer-arts.files:
36828         * debian/gstreamer-artsd.files:
36829         * debian/gstreamer-audiofile.files:
36830         * debian/gstreamer-avifile.files:
36831         * debian/gstreamer-cdparanoia.files:
36832         * debian/gstreamer-colorspace.files:
36833         * debian/gstreamer-doc.files:
36834         * debian/gstreamer-dv.files:
36835         * debian/gstreamer-dvd.files:
36836         * debian/gstreamer-esd.files:
36837         * debian/gstreamer-festival.files:
36838         * debian/gstreamer-flac.files:
36839         * debian/gstreamer-gconf.conffiles:
36840         * debian/gstreamer-gconf.files:
36841         * debian/gstreamer-gconf.postinst:
36842         * debian/gstreamer-gnomevfs.files:
36843         * debian/gstreamer-gsm.files:
36844         * debian/gstreamer-http.files:
36845         * debian/gstreamer-jack.files:
36846         * debian/gstreamer-jpeg.files:
36847         * debian/gstreamer-mad.files:
36848         * debian/gstreamer-mikmod.files:
36849         * debian/gstreamer-misc.files:
36850         * debian/gstreamer-mpeg2dec.files:
36851         * debian/gstreamer-oss.files:
36852         * debian/gstreamer-plugin-apps.files:
36853         * debian/gstreamer-plugin-apps.manpages:
36854         * debian/gstreamer-plugin-libs-dev.files:
36855         * debian/gstreamer-plugin-libs.files:
36856         * debian/gstreamer-plugin-template.postinst:
36857         * debian/gstreamer-plugin-template.postrm:
36858         * debian/gstreamer-sdl.files:
36859         * debian/gstreamer-sid.files:
36860         * debian/gstreamer-vorbis.files:
36861         * debian/gstreamer-x.files:
36862         * debian/mk.control:
36863         * debian/rules:
36864         Debian package info not maintained here.
36865
36866 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
36867
36868         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
36869         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
36870         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
36871         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
36872         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
36873         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
36874         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
36875         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
36876         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
36877         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
36878         * gst-libs/gst/colorbalance/colorbalance.c:
36879         (gst_color_balance_class_init):
36880         * gst-libs/gst/colorbalance/colorbalancechannel.c:
36881         (gst_color_balance_channel_class_init):
36882         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
36883         * gst-libs/gst/play/play.c: (gst_play_class_init):
36884         * gst-libs/gst/propertyprobe/propertyprobe.c:
36885         (gst_property_probe_iface_init):
36886         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
36887         * gst-libs/gst/tuner/tunerchannel.c:
36888         (gst_tuner_channel_class_init):
36889         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
36890         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
36891         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
36892         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
36893         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
36894         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
36895         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
36896         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
36897         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
36898           fix signals to use - instead of _
36899         * ext/libcaca/gstcacasink.h:
36900         * ext/sdl/sdlvideosink.h:
36901           fix header rename
36902
36903 2004-03-04  David Schleef  <ds@schleef.org>
36904
36905         * testsuite/gst-lint:  Add a check for bad signal names.
36906
36907 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
36908
36909         reviewed by David Schleef
36910
36911         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
36912         modified the alpha channel and caused a warning. (bug #136192)
36913
36914 2004-04-03  Christian Schaller <Uraeus@gnome.org>
36915
36916         * gst-plugins.spec.in:
36917         Change names of plugins to actually be correct. Try to keep things
36918         alphabetical to avoid getting beat up by Thomas
36919
36920 2004-03-03  Julien MOUTTE <julien@moutte.net>
36921
36922         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
36923         Using ximagesink as a default if no gconf key found. We should
36924         probably consider using alsasink instead of osssink for the audio
36925         part.
36926
36927 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
36928
36929         * configure.ac:
36930           fix --with-plugins, don't think it ever worked before
36931         * gst-plugins.spec.in:
36932           even more updates
36933
36934 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36935
36936         * ext/sdl/sdlvideosink.h:
36937         * sys/ximage/ximagesink.h:
36938         * sys/xvideo/xvideosink.h:
36939         * sys/xvimage/xvimagesink.h:
36940           Fix for move of gstvideosink.h -> videosink.h.
36941
36942 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
36943
36944         * gst-libs/gst/xwindowlistener/Makefile.am:
36945           this is a plugin library, not a library
36946
36947 2004-03-01  David Schleef  <ds@schleef.org>
36948
36949         * AUTHORS:  Added some names.  Add yourself if you're still
36950         missing.
36951
36952 2004-03-01  David Schleef  <ds@schleef.org>
36953
36954         * MAINTAINERS: Add
36955
36956 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36957
36958         * gst-plugins.spec.in: clean up spec file
36959
36960 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36961
36962         * gst-libs/gst/video/Makefile.am:
36963         * gst-libs/gst/video/gstvideosink.c:
36964         * gst-libs/gst/video/gstvideosink.h:
36965           rename gstvideosink.h to videosink.h to match other headers
36966         * gst/mixmatrix/Makefile.am:
36967           fix plugin filename
36968         * gst/tags/Makefile.am: fix plugin filename
36969
36970 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36971
36972         * gst/tags/Makefile.am: fix plugin filename
36973
36974 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36975
36976         * examples/gstplay/player.c: (got_time_tick), (main):
36977           add error handler
36978           display time_tick more readably
36979         * gst/mixmatrix/Makefile.am:
36980           fix plugin file name
36981
36982 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
36983
36984         * sys/oss/gstosselement.c: (gst_osselement_probe),
36985         (device_combination_append), (gst_osselement_class_probe_devices):
36986         * sys/oss/gstosselement.h:
36987           Reworked enumeration of oss dsps and mixers so that gst-mixer works
36988           on my system using alsa oss emulation, fixes bug #135597
36989
36990 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36991
36992         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
36993         (gst_videodrop_chain), (gst_videodrop_change_state):
36994         * gst/videodrop/gstvideodrop.h:
36995           Work based on timestamp of input data, not based on the expected
36996           framerate from the input. The consequence is that this element now
36997           not only scales framerates, but also functions as a framerate
36998           corrector or framerate stabilizer/constantizer.
36999
37000 2004-02-27  David Schleef  <ds@schleef.org>
37001
37002         patches from jmmv@menta.net (Julio M. Merino Vidal)
37003
37004         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
37005         GST_ELEMENT_ERROR call (bug #135634)
37006         * gst/interleave/interleave.c: (interleave_buffered_loop),
37007         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
37008         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
37009         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37010         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
37011         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
37012         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
37013         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
37014         Fix GST_ELEMENT_ERROR call.
37015         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
37016         GST_ELEMENT_ERROR call.
37017
37018 2004-02-27  Benjamin Otte  <otte@gnome.org>
37019
37020         * gst-libs/gst/audio/audio.h:
37021           add macro to make sure header isn't included twice
37022         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
37023           don't use gst_buffer_free
37024         * gst/playondemand/filter.func:
37025           don't use gst_data_free. Free data only once.
37026
37027 2004-02-26  David Schleef  <ds@schleef.org>
37028
37029         * gst-libs/gst/colorbalance/Makefile.am:
37030         * gst-libs/gst/mixer/Makefile.am:
37031         * gst-libs/gst/tuner/Makefile.am:
37032         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
37033         should not be disted, -marshal.h files should not be installed,
37034         and -enum.h files _should_ be installed.  Fix to make this the
37035         case.
37036
37037 === release 0.7.5 ===
37038
37039 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
37040
37041         * configure.ac: release 0.7.5, "Under The Sea"
37042
37043 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37044
37045         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
37046         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
37047         * gst/videoscale/gstvideoscale.c:
37048         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
37049           assorted debug/warning fixes
37050
37051 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37052
37053         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
37054         (gst_videoscale_init), (gst_videoscale_chain),
37055         (gst_videoscale_set_property), (plugin_init):
37056         * gst/videoscale/gstvideoscale.h:
37057         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
37058         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
37059         (gst_videoscale_planar400), (gst_videoscale_packed422),
37060         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
37061         (gst_videoscale_24bit), (gst_videoscale_16bit),
37062         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
37063         (gst_videoscale_scale_plane_slow),
37064         (gst_videoscale_scale_point_sample),
37065         (gst_videoscale_scale_nearest),
37066         (gst_videoscale_scale_nearest_str2),
37067         (gst_videoscale_scale_nearest_str4),
37068         (gst_videoscale_scale_nearest_32bit),
37069         (gst_videoscale_scale_nearest_24bit),
37070         (gst_videoscale_scale_nearest_16bit):
37071         add debugging category and use it properly
37072         fix use of GST_PTR_FORMAT
37073
37074 2004-02-25  Andy Wingo  <wingo@pobox.com>
37075
37076         * gst/interleave/interleave.c (interleave_buffered_loop): Always
37077         push only when channel->buffer is NULL. Prevents segfaults doing
37078         the state change after a nonlocal exit, like a scheme exception.
37079
37080         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
37081         Handle the case where the intersected caps is empty.
37082
37083 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37084
37085         * gst/law/mulaw-decode.c: (mulawdec_link):
37086         * gst/law/mulaw.c: (plugin_init):
37087           fix mulawdec so it actually works again
37088
37089 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
37090
37091         reviewed by: David Schleef  <ds@schleef.org>
37092
37093         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
37094         (gst_gamma_init), (gst_gamma_set_property),
37095         (gst_gamma_get_property), (gst_gamma_calculate_tables),
37096         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
37097         for RGB, with separate r g and b correction factors. (#131167)
37098
37099 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
37100
37101         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
37102           only signal tags for bitrate if they're > 0 (#134894)
37103
37104 2004-02-24  David Schleef  <ds@schleef.org>
37105
37106         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
37107         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
37108         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
37109         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
37110         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
37111         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
37112         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
37113         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
37114         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
37115         category.  Attempt to fix timestamp calculation.
37116
37117 2004-02-24  Johan Dahlin  <johan@gnome.org>
37118
37119         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
37120
37121 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
37122
37123         * configure.ac:
37124         * gconf/Makefile.am:
37125         * gconf/gstreamer.schemas:
37126         * gst-libs/gst/gconf/Makefile.am:
37127         * gst-libs/gst/gconf/gconf.c:
37128           version gconf schemas and install locations
37129
37130 2004-02-23  Benjamin Otte  <otte@gnome.org>
37131
37132         * ext/xine/xineinput.c: (gst_xine_input_dispose):
37133         (gst_xine_input_subclass_init):
37134           call parent dispose.
37135           change pad template for CD reader correctly
37136         * ext/xine/Makefile.am:
37137         * ext/xine/gstxine.h:
37138         * ext/xine/xine.c: (plugin_init):
37139         * ext/xine/xineaudiosink.c:
37140           wrap audio sinks, too
37141         * gst-libs/gst/resample/private.h:
37142         * gst-libs/gst/resample/resample.c: (gst_resample_init),
37143         (gst_resample_reinit), (gst_resample_scale),
37144         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
37145         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
37146         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
37147         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
37148         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
37149         * gst-libs/gst/resample/resample.h:
37150         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
37151         (gst_audioscale_class_init), (gst_audioscale_link),
37152         (gst_audioscale_get_buffer), (gst_audioscale_init),
37153         (gst_audioscale_chain), (gst_audioscale_set_property),
37154         (gst_audioscale_get_property):
37155         * gst/audioscale/gstaudioscale.h:
37156           s/resample_*/gst_resample_*/i to not clobber namespaces
37157
37158 2004-02-23  Julien MOUTTE  <julien@moutte.net>
37159
37160         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
37161         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
37162         (gst_riff_create_video_template_caps),
37163         (gst_riff_create_audio_template_caps),
37164         (gst_riff_create_iavs_template_caps):
37165         * gst-libs/gst/riff/riff-media.h:
37166         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
37167         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
37168         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
37169         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
37170         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
37171         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
37172         (gst_matroska_demux_plugin_init): First batch implementing audio and
37173         video codec tags in demuxers.
37174
37175 2004-02-22  Benjamin Otte  <otte@gnome.org>
37176
37177         * ext/xine/Makefile.am:
37178         * ext/xine/gstxine.h:
37179         * ext/xine/xine.c: (plugin_init):
37180         * ext/xine/xineinput.c:
37181           add input plugin wrapper. Playback from files, http, mms and cdda
37182           works.
37183         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
37184           remove leftover G_GNUC_UNUSED
37185         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
37186         (gst_asf_demux_identify_guid):
37187           improve debugging output
37188
37189 2004-02-22  Benjamin Otte  <otte@gnome.org>
37190
37191         reported by: Padraig O'Briain <padraig.obriain@sun.com>
37192
37193         * autogen.sh:
37194           replace test -e with test -x for mkinstalldirs to be more portable.
37195           (fixes #134816)
37196
37197 2004-02-22  Benjamin Otte  <otte@gnome.org>
37198
37199         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
37200
37201         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
37202           set rank to PRIMARY
37203         * gst/volume/gstvolume.c: (plugin_init):
37204           set rank to NONE
37205         fixes #134960
37206
37207 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
37208
37209         reviewed by Benjamin Otte  <otte@gnome.org>
37210
37211         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
37212           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
37213
37214 2004-02-22  Benjamin Otte  <otte@gnome.org>
37215
37216         * configure.ac:
37217           export [_]*{gst,Gst,GST}.* symbols from plugins
37218
37219 2004-02-22  Christophe Fergeau <teuf@gnome.org>
37220
37221         reviewed by: Benjamin Otte  <otte@gnome.org>
37222
37223         * ext/lame/gstlame.c: (add_one_tag):
37224         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37225         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
37226         (gst_vorbisenc_metadata_set1):
37227         * gst/tags/gstid3tag.c:
37228         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
37229           apply fixes from bugs #135042 (lame can't write tags) and #133817
37230           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
37231
37232 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
37233
37234         * configure.ac: Export only gst_plugin_desc from plugins.
37235          Note that this change only makes any effect with Linux using libtool
37236          1.5.2 or higher. Otherwise it is silently ignored, but it would build
37237          fine. And don't try to have several versions of libtool in different
37238          directories.
37239
37240 2004-02-20  Andy Wingo  <wingo@pobox.com>
37241
37242         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
37243         interleave respectively.
37244
37245         * gst/interleave/deinterleave.c: New plugin: deinterleave
37246         (replaces on oneton).
37247         * gst/interleave/interleave.c: New plugin: interleave.
37248         * gst/interleave/plugin.h: Support file.
37249         * gst/interleave/plugin.c: Support file.
37250
37251         * configure.ac: Remove intfloat and oneton, add interleave.
37252
37253         * ext/sndfile/gstsf.c: Handle events better.
37254
37255         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
37256         and float2int operation. int2float has scheduling problems as
37257         noted in in2float_chain.
37258
37259 2004-02-20  Benjamin Otte  <otte@gnome.org>
37260
37261         * ext/xine/Makefile.am:
37262         * ext/xine/gstxine.h:
37263         * ext/xine/xine.c:
37264         * ext/xine/xineaudiodec.c:
37265         * ext/xine/xinecaps.c:
37266           add first version of xine plugin wrapper. Currently only wraps the
37267           QDM2 win32 DLL, and even that only in proof-of-concept quality.
37268         * configure.ac:
37269         * ext/Makefile.am:
37270           add xine plugin wrapper, disabled by default. Use --enable-xine to
37271           build. Note that it'll segfault on gst-register if you don't remove
37272           the goom and tvtime post plugins from xine.
37273         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
37274         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
37275           add extradata parsing for QDM2.
37276           change around debugging prints.
37277
37278 2004-02-19  Benjamin Otte  <otte@gnome.org>
37279
37280         * ext/lame/gstlame.c: (gst_lame_chain):
37281         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
37282           use gst_tag_list_insert when you want to insert tags
37283
37284 2004-02-18  David Schleef  <ds@schleef.org>
37285
37286         * configure.ac:  Move massink to gst-rotten
37287         * ext/Makefile.am:
37288         * ext/mas/Makefile.am:
37289         * ext/mas/massink.c:
37290         * ext/mas/massink.h:
37291
37292 2004-02-18  David Schleef  <ds@schleef.org>
37293
37294         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
37295         typefinding, since it seems to be worse than nothing.
37296         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
37297         atom to recognize .mp4 and .m4a files as video/quicktime.
37298
37299 2004-02-18  David Schleef  <ds@schleef.org>
37300
37301         * gst/sine/demo-dparams.c: (quit_live),
37302         (dynparm_log_value_changed), (dynparm_value_changed), (main):
37303         Use double dparams, not float.
37304         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
37305         (gst_sinesrc_init): Change sync default to FALSE, since multiple
37306         sync'd elements don't really work correctly.
37307         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
37308         (volume_update_volume), (volume_get_property):  Change dparam
37309         to double.
37310
37311 2004-02-18  Julien MOUTTE  <julien@moutte.net>
37312
37313         * sys/ximage/ximagesink.c:
37314         (gst_ximagesink_xwindow_update_geometry),
37315         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
37316         (gst_ximagesink_change_state), (gst_ximagesink_expose),
37317         (gst_ximagesink_init): Rework the way software video scaling works. So
37318         now we check on each chain call if the video frames are feeling the
37319         window. If not we try to renegotiate caps. On failure we memorize that
37320         and we won't try again for that PLAYING sessions.
37321         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
37322         failure.
37323         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
37324         synchronous flag.
37325
37326 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37327
37328         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
37329           break up _link so we can give a better debug message for errors
37330
37331 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37332
37333         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
37334           set up debug category
37335
37336 2004-02-18  Julien MOUTTE <julien@moutte.net>
37337
37338         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
37339         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
37340         the way renegotiation work. The event handling function is not taking
37341         care of external windows and renegotiate method check for pad flags
37342         NEGOTIATING. Should fix : #133209
37343
37344 2004-02-17  Julien MOUTTE  <julien@moutte.net>
37345
37346         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
37347         pad is negotiating before trying renegotiation.
37348
37349 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37350
37351         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
37352           pass on all possible mime types as typefind hints
37353
37354 2004-02-17  Julien MOUTTE <julien@moutte.net>
37355
37356         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
37357         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
37358         possible SHM leak if we crash. All other apps using XShm are doing
37359         that.
37360
37361 2004-02-17  Julien MOUTTE  <julien@moutte.net>
37362
37363         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
37364         (gst_ximagesink_expose): Renegotiate size on expose.
37365         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
37366         size on expose.
37367
37368 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37369
37370         * testsuite/alsa/sinesrc.c:
37371           cosmetic fix to fix compile issue with gcc 2.95.4
37372
37373 2004-02-16  Julien MOUTTE <julien@moutte.net>
37374
37375         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
37376         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
37377         failed opening the audio device.
37378         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
37379         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
37380         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
37381         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
37382         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
37383         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
37384         (gst_ximagesink_change_state), (gst_ximagesink_chain),
37385         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
37386         Removing some useless g_return_if_fail like wingo suggested.
37387         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
37388         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
37389         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
37390         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
37391         (gst_xvimagesink_update_colorbalance),
37392         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
37393         (gst_xvimagesink_xcontext_clear),
37394         (gst_xvimagesink_get_fourcc_from_caps),
37395         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
37396         (gst_xvimagesink_set_xwindow_id),
37397         (gst_xvimagesink_colorbalance_list_channels),
37398         (gst_xvimagesink_colorbalance_set_value),
37399         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
37400         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
37401
37402 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37403
37404         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37405           throw error when not negotiated instead of asserting
37406
37407 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37408
37409         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
37410         correct data refcounting.
37411
37412 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37413
37414         * gst/switch/gstswitch.c: (gst_switch_change_state),
37415         (gst_switch_class_init): Cleaning the sinkpads correctly on state
37416         change, mostly the EOS flag.
37417
37418 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37419
37420         * examples/gstplay/player.c: (got_eos), (main): Adding some
37421         output for debugging.
37422         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
37423         timeouts if we go to any state different from PLAYING.
37424         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
37425         more EOS bugs in riff lib.
37426
37427 2004-02-14  Julien MOUTTE  <julien@moutte.net>
37428
37429         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
37430         visualization until i find a way to fix switch correctly.
37431         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
37432         EOS arrives.
37433         * gst/switch/gstswitch.c: (gst_switch_release_pad),
37434         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
37435         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
37436         Reworked switch to get a more correct behaviour with events and refing
37437         of data stored in sinkpads.
37438         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
37439         we don't pull from a pad in EOS.
37440
37441 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37442
37443         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37444           remove v1 tag even if we can't read it (makes sure we don't detect
37445           it again)
37446
37447 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37448
37449         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
37450         (gst_alsa_xrun_recovery):
37451         * ext/alsa/gstalsa.h:
37452           try xrun recovery when wait failed. Make xrun recovery function
37453           return TRUE/FALSE to indicate success. (might fix #134354)
37454
37455 2004-02-13  David Schleef  <ds@schleef.org>
37456
37457         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
37458         (dynparm_value_changed), (main): Convert from float to double.
37459         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
37460
37461 2004-02-13  David Schleef  <ds@schleef.org>
37462
37463         * gst/silence/gstsilence.c: (gst_silence_class_init),
37464         (gst_silence_set_clock), (gst_silence_get),
37465         (gst_silence_set_property), (gst_silence_get_property):
37466         * gst/silence/gstsilence.h: Add sync property.
37467         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
37468         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
37469         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
37470         * gst/sine/gstsinesrc.h: Add sync property.
37471
37472 2004-02-13  David Schleef  <ds@schleef.org>
37473
37474         * gst/intfloat/gstint2float.c: (conv_f32_s16),
37475         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
37476
37477 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37478
37479         * configure.ac:
37480         * ext/Makefile.am:
37481         * gst-libs/ext/Makefile.am:
37482           move ffmpeg plugin to gst-ffmpeg module
37483
37484 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37485
37486         * configure.ac: use GST_ARCH to detect architecture
37487
37488 2004-02-12  Julien MOUTTE  <julien@moutte.net>
37489
37490         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
37491
37492 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
37493
37494         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
37495           classify LADSPA plugins based on number of src/sink pads
37496           (#133663, Stefan Kost)
37497         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
37498           fix dparams registration
37499           (#133528, Stefan Kost)
37500         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
37501           fix use of isprint and use g_ascii_isprint instead
37502           (#133316, Stefan Kost)
37503
37504 2004-02-11  David Schleef  <ds@schleef.org>
37505
37506         Convert a few inner loops to use liboil.  This is currently
37507         optional, and is only enabled if liboil is present (duh!).
37508         * configure.ac: Check for liboil-0.1
37509         * gst/intfloat/Makefile.am:
37510         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
37511         (gst_int2float_chain_gint16):
37512         * gst/videofilter/Makefile.am:
37513         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
37514         (tablelookup_u8), (gst_videobalance_planar411):
37515         * gst/videotestsrc/Makefile.am:
37516         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
37517         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
37518         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
37519         (paint_hline_RGB565), (paint_hline_xRGB1555):
37520
37521 2004-02-11  David Schleef  <ds@schleef.org>
37522
37523         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
37524         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
37525         (gst_colorspace_getcaps), (gst_colorspace_link),
37526         (gst_colorspace_base_init), (gst_colorspace_init),
37527         (gst_colorspace_chain), (gst_colorspace_change_state),
37528         (plugin_init): Merge Ronald's patch (bug #117897) and update
37529         for new caps and negotiation.  Seems to work, although it
37530         shows off bugs in lcs.
37531
37532 2004-02-11  David Schleef  <ds@schleef.org>
37533
37534         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
37535         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
37536
37537 2004-02-11  David Schleef  <ds@schleef.org>
37538
37539         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
37540         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
37541         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
37542         Add server and port properties
37543
37544 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
37545
37546         * m4/a52.m4:
37547         * m4/aalib.m4:
37548         * m4/as-ffmpeg.m4:
37549         * m4/as-liblame.m4:
37550         * m4/as-slurp-ffmpeg.m4:
37551         * m4/check-libheader.m4:
37552         * m4/esd.m4:
37553         * m4/freetype2.m4:
37554         * m4/gconf-2.m4:
37555         * m4/glib.m4:
37556         * m4/gst-alsa.m4:
37557         * m4/gst-artsc.m4:
37558         * m4/gst-ivorbis.m4:
37559         * m4/gst-matroska.m4:
37560         * m4/gst-sdl.m4:
37561         * m4/gst-shout2.m4:
37562         * m4/gst-sid.m4:
37563         * m4/gtk.m4:
37564         * m4/libdv.m4:
37565         * m4/libfame.m4:
37566         * m4/libmikmod.m4:
37567         * m4/ogg.m4:
37568         * m4/vorbis.m4:
37569           fix underquotedness of macros (#133800)
37570         * m4/as-avifile.m4:
37571         * m4/xmms.m4:
37572           removed because no longer used
37573
37574 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
37575
37576         * configure.ac:
37577           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
37578           by autopoint (fixes #132996)
37579
37580 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37581
37582         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
37583         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
37584         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
37585         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
37586           fix memleaks
37587
37588 2004-02-11  David Schleef  <ds@schleef.org>
37589
37590         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
37591         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
37592         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
37593         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
37594         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
37595         (gst_jpegenc_class_init), (gst_jpegenc_init),
37596         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
37597         (gst_jpegenc_chain), (gst_jpegenc_set_property),
37598         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
37599         * ext/jpeg/gstjpegenc.h: Fix negotiation.
37600
37601 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37602
37603         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
37604         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
37605         * ext/mikmod/gstmikmod.h:
37606           fix caps negotiation in mikmod
37607         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
37608           output debug information
37609
37610 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37611
37612         * gst-libs/gst/colorbalance/Makefile.am:
37613         * gst-libs/gst/navigation/Makefile.am:
37614         * gst-libs/gst/xoverlay/Makefile.am:
37615           remove unused GST_OPT_CFLAGS from Makefiles
37616           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
37617
37618 2004-02-07  David Schleef  <ds@schleef.org>
37619
37620         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
37621         push events to pads that haven't been created (#133508)
37622
37623 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
37624
37625         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
37626         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
37627         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
37628         (gst_dvdec_loop), (gst_dvdec_change_state):
37629         Second attempt at committing a working dvdec element.
37630
37631 2004-02-06  David Schleef  <ds@schleef.org>
37632
37633         Build fixes for OS X: (see #129600)
37634         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
37635         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
37636         (gst_riff_read_strf_iavs):
37637         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
37638         (gst_avi_demux_stream_odml):
37639         * gst/playondemand/Makefile.am:
37640         * gst/rtp/rtp-packet.c:
37641
37642 2004-02-05  David Schleef  <ds@schleef.org>
37643
37644         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
37645         last change, because it Just Doesn't Compile.
37646
37647 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37648
37649         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37650           skip undecodable id3v2 tag instead of keeping it
37651
37652 2004-02-05  David Schleef  <ds@schleef.org>
37653
37654         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
37655         Unref leaked buffer.  (Noticed by Ronald)
37656
37657 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
37658
37659         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37660         Sync requires with other checks.  >= vs =.
37661
37662 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
37663
37664         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
37665         (gst_dvdec_video_link), (gst_dvdec_loop):
37666         * ext/dv/gstdvdec.h:
37667           rework the caps negotiation so that dvdec works again instead
37668           of just segfaulting.
37669
37670 === release 0.7.4 ===
37671
37672 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37673
37674         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
37675         * configure.ac: changed for release
37676
37677 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
37678
37679         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
37680         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37681         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37682         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37683           reworked patch by David Lehn to fix libdir and includedir for
37684           uninstalled libraries
37685           removed play and gconf from gstreamer-libs since they have their
37686           own pkgconfig files
37687
37688 2004-02-04  David Schleef  <ds@schleef.org>
37689
37690         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
37691         memleak.
37692
37693 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37694
37695         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
37696           use correct GST_TAG_ENCODER tag
37697
37698 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37699
37700         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
37701           be sure to stop the clock when going to paused
37702         * sys/oss/gstosssink.c: (gst_osssink_change_state):
37703           reset number of transmitted when going to ready.
37704         fixes #132935
37705
37706 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
37707
37708         reviewed by Benjamin Otte
37709
37710         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37711           extract track count (fixes #133410)
37712
37713 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37714
37715         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
37716           that should be !=, not == (fixes #132519)
37717
37718 2004-02-04  David Schleef  <ds@schleef.org>
37719
37720         Make sure set_explicit_caps() is called before adding pad.
37721         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
37722         * gst/id3/gstid3types.c: (gst_id3types_loop):
37723         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
37724         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
37725
37726 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
37727
37728         * configure.ac:
37729           bump nano to 2, first prerelease
37730           put back AM_PROG_LIBTOOL
37731
37732 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
37733
37734         * testsuite/alsa/Makefile.am:
37735           these are user test apps, not automatic testsuite tests
37736
37737 2004-02-04  David Schleef  <ds@schleef.org>
37738
37739         Convert GST_DEBUG_CAPS() to GST_DEBUG():
37740         * gst/mpeg1videoparse/gstmp1videoparse.c:
37741         (mp1videoparse_parse_seq):
37742         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
37743         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
37744         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
37745         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
37746         (gst_xvideosink_getcaps):
37747         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
37748         * testsuite/gst-lint: more tests
37749
37750 2004-02-04  David Schleef  <ds@schleef.org>
37751
37752         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
37753         with the code that they would expand to.
37754         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
37755         (gst_flacdec_get_src_query_types),
37756         (gst_flacdec_get_src_event_masks):
37757         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
37758         (gst_gnomevfssrc_get_query_types),
37759         (gst_gnomevfssrc_get_event_mask):
37760
37761 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37762
37763         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
37764         (gst_sinesrc_dispose):
37765           fix memleak by properly disposing sinesrc
37766
37767 2004-02-04  Julien MOUTTE  <julien@moutte.net>
37768
37769         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
37770         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
37771         an overlay to redraw the image because it has been exposed.
37772         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
37773         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
37774         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
37775         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
37776         interface
37777         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
37778         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
37779         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
37780         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
37781         interface
37782
37783 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37784
37785         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
37786           more memleak fixage
37787
37788 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37789
37790         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
37791         * gst/typefind/gsttypefindfunctions.c:
37792           fix memleaks shown by gst-typefind
37793
37794 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
37795
37796         * common/glib-gen.mak:
37797           add hack rule to touch .Plo files
37798         * gst-libs/gst/colorbalance/Makefile.am:
37799         * gst-libs/gst/mixer/Makefile.am:
37800         * gst-libs/gst/play/Makefile.am:
37801         * gst-libs/gst/tuner/Makefile.am:
37802           remove glib_root variable
37803
37804 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37805
37806         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
37807           set explicit caps before adding the element, so the autopluggers can
37808           plug correctly.
37809         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
37810         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
37811         (mpeg_video_type_find), (mpeg_video_stream_type_find),
37812         (dv_type_find):
37813           fix memleaks in typefind functions. gst_type_find_suggest takes a const
37814           argument.
37815
37816 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
37817
37818         * gst-libs/gst/colorbalance/Makefile.am:
37819         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
37820         * gst-libs/gst/colorbalance/colorbalance.c:
37821         * gst-libs/gst/colorbalance/colorbalance.h:
37822         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
37823         * gst-libs/gst/mixer/Makefile.am:
37824         * gst-libs/gst/mixer/mixer-marshal.list:
37825         * gst-libs/gst/mixer/mixer.c:
37826         * gst-libs/gst/mixer/mixer.h:
37827         * gst-libs/gst/mixer/mixermarshal.list:
37828         * gst-libs/gst/play/Makefile.am:
37829         * gst-libs/gst/play/play.h:
37830         * gst-libs/gst/tuner/Makefile.am:
37831         * gst-libs/gst/tuner/tuner-marshal.list:
37832         * gst-libs/gst/tuner/tuner.c:
37833         * gst-libs/gst/tuner/tuner.h:
37834         * gst-libs/gst/tuner/tunermarshal.list:
37835           use new glib-gen.mak snippet to clean up Makefile.am
37836           fix various bugs in Makefile.am's
37837
37838 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37839
37840         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
37841           handle chain parsing correctly in the multichain case
37842         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
37843         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
37844         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
37845         (theora_dec_chain):
37846           handle events and queries correctly
37847
37848 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
37849
37850         * .cvsignore:
37851         Ignore generated file _stdint.h.
37852
37853 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
37854
37855         * gst-libs/gst/colorbalance/Makefile.am:
37856         * gst-libs/gst/colorbalance/colorbalance.h:
37857         * gst-libs/gst/mixer/Makefile.am:
37858         * gst-libs/gst/mixer/mixer.h:
37859         * gst-libs/gst/play/Makefile.am:
37860         * gst-libs/gst/play/play.h:
37861         * gst-libs/gst/tuner/Makefile.am:
37862         * gst-libs/gst/tuner/tuner.h:
37863         Generate enum type code with glib-mkenums.
37864         * gst-libs/gst/colorbalance/.cvsignore:
37865         * gst-libs/gst/mixer/.cvsignore:
37866         * gst-libs/gst/play/.cvsignore:
37867         * gst-libs/gst/tuner/.cvsignore:
37868         Ignore generated files.
37869
37870 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
37871
37872         * gst-libs/gst/audio/.cvsignore:
37873         Ignore generated file.
37874         * gst-libs/gst/audio/Makefile.am:
37875         Do not install example filter.
37876
37877 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
37878
37879         * examples/switch/.cvsignore:
37880         Ignore generated file.
37881
37882 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37883
37884         * common/m4/ax_create_stdint_h.m4:
37885         * configure.ac:
37886           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
37887           _stdint.h.
37888         * Makefile.am:
37889           remove generated _stdint.h in DISTCLEANFILES
37890         * ext/a52dec/gsta52dec.c:
37891           include _stdint.h for a52dec. (should fix #133064)
37892
37893 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
37894
37895         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
37896         (gst_tag_to_vorbis_comments):
37897         Add replaygain support to vorbistag
37898
37899 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
37900         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
37901         (gst_ffmpeg_caps_to_extradata):
37902           Fix SVQ3 caps flag properties
37903           Use glib macro for bytes swap
37904
37905 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37906
37907         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
37908         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
37909         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
37910         * ext/sndfile/gstsf.c: (plugin_init):
37911         * gst/avi/gstavi.c: (plugin_init):
37912         * sys/dxr3/dxr3init.c: (plugin_init):
37913         * sys/oss/gstossaudio.c: (plugin_init):
37914         * sys/v4l/gstv4l.c: (plugin_init):
37915         * sys/v4l2/gstv4l2.c: (plugin_init):
37916           remove textdomain calls
37917         * po/nl.po:
37918           update Dutch translation
37919
37920 2004-02-02  Julien MOUTTE  <julien@moutte.net>
37921
37922         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
37923         (gst_play_set_audio_sink): Moving volume in the audio thread for
37924         instantaneous volume change. Maybe i will add another volume in front
37925         of visualization later, not sure yet though.
37926
37927 2004-02-02  Julien MOUTTE  <julien@moutte.net>
37928
37929         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
37930         (gst_ximagesink_handle_xevents): Better X events handling, only take
37931         the latest events for configure and motion.
37932         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
37933
37934 2004-02-02  Jon Trowbridge  <trow@gnu.org>
37935
37936         reviewed by: David Schleef  <ds@schleef.org>
37937
37938         Fix memory leaks:
37939         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
37940         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
37941
37942 2004-02-02  David Schleef  <ds@schleef.org>
37943
37944         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
37945         of lines.
37946         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
37947         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37948         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
37949         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
37950         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
37951         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
37952         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
37953         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
37954         (gst_float2_2_int_link):
37955         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
37956         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
37957         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
37958         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
37959         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
37960         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
37961         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
37962         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
37963         * testsuite/gst-lint: Add tests for bzero and ;;
37964
37965 2004-02-02  David Schleef  <ds@schleef.org>
37966
37967         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
37968
37969 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37970
37971         * ext/aalib/gstaasink.c: (gst_aasink_open):
37972         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
37973         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
37974         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
37975         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
37976         (gst_afsink_close_file):
37977         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
37978         (gst_afsrc_close_file):
37979         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
37980         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
37981         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
37982         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
37983         * ext/esd/esdmon.c: (gst_esdmon_get):
37984         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
37985         * ext/faac/gstfaac.c: (gst_faac_chain):
37986         * ext/faad/gstfaad.c: (gst_faad_chain):
37987         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
37988         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
37989         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
37990         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
37991         (gst_flacdec_loop):
37992         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
37993         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37994         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
37995         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
37996         (gst_gnomevfssink_close_file):
37997         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
37998         (gst_gnomevfssrc_open_file):
37999         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
38000         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
38001         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
38002         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
38003         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
38004         * ext/mad/gstmad.c: (gst_mad_chain):
38005         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
38006         * ext/mpeg2dec/gstmpeg2dec.c:
38007         * ext/mpeg2enc/gstmpeg2enc.cc:
38008         * ext/mplex/gstmplex.cc:
38009         * ext/mplex/gstmplexibitstream.cc:
38010         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
38011         (gst_ogg_demux_push):
38012         * ext/raw1394/gstdv1394src.c:
38013         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
38014         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
38015         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
38016         (gst_sf_loop):
38017         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
38018         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
38019         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
38020         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
38021         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38022         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
38023         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
38024         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
38025         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38026         (gst_riff_read_element_data), (gst_riff_read_seek),
38027         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
38028         * gst/adder/gstadder.c: (gst_adder_loop):
38029         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
38030         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
38031         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
38032         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
38033         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
38034         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
38035         * gst/goom/gstgoom.c: (gst_goom_chain):
38036         * gst/id3/gstid3types.c: (gst_id3types_loop):
38037         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
38038         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
38039         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
38040         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38041         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
38042         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
38043         (gst_ebml_read_float), (gst_ebml_read_header):
38044         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
38045         (gst_matroska_demux_parse_blockgroup):
38046         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
38047         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
38048         * gst/oneton/gstoneton.c: (gst_oneton_chain):
38049         * gst/silence/gstsilence.c: (gst_silence_get):
38050         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
38051         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
38052         * gst/speed/gstspeed.c: (speed_loop):
38053         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
38054         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
38055         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
38056         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
38057         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
38058         (gst_wavparse_loop):
38059         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
38060         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
38061         (dxr3audiosink_close):
38062         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
38063         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
38064         (dxr3videosink_close), (dxr3videosink_write_data):
38065         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
38066         * sys/oss/gstosssink.c: (gst_osssink_chain):
38067         * sys/oss/gstosssrc.c: (gst_osssrc_get):
38068         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
38069         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
38070         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
38071         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
38072         (gst_v4l_set_window), (gst_v4l_enable_overlay):
38073         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
38074         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
38075         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
38076         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
38077         (gst_v4l_set_audio):
38078         * sys/v4l/v4l_calls.h:
38079         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
38080         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
38081         (gst_v4lmjpegsink_playback_init),
38082         (gst_v4lmjpegsink_playback_start):
38083         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
38084         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
38085         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
38086         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
38087         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
38088         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
38089         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
38090         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
38091         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
38092         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
38093         (gst_v4l2_get_output), (gst_v4l2_set_output),
38094         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
38095         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
38096         (gst_v4l2_set_attribute):
38097         * sys/v4l2/v4l2_calls.h:
38098         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
38099         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
38100         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
38101         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
38102         (gst_v4l2src_capture_stop):
38103         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
38104         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
38105         (gst_ximagesink_chain):
38106         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
38107         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
38108         (gst_xvideosink_xwindow_new):
38109         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
38110         (gst_xvimagesink_chain):
38111
38112 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38113
38114         * gst/volume/gstvolume.c: (gst_volume_set_volume),
38115         (gst_volume_get_volume), (volume_class_init), (volume_init),
38116         (volume_chain_int16), (volume_update_volume):
38117         * gst/volume/gstvolume.h:
38118           make code more readable by removing magic numbers
38119           make mixer interface export 0-100 range
38120           make it internally map to 0.0-1.0 range so users don't distort
38121           output by putting the sliders at full volume
38122
38123 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38124
38125         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
38126         (gst_play_state_change), (gst_play_seek_to_time):
38127         block the tick callback for 0.5 secs after doing a seek
38128
38129 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38130
38131         * gst-libs/gst/play/play.c: (gst_play_new):
38132           check for GError
38133
38134 2004-02-01  Julien MOUTTE  <julien@moutte.net>
38135
38136         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
38137         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
38138         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
38139         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
38140         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
38141         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
38142
38143 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38144
38145         * configure.ac:
38146         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38147           check for a function added in vorbis 1.1
38148
38149 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38150
38151         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
38152         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
38153           really start/stop clock only on PLAYING <=> PAUSED
38154         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38155           remove \n from debugging lines
38156         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38157           make it work when seeking does not
38158         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38159           reset on DISCONT
38160
38161 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38162
38163         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
38164           start clock on PAUSED=>PLAYING, not later
38165         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
38166           extract correct time for different discont formats
38167         (gst_alsa_sink_get_time):
38168           don't segfault when no format is negotiated yet, just return 0
38169         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
38170         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
38171         (gst_ogg_pad_push):
38172           handle flush and discont events correctly
38173         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
38174           handle discont events correctly
38175
38176 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
38177
38178         * gst-libs/gst/play/play.c: (gst_play_error_quark),
38179         (gst_play_error_create), (gst_play_error_plugin),
38180         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
38181         * gst-libs/gst/play/play.h:
38182           add error handling during creation
38183         * examples/gstplay/player.c: (main):
38184           use new gst_play_new
38185
38186
38187 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38188
38189         * ext/theora/theoradec.c: (theora_dec_chain):
38190           make comments work
38191         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
38192         (vorbis_dec_src_event), (vorbis_dec_chain):
38193           add encoder tag, fix tag reading to be more error tolerant, change
38194           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
38195           gst_pad_event_default.
38196         * gst/tags/gstvorbistag.c:
38197         (gst_tag_list_from_vorbiscomment_buffer):
38198           undefine function specific define at end of function
38199
38200 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
38201
38202         * ext/flac/gstflac.c: (plugin_init):
38203         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
38204         * ext/flac/gstflacdec.h:
38205         * ext/flac/gstflacenc.h:
38206           Fix typos
38207
38208 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
38209
38210         * examples/gstplay/player.c: s/gstplay.h/play.h/
38211
38212 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38213
38214         * gst-libs/gst/play/Makefile.am:
38215         * gst-libs/gst/play/gstplay.c:
38216         * gst-libs/gst/play/gstplay.h:
38217         * gst-libs/gst/play/play.c:
38218           more surgery, operation complete
38219
38220 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38221
38222         * gst-libs/gst/play/play.old.c:
38223         * gst-libs/gst/play/play.old.h:
38224           after CVS surgery by moving, remove
38225         * gst-libs/gst/play/playpipelines.c:
38226           remove
38227
38228         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
38229           add negotiation error
38230
38231 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38232
38233         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
38234         (gst_ogg_demux_push):
38235           add some seeking debug info
38236           send a flush when seeking
38237
38238 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38239
38240         * configure.ac:
38241           use AC_C_INLINE
38242         * configure.ac:
38243         * ext/Makefile.am:
38244         * ext/theora/Makefile.am:
38245         * ext/theora/theoradec.c:
38246           add theora video decoder. Does just do simple decoding for now and
38247           has been tested against Theora cvs only. It only works when theora
38248           is compiled with --enable-static.
38249         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38250           always reset packetno on DISCONT
38251
38252 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38253
38254         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38255           Fix audio.
38256
38257 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38258
38259         * gst/mpegaudioparse/gstmpegaudioparse.c:
38260         (mp3_type_frame_length_from_header):
38261           Fix header parsing - stolen from ffmpeg (thank you! :) ).
38262
38263 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38264
38265         * ext/esd/esdsink.c: (gst_esdsink_init):
38266           Since we have static pad template caps, we don't need to negotiate;
38267           either the core errors out or we know the format.
38268
38269 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38270
38271         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38272         (gst_riff_read_seek):
38273         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38274         (gst_ebml_read_seek):
38275           Fix event handling.
38276
38277 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38278
38279         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
38280           removee video/x-theora from vp3 decoder, it doesn't handle raw
38281           theora streams
38282         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
38283           fix bug with finalizing element that never went to PAUSED
38284         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
38285           length and position queries were swapped
38286         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
38287         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
38288         (vorbis_dec_src_event):
38289           implement querying time and bytes
38290
38291 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38292
38293         * just about every source file:
38294           gst_element_error -> GST_ELEMENT_ERROR
38295
38296 2004-01-29  Julien MOUTTE  <julien@moutte.net>
38297
38298         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
38299         emiting FLUSH and even before DISCONT.
38300         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
38301         get the best instant seeking as possible yay!
38302
38303 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38304
38305         * gst/mpeg1videoparse/gstmp1videoparse.c:
38306         (gst_mp1videoparse_real_chain):
38307           Committed wrong version last week... Grr... Didn't notice until now.
38308
38309 2004-01-29  Julien MOUTTE <julien@moutte.net>
38310
38311         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
38312         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
38313         have_xwindow_id signal in xwindow_create.
38314
38315 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38316
38317         * ext/ogg/gstoggdemux.c:
38318           lots of changes - mainly support for chained bitstreams, seeking,
38319           querying and bugfixes of course
38320         * ext/vorbis/Makefile.am:
38321         * ext/vorbis/vorbisdec.c:
38322         * ext/vorbis/vorbisdec.h:
38323           add vorbisdec raw vorbis decoder
38324         * ext/vorbis/vorbis.c: (plugin_init):
38325           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
38326         * gst/intfloat/Makefile.am:
38327         * gst/intfloat/float22int.c:
38328         * gst/intfloat/float22int.h:
38329         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
38330           add float2intnew plugin. It converts multichannel interleaved float to
38331           multichannel interleaved int. The name should probably be changed.
38332         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
38333         (plugin_init):
38334           add typefinding for raw theora video so oggdemux can detect it.
38335
38336 2004-01-28  Julien MOUTTE  <julien@moutte.net>
38337
38338         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
38339         sink element first.
38340         * gst/videoscale/gstvideoscale.c:
38341         (gst_videoscale_handle_src_event): Fixing src event handler.
38342
38343 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38344
38345         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
38346         (gst_v4lsrc_open), (gst_v4lsrc_close),
38347         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
38348         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
38349         * sys/v4l/gstv4lsrc.h:
38350         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
38351         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
38352           Implement resizing... Hack. But that's why v4l is b0rked...
38353
38354 2004-01-28  Julien MOUTTE <julien@moutte.net>
38355
38356         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
38357         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
38358         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
38359         (gst_ximagesink_xwindow_destroy):
38360         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
38361         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
38362         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
38363         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
38364         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
38365         correctly cleaning the image created to check xshm calls on succes,
38366         added a lot of XSync calls in X11 functions, and fixed a segfault when
38367         no image format was defined before negotiation happened.
38368
38369 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38370
38371         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
38372           use gst_element_get_time to get correct time
38373
38374 2004-01-28  Julien MOUTTE  <julien@moutte.net>
38375
38376         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
38377         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
38378         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
38379         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
38380         (gst_xvimagesink_check_xshm_calls),
38381         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
38382         X plugins are now able to detect that XShm calls will fail even if the
38383         server claims that it has XShm support (remote displays most of the
38384         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
38385         so that we use non XShm functions. This feature is almost useless for
38386         xvimagesink as Xv is not supported on remote displays anyway, but
38387         it might happen than even on the local display XShm calls fail.
38388
38389 2004-01-27  David Schleef  <ds@schleef.org>
38390
38391         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
38392         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
38393         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
38394         changed esdsink to only use 44100,16,2, since esd sucks at rate
38395         conversion and esdsink has had difficulty negotiating.
38396
38397 2004-01-27  Julien MOUTTE <julien@moutte.net>
38398
38399         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
38400         (gst_play_seek_to_time): Fixing the way to get current position.
38401
38402 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38403
38404         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
38405           use gst_element_get_time to get correct time
38406
38407 2004-01-27  Julien MOUTTE <julien@moutte.net>
38408
38409         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
38410         fix ever... Inverting 2 lines of code make spider autoplug correctly
38411         tagged mp3 !
38412
38413 2004-01-27  David Schleef  <ds@schleef.org>
38414
38415         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
38416         Use gst_pad_try_set_caps_nonfixed().
38417
38418 2004-01-27  David Schleef  <ds@schleef.org>
38419
38420         * gst/ac3parse/gstac3parse.c: update to checklist 5
38421         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
38422         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
38423         * gst/audioscale/gstaudioscale.c: same
38424         * gst/auparse/gstauparse.c: same
38425         * gst/avi/gstavidemux.c: same
38426
38427 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38428
38429         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
38430           stop processing after EOS
38431
38432 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38433
38434         * gst/asfdemux/asfheaders.h:
38435         * gst/asfdemux/gstasfdemux.c:
38436         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
38437         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
38438         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
38439           lot's of fixes to make data extraction simpler and get the code
38440           architecture and compiler independant. Add debugging category
38441         * gst/goom/gstgoom.c: (gst_goom_change_state):
38442           reset channel count on PAUSED=>READY, not READY=>PAUSED
38443
38444 2004-01-26  Colin Walters  <walters@verbum.org>
38445
38446         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
38447         code to pull a bigger buffer in iradio mode.  This as a side effect
38448         makes typefinding work.
38449
38450 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
38451
38452         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
38453         Fix SVQ3 decoding on PPC
38454
38455 2004-01-26  Julien MOUTTE <julien@moutte.net>
38456
38457         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
38458         that one managed to stay there... Fixed.
38459
38460 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
38461
38462         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
38463         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
38464         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
38465         (qtdemux_video_caps):
38466         * gst/qtdemux/qtdemux.h:
38467         Add SVQ3 specific flags to qtdemux and ffmpeg
38468
38469 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38470
38471         * gst-libs/gst/audio/audio.h:
38472           remove buffer-frames from audio caps
38473         * gst/audioconvert/gstaudioconvert.c:
38474           fix plugin to really work.
38475
38476 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38477
38478         * gst-libs/gst/mixer/mixer.c:
38479         * gst-libs/gst/propertyprobe/propertyprobe.c:
38480         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
38481         (gst_tuner_find_channel_by_name):
38482         * gst-libs/gst/tuner/tuner.h:
38483           Add gtk-doc style comments. Also fix a function name.
38484
38485 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38486
38487         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
38488         (gst_divxdec_negotiate):
38489           Fix for new capsnego - also fixes gst-player with divxdec.
38490
38491 2004-01-25  Julien MOUTTE  <julien@moutte.net>
38492
38493         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
38494         (gst_play_identity_handoff), (gst_play_set_location),
38495         (gst_play_set_visualization), (gst_play_connect_visualization): Another
38496         try in visualization implementation. Still have an issue with switch
38497         blocking when pulling from video_queue and only audio comes out of
38498         spider.
38499         * gst/switch/gstswitch.c: (gst_switch_release_pad),
38500         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
38501         release method. And check if the pad is usable before pulling.
38502
38503 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38504
38505         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
38506         (gst_videobalance_init),
38507         (gst_videobalance_colorbalance_list_channels),
38508         (gst_videobalance_colorbalance_set_value),
38509         (gst_videobalance_colorbalance_get_value),
38510         (gst_videobalance_update_properties),
38511         (gst_videobalance_update_tables_planar411),
38512         (gst_videobalance_planar411):
38513         * gst/videofilter/gstvideobalance.h:
38514           Implement lookup-tables. +/- 10x faster.
38515
38516 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38517
38518         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38519         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
38520           The index reading was broken. The rest worked fine, but the whole
38521           goal of my rewrite was to make avidemux readable, and this was
38522           not at all readable. Please use typed variables.
38523
38524 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38525
38526         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38527           Additional pad usability check.
38528         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
38529         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
38530         (gst_mp1videoparse_real_chain):
38531           Fix MPEG video stream parsing. The original plugin had several
38532           issues, including not timestamping streams where the source was
38533           not timestamped (this happens with PTS values in mpeg system
38534           streams, but MPEG video is also a valid stream on its own so
38535           that needs timestamps too). We use the display time code for that
38536           for now. Also, if one incoming buffer contains multiple valid
38537           frames, we push them all on correctly now, including proper EOS
38538           handling. Lastly, several potential segfaults were fixed, and we
38539           properly sync on new sequence/gop headers to include them in next,
38540           not previous frames (since they're header for the next frame, not
38541           the previous). Also see #119206.
38542         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
38543         (bpf_from_header):
38544           Move caps setting so we only do it after finding several valid
38545           MPEG-1 fraes sequentially, not right after the first one (which
38546           might be coincidental).
38547         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
38548         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38549         (plugin_init):
38550           Add unsynced MPEG video stream typefinding, and change some
38551           probability values so we detect streams rightly. The idea is as
38552           follows: I can have an unsynced system stream which contains
38553           video. In the current code, I would randomly get a type for either
38554           system or video stream type found, because the probabilities are
38555           being calculated rather randomly. I now use fixed values, so we
38556           always prefer system stream if that was found (and that is how it
38557           should be). If no system stream was found, we can still identity                the stream as video-only.
38558
38559 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38560
38561         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38562         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
38563           don't write to buffer. Extract data without the need of
38564           __attribute__ ((packed))
38565
38566 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38567
38568         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
38569         (mpeg1_sys_type_find):
38570           Fix MPEG-1 stream typefinding.
38571
38572 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38573
38574         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
38575           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
38576
38577 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
38578
38579         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
38580         * ext/esd/gstesd.c: (plugin_init):
38581           private debugging, better error reporting
38582
38583 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38584
38585         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
38586         (gst_riff_read_init), (gst_riff_read_change_state):
38587         * gst-libs/gst/riff/riff-read.h:
38588           Remove stuff fromold metadata system.
38589
38590 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38591
38592         * ext/ogg/gstoggdemux.c:
38593           Fix wrong file comment.
38594         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38595         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
38596           Add metadata reading properly.
38597
38598 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
38599
38600         * ext/Makefile.am:
38601           Fix nas DIST_SUBDIRS
38602           Uraeus:
38603           Fix bug where make distcheck doesn't get run on adding stuff to
38604           the build.
38605
38606 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38607
38608         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
38609         * ext/divx/gstdivxdec.h:
38610           Fix divx3 ("msmpeg4") playback using divxdec.
38611
38612 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38613
38614         * gst/typefind/gsttypefindfunctions.c:
38615         (mp3_type_frame_length_from_header): fix bug in length computation
38616         (mp3_type_find): improve debugging output
38617
38618 2004-01-23  Julien MOUTTE  <julien@moutte.net>
38619
38620         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
38621         (gst_play_set_location), (gst_play_seek_to_time),
38622         (gst_play_set_audio_sink), (gst_play_set_visualization),
38623         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
38624         the pipeline from scratch. Visualization is back and switch went out as
38625         i realized it was not possible to use the way i wanted.
38626         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
38627         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
38628         clearing in state change from READY to NULL. So that one can clean the
38629         X ressources keeping the element.
38630         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
38631         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
38632         (gst_xvimagesink_colorbalance_set_value),
38633         (gst_xvimagesink_colorbalance_get_value),
38634         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
38635         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
38636         change from READY to NULL and fixed some stupid bugs in colorbalance
38637         get/set values. Also added the following feature : when nobody tries to
38638         set some values to the colorbalance levels before the xcontext is
38639         grabbed, then when creating channels list from Xv attributes we set the
38640         internal values to the Xv defaults. This way we handle buggy Xv drivers
38641         that set default hue values far from the middle of the range (Thanks
38642         to Jon Trowbridge for pointing that issue).
38643         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
38644         colorbalance levels have been set before xcontext is grabbed.
38645
38646 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38647
38648         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
38649           Fix the ossmixer case where we shouldn't open /dev/dsp* because
38650           it might block operations (which is bad for a mixer).
38651
38652 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
38653
38654         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
38655         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
38656         (gmip_find_type_pre):
38657         * gst-libs/gst/media-info/media-info-priv.h:
38658         * gst-libs/gst/media-info/media-info.c:
38659         (gst_media_info_instance_init), (gst_media_info_read_idler):
38660         add fakesink to get caps on decoder src pad again
38661         fix callback prototype to match new have_type signal signature
38662
38663 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
38664
38665         * gst/adder/gstadder.c: (gst_adder_link):
38666           fix non-compile and cut-n-paste code
38667
38668 2004-01-21  David Schleef  <ds@schleef.org>
38669
38670         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
38671         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
38672         (gst_swfdec_init), (gst_swfdec_change_state):
38673         * ext/swfdec/gstswfdec.h:
38674         Fix negotiation.
38675         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
38676         (gst_adder_request_new_pad): Fix negotiation.
38677         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
38678         Add a fixate function.
38679         * gst/intfloat/gstfloat2int.c:
38680         * gst/intfloat/gstfloat2int.h:
38681         * gst/intfloat/gstint2float.c:
38682         * gst/intfloat/gstint2float.h:
38683         Completely rewrite the negotiation.  Doesn't quite work yet,
38684         due to some buffer-frames problem.
38685
38686 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
38687
38688         * ext/gnomevfs/gstgnomevfssrc.c:
38689         * sys/v4l2/v4l2_calls.h:
38690           fix includes for distcheck
38691
38692 2004-01-21  Christian Schaller <uraeus@gnome.org>
38693
38694         * ext/nas/
38695         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
38696         based on earlier patch from Laurent Vivier
38697
38698 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
38699
38700         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
38701         Fix wma caps property
38702         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
38703         Fix typo (flags1 and flags2)
38704
38705 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
38706
38707         * gst-libs/gst/media-info/media-info-priv.c:
38708         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
38709         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
38710         (gmip_find_stream), (gmip_find_track_metadata),
38711         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
38712         (gmip_find_track_format):
38713         * gst-libs/gst/media-info/media-info-priv.h:
38714         * gst-libs/gst/media-info/media-info-test.c: (main):
38715         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
38716         (gst_media_info_read_idler), (gst_media_info_read):
38717         * gst-libs/gst/media-info/media-info.h:
38718           register debugging category and use it for debugging
38719
38720 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
38721
38722         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
38723         (gst_vorbisfile_new_link):
38724           signal streaminfo through tags
38725
38726 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38727
38728         * ext/mplex/gstmplex.cc:
38729         * ext/mplex/gstmplexibitstream.cc:
38730           g++ doesn't like NULL in our i18n/error macros, should be
38731           either (NULL) or ("").
38732
38733 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38734
38735         * sys/dxr3/dxr3audiosink.c:
38736         * sys/dxr3/dxr3init.c:
38737         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
38738         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
38739           Fix more error error error errors (missing includes here).
38740
38741 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38742
38743         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
38744           fix thomas' error errors.
38745
38746 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
38747
38748         * ext/mpeg2enc/gstmpeg2enc.cc:
38749           fix error errors.
38750
38751 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38752
38753         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
38754         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
38755           Fix for new error system.
38756
38757 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
38758
38759         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
38760           fix for new error reporting
38761
38762 2004-01-20  David Schleef  <ds@schleef.org>
38763
38764         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
38765         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
38766         (gst_ximagesink_set_xwindow_id): Change to using a framerate
38767         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
38768         and neither is 100+, most likely.
38769         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
38770         (gst_xvimagesink_getcaps): same
38771
38772 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38773
38774         * configure.ac:
38775           Up version requirement to 2.0.3 (not yet released) to avoid symbol
38776           clashes with ffmpeg.
38777
38778 2004-01-20  Julien MOUTTE  <julien@moutte.net>
38779
38780         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
38781         (gst_switch_init): Fixed switch element : proxying link and setting
38782         caps from src to sink on request.
38783
38784 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38785
38786         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
38787         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
38788         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
38789         fix element_error
38790
38791 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38792
38793         * sys/v4l/v4l_calls.h:
38794         * sys/v4l2/v4l2_calls.h:
38795           element_error fixes
38796
38797 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38798
38799         * gst-libs/gst/gst-i18n-plugin.h:
38800           add locale.h
38801           remove config.h inclusion
38802
38803 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38804
38805         * autogen.sh:
38806           adding autopoint invocation
38807         * Makefile.am:
38808         * configure.ac:
38809         * gst-libs/gst/gettext.h:
38810           adding gettext bits
38811         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
38812         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
38813         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
38814         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
38815         (gst_gnomevfssink_close_file):
38816         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
38817         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
38818         * gst-libs/gst/gst-i18n-plugin.h:
38819         * gst/avi/gstavi.c: (plugin_init):
38820         * sys/dxr3/dxr3init.c: (plugin_init):
38821         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
38822         * sys/oss/gstossaudio.c: (plugin_init):
38823         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
38824         * sys/v4l/gstv4l.c: (plugin_init):
38825         * sys/v4l/v4l_calls.c: (gst_v4l_open):
38826         * sys/v4l2/gstv4l2.c: (plugin_init):
38827         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
38828         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
38829         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
38830         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
38831         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
38832         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
38833           make sure locale and translation domain are set
38834           fix translated strings
38835         * po/.cvsignore:
38836         * po/LINGUAS:
38837         * po/Makevars:
38838         * po/POTFILES.in:
38839         * po/nl.po:
38840           put translation files into place
38841         * sys/xvideo/imagetest.c: (main):
38842         * ext/dv/demo-play.c: (main):
38843           fix unnecessary translations
38844
38845 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
38846
38847         * ext/sndfile/gstsf.c:
38848         * gst/avi/gstavimux.c:
38849         * ext/audiofile/gstafsink.c:
38850         * ext/audiofile/gstafsrc.c:
38851         * ext/gnomevfs/gstgnomevfssink.c:
38852         * ext/gnomevfs/gstgnomevfssrc.c:
38853         * sys/oss/gstosselement.c:
38854         * sys/v4l/v4l_calls.h:
38855           fix i18n include
38856
38857 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38858
38859         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
38860         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
38861         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
38862         (gst_v4l2_get_output), (gst_v4l2_set_output),
38863         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
38864         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
38865         (gst_v4l2_set_attribute):
38866         update to new error handling
38867
38868 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38869
38870         * ext/sidplay/gstsiddec.cc:
38871         * gst/modplug/gstmodplug.cc:
38872           parenthese NULL because C++ seems angry about it
38873
38874 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
38875
38876         * gst-libs/gst/gst-i18n-plugin.h:
38877           add skeleton i18n stuff, but needs to be further implemented
38878
38879 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38880
38881         * examples/gstplay/player.c: (main):
38882         * ext/aalib/gstaasink.c: (gst_aasink_open):
38883         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
38884         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38885         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
38886         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
38887         (gst_afsink_close_file):
38888         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
38889         (gst_afsrc_close_file):
38890         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
38891         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
38892         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
38893         * ext/esd/esdmon.c: (gst_esdmon_get):
38894         * ext/esd/esdsink.c: (gst_esdsink_chain):
38895         * ext/faac/gstfaac.c: (gst_faac_chain):
38896         * ext/faad/gstfaad.c: (gst_faad_chain):
38897         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
38898         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38899         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
38900         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
38901         (gst_flacdec_loop):
38902         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38903         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
38904         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
38905         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
38906         (gst_gnomevfssink_close_file):
38907         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
38908         (gst_gnomevfssrc_open_file):
38909         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
38910         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
38911         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
38912         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
38913         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
38914         * ext/mad/gstmad.c: (gst_mad_chain):
38915         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
38916         * ext/mpeg2dec/gstmpeg2dec.c:
38917         * ext/mpeg2enc/gstmpeg2enc.cc:
38918         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
38919         * ext/mplex/gstmplex.cc:
38920         * ext/mplex/gstmplexibitstream.cc:
38921         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
38922         (gst_ogg_demux_push), (gst_ogg_pad_push):
38923         * ext/raw1394/gstdv1394src.c:
38924         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
38925         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
38926         * ext/sidplay/gstsiddec.cc:
38927         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
38928         (gst_sf_loop):
38929         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
38930         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
38931         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
38932         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38933         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
38934         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
38935         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
38936         * gst-libs/gst/Makefile.am:
38937         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38938         (gst_riff_read_element_data), (gst_riff_read_seek),
38939         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
38940         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
38941         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
38942         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
38943         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
38944         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
38945         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
38946         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
38947         * gst/goom/gstgoom.c: (gst_goom_chain):
38948         * gst/id3/gstid3types.c: (gst_id3types_loop):
38949         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
38950         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
38951         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38952         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
38953         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
38954         (gst_ebml_read_float), (gst_ebml_read_header):
38955         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
38956         (gst_matroska_demux_parse_blockgroup):
38957         * gst/modplug/gstmodplug.cc:
38958         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
38959         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
38960         * gst/oneton/gstoneton.c: (gst_oneton_chain):
38961         * gst/silence/gstsilence.c: (gst_silence_get):
38962         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
38963         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
38964         * gst/speed/gstspeed.c: (speed_loop):
38965         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
38966         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
38967         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
38968         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
38969         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
38970         (gst_wavparse_loop):
38971         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
38972         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
38973         (dxr3audiosink_close):
38974         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
38975         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
38976         (dxr3videosink_close), (dxr3videosink_write_data):
38977         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
38978         * sys/oss/gstosselement.h:
38979         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
38980         (gst_osssink_chain):
38981         * sys/oss/gstosssrc.c: (gst_osssrc_get):
38982         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
38983         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
38984         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
38985         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
38986         (gst_v4l_enable_overlay):
38987         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
38988         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
38989         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
38990         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
38991         (gst_v4l_set_audio):
38992         * sys/v4l/v4l_calls.h:
38993         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
38994         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
38995         (gst_v4lmjpegsink_playback_init),
38996         (gst_v4lmjpegsink_playback_start):
38997         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
38998         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
38999         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
39000         (gst_v4lmjpegsrc_requeue_frame):
39001         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
39002         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
39003         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
39004         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
39005         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
39006         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
39007         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
39008         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
39009         (gst_v4l2src_capture_stop):
39010         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
39011         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39012         (gst_ximagesink_chain):
39013         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
39014         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
39015         (gst_xvideosink_xwindow_new):
39016         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39017         (gst_xvimagesink_chain):
39018         use new error signal, function and categories
39019
39020 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
39021
39022         * configure.ac:
39023         * ext/Makefile.am:
39024         * ext/musicbrainz/gsttrm.c:
39025         * ext/musicbrainz/gsttrm.h:
39026         * ext/musicbrainz/Makefile.am:
39027         Add a trm plugin
39028
39029 2004-01-18  Julien MOUTTE  <julien@moutte.net>
39030
39031         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
39032         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
39033         synchronous property for debugging.
39034         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
39035         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39036         (gst_xvimagesink_set_property): Moving a pointer declaration to a
39037         smaller block, fixing indent.
39038
39039 2004-01-16  David Schleef  <ds@schleef.org>
39040
39041         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
39042         property affects the video stream.
39043         * sys/xvimage/xvimagesink.c:
39044         * sys/xvimage/xvimagesink.h:
39045         Add synchronous property for debugging.  Should probably be
39046         disabled in non-CVS builds.  Make sure that the Xv attribute
39047         exists before we set it (crash!).  Fix a silly float bug that
39048         caused colorbalance to just not work.
39049
39050 2004-01-17  Christian Schaller <Uraeus@gnome.org>
39051
39052         * tools/gst-launch-ext.in - update for new plugins
39053
39054 2004-01-16  David Schleef  <ds@schleef.org>
39055
39056         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
39057         already-freed caps.
39058
39059 2994-01-16  Christian Schaller <Uraeus@gnome.org>
39060
39061         * Update spec for new colorspace plugin and libcaca plugin
39062         * Fix compilation of libcaca plugin (clock -> id)
39063
39064 2004-01-16  Julien MOUTTE <julien@moutte.net>
39065
39066         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
39067         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
39068         (gst_xvimagesink_set_xwindow_id),
39069         (gst_xvimagesink_colorbalance_set_value),
39070         (gst_xvimagesink_colorbalance_get_value),
39071         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
39072         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
39073         correct colorbalance properties. They can now be set when the element
39074         is still in NULL state. The values will be committed to the Xv Port
39075         when xcontext is initialized.
39076         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
39077         brightness int values in the GstXvImagesink structure.
39078
39079 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39080
39081         * gst-libs/gst/Makefile.am:
39082           restructure so having local patches works easier.
39083
39084 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39085
39086         * ext/mpeg2enc/Makefile.am:
39087         * ext/mpeg2enc/gstmpeg2enc.cc:
39088         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39089           Bugfix with respect to EOS handling.
39090
39091 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39092
39093         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
39094           Link with right caps (else, it segfaults).
39095         * ext/mplex/gstmplexjob.cc:
39096           Fix for slight API change in 1.6.1.93 release of mjpegtools.
39097
39098 2004-01-15  David Schleef  <ds@schleef.org>
39099
39100         * gst-libs/gst/audio/Makefile.am:
39101         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
39102         from the template.
39103         * gst-libs/gst/audio/gstaudiofilter.c:
39104         * gst-libs/gst/audio/gstaudiofilter.h:
39105         Add bytes_per_sample and size and n_samples calculation.
39106         * gst-libs/gst/audio/gstaudiofilterexample.c:
39107         Remove, now autogenerated.
39108         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
39109         Moved from gstaudiofilterexample, object name changed, code added
39110         so that it actually works.
39111         * gst-libs/gst/audio/make_filter:
39112         Script to build an audiofilter subclass from the template.
39113         * gst/colorspace/Makefile.am:
39114         * gst/colorspace/yuv2yuv.c:
39115         Remove file, since it's GPL, and we don't use it.
39116
39117 2004-01-15  Julien MOUTTE  <julien@moutte.net>
39118
39119         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
39121         them use the buffer free function to test how the buffer was allocated.
39122
39123 2004-01-15  David Schleef  <ds@schleef.org>
39124
39125         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
39126         that handles osssink fallback.
39127         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
39128         (gst_audio_convert_getcaps):
39129         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
39130         Add audio/x-qdm2 for QDM2 audio.
39131         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39132         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
39133         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
39134         Decrease minimum size to 16x16.
39135         * gst/wavparse/gstwavparse.c:
39136         Convert disabled pad template caps to new caps.
39137         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
39138         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39139         (gst_xvimagesink_chain): Throw element error when display cannot
39140         be opened.  Increase minimum framerate to 1.0.  Check the data
39141         free function on a buffer to make sure it is the type we expect
39142         before manipulating it.
39143
39144 2004-01-15  Julien MOUTTE <julien@moutte.net>
39145
39146         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
39147         (gst_videobalance_colorbalance_set_value): Implement passthru if
39148         settings are in the middle.
39149         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
39150
39151 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39152
39153         * gst/videofilter/Makefile.am:
39154         * gst/volume/Makefile.am:
39155           Since we use videofilter symbols, link to it.
39156
39157 2004-01-15  Julien MOUTTE <julien@moutte.net>
39158
39159         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
39160         mixer interface type to HARDWARE.
39161         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
39162         type to SOFTWARE.
39163         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
39164         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
39165         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
39166         (gst_volume_interface_init), (gst_volume_list_tracks),
39167         (gst_volume_set_volume), (gst_volume_get_volume),
39168         (gst_volume_set_mute), (gst_volume_mixer_init),
39169         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
39170         (volume_init): Implementing mixer interface.
39171         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
39172         * sys/oss/gstosselement.c: (gst_osselement_get_type),
39173         (gst_osselement_change_state): Removing some trailing commas in
39174         structures.
39175         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
39176         interface type to HARDWARE.
39177         * sys/v4l/gstv4lcolorbalance.c:
39178         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
39179         type to HARDWARE.
39180         * sys/v4l2/gstv4l2colorbalance.c:
39181         (gst_v4l2_color_balance_interface_init): Setting colorbalance
39182         interface type to HARDWARE.
39183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
39184         same code than ximagesink for event handling.
39185
39186 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39187
39188         * ext/snapshot/Makefile.am:
39189         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
39190         (gst_snapshot_chain):
39191         * ext/snapshot/gstsnapshot.h:
39192           This has to be a joke... Snapshot should be connected to a tee,
39193           colorspace element before it and EOS after that, where the other
39194           src of the tee receives normal data.
39195           The current way is *wrong*.
39196
39197 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39198
39199         * ext/hermes/gsthermescolorspace.c:
39200           Fix another compile error. Same as below.
39201
39202 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39203
39204         * gst/colorspace/gstcolorspace.c:
39205         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
39206         (gst_colorspace_i420_to_yv12):
39207           Fix compiling... Didn't test if it actually works.
39208
39209 2004-01-15  David Schleef  <ds@schleef.org>
39210
39211         * configure.ac:
39212         * gst/colorspace/Makefile.am:
39213         * gst/colorspace/gstcolorspace.c:
39214         * gst/colorspace/gstcolorspace.h:
39215         * gst/colorspace/yuv2rgb.c:
39216         * gst/colorspace/yuv2rgb.h:
39217         Duplicate the ext/hermes colorspace plugin, and remove Hermes
39218         code and GPL code.  Fix for new caps negotiation.  Rewrite
39219         much of the format handling code, and some of the conversion
39220         code.  Basically, rewrote almost everything.  This element
39221         handles I420, YV12 to RGB conversions.
39222         * ext/hermes/Makefile.am:
39223         * ext/hermes/gsthermescolorspace.c:
39224         Rename colorspace to hermescolorspace.  Fix negotiation issues.
39225         Remove non-Hermes related code.  This element handles lots of
39226         RGB to RGB conversions, but no YUV.
39227         * ext/hermes/gstcolorspace.c:
39228         * ext/hermes/gstcolorspace.h:
39229         * ext/hermes/rgb2yuv.c:
39230         * ext/hermes/yuv2rgb.c:
39231         * ext/hermes/yuv2rgb.h:
39232         * ext/hermes/yuv2rgb_mmx16.s:
39233         * ext/hermes/yuv2yuv.c:
39234         * ext/hermes/yuv2yuv.h:
39235         Remove old code.
39236
39237 2004-01-14  Colin Walters  <walters@verbum.org>
39238
39239         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
39240         they've already been.
39241
39242 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39243
39244         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
39245           assume tag mode when pad is not connected
39246
39247 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39248
39249         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39250           Don't update the time of the clock
39251         (gst_alsa_sink_loop):
39252           sync to the clock given to alsasink, not the own clock
39253         * sys/oss/gstosssink.c: (gst_osssink_chain):
39254           sync to the clock
39255         (gst_osssink_change_state):
39256           activate the clock
39257         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39258         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
39259           remove bogus code that made DISCONT events unhandled
39260         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
39261           explicitly case to double in _set_simple. (fixes 2nd warning in bug
39262           #131502)
39263         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
39264         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
39265         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
39266           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
39267           2nd warning in bug #131502)
39268
39269 2004-01-14  Julien MOUTTE  <julien@moutte.net>
39270
39271         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
39272         (gst_videobalance_colorbalance_set_value),
39273         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
39274         for colorbalance interface implementation.
39275         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39276         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
39277         (gst_ximagesink_dispose), (gst_ximagesink_init),
39278         (gst_ximagesink_class_init): Adding DISPLAY property.
39279         * sys/ximage/ximagesink.h: Adding display_name to store display.
39280         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39281         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
39282         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
39283         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
39284         properties (they still need polishing though for gst-launch use : no
39285         xcontext yet, i ll do that tomorrow).
39286         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
39287
39288 2004-01-14  Julien MOUTTE  <julien@moutte.net>
39289
39290         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39291         (gst_play_set_location), (gst_play_set_visualization): Preparing
39292         switch integration, adding videobalance in the pipeline.
39293
39294 2004-01-14  Julien MOUTTE <julien@moutte.net>
39295
39296         * gst-libs/gst/colorbalance/colorbalance.c:
39297         (gst_color_balance_class_init): Adding a default type.
39298         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
39299         the type.
39300         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
39301         (gst_videobalance_dispose), (gst_videobalance_class_init),
39302         (gst_videobalance_init), (gst_videobalance_interface_supported),
39303         (gst_videobalance_interface_init),
39304         (gst_videobalance_colorbalance_list_channels),
39305         (gst_videobalance_colorbalance_set_value),
39306         (gst_videobalance_colorbalance_get_value),
39307         (gst_videobalance_colorbalance_init): Implementing colorbalance
39308         interface.
39309         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
39310         list.
39311         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
39312         bug which was triggering a BadAccess X error when setting an overlay
39313         before pad was really negotiated.
39314         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
39315         Using the colorbalance type macro.
39316
39317 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39318
39319         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
39320         (gst_flacenc_chain):
39321           handle tags correctly
39322         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
39323           extract ID3v1 tags correctly
39324
39325 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39326
39327         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
39328         (plugin_init):
39329           Improve matroska typefinding for odd-typed headers...
39330
39331 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39332
39333         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
39334           Fix for using incremental number on padnames.
39335
39336 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39337
39338         * ext/divx/gstdivxdec.c:
39339         * ext/divx/gstdivxenc.c:
39340           Set category to divx4linux instead of divx (too generic).
39341         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
39342         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
39343         (gst_wavparse_loop), (gst_wavparse_change_state):
39344         * gst/wavparse/gstwavparse.h:
39345           fix parsing of WAV files with non-standard fmt-tag size and fix
39346           skipping of unrecognized chunks... Someone please fix this thing
39347           to use rifflib so all this is automated.
39348         * sys/v4l/Makefile.am:
39349         * sys/v4l2/Makefile.am:
39350           Add X_CFLAGS because we depend on X (for overlay).
39351
39352 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
39353
39354         * ext/mpeg2dec/gstmpeg2dec.c:
39355           Don't issue a timestamp unless we tagged the frame
39356           with a PTS.
39357
39358 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39359
39360         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
39361           Query the audio element to get the time, not the clock. We're
39362           interested in the element's time here.
39363
39364 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39365
39366         * ext/aalib/gstaasink.c: (gst_aasink_chain):
39367         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39368         * ext/esd/esdsink.c: (gst_esdsink_chain):
39369         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
39370         * ext/mas/massink.c: (gst_massink_chain):
39371         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
39372         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
39373         (gst_matroska_demux_parse_metadata):
39374         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
39375         (gst_mpeg_parse_release_locks):
39376         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
39377         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
39378         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39379         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
39380         (gst_osssink_change_state):
39381         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39382         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39383         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
39384         (gst_xvideosink_release_locks):
39385         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
39386           use element time.
39387         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
39388         (gst_alsa_clock_stop):
39389         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
39390         (gst_audio_clock_get_internal_time):
39391           simplify for use with new clocking code.
39392         * testsuite/alsa/Makefile.am:
39393         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
39394           fix testsuite for new caps system
39395
39396 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39397
39398         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
39399         * ext/flac/gstflacenc.c: (add_one_tag):
39400           length is already host endian, no need to convert. Fixes playback of
39401           tagged files on PPC. (bug #128384)
39402
39403 2004-01-13  Julien MOUTTE <julien@moutte.net>
39404
39405         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
39406         colorbalance interface stating if it is hardware based or software
39407         based.
39408         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
39409         Removing a trailing comma.
39410         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39411         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
39412         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
39413         the documentation seems to be wrong on the -1000 to 1000 interval.
39414
39415 2004-01-12  David Schleef  <ds@schleef.org>
39416
39417         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
39418         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
39419         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
39420         Fix negotiation.  Add a bufferalloc function for the sink pad,
39421         and generally clean up some of the code.
39422
39423 2004-01-12  Julien MOUTTE <julien@moutte.net>
39424
39425         * gst-libs/gst/colorbalance/colorbalancechannel.c:
39426         (gst_color_balance_channel_dispose): Adding safety check in dispose
39427         method.
39428         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39429         (gst_xvimagesink_xcontext_clear),
39430         (gst_xvimagesink_interface_supported),
39431         (gst_xvimagesink_colorbalance_list_channels),
39432         (gst_xvimagesink_colorbalance_set_value),
39433         (gst_xvimagesink_colorbalance_get_value),
39434         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
39435         Adding colorbalance interface support to set XV parameters such as
39436         HUE, BRIGHTNESS, CONTRAST, SATURATION.
39437         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
39438         interface.
39439
39440 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39441
39442         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
39443         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
39444         (gst_audio_convert_init), (gst_audio_convert_set_property),
39445         (gst_audio_convert_get_property), (gst_audio_convert_chain),
39446         (gst_audio_convert_link),
39447         (gst_audio_convert_buffer_to_default_format),
39448         (gst_audio_convert_buffer_from_default_format), (plugin_init):
39449           - implement _getcaps and use it
39450           - improve linking
39451           - remove float caps since no float conversion is actually done
39452           - remove properties and arguments that were to be used for rate
39453             conversion
39454
39455 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39456
39457         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
39458         (gst_audio_structure_set_int):
39459         * gst-libs/gst/audio/audio.h:
39460           add helper functions for _getcaps matching the standard audio
39461           templates
39462
39463 2004-01-12  David Schleef  <ds@schleef.org>
39464
39465         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
39466         Test that pad is negotiated before getting its caps.
39467
39468 2004-01-12  Julien MOUTTE <julien@moutte.net>
39469
39470         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
39471         analyzing the pads of an element the bin is mostly in READY state so
39472         no caps were negotiated. This helper function needs to work with
39473         _get_caps directly then. I was not freeing them though, added that to
39474         fix the mem leak.
39475
39476 2004-01-12  Julien MOUTTE <julien@moutte.net>
39477
39478         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39479         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
39480         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
39481         than the free_func.
39482
39483 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39484
39485         * sys/oss/gstossaudio.c: (plugin_init):
39486         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
39487         * sys/oss/gstosselement.h:
39488           make an oss debugging category
39489           make failure more descriptive
39490
39491 2004-01-11  David Schleef  <ds@schleef.org>
39492
39493         * ext/ffmpeg/gstffmpeg.c:
39494         * ext/ffmpeg/gstffmpegcodecmap.c:
39495         * ext/ffmpeg/gstffmpegdec.c:
39496         * ext/ffmpeg/gstffmpegenc.c:
39497         * ext/ffmpeg/gstffmpegprotocol.c:
39498         * ext/gdk_pixbuf/gstgdkanimation.c:
39499         * ext/jpeg/gstjpeg.c:
39500         * ext/libpng/gstpng.c:
39501         * ext/mpeg2dec/perftest.c:
39502         * ext/speex/gstspeex.c:
39503         * gst-libs/gst/resample/dtos.c:
39504         * gst/intfloat/gstintfloatconvert.c:
39505         * gst/oneton/gstoneton.c:
39506         * gst/rtjpeg/RTjpeg.c:
39507         * gst/rtp/gstrtp.c:
39508         * sys/dxr3/dxr3init.c:
39509         * sys/glsink/gstgl_nvimage.c:
39510         * sys/glsink/gstgl_pdrimage.c:
39511         * sys/glsink/gstglsink.c:
39512         * testsuite/gst-lint:
39513         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
39514
39515 2004-01-11  David Schleef  <ds@schleef.org>
39516
39517         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
39518         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
39519         * ext/gdk_pixbuf/gstgdkanimation.c:
39520         (gst_gdk_animation_iter_create_pixbuf):
39521         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
39522         (gst_gdk_pixbuf_chain):
39523         * ext/gdk_pixbuf/gstgdkpixbuf.h:
39524         * ext/jack/gstjack.c: (gst_jack_change_state):
39525         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
39526         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
39527         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
39528         * gst/videofilter/gstvideofilter.c:
39529         (gst_videofilter_set_output_size):
39530         Remove all usage of gst_pad_get_caps(), and replace it with
39531         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
39532
39533 2004-01-11  David Schleef  <ds@schleef.org>
39534
39535         * configure.ac:
39536         * ext/Makefile.am: Fixes to make ext/libcaca compile.
39537         * ext/divx/gstdivxdec.c:
39538         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
39539         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
39540         handle images that span multiple buffers.  Now work with both
39541         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
39542         * ext/gdk_pixbuf/gstgdkpixbuf.h:
39543         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
39544         video/video.h changes
39545         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
39546         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
39547         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
39548         of GstData free function.
39549         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
39550         same.
39551
39552 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39553
39554         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
39555         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
39556         (gst_v4l2element_get_property):
39557         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
39558           add norm, channel and frequency properties.
39559         * sys/v4l2/gstv4l2tuner.c:
39560           fixes for tuner interface changes
39561         * sys/v4l2/gstv4l2element.h:
39562         * sys/v4l2/gstv4l2src.c:
39563         * sys/v4l2/gstv4l2src.h:
39564         * sys/v4l2/v4l2src_calls.c:
39565         * sys/v4l2/v4l2src_calls.h:
39566           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
39567
39568 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39569
39570         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
39571         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
39572         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
39573         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
39574         * gst-libs/gst/tuner/tuner.h:
39575           GObjects aren't const.
39576           Add find_by_name functions.
39577           Add checks to _changed functions.
39578         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
39579         (gst_v4l_tuner_get_norm):
39580           Fixes for above.
39581
39582 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39583
39584         * gst-libs/gst/video/video.h:
39585           Fix caps template names to be understandable.
39586           Prefix everything with GST_VIDEO.
39587         * ext/aalib/gstaasink.c:
39588         * ext/divx/gstdivxdec.c:
39589         * ext/divx/gstdivxenc.c:
39590         * ext/gdk_pixbuf/gstgdkpixbuf.c:
39591         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
39592         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
39593         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
39594         * ext/libcaca/gstcacasink.c:
39595         * ext/libpng/gstpngenc.c: (raw_caps_factory):
39596         * ext/snapshot/gstsnapshot.c:
39597         * ext/swfdec/gstswfdec.c:
39598         * ext/xvid/gstxviddec.c:
39599         * ext/xvid/gstxvidenc.c:
39600         * gst/chart/gstchart.c:
39601         * gst/deinterlace/gstdeinterlace.c:
39602         * gst/effectv/gsteffectv.c:
39603         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
39604         * gst/goom/gstgoom.c:
39605         * gst/median/gstmedian.c:
39606         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
39607         (gst_monoscope_srcconnect), (gst_monoscope_chain):
39608         * gst/overlay/gstoverlay.c:
39609         * gst/smooth/gstsmooth.c:
39610         * gst/smpte/gstsmpte.c:
39611         * gst/synaesthesia/gstsynaesthesia.c:
39612         * gst/videocrop/gstvideocrop.c:
39613         * gst/videodrop/gstvideodrop.c:
39614         * gst/y4m/gsty4mencode.c:
39615         * sys/qcam/gstqcamsrc.c:
39616         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
39617           Make them work with new video.h file.
39618         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
39619         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
39620         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
39621         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
39622           Make it work with new buffer allocation system.
39623
39624 2004-01-11  Julien MOUTTE  <julien@moutte.net>
39625
39626         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
39627         pad_alloc_buffer implementation to use ->srcpad
39628         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
39629         pad_alloc_buffer implementation to use ->srcpad
39630         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
39631         pad_alloc_buffer implementation to use ->srcpad
39632         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
39633         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
39634         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
39635         a reference to everything we need.
39636         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
39637         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
39638         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
39639         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
39640         a reference to everything we need.
39641         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
39642
39643 2004-01-11  David Schleef  <ds@schleef.org>
39644
39645         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
39646         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
39647         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
39648         structure members.
39649         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
39650         value during a resize/renegotiation.
39651         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
39652         gst_pad_alloc_buffer();
39653         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
39654         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
39655         structure members.
39656         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
39657         Fix for rename of buffer private structure members.
39658         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
39659         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
39660         Fix for rename of buffer private structure members.
39661         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
39662         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
39663         Fix for rename of buffer private structure members.
39664
39665 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
39666
39667         reviewed by: David Schleef <ds@schleef.org>
39668
39669         * gst/videofilter/Makefile.am:
39670         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
39671         from the patch by ds to fit in with recent make_filter changes.
39672
39673 2004-01-11  Julien MOUTTE  <julien@moutte.net>
39674
39675         * configure.ac: Adding examples/switch/Makefile
39676         * examples/Makefile.am: Adding examples/switch
39677         * examples/switch/Makefile.am: Adding switcher example.
39678         * examples/switch/switcher.c: (got_eos), (idle_iterate),
39679         (switch_timer), (main): Adding an example demonstrating switch usage
39680         with 2 videotestsrc showing different patterns.
39681         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
39682         (gst_switch_init): Fixing switch with the new caps system.
39683
39684 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39685
39686         * gst-libs/gst/video/video.h:
39687           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
39688           They should probably be like
39689           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
39690
39691 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39692
39693         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
39694         (qtdemux_parse_trak):
39695           fix audio chunk size/timestamp calculation
39696
39697 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39698
39699         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
39700           fix SVQ3 caps
39701
39702 2004-01-11  Steve Baker  <steve@stevebaker.org>
39703
39704         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
39705         (gst_agingtv_base_init), (gst_agingtv_class_init),
39706         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
39707         (gst_agingtv_set_property), (gst_agingtv_get_property):
39708         Port agingTV to videofilter
39709
39710 2004-01-09  Julien MOUTTE <julien@moutte.net>
39711
39712         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
39713         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
39714
39715 2004-01-09  Julien MOUTTE <julien@moutte.net>
39716
39717         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
39718         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
39719         * gst-libs/gst/xoverlay/xoverlay.c:
39720         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
39721         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
39722         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
39723         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39724         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
39725         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
39726         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
39727         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
39728         the bufferalloc_function to replace bufferpools, fixing the XOverlay
39729         interface implementation to handle xid being 0 and fix some bugs
39730         triggered by Benjamin's testcase.
39731         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
39732         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
39733         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
39734         the bufferalloc_function to replace bufferpools, fixing the XOverlay
39735         interface implementation to handle xid being 0 and fix some bugs
39736         triggered by Benjamin's testcase.
39737
39738 2004-01-09  David Schleef  <ds@schleef.org>
39739
39740         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
39741         mouse pointer events.  It works.
39742
39743 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39744
39745         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
39746           Use explicit caps - fix capsnego.
39747         * ext/xvid/gstxviddec.c:
39748         * ext/xvid/gstxvidenc.c:
39749           Remove macro-inside-macro which caused compile errors.
39750         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
39751           Error out if it's not a RIFF file. Else we error out without
39752           gst_element_error() which is not good...
39753
39754 2004-01-08  David Schleef  <ds@schleef.org>
39755
39756         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
39757         Fix pad_link function to handle formats that ffmpeg returns
39758         as multiple caps structures.
39759         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
39760         Only complain if source buffer is _smaller_ than expected.
39761         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
39762         (gst_videoscale_handle_src_event): Resize navigation events
39763         when passing them upstream.
39764         * gst/videotestsrc/gstvideotestsrc.c:
39765         * gst/videotestsrc/gstvideotestsrc.h:
39766         * gst/videotestsrc/videotestsrc.c:
39767         * gst/videotestsrc/videotestsrc.h:
39768         Rewrite many of the buffer painting functions to handle odd
39769         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
39770         been verified to work with my video card.
39771         * testsuite/gst-lint:  Add check for elements calling
39772         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
39773
39774 2004-01-08  David Schleef  <ds@schleef.org>
39775
39776         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
39777         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
39778
39779 2004-01-08  Julien MOUTTE  <julien@moutte.net>
39780
39781         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
39782         configure event is not emiting the desired size signal. That fixes
39783         aspect ratio issues with gst-player.
39784
39785 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39786
39787         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
39788           Fix capsnego.
39789
39790 2004-01-08  Julien MOUTTE  <julien@moutte.net>
39791
39792         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
39793         public method to fire size signal.
39794
39795 2004-01-07  Julien MOUTTE  <julien@moutte.net>
39796
39797         * examples/gstplay/Makefile.am: Adding the interface library.
39798         * gst-libs/gst/play/Makefile.am: Adding the interface library.
39799         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
39800         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
39801         GST_IS_X_OVERLAY before signal connect.
39802         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
39803         Removing the have_video_size signal.
39804         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
39805         and associated public method.
39806         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
39807         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
39808         signal.
39809         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
39810         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
39811         signal.
39812         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
39813         Using XOverlay public method to fire size signal.
39814
39815 2004-01-07  David Schleef  <ds@schleef.org>
39816
39817         * gst/videofilter/Makefile.am:
39818         * gst/videofilter/gstvideotemplate.c:
39819         * gst/videofilter/make_filter:
39820         Create gstvideoexample.c in a srcdir!=builddir friendly way.
39821         Convert make_filter to /bin/sh script.
39822
39823 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
39824
39825         * gst/modplug/gstmodplug.cc: fix element description
39826
39827 2004-01-07  Julien MOUTTE  <julien@moutte.net>
39828
39829         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
39830         (got_video_size): Adding some new lines in g_print calls.
39831         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
39832         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
39833         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
39834         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
39835         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
39836         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
39837         Complete code review, reverting some stuff i disagree with, adding
39838         some fixes : time synchronization on invalid timestamps, renegotiation
39839         of private window.
39840         * sys/ximage/ximagesink.h:
39841         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
39842         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
39843         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
39844         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
39845         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
39846         (gst_xvimagesink_buffer_new),
39847         (gst_xvimagesink_navigation_send_event),
39848         (gst_xvimagesink_set_xwindow_id),
39849         (gst_xvimagesink_get_desired_size),
39850         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
39851         stuff i disagree with, adding some fixes : Renegotiation of private
39852         window, implementing get_desired_size.
39853
39854 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39855
39856         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
39857         (gst_afsink_handle_event):
39858         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
39859         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
39860         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
39861         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
39862         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
39863           Fix for instantiate-test (see core). Also remove dead code from
39864           jpegenc (which still needs fixing, but that's lower on my TODO
39865           list...).
39866         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
39867           Never return NULL as caps.
39868
39869 2004-01-07  David Schleef  <ds@schleef.org>
39870
39871         * configure.ac:
39872         * ext/Makefile.am:
39873         * ext/librfb/Makefile.am:
39874         * ext/librfb/gstrfbsrc.c:
39875         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
39876         is the protocol used by VNC.
39877
39878 2004-01-07  David Schleef  <ds@schleef.org>
39879
39880         * gst/videofilter/gstvideotemplate.c:
39881         * gst/videofilter/gstvideotemplate.h:
39882         * gst/videofilter/make_filter:
39883         Merge videotemplate header into source file.
39884         * gst/effectv/Makefile.am:
39885         * gst/effectv/gsteffectv.c: (plugin_init):
39886         * gst/effectv/gstwarp.c:
39887         Make warpTV a subclass of videofilter.
39888
39889 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39890
39891         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
39892           Add guard against invalid utf-8 conversions in mad. Just in case.
39893
39894 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39895
39896         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
39897           Fix for bug shown by poisoning
39898
39899 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39900
39901         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
39902         (gst_v4lmjpegsrc_buffer_free):
39903         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
39904         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
39905         (gst_v4lsrc_buffer_free):
39906           Fix for removed bufferpools.
39907
39908 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
39909
39910         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39911         Fix caps negotiation.
39912
39913         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
39914         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
39915         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
39916         (dvdnavsrc_event):
39917         * ext/mpeg2dec/gstmpeg2dec.c:
39918         * gst-libs/gst/navigation/navigation.c:
39919         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
39920         * gst-libs/gst/navigation/navigation.h:
39921         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
39922         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
39923         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
39924         Super-simple first version of mouse and keyboard events. Clicking
39925         on a DVD menu now works, although it may not take you where you
39926         expected.
39927
39928         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
39929         * gst/videotestsrc/gstvideotestsrc.c:
39930         (gst_videotestsrc_src_fixate):
39931         These fixate functions were broken - they never actually
39932         fixated :)
39933
39934 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39935
39936         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
39937         (gst_icecastsend_init):
39938           fix for new caps system.
39939         * gst-libs/gst/mixer/mixertrack.h:
39940         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
39941           Add 'master track' flag (for tools like ACME that only want to
39942           change the main volume).
39943
39944 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
39945
39946         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
39947         (gst_xvid_csp_to_caps):
39948         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
39949         * ext/xvid/gstxvidenc.c:
39950         ifdef out ARGB type when it isn't available
39951         in xvidcore 1.0.0beta2
39952
39953 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39954
39955         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
39956           When we have received a new SCR right in the first buffer after
39957           a seek (so in the same cycle that handles the discont), we should
39958           handle the buffer instead of unreffing it, else we lose data.
39959
39960 2004-01-06  Iain <iain@prettypeople.org>
39961
39962         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
39963           buffer-frames caps too.
39964
39965         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
39966           caps that we need, don't destroy them all and rebuild them. And when
39967           creating src pads, use the src pad template rather than the sink...
39968
39969 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39970
39971         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
39972           Add pad to element *after* setting functions such as event handler.
39973           Without this, the scheduler (opt) will link pads, set the event
39974           handler from the default event function (dispatcher in gstpad.c)
39975           and *after* that, we will set our own event function, which will
39976           thus never be used (and thus mpegdemux doesn't handle events).
39977
39978 2004-01-04  David Schleef  <ds@schleef.org>
39979
39980         Fix the fixate functions to handle new prototype:
39981         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
39982         * gst/videotestsrc/gstvideotestsrc.c:
39983         (gst_videotestsrc_src_fixate):
39984         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
39985         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
39986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
39987
39988 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39989
39990         * sys/ximage/ximagesink.h:
39991         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
39992         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
39993         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
39994         (gst_ximagesink_xoverlay_init):
39995           assorted fixes to make (re)embedding work
39996         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
39997         (gst_ximagesink_get_desired_size):
39998           implement desired size additions to XOverlay
39999
40000 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40001
40002         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
40003         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
40004         (gst_x_overlay_got_desired_size):
40005         * gst-libs/gst/xoverlay/xoverlay.h:
40006           Add optional "desired size" signal and querying.
40007
40008 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40009
40010         * gst/matroska/matroska-demux.c:
40011         (gst_matroska_demux_parse_blockgroup):
40012           Fix EBML-laced block parsing. Diffs are relative to previous
40013           lace, not the first lace. Thanks to Mosu from the Matroska
40014           team for detecting this.
40015         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40016         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
40017         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
40018         (gst_wavparse_change_state):
40019         * gst/wavparse/gstwavparse.h:
40020           Quickfix for capsnego.
40021
40022 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40023
40024         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
40025           Fix indenting, fix pad creation.
40026
40027 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40028
40029         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
40030         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
40031         (gst_xviddec_sink_link):
40032           Implement src_getcaps() so proper size caps is negotiated.
40033
40034 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40035
40036         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
40037           Finish flac decoder on EOS. See #116178.
40038
40039 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40040
40041         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
40042         (gst_matroska_demux_add_stream):
40043         * gst/matroska/matroska-ids.h:
40044           Add getcaps() function to fix capsnego...
40045
40046 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40047
40048         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
40049         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
40050         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
40051           Fix more integer overflows. Again, see #126967.
40052
40053 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40054
40055         * ext/mpeg2dec/gstmpeg2dec.c:
40056           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
40057           #130416.
40058
40059 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40060
40061         * configure.ac:
40062         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
40063         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
40064         * ext/xvid/gstxvid.h:
40065         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
40066         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
40067         (gst_xviddec_src_link), (gst_xviddec_sink_link),
40068         (gst_xviddec_change_state):
40069         * ext/xvid/gstxviddec.h:
40070         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
40071         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
40072         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
40073         (gst_xvidenc_link), (gst_xvidenc_set_property),
40074         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
40075         * ext/xvid/gstxvidenc.h:
40076           Update xvid plugin to latest xvid (1.0.0-beta3) API.
40077
40078 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40079
40080         * gst/rtp/rtp-packet.c:
40081           Add sys/types.h include, since OS X doesn't define in_addr_t
40082           in netinet/in.h, like it does on Linux (see #129600).
40083
40084 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
40085
40086         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
40087
40088         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
40089           Correct logic of dispose function (see #129306).
40090
40091 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40092
40093         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
40094         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
40095         (gst_mpeg_parse_init):
40096         * gst/mpegstream/gstmpegparse.h:
40097           Remove clock (which was never provided, i.e. dead code), and
40098           also fix integer overflows at high PTS values (see #126967).
40099
40100 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40101
40102         * ext/flac/gstflacdec.c:
40103         * ext/libpng/gstpngenc.h:
40104         * ext/mikmod/gstmikmod.h:
40105           OS X fixes (see #126628).
40106
40107 2004-01-02  David Schleef  <ds@schleef.org>
40108
40109         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
40110         (gst_alsa_src_base_init): Remove bogus "src" request pad.
40111         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
40112         (gst_mpeg_parse_class_init): Move pad template registration
40113         to class_init, since the derived class (mpegdemux) doesn't
40114         want them.
40115
40116 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40117
40118         * sys/ximage/Makefile.am:
40119         * sys/xvideo/Makefile.am:
40120         * sys/xvimage/Makefile.am:
40121           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
40122           after installation (see #127664).
40123
40124 2004-01-02  David Schleef  <ds@schleef.org>
40125
40126         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
40127         (gst_ffmpegenc_connect):  Negotiation fixes.
40128         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
40129         Remove inappropriate gst_caps_free().
40130         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40131         Reenable Ronald's internal resize code, since the core handles
40132         it correctly now.
40133
40134 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40135
40136         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
40137         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
40138         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
40139           Fix pad template stuff.
40140
40141 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40142
40143         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
40144         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
40145           fix signed integer reading/writing.
40146
40147 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40148
40149         * ext/alsa/README:
40150           Remove outdated document
40151
40152 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
40153
40154         * gst/cutter/gstcutter.c: (gst_cutter_init):
40155           src pad was being created twice - oops.
40156
40157 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40158
40159         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40160           Comment out internal resize. It doesn't handle the resulting
40161           XEvent internally, does another try_set_caps() which leads to
40162           a really nice loop.
40163           Real fix will come when Julien and Dave are awake. ;).
40164
40165 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40166
40167         * ext/mpeg2enc/gstmpeg2enc.cc:
40168           fix const/nonconst compile issue.
40169
40170 2004-01-02  David Schleef  <ds@schleef.org>
40171
40172         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
40173         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
40174         Add fixate function and a check for bad formats.
40175
40176 2004-01-01  David Schleef  <ds@schleef.org>
40177
40178         Negotiation fixes:
40179         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
40180         (gst_audiofilter_init):
40181         * gst/debug/efence.c: (gst_efence_init):
40182         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
40183         (gst_deinterlace_init):
40184         * gst/volume/gstvolume.c: (volume_connect):
40185
40186 2004-01-01  David Schleef  <ds@schleef.org>
40187
40188         Convert elements to use gst_pad_use_explicit_caps() where
40189         appropriate:
40190         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
40191         * ext/audiofile/gstafparse.c: (gst_afparse_init),
40192         (gst_afparse_open_file):
40193         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
40194         (gst_afsrc_open_file):
40195         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
40196         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
40197         (gst_ffmpegdec_chain):
40198         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
40199         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
40200         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
40201         (gst_gdk_pixbuf_chain):
40202         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
40203         (gst_jpegdec_chain):
40204         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
40205         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
40206         (gst_mikmod_negotiate):
40207         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
40208         (gst_mpeg2dec_negotiate_format):
40209         * ext/mpeg2enc/gstmpeg2enc.cc:
40210         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
40211         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
40212         (gst_speexdec_sinkconnect):
40213         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
40214         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
40215         (gst_vorbisfile_new_link):
40216         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
40217         (gst_ac3parse_chain):
40218         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
40219         (gst_asf_demux_setup_pad):
40220         * gst/auparse/gstauparse.c: (gst_auparse_init),
40221         (gst_auparse_chain):
40222         * gst/id3/gstid3types.c: (gst_id3types_loop):
40223         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
40224         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
40225         (mp1videoparse_parse_seq):
40226         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
40227         (bpf_from_header):
40228         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
40229         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
40230         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
40231         (gst_mpeg_parse_send_data):
40232         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40233         (gst_qtdemux_add_stream):
40234         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
40235         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40236         (gst_wavparse_parse_fmt):
40237
40238 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40239
40240         * configure.ac:
40241           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
40242           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
40243           it therefore uses the wrong include paths. Too bad... Note
40244           that 1.6.1.93 is not release yet. ;).
40245           Also add a check for mplex, which is now using the lib'ified
40246           mplex from mjpegtools, too.
40247         * ext/ffmpeg/gstffmpegcodecmap.c:
40248           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
40249           issues. I don't think ffmpeg handles 3ivx correctly, so this
40250           probably won't work. But it won't hurt either.
40251         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
40252         (gst_ffmpegdec_chain):
40253         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
40254         (gst_ffmpegenc_chain_audio):
40255           Fix memleak in audio encoding. Close codec if open fails, this
40256           calls the cleanup routines so we can re-use the context.
40257         * ext/mpeg2enc/gstmpeg2enc.cc:
40258           Fix pad template names/types, fix memory issue with getcaps().
40259         * ext/mpeg2enc/gstmpeg2encoder.cc:
40260         * ext/mpeg2enc/gstmpeg2encoder.hh:
40261           Fix compile issue with new caps system (const thingy).
40262         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40263         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
40264           We read a first frame right on initing, so that we have a caps
40265           when we init the output. This caps is cached in padprivate and
40266           read as first frame.
40267         * ext/mplex/Makefile.am:
40268         * ext/mplex/gstmplex.cc:
40269         * ext/mplex/gstmplex.h:
40270         * ext/mplex/gstmplex.hh:
40271         * ext/mplex/gstmplexibitstream.cc:
40272         * ext/mplex/gstmplexibitstream.hh:
40273         * ext/mplex/gstmplexjob.cc:
40274         * ext/mplex/gstmplexjob.hh:
40275         * ext/mplex/gstmplexoutputstream.cc:
40276         * ext/mplex/gstmplexoutputstream.hh:
40277           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
40278           had issues, didn't do capsnego, supported only a subset of the
40279           mplex features and required a mplex fork in our local CVS. Plus
40280           that it worked agaist a very old mplex version. Rewriting was
40281           faster than updating it.
40282         * gst-libs/ext/Makefile.am:
40283         * gst-libs/ext/mplex/INSTRUCT:
40284         * gst-libs/ext/mplex/Makefile.am:
40285         * gst-libs/ext/mplex/README:
40286         * gst-libs/ext/mplex/TODO:
40287         * gst-libs/ext/mplex/ac3strm_in.cc:
40288         * gst-libs/ext/mplex/audiostrm.hh:
40289         * gst-libs/ext/mplex/audiostrm_out.cc:
40290         * gst-libs/ext/mplex/aunit.hh:
40291         * gst-libs/ext/mplex/bits.cc:
40292         * gst-libs/ext/mplex/bits.hh:
40293         * gst-libs/ext/mplex/buffer.cc:
40294         * gst-libs/ext/mplex/buffer.hh:
40295         * gst-libs/ext/mplex/fastintfns.h:
40296         * gst-libs/ext/mplex/format_codes.h:
40297         * gst-libs/ext/mplex/inputstrm.cc:
40298         * gst-libs/ext/mplex/inputstrm.hh:
40299         * gst-libs/ext/mplex/lpcmstrm_in.cc:
40300         * gst-libs/ext/mplex/mjpeg_logging.cc:
40301         * gst-libs/ext/mplex/mjpeg_logging.h:
40302         * gst-libs/ext/mplex/mjpeg_types.h:
40303         * gst-libs/ext/mplex/mpastrm_in.cc:
40304         * gst-libs/ext/mplex/mpegconsts.cc:
40305         * gst-libs/ext/mplex/mpegconsts.h:
40306         * gst-libs/ext/mplex/mplexconsts.hh:
40307         * gst-libs/ext/mplex/multplex.cc:
40308         * gst-libs/ext/mplex/outputstream.hh:
40309         * gst-libs/ext/mplex/padstrm.cc:
40310         * gst-libs/ext/mplex/padstrm.hh:
40311         * gst-libs/ext/mplex/stillsstream.cc:
40312         * gst-libs/ext/mplex/stillsstream.hh:
40313         * gst-libs/ext/mplex/systems.cc:
40314         * gst-libs/ext/mplex/systems.hh:
40315         * gst-libs/ext/mplex/vector.cc:
40316         * gst-libs/ext/mplex/vector.hh:
40317         * gst-libs/ext/mplex/videostrm.hh:
40318         * gst-libs/ext/mplex/videostrm_in.cc:
40319         * gst-libs/ext/mplex/videostrm_out.cc:
40320         * gst-libs/ext/mplex/yuv4mpeg.cc:
40321         * gst-libs/ext/mplex/yuv4mpeg.h:
40322         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
40323         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
40324           We don't fork mjpegtools' mplex in our CVS anymore.
40325         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
40326         (gst_avi_demux_add_stream):
40327         * gst/avi/gstavidemux.h:
40328           Add getcaps() function for proper caps nego. This makes some
40329           parts of AVI playback/reading work.
40330         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40331           Resize window on new capsnego. This is probably wrong, but
40332           I'm still committing it because with current capsnego, the
40333           first successfull capsnego is auto-fixated, therefore rounded
40334           down to the lowest values in the caps. this results in a 16x16
40335           XWindow that is not reized when real capsnego finishes.
40336           Dave, I see more cases of this, do you know a proper solution?
40337         * tools/gst-launch-ext.in:
40338           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
40339
40340 2003-12-31  David Schleef  <ds@schleef.org>
40341
40342         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
40343         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
40344           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
40345
40346 2003-12-30  David Schleef  <ds@schleef.org>
40347
40348         * ext/ffmpeg/gstffmpegcolorspace.c:
40349         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
40350         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
40351         (gst_ffmpegcsp_chain): Negotiation fixes
40352         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
40353         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
40354         (gst_audio_convert_link), (gst_audio_convert_channels):
40355         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
40356         (gst_audioscale_link), (gst_audioscale_get_buffer),
40357         (gst_audioscale_chain): Negotiation fixes
40358         * gst/audioscale/gstaudioscale.h:
40359         * gst/videofilter/gstvideofilter.c:
40360         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
40361         (gst_videofilter_link), (gst_videofilter_init),
40362         (gst_videofilter_set_output_size), (gst_videofilter_setup),
40363         (gst_videofilter_find_format_by_structure):
40364         * gst/videofilter/gstvideofilter.h: Negotiation fixes
40365         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
40366         (gst_videoscale_link):
40367         * gst/videoscale/videoscale.c: (videoscale_get_structure),
40368         (videoscale_find_by_structure), (gst_videoscale_setup):
40369         * gst/videoscale/videoscale.h: Negotiation fixes
40370         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40371         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
40372         function, restrict resizing to a multiple of 4 (hack until
40373         everyone supports odd sizes correctly).
40374
40375 2003-12-29  Colin Walters  <walters@verbum.org>
40376
40377         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
40378         signed.
40379
40380 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
40381
40382         * ext/sndfile/gstsf.c: (gst_sf_loop):
40383           Fix warning about discarding const qualifier
40384
40385 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
40386
40387         * gst/cutter/gstcutter.c:
40388         * gst/videoscale/gstvideoscale.c:
40389         * gst/volenv/gstvolenv.c:
40390         * gst-libs/gst/audio/audio.c:
40391         * gst-libs/gst/video/video.c:
40392           Fix warnings
40393
40394 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40395
40396         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
40397           Don't send ALSA debugging to stderr.
40398         * ext/alsa/gstalsa.h:
40399           Use GST_WARNING instead of g_warning when ALSA functions fail.
40400
40401 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40402
40403         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
40404           Free XVAdapterInfo correctly.
40405
40406 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40407
40408         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
40409         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
40410           Make id3tag use correct caps nego.
40411
40412 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
40413
40414         * ext/ivorbis/vorbis.c:
40415         * ext/ivorbis/vorbisenc.h:
40416         * ext/ivorbis/vorbisfile.c:
40417           Modify so that it uses the new caps things
40418
40419 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40420
40421         * testsuite/spider/spider1.c: (main):
40422         * testsuite/spider/spider2.c: (main):
40423         * testsuite/spider/spider3.c: (main):
40424           Make tests compile again. They probably don't work.
40425
40426 2003-12-24  Colin Walters  <walters@verbum.org>
40427
40428         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
40429         we can't fixate the caps anymore.
40430
40431 2003-12-23  David Schleef  <ds@schleef.org>
40432
40433         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
40434         * sys/oss/gstosssink.c: (gst_osssink_init),
40435         (gst_osssink_sink_fixate): Add fixate function.
40436
40437 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40438
40439         * ext/ffmpeg/gstffmpegcodecmap.c:
40440         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
40441         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
40442         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
40443         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
40444         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
40445         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
40446         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
40447           fix typo in RGB masks, and move back to "old" colorspace
40448           capsnego code until whoever wrote this new crap has actually
40449           tested it so that it works.
40450           And yes, this works, keep it that way please.
40451
40452 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40453
40454         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
40455         (gst_divxdec_init), (gst_divxdec_negotiate):
40456         * ext/divx/gstdivxdec.h:
40457         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
40458         (gst_divxenc_init):
40459         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
40460         (gst_faac_sinkconnect), (gst_faac_srcconnect):
40461         * ext/mpeg2enc/gstmpeg2enc.cc:
40462         * ext/mpeg2enc/gstmpeg2encoder.cc:
40463         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40464         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
40465         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
40466         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
40467         (dxr3spusink_init):
40468         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
40469         (dxr3videosink_init):
40470           Fix caps breakage after Dave's caps branch merge.
40471
40472 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40473
40474         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
40475           Fix for 24bpp display.
40476
40477 2003-12-23  Colin Walters  <walters@verbum.org>
40478
40479         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
40480         a GnomeVFSHandle directly.
40481
40482 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40483
40484         * gst/volume/Makefile.am:
40485         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
40486         (volume_base_init), (volume_init):
40487           Reenable volume element and fix to work with new caps stuff.
40488           Rhythmbox needs this.
40489
40490 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40491
40492         * gst/qtdemux/qtdemux.c: (plugin_init):
40493           qtdemux requires bytestream
40494
40495 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40496
40497         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
40498           Fix remaining caps handling errors due to CAPS merge.
40499
40500 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40501
40502         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
40503         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
40504         (gst_faad_srcconnect):
40505           Port to new caps system.
40506
40507 2003-12-21  Julien MOUTTE  <julien@moutte.net>
40508
40509         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40510         (got_video_size), (main): using g_print instead of g_message.
40511         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
40512         signal which was not emitted because of "switch" element added to the
40513         bin but not connected. (Removing from the bin temporarily)
40514
40515 2003-12-21  Julien MOUTTE  <julien@moutte.net>
40516
40517         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
40518         find X development files. I don't understand the previous tests and
40519         they fail on my debian/ppc unstable. This one works.
40520         * examples/gstplay/player.c: (main): Set the pipeline to READY before
40521         exiting.
40522         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
40523         (gst_play_set_video_sink), (gst_play_set_audio_sink),
40524         (gst_play_set_visualization): Add some safety checks in set_ methods
40525         and state_change. This was throwing some ugly CRITICAL messages when
40526         pipeline was getting disposed and casts were failing.
40527
40528 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40529
40530         * configure.ac:
40531           Improve mpeg2enc detection. This is for distributions that do
40532           ship mjpegtools, but without mpeg2enc. Also does object check
40533           for might there ever be ABI incompatibility.
40534         * ext/mpeg2enc/gstmpeg2enc.cc:
40535           Add Andrew as second maintainer (he's helping me), and also add
40536           an error if no caps was set. This happens if I pull before capsnego
40537           and that's something I should solve sometime else.
40538         * gst/matroska/matroska-demux.c:
40539         (gst_matroska_demux_parse_blockgroup):
40540           Fix time parsing.
40541         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
40542         (gst_matroska_mux_track_header):
40543           Add caps to templates.
40544         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
40545           Add mpegversion=1 to prevent confusion with MPEG/AAC.
40546         * gst/mpegstream/gstmpegdemux.c:
40547           Remove layer since it causes warnings about unfixed caps.
40548         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40549           Fix obvious typo (we error out if caps were set, we should of
40550           course error out if *no* caps were set).
40551         * sys/oss/gstosselement.c: (gst_osselement_convert):
40552           Fix format conversion, we confused bits/bytes.
40553         * sys/oss/gstosselement.h:
40554           Improve documentation for 'bps'.
40555         * sys/v4l/TODO:
40556           Remove stuff about plugins that need removing - this was done
40557           ages ago.
40558         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
40559         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
40560         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
40561         (gst_v4lsrc_src_query):
40562         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
40563         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
40564           Add get_query_types(), get_formats() and query() functions.
40565
40566 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
40567
40568         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
40569           * moved CVS to freedesktop.org